48.81/29.35 YES 51.18/30.04 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 51.18/30.04 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 51.18/30.04 51.18/30.04 51.18/30.04 H-Termination with start terms of the given HASKELL could be proven: 51.18/30.04 51.18/30.04 (0) HASKELL 51.18/30.04 (1) LR [EQUIVALENT, 0 ms] 51.18/30.04 (2) HASKELL 51.18/30.04 (3) CR [EQUIVALENT, 0 ms] 51.18/30.04 (4) HASKELL 51.18/30.04 (5) IFR [EQUIVALENT, 0 ms] 51.18/30.04 (6) HASKELL 51.18/30.04 (7) BR [EQUIVALENT, 0 ms] 51.18/30.04 (8) HASKELL 51.18/30.04 (9) COR [EQUIVALENT, 0 ms] 51.18/30.04 (10) HASKELL 51.18/30.04 (11) LetRed [EQUIVALENT, 0 ms] 51.18/30.04 (12) HASKELL 51.18/30.04 (13) NumRed [SOUND, 0 ms] 51.18/30.04 (14) HASKELL 51.18/30.04 (15) Narrow [SOUND, 0 ms] 51.18/30.04 (16) AND 51.18/30.04 (17) QDP 51.18/30.04 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 51.18/30.04 (19) YES 51.18/30.04 (20) QDP 51.18/30.04 (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] 51.18/30.04 (22) YES 51.18/30.04 (23) QDP 51.18/30.04 (24) QDPOrderProof [EQUIVALENT, 81 ms] 51.18/30.04 (25) QDP 51.18/30.04 (26) DependencyGraphProof [EQUIVALENT, 0 ms] 51.18/30.04 (27) QDP 51.18/30.04 (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] 51.18/30.04 (29) YES 51.18/30.04 (30) QDP 51.18/30.04 (31) QDPSizeChangeProof [EQUIVALENT, 97 ms] 51.18/30.04 (32) YES 51.18/30.04 (33) QDP 51.18/30.04 (34) TransformationProof [EQUIVALENT, 3479 ms] 51.18/30.04 (35) QDP 51.18/30.04 (36) TransformationProof [EQUIVALENT, 0 ms] 51.18/30.04 (37) QDP 51.18/30.04 (38) QDPSizeChangeProof [EQUIVALENT, 0 ms] 51.18/30.04 (39) YES 51.18/30.04 (40) QDP 51.18/30.04 (41) QDPSizeChangeProof [EQUIVALENT, 0 ms] 51.18/30.04 (42) YES 51.18/30.04 (43) QDP 51.18/30.04 (44) QDPSizeChangeProof [EQUIVALENT, 0 ms] 51.18/30.04 (45) YES 51.18/30.04 (46) QDP 51.18/30.04 (47) QDPSizeChangeProof [EQUIVALENT, 0 ms] 51.18/30.04 (48) YES 51.18/30.04 (49) QDP 51.18/30.04 (50) QDPSizeChangeProof [EQUIVALENT, 0 ms] 51.18/30.04 (51) YES 51.18/30.04 (52) QDP 51.18/30.04 (53) QDPSizeChangeProof [EQUIVALENT, 0 ms] 51.18/30.04 (54) YES 51.18/30.04 (55) QDP 51.18/30.04 (56) QDPSizeChangeProof [EQUIVALENT, 0 ms] 51.18/30.04 (57) YES 51.18/30.04 (58) QDP 51.18/30.04 (59) QDPSizeChangeProof [EQUIVALENT, 0 ms] 51.18/30.04 (60) YES 51.18/30.04 51.18/30.04 51.18/30.04 ---------------------------------------- 51.18/30.04 51.18/30.04 (0) 51.18/30.04 Obligation: 51.18/30.04 mainModule Main 51.18/30.04 module FiniteMap where { 51.18/30.04 import qualified Main; 51.18/30.04 import qualified Maybe; 51.18/30.04 import qualified Prelude; 51.18/30.04 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 51.18/30.04 51.18/30.04 instance (Eq a, Eq b) => Eq FiniteMap b a where { 51.18/30.04 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 51.18/30.04 } 51.18/30.04 addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; 51.18/30.04 addToFM fm key elt = addToFM_C (\old new ->new) fm key elt; 51.18/30.04 51.18/30.04 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 51.18/30.04 addToFM_C combiner EmptyFM key elt = unitFM key elt; 51.18/30.04 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 51.18/30.04 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 51.18/30.04 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 51.18/30.04 51.18/30.04 emptyFM :: FiniteMap b a; 51.18/30.04 emptyFM = EmptyFM; 51.18/30.04 51.18/30.04 findMax :: FiniteMap b a -> (b,a); 51.18/30.04 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 51.18/30.04 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 51.18/30.04 51.18/30.04 findMin :: FiniteMap a b -> (a,b); 51.18/30.04 findMin (Branch key elt _ EmptyFM _) = (key,elt); 51.18/30.04 findMin (Branch key elt _ fm_l _) = findMin fm_l; 51.18/30.04 51.18/30.04 fmToList :: FiniteMap b a -> [(b,a)]; 51.18/30.04 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 51.18/30.04 51.18/30.04 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 51.18/30.04 foldFM k z EmptyFM = z; 51.18/30.04 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 51.18/30.04 51.18/30.04 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 51.18/30.04 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 51.18/30.04 | size_r > sIZE_RATIO * size_l = case fm_R of { 51.18/30.04 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 51.18/30.04 | otherwise -> double_L fm_L fm_R; 51.18/30.04 } 51.18/30.04 | size_l > sIZE_RATIO * size_r = case fm_L of { 51.18/30.04 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 51.18/30.04 | otherwise -> double_R fm_L fm_R; 51.18/30.04 } 51.18/30.04 | otherwise = mkBranch 2 key elt fm_L fm_R where { 51.18/30.04 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); 51.18/30.04 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); 51.18/30.04 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; 51.18/30.04 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); 51.18/30.04 size_l = sizeFM fm_L; 51.18/30.04 size_r = sizeFM fm_R; 51.18/30.04 }; 51.18/30.04 51.18/30.04 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 51.18/30.04 mkBranch which key elt fm_l fm_r = let { 51.18/30.04 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 51.18/30.04 } in result where { 51.18/30.04 balance_ok = True; 51.18/30.04 left_ok = case fm_l of { 51.18/30.04 EmptyFM-> True; 51.18/30.04 Branch left_key _ _ _ _-> let { 51.18/30.04 biggest_left_key = fst (findMax fm_l); 51.18/30.04 } in biggest_left_key < key; 51.18/30.04 } ; 51.18/30.04 left_size = sizeFM fm_l; 51.18/30.04 right_ok = case fm_r of { 51.18/30.04 EmptyFM-> True; 51.18/30.04 Branch right_key _ _ _ _-> let { 51.18/30.04 smallest_right_key = fst (findMin fm_r); 51.18/30.04 } in key < smallest_right_key; 51.18/30.04 } ; 51.18/30.04 right_size = sizeFM fm_r; 51.18/30.04 unbox :: Int -> Int; 51.18/30.04 unbox x = x; 51.18/30.04 }; 51.18/30.04 51.18/30.04 mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 51.18/30.04 mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 51.18/30.04 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 51.18/30.04 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 51.18/30.04 | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) 51.18/30.04 | otherwise = mkBranch 13 key elt fm_l fm_r where { 51.18/30.04 size_l = sizeFM fm_l; 51.18/30.04 size_r = sizeFM fm_r; 51.18/30.04 }; 51.18/30.04 51.18/30.04 plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 51.18/30.04 plusFM EmptyFM fm2 = fm2; 51.18/30.04 plusFM fm1 EmptyFM = fm1; 51.18/30.04 plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 51.18/30.04 gts = splitGT fm1 split_key; 51.18/30.04 lts = splitLT fm1 split_key; 51.18/30.04 }; 51.18/30.04 51.18/30.04 sIZE_RATIO :: Int; 51.18/30.04 sIZE_RATIO = 5; 51.18/30.04 51.18/30.04 sizeFM :: FiniteMap b a -> Int; 51.18/30.04 sizeFM EmptyFM = 0; 51.18/30.04 sizeFM (Branch _ _ size _ _) = size; 51.18/30.04 51.18/30.04 splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 51.18/30.04 splitGT EmptyFM split_key = emptyFM; 51.18/30.04 splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key 51.18/30.04 | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r 51.18/30.04 | otherwise = fm_r; 51.18/30.04 51.18/30.04 splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 51.18/30.04 splitLT EmptyFM split_key = emptyFM; 51.18/30.04 splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key 51.18/30.04 | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) 51.18/30.04 | otherwise = fm_l; 51.18/30.04 51.18/30.04 unitFM :: a -> b -> FiniteMap a b; 51.18/30.04 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 51.18/30.04 51.18/30.04 } 51.18/30.04 module Maybe where { 51.18/30.04 import qualified FiniteMap; 51.18/30.04 import qualified Main; 51.18/30.04 import qualified Prelude; 51.18/30.04 } 51.18/30.04 module Main where { 51.18/30.04 import qualified FiniteMap; 51.18/30.04 import qualified Maybe; 51.18/30.04 import qualified Prelude; 51.18/30.04 } 51.18/30.04 51.18/30.04 ---------------------------------------- 51.18/30.04 51.18/30.04 (1) LR (EQUIVALENT) 51.18/30.04 Lambda Reductions: 51.18/30.04 The following Lambda expression 51.18/30.04 "\oldnew->new" 51.18/30.04 is transformed to 51.18/30.04 "addToFM0 old new = new; 51.18/30.04 " 51.18/30.04 The following Lambda expression 51.18/30.04 "\keyeltrest->(key,elt) : rest" 51.18/30.04 is transformed to 51.18/30.04 "fmToList0 key elt rest = (key,elt) : rest; 51.18/30.04 " 51.18/30.04 51.18/30.04 ---------------------------------------- 51.18/30.04 51.18/30.04 (2) 51.18/30.04 Obligation: 51.18/30.04 mainModule Main 51.18/30.04 module FiniteMap where { 51.18/30.04 import qualified Main; 51.18/30.04 import qualified Maybe; 51.18/30.04 import qualified Prelude; 51.18/30.04 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 51.18/30.04 51.18/30.04 instance (Eq a, Eq b) => Eq FiniteMap b a where { 51.18/30.04 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 51.18/30.04 } 51.18/30.04 addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; 51.18/30.04 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 51.18/30.04 51.18/30.04 addToFM0 old new = new; 51.18/30.04 51.18/30.04 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 51.18/30.04 addToFM_C combiner EmptyFM key elt = unitFM key elt; 51.18/30.04 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 51.18/30.04 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 51.18/30.04 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 51.18/30.04 51.18/30.04 emptyFM :: FiniteMap a b; 51.18/30.04 emptyFM = EmptyFM; 51.18/30.04 51.18/30.04 findMax :: FiniteMap b a -> (b,a); 51.18/30.04 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 51.18/30.04 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 51.18/30.04 51.18/30.04 findMin :: FiniteMap b a -> (b,a); 51.18/30.04 findMin (Branch key elt _ EmptyFM _) = (key,elt); 51.18/30.04 findMin (Branch key elt _ fm_l _) = findMin fm_l; 51.18/30.04 51.18/30.04 fmToList :: FiniteMap b a -> [(b,a)]; 51.18/30.04 fmToList fm = foldFM fmToList0 [] fm; 51.18/30.04 51.18/30.04 fmToList0 key elt rest = (key,elt) : rest; 51.18/30.04 51.18/30.04 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 51.18/30.04 foldFM k z EmptyFM = z; 51.18/30.04 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 51.18/30.04 51.18/30.04 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 51.18/30.04 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 51.18/30.04 | size_r > sIZE_RATIO * size_l = case fm_R of { 51.18/30.04 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 51.18/30.04 | otherwise -> double_L fm_L fm_R; 51.18/30.04 } 51.18/30.04 | size_l > sIZE_RATIO * size_r = case fm_L of { 51.18/30.04 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 51.18/30.04 | otherwise -> double_R fm_L fm_R; 51.18/30.04 } 51.18/30.04 | otherwise = mkBranch 2 key elt fm_L fm_R where { 51.18/30.04 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); 51.18/30.04 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); 51.18/30.04 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; 51.18/30.04 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); 51.18/30.04 size_l = sizeFM fm_L; 51.18/30.04 size_r = sizeFM fm_R; 51.18/30.04 }; 51.18/30.04 51.18/30.04 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 51.18/30.04 mkBranch which key elt fm_l fm_r = let { 51.18/30.04 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 51.18/30.04 } in result where { 51.18/30.04 balance_ok = True; 51.18/30.04 left_ok = case fm_l of { 51.18/30.04 EmptyFM-> True; 51.18/30.04 Branch left_key _ _ _ _-> let { 51.18/30.04 biggest_left_key = fst (findMax fm_l); 51.18/30.04 } in biggest_left_key < key; 51.18/30.04 } ; 51.18/30.04 left_size = sizeFM fm_l; 51.18/30.04 right_ok = case fm_r of { 51.18/30.04 EmptyFM-> True; 51.18/30.04 Branch right_key _ _ _ _-> let { 51.18/30.04 smallest_right_key = fst (findMin fm_r); 51.18/30.04 } in key < smallest_right_key; 51.18/30.04 } ; 51.18/30.04 right_size = sizeFM fm_r; 51.18/30.04 unbox :: Int -> Int; 51.18/30.04 unbox x = x; 51.18/30.04 }; 51.18/30.04 51.18/30.04 mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 51.18/30.04 mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 51.18/30.04 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 51.18/30.04 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 51.18/30.04 | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) 51.18/30.04 | otherwise = mkBranch 13 key elt fm_l fm_r where { 51.18/30.04 size_l = sizeFM fm_l; 51.18/30.04 size_r = sizeFM fm_r; 51.18/30.04 }; 51.18/30.04 51.18/30.04 plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 51.18/30.04 plusFM EmptyFM fm2 = fm2; 51.18/30.04 plusFM fm1 EmptyFM = fm1; 51.18/30.04 plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 51.18/30.04 gts = splitGT fm1 split_key; 51.18/30.04 lts = splitLT fm1 split_key; 51.18/30.04 }; 51.18/30.04 51.18/30.04 sIZE_RATIO :: Int; 51.18/30.04 sIZE_RATIO = 5; 51.18/30.04 51.18/30.04 sizeFM :: FiniteMap b a -> Int; 51.18/30.04 sizeFM EmptyFM = 0; 51.18/30.04 sizeFM (Branch _ _ size _ _) = size; 51.18/30.04 51.18/30.04 splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 51.18/30.04 splitGT EmptyFM split_key = emptyFM; 51.18/30.04 splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key 51.18/30.04 | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r 51.18/30.04 | otherwise = fm_r; 51.18/30.04 51.18/30.04 splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 51.18/30.04 splitLT EmptyFM split_key = emptyFM; 51.18/30.04 splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key 51.18/30.04 | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) 51.18/30.04 | otherwise = fm_l; 51.18/30.04 51.18/30.04 unitFM :: b -> a -> FiniteMap b a; 51.18/30.04 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 51.18/30.04 51.18/30.04 } 51.18/30.04 module Maybe where { 51.18/30.04 import qualified FiniteMap; 51.18/30.04 import qualified Main; 51.18/30.04 import qualified Prelude; 51.18/30.04 } 51.18/30.04 module Main where { 51.18/30.04 import qualified FiniteMap; 51.18/30.04 import qualified Maybe; 51.18/30.04 import qualified Prelude; 51.18/30.04 } 51.18/30.04 51.18/30.04 ---------------------------------------- 51.18/30.04 51.18/30.04 (3) CR (EQUIVALENT) 51.18/30.04 Case Reductions: 51.18/30.04 The following Case expression 51.18/30.04 "case compare x y of { 51.18/30.04 EQ -> o; 51.18/30.04 LT -> LT; 51.18/30.04 GT -> GT} 51.18/30.04 " 51.18/30.04 is transformed to 51.18/30.04 "primCompAux0 o EQ = o; 51.18/30.04 primCompAux0 o LT = LT; 51.18/30.04 primCompAux0 o GT = GT; 51.18/30.04 " 51.18/30.04 The following Case expression 51.18/30.04 "case fm_r of { 51.18/30.04 EmptyFM -> True; 51.18/30.04 Branch right_key _ _ _ _ -> let { 51.18/30.04 smallest_right_key = fst (findMin fm_r); 51.18/30.04 } in key < smallest_right_key} 51.18/30.04 " 51.18/30.04 is transformed to 51.18/30.04 "right_ok0 fm_r key EmptyFM = True; 51.18/30.04 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 51.18/30.04 smallest_right_key = fst (findMin fm_r); 51.18/30.04 } in key < smallest_right_key; 51.18/30.04 " 51.18/30.04 The following Case expression 51.18/30.04 "case fm_l of { 51.18/30.04 EmptyFM -> True; 51.18/30.04 Branch left_key _ _ _ _ -> let { 51.18/30.04 biggest_left_key = fst (findMax fm_l); 51.18/30.04 } in biggest_left_key < key} 51.18/30.04 " 51.18/30.04 is transformed to 51.18/30.04 "left_ok0 fm_l key EmptyFM = True; 51.18/30.04 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 51.18/30.04 biggest_left_key = fst (findMax fm_l); 51.18/30.04 } in biggest_left_key < key; 51.18/30.04 " 51.18/30.04 The following Case expression 51.18/30.04 "case fm_R of { 51.18/30.04 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 51.18/30.04 " 51.18/30.04 is transformed to 51.18/30.04 "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; 51.18/30.04 " 51.18/30.04 The following Case expression 51.18/30.04 "case fm_L of { 51.18/30.04 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 51.18/30.04 " 51.18/30.04 is transformed to 51.18/30.04 "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; 51.18/30.04 " 51.18/30.04 51.18/30.04 ---------------------------------------- 51.18/30.04 51.18/30.04 (4) 51.18/30.04 Obligation: 51.18/30.04 mainModule Main 51.18/30.04 module FiniteMap where { 51.18/30.04 import qualified Main; 51.18/30.04 import qualified Maybe; 51.18/30.04 import qualified Prelude; 51.18/30.04 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 51.18/30.04 51.18/30.04 instance (Eq a, Eq b) => Eq FiniteMap a b where { 51.18/30.04 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 51.18/30.04 } 51.18/30.04 addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; 51.18/30.04 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 51.18/30.04 51.18/30.04 addToFM0 old new = new; 51.18/30.04 51.18/30.04 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 51.18/30.04 addToFM_C combiner EmptyFM key elt = unitFM key elt; 51.18/30.04 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 51.18/30.04 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 51.18/30.04 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 51.18/30.04 51.18/30.04 emptyFM :: FiniteMap a b; 51.18/30.04 emptyFM = EmptyFM; 51.18/30.04 51.18/30.04 findMax :: FiniteMap a b -> (a,b); 51.18/30.04 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 51.18/30.04 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 51.18/30.04 51.18/30.04 findMin :: FiniteMap a b -> (a,b); 51.18/30.04 findMin (Branch key elt _ EmptyFM _) = (key,elt); 51.18/30.04 findMin (Branch key elt _ fm_l _) = findMin fm_l; 51.18/30.04 51.18/30.04 fmToList :: FiniteMap a b -> [(a,b)]; 51.18/30.04 fmToList fm = foldFM fmToList0 [] fm; 51.18/30.04 51.18/30.04 fmToList0 key elt rest = (key,elt) : rest; 51.18/30.04 51.18/30.04 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 51.18/30.04 foldFM k z EmptyFM = z; 51.18/30.04 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 51.18/30.04 51.18/30.04 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 51.18/30.04 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 51.18/30.04 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 51.18/30.04 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 51.18/30.04 | otherwise = mkBranch 2 key elt fm_L fm_R where { 51.18/30.04 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); 51.82/30.20 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); 51.82/30.20 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 51.82/30.20 | otherwise = double_L fm_L fm_R; 51.82/30.20 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 51.82/30.20 | otherwise = double_R fm_L fm_R; 51.82/30.20 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; 51.82/30.20 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); 51.82/30.20 size_l = sizeFM fm_L; 51.82/30.20 size_r = sizeFM fm_R; 51.82/30.20 }; 51.82/30.20 51.82/30.20 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 51.82/30.20 mkBranch which key elt fm_l fm_r = let { 51.82/30.20 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 51.82/30.20 } in result where { 51.82/30.20 balance_ok = True; 51.82/30.20 left_ok = left_ok0 fm_l key fm_l; 51.82/30.20 left_ok0 fm_l key EmptyFM = True; 51.82/30.20 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 51.82/30.20 biggest_left_key = fst (findMax fm_l); 51.82/30.20 } in biggest_left_key < key; 51.82/30.20 left_size = sizeFM fm_l; 51.82/30.20 right_ok = right_ok0 fm_r key fm_r; 51.82/30.20 right_ok0 fm_r key EmptyFM = True; 51.82/30.20 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 51.82/30.20 smallest_right_key = fst (findMin fm_r); 51.82/30.20 } in key < smallest_right_key; 51.82/30.20 right_size = sizeFM fm_r; 51.82/30.20 unbox :: Int -> Int; 51.82/30.20 unbox x = x; 51.82/30.20 }; 51.82/30.20 51.82/30.20 mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 51.82/30.20 mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 51.82/30.20 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 51.82/30.20 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 51.82/30.20 | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) 51.82/30.20 | otherwise = mkBranch 13 key elt fm_l fm_r where { 51.82/30.20 size_l = sizeFM fm_l; 51.82/30.20 size_r = sizeFM fm_r; 51.82/30.20 }; 51.82/30.20 51.82/30.20 plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 51.82/30.20 plusFM EmptyFM fm2 = fm2; 51.82/30.20 plusFM fm1 EmptyFM = fm1; 51.82/30.20 plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 51.82/30.20 gts = splitGT fm1 split_key; 51.82/30.20 lts = splitLT fm1 split_key; 51.82/30.20 }; 51.82/30.20 51.82/30.20 sIZE_RATIO :: Int; 51.82/30.20 sIZE_RATIO = 5; 51.82/30.20 51.82/30.20 sizeFM :: FiniteMap b a -> Int; 51.82/30.20 sizeFM EmptyFM = 0; 51.82/30.20 sizeFM (Branch _ _ size _ _) = size; 51.82/30.20 51.82/30.20 splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 51.82/30.20 splitGT EmptyFM split_key = emptyFM; 51.82/30.20 splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key 51.82/30.20 | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r 51.82/30.20 | otherwise = fm_r; 51.82/30.20 51.82/30.20 splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 51.82/30.20 splitLT EmptyFM split_key = emptyFM; 51.82/30.20 splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key 51.82/30.20 | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) 51.82/30.20 | otherwise = fm_l; 51.82/30.20 51.82/30.20 unitFM :: a -> b -> FiniteMap a b; 51.82/30.20 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 51.82/30.20 51.82/30.20 } 51.82/30.20 module Maybe where { 51.82/30.20 import qualified FiniteMap; 51.82/30.20 import qualified Main; 51.82/30.20 import qualified Prelude; 51.82/30.20 } 51.82/30.20 module Main where { 51.82/30.20 import qualified FiniteMap; 51.82/30.20 import qualified Maybe; 51.82/30.20 import qualified Prelude; 51.82/30.20 } 51.82/30.20 51.82/30.20 ---------------------------------------- 51.82/30.20 51.82/30.20 (5) IFR (EQUIVALENT) 51.82/30.20 If Reductions: 51.82/30.20 The following If expression 51.82/30.20 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 51.82/30.20 is transformed to 51.82/30.20 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 51.82/30.20 primDivNatS0 x y False = Zero; 51.82/30.20 " 51.82/30.20 The following If expression 51.82/30.20 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 51.82/30.20 is transformed to 51.82/30.20 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 51.82/30.20 primModNatS0 x y False = Succ x; 51.82/30.20 " 51.82/30.20 51.82/30.20 ---------------------------------------- 51.82/30.20 51.82/30.20 (6) 51.82/30.20 Obligation: 51.82/30.20 mainModule Main 51.82/30.20 module FiniteMap where { 51.82/30.20 import qualified Main; 51.82/30.20 import qualified Maybe; 51.82/30.20 import qualified Prelude; 51.82/30.20 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 51.82/30.20 51.82/30.20 instance (Eq a, Eq b) => Eq FiniteMap a b where { 51.82/30.20 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 51.82/30.20 } 51.82/30.20 addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; 51.82/30.20 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 51.82/30.20 51.82/30.20 addToFM0 old new = new; 51.82/30.20 51.82/30.20 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 51.82/30.20 addToFM_C combiner EmptyFM key elt = unitFM key elt; 51.82/30.20 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 51.82/30.20 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 51.82/30.20 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 51.82/30.20 51.82/30.20 emptyFM :: FiniteMap b a; 51.82/30.20 emptyFM = EmptyFM; 51.82/30.20 51.82/30.20 findMax :: FiniteMap b a -> (b,a); 51.82/30.20 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 51.82/30.20 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 51.82/30.20 51.82/30.20 findMin :: FiniteMap b a -> (b,a); 51.82/30.20 findMin (Branch key elt _ EmptyFM _) = (key,elt); 51.82/30.20 findMin (Branch key elt _ fm_l _) = findMin fm_l; 51.82/30.20 51.82/30.20 fmToList :: FiniteMap a b -> [(a,b)]; 51.82/30.20 fmToList fm = foldFM fmToList0 [] fm; 51.82/30.20 51.82/30.20 fmToList0 key elt rest = (key,elt) : rest; 51.82/30.20 51.82/30.20 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 51.82/30.20 foldFM k z EmptyFM = z; 51.82/30.20 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 51.82/30.20 51.82/30.20 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 51.82/30.20 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 51.82/30.20 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 51.82/30.20 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 51.82/30.20 | otherwise = mkBranch 2 key elt fm_L fm_R where { 51.82/30.20 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); 51.82/30.20 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); 51.82/30.20 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 51.82/30.20 | otherwise = double_L fm_L fm_R; 51.82/30.20 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 51.82/30.20 | otherwise = double_R fm_L fm_R; 51.82/30.20 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; 51.82/30.20 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); 51.82/30.20 size_l = sizeFM fm_L; 51.82/30.20 size_r = sizeFM fm_R; 51.82/30.20 }; 51.82/30.20 51.82/30.20 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 51.82/30.20 mkBranch which key elt fm_l fm_r = let { 51.82/30.20 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 51.82/30.20 } in result where { 51.82/30.20 balance_ok = True; 51.82/30.20 left_ok = left_ok0 fm_l key fm_l; 51.82/30.20 left_ok0 fm_l key EmptyFM = True; 51.82/30.20 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 51.82/30.20 biggest_left_key = fst (findMax fm_l); 51.82/30.20 } in biggest_left_key < key; 51.82/30.20 left_size = sizeFM fm_l; 51.82/30.20 right_ok = right_ok0 fm_r key fm_r; 51.82/30.20 right_ok0 fm_r key EmptyFM = True; 51.82/30.20 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 51.82/30.20 smallest_right_key = fst (findMin fm_r); 51.82/30.20 } in key < smallest_right_key; 51.82/30.20 right_size = sizeFM fm_r; 51.82/30.20 unbox :: Int -> Int; 51.82/30.20 unbox x = x; 51.82/30.20 }; 51.82/30.20 51.82/30.20 mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 51.82/30.20 mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 51.82/30.20 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 51.82/30.20 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 51.82/30.20 | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) 51.82/30.20 | otherwise = mkBranch 13 key elt fm_l fm_r where { 51.82/30.20 size_l = sizeFM fm_l; 51.82/30.20 size_r = sizeFM fm_r; 51.82/30.20 }; 51.82/30.20 51.82/30.20 plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 51.82/30.20 plusFM EmptyFM fm2 = fm2; 51.82/30.20 plusFM fm1 EmptyFM = fm1; 51.82/30.20 plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 51.82/30.20 gts = splitGT fm1 split_key; 51.82/30.20 lts = splitLT fm1 split_key; 51.82/30.20 }; 51.82/30.20 51.82/30.20 sIZE_RATIO :: Int; 51.82/30.20 sIZE_RATIO = 5; 51.82/30.20 51.82/30.20 sizeFM :: FiniteMap b a -> Int; 51.82/30.20 sizeFM EmptyFM = 0; 51.82/30.20 sizeFM (Branch _ _ size _ _) = size; 51.82/30.20 51.82/30.20 splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 51.82/30.20 splitGT EmptyFM split_key = emptyFM; 51.82/30.20 splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key 51.82/30.20 | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r 51.82/30.20 | otherwise = fm_r; 51.82/30.20 51.82/30.20 splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 51.82/30.20 splitLT EmptyFM split_key = emptyFM; 51.82/30.20 splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key 51.82/30.20 | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) 51.82/30.20 | otherwise = fm_l; 51.82/30.20 51.82/30.20 unitFM :: a -> b -> FiniteMap a b; 51.82/30.20 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 51.82/30.20 51.82/30.20 } 51.82/30.20 module Maybe where { 51.82/30.20 import qualified FiniteMap; 51.82/30.20 import qualified Main; 51.82/30.20 import qualified Prelude; 51.82/30.20 } 51.82/30.20 module Main where { 51.82/30.20 import qualified FiniteMap; 51.82/30.20 import qualified Maybe; 51.82/30.20 import qualified Prelude; 51.82/30.20 } 51.82/30.20 51.82/30.20 ---------------------------------------- 51.82/30.20 51.82/30.20 (7) BR (EQUIVALENT) 51.82/30.20 Replaced joker patterns by fresh variables and removed binding patterns. 51.82/30.20 51.82/30.20 Binding Reductions: 51.82/30.20 The bind variable of the following binding Pattern 51.82/30.20 "fm_l@(Branch vuv vuw vux vuy vuz)" 51.82/30.20 is replaced by the following term 51.82/30.20 "Branch vuv vuw vux vuy vuz" 51.82/30.20 The bind variable of the following binding Pattern 51.82/30.20 "fm_r@(Branch vvv vvw vvx vvy vvz)" 51.82/30.20 is replaced by the following term 51.82/30.20 "Branch vvv vvw vvx vvy vvz" 51.82/30.20 51.82/30.20 ---------------------------------------- 51.82/30.20 51.82/30.20 (8) 51.82/30.20 Obligation: 51.82/30.20 mainModule Main 51.82/30.20 module FiniteMap where { 51.82/30.20 import qualified Main; 51.82/30.20 import qualified Maybe; 51.82/30.20 import qualified Prelude; 51.82/30.20 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 51.82/30.20 51.82/30.20 instance (Eq a, Eq b) => Eq FiniteMap b a where { 51.82/30.20 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 51.82/30.20 } 51.82/30.20 addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; 51.82/30.20 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 51.82/30.20 51.82/30.20 addToFM0 old new = new; 51.82/30.20 51.82/30.20 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 51.82/30.20 addToFM_C combiner EmptyFM key elt = unitFM key elt; 51.82/30.20 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 51.82/30.20 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 51.82/30.20 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 51.82/30.20 51.82/30.20 emptyFM :: FiniteMap a b; 51.82/30.20 emptyFM = EmptyFM; 51.82/30.20 51.82/30.20 findMax :: FiniteMap b a -> (b,a); 51.82/30.20 findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); 51.82/30.20 findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; 51.82/30.20 51.82/30.20 findMin :: FiniteMap a b -> (a,b); 51.82/30.20 findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); 51.82/30.20 findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; 51.82/30.20 51.82/30.20 fmToList :: FiniteMap b a -> [(b,a)]; 51.82/30.20 fmToList fm = foldFM fmToList0 [] fm; 51.82/30.20 51.82/30.20 fmToList0 key elt rest = (key,elt) : rest; 51.82/30.20 51.82/30.20 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 51.82/30.20 foldFM k z EmptyFM = z; 51.82/30.20 foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 51.82/30.20 51.82/30.20 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 51.82/30.20 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 51.82/30.20 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 51.82/30.20 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 51.82/30.20 | otherwise = mkBranch 2 key elt fm_L fm_R where { 51.82/30.20 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); 51.82/30.20 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); 51.82/30.20 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 51.82/30.20 | otherwise = double_L fm_L fm_R; 51.82/30.20 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 51.82/30.20 | otherwise = double_R fm_L fm_R; 51.82/30.20 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; 51.82/30.20 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); 51.82/30.20 size_l = sizeFM fm_L; 51.82/30.20 size_r = sizeFM fm_R; 51.82/30.20 }; 51.82/30.20 51.82/30.20 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 51.82/30.20 mkBranch which key elt fm_l fm_r = let { 51.82/30.20 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 51.82/30.20 } in result where { 51.82/30.20 balance_ok = True; 51.82/30.20 left_ok = left_ok0 fm_l key fm_l; 51.82/30.20 left_ok0 fm_l key EmptyFM = True; 51.82/30.20 left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { 51.82/30.20 biggest_left_key = fst (findMax fm_l); 51.82/30.20 } in biggest_left_key < key; 51.82/30.20 left_size = sizeFM fm_l; 51.82/30.20 right_ok = right_ok0 fm_r key fm_r; 51.82/30.20 right_ok0 fm_r key EmptyFM = True; 51.82/30.20 right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { 51.82/30.20 smallest_right_key = fst (findMin fm_r); 51.82/30.20 } in key < smallest_right_key; 51.82/30.20 right_size = sizeFM fm_r; 51.82/30.20 unbox :: Int -> Int; 51.82/30.20 unbox x = x; 51.82/30.20 }; 51.82/30.20 51.82/30.20 mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 51.82/30.20 mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 51.82/30.20 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 51.82/30.20 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 51.82/30.20 | sIZE_RATIO * size_r < size_l = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)) 51.82/30.20 | otherwise = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) where { 51.82/30.20 size_l = sizeFM (Branch vuv vuw vux vuy vuz); 51.82/30.20 size_r = sizeFM (Branch vvv vvw vvx vvy vvz); 51.82/30.20 }; 51.82/30.20 51.82/30.20 plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 51.82/30.20 plusFM EmptyFM fm2 = fm2; 51.82/30.20 plusFM fm1 EmptyFM = fm1; 51.82/30.20 plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 51.82/30.20 gts = splitGT fm1 split_key; 51.82/30.20 lts = splitLT fm1 split_key; 51.82/30.20 }; 51.82/30.20 51.82/30.20 sIZE_RATIO :: Int; 51.82/30.20 sIZE_RATIO = 5; 51.82/30.20 51.82/30.20 sizeFM :: FiniteMap b a -> Int; 51.82/30.20 sizeFM EmptyFM = 0; 51.82/30.20 sizeFM (Branch wux wuy size wuz wvu) = size; 51.82/30.20 51.82/30.20 splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 51.82/30.20 splitGT EmptyFM split_key = emptyFM; 51.82/30.20 splitGT (Branch key elt vwu fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key 51.82/30.20 | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r 51.82/30.20 | otherwise = fm_r; 51.82/30.20 51.82/30.20 splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 51.82/30.20 splitLT EmptyFM split_key = emptyFM; 51.82/30.20 splitLT (Branch key elt vwv fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key 51.82/30.20 | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) 51.82/30.20 | otherwise = fm_l; 51.82/30.20 51.82/30.20 unitFM :: b -> a -> FiniteMap b a; 51.82/30.20 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 51.82/30.20 51.82/30.20 } 51.82/30.20 module Maybe where { 51.82/30.20 import qualified FiniteMap; 51.82/30.20 import qualified Main; 51.82/30.20 import qualified Prelude; 51.82/30.20 } 51.82/30.20 module Main where { 51.82/30.20 import qualified FiniteMap; 51.82/30.20 import qualified Maybe; 51.82/30.20 import qualified Prelude; 51.82/30.20 } 51.82/30.20 51.82/30.20 ---------------------------------------- 51.82/30.20 51.82/30.20 (9) COR (EQUIVALENT) 51.82/30.20 Cond Reductions: 51.82/30.20 The following Function with conditions 51.82/30.20 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 51.82/30.20 " 51.82/30.20 is transformed to 51.82/30.20 "compare x y = compare3 x y; 51.82/30.20 " 51.82/30.20 "compare2 x y True = EQ; 51.82/30.20 compare2 x y False = compare1 x y (x <= y); 51.82/30.20 " 51.82/30.20 "compare0 x y True = GT; 51.82/30.20 " 51.82/30.20 "compare1 x y True = LT; 51.82/30.20 compare1 x y False = compare0 x y otherwise; 51.82/30.20 " 51.82/30.20 "compare3 x y = compare2 x y (x == y); 51.82/30.20 " 51.82/30.20 The following Function with conditions 51.82/30.20 "absReal x|x >= 0x|otherwise`negate` x; 51.82/30.20 " 51.82/30.20 is transformed to 51.82/30.20 "absReal x = absReal2 x; 51.82/30.20 " 51.82/30.20 "absReal0 x True = `negate` x; 51.82/30.20 " 51.82/30.20 "absReal1 x True = x; 51.82/30.20 absReal1 x False = absReal0 x otherwise; 52.27/30.33 " 52.27/30.33 "absReal2 x = absReal1 x (x >= 0); 52.27/30.33 " 52.27/30.33 The following Function with conditions 52.27/30.33 "gcd' x 0 = x; 52.27/30.33 gcd' x y = gcd' y (x `rem` y); 52.27/30.33 " 52.27/30.33 is transformed to 52.27/30.33 "gcd' x wvz = gcd'2 x wvz; 52.27/30.33 gcd' x y = gcd'0 x y; 52.27/30.33 " 52.27/30.33 "gcd'0 x y = gcd' y (x `rem` y); 52.27/30.33 " 52.27/30.33 "gcd'1 True x wvz = x; 52.27/30.33 gcd'1 wwu wwv www = gcd'0 wwv www; 52.27/30.33 " 52.27/30.33 "gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; 52.27/30.33 gcd'2 wwx wwy = gcd'0 wwx wwy; 52.27/30.33 " 52.27/30.33 The following Function with conditions 52.27/30.33 "gcd 0 0 = error []; 52.27/30.33 gcd x y = gcd' (abs x) (abs y) where { 52.27/30.33 gcd' x 0 = x; 52.27/30.33 gcd' x y = gcd' y (x `rem` y); 52.27/30.33 } 52.27/30.33 ; 52.27/30.33 " 52.27/30.33 is transformed to 52.27/30.33 "gcd wwz wxu = gcd3 wwz wxu; 52.27/30.33 gcd x y = gcd0 x y; 52.27/30.33 " 52.27/30.33 "gcd0 x y = gcd' (abs x) (abs y) where { 52.27/30.33 gcd' x wvz = gcd'2 x wvz; 52.27/30.33 gcd' x y = gcd'0 x y; 52.27/30.33 ; 52.27/30.33 gcd'0 x y = gcd' y (x `rem` y); 52.27/30.33 ; 52.27/30.33 gcd'1 True x wvz = x; 52.27/30.33 gcd'1 wwu wwv www = gcd'0 wwv www; 52.27/30.33 ; 52.27/30.33 gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; 52.27/30.33 gcd'2 wwx wwy = gcd'0 wwx wwy; 52.27/30.33 } 52.27/30.33 ; 52.27/30.33 " 52.27/30.33 "gcd1 True wwz wxu = error []; 52.27/30.33 gcd1 wxv wxw wxx = gcd0 wxw wxx; 52.27/30.33 " 52.27/30.33 "gcd2 True wwz wxu = gcd1 (wxu == 0) wwz wxu; 52.27/30.33 gcd2 wxy wxz wyu = gcd0 wxz wyu; 52.27/30.33 " 52.27/30.33 "gcd3 wwz wxu = gcd2 (wwz == 0) wwz wxu; 52.27/30.33 gcd3 wyv wyw = gcd0 wyv wyw; 52.27/30.33 " 52.27/30.33 The following Function with conditions 52.27/30.33 "undefined |Falseundefined; 52.27/30.33 " 52.27/30.33 is transformed to 52.27/30.33 "undefined = undefined1; 52.27/30.33 " 52.27/30.33 "undefined0 True = undefined; 52.27/30.33 " 52.27/30.33 "undefined1 = undefined0 False; 52.27/30.33 " 52.27/30.33 The following Function with conditions 52.27/30.33 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 52.27/30.33 d = gcd x y; 52.27/30.33 } 52.27/30.33 ; 52.27/30.33 " 52.27/30.33 is transformed to 52.27/30.33 "reduce x y = reduce2 x y; 52.27/30.33 " 52.27/30.33 "reduce2 x y = reduce1 x y (y == 0) where { 52.27/30.33 d = gcd x y; 52.27/30.33 ; 52.27/30.33 reduce0 x y True = x `quot` d :% (y `quot` d); 52.27/30.33 ; 52.27/30.33 reduce1 x y True = error []; 52.27/30.33 reduce1 x y False = reduce0 x y otherwise; 52.27/30.33 } 52.27/30.33 ; 52.27/30.33 " 52.27/30.33 The following Function with conditions 52.27/30.33 "addToFM_C combiner EmptyFM key elt = unitFM key elt; 52.27/30.33 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; 52.27/30.33 " 52.27/30.33 is transformed to 52.27/30.33 "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 52.27/30.33 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; 52.27/30.33 " 52.27/30.33 "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); 52.27/30.33 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; 52.27/30.33 " 52.27/30.33 "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; 52.27/30.33 " 52.27/30.33 "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; 52.27/30.33 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); 52.27/30.33 " 52.27/30.33 "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); 52.27/30.33 " 52.27/30.33 "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 52.27/30.33 addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; 52.27/30.33 " 52.27/30.33 The following Function with conditions 52.27/30.33 "mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 52.27/30.33 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 52.27/30.33 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 { 52.27/30.33 size_l = sizeFM (Branch vuv vuw vux vuy vuz); 52.27/30.33 ; 52.27/30.33 size_r = sizeFM (Branch vvv vvw vvx vvy vvz); 52.27/30.33 } 52.27/30.33 ; 52.27/30.33 " 52.27/30.33 is transformed to 52.27/30.33 "mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; 52.27/30.33 mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; 52.27/30.33 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); 52.27/30.33 " 52.27/30.33 "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 { 52.27/30.33 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); 52.27/30.33 ; 52.27/30.33 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)); 52.27/30.33 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; 52.27/30.33 ; 52.27/30.33 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; 52.27/30.33 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); 52.27/30.33 ; 52.27/30.33 size_l = sizeFM (Branch vuv vuw vux vuy vuz); 52.27/30.33 ; 52.27/30.33 size_r = sizeFM (Branch vvv vvw vvx vvy vvz); 52.27/30.33 } 52.27/30.33 ; 52.27/30.33 " 52.27/30.33 "mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; 52.27/30.33 mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; 52.27/30.33 " 52.27/30.33 "mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; 52.27/30.33 mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; 52.27/30.33 " 52.27/30.33 The following Function with conditions 52.27/30.33 "splitGT EmptyFM split_key = emptyFM; 52.27/30.33 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; 52.27/30.33 " 52.27/30.33 is transformed to 52.27/30.33 "splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; 52.27/30.33 splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; 52.27/30.33 " 52.27/30.33 "splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; 52.27/30.33 splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; 52.27/30.33 " 52.27/30.33 "splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; 52.27/30.33 splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); 52.27/30.33 " 52.27/30.33 "splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; 52.27/30.33 " 52.27/30.33 "splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); 52.27/30.33 " 52.27/30.33 "splitGT4 EmptyFM split_key = emptyFM; 52.27/30.33 splitGT4 xvz xwu = splitGT3 xvz xwu; 52.27/30.33 " 52.27/30.33 The following Function with conditions 52.27/30.33 "splitLT EmptyFM split_key = emptyFM; 52.27/30.33 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; 52.27/30.33 " 52.27/30.33 is transformed to 52.27/30.33 "splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; 52.27/30.33 splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; 52.27/30.33 " 52.27/30.33 "splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; 52.27/30.33 splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); 52.27/30.33 " 52.27/30.33 "splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; 52.27/30.33 " 52.27/30.33 "splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); 52.27/30.33 splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; 52.27/30.33 " 52.27/30.33 "splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); 52.27/30.33 " 52.27/30.33 "splitLT4 EmptyFM split_key = emptyFM; 52.27/30.33 splitLT4 xwx xwy = splitLT3 xwx xwy; 52.27/30.33 " 52.27/30.33 The following Function with conditions 52.27/30.33 "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; 52.27/30.33 " 52.27/30.33 is transformed to 52.27/30.33 "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); 52.27/30.33 " 52.27/30.33 "mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; 52.27/30.33 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; 52.27/30.33 " 52.27/30.33 "mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; 52.27/30.33 " 52.27/30.33 "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); 52.27/30.33 " 52.27/30.33 The following Function with conditions 52.27/30.33 "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; 52.27/30.33 " 52.27/30.33 is transformed to 52.27/30.33 "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); 52.27/30.33 " 52.27/30.33 "mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; 52.27/30.33 " 52.27/30.33 "mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; 52.27/30.33 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; 52.27/30.33 " 52.27/30.33 "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); 52.27/30.33 " 52.27/30.33 The following Function with conditions 52.27/30.33 "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 { 52.27/30.33 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); 52.27/30.33 ; 52.27/30.33 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); 52.27/30.33 ; 52.27/30.33 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; 52.27/30.33 ; 52.27/30.33 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; 52.27/30.33 ; 52.27/30.33 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; 52.27/30.33 ; 52.27/30.33 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); 52.27/30.33 ; 52.27/30.33 size_l = sizeFM fm_L; 52.27/30.33 ; 52.27/30.33 size_r = sizeFM fm_R; 52.27/30.33 } 52.27/30.33 ; 52.27/30.33 " 52.27/30.33 is transformed to 52.27/30.33 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 52.27/30.33 " 52.27/30.33 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 52.27/30.33 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); 52.27/30.33 ; 52.27/30.33 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); 52.27/30.33 ; 52.27/30.33 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); 52.27/30.33 ; 52.27/30.33 mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; 52.27/30.33 ; 52.27/30.33 mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; 52.27/30.33 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; 52.27/30.33 ; 52.27/30.33 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); 52.27/30.33 ; 52.27/30.33 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); 52.27/30.33 ; 52.27/30.33 mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; 52.27/30.33 ; 52.27/30.33 mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; 52.27/30.33 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; 52.27/30.33 ; 52.27/30.33 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); 52.27/30.33 ; 52.27/30.33 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 52.27/30.33 ; 52.27/30.33 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 52.27/30.33 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 52.27/30.33 ; 52.27/30.33 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 52.27/30.33 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 52.27/30.33 ; 52.27/30.33 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 52.27/30.33 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 52.27/30.33 ; 52.27/30.33 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; 52.27/30.33 ; 52.27/30.33 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); 52.27/30.33 ; 52.27/30.33 size_l = sizeFM fm_L; 52.27/30.33 ; 52.27/30.33 size_r = sizeFM fm_R; 52.27/30.33 } 52.27/30.33 ; 52.27/30.33 " 52.27/30.33 52.27/30.33 ---------------------------------------- 52.27/30.33 52.27/30.33 (10) 52.27/30.33 Obligation: 52.27/30.33 mainModule Main 52.27/30.33 module FiniteMap where { 52.27/30.33 import qualified Main; 52.27/30.33 import qualified Maybe; 52.27/30.33 import qualified Prelude; 52.27/30.33 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 52.27/30.33 52.27/30.33 instance (Eq a, Eq b) => Eq FiniteMap b a where { 52.27/30.33 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 52.27/30.33 } 52.27/30.33 addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; 52.27/30.33 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 52.27/30.33 52.27/30.33 addToFM0 old new = new; 52.27/30.33 52.27/30.33 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 52.27/30.33 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 52.27/30.33 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; 52.27/30.33 52.27/30.33 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; 52.27/30.33 52.27/30.33 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); 52.27/30.33 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; 52.27/30.33 52.27/30.33 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; 52.27/30.33 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); 52.27/30.33 52.27/30.33 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); 52.27/30.33 52.27/30.33 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 52.27/30.33 addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; 52.27/30.33 52.27/30.33 emptyFM :: FiniteMap b a; 52.27/30.33 emptyFM = EmptyFM; 52.27/30.33 52.27/30.33 findMax :: FiniteMap a b -> (a,b); 52.27/30.33 findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); 52.27/30.33 findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; 52.27/30.33 52.27/30.33 findMin :: FiniteMap a b -> (a,b); 52.27/30.33 findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); 52.27/30.33 findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; 52.27/30.33 52.27/30.33 fmToList :: FiniteMap b a -> [(b,a)]; 52.27/30.33 fmToList fm = foldFM fmToList0 [] fm; 52.27/30.33 52.27/30.33 fmToList0 key elt rest = (key,elt) : rest; 52.27/30.33 52.27/30.33 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 52.27/30.33 foldFM k z EmptyFM = z; 52.27/30.33 foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 52.27/30.33 52.27/30.33 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 52.27/30.33 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 52.27/30.33 52.27/30.33 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 52.27/30.33 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); 52.27/30.33 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); 52.27/30.33 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); 52.27/30.33 mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; 52.27/30.33 mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; 52.27/30.33 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; 52.27/30.33 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); 52.27/30.33 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); 52.27/30.33 mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; 52.27/30.33 mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; 52.27/30.33 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; 52.27/30.33 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); 52.27/30.33 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 52.27/30.33 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 52.27/30.33 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 52.27/30.33 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 52.27/30.33 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 52.27/30.33 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 52.27/30.33 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 52.27/30.33 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; 52.27/30.33 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); 52.27/30.33 size_l = sizeFM fm_L; 52.27/30.33 size_r = sizeFM fm_R; 52.27/30.33 }; 52.27/30.33 52.27/30.33 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 52.27/30.33 mkBranch which key elt fm_l fm_r = let { 52.27/30.33 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 52.27/30.33 } in result where { 52.27/30.33 balance_ok = True; 52.27/30.33 left_ok = left_ok0 fm_l key fm_l; 52.27/30.33 left_ok0 fm_l key EmptyFM = True; 52.27/30.33 left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { 52.27/30.33 biggest_left_key = fst (findMax fm_l); 52.27/30.33 } in biggest_left_key < key; 52.27/30.33 left_size = sizeFM fm_l; 52.27/30.33 right_ok = right_ok0 fm_r key fm_r; 52.27/30.33 right_ok0 fm_r key EmptyFM = True; 52.27/30.33 right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { 52.27/30.33 smallest_right_key = fst (findMin fm_r); 52.27/30.33 } in key < smallest_right_key; 52.27/30.33 right_size = sizeFM fm_r; 52.27/30.33 unbox :: Int -> Int; 52.27/30.33 unbox x = x; 52.27/30.33 }; 52.27/30.33 52.27/30.33 mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 52.27/30.33 mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; 52.27/30.33 mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; 52.27/30.33 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); 52.27/30.33 52.27/30.33 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 { 52.27/30.33 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); 52.27/30.33 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)); 52.27/30.33 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; 52.27/30.33 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; 52.27/30.33 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); 52.27/30.33 size_l = sizeFM (Branch vuv vuw vux vuy vuz); 52.27/30.33 size_r = sizeFM (Branch vvv vvw vvx vvy vvz); 52.27/30.33 }; 52.27/30.33 52.27/30.33 mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; 52.27/30.33 mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; 52.27/30.33 52.27/30.33 mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; 52.27/30.33 mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; 52.27/30.33 52.27/30.33 plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 52.27/30.33 plusFM EmptyFM fm2 = fm2; 52.27/30.33 plusFM fm1 EmptyFM = fm1; 52.27/30.33 plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 52.27/30.33 gts = splitGT fm1 split_key; 52.27/30.33 lts = splitLT fm1 split_key; 52.27/30.33 }; 52.27/30.33 52.27/30.33 sIZE_RATIO :: Int; 52.27/30.33 sIZE_RATIO = 5; 52.27/30.33 52.27/30.33 sizeFM :: FiniteMap b a -> Int; 52.27/30.33 sizeFM EmptyFM = 0; 52.27/30.33 sizeFM (Branch wux wuy size wuz wvu) = size; 52.27/30.33 52.27/30.33 splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 52.27/30.33 splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; 52.27/30.33 splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; 52.27/30.33 52.27/30.33 splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; 52.27/30.33 52.27/30.33 splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; 52.27/30.33 splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; 52.27/30.33 52.27/30.33 splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; 52.27/30.33 splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); 52.27/30.33 52.27/30.33 splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); 52.27/30.33 52.27/30.33 splitGT4 EmptyFM split_key = emptyFM; 52.27/30.33 splitGT4 xvz xwu = splitGT3 xvz xwu; 52.27/30.33 52.27/30.33 splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 52.27/30.33 splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; 52.27/30.33 splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; 52.27/30.33 52.27/30.33 splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; 52.27/30.33 52.27/30.33 splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); 52.27/30.33 splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; 52.27/30.33 52.27/30.33 splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; 52.27/30.33 splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); 52.27/30.33 52.27/30.33 splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); 52.27/30.33 52.27/30.33 splitLT4 EmptyFM split_key = emptyFM; 52.27/30.33 splitLT4 xwx xwy = splitLT3 xwx xwy; 52.27/30.33 52.27/30.33 unitFM :: b -> a -> FiniteMap b a; 52.27/30.33 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 52.27/30.33 52.27/30.33 } 52.27/30.33 module Maybe where { 52.27/30.33 import qualified FiniteMap; 52.27/30.33 import qualified Main; 52.27/30.33 import qualified Prelude; 52.27/30.33 } 52.27/30.33 module Main where { 52.27/30.33 import qualified FiniteMap; 52.27/30.33 import qualified Maybe; 52.27/30.33 import qualified Prelude; 52.27/30.33 } 52.27/30.33 52.27/30.33 ---------------------------------------- 52.27/30.33 52.27/30.33 (11) LetRed (EQUIVALENT) 52.27/30.33 Let/Where Reductions: 52.27/30.33 The bindings of the following Let/Where expression 52.27/30.33 "gcd' (abs x) (abs y) where { 52.27/30.33 gcd' x wvz = gcd'2 x wvz; 52.27/30.33 gcd' x y = gcd'0 x y; 52.27/30.33 ; 52.27/30.33 gcd'0 x y = gcd' y (x `rem` y); 52.27/30.33 ; 52.27/30.33 gcd'1 True x wvz = x; 52.27/30.33 gcd'1 wwu wwv www = gcd'0 wwv www; 52.27/30.33 ; 52.27/30.33 gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; 52.27/30.33 gcd'2 wwx wwy = gcd'0 wwx wwy; 52.27/30.33 } 52.27/30.33 " 52.27/30.33 are unpacked to the following functions on top level 52.27/30.33 "gcd0Gcd' x wvz = gcd0Gcd'2 x wvz; 52.27/30.33 gcd0Gcd' x y = gcd0Gcd'0 x y; 52.27/30.33 " 52.27/30.33 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 52.27/30.33 " 52.27/30.33 "gcd0Gcd'2 x wvz = gcd0Gcd'1 (wvz == 0) x wvz; 52.27/30.33 gcd0Gcd'2 wwx wwy = gcd0Gcd'0 wwx wwy; 52.27/30.33 " 52.27/30.33 "gcd0Gcd'1 True x wvz = x; 52.27/30.33 gcd0Gcd'1 wwu wwv www = gcd0Gcd'0 wwv www; 52.27/30.33 " 52.27/30.33 The bindings of the following Let/Where expression 52.27/30.33 "reduce1 x y (y == 0) where { 52.27/30.33 d = gcd x y; 52.27/30.33 ; 52.27/30.33 reduce0 x y True = x `quot` d :% (y `quot` d); 52.27/30.33 ; 52.27/30.33 reduce1 x y True = error []; 52.27/30.33 reduce1 x y False = reduce0 x y otherwise; 52.27/30.33 } 52.27/30.33 " 52.27/30.33 are unpacked to the following functions on top level 52.27/30.33 "reduce2Reduce0 xxv xxw x y True = x `quot` reduce2D xxv xxw :% (y `quot` reduce2D xxv xxw); 52.27/30.33 " 52.27/30.33 "reduce2Reduce1 xxv xxw x y True = error []; 52.27/30.33 reduce2Reduce1 xxv xxw x y False = reduce2Reduce0 xxv xxw x y otherwise; 52.27/30.33 " 52.27/30.33 "reduce2D xxv xxw = gcd xxv xxw; 52.27/30.33 " 52.27/30.33 The bindings of the following Let/Where expression 52.27/30.33 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 52.27/30.33 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); 52.27/30.33 ; 52.27/30.33 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); 52.27/30.33 ; 52.27/30.33 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); 52.27/30.33 ; 52.27/30.33 mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; 52.27/30.33 ; 52.27/30.33 mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; 52.27/30.33 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; 52.27/30.34 ; 52.27/30.34 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); 52.27/30.34 ; 52.27/30.34 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); 52.27/30.34 ; 52.27/30.34 mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; 52.27/30.34 ; 52.27/30.34 mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; 52.27/30.34 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; 52.27/30.34 ; 52.27/30.34 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); 52.27/30.34 ; 52.27/30.34 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 52.27/30.34 ; 52.27/30.34 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 52.27/30.34 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 52.27/30.34 ; 52.27/30.34 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 52.27/30.34 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 52.27/30.34 ; 52.27/30.34 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 52.27/30.34 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 52.27/30.34 ; 52.27/30.34 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; 52.27/30.34 ; 52.27/30.34 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); 52.27/30.34 ; 52.27/30.34 size_l = sizeFM fm_L; 52.27/30.34 ; 52.27/30.34 size_r = sizeFM fm_R; 52.27/30.34 } 52.27/30.34 " 52.27/30.34 are unpacked to the following functions on top level 52.27/30.34 "mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; 52.27/30.34 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); 52.27/30.34 " 52.27/30.34 "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; 52.27/30.34 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; 52.27/30.34 " 52.27/30.34 "mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 52.27/30.34 " 52.27/30.34 "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; 52.27/30.34 " 52.27/30.34 "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); 52.27/30.34 " 52.27/30.34 "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; 52.27/30.34 " 52.27/30.34 "mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; 52.27/30.34 mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; 52.27/30.34 " 52.27/30.34 "mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xxz; 52.27/30.34 " 52.27/30.34 "mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xyu; 52.27/30.34 " 52.27/30.34 "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); 52.27/30.34 " 52.27/30.34 "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; 52.27/30.34 " 52.27/30.34 "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; 52.27/30.34 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; 52.27/30.34 " 52.27/30.34 "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); 52.27/30.34 " 52.27/30.34 "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); 52.27/30.34 " 52.27/30.34 "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); 52.27/30.34 " 52.27/30.34 "mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 52.27/30.34 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); 52.27/30.34 " 52.27/30.34 "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); 52.27/30.34 " 52.27/30.34 "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); 52.27/30.34 " 52.27/30.34 The bindings of the following Let/Where expression 52.27/30.34 "let { 52.27/30.34 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 52.27/30.34 } in result where { 52.27/30.34 balance_ok = True; 52.27/30.34 ; 52.27/30.34 left_ok = left_ok0 fm_l key fm_l; 52.27/30.34 ; 52.27/30.34 left_ok0 fm_l key EmptyFM = True; 52.27/30.34 left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { 52.27/30.34 biggest_left_key = fst (findMax fm_l); 52.27/30.34 } in biggest_left_key < key; 52.27/30.34 ; 52.27/30.34 left_size = sizeFM fm_l; 52.27/30.34 ; 52.27/30.34 right_ok = right_ok0 fm_r key fm_r; 52.27/30.34 ; 52.27/30.34 right_ok0 fm_r key EmptyFM = True; 52.27/30.34 right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { 52.27/30.34 smallest_right_key = fst (findMin fm_r); 52.27/30.34 } in key < smallest_right_key; 52.27/30.34 ; 52.27/30.34 right_size = sizeFM fm_r; 52.27/30.34 ; 52.27/30.34 unbox x = x; 52.27/30.34 } 52.27/30.34 " 52.27/30.34 are unpacked to the following functions on top level 52.27/30.34 "mkBranchBalance_ok xyv xyw xyx = True; 52.27/30.34 " 52.27/30.34 "mkBranchUnbox xyv xyw xyx x = x; 52.27/30.34 " 52.27/30.34 "mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyv xyw xyv; 52.27/30.34 " 52.27/30.34 "mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyx xyw xyx; 52.27/30.34 " 52.27/30.34 "mkBranchLeft_size xyv xyw xyx = sizeFM xyv; 52.27/30.34 " 52.27/30.34 "mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; 52.27/30.34 mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; 52.27/30.34 " 52.27/30.34 "mkBranchRight_size xyv xyw xyx = sizeFM xyx; 52.27/30.34 " 52.27/30.34 "mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; 52.27/30.34 mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 52.27/30.34 " 52.27/30.34 The bindings of the following Let/Where expression 52.27/30.34 "let { 52.27/30.34 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 52.27/30.34 } in result" 52.27/30.34 are unpacked to the following functions on top level 52.27/30.34 "mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (1 + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzu xzv; 52.27/30.34 " 52.27/30.34 The bindings of the following Let/Where expression 52.27/30.34 "mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 52.27/30.34 gts = splitGT fm1 split_key; 52.27/30.34 ; 52.27/30.34 lts = splitLT fm1 split_key; 52.27/30.34 } 52.27/30.34 " 52.27/30.34 are unpacked to the following functions on top level 52.27/30.34 "plusFMGts xzw xzx = splitGT xzw xzx; 52.27/30.34 " 52.27/30.34 "plusFMLts xzw xzx = splitLT xzw xzx; 52.27/30.34 " 52.27/30.34 The bindings of the following Let/Where expression 52.27/30.34 "mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { 52.27/30.34 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); 52.27/30.34 ; 52.27/30.34 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)); 52.27/30.34 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; 52.27/30.34 ; 52.27/30.34 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; 52.27/30.34 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); 52.27/30.34 ; 52.27/30.34 size_l = sizeFM (Branch vuv vuw vux vuy vuz); 52.27/30.34 ; 52.27/30.34 size_r = sizeFM (Branch vvv vvw vvx vvy vvz); 52.61/30.38 } 52.61/30.38 " 52.61/30.38 are unpacked to the following functions on top level 52.61/30.38 "mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); 52.61/30.38 " 52.61/30.38 "mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); 52.61/30.38 " 52.61/30.38 "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)); 52.61/30.38 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; 52.61/30.38 " 52.61/30.38 "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); 52.61/30.38 " 52.61/30.38 "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; 52.61/30.38 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); 52.61/30.38 " 52.61/30.38 The bindings of the following Let/Where expression 52.61/30.38 "let { 52.61/30.38 smallest_right_key = fst (findMin fm_r); 52.61/30.38 } in key < smallest_right_key" 52.61/30.38 are unpacked to the following functions on top level 52.61/30.38 "mkBranchRight_ok0Smallest_right_key yvw = fst (findMin yvw); 52.61/30.38 " 52.61/30.38 The bindings of the following Let/Where expression 52.61/30.38 "let { 52.61/30.38 biggest_left_key = fst (findMax fm_l); 52.61/30.38 } in biggest_left_key < key" 52.61/30.38 are unpacked to the following functions on top level 52.61/30.38 "mkBranchLeft_ok0Biggest_left_key yvx = fst (findMax yvx); 52.61/30.38 " 52.61/30.38 52.61/30.38 ---------------------------------------- 52.61/30.38 52.61/30.38 (12) 52.61/30.38 Obligation: 52.61/30.38 mainModule Main 52.61/30.38 module FiniteMap where { 52.61/30.38 import qualified Main; 52.61/30.38 import qualified Maybe; 52.61/30.38 import qualified Prelude; 52.61/30.38 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 52.61/30.38 52.61/30.38 instance (Eq a, Eq b) => Eq FiniteMap b a where { 52.61/30.38 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 52.61/30.38 } 52.61/30.38 addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; 52.61/30.38 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 52.61/30.38 52.61/30.38 addToFM0 old new = new; 52.61/30.38 52.61/30.38 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 52.61/30.38 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 52.61/30.38 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; 52.61/30.38 52.61/30.38 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; 52.61/30.38 52.61/30.38 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); 52.61/30.38 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; 52.61/30.38 52.61/30.38 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; 52.61/30.38 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); 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 52.61/30.38 addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; 52.61/30.38 52.61/30.38 emptyFM :: FiniteMap b a; 52.61/30.38 emptyFM = EmptyFM; 52.61/30.38 52.61/30.38 findMax :: FiniteMap a b -> (a,b); 52.61/30.38 findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); 52.61/30.38 findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; 52.61/30.38 52.61/30.38 findMin :: FiniteMap a b -> (a,b); 52.61/30.38 findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); 52.61/30.38 findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; 52.61/30.38 52.61/30.38 fmToList :: FiniteMap b a -> [(b,a)]; 52.61/30.38 fmToList fm = foldFM fmToList0 [] fm; 52.61/30.38 52.61/30.38 fmToList0 key elt rest = (key,elt) : rest; 52.61/30.38 52.61/30.38 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 52.61/30.38 foldFM k z EmptyFM = z; 52.61/30.38 foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 52.61/30.38 52.61/30.38 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 52.61/30.38 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 52.61/30.38 52.61/30.38 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < 2); 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 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; 52.61/30.38 52.61/30.38 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; 52.61/30.38 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; 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 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; 52.61/30.38 52.61/30.38 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; 52.61/30.38 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; 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 52.61/30.38 52.61/30.38 mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; 52.61/30.38 mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; 52.61/30.38 52.61/30.38 mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; 52.61/30.38 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); 52.61/30.38 52.61/30.38 mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 52.61/30.38 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); 52.61/30.38 52.61/30.38 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; 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xyu; 52.61/30.38 52.61/30.38 mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xxz; 52.61/30.38 52.61/30.38 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 52.61/30.38 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 52.61/30.38 52.61/30.38 mkBranchBalance_ok xyv xyw xyx = True; 52.61/30.38 52.61/30.38 mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyv xyw xyv; 52.61/30.38 52.61/30.38 mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; 52.61/30.38 mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 52.61/30.38 52.61/30.38 mkBranchLeft_ok0Biggest_left_key yvx = fst (findMax yvx); 52.61/30.38 52.61/30.38 mkBranchLeft_size xyv xyw xyx = sizeFM xyv; 52.61/30.38 52.61/30.38 mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (1 + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzu xzv; 52.61/30.38 52.61/30.38 mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyx xyw xyx; 52.61/30.38 52.61/30.38 mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; 52.61/30.38 mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; 52.61/30.38 52.61/30.38 mkBranchRight_ok0Smallest_right_key yvw = fst (findMin yvw); 52.61/30.38 52.61/30.38 mkBranchRight_size xyv xyw xyx = sizeFM xyx; 52.61/30.38 52.61/30.38 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 52.61/30.38 mkBranchUnbox xyv xyw xyx x = x; 52.61/30.38 52.61/30.38 mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 52.61/30.38 mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; 52.61/30.38 mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; 52.61/30.38 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); 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 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)); 52.61/30.38 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; 52.61/30.38 52.61/30.38 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; 52.61/30.38 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); 52.61/30.38 52.61/30.38 mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); 52.61/30.38 52.61/30.38 mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); 52.61/30.38 52.61/30.38 mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; 52.61/30.38 mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; 52.61/30.38 52.61/30.38 mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; 52.61/30.38 mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; 52.61/30.38 52.61/30.38 plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 52.61/30.38 plusFM EmptyFM fm2 = fm2; 52.61/30.38 plusFM fm1 EmptyFM = fm1; 52.61/30.38 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); 52.61/30.38 52.61/30.38 plusFMGts xzw xzx = splitGT xzw xzx; 52.61/30.38 52.61/30.38 plusFMLts xzw xzx = splitLT xzw xzx; 52.61/30.38 52.61/30.38 sIZE_RATIO :: Int; 52.61/30.38 sIZE_RATIO = 5; 52.61/30.38 52.61/30.38 sizeFM :: FiniteMap b a -> Int; 52.61/30.38 sizeFM EmptyFM = 0; 52.61/30.38 sizeFM (Branch wux wuy size wuz wvu) = size; 52.61/30.38 52.61/30.38 splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 52.61/30.38 splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; 52.61/30.38 splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; 52.61/30.38 52.61/30.38 splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; 52.61/30.38 52.61/30.38 splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; 52.61/30.38 splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; 52.61/30.38 52.61/30.38 splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; 52.61/30.38 splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); 52.61/30.38 52.61/30.38 splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); 52.61/30.38 52.61/30.38 splitGT4 EmptyFM split_key = emptyFM; 52.61/30.38 splitGT4 xvz xwu = splitGT3 xvz xwu; 52.61/30.38 52.61/30.38 splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 52.61/30.38 splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; 52.61/30.38 splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; 52.61/30.38 52.61/30.38 splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; 52.61/30.38 52.61/30.38 splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); 52.61/30.38 splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; 52.61/30.38 52.61/30.38 splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; 52.61/30.38 splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); 52.61/30.38 52.61/30.38 splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); 52.61/30.38 52.61/30.38 splitLT4 EmptyFM split_key = emptyFM; 52.61/30.38 splitLT4 xwx xwy = splitLT3 xwx xwy; 52.61/30.38 52.61/30.38 unitFM :: b -> a -> FiniteMap b a; 52.61/30.38 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 52.61/30.38 52.61/30.38 } 52.61/30.38 module Maybe where { 52.61/30.38 import qualified FiniteMap; 52.61/30.38 import qualified Main; 52.61/30.38 import qualified Prelude; 52.61/30.38 } 52.61/30.38 module Main where { 52.61/30.38 import qualified FiniteMap; 52.61/30.38 import qualified Maybe; 52.61/30.38 import qualified Prelude; 52.61/30.38 } 52.61/30.38 52.61/30.38 ---------------------------------------- 52.61/30.38 52.61/30.38 (13) NumRed (SOUND) 52.61/30.38 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 52.61/30.38 ---------------------------------------- 52.61/30.38 52.61/30.38 (14) 52.61/30.38 Obligation: 52.61/30.38 mainModule Main 52.61/30.38 module FiniteMap where { 52.61/30.38 import qualified Main; 52.61/30.38 import qualified Maybe; 52.61/30.38 import qualified Prelude; 52.61/30.38 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 52.61/30.38 52.61/30.38 instance (Eq a, Eq b) => Eq FiniteMap a b where { 52.61/30.38 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 52.61/30.38 } 52.61/30.38 addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; 52.61/30.38 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 52.61/30.38 52.61/30.38 addToFM0 old new = new; 52.61/30.38 52.61/30.38 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 52.61/30.38 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 52.61/30.38 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; 52.61/30.38 52.61/30.38 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; 52.61/30.38 52.61/30.38 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); 52.61/30.38 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; 52.61/30.38 52.61/30.38 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; 52.61/30.38 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); 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 52.61/30.38 addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; 52.61/30.38 52.61/30.38 emptyFM :: FiniteMap a b; 52.61/30.38 emptyFM = EmptyFM; 52.61/30.38 52.61/30.38 findMax :: FiniteMap b a -> (b,a); 52.61/30.38 findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); 52.61/30.38 findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; 52.61/30.38 52.61/30.38 findMin :: FiniteMap a b -> (a,b); 52.61/30.38 findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); 52.61/30.38 findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; 52.61/30.38 52.61/30.38 fmToList :: FiniteMap a b -> [(a,b)]; 52.61/30.38 fmToList fm = foldFM fmToList0 [] fm; 52.61/30.38 52.61/30.38 fmToList0 key elt rest = (key,elt) : rest; 52.61/30.38 52.61/30.38 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 52.61/30.38 foldFM k z EmptyFM = z; 52.61/30.38 foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 52.61/30.38 52.61/30.38 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 52.61/30.38 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 52.61/30.38 52.61/30.38 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < Pos (Succ (Succ Zero))); 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 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; 52.61/30.38 52.61/30.38 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; 52.61/30.38 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; 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 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; 52.61/30.38 52.61/30.38 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; 52.61/30.38 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; 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 52.61/30.38 52.61/30.38 mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; 52.61/30.38 mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; 52.61/30.38 52.61/30.38 mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; 52.61/30.38 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); 52.61/30.38 52.61/30.38 mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 52.61/30.38 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); 52.61/30.38 52.61/30.38 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; 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xyu; 52.61/30.38 52.61/30.38 mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xxz; 52.61/30.38 52.61/30.38 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 52.61/30.38 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 52.61/30.38 52.61/30.38 mkBranchBalance_ok xyv xyw xyx = True; 52.61/30.38 52.61/30.38 mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyv xyw xyv; 52.61/30.38 52.61/30.38 mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; 52.61/30.38 mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 52.61/30.38 52.61/30.38 mkBranchLeft_ok0Biggest_left_key yvx = fst (findMax yvx); 52.61/30.38 52.61/30.38 mkBranchLeft_size xyv xyw xyx = sizeFM xyv; 52.61/30.38 52.61/30.38 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)) xzu xzv; 52.61/30.38 52.61/30.38 mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyx xyw xyx; 52.61/30.38 52.61/30.38 mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; 52.61/30.38 mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; 52.61/30.38 52.61/30.38 mkBranchRight_ok0Smallest_right_key yvw = fst (findMin yvw); 52.61/30.38 52.61/30.38 mkBranchRight_size xyv xyw xyx = sizeFM xyx; 52.61/30.38 52.61/30.38 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 52.61/30.38 mkBranchUnbox xyv xyw xyx x = x; 52.61/30.38 52.61/30.38 mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 52.61/30.38 mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; 52.61/30.38 mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; 52.61/30.38 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); 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 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); 52.61/30.38 52.61/30.38 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)); 52.61/30.38 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; 52.61/30.38 52.61/30.38 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; 52.61/30.38 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); 52.61/30.38 52.61/30.38 mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); 52.61/30.38 52.61/30.38 mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); 52.61/30.38 52.61/30.38 mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; 52.61/30.38 mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; 52.61/30.38 52.61/30.38 mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; 52.61/30.38 mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; 52.61/30.38 52.61/30.38 plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 52.61/30.38 plusFM EmptyFM fm2 = fm2; 52.61/30.38 plusFM fm1 EmptyFM = fm1; 52.61/30.38 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); 52.61/30.38 52.61/30.38 plusFMGts xzw xzx = splitGT xzw xzx; 52.61/30.38 52.61/30.38 plusFMLts xzw xzx = splitLT xzw xzx; 52.61/30.38 52.61/30.38 sIZE_RATIO :: Int; 52.61/30.38 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 52.61/30.38 52.61/30.38 sizeFM :: FiniteMap b a -> Int; 52.61/30.38 sizeFM EmptyFM = Pos Zero; 52.61/30.38 sizeFM (Branch wux wuy size wuz wvu) = size; 52.61/30.38 52.61/30.38 splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 52.61/30.38 splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; 52.61/30.38 splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; 52.61/30.38 52.61/30.38 splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; 52.61/30.38 52.61/30.38 splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; 52.61/30.38 splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; 52.61/30.38 52.61/30.38 splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; 52.61/30.38 splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); 52.61/30.38 52.61/30.38 splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); 52.61/30.38 52.61/30.38 splitGT4 EmptyFM split_key = emptyFM; 52.61/30.38 splitGT4 xvz xwu = splitGT3 xvz xwu; 52.61/30.38 52.61/30.38 splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 52.61/30.38 splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; 52.61/30.38 splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; 52.61/30.38 52.61/30.38 splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; 52.61/30.38 52.61/30.38 splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); 52.61/30.38 splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; 52.61/30.38 52.61/30.38 splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; 52.61/30.38 splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); 52.61/30.38 52.61/30.38 splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); 52.61/30.38 52.61/30.38 splitLT4 EmptyFM split_key = emptyFM; 52.61/30.38 splitLT4 xwx xwy = splitLT3 xwx xwy; 52.61/30.38 52.61/30.38 unitFM :: b -> a -> FiniteMap b a; 52.61/30.38 unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; 52.61/30.38 52.61/30.38 } 52.61/30.38 module Maybe where { 52.61/30.38 import qualified FiniteMap; 52.61/30.38 import qualified Main; 52.61/30.38 import qualified Prelude; 52.61/30.38 } 52.61/30.38 module Main where { 52.61/30.38 import qualified FiniteMap; 52.61/30.38 import qualified Maybe; 52.61/30.38 import qualified Prelude; 52.61/30.38 } 52.61/30.38 52.61/30.38 ---------------------------------------- 52.61/30.38 52.61/30.38 (15) Narrow (SOUND) 52.61/30.38 Haskell To QDPs 52.61/30.38 52.61/30.38 digraph dp_graph { 52.61/30.38 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.plusFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 52.61/30.38 3[label="FiniteMap.plusFM yvy3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 52.61/30.38 4[label="FiniteMap.plusFM yvy3 yvy4",fontsize=16,color="burlywood",shape="triangle"];3635[label="yvy3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 3635[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3635 -> 5[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3636[label="yvy3/FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=10,color="white",style="solid",shape="box"];4 -> 3636[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3636 -> 6[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 5[label="FiniteMap.plusFM FiniteMap.EmptyFM yvy4",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 52.61/30.38 6[label="FiniteMap.plusFM (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy4",fontsize=16,color="burlywood",shape="box"];3637[label="yvy4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 3637[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3637 -> 8[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3638[label="yvy4/FiniteMap.Branch yvy40 yvy41 yvy42 yvy43 yvy44",fontsize=10,color="white",style="solid",shape="box"];6 -> 3638[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3638 -> 9[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 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]; 52.61/30.38 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]; 52.61/30.38 10[label="FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=16,color="green",shape="box"];11 -> 12[label="",style="dashed", color="red", weight=0]; 52.61/30.38 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]; 52.61/30.38 11 -> 14[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 13 -> 4[label="",style="dashed", color="red", weight=0]; 52.61/30.38 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]; 52.61/30.38 13 -> 16[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 14 -> 4[label="",style="dashed", color="red", weight=0]; 52.61/30.38 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]; 52.61/30.38 14 -> 18[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 12[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy6 yvy5",fontsize=16,color="burlywood",shape="triangle"];3639[label="yvy6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];12 -> 3639[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3639 -> 19[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3640[label="yvy6/FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=10,color="white",style="solid",shape="box"];12 -> 3640[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3640 -> 20[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 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]; 52.61/30.38 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]; 52.61/30.38 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]; 52.61/30.38 20[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy5",fontsize=16,color="burlywood",shape="box"];3641[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];20 -> 3641[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3641 -> 24[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3642[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];20 -> 3642[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3642 -> 25[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 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]; 52.61/30.38 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]; 52.61/30.38 23[label="FiniteMap.mkVBalBranch5 yvy40 yvy41 FiniteMap.EmptyFM yvy5",fontsize=16,color="black",shape="box"];23 -> 28[label="",style="solid", color="black", weight=3]; 52.61/30.38 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]; 52.61/30.38 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]; 52.61/30.38 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]; 52.61/30.38 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]; 52.61/30.38 28[label="FiniteMap.addToFM yvy5 yvy40 yvy41",fontsize=16,color="black",shape="triangle"];28 -> 33[label="",style="solid", color="black", weight=3]; 52.61/30.38 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]; 52.61/30.38 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]; 52.61/30.38 31 -> 36[label="",style="dashed", color="red", weight=0]; 52.61/30.38 31[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (yvy40 > yvy30)",fontsize=16,color="magenta"];31 -> 37[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 31 -> 38[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 31 -> 39[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 31 -> 40[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 31 -> 41[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 31 -> 42[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 31 -> 43[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 32 -> 44[label="",style="dashed", color="red", weight=0]; 52.61/30.38 32[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (yvy40 < yvy30)",fontsize=16,color="magenta"];32 -> 45[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 32 -> 46[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 32 -> 47[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 32 -> 48[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 32 -> 49[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 32 -> 50[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 32 -> 51[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 33[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy5 yvy40 yvy41",fontsize=16,color="burlywood",shape="triangle"];3643[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];33 -> 3643[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3643 -> 52[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3644[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];33 -> 3644[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3644 -> 53[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 34 -> 28[label="",style="dashed", color="red", weight=0]; 52.61/30.38 34[label="FiniteMap.addToFM (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy40 yvy41",fontsize=16,color="magenta"];34 -> 54[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 35 -> 277[label="",style="dashed", color="red", weight=0]; 52.61/30.38 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="magenta"];35 -> 278[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 37[label="yvy34",fontsize=16,color="green",shape="box"];38[label="yvy33",fontsize=16,color="green",shape="box"];39[label="yvy40 > yvy30",fontsize=16,color="blue",shape="box"];3645[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3645[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3645 -> 56[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3646[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3646[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3646 -> 57[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3647[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3647[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3647 -> 58[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3648[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3648[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3648 -> 59[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3649[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3649[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3649 -> 60[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3650[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3650[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3650 -> 61[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3651[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3651[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3651 -> 62[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3652[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3652[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3652 -> 63[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3653[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3653[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3653 -> 64[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3654[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3654[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3654 -> 65[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3655[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3655[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3655 -> 66[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3656[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3656[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3656 -> 67[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3657[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3657[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3657 -> 68[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3658[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3658[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3658 -> 69[label="",style="solid", color="blue", weight=3]; 52.61/30.38 40[label="yvy31",fontsize=16,color="green",shape="box"];41[label="yvy30",fontsize=16,color="green",shape="box"];42[label="yvy32",fontsize=16,color="green",shape="box"];43[label="yvy40",fontsize=16,color="green",shape="box"];36[label="FiniteMap.splitGT2 yvy15 yvy16 yvy17 yvy18 yvy19 yvy20 yvy21",fontsize=16,color="burlywood",shape="triangle"];3659[label="yvy21/False",fontsize=10,color="white",style="solid",shape="box"];36 -> 3659[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3659 -> 70[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3660[label="yvy21/True",fontsize=10,color="white",style="solid",shape="box"];36 -> 3660[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3660 -> 71[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 45[label="yvy32",fontsize=16,color="green",shape="box"];46[label="yvy40",fontsize=16,color="green",shape="box"];47[label="yvy40 < yvy30",fontsize=16,color="blue",shape="box"];3661[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3661[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3661 -> 72[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3662[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3662[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3662 -> 73[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3663[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3663[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3663 -> 74[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3664[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3664[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3664 -> 75[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3665[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3665[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3665 -> 76[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3666[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3666[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3666 -> 77[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3667[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3667[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3667 -> 78[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3668[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3668[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3668 -> 79[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3669[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3669[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3669 -> 80[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3670[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3670[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3670 -> 81[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3671[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3671[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3671 -> 82[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3672[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3672[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3672 -> 83[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3673[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3673[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3673 -> 84[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3674[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3674[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3674 -> 85[label="",style="solid", color="blue", weight=3]; 52.61/30.38 48[label="yvy33",fontsize=16,color="green",shape="box"];49[label="yvy34",fontsize=16,color="green",shape="box"];50[label="yvy31",fontsize=16,color="green",shape="box"];51[label="yvy30",fontsize=16,color="green",shape="box"];44[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy35 yvy36",fontsize=16,color="burlywood",shape="triangle"];3675[label="yvy36/False",fontsize=10,color="white",style="solid",shape="box"];44 -> 3675[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3675 -> 86[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3676[label="yvy36/True",fontsize=10,color="white",style="solid",shape="box"];44 -> 3676[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3676 -> 87[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 52[label="FiniteMap.addToFM_C FiniteMap.addToFM0 FiniteMap.EmptyFM yvy40 yvy41",fontsize=16,color="black",shape="box"];52 -> 88[label="",style="solid", color="black", weight=3]; 52.61/30.38 53[label="FiniteMap.addToFM_C FiniteMap.addToFM0 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54) yvy40 yvy41",fontsize=16,color="black",shape="box"];53 -> 89[label="",style="solid", color="black", weight=3]; 52.61/30.38 54[label="FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="green",shape="box"];278 -> 74[label="",style="dashed", color="red", weight=0]; 52.61/30.38 278[label="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="magenta"];278 -> 283[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 278 -> 284[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 277[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 yvy84",fontsize=16,color="burlywood",shape="triangle"];3677[label="yvy84/False",fontsize=10,color="white",style="solid",shape="box"];277 -> 3677[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3677 -> 285[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3678[label="yvy84/True",fontsize=10,color="white",style="solid",shape="box"];277 -> 3678[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3678 -> 286[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 56[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];56 -> 91[label="",style="solid", color="black", weight=3]; 52.61/30.38 57[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];57 -> 92[label="",style="solid", color="black", weight=3]; 52.61/30.38 58[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];58 -> 93[label="",style="solid", color="black", weight=3]; 52.61/30.38 59[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];59 -> 94[label="",style="solid", color="black", weight=3]; 52.61/30.38 60[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];60 -> 95[label="",style="solid", color="black", weight=3]; 52.61/30.38 61[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];61 -> 96[label="",style="solid", color="black", weight=3]; 52.61/30.38 62[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];62 -> 97[label="",style="solid", color="black", weight=3]; 52.61/30.38 63[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];63 -> 98[label="",style="solid", color="black", weight=3]; 52.61/30.38 64[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];64 -> 99[label="",style="solid", color="black", weight=3]; 52.61/30.38 65[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];65 -> 100[label="",style="solid", color="black", weight=3]; 52.61/30.38 66[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];66 -> 101[label="",style="solid", color="black", weight=3]; 52.61/30.38 67[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];67 -> 102[label="",style="solid", color="black", weight=3]; 52.61/30.38 68[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];68 -> 103[label="",style="solid", color="black", weight=3]; 52.61/30.38 69[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];69 -> 104[label="",style="solid", color="black", weight=3]; 52.61/30.38 70[label="FiniteMap.splitGT2 yvy15 yvy16 yvy17 yvy18 yvy19 yvy20 False",fontsize=16,color="black",shape="box"];70 -> 105[label="",style="solid", color="black", weight=3]; 52.61/30.38 71[label="FiniteMap.splitGT2 yvy15 yvy16 yvy17 yvy18 yvy19 yvy20 True",fontsize=16,color="black",shape="box"];71 -> 106[label="",style="solid", color="black", weight=3]; 52.61/30.38 72[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];72 -> 107[label="",style="solid", color="black", weight=3]; 52.61/30.38 73[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];73 -> 108[label="",style="solid", color="black", weight=3]; 52.61/30.38 74[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];74 -> 109[label="",style="solid", color="black", weight=3]; 52.61/30.38 75[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];75 -> 110[label="",style="solid", color="black", weight=3]; 52.61/30.38 76[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];76 -> 111[label="",style="solid", color="black", weight=3]; 52.61/30.38 77[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];77 -> 112[label="",style="solid", color="black", weight=3]; 52.61/30.38 78[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];78 -> 113[label="",style="solid", color="black", weight=3]; 52.61/30.38 79[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];79 -> 114[label="",style="solid", color="black", weight=3]; 52.61/30.38 80[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];80 -> 115[label="",style="solid", color="black", weight=3]; 52.61/30.38 81[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];81 -> 116[label="",style="solid", color="black", weight=3]; 52.61/30.38 82[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];82 -> 117[label="",style="solid", color="black", weight=3]; 52.61/30.38 83[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];83 -> 118[label="",style="solid", color="black", weight=3]; 52.61/30.38 84[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];84 -> 119[label="",style="solid", color="black", weight=3]; 52.61/30.38 85[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];85 -> 120[label="",style="solid", color="black", weight=3]; 52.61/30.38 86[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy35 False",fontsize=16,color="black",shape="box"];86 -> 121[label="",style="solid", color="black", weight=3]; 52.61/30.38 87[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy35 True",fontsize=16,color="black",shape="box"];87 -> 122[label="",style="solid", color="black", weight=3]; 52.61/30.38 88[label="FiniteMap.addToFM_C4 FiniteMap.addToFM0 FiniteMap.EmptyFM yvy40 yvy41",fontsize=16,color="black",shape="box"];88 -> 123[label="",style="solid", color="black", weight=3]; 52.61/30.38 89[label="FiniteMap.addToFM_C3 FiniteMap.addToFM0 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54) yvy40 yvy41",fontsize=16,color="black",shape="box"];89 -> 124[label="",style="solid", color="black", weight=3]; 52.61/30.38 283 -> 599[label="",style="dashed", color="red", weight=0]; 52.61/30.38 283[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="magenta"];283 -> 600[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 284[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="black",shape="triangle"];284 -> 433[label="",style="solid", color="black", weight=3]; 52.61/30.38 285[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 False",fontsize=16,color="black",shape="box"];285 -> 434[label="",style="solid", color="black", weight=3]; 52.61/30.38 286[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 True",fontsize=16,color="black",shape="box"];286 -> 435[label="",style="solid", color="black", weight=3]; 52.61/30.38 91 -> 478[label="",style="dashed", color="red", weight=0]; 52.61/30.38 91[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];91 -> 479[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 92 -> 478[label="",style="dashed", color="red", weight=0]; 52.61/30.38 92[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];92 -> 480[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 93 -> 478[label="",style="dashed", color="red", weight=0]; 52.61/30.38 93[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];93 -> 481[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 94 -> 478[label="",style="dashed", color="red", weight=0]; 52.61/30.38 94[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];94 -> 482[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 95 -> 478[label="",style="dashed", color="red", weight=0]; 52.61/30.38 95[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];95 -> 483[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 96 -> 478[label="",style="dashed", color="red", weight=0]; 52.61/30.38 96[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];96 -> 484[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 97 -> 478[label="",style="dashed", color="red", weight=0]; 52.61/30.38 97[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];97 -> 485[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 98 -> 478[label="",style="dashed", color="red", weight=0]; 52.61/30.38 98[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];98 -> 486[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 99 -> 478[label="",style="dashed", color="red", weight=0]; 52.61/30.38 99[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];99 -> 487[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 100 -> 478[label="",style="dashed", color="red", weight=0]; 52.61/30.38 100[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];100 -> 488[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 101 -> 478[label="",style="dashed", color="red", weight=0]; 52.61/30.38 101[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];101 -> 489[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 102 -> 478[label="",style="dashed", color="red", weight=0]; 52.61/30.38 102[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];102 -> 490[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 103 -> 478[label="",style="dashed", color="red", weight=0]; 52.61/30.38 103[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];103 -> 491[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 104 -> 478[label="",style="dashed", color="red", weight=0]; 52.61/30.38 104[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];104 -> 492[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 105 -> 141[label="",style="dashed", color="red", weight=0]; 52.61/30.38 105[label="FiniteMap.splitGT1 yvy15 yvy16 yvy17 yvy18 yvy19 yvy20 (yvy20 < yvy15)",fontsize=16,color="magenta"];105 -> 142[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 105 -> 143[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 105 -> 144[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 105 -> 145[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 105 -> 146[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 105 -> 147[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 105 -> 148[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 106[label="FiniteMap.splitGT yvy19 yvy20",fontsize=16,color="burlywood",shape="triangle"];3679[label="yvy19/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];106 -> 3679[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3679 -> 149[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3680[label="yvy19/FiniteMap.Branch yvy190 yvy191 yvy192 yvy193 yvy194",fontsize=10,color="white",style="solid",shape="box"];106 -> 3680[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3680 -> 150[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 107 -> 664[label="",style="dashed", color="red", weight=0]; 52.61/30.38 107[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];107 -> 665[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 108 -> 664[label="",style="dashed", color="red", weight=0]; 52.61/30.38 108[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];108 -> 666[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 109 -> 664[label="",style="dashed", color="red", weight=0]; 52.61/30.38 109[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];109 -> 667[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 110 -> 664[label="",style="dashed", color="red", weight=0]; 52.61/30.38 110[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];110 -> 668[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 111 -> 664[label="",style="dashed", color="red", weight=0]; 52.61/30.38 111[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];111 -> 669[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 112 -> 664[label="",style="dashed", color="red", weight=0]; 52.61/30.38 112[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];112 -> 670[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 113 -> 664[label="",style="dashed", color="red", weight=0]; 52.61/30.38 113[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];113 -> 671[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 114 -> 664[label="",style="dashed", color="red", weight=0]; 52.61/30.38 114[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];114 -> 672[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 115 -> 664[label="",style="dashed", color="red", weight=0]; 52.61/30.38 115[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];115 -> 673[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 116 -> 664[label="",style="dashed", color="red", weight=0]; 52.61/30.38 116[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];116 -> 674[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 117 -> 664[label="",style="dashed", color="red", weight=0]; 52.61/30.38 117[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];117 -> 675[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 118 -> 664[label="",style="dashed", color="red", weight=0]; 52.61/30.38 118[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];118 -> 676[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 119 -> 664[label="",style="dashed", color="red", weight=0]; 52.61/30.38 119[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];119 -> 677[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 120 -> 664[label="",style="dashed", color="red", weight=0]; 52.61/30.38 120[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];120 -> 678[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 121 -> 166[label="",style="dashed", color="red", weight=0]; 52.61/30.38 121[label="FiniteMap.splitLT1 yvy30 yvy31 yvy32 yvy33 yvy34 yvy35 (yvy35 > yvy30)",fontsize=16,color="magenta"];121 -> 167[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 121 -> 168[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 121 -> 169[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 121 -> 170[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 121 -> 171[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 121 -> 172[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 121 -> 173[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 122[label="FiniteMap.splitLT yvy33 yvy35",fontsize=16,color="burlywood",shape="triangle"];3681[label="yvy33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];122 -> 3681[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3681 -> 174[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3682[label="yvy33/FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334",fontsize=10,color="white",style="solid",shape="box"];122 -> 3682[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3682 -> 175[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 123[label="FiniteMap.unitFM yvy40 yvy41",fontsize=16,color="black",shape="box"];123 -> 176[label="",style="solid", color="black", weight=3]; 52.61/30.38 124 -> 177[label="",style="dashed", color="red", weight=0]; 52.61/30.38 124[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (yvy40 < yvy50)",fontsize=16,color="magenta"];124 -> 178[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 124 -> 179[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 124 -> 180[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 124 -> 181[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 124 -> 182[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 124 -> 183[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 124 -> 184[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 124 -> 185[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 600[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="black",shape="triangle"];600 -> 602[label="",style="solid", color="black", weight=3]; 52.61/30.38 599[label="FiniteMap.sIZE_RATIO * yvy93",fontsize=16,color="black",shape="triangle"];599 -> 603[label="",style="solid", color="black", weight=3]; 52.61/30.38 433[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="triangle"];433 -> 519[label="",style="solid", color="black", weight=3]; 52.61/30.38 434 -> 520[label="",style="dashed", color="red", weight=0]; 52.61/30.38 434[label="FiniteMap.mkVBalBranch3MkVBalBranch1 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_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64)",fontsize=16,color="magenta"];434 -> 521[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 435 -> 522[label="",style="dashed", color="red", weight=0]; 52.61/30.38 435[label="FiniteMap.mkBalBranch yvy50 yvy51 (FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy53) yvy54",fontsize=16,color="magenta"];435 -> 523[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 479[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];479 -> 528[label="",style="solid", color="black", weight=3]; 52.61/30.38 478[label="yvy87 == GT",fontsize=16,color="burlywood",shape="triangle"];3683[label="yvy87/LT",fontsize=10,color="white",style="solid",shape="box"];478 -> 3683[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3683 -> 529[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3684[label="yvy87/EQ",fontsize=10,color="white",style="solid",shape="box"];478 -> 3684[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3684 -> 530[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3685[label="yvy87/GT",fontsize=10,color="white",style="solid",shape="box"];478 -> 3685[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3685 -> 531[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 480[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];480 -> 532[label="",style="solid", color="black", weight=3]; 52.61/30.38 481[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];481 -> 533[label="",style="solid", color="black", weight=3]; 52.61/30.38 482[label="compare yvy40 yvy30",fontsize=16,color="burlywood",shape="triangle"];3686[label="yvy40/yvy400 : yvy401",fontsize=10,color="white",style="solid",shape="box"];482 -> 3686[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3686 -> 534[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3687[label="yvy40/[]",fontsize=10,color="white",style="solid",shape="box"];482 -> 3687[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3687 -> 535[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 483[label="compare yvy40 yvy30",fontsize=16,color="burlywood",shape="triangle"];3688[label="yvy40/()",fontsize=10,color="white",style="solid",shape="box"];483 -> 3688[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3688 -> 536[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 484[label="compare yvy40 yvy30",fontsize=16,color="burlywood",shape="triangle"];3689[label="yvy40/Integer yvy400",fontsize=10,color="white",style="solid",shape="box"];484 -> 3689[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3689 -> 537[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 485[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];485 -> 538[label="",style="solid", color="black", weight=3]; 52.61/30.38 486[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];486 -> 539[label="",style="solid", color="black", weight=3]; 52.61/30.38 487[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];487 -> 540[label="",style="solid", color="black", weight=3]; 52.61/30.38 488[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];488 -> 541[label="",style="solid", color="black", weight=3]; 52.61/30.38 489[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];489 -> 542[label="",style="solid", color="black", weight=3]; 52.61/30.38 490[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];490 -> 543[label="",style="solid", color="black", weight=3]; 52.61/30.38 491[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];491 -> 544[label="",style="solid", color="black", weight=3]; 52.61/30.38 492[label="compare yvy40 yvy30",fontsize=16,color="burlywood",shape="triangle"];3690[label="yvy40/yvy400 :% yvy401",fontsize=10,color="white",style="solid",shape="box"];492 -> 3690[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3690 -> 545[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 142[label="yvy18",fontsize=16,color="green",shape="box"];143[label="yvy20",fontsize=16,color="green",shape="box"];144[label="yvy19",fontsize=16,color="green",shape="box"];145[label="yvy20 < yvy15",fontsize=16,color="blue",shape="box"];3691[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3691[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3691 -> 205[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3692[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3692[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3692 -> 206[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3693[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3693[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3693 -> 207[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3694[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3694[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3694 -> 208[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3695[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3695[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3695 -> 209[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3696[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3696[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3696 -> 210[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3697[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3697[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3697 -> 211[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3698[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3698[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3698 -> 212[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3699[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3699[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3699 -> 213[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3700[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3700[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3700 -> 214[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3701[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3701[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3701 -> 215[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3702[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3702[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3702 -> 216[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3703[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3703[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3703 -> 217[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3704[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3704[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3704 -> 218[label="",style="solid", color="blue", weight=3]; 52.61/30.38 146[label="yvy17",fontsize=16,color="green",shape="box"];147[label="yvy16",fontsize=16,color="green",shape="box"];148[label="yvy15",fontsize=16,color="green",shape="box"];141[label="FiniteMap.splitGT1 yvy45 yvy46 yvy47 yvy48 yvy49 yvy50 yvy51",fontsize=16,color="burlywood",shape="triangle"];3705[label="yvy51/False",fontsize=10,color="white",style="solid",shape="box"];141 -> 3705[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3705 -> 219[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3706[label="yvy51/True",fontsize=10,color="white",style="solid",shape="box"];141 -> 3706[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3706 -> 220[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 149[label="FiniteMap.splitGT FiniteMap.EmptyFM yvy20",fontsize=16,color="black",shape="box"];149 -> 221[label="",style="solid", color="black", weight=3]; 52.61/30.38 150[label="FiniteMap.splitGT (FiniteMap.Branch yvy190 yvy191 yvy192 yvy193 yvy194) yvy20",fontsize=16,color="black",shape="box"];150 -> 222[label="",style="solid", color="black", weight=3]; 52.61/30.38 665 -> 479[label="",style="dashed", color="red", weight=0]; 52.61/30.38 665[label="compare yvy40 yvy30",fontsize=16,color="magenta"];664[label="yvy96 == LT",fontsize=16,color="burlywood",shape="triangle"];3707[label="yvy96/LT",fontsize=10,color="white",style="solid",shape="box"];664 -> 3707[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3707 -> 704[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3708[label="yvy96/EQ",fontsize=10,color="white",style="solid",shape="box"];664 -> 3708[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3708 -> 705[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3709[label="yvy96/GT",fontsize=10,color="white",style="solid",shape="box"];664 -> 3709[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3709 -> 706[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 666 -> 480[label="",style="dashed", color="red", weight=0]; 52.61/30.38 666[label="compare yvy40 yvy30",fontsize=16,color="magenta"];667 -> 481[label="",style="dashed", color="red", weight=0]; 52.61/30.38 667[label="compare yvy40 yvy30",fontsize=16,color="magenta"];668 -> 482[label="",style="dashed", color="red", weight=0]; 52.61/30.38 668[label="compare yvy40 yvy30",fontsize=16,color="magenta"];669 -> 483[label="",style="dashed", color="red", weight=0]; 52.61/30.38 669[label="compare yvy40 yvy30",fontsize=16,color="magenta"];670 -> 484[label="",style="dashed", color="red", weight=0]; 52.61/30.38 670[label="compare yvy40 yvy30",fontsize=16,color="magenta"];671 -> 485[label="",style="dashed", color="red", weight=0]; 52.61/30.38 671[label="compare yvy40 yvy30",fontsize=16,color="magenta"];672 -> 486[label="",style="dashed", color="red", weight=0]; 52.61/30.38 672[label="compare yvy40 yvy30",fontsize=16,color="magenta"];673 -> 487[label="",style="dashed", color="red", weight=0]; 52.61/30.38 673[label="compare yvy40 yvy30",fontsize=16,color="magenta"];674 -> 488[label="",style="dashed", color="red", weight=0]; 52.61/30.38 674[label="compare yvy40 yvy30",fontsize=16,color="magenta"];675 -> 489[label="",style="dashed", color="red", weight=0]; 52.61/30.38 675[label="compare yvy40 yvy30",fontsize=16,color="magenta"];676 -> 490[label="",style="dashed", color="red", weight=0]; 52.61/30.38 676[label="compare yvy40 yvy30",fontsize=16,color="magenta"];677 -> 491[label="",style="dashed", color="red", weight=0]; 52.61/30.38 677[label="compare yvy40 yvy30",fontsize=16,color="magenta"];678 -> 492[label="",style="dashed", color="red", weight=0]; 52.61/30.38 678[label="compare yvy40 yvy30",fontsize=16,color="magenta"];167[label="yvy31",fontsize=16,color="green",shape="box"];168[label="yvy34",fontsize=16,color="green",shape="box"];169[label="yvy32",fontsize=16,color="green",shape="box"];170[label="yvy35 > yvy30",fontsize=16,color="blue",shape="box"];3710[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3710[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3710 -> 241[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3711[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3711[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3711 -> 242[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3712[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3712[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3712 -> 243[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3713[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3713[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3713 -> 244[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3714[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3714[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3714 -> 245[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3715[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3715[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3715 -> 246[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3716[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3716[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3716 -> 247[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3717[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3717[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3717 -> 248[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3718[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3718[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3718 -> 249[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3719[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3719[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3719 -> 250[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3720[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3720[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3720 -> 251[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3721[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3721[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3721 -> 252[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3722[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3722[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3722 -> 253[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3723[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3723[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3723 -> 254[label="",style="solid", color="blue", weight=3]; 52.61/30.38 171[label="yvy33",fontsize=16,color="green",shape="box"];172[label="yvy35",fontsize=16,color="green",shape="box"];173[label="yvy30",fontsize=16,color="green",shape="box"];166[label="FiniteMap.splitLT1 yvy60 yvy61 yvy62 yvy63 yvy64 yvy65 yvy66",fontsize=16,color="burlywood",shape="triangle"];3724[label="yvy66/False",fontsize=10,color="white",style="solid",shape="box"];166 -> 3724[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3724 -> 255[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3725[label="yvy66/True",fontsize=10,color="white",style="solid",shape="box"];166 -> 3725[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3725 -> 256[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 174[label="FiniteMap.splitLT FiniteMap.EmptyFM yvy35",fontsize=16,color="black",shape="box"];174 -> 257[label="",style="solid", color="black", weight=3]; 52.61/30.38 175[label="FiniteMap.splitLT (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) yvy35",fontsize=16,color="black",shape="box"];175 -> 258[label="",style="solid", color="black", weight=3]; 52.61/30.38 176[label="FiniteMap.Branch yvy40 yvy41 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];176 -> 259[label="",style="dashed", color="green", weight=3]; 52.61/30.38 176 -> 260[label="",style="dashed", color="green", weight=3]; 52.61/30.38 178[label="yvy40 < yvy50",fontsize=16,color="blue",shape="box"];3726[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3726[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3726 -> 261[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3727[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3727[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3727 -> 262[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3728[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3728[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3728 -> 263[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3729[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3729[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3729 -> 264[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3730[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3730[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3730 -> 265[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3731[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3731[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3731 -> 266[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3732[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3732[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3732 -> 267[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3733[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3733[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3733 -> 268[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3734[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3734[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3734 -> 269[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3735[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3735[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3735 -> 270[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3736[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3736[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3736 -> 271[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3737[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3737[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3737 -> 272[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3738[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3738[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3738 -> 273[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3739[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3739[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3739 -> 274[label="",style="solid", color="blue", weight=3]; 52.61/30.38 179[label="yvy50",fontsize=16,color="green",shape="box"];180[label="yvy54",fontsize=16,color="green",shape="box"];181[label="yvy40",fontsize=16,color="green",shape="box"];182[label="yvy52",fontsize=16,color="green",shape="box"];183[label="yvy41",fontsize=16,color="green",shape="box"];184[label="yvy51",fontsize=16,color="green",shape="box"];185[label="yvy53",fontsize=16,color="green",shape="box"];177[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy76 yvy77 yvy78 yvy79 yvy80 yvy81 yvy82 yvy83",fontsize=16,color="burlywood",shape="triangle"];3740[label="yvy83/False",fontsize=10,color="white",style="solid",shape="box"];177 -> 3740[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3740 -> 275[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3741[label="yvy83/True",fontsize=10,color="white",style="solid",shape="box"];177 -> 3741[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3741 -> 276[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 602 -> 433[label="",style="dashed", color="red", weight=0]; 52.61/30.38 602[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64)",fontsize=16,color="magenta"];602 -> 707[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 602 -> 708[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 602 -> 709[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 602 -> 710[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 602 -> 711[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 603[label="primMulInt FiniteMap.sIZE_RATIO yvy93",fontsize=16,color="black",shape="box"];603 -> 712[label="",style="solid", color="black", weight=3]; 52.61/30.38 519[label="yvy52",fontsize=16,color="green",shape="box"];521 -> 74[label="",style="dashed", color="red", weight=0]; 52.61/30.38 521[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="magenta"];521 -> 547[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 521 -> 548[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 520[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 yvy88",fontsize=16,color="burlywood",shape="triangle"];3742[label="yvy88/False",fontsize=10,color="white",style="solid",shape="box"];520 -> 3742[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3742 -> 549[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3743[label="yvy88/True",fontsize=10,color="white",style="solid",shape="box"];520 -> 3743[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3743 -> 550[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 523 -> 12[label="",style="dashed", color="red", weight=0]; 52.61/30.38 523[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy53",fontsize=16,color="magenta"];523 -> 551[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 523 -> 552[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 522[label="FiniteMap.mkBalBranch yvy50 yvy51 yvy90 yvy54",fontsize=16,color="black",shape="triangle"];522 -> 553[label="",style="solid", color="black", weight=3]; 52.61/30.38 528[label="primCmpFloat yvy40 yvy30",fontsize=16,color="burlywood",shape="box"];3744[label="yvy40/Float yvy400 yvy401",fontsize=10,color="white",style="solid",shape="box"];528 -> 3744[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3744 -> 572[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 529[label="LT == GT",fontsize=16,color="black",shape="box"];529 -> 573[label="",style="solid", color="black", weight=3]; 52.61/30.38 530[label="EQ == GT",fontsize=16,color="black",shape="box"];530 -> 574[label="",style="solid", color="black", weight=3]; 52.61/30.38 531[label="GT == GT",fontsize=16,color="black",shape="box"];531 -> 575[label="",style="solid", color="black", weight=3]; 52.61/30.38 532[label="primCmpChar yvy40 yvy30",fontsize=16,color="burlywood",shape="box"];3745[label="yvy40/Char yvy400",fontsize=10,color="white",style="solid",shape="box"];532 -> 3745[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3745 -> 576[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 533[label="primCmpInt yvy40 yvy30",fontsize=16,color="burlywood",shape="triangle"];3746[label="yvy40/Pos yvy400",fontsize=10,color="white",style="solid",shape="box"];533 -> 3746[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3746 -> 577[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3747[label="yvy40/Neg yvy400",fontsize=10,color="white",style="solid",shape="box"];533 -> 3747[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3747 -> 578[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 534[label="compare (yvy400 : yvy401) yvy30",fontsize=16,color="burlywood",shape="box"];3748[label="yvy30/yvy300 : yvy301",fontsize=10,color="white",style="solid",shape="box"];534 -> 3748[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3748 -> 579[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3749[label="yvy30/[]",fontsize=10,color="white",style="solid",shape="box"];534 -> 3749[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3749 -> 580[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 535[label="compare [] yvy30",fontsize=16,color="burlywood",shape="box"];3750[label="yvy30/yvy300 : yvy301",fontsize=10,color="white",style="solid",shape="box"];535 -> 3750[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3750 -> 581[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3751[label="yvy30/[]",fontsize=10,color="white",style="solid",shape="box"];535 -> 3751[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3751 -> 582[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 536[label="compare () yvy30",fontsize=16,color="burlywood",shape="box"];3752[label="yvy30/()",fontsize=10,color="white",style="solid",shape="box"];536 -> 3752[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3752 -> 583[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 537[label="compare (Integer yvy400) yvy30",fontsize=16,color="burlywood",shape="box"];3753[label="yvy30/Integer yvy300",fontsize=10,color="white",style="solid",shape="box"];537 -> 3753[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3753 -> 584[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 538[label="compare3 yvy40 yvy30",fontsize=16,color="black",shape="box"];538 -> 585[label="",style="solid", color="black", weight=3]; 52.61/30.38 539[label="compare3 yvy40 yvy30",fontsize=16,color="black",shape="box"];539 -> 586[label="",style="solid", color="black", weight=3]; 52.61/30.38 540[label="compare3 yvy40 yvy30",fontsize=16,color="black",shape="box"];540 -> 587[label="",style="solid", color="black", weight=3]; 52.61/30.38 541[label="compare3 yvy40 yvy30",fontsize=16,color="black",shape="box"];541 -> 588[label="",style="solid", color="black", weight=3]; 52.61/30.38 542[label="compare3 yvy40 yvy30",fontsize=16,color="black",shape="box"];542 -> 589[label="",style="solid", color="black", weight=3]; 52.61/30.38 543[label="compare3 yvy40 yvy30",fontsize=16,color="black",shape="box"];543 -> 590[label="",style="solid", color="black", weight=3]; 52.61/30.38 544[label="primCmpDouble yvy40 yvy30",fontsize=16,color="burlywood",shape="box"];3754[label="yvy40/Double yvy400 yvy401",fontsize=10,color="white",style="solid",shape="box"];544 -> 3754[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3754 -> 591[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 545[label="compare (yvy400 :% yvy401) yvy30",fontsize=16,color="burlywood",shape="box"];3755[label="yvy30/yvy300 :% yvy301",fontsize=10,color="white",style="solid",shape="box"];545 -> 3755[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3755 -> 592[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 205 -> 72[label="",style="dashed", color="red", weight=0]; 52.61/30.38 205[label="yvy20 < yvy15",fontsize=16,color="magenta"];205 -> 314[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 205 -> 315[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 206 -> 73[label="",style="dashed", color="red", weight=0]; 52.61/30.38 206[label="yvy20 < yvy15",fontsize=16,color="magenta"];206 -> 316[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 206 -> 317[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 207 -> 74[label="",style="dashed", color="red", weight=0]; 52.61/30.38 207[label="yvy20 < yvy15",fontsize=16,color="magenta"];207 -> 318[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 207 -> 319[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 208 -> 75[label="",style="dashed", color="red", weight=0]; 52.61/30.38 208[label="yvy20 < yvy15",fontsize=16,color="magenta"];208 -> 320[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 208 -> 321[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 209 -> 76[label="",style="dashed", color="red", weight=0]; 52.61/30.38 209[label="yvy20 < yvy15",fontsize=16,color="magenta"];209 -> 322[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 209 -> 323[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 210 -> 77[label="",style="dashed", color="red", weight=0]; 52.61/30.38 210[label="yvy20 < yvy15",fontsize=16,color="magenta"];210 -> 324[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 210 -> 325[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 211 -> 78[label="",style="dashed", color="red", weight=0]; 52.61/30.38 211[label="yvy20 < yvy15",fontsize=16,color="magenta"];211 -> 326[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 211 -> 327[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 212 -> 79[label="",style="dashed", color="red", weight=0]; 52.61/30.38 212[label="yvy20 < yvy15",fontsize=16,color="magenta"];212 -> 328[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 212 -> 329[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 213 -> 80[label="",style="dashed", color="red", weight=0]; 52.61/30.38 213[label="yvy20 < yvy15",fontsize=16,color="magenta"];213 -> 330[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 213 -> 331[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 214 -> 81[label="",style="dashed", color="red", weight=0]; 52.61/30.38 214[label="yvy20 < yvy15",fontsize=16,color="magenta"];214 -> 332[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 214 -> 333[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 215 -> 82[label="",style="dashed", color="red", weight=0]; 52.61/30.38 215[label="yvy20 < yvy15",fontsize=16,color="magenta"];215 -> 334[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 215 -> 335[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 216 -> 83[label="",style="dashed", color="red", weight=0]; 52.61/30.38 216[label="yvy20 < yvy15",fontsize=16,color="magenta"];216 -> 336[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 216 -> 337[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 217 -> 84[label="",style="dashed", color="red", weight=0]; 52.61/30.38 217[label="yvy20 < yvy15",fontsize=16,color="magenta"];217 -> 338[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 217 -> 339[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 218 -> 85[label="",style="dashed", color="red", weight=0]; 52.61/30.38 218[label="yvy20 < yvy15",fontsize=16,color="magenta"];218 -> 340[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 218 -> 341[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 219[label="FiniteMap.splitGT1 yvy45 yvy46 yvy47 yvy48 yvy49 yvy50 False",fontsize=16,color="black",shape="box"];219 -> 342[label="",style="solid", color="black", weight=3]; 52.61/30.38 220[label="FiniteMap.splitGT1 yvy45 yvy46 yvy47 yvy48 yvy49 yvy50 True",fontsize=16,color="black",shape="box"];220 -> 343[label="",style="solid", color="black", weight=3]; 52.61/30.38 221[label="FiniteMap.splitGT4 FiniteMap.EmptyFM yvy20",fontsize=16,color="black",shape="box"];221 -> 344[label="",style="solid", color="black", weight=3]; 52.61/30.38 222 -> 26[label="",style="dashed", color="red", weight=0]; 52.61/30.38 222[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy190 yvy191 yvy192 yvy193 yvy194) yvy20",fontsize=16,color="magenta"];222 -> 345[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 222 -> 346[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 222 -> 347[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 222 -> 348[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 222 -> 349[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 222 -> 350[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 704[label="LT == LT",fontsize=16,color="black",shape="box"];704 -> 727[label="",style="solid", color="black", weight=3]; 52.61/30.38 705[label="EQ == LT",fontsize=16,color="black",shape="box"];705 -> 728[label="",style="solid", color="black", weight=3]; 52.61/30.38 706[label="GT == LT",fontsize=16,color="black",shape="box"];706 -> 729[label="",style="solid", color="black", weight=3]; 52.61/30.38 241 -> 56[label="",style="dashed", color="red", weight=0]; 52.61/30.38 241[label="yvy35 > yvy30",fontsize=16,color="magenta"];241 -> 378[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 241 -> 379[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 242 -> 57[label="",style="dashed", color="red", weight=0]; 52.61/30.38 242[label="yvy35 > yvy30",fontsize=16,color="magenta"];242 -> 380[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 242 -> 381[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 243 -> 58[label="",style="dashed", color="red", weight=0]; 52.61/30.38 243[label="yvy35 > yvy30",fontsize=16,color="magenta"];243 -> 382[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 243 -> 383[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 244 -> 59[label="",style="dashed", color="red", weight=0]; 52.61/30.38 244[label="yvy35 > yvy30",fontsize=16,color="magenta"];244 -> 384[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 244 -> 385[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 245 -> 60[label="",style="dashed", color="red", weight=0]; 52.61/30.38 245[label="yvy35 > yvy30",fontsize=16,color="magenta"];245 -> 386[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 245 -> 387[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 246 -> 61[label="",style="dashed", color="red", weight=0]; 52.61/30.38 246[label="yvy35 > yvy30",fontsize=16,color="magenta"];246 -> 388[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 246 -> 389[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 247 -> 62[label="",style="dashed", color="red", weight=0]; 52.61/30.38 247[label="yvy35 > yvy30",fontsize=16,color="magenta"];247 -> 390[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 247 -> 391[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 248 -> 63[label="",style="dashed", color="red", weight=0]; 52.61/30.38 248[label="yvy35 > yvy30",fontsize=16,color="magenta"];248 -> 392[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 248 -> 393[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 249 -> 64[label="",style="dashed", color="red", weight=0]; 52.61/30.38 249[label="yvy35 > yvy30",fontsize=16,color="magenta"];249 -> 394[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 249 -> 395[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 250 -> 65[label="",style="dashed", color="red", weight=0]; 52.61/30.38 250[label="yvy35 > yvy30",fontsize=16,color="magenta"];250 -> 396[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 250 -> 397[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 251 -> 66[label="",style="dashed", color="red", weight=0]; 52.61/30.38 251[label="yvy35 > yvy30",fontsize=16,color="magenta"];251 -> 398[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 251 -> 399[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 252 -> 67[label="",style="dashed", color="red", weight=0]; 52.61/30.38 252[label="yvy35 > yvy30",fontsize=16,color="magenta"];252 -> 400[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 252 -> 401[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 253 -> 68[label="",style="dashed", color="red", weight=0]; 52.61/30.38 253[label="yvy35 > yvy30",fontsize=16,color="magenta"];253 -> 402[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 253 -> 403[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 254 -> 69[label="",style="dashed", color="red", weight=0]; 52.61/30.38 254[label="yvy35 > yvy30",fontsize=16,color="magenta"];254 -> 404[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 254 -> 405[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 255[label="FiniteMap.splitLT1 yvy60 yvy61 yvy62 yvy63 yvy64 yvy65 False",fontsize=16,color="black",shape="box"];255 -> 406[label="",style="solid", color="black", weight=3]; 52.61/30.38 256[label="FiniteMap.splitLT1 yvy60 yvy61 yvy62 yvy63 yvy64 yvy65 True",fontsize=16,color="black",shape="box"];256 -> 407[label="",style="solid", color="black", weight=3]; 52.61/30.38 257[label="FiniteMap.splitLT4 FiniteMap.EmptyFM yvy35",fontsize=16,color="black",shape="box"];257 -> 408[label="",style="solid", color="black", weight=3]; 52.61/30.38 258 -> 27[label="",style="dashed", color="red", weight=0]; 52.61/30.38 258[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) yvy35",fontsize=16,color="magenta"];258 -> 409[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 258 -> 410[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 258 -> 411[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 258 -> 412[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 258 -> 413[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 258 -> 414[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 259[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];259 -> 415[label="",style="solid", color="black", weight=3]; 52.61/30.38 260 -> 259[label="",style="dashed", color="red", weight=0]; 52.61/30.38 260[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];261 -> 72[label="",style="dashed", color="red", weight=0]; 52.61/30.38 261[label="yvy40 < yvy50",fontsize=16,color="magenta"];261 -> 416[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 262 -> 73[label="",style="dashed", color="red", weight=0]; 52.61/30.38 262[label="yvy40 < yvy50",fontsize=16,color="magenta"];262 -> 417[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 263 -> 74[label="",style="dashed", color="red", weight=0]; 52.61/30.38 263[label="yvy40 < yvy50",fontsize=16,color="magenta"];263 -> 418[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 264 -> 75[label="",style="dashed", color="red", weight=0]; 52.61/30.38 264[label="yvy40 < yvy50",fontsize=16,color="magenta"];264 -> 419[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 265 -> 76[label="",style="dashed", color="red", weight=0]; 52.61/30.38 265[label="yvy40 < yvy50",fontsize=16,color="magenta"];265 -> 420[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 266 -> 77[label="",style="dashed", color="red", weight=0]; 52.61/30.38 266[label="yvy40 < yvy50",fontsize=16,color="magenta"];266 -> 421[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 267 -> 78[label="",style="dashed", color="red", weight=0]; 52.61/30.38 267[label="yvy40 < yvy50",fontsize=16,color="magenta"];267 -> 422[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 268 -> 79[label="",style="dashed", color="red", weight=0]; 52.61/30.38 268[label="yvy40 < yvy50",fontsize=16,color="magenta"];268 -> 423[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 269 -> 80[label="",style="dashed", color="red", weight=0]; 52.61/30.38 269[label="yvy40 < yvy50",fontsize=16,color="magenta"];269 -> 424[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 270 -> 81[label="",style="dashed", color="red", weight=0]; 52.61/30.38 270[label="yvy40 < yvy50",fontsize=16,color="magenta"];270 -> 425[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 271 -> 82[label="",style="dashed", color="red", weight=0]; 52.61/30.38 271[label="yvy40 < yvy50",fontsize=16,color="magenta"];271 -> 426[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 272 -> 83[label="",style="dashed", color="red", weight=0]; 52.61/30.38 272[label="yvy40 < yvy50",fontsize=16,color="magenta"];272 -> 427[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 273 -> 84[label="",style="dashed", color="red", weight=0]; 52.61/30.38 273[label="yvy40 < yvy50",fontsize=16,color="magenta"];273 -> 428[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 274 -> 85[label="",style="dashed", color="red", weight=0]; 52.61/30.38 274[label="yvy40 < yvy50",fontsize=16,color="magenta"];274 -> 429[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 275[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy76 yvy77 yvy78 yvy79 yvy80 yvy81 yvy82 False",fontsize=16,color="black",shape="box"];275 -> 430[label="",style="solid", color="black", weight=3]; 52.61/30.38 276[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy76 yvy77 yvy78 yvy79 yvy80 yvy81 yvy82 True",fontsize=16,color="black",shape="box"];276 -> 431[label="",style="solid", color="black", weight=3]; 52.61/30.38 707[label="yvy60",fontsize=16,color="green",shape="box"];708[label="yvy63",fontsize=16,color="green",shape="box"];709[label="yvy64",fontsize=16,color="green",shape="box"];710[label="yvy61",fontsize=16,color="green",shape="box"];711[label="yvy62",fontsize=16,color="green",shape="box"];712[label="primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) yvy93",fontsize=16,color="burlywood",shape="box"];3756[label="yvy93/Pos yvy930",fontsize=10,color="white",style="solid",shape="box"];712 -> 3756[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3756 -> 730[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3757[label="yvy93/Neg yvy930",fontsize=10,color="white",style="solid",shape="box"];712 -> 3757[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3757 -> 731[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 547 -> 599[label="",style="dashed", color="red", weight=0]; 52.61/30.38 547[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="magenta"];547 -> 601[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 548 -> 600[label="",style="dashed", color="red", weight=0]; 52.61/30.38 548[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="magenta"];549[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="box"];549 -> 604[label="",style="solid", color="black", weight=3]; 52.61/30.38 550[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];550 -> 605[label="",style="solid", color="black", weight=3]; 52.61/30.38 551[label="yvy53",fontsize=16,color="green",shape="box"];552[label="FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="green",shape="box"];553[label="FiniteMap.mkBalBranch6 yvy50 yvy51 yvy90 yvy54",fontsize=16,color="black",shape="box"];553 -> 606[label="",style="solid", color="black", weight=3]; 52.61/30.38 572[label="primCmpFloat (Float yvy400 yvy401) yvy30",fontsize=16,color="burlywood",shape="box"];3758[label="yvy401/Pos yvy4010",fontsize=10,color="white",style="solid",shape="box"];572 -> 3758[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3758 -> 607[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3759[label="yvy401/Neg yvy4010",fontsize=10,color="white",style="solid",shape="box"];572 -> 3759[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3759 -> 608[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 573[label="False",fontsize=16,color="green",shape="box"];574[label="False",fontsize=16,color="green",shape="box"];575[label="True",fontsize=16,color="green",shape="box"];576[label="primCmpChar (Char yvy400) yvy30",fontsize=16,color="burlywood",shape="box"];3760[label="yvy30/Char yvy300",fontsize=10,color="white",style="solid",shape="box"];576 -> 3760[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3760 -> 609[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 577[label="primCmpInt (Pos yvy400) yvy30",fontsize=16,color="burlywood",shape="box"];3761[label="yvy400/Succ yvy4000",fontsize=10,color="white",style="solid",shape="box"];577 -> 3761[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3761 -> 610[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3762[label="yvy400/Zero",fontsize=10,color="white",style="solid",shape="box"];577 -> 3762[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3762 -> 611[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 578[label="primCmpInt (Neg yvy400) yvy30",fontsize=16,color="burlywood",shape="box"];3763[label="yvy400/Succ yvy4000",fontsize=10,color="white",style="solid",shape="box"];578 -> 3763[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3763 -> 612[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3764[label="yvy400/Zero",fontsize=10,color="white",style="solid",shape="box"];578 -> 3764[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3764 -> 613[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 579[label="compare (yvy400 : yvy401) (yvy300 : yvy301)",fontsize=16,color="black",shape="box"];579 -> 614[label="",style="solid", color="black", weight=3]; 52.61/30.38 580[label="compare (yvy400 : yvy401) []",fontsize=16,color="black",shape="box"];580 -> 615[label="",style="solid", color="black", weight=3]; 52.61/30.38 581[label="compare [] (yvy300 : yvy301)",fontsize=16,color="black",shape="box"];581 -> 616[label="",style="solid", color="black", weight=3]; 52.61/30.38 582[label="compare [] []",fontsize=16,color="black",shape="box"];582 -> 617[label="",style="solid", color="black", weight=3]; 52.61/30.38 583[label="compare () ()",fontsize=16,color="black",shape="box"];583 -> 618[label="",style="solid", color="black", weight=3]; 52.61/30.38 584[label="compare (Integer yvy400) (Integer yvy300)",fontsize=16,color="black",shape="box"];584 -> 619[label="",style="solid", color="black", weight=3]; 52.61/30.38 585[label="compare2 yvy40 yvy30 (yvy40 == yvy30)",fontsize=16,color="burlywood",shape="box"];3765[label="yvy40/(yvy400,yvy401)",fontsize=10,color="white",style="solid",shape="box"];585 -> 3765[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3765 -> 620[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 586[label="compare2 yvy40 yvy30 (yvy40 == yvy30)",fontsize=16,color="burlywood",shape="box"];3766[label="yvy40/(yvy400,yvy401,yvy402)",fontsize=10,color="white",style="solid",shape="box"];586 -> 3766[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3766 -> 621[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 587[label="compare2 yvy40 yvy30 (yvy40 == yvy30)",fontsize=16,color="burlywood",shape="box"];3767[label="yvy40/False",fontsize=10,color="white",style="solid",shape="box"];587 -> 3767[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3767 -> 622[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3768[label="yvy40/True",fontsize=10,color="white",style="solid",shape="box"];587 -> 3768[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3768 -> 623[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 588[label="compare2 yvy40 yvy30 (yvy40 == yvy30)",fontsize=16,color="burlywood",shape="box"];3769[label="yvy40/Nothing",fontsize=10,color="white",style="solid",shape="box"];588 -> 3769[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3769 -> 624[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3770[label="yvy40/Just yvy400",fontsize=10,color="white",style="solid",shape="box"];588 -> 3770[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3770 -> 625[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 589[label="compare2 yvy40 yvy30 (yvy40 == yvy30)",fontsize=16,color="burlywood",shape="box"];3771[label="yvy40/Left yvy400",fontsize=10,color="white",style="solid",shape="box"];589 -> 3771[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3771 -> 626[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3772[label="yvy40/Right yvy400",fontsize=10,color="white",style="solid",shape="box"];589 -> 3772[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3772 -> 627[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 590[label="compare2 yvy40 yvy30 (yvy40 == yvy30)",fontsize=16,color="burlywood",shape="box"];3773[label="yvy40/LT",fontsize=10,color="white",style="solid",shape="box"];590 -> 3773[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3773 -> 628[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3774[label="yvy40/EQ",fontsize=10,color="white",style="solid",shape="box"];590 -> 3774[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3774 -> 629[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3775[label="yvy40/GT",fontsize=10,color="white",style="solid",shape="box"];590 -> 3775[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3775 -> 630[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 591[label="primCmpDouble (Double yvy400 yvy401) yvy30",fontsize=16,color="burlywood",shape="box"];3776[label="yvy401/Pos yvy4010",fontsize=10,color="white",style="solid",shape="box"];591 -> 3776[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3776 -> 631[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3777[label="yvy401/Neg yvy4010",fontsize=10,color="white",style="solid",shape="box"];591 -> 3777[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3777 -> 632[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 592[label="compare (yvy400 :% yvy401) (yvy300 :% yvy301)",fontsize=16,color="black",shape="box"];592 -> 633[label="",style="solid", color="black", weight=3]; 52.61/30.38 314[label="yvy20",fontsize=16,color="green",shape="box"];315[label="yvy15",fontsize=16,color="green",shape="box"];316[label="yvy20",fontsize=16,color="green",shape="box"];317[label="yvy15",fontsize=16,color="green",shape="box"];318[label="yvy20",fontsize=16,color="green",shape="box"];319[label="yvy15",fontsize=16,color="green",shape="box"];320[label="yvy20",fontsize=16,color="green",shape="box"];321[label="yvy15",fontsize=16,color="green",shape="box"];322[label="yvy20",fontsize=16,color="green",shape="box"];323[label="yvy15",fontsize=16,color="green",shape="box"];324[label="yvy20",fontsize=16,color="green",shape="box"];325[label="yvy15",fontsize=16,color="green",shape="box"];326[label="yvy20",fontsize=16,color="green",shape="box"];327[label="yvy15",fontsize=16,color="green",shape="box"];328[label="yvy20",fontsize=16,color="green",shape="box"];329[label="yvy15",fontsize=16,color="green",shape="box"];330[label="yvy20",fontsize=16,color="green",shape="box"];331[label="yvy15",fontsize=16,color="green",shape="box"];332[label="yvy20",fontsize=16,color="green",shape="box"];333[label="yvy15",fontsize=16,color="green",shape="box"];334[label="yvy20",fontsize=16,color="green",shape="box"];335[label="yvy15",fontsize=16,color="green",shape="box"];336[label="yvy20",fontsize=16,color="green",shape="box"];337[label="yvy15",fontsize=16,color="green",shape="box"];338[label="yvy20",fontsize=16,color="green",shape="box"];339[label="yvy15",fontsize=16,color="green",shape="box"];340[label="yvy20",fontsize=16,color="green",shape="box"];341[label="yvy15",fontsize=16,color="green",shape="box"];342[label="FiniteMap.splitGT0 yvy45 yvy46 yvy47 yvy48 yvy49 yvy50 otherwise",fontsize=16,color="black",shape="box"];342 -> 554[label="",style="solid", color="black", weight=3]; 52.61/30.38 343 -> 12[label="",style="dashed", color="red", weight=0]; 52.61/30.38 343[label="FiniteMap.mkVBalBranch yvy45 yvy46 (FiniteMap.splitGT yvy48 yvy50) yvy49",fontsize=16,color="magenta"];343 -> 555[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 343 -> 556[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 343 -> 557[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 343 -> 558[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 344 -> 259[label="",style="dashed", color="red", weight=0]; 52.61/30.38 344[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];345[label="yvy20",fontsize=16,color="green",shape="box"];346[label="yvy191",fontsize=16,color="green",shape="box"];347[label="yvy194",fontsize=16,color="green",shape="box"];348[label="yvy190",fontsize=16,color="green",shape="box"];349[label="yvy192",fontsize=16,color="green",shape="box"];350[label="yvy193",fontsize=16,color="green",shape="box"];727[label="True",fontsize=16,color="green",shape="box"];728[label="False",fontsize=16,color="green",shape="box"];729[label="False",fontsize=16,color="green",shape="box"];378[label="yvy35",fontsize=16,color="green",shape="box"];379[label="yvy30",fontsize=16,color="green",shape="box"];380[label="yvy35",fontsize=16,color="green",shape="box"];381[label="yvy30",fontsize=16,color="green",shape="box"];382[label="yvy35",fontsize=16,color="green",shape="box"];383[label="yvy30",fontsize=16,color="green",shape="box"];384[label="yvy35",fontsize=16,color="green",shape="box"];385[label="yvy30",fontsize=16,color="green",shape="box"];386[label="yvy35",fontsize=16,color="green",shape="box"];387[label="yvy30",fontsize=16,color="green",shape="box"];388[label="yvy35",fontsize=16,color="green",shape="box"];389[label="yvy30",fontsize=16,color="green",shape="box"];390[label="yvy35",fontsize=16,color="green",shape="box"];391[label="yvy30",fontsize=16,color="green",shape="box"];392[label="yvy35",fontsize=16,color="green",shape="box"];393[label="yvy30",fontsize=16,color="green",shape="box"];394[label="yvy35",fontsize=16,color="green",shape="box"];395[label="yvy30",fontsize=16,color="green",shape="box"];396[label="yvy35",fontsize=16,color="green",shape="box"];397[label="yvy30",fontsize=16,color="green",shape="box"];398[label="yvy35",fontsize=16,color="green",shape="box"];399[label="yvy30",fontsize=16,color="green",shape="box"];400[label="yvy35",fontsize=16,color="green",shape="box"];401[label="yvy30",fontsize=16,color="green",shape="box"];402[label="yvy35",fontsize=16,color="green",shape="box"];403[label="yvy30",fontsize=16,color="green",shape="box"];404[label="yvy35",fontsize=16,color="green",shape="box"];405[label="yvy30",fontsize=16,color="green",shape="box"];406[label="FiniteMap.splitLT0 yvy60 yvy61 yvy62 yvy63 yvy64 yvy65 otherwise",fontsize=16,color="black",shape="box"];406 -> 713[label="",style="solid", color="black", weight=3]; 52.61/30.38 407 -> 12[label="",style="dashed", color="red", weight=0]; 52.61/30.38 407[label="FiniteMap.mkVBalBranch yvy60 yvy61 yvy63 (FiniteMap.splitLT yvy64 yvy65)",fontsize=16,color="magenta"];407 -> 714[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 407 -> 715[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 407 -> 716[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 407 -> 717[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 408 -> 259[label="",style="dashed", color="red", weight=0]; 52.61/30.38 408[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];409[label="yvy35",fontsize=16,color="green",shape="box"];410[label="yvy331",fontsize=16,color="green",shape="box"];411[label="yvy334",fontsize=16,color="green",shape="box"];412[label="yvy330",fontsize=16,color="green",shape="box"];413[label="yvy332",fontsize=16,color="green",shape="box"];414[label="yvy333",fontsize=16,color="green",shape="box"];415[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];416[label="yvy50",fontsize=16,color="green",shape="box"];417[label="yvy50",fontsize=16,color="green",shape="box"];418[label="yvy50",fontsize=16,color="green",shape="box"];419[label="yvy50",fontsize=16,color="green",shape="box"];420[label="yvy50",fontsize=16,color="green",shape="box"];421[label="yvy50",fontsize=16,color="green",shape="box"];422[label="yvy50",fontsize=16,color="green",shape="box"];423[label="yvy50",fontsize=16,color="green",shape="box"];424[label="yvy50",fontsize=16,color="green",shape="box"];425[label="yvy50",fontsize=16,color="green",shape="box"];426[label="yvy50",fontsize=16,color="green",shape="box"];427[label="yvy50",fontsize=16,color="green",shape="box"];428[label="yvy50",fontsize=16,color="green",shape="box"];429[label="yvy50",fontsize=16,color="green",shape="box"];430 -> 718[label="",style="dashed", color="red", weight=0]; 52.61/30.38 430[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 yvy76 yvy77 yvy78 yvy79 yvy80 yvy81 yvy82 (yvy81 > yvy76)",fontsize=16,color="magenta"];430 -> 719[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 430 -> 720[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 430 -> 721[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 430 -> 722[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 430 -> 723[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 430 -> 724[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 430 -> 725[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 430 -> 726[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 431 -> 522[label="",style="dashed", color="red", weight=0]; 52.61/30.38 431[label="FiniteMap.mkBalBranch yvy76 yvy77 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy79 yvy81 yvy82) yvy80",fontsize=16,color="magenta"];431 -> 524[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 431 -> 525[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 431 -> 526[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 431 -> 527[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 730[label="primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (Pos yvy930)",fontsize=16,color="black",shape="box"];730 -> 739[label="",style="solid", color="black", weight=3]; 52.61/30.38 731[label="primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (Neg yvy930)",fontsize=16,color="black",shape="box"];731 -> 740[label="",style="solid", color="black", weight=3]; 52.61/30.38 601 -> 284[label="",style="dashed", color="red", weight=0]; 52.61/30.38 601[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="magenta"];604[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 otherwise",fontsize=16,color="black",shape="box"];604 -> 732[label="",style="solid", color="black", weight=3]; 52.61/30.38 605 -> 522[label="",style="dashed", color="red", weight=0]; 52.61/30.38 605[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];605 -> 733[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 605 -> 734[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 605 -> 735[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 605 -> 736[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 606 -> 737[label="",style="dashed", color="red", weight=0]; 52.61/30.38 606[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 (FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];606 -> 738[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 607[label="primCmpFloat (Float yvy400 (Pos yvy4010)) yvy30",fontsize=16,color="burlywood",shape="box"];3778[label="yvy30/Float yvy300 yvy301",fontsize=10,color="white",style="solid",shape="box"];607 -> 3778[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3778 -> 741[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 608[label="primCmpFloat (Float yvy400 (Neg yvy4010)) yvy30",fontsize=16,color="burlywood",shape="box"];3779[label="yvy30/Float yvy300 yvy301",fontsize=10,color="white",style="solid",shape="box"];608 -> 3779[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3779 -> 742[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 609[label="primCmpChar (Char yvy400) (Char yvy300)",fontsize=16,color="black",shape="box"];609 -> 743[label="",style="solid", color="black", weight=3]; 52.61/30.38 610[label="primCmpInt (Pos (Succ yvy4000)) yvy30",fontsize=16,color="burlywood",shape="box"];3780[label="yvy30/Pos yvy300",fontsize=10,color="white",style="solid",shape="box"];610 -> 3780[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3780 -> 744[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3781[label="yvy30/Neg yvy300",fontsize=10,color="white",style="solid",shape="box"];610 -> 3781[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3781 -> 745[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 611[label="primCmpInt (Pos Zero) yvy30",fontsize=16,color="burlywood",shape="box"];3782[label="yvy30/Pos yvy300",fontsize=10,color="white",style="solid",shape="box"];611 -> 3782[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3782 -> 746[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3783[label="yvy30/Neg yvy300",fontsize=10,color="white",style="solid",shape="box"];611 -> 3783[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3783 -> 747[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 612[label="primCmpInt (Neg (Succ yvy4000)) yvy30",fontsize=16,color="burlywood",shape="box"];3784[label="yvy30/Pos yvy300",fontsize=10,color="white",style="solid",shape="box"];612 -> 3784[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3784 -> 748[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3785[label="yvy30/Neg yvy300",fontsize=10,color="white",style="solid",shape="box"];612 -> 3785[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3785 -> 749[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 613[label="primCmpInt (Neg Zero) yvy30",fontsize=16,color="burlywood",shape="box"];3786[label="yvy30/Pos yvy300",fontsize=10,color="white",style="solid",shape="box"];613 -> 3786[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3786 -> 750[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3787[label="yvy30/Neg yvy300",fontsize=10,color="white",style="solid",shape="box"];613 -> 3787[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3787 -> 751[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 614 -> 752[label="",style="dashed", color="red", weight=0]; 52.61/30.38 614[label="primCompAux yvy400 yvy300 (compare yvy401 yvy301)",fontsize=16,color="magenta"];614 -> 753[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 615[label="GT",fontsize=16,color="green",shape="box"];616[label="LT",fontsize=16,color="green",shape="box"];617[label="EQ",fontsize=16,color="green",shape="box"];618[label="EQ",fontsize=16,color="green",shape="box"];619 -> 533[label="",style="dashed", color="red", weight=0]; 52.61/30.38 619[label="primCmpInt yvy400 yvy300",fontsize=16,color="magenta"];619 -> 754[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 619 -> 755[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 620[label="compare2 (yvy400,yvy401) yvy30 ((yvy400,yvy401) == yvy30)",fontsize=16,color="burlywood",shape="box"];3788[label="yvy30/(yvy300,yvy301)",fontsize=10,color="white",style="solid",shape="box"];620 -> 3788[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3788 -> 756[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 621[label="compare2 (yvy400,yvy401,yvy402) yvy30 ((yvy400,yvy401,yvy402) == yvy30)",fontsize=16,color="burlywood",shape="box"];3789[label="yvy30/(yvy300,yvy301,yvy302)",fontsize=10,color="white",style="solid",shape="box"];621 -> 3789[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3789 -> 757[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 622[label="compare2 False yvy30 (False == yvy30)",fontsize=16,color="burlywood",shape="box"];3790[label="yvy30/False",fontsize=10,color="white",style="solid",shape="box"];622 -> 3790[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3790 -> 758[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3791[label="yvy30/True",fontsize=10,color="white",style="solid",shape="box"];622 -> 3791[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3791 -> 759[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 623[label="compare2 True yvy30 (True == yvy30)",fontsize=16,color="burlywood",shape="box"];3792[label="yvy30/False",fontsize=10,color="white",style="solid",shape="box"];623 -> 3792[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3792 -> 760[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3793[label="yvy30/True",fontsize=10,color="white",style="solid",shape="box"];623 -> 3793[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3793 -> 761[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 624[label="compare2 Nothing yvy30 (Nothing == yvy30)",fontsize=16,color="burlywood",shape="box"];3794[label="yvy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];624 -> 3794[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3794 -> 762[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3795[label="yvy30/Just yvy300",fontsize=10,color="white",style="solid",shape="box"];624 -> 3795[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3795 -> 763[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 625[label="compare2 (Just yvy400) yvy30 (Just yvy400 == yvy30)",fontsize=16,color="burlywood",shape="box"];3796[label="yvy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];625 -> 3796[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3796 -> 764[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3797[label="yvy30/Just yvy300",fontsize=10,color="white",style="solid",shape="box"];625 -> 3797[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3797 -> 765[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 626[label="compare2 (Left yvy400) yvy30 (Left yvy400 == yvy30)",fontsize=16,color="burlywood",shape="box"];3798[label="yvy30/Left yvy300",fontsize=10,color="white",style="solid",shape="box"];626 -> 3798[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3798 -> 766[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3799[label="yvy30/Right yvy300",fontsize=10,color="white",style="solid",shape="box"];626 -> 3799[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3799 -> 767[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 627[label="compare2 (Right yvy400) yvy30 (Right yvy400 == yvy30)",fontsize=16,color="burlywood",shape="box"];3800[label="yvy30/Left yvy300",fontsize=10,color="white",style="solid",shape="box"];627 -> 3800[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3800 -> 768[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3801[label="yvy30/Right yvy300",fontsize=10,color="white",style="solid",shape="box"];627 -> 3801[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3801 -> 769[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 628[label="compare2 LT yvy30 (LT == yvy30)",fontsize=16,color="burlywood",shape="box"];3802[label="yvy30/LT",fontsize=10,color="white",style="solid",shape="box"];628 -> 3802[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3802 -> 770[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3803[label="yvy30/EQ",fontsize=10,color="white",style="solid",shape="box"];628 -> 3803[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3803 -> 771[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3804[label="yvy30/GT",fontsize=10,color="white",style="solid",shape="box"];628 -> 3804[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3804 -> 772[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 629[label="compare2 EQ yvy30 (EQ == yvy30)",fontsize=16,color="burlywood",shape="box"];3805[label="yvy30/LT",fontsize=10,color="white",style="solid",shape="box"];629 -> 3805[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3805 -> 773[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3806[label="yvy30/EQ",fontsize=10,color="white",style="solid",shape="box"];629 -> 3806[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3806 -> 774[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3807[label="yvy30/GT",fontsize=10,color="white",style="solid",shape="box"];629 -> 3807[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3807 -> 775[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 630[label="compare2 GT yvy30 (GT == yvy30)",fontsize=16,color="burlywood",shape="box"];3808[label="yvy30/LT",fontsize=10,color="white",style="solid",shape="box"];630 -> 3808[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3808 -> 776[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3809[label="yvy30/EQ",fontsize=10,color="white",style="solid",shape="box"];630 -> 3809[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3809 -> 777[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3810[label="yvy30/GT",fontsize=10,color="white",style="solid",shape="box"];630 -> 3810[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3810 -> 778[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 631[label="primCmpDouble (Double yvy400 (Pos yvy4010)) yvy30",fontsize=16,color="burlywood",shape="box"];3811[label="yvy30/Double yvy300 yvy301",fontsize=10,color="white",style="solid",shape="box"];631 -> 3811[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3811 -> 779[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 632[label="primCmpDouble (Double yvy400 (Neg yvy4010)) yvy30",fontsize=16,color="burlywood",shape="box"];3812[label="yvy30/Double yvy300 yvy301",fontsize=10,color="white",style="solid",shape="box"];632 -> 3812[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3812 -> 780[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 633[label="compare (yvy400 * yvy301) (yvy300 * yvy401)",fontsize=16,color="blue",shape="box"];3813[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];633 -> 3813[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3813 -> 781[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3814[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];633 -> 3814[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3814 -> 782[label="",style="solid", color="blue", weight=3]; 52.61/30.38 554[label="FiniteMap.splitGT0 yvy45 yvy46 yvy47 yvy48 yvy49 yvy50 True",fontsize=16,color="black",shape="box"];554 -> 783[label="",style="solid", color="black", weight=3]; 52.61/30.38 555[label="yvy45",fontsize=16,color="green",shape="box"];556[label="yvy49",fontsize=16,color="green",shape="box"];557 -> 106[label="",style="dashed", color="red", weight=0]; 52.61/30.38 557[label="FiniteMap.splitGT yvy48 yvy50",fontsize=16,color="magenta"];557 -> 784[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 557 -> 785[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 558[label="yvy46",fontsize=16,color="green",shape="box"];713[label="FiniteMap.splitLT0 yvy60 yvy61 yvy62 yvy63 yvy64 yvy65 True",fontsize=16,color="black",shape="box"];713 -> 786[label="",style="solid", color="black", weight=3]; 52.61/30.38 714[label="yvy60",fontsize=16,color="green",shape="box"];715 -> 122[label="",style="dashed", color="red", weight=0]; 52.61/30.38 715[label="FiniteMap.splitLT yvy64 yvy65",fontsize=16,color="magenta"];715 -> 787[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 715 -> 788[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 716[label="yvy63",fontsize=16,color="green",shape="box"];717[label="yvy61",fontsize=16,color="green",shape="box"];719[label="yvy78",fontsize=16,color="green",shape="box"];720[label="yvy81",fontsize=16,color="green",shape="box"];721[label="yvy76",fontsize=16,color="green",shape="box"];722[label="yvy81 > yvy76",fontsize=16,color="blue",shape="box"];3815[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 3815[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3815 -> 789[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3816[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 3816[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3816 -> 790[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3817[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 3817[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3817 -> 791[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3818[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 3818[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3818 -> 792[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3819[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 3819[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3819 -> 793[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3820[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 3820[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3820 -> 794[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3821[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 3821[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3821 -> 795[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3822[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 3822[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3822 -> 796[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3823[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 3823[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3823 -> 797[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3824[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 3824[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3824 -> 798[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3825[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 3825[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3825 -> 799[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3826[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 3826[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3826 -> 800[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3827[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 3827[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3827 -> 801[label="",style="solid", color="blue", weight=3]; 52.61/30.38 3828[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];722 -> 3828[label="",style="solid", color="blue", weight=9]; 52.61/30.38 3828 -> 802[label="",style="solid", color="blue", weight=3]; 52.61/30.38 723[label="yvy80",fontsize=16,color="green",shape="box"];724[label="yvy79",fontsize=16,color="green",shape="box"];725[label="yvy82",fontsize=16,color="green",shape="box"];726[label="yvy77",fontsize=16,color="green",shape="box"];718[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 yvy106 yvy107 yvy108 yvy109 yvy110 yvy111 yvy112 yvy113",fontsize=16,color="burlywood",shape="triangle"];3829[label="yvy113/False",fontsize=10,color="white",style="solid",shape="box"];718 -> 3829[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3829 -> 803[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3830[label="yvy113/True",fontsize=10,color="white",style="solid",shape="box"];718 -> 3830[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3830 -> 804[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 524[label="yvy76",fontsize=16,color="green",shape="box"];525[label="yvy80",fontsize=16,color="green",shape="box"];526 -> 33[label="",style="dashed", color="red", weight=0]; 52.61/30.38 526[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy79 yvy81 yvy82",fontsize=16,color="magenta"];526 -> 805[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 526 -> 806[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 526 -> 807[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 527[label="yvy77",fontsize=16,color="green",shape="box"];739[label="Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy930)",fontsize=16,color="green",shape="box"];739 -> 808[label="",style="dashed", color="green", weight=3]; 52.61/30.38 740[label="Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy930)",fontsize=16,color="green",shape="box"];740 -> 809[label="",style="dashed", color="green", weight=3]; 52.61/30.38 732[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];732 -> 810[label="",style="solid", color="black", weight=3]; 52.61/30.38 733[label="yvy60",fontsize=16,color="green",shape="box"];734 -> 12[label="",style="dashed", color="red", weight=0]; 52.61/30.38 734[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];734 -> 811[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 734 -> 812[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 735[label="yvy63",fontsize=16,color="green",shape="box"];736[label="yvy61",fontsize=16,color="green",shape="box"];738 -> 74[label="",style="dashed", color="red", weight=0]; 52.61/30.38 738[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];738 -> 813[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 738 -> 814[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 737[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 yvy114",fontsize=16,color="burlywood",shape="triangle"];3831[label="yvy114/False",fontsize=10,color="white",style="solid",shape="box"];737 -> 3831[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3831 -> 815[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3832[label="yvy114/True",fontsize=10,color="white",style="solid",shape="box"];737 -> 3832[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3832 -> 816[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 741[label="primCmpFloat (Float yvy400 (Pos yvy4010)) (Float yvy300 yvy301)",fontsize=16,color="burlywood",shape="box"];3833[label="yvy301/Pos yvy3010",fontsize=10,color="white",style="solid",shape="box"];741 -> 3833[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3833 -> 817[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3834[label="yvy301/Neg yvy3010",fontsize=10,color="white",style="solid",shape="box"];741 -> 3834[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3834 -> 818[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 742[label="primCmpFloat (Float yvy400 (Neg yvy4010)) (Float yvy300 yvy301)",fontsize=16,color="burlywood",shape="box"];3835[label="yvy301/Pos yvy3010",fontsize=10,color="white",style="solid",shape="box"];742 -> 3835[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3835 -> 819[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3836[label="yvy301/Neg yvy3010",fontsize=10,color="white",style="solid",shape="box"];742 -> 3836[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3836 -> 820[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 743[label="primCmpNat yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];3837[label="yvy400/Succ yvy4000",fontsize=10,color="white",style="solid",shape="box"];743 -> 3837[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3837 -> 821[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3838[label="yvy400/Zero",fontsize=10,color="white",style="solid",shape="box"];743 -> 3838[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3838 -> 822[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 744[label="primCmpInt (Pos (Succ yvy4000)) (Pos yvy300)",fontsize=16,color="black",shape="box"];744 -> 823[label="",style="solid", color="black", weight=3]; 52.61/30.38 745[label="primCmpInt (Pos (Succ yvy4000)) (Neg yvy300)",fontsize=16,color="black",shape="box"];745 -> 824[label="",style="solid", color="black", weight=3]; 52.61/30.38 746[label="primCmpInt (Pos Zero) (Pos yvy300)",fontsize=16,color="burlywood",shape="box"];3839[label="yvy300/Succ yvy3000",fontsize=10,color="white",style="solid",shape="box"];746 -> 3839[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3839 -> 825[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3840[label="yvy300/Zero",fontsize=10,color="white",style="solid",shape="box"];746 -> 3840[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3840 -> 826[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 747[label="primCmpInt (Pos Zero) (Neg yvy300)",fontsize=16,color="burlywood",shape="box"];3841[label="yvy300/Succ yvy3000",fontsize=10,color="white",style="solid",shape="box"];747 -> 3841[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3841 -> 827[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3842[label="yvy300/Zero",fontsize=10,color="white",style="solid",shape="box"];747 -> 3842[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3842 -> 828[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 748[label="primCmpInt (Neg (Succ yvy4000)) (Pos yvy300)",fontsize=16,color="black",shape="box"];748 -> 829[label="",style="solid", color="black", weight=3]; 52.61/30.38 749[label="primCmpInt (Neg (Succ yvy4000)) (Neg yvy300)",fontsize=16,color="black",shape="box"];749 -> 830[label="",style="solid", color="black", weight=3]; 52.61/30.38 750[label="primCmpInt (Neg Zero) (Pos yvy300)",fontsize=16,color="burlywood",shape="box"];3843[label="yvy300/Succ yvy3000",fontsize=10,color="white",style="solid",shape="box"];750 -> 3843[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3843 -> 831[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3844[label="yvy300/Zero",fontsize=10,color="white",style="solid",shape="box"];750 -> 3844[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3844 -> 832[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 751[label="primCmpInt (Neg Zero) (Neg yvy300)",fontsize=16,color="burlywood",shape="box"];3845[label="yvy300/Succ yvy3000",fontsize=10,color="white",style="solid",shape="box"];751 -> 3845[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3845 -> 833[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3846[label="yvy300/Zero",fontsize=10,color="white",style="solid",shape="box"];751 -> 3846[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3846 -> 834[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 753 -> 482[label="",style="dashed", color="red", weight=0]; 52.61/30.38 753[label="compare yvy401 yvy301",fontsize=16,color="magenta"];753 -> 835[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 753 -> 836[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 752[label="primCompAux yvy400 yvy300 yvy115",fontsize=16,color="black",shape="triangle"];752 -> 837[label="",style="solid", color="black", weight=3]; 52.61/30.38 754[label="yvy400",fontsize=16,color="green",shape="box"];755[label="yvy300",fontsize=16,color="green",shape="box"];756[label="compare2 (yvy400,yvy401) (yvy300,yvy301) ((yvy400,yvy401) == (yvy300,yvy301))",fontsize=16,color="black",shape="box"];756 -> 838[label="",style="solid", color="black", weight=3]; 52.61/30.38 757[label="compare2 (yvy400,yvy401,yvy402) (yvy300,yvy301,yvy302) ((yvy400,yvy401,yvy402) == (yvy300,yvy301,yvy302))",fontsize=16,color="black",shape="box"];757 -> 839[label="",style="solid", color="black", weight=3]; 52.61/30.38 758[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];758 -> 840[label="",style="solid", color="black", weight=3]; 52.61/30.38 759[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];759 -> 841[label="",style="solid", color="black", weight=3]; 52.61/30.38 760[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];760 -> 842[label="",style="solid", color="black", weight=3]; 52.61/30.38 761[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];761 -> 843[label="",style="solid", color="black", weight=3]; 52.61/30.38 762[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];762 -> 844[label="",style="solid", color="black", weight=3]; 52.61/30.38 763[label="compare2 Nothing (Just yvy300) (Nothing == Just yvy300)",fontsize=16,color="black",shape="box"];763 -> 845[label="",style="solid", color="black", weight=3]; 52.61/30.38 764[label="compare2 (Just yvy400) Nothing (Just yvy400 == Nothing)",fontsize=16,color="black",shape="box"];764 -> 846[label="",style="solid", color="black", weight=3]; 52.61/30.38 765[label="compare2 (Just yvy400) (Just yvy300) (Just yvy400 == Just yvy300)",fontsize=16,color="black",shape="box"];765 -> 847[label="",style="solid", color="black", weight=3]; 52.61/30.38 766[label="compare2 (Left yvy400) (Left yvy300) (Left yvy400 == Left yvy300)",fontsize=16,color="black",shape="box"];766 -> 848[label="",style="solid", color="black", weight=3]; 52.61/30.38 767[label="compare2 (Left yvy400) (Right yvy300) (Left yvy400 == Right yvy300)",fontsize=16,color="black",shape="box"];767 -> 849[label="",style="solid", color="black", weight=3]; 52.61/30.38 768[label="compare2 (Right yvy400) (Left yvy300) (Right yvy400 == Left yvy300)",fontsize=16,color="black",shape="box"];768 -> 850[label="",style="solid", color="black", weight=3]; 52.61/30.38 769[label="compare2 (Right yvy400) (Right yvy300) (Right yvy400 == Right yvy300)",fontsize=16,color="black",shape="box"];769 -> 851[label="",style="solid", color="black", weight=3]; 52.61/30.38 770[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];770 -> 852[label="",style="solid", color="black", weight=3]; 52.61/30.38 771[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];771 -> 853[label="",style="solid", color="black", weight=3]; 52.61/30.38 772[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];772 -> 854[label="",style="solid", color="black", weight=3]; 52.61/30.38 773[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];773 -> 855[label="",style="solid", color="black", weight=3]; 52.61/30.38 774[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];774 -> 856[label="",style="solid", color="black", weight=3]; 52.61/30.38 775[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];775 -> 857[label="",style="solid", color="black", weight=3]; 52.61/30.38 776[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];776 -> 858[label="",style="solid", color="black", weight=3]; 52.61/30.38 777[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];777 -> 859[label="",style="solid", color="black", weight=3]; 52.61/30.38 778[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];778 -> 860[label="",style="solid", color="black", weight=3]; 52.61/30.38 779[label="primCmpDouble (Double yvy400 (Pos yvy4010)) (Double yvy300 yvy301)",fontsize=16,color="burlywood",shape="box"];3847[label="yvy301/Pos yvy3010",fontsize=10,color="white",style="solid",shape="box"];779 -> 3847[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3847 -> 861[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3848[label="yvy301/Neg yvy3010",fontsize=10,color="white",style="solid",shape="box"];779 -> 3848[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3848 -> 862[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 780[label="primCmpDouble (Double yvy400 (Neg yvy4010)) (Double yvy300 yvy301)",fontsize=16,color="burlywood",shape="box"];3849[label="yvy301/Pos yvy3010",fontsize=10,color="white",style="solid",shape="box"];780 -> 3849[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3849 -> 863[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3850[label="yvy301/Neg yvy3010",fontsize=10,color="white",style="solid",shape="box"];780 -> 3850[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3850 -> 864[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 781 -> 481[label="",style="dashed", color="red", weight=0]; 52.61/30.38 781[label="compare (yvy400 * yvy301) (yvy300 * yvy401)",fontsize=16,color="magenta"];781 -> 865[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 781 -> 866[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 782 -> 484[label="",style="dashed", color="red", weight=0]; 52.61/30.38 782[label="compare (yvy400 * yvy301) (yvy300 * yvy401)",fontsize=16,color="magenta"];782 -> 867[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 782 -> 868[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 783[label="yvy49",fontsize=16,color="green",shape="box"];784[label="yvy48",fontsize=16,color="green",shape="box"];785[label="yvy50",fontsize=16,color="green",shape="box"];786[label="yvy63",fontsize=16,color="green",shape="box"];787[label="yvy65",fontsize=16,color="green",shape="box"];788[label="yvy64",fontsize=16,color="green",shape="box"];789 -> 56[label="",style="dashed", color="red", weight=0]; 52.61/30.38 789[label="yvy81 > yvy76",fontsize=16,color="magenta"];789 -> 869[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 789 -> 870[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 790 -> 57[label="",style="dashed", color="red", weight=0]; 52.61/30.38 790[label="yvy81 > yvy76",fontsize=16,color="magenta"];790 -> 871[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 790 -> 872[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 791 -> 58[label="",style="dashed", color="red", weight=0]; 52.61/30.38 791[label="yvy81 > yvy76",fontsize=16,color="magenta"];791 -> 873[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 791 -> 874[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 792 -> 59[label="",style="dashed", color="red", weight=0]; 52.61/30.38 792[label="yvy81 > yvy76",fontsize=16,color="magenta"];792 -> 875[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 792 -> 876[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 793 -> 60[label="",style="dashed", color="red", weight=0]; 52.61/30.38 793[label="yvy81 > yvy76",fontsize=16,color="magenta"];793 -> 877[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 793 -> 878[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 794 -> 61[label="",style="dashed", color="red", weight=0]; 52.61/30.38 794[label="yvy81 > yvy76",fontsize=16,color="magenta"];794 -> 879[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 794 -> 880[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 795 -> 62[label="",style="dashed", color="red", weight=0]; 52.61/30.38 795[label="yvy81 > yvy76",fontsize=16,color="magenta"];795 -> 881[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 795 -> 882[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 796 -> 63[label="",style="dashed", color="red", weight=0]; 52.61/30.38 796[label="yvy81 > yvy76",fontsize=16,color="magenta"];796 -> 883[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 796 -> 884[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 797 -> 64[label="",style="dashed", color="red", weight=0]; 52.61/30.38 797[label="yvy81 > yvy76",fontsize=16,color="magenta"];797 -> 885[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 797 -> 886[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 798 -> 65[label="",style="dashed", color="red", weight=0]; 52.61/30.38 798[label="yvy81 > yvy76",fontsize=16,color="magenta"];798 -> 887[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 798 -> 888[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 799 -> 66[label="",style="dashed", color="red", weight=0]; 52.61/30.38 799[label="yvy81 > yvy76",fontsize=16,color="magenta"];799 -> 889[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 799 -> 890[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 800 -> 67[label="",style="dashed", color="red", weight=0]; 52.61/30.38 800[label="yvy81 > yvy76",fontsize=16,color="magenta"];800 -> 891[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 800 -> 892[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 801 -> 68[label="",style="dashed", color="red", weight=0]; 52.61/30.38 801[label="yvy81 > yvy76",fontsize=16,color="magenta"];801 -> 893[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 801 -> 894[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 802 -> 69[label="",style="dashed", color="red", weight=0]; 52.61/30.38 802[label="yvy81 > yvy76",fontsize=16,color="magenta"];802 -> 895[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 802 -> 896[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 803[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 yvy106 yvy107 yvy108 yvy109 yvy110 yvy111 yvy112 False",fontsize=16,color="black",shape="box"];803 -> 897[label="",style="solid", color="black", weight=3]; 52.61/30.38 804[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 yvy106 yvy107 yvy108 yvy109 yvy110 yvy111 yvy112 True",fontsize=16,color="black",shape="box"];804 -> 898[label="",style="solid", color="black", weight=3]; 52.61/30.38 805[label="yvy81",fontsize=16,color="green",shape="box"];806[label="yvy79",fontsize=16,color="green",shape="box"];807[label="yvy82",fontsize=16,color="green",shape="box"];808[label="primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy930",fontsize=16,color="burlywood",shape="triangle"];3851[label="yvy930/Succ yvy9300",fontsize=10,color="white",style="solid",shape="box"];808 -> 3851[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3851 -> 899[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 3852[label="yvy930/Zero",fontsize=10,color="white",style="solid",shape="box"];808 -> 3852[label="",style="solid", color="burlywood", weight=9]; 52.61/30.38 3852 -> 900[label="",style="solid", color="burlywood", weight=3]; 52.61/30.38 809 -> 808[label="",style="dashed", color="red", weight=0]; 52.61/30.38 809[label="primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy930",fontsize=16,color="magenta"];809 -> 901[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 810 -> 902[label="",style="dashed", color="red", weight=0]; 52.61/30.38 810[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))))) yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];810 -> 903[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 810 -> 904[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 810 -> 905[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 810 -> 906[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 810 -> 907[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 810 -> 908[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 810 -> 909[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 810 -> 910[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 810 -> 911[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 810 -> 912[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 810 -> 913[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 810 -> 914[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 810 -> 915[label="",style="dashed", color="magenta", weight=3]; 52.61/30.38 811[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];812[label="yvy64",fontsize=16,color="green",shape="box"];813[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90",fontsize=16,color="black",shape="box"];813 -> 916[label="",style="solid", color="black", weight=3]; 52.72/30.38 814[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];815[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 False",fontsize=16,color="black",shape="box"];815 -> 917[label="",style="solid", color="black", weight=3]; 52.72/30.38 816[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 True",fontsize=16,color="black",shape="box"];816 -> 918[label="",style="solid", color="black", weight=3]; 52.72/30.38 817[label="primCmpFloat (Float yvy400 (Pos yvy4010)) (Float yvy300 (Pos yvy3010))",fontsize=16,color="black",shape="box"];817 -> 919[label="",style="solid", color="black", weight=3]; 52.72/30.38 818[label="primCmpFloat (Float yvy400 (Pos yvy4010)) (Float yvy300 (Neg yvy3010))",fontsize=16,color="black",shape="box"];818 -> 920[label="",style="solid", color="black", weight=3]; 52.72/30.38 819[label="primCmpFloat (Float yvy400 (Neg yvy4010)) (Float yvy300 (Pos yvy3010))",fontsize=16,color="black",shape="box"];819 -> 921[label="",style="solid", color="black", weight=3]; 52.72/30.38 820[label="primCmpFloat (Float yvy400 (Neg yvy4010)) (Float yvy300 (Neg yvy3010))",fontsize=16,color="black",shape="box"];820 -> 922[label="",style="solid", color="black", weight=3]; 52.72/30.38 821[label="primCmpNat (Succ yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];3853[label="yvy300/Succ yvy3000",fontsize=10,color="white",style="solid",shape="box"];821 -> 3853[label="",style="solid", color="burlywood", weight=9]; 52.72/30.38 3853 -> 923[label="",style="solid", color="burlywood", weight=3]; 52.72/30.38 3854[label="yvy300/Zero",fontsize=10,color="white",style="solid",shape="box"];821 -> 3854[label="",style="solid", color="burlywood", weight=9]; 52.72/30.38 3854 -> 924[label="",style="solid", color="burlywood", weight=3]; 52.72/30.38 822[label="primCmpNat Zero yvy300",fontsize=16,color="burlywood",shape="box"];3855[label="yvy300/Succ yvy3000",fontsize=10,color="white",style="solid",shape="box"];822 -> 3855[label="",style="solid", color="burlywood", weight=9]; 52.72/30.38 3855 -> 925[label="",style="solid", color="burlywood", weight=3]; 52.72/30.38 3856[label="yvy300/Zero",fontsize=10,color="white",style="solid",shape="box"];822 -> 3856[label="",style="solid", color="burlywood", weight=9]; 52.72/30.38 3856 -> 926[label="",style="solid", color="burlywood", weight=3]; 52.72/30.38 823 -> 743[label="",style="dashed", color="red", weight=0]; 52.72/30.38 823[label="primCmpNat (Succ yvy4000) yvy300",fontsize=16,color="magenta"];823 -> 927[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 823 -> 928[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 824[label="GT",fontsize=16,color="green",shape="box"];825[label="primCmpInt (Pos Zero) (Pos (Succ yvy3000))",fontsize=16,color="black",shape="box"];825 -> 929[label="",style="solid", color="black", weight=3]; 52.72/30.38 826[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];826 -> 930[label="",style="solid", color="black", weight=3]; 52.72/30.38 827[label="primCmpInt (Pos Zero) (Neg (Succ yvy3000))",fontsize=16,color="black",shape="box"];827 -> 931[label="",style="solid", color="black", weight=3]; 52.72/30.38 828[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];828 -> 932[label="",style="solid", color="black", weight=3]; 52.72/30.38 829[label="LT",fontsize=16,color="green",shape="box"];830 -> 743[label="",style="dashed", color="red", weight=0]; 52.72/30.38 830[label="primCmpNat yvy300 (Succ yvy4000)",fontsize=16,color="magenta"];830 -> 933[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 830 -> 934[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 831[label="primCmpInt (Neg Zero) (Pos (Succ yvy3000))",fontsize=16,color="black",shape="box"];831 -> 935[label="",style="solid", color="black", weight=3]; 52.72/30.38 832[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];832 -> 936[label="",style="solid", color="black", weight=3]; 52.72/30.38 833[label="primCmpInt (Neg Zero) (Neg (Succ yvy3000))",fontsize=16,color="black",shape="box"];833 -> 937[label="",style="solid", color="black", weight=3]; 52.72/30.38 834[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];834 -> 938[label="",style="solid", color="black", weight=3]; 52.72/30.38 835[label="yvy401",fontsize=16,color="green",shape="box"];836[label="yvy301",fontsize=16,color="green",shape="box"];837 -> 939[label="",style="dashed", color="red", weight=0]; 52.72/30.38 837[label="primCompAux0 yvy115 (compare yvy400 yvy300)",fontsize=16,color="magenta"];837 -> 940[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 837 -> 941[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 838 -> 1428[label="",style="dashed", color="red", weight=0]; 52.72/30.38 838[label="compare2 (yvy400,yvy401) (yvy300,yvy301) (yvy400 == yvy300 && yvy401 == yvy301)",fontsize=16,color="magenta"];838 -> 1429[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 838 -> 1430[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 838 -> 1431[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 838 -> 1432[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 838 -> 1433[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 839 -> 1472[label="",style="dashed", color="red", weight=0]; 52.72/30.38 839[label="compare2 (yvy400,yvy401,yvy402) (yvy300,yvy301,yvy302) (yvy400 == yvy300 && yvy401 == yvy301 && yvy402 == yvy302)",fontsize=16,color="magenta"];839 -> 1473[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 839 -> 1474[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 839 -> 1475[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 839 -> 1476[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 839 -> 1477[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 839 -> 1478[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 839 -> 1479[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 840[label="compare2 False False True",fontsize=16,color="black",shape="box"];840 -> 956[label="",style="solid", color="black", weight=3]; 52.72/30.38 841[label="compare2 False True False",fontsize=16,color="black",shape="box"];841 -> 957[label="",style="solid", color="black", weight=3]; 52.72/30.38 842[label="compare2 True False False",fontsize=16,color="black",shape="box"];842 -> 958[label="",style="solid", color="black", weight=3]; 52.72/30.38 843[label="compare2 True True True",fontsize=16,color="black",shape="box"];843 -> 959[label="",style="solid", color="black", weight=3]; 52.72/30.38 844[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];844 -> 960[label="",style="solid", color="black", weight=3]; 52.72/30.38 845[label="compare2 Nothing (Just yvy300) False",fontsize=16,color="black",shape="box"];845 -> 961[label="",style="solid", color="black", weight=3]; 52.72/30.38 846[label="compare2 (Just yvy400) Nothing False",fontsize=16,color="black",shape="box"];846 -> 962[label="",style="solid", color="black", weight=3]; 52.72/30.38 847 -> 963[label="",style="dashed", color="red", weight=0]; 52.72/30.38 847[label="compare2 (Just yvy400) (Just yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];847 -> 964[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 847 -> 965[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 847 -> 966[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 848 -> 967[label="",style="dashed", color="red", weight=0]; 52.72/30.38 848[label="compare2 (Left yvy400) (Left yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];848 -> 968[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 848 -> 969[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 848 -> 970[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 849[label="compare2 (Left yvy400) (Right yvy300) False",fontsize=16,color="black",shape="box"];849 -> 971[label="",style="solid", color="black", weight=3]; 52.72/30.38 850[label="compare2 (Right yvy400) (Left yvy300) False",fontsize=16,color="black",shape="box"];850 -> 972[label="",style="solid", color="black", weight=3]; 52.72/30.38 851 -> 973[label="",style="dashed", color="red", weight=0]; 52.72/30.38 851[label="compare2 (Right yvy400) (Right yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];851 -> 974[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 851 -> 975[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 851 -> 976[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 852[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];852 -> 977[label="",style="solid", color="black", weight=3]; 52.72/30.38 853[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];853 -> 978[label="",style="solid", color="black", weight=3]; 52.72/30.38 854[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];854 -> 979[label="",style="solid", color="black", weight=3]; 52.72/30.38 855[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];855 -> 980[label="",style="solid", color="black", weight=3]; 52.72/30.38 856[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];856 -> 981[label="",style="solid", color="black", weight=3]; 52.72/30.38 857[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];857 -> 982[label="",style="solid", color="black", weight=3]; 52.72/30.38 858[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];858 -> 983[label="",style="solid", color="black", weight=3]; 52.72/30.38 859[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];859 -> 984[label="",style="solid", color="black", weight=3]; 52.72/30.38 860[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];860 -> 985[label="",style="solid", color="black", weight=3]; 52.72/30.38 861[label="primCmpDouble (Double yvy400 (Pos yvy4010)) (Double yvy300 (Pos yvy3010))",fontsize=16,color="black",shape="box"];861 -> 986[label="",style="solid", color="black", weight=3]; 52.72/30.38 862[label="primCmpDouble (Double yvy400 (Pos yvy4010)) (Double yvy300 (Neg yvy3010))",fontsize=16,color="black",shape="box"];862 -> 987[label="",style="solid", color="black", weight=3]; 52.72/30.38 863[label="primCmpDouble (Double yvy400 (Neg yvy4010)) (Double yvy300 (Pos yvy3010))",fontsize=16,color="black",shape="box"];863 -> 988[label="",style="solid", color="black", weight=3]; 52.72/30.38 864[label="primCmpDouble (Double yvy400 (Neg yvy4010)) (Double yvy300 (Neg yvy3010))",fontsize=16,color="black",shape="box"];864 -> 989[label="",style="solid", color="black", weight=3]; 52.72/30.38 865[label="yvy400 * yvy301",fontsize=16,color="black",shape="triangle"];865 -> 990[label="",style="solid", color="black", weight=3]; 52.72/30.38 866 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.38 866[label="yvy300 * yvy401",fontsize=16,color="magenta"];866 -> 991[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 866 -> 992[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 867[label="yvy400 * yvy301",fontsize=16,color="burlywood",shape="triangle"];3857[label="yvy400/Integer yvy4000",fontsize=10,color="white",style="solid",shape="box"];867 -> 3857[label="",style="solid", color="burlywood", weight=9]; 52.72/30.38 3857 -> 993[label="",style="solid", color="burlywood", weight=3]; 52.72/30.38 868 -> 867[label="",style="dashed", color="red", weight=0]; 52.72/30.38 868[label="yvy300 * yvy401",fontsize=16,color="magenta"];868 -> 994[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 868 -> 995[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 869[label="yvy81",fontsize=16,color="green",shape="box"];870[label="yvy76",fontsize=16,color="green",shape="box"];871[label="yvy81",fontsize=16,color="green",shape="box"];872[label="yvy76",fontsize=16,color="green",shape="box"];873[label="yvy81",fontsize=16,color="green",shape="box"];874[label="yvy76",fontsize=16,color="green",shape="box"];875[label="yvy81",fontsize=16,color="green",shape="box"];876[label="yvy76",fontsize=16,color="green",shape="box"];877[label="yvy81",fontsize=16,color="green",shape="box"];878[label="yvy76",fontsize=16,color="green",shape="box"];879[label="yvy81",fontsize=16,color="green",shape="box"];880[label="yvy76",fontsize=16,color="green",shape="box"];881[label="yvy81",fontsize=16,color="green",shape="box"];882[label="yvy76",fontsize=16,color="green",shape="box"];883[label="yvy81",fontsize=16,color="green",shape="box"];884[label="yvy76",fontsize=16,color="green",shape="box"];885[label="yvy81",fontsize=16,color="green",shape="box"];886[label="yvy76",fontsize=16,color="green",shape="box"];887[label="yvy81",fontsize=16,color="green",shape="box"];888[label="yvy76",fontsize=16,color="green",shape="box"];889[label="yvy81",fontsize=16,color="green",shape="box"];890[label="yvy76",fontsize=16,color="green",shape="box"];891[label="yvy81",fontsize=16,color="green",shape="box"];892[label="yvy76",fontsize=16,color="green",shape="box"];893[label="yvy81",fontsize=16,color="green",shape="box"];894[label="yvy76",fontsize=16,color="green",shape="box"];895[label="yvy81",fontsize=16,color="green",shape="box"];896[label="yvy76",fontsize=16,color="green",shape="box"];897[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 yvy106 yvy107 yvy108 yvy109 yvy110 yvy111 yvy112 otherwise",fontsize=16,color="black",shape="box"];897 -> 996[label="",style="solid", color="black", weight=3]; 52.72/30.38 898 -> 522[label="",style="dashed", color="red", weight=0]; 52.72/30.38 898[label="FiniteMap.mkBalBranch yvy106 yvy107 yvy109 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy110 yvy111 yvy112)",fontsize=16,color="magenta"];898 -> 997[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 898 -> 998[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 898 -> 999[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 898 -> 1000[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 899[label="primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) (Succ yvy9300)",fontsize=16,color="black",shape="box"];899 -> 1001[label="",style="solid", color="black", weight=3]; 52.72/30.38 900[label="primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) Zero",fontsize=16,color="black",shape="box"];900 -> 1002[label="",style="solid", color="black", weight=3]; 52.72/30.38 901[label="yvy930",fontsize=16,color="green",shape="box"];903[label="yvy62",fontsize=16,color="green",shape="box"];904[label="yvy54",fontsize=16,color="green",shape="box"];905[label="yvy63",fontsize=16,color="green",shape="box"];906[label="yvy61",fontsize=16,color="green",shape="box"];907[label="yvy51",fontsize=16,color="green",shape="box"];908[label="yvy60",fontsize=16,color="green",shape="box"];909[label="yvy50",fontsize=16,color="green",shape="box"];910[label="yvy40",fontsize=16,color="green",shape="box"];911[label="yvy64",fontsize=16,color="green",shape="box"];912[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];913[label="yvy52",fontsize=16,color="green",shape="box"];914[label="yvy41",fontsize=16,color="green",shape="box"];915[label="yvy53",fontsize=16,color="green",shape="box"];902[label="FiniteMap.mkBranch (Pos (Succ yvy117)) yvy118 yvy119 (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129)",fontsize=16,color="black",shape="triangle"];902 -> 1003[label="",style="solid", color="black", weight=3]; 52.72/30.38 916 -> 1670[label="",style="dashed", color="red", weight=0]; 52.72/30.38 916[label="primPlusInt (FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90) (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90)",fontsize=16,color="magenta"];916 -> 1671[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 916 -> 1672[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 917 -> 1005[label="",style="dashed", color="red", weight=0]; 52.72/30.38 917[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90)",fontsize=16,color="magenta"];917 -> 1006[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 918[label="FiniteMap.mkBranch (Pos (Succ Zero)) yvy50 yvy51 yvy90 yvy54",fontsize=16,color="black",shape="box"];918 -> 1007[label="",style="solid", color="black", weight=3]; 52.72/30.38 919 -> 481[label="",style="dashed", color="red", weight=0]; 52.72/30.38 919[label="compare (yvy400 * Pos yvy3010) (Pos yvy4010 * yvy300)",fontsize=16,color="magenta"];919 -> 1008[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 919 -> 1009[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 920 -> 481[label="",style="dashed", color="red", weight=0]; 52.72/30.38 920[label="compare (yvy400 * Pos yvy3010) (Neg yvy4010 * yvy300)",fontsize=16,color="magenta"];920 -> 1010[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 920 -> 1011[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 921 -> 481[label="",style="dashed", color="red", weight=0]; 52.72/30.38 921[label="compare (yvy400 * Neg yvy3010) (Pos yvy4010 * yvy300)",fontsize=16,color="magenta"];921 -> 1012[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 921 -> 1013[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 922 -> 481[label="",style="dashed", color="red", weight=0]; 52.72/30.38 922[label="compare (yvy400 * Neg yvy3010) (Neg yvy4010 * yvy300)",fontsize=16,color="magenta"];922 -> 1014[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 922 -> 1015[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 923[label="primCmpNat (Succ yvy4000) (Succ yvy3000)",fontsize=16,color="black",shape="box"];923 -> 1016[label="",style="solid", color="black", weight=3]; 52.72/30.38 924[label="primCmpNat (Succ yvy4000) Zero",fontsize=16,color="black",shape="box"];924 -> 1017[label="",style="solid", color="black", weight=3]; 52.72/30.38 925[label="primCmpNat Zero (Succ yvy3000)",fontsize=16,color="black",shape="box"];925 -> 1018[label="",style="solid", color="black", weight=3]; 52.72/30.38 926[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];926 -> 1019[label="",style="solid", color="black", weight=3]; 52.72/30.38 927[label="Succ yvy4000",fontsize=16,color="green",shape="box"];928[label="yvy300",fontsize=16,color="green",shape="box"];929 -> 743[label="",style="dashed", color="red", weight=0]; 52.72/30.38 929[label="primCmpNat Zero (Succ yvy3000)",fontsize=16,color="magenta"];929 -> 1020[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 929 -> 1021[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 930[label="EQ",fontsize=16,color="green",shape="box"];931[label="GT",fontsize=16,color="green",shape="box"];932[label="EQ",fontsize=16,color="green",shape="box"];933[label="yvy300",fontsize=16,color="green",shape="box"];934[label="Succ yvy4000",fontsize=16,color="green",shape="box"];935[label="LT",fontsize=16,color="green",shape="box"];936[label="EQ",fontsize=16,color="green",shape="box"];937 -> 743[label="",style="dashed", color="red", weight=0]; 52.72/30.38 937[label="primCmpNat (Succ yvy3000) Zero",fontsize=16,color="magenta"];937 -> 1022[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 937 -> 1023[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 938[label="EQ",fontsize=16,color="green",shape="box"];940[label="yvy115",fontsize=16,color="green",shape="box"];941[label="compare yvy400 yvy300",fontsize=16,color="blue",shape="box"];3858[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];941 -> 3858[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3858 -> 1024[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3859[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];941 -> 3859[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3859 -> 1025[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3860[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];941 -> 3860[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3860 -> 1026[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3861[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];941 -> 3861[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3861 -> 1027[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3862[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];941 -> 3862[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3862 -> 1028[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3863[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];941 -> 3863[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3863 -> 1029[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3864[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];941 -> 3864[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3864 -> 1030[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3865[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];941 -> 3865[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3865 -> 1031[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3866[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];941 -> 3866[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3866 -> 1032[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3867[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];941 -> 3867[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3867 -> 1033[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3868[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];941 -> 3868[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3868 -> 1034[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3869[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];941 -> 3869[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3869 -> 1035[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3870[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];941 -> 3870[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3870 -> 1036[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3871[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];941 -> 3871[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3871 -> 1037[label="",style="solid", color="blue", weight=3]; 52.72/30.38 939[label="primCompAux0 yvy133 yvy134",fontsize=16,color="burlywood",shape="triangle"];3872[label="yvy134/LT",fontsize=10,color="white",style="solid",shape="box"];939 -> 3872[label="",style="solid", color="burlywood", weight=9]; 52.72/30.38 3872 -> 1038[label="",style="solid", color="burlywood", weight=3]; 52.72/30.38 3873[label="yvy134/EQ",fontsize=10,color="white",style="solid",shape="box"];939 -> 3873[label="",style="solid", color="burlywood", weight=9]; 52.72/30.38 3873 -> 1039[label="",style="solid", color="burlywood", weight=3]; 52.72/30.38 3874[label="yvy134/GT",fontsize=10,color="white",style="solid",shape="box"];939 -> 3874[label="",style="solid", color="burlywood", weight=9]; 52.72/30.38 3874 -> 1040[label="",style="solid", color="burlywood", weight=3]; 52.72/30.38 1429[label="yvy400",fontsize=16,color="green",shape="box"];1430[label="yvy401",fontsize=16,color="green",shape="box"];1431[label="yvy301",fontsize=16,color="green",shape="box"];1432[label="yvy300",fontsize=16,color="green",shape="box"];1433 -> 1504[label="",style="dashed", color="red", weight=0]; 52.72/30.38 1433[label="yvy400 == yvy300 && yvy401 == yvy301",fontsize=16,color="magenta"];1433 -> 1505[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 1433 -> 1506[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 1428[label="compare2 (yvy190,yvy191) (yvy192,yvy193) yvy194",fontsize=16,color="burlywood",shape="triangle"];3875[label="yvy194/False",fontsize=10,color="white",style="solid",shape="box"];1428 -> 3875[label="",style="solid", color="burlywood", weight=9]; 52.72/30.38 3875 -> 1453[label="",style="solid", color="burlywood", weight=3]; 52.72/30.38 3876[label="yvy194/True",fontsize=10,color="white",style="solid",shape="box"];1428 -> 3876[label="",style="solid", color="burlywood", weight=9]; 52.72/30.38 3876 -> 1454[label="",style="solid", color="burlywood", weight=3]; 52.72/30.38 1473[label="yvy301",fontsize=16,color="green",shape="box"];1474[label="yvy400",fontsize=16,color="green",shape="box"];1475[label="yvy302",fontsize=16,color="green",shape="box"];1476[label="yvy401",fontsize=16,color="green",shape="box"];1477 -> 1504[label="",style="dashed", color="red", weight=0]; 52.72/30.38 1477[label="yvy400 == yvy300 && yvy401 == yvy301 && yvy402 == yvy302",fontsize=16,color="magenta"];1477 -> 1507[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 1477 -> 1508[label="",style="dashed", color="magenta", weight=3]; 52.72/30.38 1478[label="yvy402",fontsize=16,color="green",shape="box"];1479[label="yvy300",fontsize=16,color="green",shape="box"];1472[label="compare2 (yvy154,yvy155,yvy156) (yvy157,yvy158,yvy159) yvy202",fontsize=16,color="burlywood",shape="triangle"];3877[label="yvy202/False",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3877[label="",style="solid", color="burlywood", weight=9]; 52.72/30.38 3877 -> 1488[label="",style="solid", color="burlywood", weight=3]; 52.72/30.38 3878[label="yvy202/True",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3878[label="",style="solid", color="burlywood", weight=9]; 52.72/30.38 3878 -> 1489[label="",style="solid", color="burlywood", weight=3]; 52.72/30.38 956[label="EQ",fontsize=16,color="green",shape="box"];957[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];957 -> 1073[label="",style="solid", color="black", weight=3]; 52.72/30.38 958[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];958 -> 1074[label="",style="solid", color="black", weight=3]; 52.72/30.38 959[label="EQ",fontsize=16,color="green",shape="box"];960[label="EQ",fontsize=16,color="green",shape="box"];961[label="compare1 Nothing (Just yvy300) (Nothing <= Just yvy300)",fontsize=16,color="black",shape="box"];961 -> 1075[label="",style="solid", color="black", weight=3]; 52.72/30.38 962[label="compare1 (Just yvy400) Nothing (Just yvy400 <= Nothing)",fontsize=16,color="black",shape="box"];962 -> 1076[label="",style="solid", color="black", weight=3]; 52.72/30.38 964[label="yvy400",fontsize=16,color="green",shape="box"];965[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];3879[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 3879[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3879 -> 1077[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3880[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 3880[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3880 -> 1078[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3881[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 3881[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3881 -> 1079[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3882[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 3882[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3882 -> 1080[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3883[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 3883[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3883 -> 1081[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3884[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 3884[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3884 -> 1082[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3885[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 3885[label="",style="solid", color="blue", weight=9]; 52.72/30.38 3885 -> 1083[label="",style="solid", color="blue", weight=3]; 52.72/30.38 3886[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 3886[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3886 -> 1084[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3887[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 3887[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3887 -> 1085[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3888[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 3888[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3888 -> 1086[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3889[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 3889[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3889 -> 1087[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3890[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 3890[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3890 -> 1088[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3891[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 3891[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3891 -> 1089[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3892[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];965 -> 3892[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3892 -> 1090[label="",style="solid", color="blue", weight=3]; 52.72/30.39 966[label="yvy300",fontsize=16,color="green",shape="box"];963[label="compare2 (Just yvy165) (Just yvy166) yvy167",fontsize=16,color="burlywood",shape="triangle"];3893[label="yvy167/False",fontsize=10,color="white",style="solid",shape="box"];963 -> 3893[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3893 -> 1091[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 3894[label="yvy167/True",fontsize=10,color="white",style="solid",shape="box"];963 -> 3894[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3894 -> 1092[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 968[label="yvy400",fontsize=16,color="green",shape="box"];969[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];3895[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];969 -> 3895[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3895 -> 1093[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3896[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];969 -> 3896[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3896 -> 1094[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3897[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];969 -> 3897[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3897 -> 1095[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3898[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];969 -> 3898[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3898 -> 1096[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3899[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];969 -> 3899[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3899 -> 1097[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3900[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];969 -> 3900[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3900 -> 1098[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3901[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];969 -> 3901[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3901 -> 1099[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3902[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];969 -> 3902[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3902 -> 1100[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3903[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];969 -> 3903[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3903 -> 1101[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3904[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];969 -> 3904[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3904 -> 1102[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3905[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];969 -> 3905[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3905 -> 1103[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3906[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];969 -> 3906[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3906 -> 1104[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3907[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];969 -> 3907[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3907 -> 1105[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3908[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];969 -> 3908[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3908 -> 1106[label="",style="solid", color="blue", weight=3]; 52.72/30.39 970[label="yvy300",fontsize=16,color="green",shape="box"];967[label="compare2 (Left yvy172) (Left yvy173) yvy174",fontsize=16,color="burlywood",shape="triangle"];3909[label="yvy174/False",fontsize=10,color="white",style="solid",shape="box"];967 -> 3909[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3909 -> 1107[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 3910[label="yvy174/True",fontsize=10,color="white",style="solid",shape="box"];967 -> 3910[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3910 -> 1108[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 971[label="compare1 (Left yvy400) (Right yvy300) (Left yvy400 <= Right yvy300)",fontsize=16,color="black",shape="box"];971 -> 1109[label="",style="solid", color="black", weight=3]; 52.72/30.39 972[label="compare1 (Right yvy400) (Left yvy300) (Right yvy400 <= Left yvy300)",fontsize=16,color="black",shape="box"];972 -> 1110[label="",style="solid", color="black", weight=3]; 52.72/30.39 974[label="yvy400",fontsize=16,color="green",shape="box"];975[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];3911[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3911[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3911 -> 1111[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3912[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3912[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3912 -> 1112[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3913[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3913[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3913 -> 1113[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3914[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3914[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3914 -> 1114[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3915[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3915[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3915 -> 1115[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3916[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3916[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3916 -> 1116[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3917[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3917[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3917 -> 1117[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3918[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3918[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3918 -> 1118[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3919[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3919[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3919 -> 1119[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3920[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3920[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3920 -> 1120[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3921[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3921[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3921 -> 1121[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3922[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3922[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3922 -> 1122[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3923[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3923[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3923 -> 1123[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3924[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 3924[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3924 -> 1124[label="",style="solid", color="blue", weight=3]; 52.72/30.39 976[label="yvy300",fontsize=16,color="green",shape="box"];973[label="compare2 (Right yvy179) (Right yvy180) yvy181",fontsize=16,color="burlywood",shape="triangle"];3925[label="yvy181/False",fontsize=10,color="white",style="solid",shape="box"];973 -> 3925[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3925 -> 1125[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 3926[label="yvy181/True",fontsize=10,color="white",style="solid",shape="box"];973 -> 3926[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3926 -> 1126[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 977[label="EQ",fontsize=16,color="green",shape="box"];978[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];978 -> 1127[label="",style="solid", color="black", weight=3]; 52.72/30.39 979[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];979 -> 1128[label="",style="solid", color="black", weight=3]; 52.72/30.39 980[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];980 -> 1129[label="",style="solid", color="black", weight=3]; 52.72/30.39 981[label="EQ",fontsize=16,color="green",shape="box"];982[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];982 -> 1130[label="",style="solid", color="black", weight=3]; 52.72/30.39 983[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];983 -> 1131[label="",style="solid", color="black", weight=3]; 52.72/30.39 984[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];984 -> 1132[label="",style="solid", color="black", weight=3]; 52.72/30.39 985[label="EQ",fontsize=16,color="green",shape="box"];986 -> 481[label="",style="dashed", color="red", weight=0]; 52.72/30.39 986[label="compare (yvy400 * Pos yvy3010) (Pos yvy4010 * yvy300)",fontsize=16,color="magenta"];986 -> 1133[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 986 -> 1134[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 987 -> 481[label="",style="dashed", color="red", weight=0]; 52.72/30.39 987[label="compare (yvy400 * Pos yvy3010) (Neg yvy4010 * yvy300)",fontsize=16,color="magenta"];987 -> 1135[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 987 -> 1136[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 988 -> 481[label="",style="dashed", color="red", weight=0]; 52.72/30.39 988[label="compare (yvy400 * Neg yvy3010) (Pos yvy4010 * yvy300)",fontsize=16,color="magenta"];988 -> 1137[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 988 -> 1138[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 989 -> 481[label="",style="dashed", color="red", weight=0]; 52.72/30.39 989[label="compare (yvy400 * Neg yvy3010) (Neg yvy4010 * yvy300)",fontsize=16,color="magenta"];989 -> 1139[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 989 -> 1140[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 990[label="primMulInt yvy400 yvy301",fontsize=16,color="burlywood",shape="triangle"];3927[label="yvy400/Pos yvy4000",fontsize=10,color="white",style="solid",shape="box"];990 -> 3927[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3927 -> 1141[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 3928[label="yvy400/Neg yvy4000",fontsize=10,color="white",style="solid",shape="box"];990 -> 3928[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3928 -> 1142[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 991[label="yvy300",fontsize=16,color="green",shape="box"];992[label="yvy401",fontsize=16,color="green",shape="box"];993[label="Integer yvy4000 * yvy301",fontsize=16,color="burlywood",shape="box"];3929[label="yvy301/Integer yvy3010",fontsize=10,color="white",style="solid",shape="box"];993 -> 3929[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3929 -> 1143[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 994[label="yvy300",fontsize=16,color="green",shape="box"];995[label="yvy401",fontsize=16,color="green",shape="box"];996[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 yvy106 yvy107 yvy108 yvy109 yvy110 yvy111 yvy112 True",fontsize=16,color="black",shape="box"];996 -> 1144[label="",style="solid", color="black", weight=3]; 52.72/30.39 997[label="yvy106",fontsize=16,color="green",shape="box"];998 -> 33[label="",style="dashed", color="red", weight=0]; 52.72/30.39 998[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy110 yvy111 yvy112",fontsize=16,color="magenta"];998 -> 1145[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 998 -> 1146[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 998 -> 1147[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 999[label="yvy109",fontsize=16,color="green",shape="box"];1000[label="yvy107",fontsize=16,color="green",shape="box"];1001[label="primPlusNat (primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy9300)) (Succ yvy9300)",fontsize=16,color="black",shape="box"];1001 -> 1148[label="",style="solid", color="black", weight=3]; 52.72/30.39 1002[label="Zero",fontsize=16,color="green",shape="box"];1003[label="FiniteMap.mkBranchResult yvy118 yvy119 (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129)",fontsize=16,color="black",shape="box"];1003 -> 1149[label="",style="solid", color="black", weight=3]; 52.72/30.39 1671[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90",fontsize=16,color="black",shape="triangle"];1671 -> 1680[label="",style="solid", color="black", weight=3]; 52.72/30.39 1672 -> 1152[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1672[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90",fontsize=16,color="magenta"];1670[label="primPlusInt yvy902 yvy210",fontsize=16,color="burlywood",shape="triangle"];3930[label="yvy902/Pos yvy9020",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3930[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3930 -> 1681[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 3931[label="yvy902/Neg yvy9020",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3931[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3931 -> 1682[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1006 -> 58[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1006[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90",fontsize=16,color="magenta"];1006 -> 1152[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1006 -> 1153[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1005[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 yvy182",fontsize=16,color="burlywood",shape="triangle"];3932[label="yvy182/False",fontsize=10,color="white",style="solid",shape="box"];1005 -> 3932[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3932 -> 1154[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 3933[label="yvy182/True",fontsize=10,color="white",style="solid",shape="box"];1005 -> 3933[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3933 -> 1155[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1007[label="FiniteMap.mkBranchResult yvy50 yvy51 yvy90 yvy54",fontsize=16,color="black",shape="triangle"];1007 -> 1156[label="",style="solid", color="black", weight=3]; 52.72/30.39 1008 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1008[label="yvy400 * Pos yvy3010",fontsize=16,color="magenta"];1008 -> 1157[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1008 -> 1158[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1009 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1009[label="Pos yvy4010 * yvy300",fontsize=16,color="magenta"];1009 -> 1159[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1009 -> 1160[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1010 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1010[label="yvy400 * Pos yvy3010",fontsize=16,color="magenta"];1010 -> 1161[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1010 -> 1162[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1011 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1011[label="Neg yvy4010 * yvy300",fontsize=16,color="magenta"];1011 -> 1163[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1011 -> 1164[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1012 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1012[label="yvy400 * Neg yvy3010",fontsize=16,color="magenta"];1012 -> 1165[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1012 -> 1166[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1013 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1013[label="Pos yvy4010 * yvy300",fontsize=16,color="magenta"];1013 -> 1167[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1013 -> 1168[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1014 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1014[label="yvy400 * Neg yvy3010",fontsize=16,color="magenta"];1014 -> 1169[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1014 -> 1170[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1015 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1015[label="Neg yvy4010 * yvy300",fontsize=16,color="magenta"];1015 -> 1171[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1015 -> 1172[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1016 -> 743[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1016[label="primCmpNat yvy4000 yvy3000",fontsize=16,color="magenta"];1016 -> 1173[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1016 -> 1174[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1017[label="GT",fontsize=16,color="green",shape="box"];1018[label="LT",fontsize=16,color="green",shape="box"];1019[label="EQ",fontsize=16,color="green",shape="box"];1020[label="Zero",fontsize=16,color="green",shape="box"];1021[label="Succ yvy3000",fontsize=16,color="green",shape="box"];1022[label="Succ yvy3000",fontsize=16,color="green",shape="box"];1023[label="Zero",fontsize=16,color="green",shape="box"];1024 -> 479[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1024[label="compare yvy400 yvy300",fontsize=16,color="magenta"];1024 -> 1175[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1024 -> 1176[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1025 -> 480[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1025[label="compare yvy400 yvy300",fontsize=16,color="magenta"];1025 -> 1177[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1025 -> 1178[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1026 -> 481[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1026[label="compare yvy400 yvy300",fontsize=16,color="magenta"];1026 -> 1179[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1026 -> 1180[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1027 -> 482[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1027[label="compare yvy400 yvy300",fontsize=16,color="magenta"];1027 -> 1181[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1027 -> 1182[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1028 -> 483[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1028[label="compare yvy400 yvy300",fontsize=16,color="magenta"];1028 -> 1183[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1028 -> 1184[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1029 -> 484[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1029[label="compare yvy400 yvy300",fontsize=16,color="magenta"];1029 -> 1185[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1029 -> 1186[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1030 -> 485[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1030[label="compare yvy400 yvy300",fontsize=16,color="magenta"];1030 -> 1187[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1030 -> 1188[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1031 -> 486[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1031[label="compare yvy400 yvy300",fontsize=16,color="magenta"];1031 -> 1189[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1031 -> 1190[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1032 -> 487[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1032[label="compare yvy400 yvy300",fontsize=16,color="magenta"];1032 -> 1191[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1032 -> 1192[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1033 -> 488[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1033[label="compare yvy400 yvy300",fontsize=16,color="magenta"];1033 -> 1193[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1033 -> 1194[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1034 -> 489[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1034[label="compare yvy400 yvy300",fontsize=16,color="magenta"];1034 -> 1195[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1034 -> 1196[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1035 -> 490[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1035[label="compare yvy400 yvy300",fontsize=16,color="magenta"];1035 -> 1197[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1035 -> 1198[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1036 -> 491[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1036[label="compare yvy400 yvy300",fontsize=16,color="magenta"];1036 -> 1199[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1036 -> 1200[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1037 -> 492[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1037[label="compare yvy400 yvy300",fontsize=16,color="magenta"];1037 -> 1201[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1037 -> 1202[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1038[label="primCompAux0 yvy133 LT",fontsize=16,color="black",shape="box"];1038 -> 1203[label="",style="solid", color="black", weight=3]; 52.72/30.39 1039[label="primCompAux0 yvy133 EQ",fontsize=16,color="black",shape="box"];1039 -> 1204[label="",style="solid", color="black", weight=3]; 52.72/30.39 1040[label="primCompAux0 yvy133 GT",fontsize=16,color="black",shape="box"];1040 -> 1205[label="",style="solid", color="black", weight=3]; 52.72/30.39 1505[label="yvy401 == yvy301",fontsize=16,color="blue",shape="box"];3934[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3934[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3934 -> 1513[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3935[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3935[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3935 -> 1514[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3936[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3936[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3936 -> 1515[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3937[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3937[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3937 -> 1516[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3938[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3938[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3938 -> 1517[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3939[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3939[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3939 -> 1518[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3940[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3940[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3940 -> 1519[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3941[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3941[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3941 -> 1520[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3942[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3942[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3942 -> 1521[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3943[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3943[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3943 -> 1522[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3944[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3944[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3944 -> 1523[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3945[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3945[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3945 -> 1524[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3946[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3946[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3946 -> 1525[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3947[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1505 -> 3947[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3947 -> 1526[label="",style="solid", color="blue", weight=3]; 52.72/30.39 1506[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];3948[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1506 -> 3948[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3948 -> 1527[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3949[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1506 -> 3949[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3949 -> 1528[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3950[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1506 -> 3950[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3950 -> 1529[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3951[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1506 -> 3951[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3951 -> 1530[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3952[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1506 -> 3952[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3952 -> 1531[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3953[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1506 -> 3953[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3953 -> 1532[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3954[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1506 -> 3954[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3954 -> 1533[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3955[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1506 -> 3955[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3955 -> 1534[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3956[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1506 -> 3956[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3956 -> 1535[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3957[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1506 -> 3957[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3957 -> 1536[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3958[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1506 -> 3958[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3958 -> 1537[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3959[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1506 -> 3959[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3959 -> 1538[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3960[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1506 -> 3960[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3960 -> 1539[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3961[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1506 -> 3961[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3961 -> 1540[label="",style="solid", color="blue", weight=3]; 52.72/30.39 1504[label="yvy207 && yvy208",fontsize=16,color="burlywood",shape="triangle"];3962[label="yvy207/False",fontsize=10,color="white",style="solid",shape="box"];1504 -> 3962[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3962 -> 1541[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 3963[label="yvy207/True",fontsize=10,color="white",style="solid",shape="box"];1504 -> 3963[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3963 -> 1542[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1453[label="compare2 (yvy190,yvy191) (yvy192,yvy193) False",fontsize=16,color="black",shape="box"];1453 -> 1543[label="",style="solid", color="black", weight=3]; 52.72/30.39 1454[label="compare2 (yvy190,yvy191) (yvy192,yvy193) True",fontsize=16,color="black",shape="box"];1454 -> 1544[label="",style="solid", color="black", weight=3]; 52.72/30.39 1507 -> 1504[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1507[label="yvy401 == yvy301 && yvy402 == yvy302",fontsize=16,color="magenta"];1507 -> 1545[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1507 -> 1546[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1508[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];3964[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 3964[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3964 -> 1547[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3965[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 3965[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3965 -> 1548[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3966[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 3966[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3966 -> 1549[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3967[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 3967[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3967 -> 1550[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3968[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 3968[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3968 -> 1551[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3969[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 3969[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3969 -> 1552[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3970[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 3970[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3970 -> 1553[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3971[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 3971[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3971 -> 1554[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3972[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 3972[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3972 -> 1555[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3973[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 3973[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3973 -> 1556[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3974[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 3974[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3974 -> 1557[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3975[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 3975[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3975 -> 1558[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3976[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 3976[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3976 -> 1559[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3977[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 3977[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3977 -> 1560[label="",style="solid", color="blue", weight=3]; 52.72/30.39 1488[label="compare2 (yvy154,yvy155,yvy156) (yvy157,yvy158,yvy159) False",fontsize=16,color="black",shape="box"];1488 -> 1561[label="",style="solid", color="black", weight=3]; 52.72/30.39 1489[label="compare2 (yvy154,yvy155,yvy156) (yvy157,yvy158,yvy159) True",fontsize=16,color="black",shape="box"];1489 -> 1562[label="",style="solid", color="black", weight=3]; 52.72/30.39 1073[label="compare1 False True True",fontsize=16,color="black",shape="box"];1073 -> 1258[label="",style="solid", color="black", weight=3]; 52.72/30.39 1074[label="compare1 True False False",fontsize=16,color="black",shape="box"];1074 -> 1259[label="",style="solid", color="black", weight=3]; 52.72/30.39 1075[label="compare1 Nothing (Just yvy300) True",fontsize=16,color="black",shape="box"];1075 -> 1260[label="",style="solid", color="black", weight=3]; 52.72/30.39 1076[label="compare1 (Just yvy400) Nothing False",fontsize=16,color="black",shape="box"];1076 -> 1261[label="",style="solid", color="black", weight=3]; 52.72/30.39 1077 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1077[label="yvy400 == yvy300",fontsize=16,color="magenta"];1077 -> 1262[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1077 -> 1263[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1078 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1078[label="yvy400 == yvy300",fontsize=16,color="magenta"];1078 -> 1264[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1078 -> 1265[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1079 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1079[label="yvy400 == yvy300",fontsize=16,color="magenta"];1079 -> 1266[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1079 -> 1267[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1080 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1080[label="yvy400 == yvy300",fontsize=16,color="magenta"];1080 -> 1268[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1080 -> 1269[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1081 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1081[label="yvy400 == yvy300",fontsize=16,color="magenta"];1081 -> 1270[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1081 -> 1271[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1082 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1082[label="yvy400 == yvy300",fontsize=16,color="magenta"];1082 -> 1272[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1082 -> 1273[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1083 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1083[label="yvy400 == yvy300",fontsize=16,color="magenta"];1083 -> 1274[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1083 -> 1275[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1084 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1084[label="yvy400 == yvy300",fontsize=16,color="magenta"];1084 -> 1276[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1084 -> 1277[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1085 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1085[label="yvy400 == yvy300",fontsize=16,color="magenta"];1085 -> 1278[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1085 -> 1279[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1086 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1086[label="yvy400 == yvy300",fontsize=16,color="magenta"];1086 -> 1280[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1086 -> 1281[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1087 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1087[label="yvy400 == yvy300",fontsize=16,color="magenta"];1087 -> 1282[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1087 -> 1283[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1088 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1088[label="yvy400 == yvy300",fontsize=16,color="magenta"];1088 -> 1284[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1088 -> 1285[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1089 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1089[label="yvy400 == yvy300",fontsize=16,color="magenta"];1089 -> 1286[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1089 -> 1287[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1090 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1090[label="yvy400 == yvy300",fontsize=16,color="magenta"];1090 -> 1288[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1090 -> 1289[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1091[label="compare2 (Just yvy165) (Just yvy166) False",fontsize=16,color="black",shape="box"];1091 -> 1290[label="",style="solid", color="black", weight=3]; 52.72/30.39 1092[label="compare2 (Just yvy165) (Just yvy166) True",fontsize=16,color="black",shape="box"];1092 -> 1291[label="",style="solid", color="black", weight=3]; 52.72/30.39 1093 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1093[label="yvy400 == yvy300",fontsize=16,color="magenta"];1093 -> 1292[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1093 -> 1293[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1094 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1094[label="yvy400 == yvy300",fontsize=16,color="magenta"];1094 -> 1294[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1094 -> 1295[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1095 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1095[label="yvy400 == yvy300",fontsize=16,color="magenta"];1095 -> 1296[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1095 -> 1297[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1096 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1096[label="yvy400 == yvy300",fontsize=16,color="magenta"];1096 -> 1298[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1096 -> 1299[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1097 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1097[label="yvy400 == yvy300",fontsize=16,color="magenta"];1097 -> 1300[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1097 -> 1301[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1098 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1098[label="yvy400 == yvy300",fontsize=16,color="magenta"];1098 -> 1302[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1098 -> 1303[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1099 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1099[label="yvy400 == yvy300",fontsize=16,color="magenta"];1099 -> 1304[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1099 -> 1305[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1100 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1100[label="yvy400 == yvy300",fontsize=16,color="magenta"];1100 -> 1306[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1100 -> 1307[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1101 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1101[label="yvy400 == yvy300",fontsize=16,color="magenta"];1101 -> 1308[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1101 -> 1309[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1102 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1102[label="yvy400 == yvy300",fontsize=16,color="magenta"];1102 -> 1310[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1102 -> 1311[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1103 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1103[label="yvy400 == yvy300",fontsize=16,color="magenta"];1103 -> 1312[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1103 -> 1313[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1104 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1104[label="yvy400 == yvy300",fontsize=16,color="magenta"];1104 -> 1314[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1104 -> 1315[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1105 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1105[label="yvy400 == yvy300",fontsize=16,color="magenta"];1105 -> 1316[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1105 -> 1317[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1106 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1106[label="yvy400 == yvy300",fontsize=16,color="magenta"];1106 -> 1318[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1106 -> 1319[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1107[label="compare2 (Left yvy172) (Left yvy173) False",fontsize=16,color="black",shape="box"];1107 -> 1320[label="",style="solid", color="black", weight=3]; 52.72/30.39 1108[label="compare2 (Left yvy172) (Left yvy173) True",fontsize=16,color="black",shape="box"];1108 -> 1321[label="",style="solid", color="black", weight=3]; 52.72/30.39 1109[label="compare1 (Left yvy400) (Right yvy300) True",fontsize=16,color="black",shape="box"];1109 -> 1322[label="",style="solid", color="black", weight=3]; 52.72/30.39 1110[label="compare1 (Right yvy400) (Left yvy300) False",fontsize=16,color="black",shape="box"];1110 -> 1323[label="",style="solid", color="black", weight=3]; 52.72/30.39 1111 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1111[label="yvy400 == yvy300",fontsize=16,color="magenta"];1111 -> 1324[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1111 -> 1325[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1112 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1112[label="yvy400 == yvy300",fontsize=16,color="magenta"];1112 -> 1326[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1112 -> 1327[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1113 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1113[label="yvy400 == yvy300",fontsize=16,color="magenta"];1113 -> 1328[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1113 -> 1329[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1114 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1114[label="yvy400 == yvy300",fontsize=16,color="magenta"];1114 -> 1330[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1114 -> 1331[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1115 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1115[label="yvy400 == yvy300",fontsize=16,color="magenta"];1115 -> 1332[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1115 -> 1333[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1116 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1116[label="yvy400 == yvy300",fontsize=16,color="magenta"];1116 -> 1334[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1116 -> 1335[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1117 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1117[label="yvy400 == yvy300",fontsize=16,color="magenta"];1117 -> 1336[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1117 -> 1337[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1118 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1118[label="yvy400 == yvy300",fontsize=16,color="magenta"];1118 -> 1338[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1118 -> 1339[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1119 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1119[label="yvy400 == yvy300",fontsize=16,color="magenta"];1119 -> 1340[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1119 -> 1341[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1120 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1120[label="yvy400 == yvy300",fontsize=16,color="magenta"];1120 -> 1342[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1120 -> 1343[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1121 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1121[label="yvy400 == yvy300",fontsize=16,color="magenta"];1121 -> 1344[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1121 -> 1345[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1122 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1122[label="yvy400 == yvy300",fontsize=16,color="magenta"];1122 -> 1346[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1122 -> 1347[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1123 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1123[label="yvy400 == yvy300",fontsize=16,color="magenta"];1123 -> 1348[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1123 -> 1349[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1124 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1124[label="yvy400 == yvy300",fontsize=16,color="magenta"];1124 -> 1350[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1124 -> 1351[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1125[label="compare2 (Right yvy179) (Right yvy180) False",fontsize=16,color="black",shape="box"];1125 -> 1352[label="",style="solid", color="black", weight=3]; 52.72/30.39 1126[label="compare2 (Right yvy179) (Right yvy180) True",fontsize=16,color="black",shape="box"];1126 -> 1353[label="",style="solid", color="black", weight=3]; 52.72/30.39 1127[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];1127 -> 1354[label="",style="solid", color="black", weight=3]; 52.72/30.39 1128[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];1128 -> 1355[label="",style="solid", color="black", weight=3]; 52.72/30.39 1129[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];1129 -> 1356[label="",style="solid", color="black", weight=3]; 52.72/30.39 1130[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];1130 -> 1357[label="",style="solid", color="black", weight=3]; 52.72/30.39 1131[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];1131 -> 1358[label="",style="solid", color="black", weight=3]; 52.72/30.39 1132[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];1132 -> 1359[label="",style="solid", color="black", weight=3]; 52.72/30.39 1133 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1133[label="yvy400 * Pos yvy3010",fontsize=16,color="magenta"];1133 -> 1360[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1133 -> 1361[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1134 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1134[label="Pos yvy4010 * yvy300",fontsize=16,color="magenta"];1134 -> 1362[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1134 -> 1363[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1135 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1135[label="yvy400 * Pos yvy3010",fontsize=16,color="magenta"];1135 -> 1364[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1135 -> 1365[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1136 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1136[label="Neg yvy4010 * yvy300",fontsize=16,color="magenta"];1136 -> 1366[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1136 -> 1367[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1137 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1137[label="yvy400 * Neg yvy3010",fontsize=16,color="magenta"];1137 -> 1368[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1137 -> 1369[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1138 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1138[label="Pos yvy4010 * yvy300",fontsize=16,color="magenta"];1138 -> 1370[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1138 -> 1371[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1139 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1139[label="yvy400 * Neg yvy3010",fontsize=16,color="magenta"];1139 -> 1372[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1139 -> 1373[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1140 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1140[label="Neg yvy4010 * yvy300",fontsize=16,color="magenta"];1140 -> 1374[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1140 -> 1375[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1141[label="primMulInt (Pos yvy4000) yvy301",fontsize=16,color="burlywood",shape="box"];3978[label="yvy301/Pos yvy3010",fontsize=10,color="white",style="solid",shape="box"];1141 -> 3978[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3978 -> 1376[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 3979[label="yvy301/Neg yvy3010",fontsize=10,color="white",style="solid",shape="box"];1141 -> 3979[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3979 -> 1377[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1142[label="primMulInt (Neg yvy4000) yvy301",fontsize=16,color="burlywood",shape="box"];3980[label="yvy301/Pos yvy3010",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3980[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3980 -> 1378[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 3981[label="yvy301/Neg yvy3010",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3981[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3981 -> 1379[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1143[label="Integer yvy4000 * Integer yvy3010",fontsize=16,color="black",shape="box"];1143 -> 1380[label="",style="solid", color="black", weight=3]; 52.72/30.39 1144[label="FiniteMap.Branch yvy111 (FiniteMap.addToFM0 yvy107 yvy112) yvy108 yvy109 yvy110",fontsize=16,color="green",shape="box"];1144 -> 1381[label="",style="dashed", color="green", weight=3]; 52.72/30.39 1145[label="yvy111",fontsize=16,color="green",shape="box"];1146[label="yvy110",fontsize=16,color="green",shape="box"];1147[label="yvy112",fontsize=16,color="green",shape="box"];1148[label="primPlusNat (primPlusNat (primMulNat (Succ (Succ (Succ Zero))) (Succ yvy9300)) (Succ yvy9300)) (Succ yvy9300)",fontsize=16,color="black",shape="box"];1148 -> 1382[label="",style="solid", color="black", weight=3]; 52.72/30.39 1149[label="FiniteMap.Branch yvy118 yvy119 (FiniteMap.mkBranchUnbox (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) yvy118 (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129) (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) yvy118 (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129) + FiniteMap.mkBranchRight_size (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) yvy118 (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129))) (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129)",fontsize=16,color="green",shape="box"];1149 -> 1383[label="",style="dashed", color="green", weight=3]; 52.72/30.39 1680 -> 1386[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1680[label="FiniteMap.sizeFM yvy90",fontsize=16,color="magenta"];1680 -> 1688[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1152[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90",fontsize=16,color="black",shape="triangle"];1152 -> 1386[label="",style="solid", color="black", weight=3]; 52.72/30.39 1681[label="primPlusInt (Pos yvy9020) yvy210",fontsize=16,color="burlywood",shape="box"];3982[label="yvy210/Pos yvy2100",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3982[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3982 -> 1689[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 3983[label="yvy210/Neg yvy2100",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3983[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3983 -> 1690[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1682[label="primPlusInt (Neg yvy9020) yvy210",fontsize=16,color="burlywood",shape="box"];3984[label="yvy210/Pos yvy2100",fontsize=10,color="white",style="solid",shape="box"];1682 -> 3984[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3984 -> 1691[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 3985[label="yvy210/Neg yvy2100",fontsize=10,color="white",style="solid",shape="box"];1682 -> 3985[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 3985 -> 1692[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1153 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1153[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90",fontsize=16,color="magenta"];1153 -> 1387[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1153 -> 1388[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1154[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 False",fontsize=16,color="black",shape="box"];1154 -> 1389[label="",style="solid", color="black", weight=3]; 52.72/30.39 1155[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 True",fontsize=16,color="black",shape="box"];1155 -> 1390[label="",style="solid", color="black", weight=3]; 52.72/30.39 1156[label="FiniteMap.Branch yvy50 yvy51 (FiniteMap.mkBranchUnbox yvy90 yvy50 yvy54 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy90 yvy50 yvy54 + FiniteMap.mkBranchRight_size yvy90 yvy50 yvy54)) yvy90 yvy54",fontsize=16,color="green",shape="box"];1156 -> 1391[label="",style="dashed", color="green", weight=3]; 52.72/30.39 1157[label="yvy400",fontsize=16,color="green",shape="box"];1158[label="Pos yvy3010",fontsize=16,color="green",shape="box"];1159[label="Pos yvy4010",fontsize=16,color="green",shape="box"];1160[label="yvy300",fontsize=16,color="green",shape="box"];1161[label="yvy400",fontsize=16,color="green",shape="box"];1162[label="Pos yvy3010",fontsize=16,color="green",shape="box"];1163[label="Neg yvy4010",fontsize=16,color="green",shape="box"];1164[label="yvy300",fontsize=16,color="green",shape="box"];1165[label="yvy400",fontsize=16,color="green",shape="box"];1166[label="Neg yvy3010",fontsize=16,color="green",shape="box"];1167[label="Pos yvy4010",fontsize=16,color="green",shape="box"];1168[label="yvy300",fontsize=16,color="green",shape="box"];1169[label="yvy400",fontsize=16,color="green",shape="box"];1170[label="Neg yvy3010",fontsize=16,color="green",shape="box"];1171[label="Neg yvy4010",fontsize=16,color="green",shape="box"];1172[label="yvy300",fontsize=16,color="green",shape="box"];1173[label="yvy4000",fontsize=16,color="green",shape="box"];1174[label="yvy3000",fontsize=16,color="green",shape="box"];1175[label="yvy400",fontsize=16,color="green",shape="box"];1176[label="yvy300",fontsize=16,color="green",shape="box"];1177[label="yvy400",fontsize=16,color="green",shape="box"];1178[label="yvy300",fontsize=16,color="green",shape="box"];1179[label="yvy400",fontsize=16,color="green",shape="box"];1180[label="yvy300",fontsize=16,color="green",shape="box"];1181[label="yvy400",fontsize=16,color="green",shape="box"];1182[label="yvy300",fontsize=16,color="green",shape="box"];1183[label="yvy400",fontsize=16,color="green",shape="box"];1184[label="yvy300",fontsize=16,color="green",shape="box"];1185[label="yvy400",fontsize=16,color="green",shape="box"];1186[label="yvy300",fontsize=16,color="green",shape="box"];1187[label="yvy400",fontsize=16,color="green",shape="box"];1188[label="yvy300",fontsize=16,color="green",shape="box"];1189[label="yvy400",fontsize=16,color="green",shape="box"];1190[label="yvy300",fontsize=16,color="green",shape="box"];1191[label="yvy400",fontsize=16,color="green",shape="box"];1192[label="yvy300",fontsize=16,color="green",shape="box"];1193[label="yvy400",fontsize=16,color="green",shape="box"];1194[label="yvy300",fontsize=16,color="green",shape="box"];1195[label="yvy400",fontsize=16,color="green",shape="box"];1196[label="yvy300",fontsize=16,color="green",shape="box"];1197[label="yvy400",fontsize=16,color="green",shape="box"];1198[label="yvy300",fontsize=16,color="green",shape="box"];1199[label="yvy400",fontsize=16,color="green",shape="box"];1200[label="yvy300",fontsize=16,color="green",shape="box"];1201[label="yvy400",fontsize=16,color="green",shape="box"];1202[label="yvy300",fontsize=16,color="green",shape="box"];1203[label="LT",fontsize=16,color="green",shape="box"];1204[label="yvy133",fontsize=16,color="green",shape="box"];1205[label="GT",fontsize=16,color="green",shape="box"];1513 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1513[label="yvy401 == yvy301",fontsize=16,color="magenta"];1513 -> 1582[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1513 -> 1583[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1514 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1514[label="yvy401 == yvy301",fontsize=16,color="magenta"];1514 -> 1584[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1514 -> 1585[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1515 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1515[label="yvy401 == yvy301",fontsize=16,color="magenta"];1515 -> 1586[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1515 -> 1587[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1516 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1516[label="yvy401 == yvy301",fontsize=16,color="magenta"];1516 -> 1588[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1516 -> 1589[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1517 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1517[label="yvy401 == yvy301",fontsize=16,color="magenta"];1517 -> 1590[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1517 -> 1591[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1518 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1518[label="yvy401 == yvy301",fontsize=16,color="magenta"];1518 -> 1592[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1518 -> 1593[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1519 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1519[label="yvy401 == yvy301",fontsize=16,color="magenta"];1519 -> 1594[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1519 -> 1595[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1520 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1520[label="yvy401 == yvy301",fontsize=16,color="magenta"];1520 -> 1596[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1520 -> 1597[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1521 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1521[label="yvy401 == yvy301",fontsize=16,color="magenta"];1521 -> 1598[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1521 -> 1599[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1522 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1522[label="yvy401 == yvy301",fontsize=16,color="magenta"];1522 -> 1600[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1522 -> 1601[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1523 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1523[label="yvy401 == yvy301",fontsize=16,color="magenta"];1523 -> 1602[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1523 -> 1603[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1524 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1524[label="yvy401 == yvy301",fontsize=16,color="magenta"];1524 -> 1604[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1524 -> 1605[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1525 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1525[label="yvy401 == yvy301",fontsize=16,color="magenta"];1525 -> 1606[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1525 -> 1607[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1526 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1526[label="yvy401 == yvy301",fontsize=16,color="magenta"];1526 -> 1608[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1526 -> 1609[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1527 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1527[label="yvy400 == yvy300",fontsize=16,color="magenta"];1528 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1528[label="yvy400 == yvy300",fontsize=16,color="magenta"];1529 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1529[label="yvy400 == yvy300",fontsize=16,color="magenta"];1530 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1530[label="yvy400 == yvy300",fontsize=16,color="magenta"];1531 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1531[label="yvy400 == yvy300",fontsize=16,color="magenta"];1532 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1532[label="yvy400 == yvy300",fontsize=16,color="magenta"];1533 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1533[label="yvy400 == yvy300",fontsize=16,color="magenta"];1534 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1534[label="yvy400 == yvy300",fontsize=16,color="magenta"];1535 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1535[label="yvy400 == yvy300",fontsize=16,color="magenta"];1536 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1536[label="yvy400 == yvy300",fontsize=16,color="magenta"];1537 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1537[label="yvy400 == yvy300",fontsize=16,color="magenta"];1538 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1538[label="yvy400 == yvy300",fontsize=16,color="magenta"];1539 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1539[label="yvy400 == yvy300",fontsize=16,color="magenta"];1540 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1540[label="yvy400 == yvy300",fontsize=16,color="magenta"];1541[label="False && yvy208",fontsize=16,color="black",shape="box"];1541 -> 1610[label="",style="solid", color="black", weight=3]; 52.72/30.39 1542[label="True && yvy208",fontsize=16,color="black",shape="box"];1542 -> 1611[label="",style="solid", color="black", weight=3]; 52.72/30.39 1543[label="compare1 (yvy190,yvy191) (yvy192,yvy193) ((yvy190,yvy191) <= (yvy192,yvy193))",fontsize=16,color="black",shape="box"];1543 -> 1612[label="",style="solid", color="black", weight=3]; 52.72/30.39 1544[label="EQ",fontsize=16,color="green",shape="box"];1545[label="yvy402 == yvy302",fontsize=16,color="blue",shape="box"];3986[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 3986[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3986 -> 1613[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3987[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 3987[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3987 -> 1614[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3988[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 3988[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3988 -> 1615[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3989[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 3989[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3989 -> 1616[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3990[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 3990[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3990 -> 1617[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3991[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 3991[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3991 -> 1618[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3992[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 3992[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3992 -> 1619[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3993[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 3993[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3993 -> 1620[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3994[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 3994[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3994 -> 1621[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3995[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 3995[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3995 -> 1622[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3996[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 3996[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3996 -> 1623[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3997[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 3997[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3997 -> 1624[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3998[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 3998[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3998 -> 1625[label="",style="solid", color="blue", weight=3]; 52.72/30.39 3999[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1545 -> 3999[label="",style="solid", color="blue", weight=9]; 52.72/30.39 3999 -> 1626[label="",style="solid", color="blue", weight=3]; 52.72/30.39 1546[label="yvy401 == yvy301",fontsize=16,color="blue",shape="box"];4000[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4000[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4000 -> 1627[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4001[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4001[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4001 -> 1628[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4002[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4002[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4002 -> 1629[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4003[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4003[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4003 -> 1630[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4004[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4004[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4004 -> 1631[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4005[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4005[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4005 -> 1632[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4006[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4006[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4006 -> 1633[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4007[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4007[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4007 -> 1634[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4008[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4008[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4008 -> 1635[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4009[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4009[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4009 -> 1636[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4010[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4010[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4010 -> 1637[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4011[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4011[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4011 -> 1638[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4012[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4012[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4012 -> 1639[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4013[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1546 -> 4013[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4013 -> 1640[label="",style="solid", color="blue", weight=3]; 52.72/30.39 1547 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1547[label="yvy400 == yvy300",fontsize=16,color="magenta"];1547 -> 1641[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1547 -> 1642[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1548 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1548[label="yvy400 == yvy300",fontsize=16,color="magenta"];1548 -> 1643[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1548 -> 1644[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1549 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1549[label="yvy400 == yvy300",fontsize=16,color="magenta"];1549 -> 1645[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1549 -> 1646[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1550 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1550[label="yvy400 == yvy300",fontsize=16,color="magenta"];1550 -> 1647[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1550 -> 1648[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1551 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1551[label="yvy400 == yvy300",fontsize=16,color="magenta"];1551 -> 1649[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1551 -> 1650[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1552 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1552[label="yvy400 == yvy300",fontsize=16,color="magenta"];1552 -> 1651[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1552 -> 1652[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1553 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1553[label="yvy400 == yvy300",fontsize=16,color="magenta"];1553 -> 1653[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1553 -> 1654[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1554 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1554[label="yvy400 == yvy300",fontsize=16,color="magenta"];1554 -> 1655[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1554 -> 1656[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1555 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1555[label="yvy400 == yvy300",fontsize=16,color="magenta"];1555 -> 1657[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1555 -> 1658[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1556 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1556[label="yvy400 == yvy300",fontsize=16,color="magenta"];1556 -> 1659[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1556 -> 1660[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1557 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1557[label="yvy400 == yvy300",fontsize=16,color="magenta"];1557 -> 1661[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1557 -> 1662[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1558 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1558[label="yvy400 == yvy300",fontsize=16,color="magenta"];1558 -> 1663[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1558 -> 1664[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1559 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1559[label="yvy400 == yvy300",fontsize=16,color="magenta"];1559 -> 1665[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1559 -> 1666[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1560 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1560[label="yvy400 == yvy300",fontsize=16,color="magenta"];1560 -> 1667[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1560 -> 1668[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1561[label="compare1 (yvy154,yvy155,yvy156) (yvy157,yvy158,yvy159) ((yvy154,yvy155,yvy156) <= (yvy157,yvy158,yvy159))",fontsize=16,color="black",shape="box"];1561 -> 1669[label="",style="solid", color="black", weight=3]; 52.72/30.39 1562[label="EQ",fontsize=16,color="green",shape="box"];1258[label="LT",fontsize=16,color="green",shape="box"];1259[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];1259 -> 1563[label="",style="solid", color="black", weight=3]; 52.72/30.39 1260[label="LT",fontsize=16,color="green",shape="box"];1261[label="compare0 (Just yvy400) Nothing otherwise",fontsize=16,color="black",shape="box"];1261 -> 1564[label="",style="solid", color="black", weight=3]; 52.72/30.39 1262[label="yvy300",fontsize=16,color="green",shape="box"];1263[label="yvy400",fontsize=16,color="green",shape="box"];1041[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4014[label="yvy400/(yvy4000,yvy4001,yvy4002)",fontsize=10,color="white",style="solid",shape="box"];1041 -> 4014[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4014 -> 1206[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1264[label="yvy300",fontsize=16,color="green",shape="box"];1265[label="yvy400",fontsize=16,color="green",shape="box"];1042[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4015[label="yvy400/Integer yvy4000",fontsize=10,color="white",style="solid",shape="box"];1042 -> 4015[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4015 -> 1207[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1266[label="yvy300",fontsize=16,color="green",shape="box"];1267[label="yvy400",fontsize=16,color="green",shape="box"];1043[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4016[label="yvy400/False",fontsize=10,color="white",style="solid",shape="box"];1043 -> 4016[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4016 -> 1208[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4017[label="yvy400/True",fontsize=10,color="white",style="solid",shape="box"];1043 -> 4017[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4017 -> 1209[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1268[label="yvy300",fontsize=16,color="green",shape="box"];1269[label="yvy400",fontsize=16,color="green",shape="box"];1044[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4018[label="yvy400/Nothing",fontsize=10,color="white",style="solid",shape="box"];1044 -> 4018[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4018 -> 1210[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4019[label="yvy400/Just yvy4000",fontsize=10,color="white",style="solid",shape="box"];1044 -> 4019[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4019 -> 1211[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1270[label="yvy300",fontsize=16,color="green",shape="box"];1271[label="yvy400",fontsize=16,color="green",shape="box"];1045[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4020[label="yvy400/LT",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4020[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4020 -> 1212[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4021[label="yvy400/EQ",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4021[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4021 -> 1213[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4022[label="yvy400/GT",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4022[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4022 -> 1214[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1272[label="yvy300",fontsize=16,color="green",shape="box"];1273[label="yvy400",fontsize=16,color="green",shape="box"];1046[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];1046 -> 1215[label="",style="solid", color="black", weight=3]; 52.72/30.39 1274[label="yvy300",fontsize=16,color="green",shape="box"];1275[label="yvy400",fontsize=16,color="green",shape="box"];1047[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4023[label="yvy400/(yvy4000,yvy4001)",fontsize=10,color="white",style="solid",shape="box"];1047 -> 4023[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4023 -> 1216[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1276[label="yvy300",fontsize=16,color="green",shape="box"];1277[label="yvy400",fontsize=16,color="green",shape="box"];1048[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4024[label="yvy400/()",fontsize=10,color="white",style="solid",shape="box"];1048 -> 4024[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4024 -> 1217[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1278[label="yvy300",fontsize=16,color="green",shape="box"];1279[label="yvy400",fontsize=16,color="green",shape="box"];1049[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4025[label="yvy400/yvy4000 :% yvy4001",fontsize=10,color="white",style="solid",shape="box"];1049 -> 4025[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4025 -> 1218[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1280[label="yvy300",fontsize=16,color="green",shape="box"];1281[label="yvy400",fontsize=16,color="green",shape="box"];1050[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4026[label="yvy400/Left yvy4000",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4026[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4026 -> 1219[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4027[label="yvy400/Right yvy4000",fontsize=10,color="white",style="solid",shape="box"];1050 -> 4027[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4027 -> 1220[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1282[label="yvy300",fontsize=16,color="green",shape="box"];1283[label="yvy400",fontsize=16,color="green",shape="box"];1051[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];1051 -> 1221[label="",style="solid", color="black", weight=3]; 52.72/30.39 1284[label="yvy300",fontsize=16,color="green",shape="box"];1285[label="yvy400",fontsize=16,color="green",shape="box"];1052[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];1052 -> 1222[label="",style="solid", color="black", weight=3]; 52.72/30.39 1286[label="yvy300",fontsize=16,color="green",shape="box"];1287[label="yvy400",fontsize=16,color="green",shape="box"];1053[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4028[label="yvy400/yvy4000 : yvy4001",fontsize=10,color="white",style="solid",shape="box"];1053 -> 4028[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4028 -> 1223[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4029[label="yvy400/[]",fontsize=10,color="white",style="solid",shape="box"];1053 -> 4029[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4029 -> 1224[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1288[label="yvy300",fontsize=16,color="green",shape="box"];1289[label="yvy400",fontsize=16,color="green",shape="box"];1054[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];1054 -> 1225[label="",style="solid", color="black", weight=3]; 52.72/30.39 1290 -> 1762[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1290[label="compare1 (Just yvy165) (Just yvy166) (Just yvy165 <= Just yvy166)",fontsize=16,color="magenta"];1290 -> 1763[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1290 -> 1764[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1290 -> 1765[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1291[label="EQ",fontsize=16,color="green",shape="box"];1292[label="yvy300",fontsize=16,color="green",shape="box"];1293[label="yvy400",fontsize=16,color="green",shape="box"];1294[label="yvy300",fontsize=16,color="green",shape="box"];1295[label="yvy400",fontsize=16,color="green",shape="box"];1296[label="yvy300",fontsize=16,color="green",shape="box"];1297[label="yvy400",fontsize=16,color="green",shape="box"];1298[label="yvy300",fontsize=16,color="green",shape="box"];1299[label="yvy400",fontsize=16,color="green",shape="box"];1300[label="yvy300",fontsize=16,color="green",shape="box"];1301[label="yvy400",fontsize=16,color="green",shape="box"];1302[label="yvy300",fontsize=16,color="green",shape="box"];1303[label="yvy400",fontsize=16,color="green",shape="box"];1304[label="yvy300",fontsize=16,color="green",shape="box"];1305[label="yvy400",fontsize=16,color="green",shape="box"];1306[label="yvy300",fontsize=16,color="green",shape="box"];1307[label="yvy400",fontsize=16,color="green",shape="box"];1308[label="yvy300",fontsize=16,color="green",shape="box"];1309[label="yvy400",fontsize=16,color="green",shape="box"];1310[label="yvy300",fontsize=16,color="green",shape="box"];1311[label="yvy400",fontsize=16,color="green",shape="box"];1312[label="yvy300",fontsize=16,color="green",shape="box"];1313[label="yvy400",fontsize=16,color="green",shape="box"];1314[label="yvy300",fontsize=16,color="green",shape="box"];1315[label="yvy400",fontsize=16,color="green",shape="box"];1316[label="yvy300",fontsize=16,color="green",shape="box"];1317[label="yvy400",fontsize=16,color="green",shape="box"];1318[label="yvy300",fontsize=16,color="green",shape="box"];1319[label="yvy400",fontsize=16,color="green",shape="box"];1320 -> 1772[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1320[label="compare1 (Left yvy172) (Left yvy173) (Left yvy172 <= Left yvy173)",fontsize=16,color="magenta"];1320 -> 1773[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1320 -> 1774[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1320 -> 1775[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1321[label="EQ",fontsize=16,color="green",shape="box"];1322[label="LT",fontsize=16,color="green",shape="box"];1323[label="compare0 (Right yvy400) (Left yvy300) otherwise",fontsize=16,color="black",shape="box"];1323 -> 1567[label="",style="solid", color="black", weight=3]; 52.72/30.39 1324[label="yvy300",fontsize=16,color="green",shape="box"];1325[label="yvy400",fontsize=16,color="green",shape="box"];1326[label="yvy300",fontsize=16,color="green",shape="box"];1327[label="yvy400",fontsize=16,color="green",shape="box"];1328[label="yvy300",fontsize=16,color="green",shape="box"];1329[label="yvy400",fontsize=16,color="green",shape="box"];1330[label="yvy300",fontsize=16,color="green",shape="box"];1331[label="yvy400",fontsize=16,color="green",shape="box"];1332[label="yvy300",fontsize=16,color="green",shape="box"];1333[label="yvy400",fontsize=16,color="green",shape="box"];1334[label="yvy300",fontsize=16,color="green",shape="box"];1335[label="yvy400",fontsize=16,color="green",shape="box"];1336[label="yvy300",fontsize=16,color="green",shape="box"];1337[label="yvy400",fontsize=16,color="green",shape="box"];1338[label="yvy300",fontsize=16,color="green",shape="box"];1339[label="yvy400",fontsize=16,color="green",shape="box"];1340[label="yvy300",fontsize=16,color="green",shape="box"];1341[label="yvy400",fontsize=16,color="green",shape="box"];1342[label="yvy300",fontsize=16,color="green",shape="box"];1343[label="yvy400",fontsize=16,color="green",shape="box"];1344[label="yvy300",fontsize=16,color="green",shape="box"];1345[label="yvy400",fontsize=16,color="green",shape="box"];1346[label="yvy300",fontsize=16,color="green",shape="box"];1347[label="yvy400",fontsize=16,color="green",shape="box"];1348[label="yvy300",fontsize=16,color="green",shape="box"];1349[label="yvy400",fontsize=16,color="green",shape="box"];1350[label="yvy300",fontsize=16,color="green",shape="box"];1351[label="yvy400",fontsize=16,color="green",shape="box"];1352 -> 1783[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1352[label="compare1 (Right yvy179) (Right yvy180) (Right yvy179 <= Right yvy180)",fontsize=16,color="magenta"];1352 -> 1784[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1352 -> 1785[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1352 -> 1786[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1353[label="EQ",fontsize=16,color="green",shape="box"];1354[label="LT",fontsize=16,color="green",shape="box"];1355[label="LT",fontsize=16,color="green",shape="box"];1356[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];1356 -> 1569[label="",style="solid", color="black", weight=3]; 52.72/30.39 1357[label="LT",fontsize=16,color="green",shape="box"];1358[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];1358 -> 1570[label="",style="solid", color="black", weight=3]; 52.72/30.39 1359[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];1359 -> 1571[label="",style="solid", color="black", weight=3]; 52.72/30.39 1360[label="yvy400",fontsize=16,color="green",shape="box"];1361[label="Pos yvy3010",fontsize=16,color="green",shape="box"];1362[label="Pos yvy4010",fontsize=16,color="green",shape="box"];1363[label="yvy300",fontsize=16,color="green",shape="box"];1364[label="yvy400",fontsize=16,color="green",shape="box"];1365[label="Pos yvy3010",fontsize=16,color="green",shape="box"];1366[label="Neg yvy4010",fontsize=16,color="green",shape="box"];1367[label="yvy300",fontsize=16,color="green",shape="box"];1368[label="yvy400",fontsize=16,color="green",shape="box"];1369[label="Neg yvy3010",fontsize=16,color="green",shape="box"];1370[label="Pos yvy4010",fontsize=16,color="green",shape="box"];1371[label="yvy300",fontsize=16,color="green",shape="box"];1372[label="yvy400",fontsize=16,color="green",shape="box"];1373[label="Neg yvy3010",fontsize=16,color="green",shape="box"];1374[label="Neg yvy4010",fontsize=16,color="green",shape="box"];1375[label="yvy300",fontsize=16,color="green",shape="box"];1376[label="primMulInt (Pos yvy4000) (Pos yvy3010)",fontsize=16,color="black",shape="box"];1376 -> 1572[label="",style="solid", color="black", weight=3]; 52.72/30.39 1377[label="primMulInt (Pos yvy4000) (Neg yvy3010)",fontsize=16,color="black",shape="box"];1377 -> 1573[label="",style="solid", color="black", weight=3]; 52.72/30.39 1378[label="primMulInt (Neg yvy4000) (Pos yvy3010)",fontsize=16,color="black",shape="box"];1378 -> 1574[label="",style="solid", color="black", weight=3]; 52.72/30.39 1379[label="primMulInt (Neg yvy4000) (Neg yvy3010)",fontsize=16,color="black",shape="box"];1379 -> 1575[label="",style="solid", color="black", weight=3]; 52.72/30.39 1380[label="Integer (primMulInt yvy4000 yvy3010)",fontsize=16,color="green",shape="box"];1380 -> 1576[label="",style="dashed", color="green", weight=3]; 52.72/30.39 1381[label="FiniteMap.addToFM0 yvy107 yvy112",fontsize=16,color="black",shape="box"];1381 -> 1577[label="",style="solid", color="black", weight=3]; 52.72/30.39 1382[label="primPlusNat (primPlusNat (primPlusNat (primMulNat (Succ (Succ Zero)) (Succ yvy9300)) (Succ yvy9300)) (Succ yvy9300)) (Succ yvy9300)",fontsize=16,color="black",shape="box"];1382 -> 1578[label="",style="solid", color="black", weight=3]; 52.72/30.39 1383[label="FiniteMap.mkBranchUnbox (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) yvy118 (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129) (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) yvy118 (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129) + FiniteMap.mkBranchRight_size (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) yvy118 (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129))",fontsize=16,color="black",shape="box"];1383 -> 1579[label="",style="solid", color="black", weight=3]; 52.72/30.39 1688[label="yvy90",fontsize=16,color="green",shape="box"];1386[label="FiniteMap.sizeFM yvy54",fontsize=16,color="burlywood",shape="triangle"];4030[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1386 -> 4030[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4030 -> 1683[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4031[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];1386 -> 4031[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4031 -> 1684[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1689[label="primPlusInt (Pos yvy9020) (Pos yvy2100)",fontsize=16,color="black",shape="box"];1689 -> 1698[label="",style="solid", color="black", weight=3]; 52.72/30.39 1690[label="primPlusInt (Pos yvy9020) (Neg yvy2100)",fontsize=16,color="black",shape="box"];1690 -> 1699[label="",style="solid", color="black", weight=3]; 52.72/30.39 1691[label="primPlusInt (Neg yvy9020) (Pos yvy2100)",fontsize=16,color="black",shape="box"];1691 -> 1700[label="",style="solid", color="black", weight=3]; 52.72/30.39 1692[label="primPlusInt (Neg yvy9020) (Neg yvy2100)",fontsize=16,color="black",shape="box"];1692 -> 1701[label="",style="solid", color="black", weight=3]; 52.72/30.39 1387[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1387 -> 1685[label="",style="solid", color="black", weight=3]; 52.72/30.39 1388 -> 1671[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1388[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90",fontsize=16,color="magenta"];1389 -> 1686[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1389[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 (FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90)",fontsize=16,color="magenta"];1389 -> 1687[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1390[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 yvy54 yvy90 yvy90 yvy54 yvy54",fontsize=16,color="burlywood",shape="box"];4032[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1390 -> 4032[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4032 -> 1693[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4033[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];1390 -> 4033[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4033 -> 1694[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1391[label="FiniteMap.mkBranchUnbox yvy90 yvy50 yvy54 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy90 yvy50 yvy54 + FiniteMap.mkBranchRight_size yvy90 yvy50 yvy54)",fontsize=16,color="black",shape="box"];1391 -> 1695[label="",style="solid", color="black", weight=3]; 52.72/30.39 1582[label="yvy301",fontsize=16,color="green",shape="box"];1583[label="yvy401",fontsize=16,color="green",shape="box"];1584[label="yvy301",fontsize=16,color="green",shape="box"];1585[label="yvy401",fontsize=16,color="green",shape="box"];1586[label="yvy301",fontsize=16,color="green",shape="box"];1587[label="yvy401",fontsize=16,color="green",shape="box"];1588[label="yvy301",fontsize=16,color="green",shape="box"];1589[label="yvy401",fontsize=16,color="green",shape="box"];1590[label="yvy301",fontsize=16,color="green",shape="box"];1591[label="yvy401",fontsize=16,color="green",shape="box"];1592[label="yvy301",fontsize=16,color="green",shape="box"];1593[label="yvy401",fontsize=16,color="green",shape="box"];1594[label="yvy301",fontsize=16,color="green",shape="box"];1595[label="yvy401",fontsize=16,color="green",shape="box"];1596[label="yvy301",fontsize=16,color="green",shape="box"];1597[label="yvy401",fontsize=16,color="green",shape="box"];1598[label="yvy301",fontsize=16,color="green",shape="box"];1599[label="yvy401",fontsize=16,color="green",shape="box"];1600[label="yvy301",fontsize=16,color="green",shape="box"];1601[label="yvy401",fontsize=16,color="green",shape="box"];1602[label="yvy301",fontsize=16,color="green",shape="box"];1603[label="yvy401",fontsize=16,color="green",shape="box"];1604[label="yvy301",fontsize=16,color="green",shape="box"];1605[label="yvy401",fontsize=16,color="green",shape="box"];1606[label="yvy301",fontsize=16,color="green",shape="box"];1607[label="yvy401",fontsize=16,color="green",shape="box"];1608[label="yvy301",fontsize=16,color="green",shape="box"];1609[label="yvy401",fontsize=16,color="green",shape="box"];1610[label="False",fontsize=16,color="green",shape="box"];1611[label="yvy208",fontsize=16,color="green",shape="box"];1612 -> 1821[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1612[label="compare1 (yvy190,yvy191) (yvy192,yvy193) (yvy190 < yvy192 || yvy190 == yvy192 && yvy191 <= yvy193)",fontsize=16,color="magenta"];1612 -> 1822[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1612 -> 1823[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1612 -> 1824[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1612 -> 1825[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1612 -> 1826[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1612 -> 1827[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1613 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1613[label="yvy402 == yvy302",fontsize=16,color="magenta"];1613 -> 1702[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1613 -> 1703[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1614 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1614[label="yvy402 == yvy302",fontsize=16,color="magenta"];1614 -> 1704[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1614 -> 1705[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1615 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1615[label="yvy402 == yvy302",fontsize=16,color="magenta"];1615 -> 1706[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1615 -> 1707[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1616 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1616[label="yvy402 == yvy302",fontsize=16,color="magenta"];1616 -> 1708[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1616 -> 1709[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1617 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1617[label="yvy402 == yvy302",fontsize=16,color="magenta"];1617 -> 1710[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1617 -> 1711[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1618 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1618[label="yvy402 == yvy302",fontsize=16,color="magenta"];1618 -> 1712[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1618 -> 1713[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1619 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1619[label="yvy402 == yvy302",fontsize=16,color="magenta"];1619 -> 1714[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1619 -> 1715[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1620 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1620[label="yvy402 == yvy302",fontsize=16,color="magenta"];1620 -> 1716[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1620 -> 1717[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1621 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1621[label="yvy402 == yvy302",fontsize=16,color="magenta"];1621 -> 1718[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1621 -> 1719[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1622 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1622[label="yvy402 == yvy302",fontsize=16,color="magenta"];1622 -> 1720[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1622 -> 1721[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1623 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1623[label="yvy402 == yvy302",fontsize=16,color="magenta"];1623 -> 1722[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1623 -> 1723[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1624 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1624[label="yvy402 == yvy302",fontsize=16,color="magenta"];1624 -> 1724[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1624 -> 1725[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1625 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1625[label="yvy402 == yvy302",fontsize=16,color="magenta"];1625 -> 1726[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1625 -> 1727[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1626 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1626[label="yvy402 == yvy302",fontsize=16,color="magenta"];1626 -> 1728[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1626 -> 1729[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1627 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1627[label="yvy401 == yvy301",fontsize=16,color="magenta"];1627 -> 1730[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1627 -> 1731[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1628 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1628[label="yvy401 == yvy301",fontsize=16,color="magenta"];1628 -> 1732[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1628 -> 1733[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1629 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1629[label="yvy401 == yvy301",fontsize=16,color="magenta"];1629 -> 1734[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1629 -> 1735[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1630 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1630[label="yvy401 == yvy301",fontsize=16,color="magenta"];1630 -> 1736[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1630 -> 1737[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1631 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1631[label="yvy401 == yvy301",fontsize=16,color="magenta"];1631 -> 1738[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1631 -> 1739[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1632 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1632[label="yvy401 == yvy301",fontsize=16,color="magenta"];1632 -> 1740[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1632 -> 1741[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1633 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1633[label="yvy401 == yvy301",fontsize=16,color="magenta"];1633 -> 1742[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1633 -> 1743[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1634 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1634[label="yvy401 == yvy301",fontsize=16,color="magenta"];1634 -> 1744[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1634 -> 1745[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1635 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1635[label="yvy401 == yvy301",fontsize=16,color="magenta"];1635 -> 1746[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1635 -> 1747[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1636 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1636[label="yvy401 == yvy301",fontsize=16,color="magenta"];1636 -> 1748[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1636 -> 1749[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1637 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1637[label="yvy401 == yvy301",fontsize=16,color="magenta"];1637 -> 1750[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1637 -> 1751[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1638 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1638[label="yvy401 == yvy301",fontsize=16,color="magenta"];1638 -> 1752[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1638 -> 1753[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1639 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1639[label="yvy401 == yvy301",fontsize=16,color="magenta"];1639 -> 1754[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1639 -> 1755[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1640 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1640[label="yvy401 == yvy301",fontsize=16,color="magenta"];1640 -> 1756[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1640 -> 1757[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1641[label="yvy300",fontsize=16,color="green",shape="box"];1642[label="yvy400",fontsize=16,color="green",shape="box"];1643[label="yvy300",fontsize=16,color="green",shape="box"];1644[label="yvy400",fontsize=16,color="green",shape="box"];1645[label="yvy300",fontsize=16,color="green",shape="box"];1646[label="yvy400",fontsize=16,color="green",shape="box"];1647[label="yvy300",fontsize=16,color="green",shape="box"];1648[label="yvy400",fontsize=16,color="green",shape="box"];1649[label="yvy300",fontsize=16,color="green",shape="box"];1650[label="yvy400",fontsize=16,color="green",shape="box"];1651[label="yvy300",fontsize=16,color="green",shape="box"];1652[label="yvy400",fontsize=16,color="green",shape="box"];1653[label="yvy300",fontsize=16,color="green",shape="box"];1654[label="yvy400",fontsize=16,color="green",shape="box"];1655[label="yvy300",fontsize=16,color="green",shape="box"];1656[label="yvy400",fontsize=16,color="green",shape="box"];1657[label="yvy300",fontsize=16,color="green",shape="box"];1658[label="yvy400",fontsize=16,color="green",shape="box"];1659[label="yvy300",fontsize=16,color="green",shape="box"];1660[label="yvy400",fontsize=16,color="green",shape="box"];1661[label="yvy300",fontsize=16,color="green",shape="box"];1662[label="yvy400",fontsize=16,color="green",shape="box"];1663[label="yvy300",fontsize=16,color="green",shape="box"];1664[label="yvy400",fontsize=16,color="green",shape="box"];1665[label="yvy300",fontsize=16,color="green",shape="box"];1666[label="yvy400",fontsize=16,color="green",shape="box"];1667[label="yvy300",fontsize=16,color="green",shape="box"];1668[label="yvy400",fontsize=16,color="green",shape="box"];1669 -> 1854[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1669[label="compare1 (yvy154,yvy155,yvy156) (yvy157,yvy158,yvy159) (yvy154 < yvy157 || yvy154 == yvy157 && (yvy155 < yvy158 || yvy155 == yvy158 && yvy156 <= yvy159))",fontsize=16,color="magenta"];1669 -> 1855[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1669 -> 1856[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1669 -> 1857[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1669 -> 1858[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1669 -> 1859[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1669 -> 1860[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1669 -> 1861[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1669 -> 1862[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1563[label="compare0 True False True",fontsize=16,color="black",shape="box"];1563 -> 1760[label="",style="solid", color="black", weight=3]; 52.72/30.39 1564[label="compare0 (Just yvy400) Nothing True",fontsize=16,color="black",shape="box"];1564 -> 1761[label="",style="solid", color="black", weight=3]; 52.72/30.39 1206[label="(yvy4000,yvy4001,yvy4002) == yvy300",fontsize=16,color="burlywood",shape="box"];4034[label="yvy300/(yvy3000,yvy3001,yvy3002)",fontsize=10,color="white",style="solid",shape="box"];1206 -> 4034[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4034 -> 1392[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1207[label="Integer yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4035[label="yvy300/Integer yvy3000",fontsize=10,color="white",style="solid",shape="box"];1207 -> 4035[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4035 -> 1393[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1208[label="False == yvy300",fontsize=16,color="burlywood",shape="box"];4036[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];1208 -> 4036[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4036 -> 1394[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4037[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];1208 -> 4037[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4037 -> 1395[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1209[label="True == yvy300",fontsize=16,color="burlywood",shape="box"];4038[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];1209 -> 4038[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4038 -> 1396[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4039[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];1209 -> 4039[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4039 -> 1397[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1210[label="Nothing == yvy300",fontsize=16,color="burlywood",shape="box"];4040[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];1210 -> 4040[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4040 -> 1398[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4041[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];1210 -> 4041[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4041 -> 1399[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1211[label="Just yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4042[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];1211 -> 4042[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4042 -> 1400[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4043[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];1211 -> 4043[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4043 -> 1401[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1212[label="LT == yvy300",fontsize=16,color="burlywood",shape="box"];4044[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];1212 -> 4044[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4044 -> 1402[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4045[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];1212 -> 4045[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4045 -> 1403[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4046[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];1212 -> 4046[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4046 -> 1404[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1213[label="EQ == yvy300",fontsize=16,color="burlywood",shape="box"];4047[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];1213 -> 4047[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4047 -> 1405[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4048[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];1213 -> 4048[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4048 -> 1406[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4049[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];1213 -> 4049[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4049 -> 1407[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1214[label="GT == yvy300",fontsize=16,color="burlywood",shape="box"];4050[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4050[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4050 -> 1408[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4051[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4051[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4051 -> 1409[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4052[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];1214 -> 4052[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4052 -> 1410[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1215[label="primEqFloat yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4053[label="yvy400/Float yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];1215 -> 4053[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4053 -> 1411[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1216[label="(yvy4000,yvy4001) == yvy300",fontsize=16,color="burlywood",shape="box"];4054[label="yvy300/(yvy3000,yvy3001)",fontsize=10,color="white",style="solid",shape="box"];1216 -> 4054[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4054 -> 1412[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1217[label="() == yvy300",fontsize=16,color="burlywood",shape="box"];4055[label="yvy300/()",fontsize=10,color="white",style="solid",shape="box"];1217 -> 4055[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4055 -> 1413[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1218[label="yvy4000 :% yvy4001 == yvy300",fontsize=16,color="burlywood",shape="box"];4056[label="yvy300/yvy3000 :% yvy3001",fontsize=10,color="white",style="solid",shape="box"];1218 -> 4056[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4056 -> 1414[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1219[label="Left yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4057[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];1219 -> 4057[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4057 -> 1415[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4058[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];1219 -> 4058[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4058 -> 1416[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1220[label="Right yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4059[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];1220 -> 4059[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4059 -> 1417[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4060[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];1220 -> 4060[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4060 -> 1418[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1221[label="primEqInt yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];4061[label="yvy400/Pos yvy4000",fontsize=10,color="white",style="solid",shape="box"];1221 -> 4061[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4061 -> 1419[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4062[label="yvy400/Neg yvy4000",fontsize=10,color="white",style="solid",shape="box"];1221 -> 4062[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4062 -> 1420[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1222[label="primEqChar yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4063[label="yvy400/Char yvy4000",fontsize=10,color="white",style="solid",shape="box"];1222 -> 4063[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4063 -> 1421[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1223[label="yvy4000 : yvy4001 == yvy300",fontsize=16,color="burlywood",shape="box"];4064[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];1223 -> 4064[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4064 -> 1422[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4065[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];1223 -> 4065[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4065 -> 1423[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1224[label="[] == yvy300",fontsize=16,color="burlywood",shape="box"];4066[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];1224 -> 4066[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4066 -> 1424[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4067[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];1224 -> 4067[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4067 -> 1425[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1225[label="primEqDouble yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4068[label="yvy400/Double yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];1225 -> 4068[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4068 -> 1426[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1763[label="Just yvy165 <= Just yvy166",fontsize=16,color="black",shape="box"];1763 -> 1769[label="",style="solid", color="black", weight=3]; 52.72/30.39 1764[label="yvy165",fontsize=16,color="green",shape="box"];1765[label="yvy166",fontsize=16,color="green",shape="box"];1762[label="compare1 (Just yvy223) (Just yvy224) yvy225",fontsize=16,color="burlywood",shape="triangle"];4069[label="yvy225/False",fontsize=10,color="white",style="solid",shape="box"];1762 -> 4069[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4069 -> 1770[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4070[label="yvy225/True",fontsize=10,color="white",style="solid",shape="box"];1762 -> 4070[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4070 -> 1771[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1773[label="Left yvy172 <= Left yvy173",fontsize=16,color="black",shape="box"];1773 -> 1779[label="",style="solid", color="black", weight=3]; 52.72/30.39 1774[label="yvy173",fontsize=16,color="green",shape="box"];1775[label="yvy172",fontsize=16,color="green",shape="box"];1772[label="compare1 (Left yvy230) (Left yvy231) yvy232",fontsize=16,color="burlywood",shape="triangle"];4071[label="yvy232/False",fontsize=10,color="white",style="solid",shape="box"];1772 -> 4071[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4071 -> 1780[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4072[label="yvy232/True",fontsize=10,color="white",style="solid",shape="box"];1772 -> 4072[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4072 -> 1781[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1567[label="compare0 (Right yvy400) (Left yvy300) True",fontsize=16,color="black",shape="box"];1567 -> 1782[label="",style="solid", color="black", weight=3]; 52.72/30.39 1784[label="yvy179",fontsize=16,color="green",shape="box"];1785[label="Right yvy179 <= Right yvy180",fontsize=16,color="black",shape="box"];1785 -> 1790[label="",style="solid", color="black", weight=3]; 52.72/30.39 1786[label="yvy180",fontsize=16,color="green",shape="box"];1783[label="compare1 (Right yvy237) (Right yvy238) yvy239",fontsize=16,color="burlywood",shape="triangle"];4073[label="yvy239/False",fontsize=10,color="white",style="solid",shape="box"];1783 -> 4073[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4073 -> 1791[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4074[label="yvy239/True",fontsize=10,color="white",style="solid",shape="box"];1783 -> 4074[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4074 -> 1792[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1569[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];1569 -> 1793[label="",style="solid", color="black", weight=3]; 52.72/30.39 1570[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];1570 -> 1794[label="",style="solid", color="black", weight=3]; 52.72/30.39 1571[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];1571 -> 1795[label="",style="solid", color="black", weight=3]; 52.72/30.39 1572[label="Pos (primMulNat yvy4000 yvy3010)",fontsize=16,color="green",shape="box"];1572 -> 1796[label="",style="dashed", color="green", weight=3]; 52.72/30.39 1573[label="Neg (primMulNat yvy4000 yvy3010)",fontsize=16,color="green",shape="box"];1573 -> 1797[label="",style="dashed", color="green", weight=3]; 52.72/30.39 1574[label="Neg (primMulNat yvy4000 yvy3010)",fontsize=16,color="green",shape="box"];1574 -> 1798[label="",style="dashed", color="green", weight=3]; 52.72/30.39 1575[label="Pos (primMulNat yvy4000 yvy3010)",fontsize=16,color="green",shape="box"];1575 -> 1799[label="",style="dashed", color="green", weight=3]; 52.72/30.39 1576 -> 990[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1576[label="primMulInt yvy4000 yvy3010",fontsize=16,color="magenta"];1576 -> 1800[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1576 -> 1801[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1577[label="yvy112",fontsize=16,color="green",shape="box"];1578[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (primMulNat (Succ Zero) (Succ yvy9300)) (Succ yvy9300)) (Succ yvy9300)) (Succ yvy9300)) (Succ yvy9300)",fontsize=16,color="black",shape="box"];1578 -> 1802[label="",style="solid", color="black", weight=3]; 52.72/30.39 1579[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) yvy118 (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129) + FiniteMap.mkBranchRight_size (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) yvy118 (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129)",fontsize=16,color="black",shape="box"];1579 -> 1803[label="",style="solid", color="black", weight=3]; 52.72/30.39 1683[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1683 -> 1804[label="",style="solid", color="black", weight=3]; 52.72/30.39 1684[label="FiniteMap.sizeFM (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];1684 -> 1805[label="",style="solid", color="black", weight=3]; 52.72/30.39 1698[label="Pos (primPlusNat yvy9020 yvy2100)",fontsize=16,color="green",shape="box"];1698 -> 1806[label="",style="dashed", color="green", weight=3]; 52.72/30.39 1699[label="primMinusNat yvy9020 yvy2100",fontsize=16,color="burlywood",shape="triangle"];4075[label="yvy9020/Succ yvy90200",fontsize=10,color="white",style="solid",shape="box"];1699 -> 4075[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4075 -> 1807[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4076[label="yvy9020/Zero",fontsize=10,color="white",style="solid",shape="box"];1699 -> 4076[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4076 -> 1808[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1700 -> 1699[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1700[label="primMinusNat yvy2100 yvy9020",fontsize=16,color="magenta"];1700 -> 1809[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1700 -> 1810[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1701[label="Neg (primPlusNat yvy9020 yvy2100)",fontsize=16,color="green",shape="box"];1701 -> 1811[label="",style="dashed", color="green", weight=3]; 52.72/30.39 1685[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1687 -> 58[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1687[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90",fontsize=16,color="magenta"];1687 -> 1812[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1687 -> 1813[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1686[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 yvy211",fontsize=16,color="burlywood",shape="triangle"];4077[label="yvy211/False",fontsize=10,color="white",style="solid",shape="box"];1686 -> 4077[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4077 -> 1814[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4078[label="yvy211/True",fontsize=10,color="white",style="solid",shape="box"];1686 -> 4078[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4078 -> 1815[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1693[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 FiniteMap.EmptyFM yvy90 yvy90 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1693 -> 1816[label="",style="solid", color="black", weight=3]; 52.72/30.39 1694[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];1694 -> 1817[label="",style="solid", color="black", weight=3]; 52.72/30.39 1695[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy90 yvy50 yvy54 + FiniteMap.mkBranchRight_size yvy90 yvy50 yvy54",fontsize=16,color="black",shape="box"];1695 -> 1818[label="",style="solid", color="black", weight=3]; 52.72/30.39 1822[label="yvy190",fontsize=16,color="green",shape="box"];1823[label="yvy191",fontsize=16,color="green",shape="box"];1824[label="yvy193",fontsize=16,color="green",shape="box"];1825[label="yvy190 < yvy192",fontsize=16,color="blue",shape="box"];4079[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4079[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4079 -> 1834[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4080[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4080[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4080 -> 1835[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4081[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4081[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4081 -> 1836[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4082[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4082[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4082 -> 1837[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4083[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4083[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4083 -> 1838[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4084[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4084[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4084 -> 1839[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4085[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4085[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4085 -> 1840[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4086[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4086[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4086 -> 1841[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4087[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4087[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4087 -> 1842[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4088[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4088[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4088 -> 1843[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4089[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4089[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4089 -> 1844[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4090[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4090[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4090 -> 1845[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4091[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4091[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4091 -> 1846[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4092[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4092[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4092 -> 1847[label="",style="solid", color="blue", weight=3]; 52.72/30.39 1826[label="yvy192",fontsize=16,color="green",shape="box"];1827 -> 1504[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1827[label="yvy190 == yvy192 && yvy191 <= yvy193",fontsize=16,color="magenta"];1827 -> 1848[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1827 -> 1849[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1821[label="compare1 (yvy247,yvy248) (yvy249,yvy250) (yvy251 || yvy252)",fontsize=16,color="burlywood",shape="triangle"];4093[label="yvy251/False",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4093[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4093 -> 1850[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4094[label="yvy251/True",fontsize=10,color="white",style="solid",shape="box"];1821 -> 4094[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4094 -> 1851[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1702[label="yvy302",fontsize=16,color="green",shape="box"];1703[label="yvy402",fontsize=16,color="green",shape="box"];1704[label="yvy302",fontsize=16,color="green",shape="box"];1705[label="yvy402",fontsize=16,color="green",shape="box"];1706[label="yvy302",fontsize=16,color="green",shape="box"];1707[label="yvy402",fontsize=16,color="green",shape="box"];1708[label="yvy302",fontsize=16,color="green",shape="box"];1709[label="yvy402",fontsize=16,color="green",shape="box"];1710[label="yvy302",fontsize=16,color="green",shape="box"];1711[label="yvy402",fontsize=16,color="green",shape="box"];1712[label="yvy302",fontsize=16,color="green",shape="box"];1713[label="yvy402",fontsize=16,color="green",shape="box"];1714[label="yvy302",fontsize=16,color="green",shape="box"];1715[label="yvy402",fontsize=16,color="green",shape="box"];1716[label="yvy302",fontsize=16,color="green",shape="box"];1717[label="yvy402",fontsize=16,color="green",shape="box"];1718[label="yvy302",fontsize=16,color="green",shape="box"];1719[label="yvy402",fontsize=16,color="green",shape="box"];1720[label="yvy302",fontsize=16,color="green",shape="box"];1721[label="yvy402",fontsize=16,color="green",shape="box"];1722[label="yvy302",fontsize=16,color="green",shape="box"];1723[label="yvy402",fontsize=16,color="green",shape="box"];1724[label="yvy302",fontsize=16,color="green",shape="box"];1725[label="yvy402",fontsize=16,color="green",shape="box"];1726[label="yvy302",fontsize=16,color="green",shape="box"];1727[label="yvy402",fontsize=16,color="green",shape="box"];1728[label="yvy302",fontsize=16,color="green",shape="box"];1729[label="yvy402",fontsize=16,color="green",shape="box"];1730[label="yvy301",fontsize=16,color="green",shape="box"];1731[label="yvy401",fontsize=16,color="green",shape="box"];1732[label="yvy301",fontsize=16,color="green",shape="box"];1733[label="yvy401",fontsize=16,color="green",shape="box"];1734[label="yvy301",fontsize=16,color="green",shape="box"];1735[label="yvy401",fontsize=16,color="green",shape="box"];1736[label="yvy301",fontsize=16,color="green",shape="box"];1737[label="yvy401",fontsize=16,color="green",shape="box"];1738[label="yvy301",fontsize=16,color="green",shape="box"];1739[label="yvy401",fontsize=16,color="green",shape="box"];1740[label="yvy301",fontsize=16,color="green",shape="box"];1741[label="yvy401",fontsize=16,color="green",shape="box"];1742[label="yvy301",fontsize=16,color="green",shape="box"];1743[label="yvy401",fontsize=16,color="green",shape="box"];1744[label="yvy301",fontsize=16,color="green",shape="box"];1745[label="yvy401",fontsize=16,color="green",shape="box"];1746[label="yvy301",fontsize=16,color="green",shape="box"];1747[label="yvy401",fontsize=16,color="green",shape="box"];1748[label="yvy301",fontsize=16,color="green",shape="box"];1749[label="yvy401",fontsize=16,color="green",shape="box"];1750[label="yvy301",fontsize=16,color="green",shape="box"];1751[label="yvy401",fontsize=16,color="green",shape="box"];1752[label="yvy301",fontsize=16,color="green",shape="box"];1753[label="yvy401",fontsize=16,color="green",shape="box"];1754[label="yvy301",fontsize=16,color="green",shape="box"];1755[label="yvy401",fontsize=16,color="green",shape="box"];1756[label="yvy301",fontsize=16,color="green",shape="box"];1757[label="yvy401",fontsize=16,color="green",shape="box"];1855[label="yvy155",fontsize=16,color="green",shape="box"];1856[label="yvy159",fontsize=16,color="green",shape="box"];1857[label="yvy156",fontsize=16,color="green",shape="box"];1858[label="yvy154 < yvy157",fontsize=16,color="blue",shape="box"];4095[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4095[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4095 -> 1871[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4096[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4096[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4096 -> 1872[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4097[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4097[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4097 -> 1873[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4098[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4098[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4098 -> 1874[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4099[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4099[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4099 -> 1875[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4100[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4100[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4100 -> 1876[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4101[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4101[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4101 -> 1877[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4102[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4102[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4102 -> 1878[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4103[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4103[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4103 -> 1879[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4104[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4104[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4104 -> 1880[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4105[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4105[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4105 -> 1881[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4106[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4106[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4106 -> 1882[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4107[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4107[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4107 -> 1883[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4108[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4108[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4108 -> 1884[label="",style="solid", color="blue", weight=3]; 52.72/30.39 1859 -> 1504[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1859[label="yvy154 == yvy157 && (yvy155 < yvy158 || yvy155 == yvy158 && yvy156 <= yvy159)",fontsize=16,color="magenta"];1859 -> 1885[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1859 -> 1886[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1860[label="yvy154",fontsize=16,color="green",shape="box"];1861[label="yvy157",fontsize=16,color="green",shape="box"];1862[label="yvy158",fontsize=16,color="green",shape="box"];1854[label="compare1 (yvy262,yvy263,yvy264) (yvy265,yvy266,yvy267) (yvy268 || yvy269)",fontsize=16,color="burlywood",shape="triangle"];4109[label="yvy268/False",fontsize=10,color="white",style="solid",shape="box"];1854 -> 4109[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4109 -> 1887[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4110[label="yvy268/True",fontsize=10,color="white",style="solid",shape="box"];1854 -> 4110[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4110 -> 1888[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1760[label="GT",fontsize=16,color="green",shape="box"];1761[label="GT",fontsize=16,color="green",shape="box"];1392[label="(yvy4000,yvy4001,yvy4002) == (yvy3000,yvy3001,yvy3002)",fontsize=16,color="black",shape="box"];1392 -> 1889[label="",style="solid", color="black", weight=3]; 52.72/30.39 1393[label="Integer yvy4000 == Integer yvy3000",fontsize=16,color="black",shape="box"];1393 -> 1890[label="",style="solid", color="black", weight=3]; 52.72/30.39 1394[label="False == False",fontsize=16,color="black",shape="box"];1394 -> 1891[label="",style="solid", color="black", weight=3]; 52.72/30.39 1395[label="False == True",fontsize=16,color="black",shape="box"];1395 -> 1892[label="",style="solid", color="black", weight=3]; 52.72/30.39 1396[label="True == False",fontsize=16,color="black",shape="box"];1396 -> 1893[label="",style="solid", color="black", weight=3]; 52.72/30.39 1397[label="True == True",fontsize=16,color="black",shape="box"];1397 -> 1894[label="",style="solid", color="black", weight=3]; 52.72/30.39 1398[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1398 -> 1895[label="",style="solid", color="black", weight=3]; 52.72/30.39 1399[label="Nothing == Just yvy3000",fontsize=16,color="black",shape="box"];1399 -> 1896[label="",style="solid", color="black", weight=3]; 52.72/30.39 1400[label="Just yvy4000 == Nothing",fontsize=16,color="black",shape="box"];1400 -> 1897[label="",style="solid", color="black", weight=3]; 52.72/30.39 1401[label="Just yvy4000 == Just yvy3000",fontsize=16,color="black",shape="box"];1401 -> 1898[label="",style="solid", color="black", weight=3]; 52.72/30.39 1402[label="LT == LT",fontsize=16,color="black",shape="box"];1402 -> 1899[label="",style="solid", color="black", weight=3]; 52.72/30.39 1403[label="LT == EQ",fontsize=16,color="black",shape="box"];1403 -> 1900[label="",style="solid", color="black", weight=3]; 52.72/30.39 1404[label="LT == GT",fontsize=16,color="black",shape="box"];1404 -> 1901[label="",style="solid", color="black", weight=3]; 52.72/30.39 1405[label="EQ == LT",fontsize=16,color="black",shape="box"];1405 -> 1902[label="",style="solid", color="black", weight=3]; 52.72/30.39 1406[label="EQ == EQ",fontsize=16,color="black",shape="box"];1406 -> 1903[label="",style="solid", color="black", weight=3]; 52.72/30.39 1407[label="EQ == GT",fontsize=16,color="black",shape="box"];1407 -> 1904[label="",style="solid", color="black", weight=3]; 52.72/30.39 1408[label="GT == LT",fontsize=16,color="black",shape="box"];1408 -> 1905[label="",style="solid", color="black", weight=3]; 52.72/30.39 1409[label="GT == EQ",fontsize=16,color="black",shape="box"];1409 -> 1906[label="",style="solid", color="black", weight=3]; 52.72/30.39 1410[label="GT == GT",fontsize=16,color="black",shape="box"];1410 -> 1907[label="",style="solid", color="black", weight=3]; 52.72/30.39 1411[label="primEqFloat (Float yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4111[label="yvy300/Float yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4111[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4111 -> 1908[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1412[label="(yvy4000,yvy4001) == (yvy3000,yvy3001)",fontsize=16,color="black",shape="box"];1412 -> 1909[label="",style="solid", color="black", weight=3]; 52.72/30.39 1413[label="() == ()",fontsize=16,color="black",shape="box"];1413 -> 1910[label="",style="solid", color="black", weight=3]; 52.72/30.39 1414[label="yvy4000 :% yvy4001 == yvy3000 :% yvy3001",fontsize=16,color="black",shape="box"];1414 -> 1911[label="",style="solid", color="black", weight=3]; 52.72/30.39 1415[label="Left yvy4000 == Left yvy3000",fontsize=16,color="black",shape="box"];1415 -> 1912[label="",style="solid", color="black", weight=3]; 52.72/30.39 1416[label="Left yvy4000 == Right yvy3000",fontsize=16,color="black",shape="box"];1416 -> 1913[label="",style="solid", color="black", weight=3]; 52.72/30.39 1417[label="Right yvy4000 == Left yvy3000",fontsize=16,color="black",shape="box"];1417 -> 1914[label="",style="solid", color="black", weight=3]; 52.72/30.39 1418[label="Right yvy4000 == Right yvy3000",fontsize=16,color="black",shape="box"];1418 -> 1915[label="",style="solid", color="black", weight=3]; 52.72/30.39 1419[label="primEqInt (Pos yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4112[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];1419 -> 4112[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4112 -> 1916[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4113[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1419 -> 4113[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4113 -> 1917[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1420[label="primEqInt (Neg yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4114[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4114[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4114 -> 1918[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4115[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1420 -> 4115[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4115 -> 1919[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1421[label="primEqChar (Char yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4116[label="yvy300/Char yvy3000",fontsize=10,color="white",style="solid",shape="box"];1421 -> 4116[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4116 -> 1920[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1422[label="yvy4000 : yvy4001 == yvy3000 : yvy3001",fontsize=16,color="black",shape="box"];1422 -> 1921[label="",style="solid", color="black", weight=3]; 52.72/30.39 1423[label="yvy4000 : yvy4001 == []",fontsize=16,color="black",shape="box"];1423 -> 1922[label="",style="solid", color="black", weight=3]; 52.72/30.39 1424[label="[] == yvy3000 : yvy3001",fontsize=16,color="black",shape="box"];1424 -> 1923[label="",style="solid", color="black", weight=3]; 52.72/30.39 1425[label="[] == []",fontsize=16,color="black",shape="box"];1425 -> 1924[label="",style="solid", color="black", weight=3]; 52.72/30.39 1426[label="primEqDouble (Double yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4117[label="yvy300/Double yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];1426 -> 4117[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4117 -> 1925[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1769[label="yvy165 <= yvy166",fontsize=16,color="blue",shape="box"];4118[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1769 -> 4118[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4118 -> 1926[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4119[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1769 -> 4119[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4119 -> 1927[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4120[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1769 -> 4120[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4120 -> 1928[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4121[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1769 -> 4121[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4121 -> 1929[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4122[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1769 -> 4122[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4122 -> 1930[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4123[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1769 -> 4123[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4123 -> 1931[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4124[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1769 -> 4124[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4124 -> 1932[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4125[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1769 -> 4125[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4125 -> 1933[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4126[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1769 -> 4126[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4126 -> 1934[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4127[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1769 -> 4127[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4127 -> 1935[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4128[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1769 -> 4128[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4128 -> 1936[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4129[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1769 -> 4129[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4129 -> 1937[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4130[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1769 -> 4130[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4130 -> 1938[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4131[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1769 -> 4131[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4131 -> 1939[label="",style="solid", color="blue", weight=3]; 52.72/30.39 1770[label="compare1 (Just yvy223) (Just yvy224) False",fontsize=16,color="black",shape="box"];1770 -> 1940[label="",style="solid", color="black", weight=3]; 52.72/30.39 1771[label="compare1 (Just yvy223) (Just yvy224) True",fontsize=16,color="black",shape="box"];1771 -> 1941[label="",style="solid", color="black", weight=3]; 52.72/30.39 1779[label="yvy172 <= yvy173",fontsize=16,color="blue",shape="box"];4132[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 4132[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4132 -> 1942[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4133[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 4133[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4133 -> 1943[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4134[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 4134[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4134 -> 1944[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4135[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 4135[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4135 -> 1945[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4136[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 4136[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4136 -> 1946[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4137[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 4137[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4137 -> 1947[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4138[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 4138[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4138 -> 1948[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4139[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 4139[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4139 -> 1949[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4140[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 4140[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4140 -> 1950[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4141[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 4141[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4141 -> 1951[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4142[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 4142[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4142 -> 1952[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4143[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 4143[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4143 -> 1953[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4144[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 4144[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4144 -> 1954[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4145[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 4145[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4145 -> 1955[label="",style="solid", color="blue", weight=3]; 52.72/30.39 1780[label="compare1 (Left yvy230) (Left yvy231) False",fontsize=16,color="black",shape="box"];1780 -> 1956[label="",style="solid", color="black", weight=3]; 52.72/30.39 1781[label="compare1 (Left yvy230) (Left yvy231) True",fontsize=16,color="black",shape="box"];1781 -> 1957[label="",style="solid", color="black", weight=3]; 52.72/30.39 1782[label="GT",fontsize=16,color="green",shape="box"];1790[label="yvy179 <= yvy180",fontsize=16,color="blue",shape="box"];4146[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1790 -> 4146[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4146 -> 1958[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4147[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1790 -> 4147[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4147 -> 1959[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4148[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1790 -> 4148[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4148 -> 1960[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4149[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1790 -> 4149[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4149 -> 1961[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4150[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1790 -> 4150[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4150 -> 1962[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4151[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1790 -> 4151[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4151 -> 1963[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4152[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1790 -> 4152[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4152 -> 1964[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4153[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1790 -> 4153[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4153 -> 1965[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4154[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1790 -> 4154[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4154 -> 1966[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4155[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1790 -> 4155[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4155 -> 1967[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4156[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1790 -> 4156[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4156 -> 1968[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4157[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1790 -> 4157[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4157 -> 1969[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4158[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1790 -> 4158[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4158 -> 1970[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4159[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1790 -> 4159[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4159 -> 1971[label="",style="solid", color="blue", weight=3]; 52.72/30.39 1791[label="compare1 (Right yvy237) (Right yvy238) False",fontsize=16,color="black",shape="box"];1791 -> 1972[label="",style="solid", color="black", weight=3]; 52.72/30.39 1792[label="compare1 (Right yvy237) (Right yvy238) True",fontsize=16,color="black",shape="box"];1792 -> 1973[label="",style="solid", color="black", weight=3]; 52.72/30.39 1793[label="GT",fontsize=16,color="green",shape="box"];1794[label="GT",fontsize=16,color="green",shape="box"];1795[label="GT",fontsize=16,color="green",shape="box"];1796[label="primMulNat yvy4000 yvy3010",fontsize=16,color="burlywood",shape="triangle"];4160[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];1796 -> 4160[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4160 -> 1974[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4161[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1796 -> 4161[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4161 -> 1975[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1797 -> 1796[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1797[label="primMulNat yvy4000 yvy3010",fontsize=16,color="magenta"];1797 -> 1976[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1798 -> 1796[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1798[label="primMulNat yvy4000 yvy3010",fontsize=16,color="magenta"];1798 -> 1977[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1799 -> 1796[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1799[label="primMulNat yvy4000 yvy3010",fontsize=16,color="magenta"];1799 -> 1978[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1799 -> 1979[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1800[label="yvy4000",fontsize=16,color="green",shape="box"];1801[label="yvy3010",fontsize=16,color="green",shape="box"];1802 -> 1980[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1802[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primMulNat Zero (Succ yvy9300)) (Succ yvy9300)) (Succ yvy9300)) (Succ yvy9300)) (Succ yvy9300)) (Succ yvy9300)",fontsize=16,color="magenta"];1802 -> 1981[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1803 -> 1670[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1803[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) yvy118 (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129)) (FiniteMap.mkBranchRight_size (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) yvy118 (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129))",fontsize=16,color="magenta"];1803 -> 1982[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1803 -> 1983[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1804[label="Pos Zero",fontsize=16,color="green",shape="box"];1805[label="yvy542",fontsize=16,color="green",shape="box"];1806[label="primPlusNat yvy9020 yvy2100",fontsize=16,color="burlywood",shape="triangle"];4162[label="yvy9020/Succ yvy90200",fontsize=10,color="white",style="solid",shape="box"];1806 -> 4162[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4162 -> 1984[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4163[label="yvy9020/Zero",fontsize=10,color="white",style="solid",shape="box"];1806 -> 4163[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4163 -> 1985[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1807[label="primMinusNat (Succ yvy90200) yvy2100",fontsize=16,color="burlywood",shape="box"];4164[label="yvy2100/Succ yvy21000",fontsize=10,color="white",style="solid",shape="box"];1807 -> 4164[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4164 -> 1986[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4165[label="yvy2100/Zero",fontsize=10,color="white",style="solid",shape="box"];1807 -> 4165[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4165 -> 1987[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1808[label="primMinusNat Zero yvy2100",fontsize=16,color="burlywood",shape="box"];4166[label="yvy2100/Succ yvy21000",fontsize=10,color="white",style="solid",shape="box"];1808 -> 4166[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4166 -> 1988[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4167[label="yvy2100/Zero",fontsize=10,color="white",style="solid",shape="box"];1808 -> 4167[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4167 -> 1989[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1809[label="yvy2100",fontsize=16,color="green",shape="box"];1810[label="yvy9020",fontsize=16,color="green",shape="box"];1811 -> 1806[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1811[label="primPlusNat yvy9020 yvy2100",fontsize=16,color="magenta"];1811 -> 1990[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1811 -> 1991[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1812 -> 1671[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1812[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90",fontsize=16,color="magenta"];1813 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1813[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90",fontsize=16,color="magenta"];1813 -> 1992[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1813 -> 1993[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1814[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 False",fontsize=16,color="black",shape="box"];1814 -> 1994[label="",style="solid", color="black", weight=3]; 52.72/30.39 1815[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 True",fontsize=16,color="black",shape="box"];1815 -> 1995[label="",style="solid", color="black", weight=3]; 52.72/30.39 1816[label="error []",fontsize=16,color="red",shape="box"];1817[label="FiniteMap.mkBalBranch6MkBalBranch02 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];1817 -> 1996[label="",style="solid", color="black", weight=3]; 52.72/30.39 1818 -> 1670[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1818[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy90 yvy50 yvy54) (FiniteMap.mkBranchRight_size yvy90 yvy50 yvy54)",fontsize=16,color="magenta"];1818 -> 1997[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1818 -> 1998[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1834 -> 72[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1834[label="yvy190 < yvy192",fontsize=16,color="magenta"];1834 -> 1999[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1834 -> 2000[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1835 -> 73[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1835[label="yvy190 < yvy192",fontsize=16,color="magenta"];1835 -> 2001[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1835 -> 2002[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1836 -> 74[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1836[label="yvy190 < yvy192",fontsize=16,color="magenta"];1836 -> 2003[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1836 -> 2004[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1837 -> 75[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1837[label="yvy190 < yvy192",fontsize=16,color="magenta"];1837 -> 2005[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1837 -> 2006[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1838 -> 76[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1838[label="yvy190 < yvy192",fontsize=16,color="magenta"];1838 -> 2007[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1838 -> 2008[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1839 -> 77[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1839[label="yvy190 < yvy192",fontsize=16,color="magenta"];1839 -> 2009[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1839 -> 2010[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1840 -> 78[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1840[label="yvy190 < yvy192",fontsize=16,color="magenta"];1840 -> 2011[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1840 -> 2012[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1841 -> 79[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1841[label="yvy190 < yvy192",fontsize=16,color="magenta"];1841 -> 2013[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1841 -> 2014[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1842 -> 80[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1842[label="yvy190 < yvy192",fontsize=16,color="magenta"];1842 -> 2015[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1842 -> 2016[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1843 -> 81[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1843[label="yvy190 < yvy192",fontsize=16,color="magenta"];1843 -> 2017[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1843 -> 2018[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1844 -> 82[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1844[label="yvy190 < yvy192",fontsize=16,color="magenta"];1844 -> 2019[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1844 -> 2020[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1845 -> 83[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1845[label="yvy190 < yvy192",fontsize=16,color="magenta"];1845 -> 2021[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1845 -> 2022[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1846 -> 84[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1846[label="yvy190 < yvy192",fontsize=16,color="magenta"];1846 -> 2023[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1846 -> 2024[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1847 -> 85[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1847[label="yvy190 < yvy192",fontsize=16,color="magenta"];1847 -> 2025[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1847 -> 2026[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1848[label="yvy191 <= yvy193",fontsize=16,color="blue",shape="box"];4168[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4168[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4168 -> 2027[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4169[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4169[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4169 -> 2028[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4170[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4170[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4170 -> 2029[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4171[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4171[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4171 -> 2030[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4172[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4172[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4172 -> 2031[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4173[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4173[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4173 -> 2032[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4174[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4174[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4174 -> 2033[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4175[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4175[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4175 -> 2034[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4176[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4176[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4176 -> 2035[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4177[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4177[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4177 -> 2036[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4178[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4178[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4178 -> 2037[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4179[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4179[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4179 -> 2038[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4180[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4180[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4180 -> 2039[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4181[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 4181[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4181 -> 2040[label="",style="solid", color="blue", weight=3]; 52.72/30.39 1849[label="yvy190 == yvy192",fontsize=16,color="blue",shape="box"];4182[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4182[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4182 -> 2041[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4183[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4183[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4183 -> 2042[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4184[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4184[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4184 -> 2043[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4185[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4185[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4185 -> 2044[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4186[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4186[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4186 -> 2045[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4187[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4187[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4187 -> 2046[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4188[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4188[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4188 -> 2047[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4189[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4189[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4189 -> 2048[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4190[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4190[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4190 -> 2049[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4191[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4191[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4191 -> 2050[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4192[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4192[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4192 -> 2051[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4193[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4193[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4193 -> 2052[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4194[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4194[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4194 -> 2053[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4195[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1849 -> 4195[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4195 -> 2054[label="",style="solid", color="blue", weight=3]; 52.72/30.39 1850[label="compare1 (yvy247,yvy248) (yvy249,yvy250) (False || yvy252)",fontsize=16,color="black",shape="box"];1850 -> 2055[label="",style="solid", color="black", weight=3]; 52.72/30.39 1851[label="compare1 (yvy247,yvy248) (yvy249,yvy250) (True || yvy252)",fontsize=16,color="black",shape="box"];1851 -> 2056[label="",style="solid", color="black", weight=3]; 52.72/30.39 1871 -> 72[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1871[label="yvy154 < yvy157",fontsize=16,color="magenta"];1871 -> 2057[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1871 -> 2058[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1872 -> 73[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1872[label="yvy154 < yvy157",fontsize=16,color="magenta"];1872 -> 2059[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1872 -> 2060[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1873 -> 74[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1873[label="yvy154 < yvy157",fontsize=16,color="magenta"];1873 -> 2061[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1873 -> 2062[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1874 -> 75[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1874[label="yvy154 < yvy157",fontsize=16,color="magenta"];1874 -> 2063[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1874 -> 2064[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1875 -> 76[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1875[label="yvy154 < yvy157",fontsize=16,color="magenta"];1875 -> 2065[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1875 -> 2066[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1876 -> 77[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1876[label="yvy154 < yvy157",fontsize=16,color="magenta"];1876 -> 2067[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1876 -> 2068[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1877 -> 78[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1877[label="yvy154 < yvy157",fontsize=16,color="magenta"];1877 -> 2069[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1877 -> 2070[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1878 -> 79[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1878[label="yvy154 < yvy157",fontsize=16,color="magenta"];1878 -> 2071[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1878 -> 2072[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1879 -> 80[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1879[label="yvy154 < yvy157",fontsize=16,color="magenta"];1879 -> 2073[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1879 -> 2074[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1880 -> 81[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1880[label="yvy154 < yvy157",fontsize=16,color="magenta"];1880 -> 2075[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1880 -> 2076[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1881 -> 82[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1881[label="yvy154 < yvy157",fontsize=16,color="magenta"];1881 -> 2077[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1881 -> 2078[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1882 -> 83[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1882[label="yvy154 < yvy157",fontsize=16,color="magenta"];1882 -> 2079[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1882 -> 2080[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1883 -> 84[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1883[label="yvy154 < yvy157",fontsize=16,color="magenta"];1883 -> 2081[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1883 -> 2082[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1884 -> 85[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1884[label="yvy154 < yvy157",fontsize=16,color="magenta"];1884 -> 2083[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1884 -> 2084[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1885 -> 2330[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1885[label="yvy155 < yvy158 || yvy155 == yvy158 && yvy156 <= yvy159",fontsize=16,color="magenta"];1885 -> 2331[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1885 -> 2332[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1886[label="yvy154 == yvy157",fontsize=16,color="blue",shape="box"];4196[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 4196[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4196 -> 2087[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4197[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 4197[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4197 -> 2088[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4198[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 4198[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4198 -> 2089[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4199[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 4199[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4199 -> 2090[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4200[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 4200[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4200 -> 2091[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4201[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 4201[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4201 -> 2092[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4202[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 4202[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4202 -> 2093[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4203[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 4203[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4203 -> 2094[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4204[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 4204[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4204 -> 2095[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4205[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 4205[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4205 -> 2096[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4206[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 4206[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4206 -> 2097[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4207[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 4207[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4207 -> 2098[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4208[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 4208[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4208 -> 2099[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4209[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 4209[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4209 -> 2100[label="",style="solid", color="blue", weight=3]; 52.72/30.39 1887[label="compare1 (yvy262,yvy263,yvy264) (yvy265,yvy266,yvy267) (False || yvy269)",fontsize=16,color="black",shape="box"];1887 -> 2101[label="",style="solid", color="black", weight=3]; 52.72/30.39 1888[label="compare1 (yvy262,yvy263,yvy264) (yvy265,yvy266,yvy267) (True || yvy269)",fontsize=16,color="black",shape="box"];1888 -> 2102[label="",style="solid", color="black", weight=3]; 52.72/30.39 1889 -> 1504[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1889[label="yvy4000 == yvy3000 && yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];1889 -> 2103[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1889 -> 2104[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1890 -> 1221[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1890[label="primEqInt yvy4000 yvy3000",fontsize=16,color="magenta"];1890 -> 2105[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1890 -> 2106[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1891[label="True",fontsize=16,color="green",shape="box"];1892[label="False",fontsize=16,color="green",shape="box"];1893[label="False",fontsize=16,color="green",shape="box"];1894[label="True",fontsize=16,color="green",shape="box"];1895[label="True",fontsize=16,color="green",shape="box"];1896[label="False",fontsize=16,color="green",shape="box"];1897[label="False",fontsize=16,color="green",shape="box"];1898[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4210[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 4210[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4210 -> 2107[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4211[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 4211[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4211 -> 2108[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4212[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 4212[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4212 -> 2109[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4213[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 4213[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4213 -> 2110[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4214[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 4214[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4214 -> 2111[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4215[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 4215[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4215 -> 2112[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4216[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 4216[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4216 -> 2113[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4217[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 4217[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4217 -> 2114[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4218[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 4218[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4218 -> 2115[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4219[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 4219[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4219 -> 2116[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4220[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 4220[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4220 -> 2117[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4221[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 4221[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4221 -> 2118[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4222[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 4222[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4222 -> 2119[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4223[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 4223[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4223 -> 2120[label="",style="solid", color="blue", weight=3]; 52.72/30.39 1899[label="True",fontsize=16,color="green",shape="box"];1900[label="False",fontsize=16,color="green",shape="box"];1901[label="False",fontsize=16,color="green",shape="box"];1902[label="False",fontsize=16,color="green",shape="box"];1903[label="True",fontsize=16,color="green",shape="box"];1904[label="False",fontsize=16,color="green",shape="box"];1905[label="False",fontsize=16,color="green",shape="box"];1906[label="False",fontsize=16,color="green",shape="box"];1907[label="True",fontsize=16,color="green",shape="box"];1908[label="primEqFloat (Float yvy4000 yvy4001) (Float yvy3000 yvy3001)",fontsize=16,color="black",shape="box"];1908 -> 2121[label="",style="solid", color="black", weight=3]; 52.72/30.39 1909 -> 1504[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1909[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];1909 -> 2122[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1909 -> 2123[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1910[label="True",fontsize=16,color="green",shape="box"];1911 -> 1504[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1911[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];1911 -> 2124[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1911 -> 2125[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1912[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4224[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1912 -> 4224[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4224 -> 2126[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4225[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1912 -> 4225[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4225 -> 2127[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4226[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1912 -> 4226[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4226 -> 2128[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4227[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1912 -> 4227[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4227 -> 2129[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4228[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1912 -> 4228[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4228 -> 2130[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4229[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1912 -> 4229[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4229 -> 2131[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4230[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1912 -> 4230[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4230 -> 2132[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4231[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1912 -> 4231[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4231 -> 2133[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4232[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1912 -> 4232[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4232 -> 2134[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4233[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1912 -> 4233[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4233 -> 2135[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4234[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1912 -> 4234[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4234 -> 2136[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4235[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1912 -> 4235[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4235 -> 2137[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4236[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1912 -> 4236[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4236 -> 2138[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4237[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1912 -> 4237[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4237 -> 2139[label="",style="solid", color="blue", weight=3]; 52.72/30.39 1913[label="False",fontsize=16,color="green",shape="box"];1914[label="False",fontsize=16,color="green",shape="box"];1915[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4238[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4238[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4238 -> 2140[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4239[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4239[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4239 -> 2141[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4240[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4240[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4240 -> 2142[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4241[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4241[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4241 -> 2143[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4242[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4242[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4242 -> 2144[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4243[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4243[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4243 -> 2145[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4244[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4244[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4244 -> 2146[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4245[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4245[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4245 -> 2147[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4246[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4246[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4246 -> 2148[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4247[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4247[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4247 -> 2149[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4248[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4248[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4248 -> 2150[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4249[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4249[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4249 -> 2151[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4250[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4250[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4250 -> 2152[label="",style="solid", color="blue", weight=3]; 52.72/30.39 4251[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4251[label="",style="solid", color="blue", weight=9]; 52.72/30.39 4251 -> 2153[label="",style="solid", color="blue", weight=3]; 52.72/30.39 1916[label="primEqInt (Pos (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];4252[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];1916 -> 4252[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4252 -> 2154[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4253[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];1916 -> 4253[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4253 -> 2155[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1917[label="primEqInt (Pos Zero) yvy300",fontsize=16,color="burlywood",shape="box"];4254[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];1917 -> 4254[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4254 -> 2156[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4255[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];1917 -> 4255[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4255 -> 2157[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1918[label="primEqInt (Neg (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];4256[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4256[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4256 -> 2158[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4257[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4257[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4257 -> 2159[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1919[label="primEqInt (Neg Zero) yvy300",fontsize=16,color="burlywood",shape="box"];4258[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4258[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4258 -> 2160[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4259[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4259[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4259 -> 2161[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1920[label="primEqChar (Char yvy4000) (Char yvy3000)",fontsize=16,color="black",shape="box"];1920 -> 2162[label="",style="solid", color="black", weight=3]; 52.72/30.39 1921 -> 1504[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1921[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];1921 -> 2163[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1921 -> 2164[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1922[label="False",fontsize=16,color="green",shape="box"];1923[label="False",fontsize=16,color="green",shape="box"];1924[label="True",fontsize=16,color="green",shape="box"];1925[label="primEqDouble (Double yvy4000 yvy4001) (Double yvy3000 yvy3001)",fontsize=16,color="black",shape="box"];1925 -> 2165[label="",style="solid", color="black", weight=3]; 52.72/30.39 1926[label="yvy165 <= yvy166",fontsize=16,color="black",shape="triangle"];1926 -> 2166[label="",style="solid", color="black", weight=3]; 52.72/30.39 1927[label="yvy165 <= yvy166",fontsize=16,color="black",shape="triangle"];1927 -> 2167[label="",style="solid", color="black", weight=3]; 52.72/30.39 1928[label="yvy165 <= yvy166",fontsize=16,color="black",shape="triangle"];1928 -> 2168[label="",style="solid", color="black", weight=3]; 52.72/30.39 1929[label="yvy165 <= yvy166",fontsize=16,color="black",shape="triangle"];1929 -> 2169[label="",style="solid", color="black", weight=3]; 52.72/30.39 1930[label="yvy165 <= yvy166",fontsize=16,color="black",shape="triangle"];1930 -> 2170[label="",style="solid", color="black", weight=3]; 52.72/30.39 1931[label="yvy165 <= yvy166",fontsize=16,color="black",shape="triangle"];1931 -> 2171[label="",style="solid", color="black", weight=3]; 52.72/30.39 1932[label="yvy165 <= yvy166",fontsize=16,color="burlywood",shape="triangle"];4260[label="yvy165/(yvy1650,yvy1651)",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4260[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4260 -> 2172[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1933[label="yvy165 <= yvy166",fontsize=16,color="burlywood",shape="triangle"];4261[label="yvy165/(yvy1650,yvy1651,yvy1652)",fontsize=10,color="white",style="solid",shape="box"];1933 -> 4261[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4261 -> 2173[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1934[label="yvy165 <= yvy166",fontsize=16,color="burlywood",shape="triangle"];4262[label="yvy165/False",fontsize=10,color="white",style="solid",shape="box"];1934 -> 4262[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4262 -> 2174[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4263[label="yvy165/True",fontsize=10,color="white",style="solid",shape="box"];1934 -> 4263[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4263 -> 2175[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1935[label="yvy165 <= yvy166",fontsize=16,color="burlywood",shape="triangle"];4264[label="yvy165/Nothing",fontsize=10,color="white",style="solid",shape="box"];1935 -> 4264[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4264 -> 2176[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4265[label="yvy165/Just yvy1650",fontsize=10,color="white",style="solid",shape="box"];1935 -> 4265[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4265 -> 2177[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1936[label="yvy165 <= yvy166",fontsize=16,color="burlywood",shape="triangle"];4266[label="yvy165/Left yvy1650",fontsize=10,color="white",style="solid",shape="box"];1936 -> 4266[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4266 -> 2178[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4267[label="yvy165/Right yvy1650",fontsize=10,color="white",style="solid",shape="box"];1936 -> 4267[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4267 -> 2179[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1937[label="yvy165 <= yvy166",fontsize=16,color="burlywood",shape="triangle"];4268[label="yvy165/LT",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4268[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4268 -> 2180[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4269[label="yvy165/EQ",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4269[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4269 -> 2181[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4270[label="yvy165/GT",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4270[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4270 -> 2182[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1938[label="yvy165 <= yvy166",fontsize=16,color="black",shape="triangle"];1938 -> 2183[label="",style="solid", color="black", weight=3]; 52.72/30.39 1939[label="yvy165 <= yvy166",fontsize=16,color="black",shape="triangle"];1939 -> 2184[label="",style="solid", color="black", weight=3]; 52.72/30.39 1940[label="compare0 (Just yvy223) (Just yvy224) otherwise",fontsize=16,color="black",shape="box"];1940 -> 2185[label="",style="solid", color="black", weight=3]; 52.72/30.39 1941[label="LT",fontsize=16,color="green",shape="box"];1942 -> 1926[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1942[label="yvy172 <= yvy173",fontsize=16,color="magenta"];1942 -> 2186[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1942 -> 2187[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1943 -> 1927[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1943[label="yvy172 <= yvy173",fontsize=16,color="magenta"];1943 -> 2188[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1943 -> 2189[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1944 -> 1928[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1944[label="yvy172 <= yvy173",fontsize=16,color="magenta"];1944 -> 2190[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1944 -> 2191[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1945 -> 1929[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1945[label="yvy172 <= yvy173",fontsize=16,color="magenta"];1945 -> 2192[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1945 -> 2193[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1946 -> 1930[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1946[label="yvy172 <= yvy173",fontsize=16,color="magenta"];1946 -> 2194[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1946 -> 2195[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1947 -> 1931[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1947[label="yvy172 <= yvy173",fontsize=16,color="magenta"];1947 -> 2196[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1947 -> 2197[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1948 -> 1932[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1948[label="yvy172 <= yvy173",fontsize=16,color="magenta"];1948 -> 2198[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1948 -> 2199[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1949 -> 1933[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1949[label="yvy172 <= yvy173",fontsize=16,color="magenta"];1949 -> 2200[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1949 -> 2201[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1950 -> 1934[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1950[label="yvy172 <= yvy173",fontsize=16,color="magenta"];1950 -> 2202[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1950 -> 2203[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1951 -> 1935[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1951[label="yvy172 <= yvy173",fontsize=16,color="magenta"];1951 -> 2204[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1951 -> 2205[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1952 -> 1936[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1952[label="yvy172 <= yvy173",fontsize=16,color="magenta"];1952 -> 2206[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1952 -> 2207[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1953 -> 1937[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1953[label="yvy172 <= yvy173",fontsize=16,color="magenta"];1953 -> 2208[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1953 -> 2209[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1954 -> 1938[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1954[label="yvy172 <= yvy173",fontsize=16,color="magenta"];1954 -> 2210[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1954 -> 2211[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1955 -> 1939[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1955[label="yvy172 <= yvy173",fontsize=16,color="magenta"];1955 -> 2212[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1955 -> 2213[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1956[label="compare0 (Left yvy230) (Left yvy231) otherwise",fontsize=16,color="black",shape="box"];1956 -> 2214[label="",style="solid", color="black", weight=3]; 52.72/30.39 1957[label="LT",fontsize=16,color="green",shape="box"];1958 -> 1926[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1958[label="yvy179 <= yvy180",fontsize=16,color="magenta"];1958 -> 2215[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1958 -> 2216[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1959 -> 1927[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1959[label="yvy179 <= yvy180",fontsize=16,color="magenta"];1959 -> 2217[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1959 -> 2218[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1960 -> 1928[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1960[label="yvy179 <= yvy180",fontsize=16,color="magenta"];1960 -> 2219[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1960 -> 2220[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1961 -> 1929[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1961[label="yvy179 <= yvy180",fontsize=16,color="magenta"];1961 -> 2221[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1961 -> 2222[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1962 -> 1930[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1962[label="yvy179 <= yvy180",fontsize=16,color="magenta"];1962 -> 2223[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1962 -> 2224[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1963 -> 1931[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1963[label="yvy179 <= yvy180",fontsize=16,color="magenta"];1963 -> 2225[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1963 -> 2226[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1964 -> 1932[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1964[label="yvy179 <= yvy180",fontsize=16,color="magenta"];1964 -> 2227[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1964 -> 2228[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1965 -> 1933[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1965[label="yvy179 <= yvy180",fontsize=16,color="magenta"];1965 -> 2229[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1965 -> 2230[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1966 -> 1934[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1966[label="yvy179 <= yvy180",fontsize=16,color="magenta"];1966 -> 2231[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1966 -> 2232[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1967 -> 1935[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1967[label="yvy179 <= yvy180",fontsize=16,color="magenta"];1967 -> 2233[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1967 -> 2234[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1968 -> 1936[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1968[label="yvy179 <= yvy180",fontsize=16,color="magenta"];1968 -> 2235[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1968 -> 2236[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1969 -> 1937[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1969[label="yvy179 <= yvy180",fontsize=16,color="magenta"];1969 -> 2237[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1969 -> 2238[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1970 -> 1938[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1970[label="yvy179 <= yvy180",fontsize=16,color="magenta"];1970 -> 2239[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1970 -> 2240[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1971 -> 1939[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1971[label="yvy179 <= yvy180",fontsize=16,color="magenta"];1971 -> 2241[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1971 -> 2242[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1972[label="compare0 (Right yvy237) (Right yvy238) otherwise",fontsize=16,color="black",shape="box"];1972 -> 2243[label="",style="solid", color="black", weight=3]; 52.72/30.39 1973[label="LT",fontsize=16,color="green",shape="box"];1974[label="primMulNat (Succ yvy40000) yvy3010",fontsize=16,color="burlywood",shape="box"];4271[label="yvy3010/Succ yvy30100",fontsize=10,color="white",style="solid",shape="box"];1974 -> 4271[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4271 -> 2244[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4272[label="yvy3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1974 -> 4272[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4272 -> 2245[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1975[label="primMulNat Zero yvy3010",fontsize=16,color="burlywood",shape="box"];4273[label="yvy3010/Succ yvy30100",fontsize=10,color="white",style="solid",shape="box"];1975 -> 4273[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4273 -> 2246[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4274[label="yvy3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1975 -> 4274[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4274 -> 2247[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1976[label="yvy3010",fontsize=16,color="green",shape="box"];1977[label="yvy4000",fontsize=16,color="green",shape="box"];1978[label="yvy3010",fontsize=16,color="green",shape="box"];1979[label="yvy4000",fontsize=16,color="green",shape="box"];1981 -> 1796[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1981[label="primMulNat Zero (Succ yvy9300)",fontsize=16,color="magenta"];1981 -> 2248[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1981 -> 2249[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1980 -> 1806[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1980[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (primPlusNat yvy270 (Succ yvy9300)) (Succ yvy9300)) (Succ yvy9300)) (Succ yvy9300)) (Succ yvy9300)",fontsize=16,color="magenta"];1980 -> 2250[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1980 -> 2251[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1982[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) yvy118 (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129)",fontsize=16,color="black",shape="box"];1982 -> 2252[label="",style="solid", color="black", weight=3]; 52.72/30.39 1983[label="FiniteMap.mkBranchRight_size (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) yvy118 (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129)",fontsize=16,color="black",shape="box"];1983 -> 2253[label="",style="solid", color="black", weight=3]; 52.72/30.39 1984[label="primPlusNat (Succ yvy90200) yvy2100",fontsize=16,color="burlywood",shape="box"];4275[label="yvy2100/Succ yvy21000",fontsize=10,color="white",style="solid",shape="box"];1984 -> 4275[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4275 -> 2254[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4276[label="yvy2100/Zero",fontsize=10,color="white",style="solid",shape="box"];1984 -> 4276[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4276 -> 2255[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1985[label="primPlusNat Zero yvy2100",fontsize=16,color="burlywood",shape="box"];4277[label="yvy2100/Succ yvy21000",fontsize=10,color="white",style="solid",shape="box"];1985 -> 4277[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4277 -> 2256[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4278[label="yvy2100/Zero",fontsize=10,color="white",style="solid",shape="box"];1985 -> 4278[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4278 -> 2257[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1986[label="primMinusNat (Succ yvy90200) (Succ yvy21000)",fontsize=16,color="black",shape="box"];1986 -> 2258[label="",style="solid", color="black", weight=3]; 52.72/30.39 1987[label="primMinusNat (Succ yvy90200) Zero",fontsize=16,color="black",shape="box"];1987 -> 2259[label="",style="solid", color="black", weight=3]; 52.72/30.39 1988[label="primMinusNat Zero (Succ yvy21000)",fontsize=16,color="black",shape="box"];1988 -> 2260[label="",style="solid", color="black", weight=3]; 52.72/30.39 1989[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];1989 -> 2261[label="",style="solid", color="black", weight=3]; 52.72/30.39 1990[label="yvy2100",fontsize=16,color="green",shape="box"];1991[label="yvy9020",fontsize=16,color="green",shape="box"];1992 -> 1387[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1992[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1993 -> 1152[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1993[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90",fontsize=16,color="magenta"];1994[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 otherwise",fontsize=16,color="black",shape="box"];1994 -> 2262[label="",style="solid", color="black", weight=3]; 52.72/30.39 1995[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 yvy54 yvy90 yvy90 yvy54 yvy90",fontsize=16,color="burlywood",shape="box"];4279[label="yvy90/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1995 -> 4279[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4279 -> 2263[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 4280[label="yvy90/FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904",fontsize=10,color="white",style="solid",shape="box"];1995 -> 4280[label="",style="solid", color="burlywood", weight=9]; 52.72/30.39 4280 -> 2264[label="",style="solid", color="burlywood", weight=3]; 52.72/30.39 1996 -> 2265[label="",style="dashed", color="red", weight=0]; 52.72/30.39 1996[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (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"];1996 -> 2266[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 1997[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy90 yvy50 yvy54",fontsize=16,color="black",shape="box"];1997 -> 2267[label="",style="solid", color="black", weight=3]; 52.72/30.39 1998[label="FiniteMap.mkBranchRight_size yvy90 yvy50 yvy54",fontsize=16,color="black",shape="box"];1998 -> 2268[label="",style="solid", color="black", weight=3]; 52.72/30.39 1999[label="yvy190",fontsize=16,color="green",shape="box"];2000[label="yvy192",fontsize=16,color="green",shape="box"];2001[label="yvy190",fontsize=16,color="green",shape="box"];2002[label="yvy192",fontsize=16,color="green",shape="box"];2003[label="yvy190",fontsize=16,color="green",shape="box"];2004[label="yvy192",fontsize=16,color="green",shape="box"];2005[label="yvy190",fontsize=16,color="green",shape="box"];2006[label="yvy192",fontsize=16,color="green",shape="box"];2007[label="yvy190",fontsize=16,color="green",shape="box"];2008[label="yvy192",fontsize=16,color="green",shape="box"];2009[label="yvy190",fontsize=16,color="green",shape="box"];2010[label="yvy192",fontsize=16,color="green",shape="box"];2011[label="yvy190",fontsize=16,color="green",shape="box"];2012[label="yvy192",fontsize=16,color="green",shape="box"];2013[label="yvy190",fontsize=16,color="green",shape="box"];2014[label="yvy192",fontsize=16,color="green",shape="box"];2015[label="yvy190",fontsize=16,color="green",shape="box"];2016[label="yvy192",fontsize=16,color="green",shape="box"];2017[label="yvy190",fontsize=16,color="green",shape="box"];2018[label="yvy192",fontsize=16,color="green",shape="box"];2019[label="yvy190",fontsize=16,color="green",shape="box"];2020[label="yvy192",fontsize=16,color="green",shape="box"];2021[label="yvy190",fontsize=16,color="green",shape="box"];2022[label="yvy192",fontsize=16,color="green",shape="box"];2023[label="yvy190",fontsize=16,color="green",shape="box"];2024[label="yvy192",fontsize=16,color="green",shape="box"];2025[label="yvy190",fontsize=16,color="green",shape="box"];2026[label="yvy192",fontsize=16,color="green",shape="box"];2027 -> 1926[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2027[label="yvy191 <= yvy193",fontsize=16,color="magenta"];2027 -> 2269[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2027 -> 2270[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2028 -> 1927[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2028[label="yvy191 <= yvy193",fontsize=16,color="magenta"];2028 -> 2271[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2028 -> 2272[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2029 -> 1928[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2029[label="yvy191 <= yvy193",fontsize=16,color="magenta"];2029 -> 2273[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2029 -> 2274[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2030 -> 1929[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2030[label="yvy191 <= yvy193",fontsize=16,color="magenta"];2030 -> 2275[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2030 -> 2276[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2031 -> 1930[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2031[label="yvy191 <= yvy193",fontsize=16,color="magenta"];2031 -> 2277[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2031 -> 2278[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2032 -> 1931[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2032[label="yvy191 <= yvy193",fontsize=16,color="magenta"];2032 -> 2279[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2032 -> 2280[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2033 -> 1932[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2033[label="yvy191 <= yvy193",fontsize=16,color="magenta"];2033 -> 2281[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2033 -> 2282[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2034 -> 1933[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2034[label="yvy191 <= yvy193",fontsize=16,color="magenta"];2034 -> 2283[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2034 -> 2284[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2035 -> 1934[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2035[label="yvy191 <= yvy193",fontsize=16,color="magenta"];2035 -> 2285[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2035 -> 2286[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2036 -> 1935[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2036[label="yvy191 <= yvy193",fontsize=16,color="magenta"];2036 -> 2287[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2036 -> 2288[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2037 -> 1936[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2037[label="yvy191 <= yvy193",fontsize=16,color="magenta"];2037 -> 2289[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2037 -> 2290[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2038 -> 1937[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2038[label="yvy191 <= yvy193",fontsize=16,color="magenta"];2038 -> 2291[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2038 -> 2292[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2039 -> 1938[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2039[label="yvy191 <= yvy193",fontsize=16,color="magenta"];2039 -> 2293[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2039 -> 2294[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2040 -> 1939[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2040[label="yvy191 <= yvy193",fontsize=16,color="magenta"];2040 -> 2295[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2040 -> 2296[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2041 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2041[label="yvy190 == yvy192",fontsize=16,color="magenta"];2041 -> 2297[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2041 -> 2298[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2042 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2042[label="yvy190 == yvy192",fontsize=16,color="magenta"];2042 -> 2299[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2042 -> 2300[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2043 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2043[label="yvy190 == yvy192",fontsize=16,color="magenta"];2043 -> 2301[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2043 -> 2302[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2044 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2044[label="yvy190 == yvy192",fontsize=16,color="magenta"];2044 -> 2303[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2044 -> 2304[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2045 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2045[label="yvy190 == yvy192",fontsize=16,color="magenta"];2045 -> 2305[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2045 -> 2306[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2046 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2046[label="yvy190 == yvy192",fontsize=16,color="magenta"];2046 -> 2307[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2046 -> 2308[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2047 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2047[label="yvy190 == yvy192",fontsize=16,color="magenta"];2047 -> 2309[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2047 -> 2310[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2048 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2048[label="yvy190 == yvy192",fontsize=16,color="magenta"];2048 -> 2311[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2048 -> 2312[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2049 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2049[label="yvy190 == yvy192",fontsize=16,color="magenta"];2049 -> 2313[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2049 -> 2314[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2050 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2050[label="yvy190 == yvy192",fontsize=16,color="magenta"];2050 -> 2315[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2050 -> 2316[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2051 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2051[label="yvy190 == yvy192",fontsize=16,color="magenta"];2051 -> 2317[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2051 -> 2318[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2052 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2052[label="yvy190 == yvy192",fontsize=16,color="magenta"];2052 -> 2319[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2052 -> 2320[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2053 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2053[label="yvy190 == yvy192",fontsize=16,color="magenta"];2053 -> 2321[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2053 -> 2322[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2054 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.39 2054[label="yvy190 == yvy192",fontsize=16,color="magenta"];2054 -> 2323[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2054 -> 2324[label="",style="dashed", color="magenta", weight=3]; 52.72/30.39 2055[label="compare1 (yvy247,yvy248) (yvy249,yvy250) yvy252",fontsize=16,color="burlywood",shape="triangle"];4281[label="yvy252/False",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4281[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4281 -> 2325[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4282[label="yvy252/True",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4282[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4282 -> 2326[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2056 -> 2055[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2056[label="compare1 (yvy247,yvy248) (yvy249,yvy250) True",fontsize=16,color="magenta"];2056 -> 2327[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2057[label="yvy154",fontsize=16,color="green",shape="box"];2058[label="yvy157",fontsize=16,color="green",shape="box"];2059[label="yvy154",fontsize=16,color="green",shape="box"];2060[label="yvy157",fontsize=16,color="green",shape="box"];2061[label="yvy154",fontsize=16,color="green",shape="box"];2062[label="yvy157",fontsize=16,color="green",shape="box"];2063[label="yvy154",fontsize=16,color="green",shape="box"];2064[label="yvy157",fontsize=16,color="green",shape="box"];2065[label="yvy154",fontsize=16,color="green",shape="box"];2066[label="yvy157",fontsize=16,color="green",shape="box"];2067[label="yvy154",fontsize=16,color="green",shape="box"];2068[label="yvy157",fontsize=16,color="green",shape="box"];2069[label="yvy154",fontsize=16,color="green",shape="box"];2070[label="yvy157",fontsize=16,color="green",shape="box"];2071[label="yvy154",fontsize=16,color="green",shape="box"];2072[label="yvy157",fontsize=16,color="green",shape="box"];2073[label="yvy154",fontsize=16,color="green",shape="box"];2074[label="yvy157",fontsize=16,color="green",shape="box"];2075[label="yvy154",fontsize=16,color="green",shape="box"];2076[label="yvy157",fontsize=16,color="green",shape="box"];2077[label="yvy154",fontsize=16,color="green",shape="box"];2078[label="yvy157",fontsize=16,color="green",shape="box"];2079[label="yvy154",fontsize=16,color="green",shape="box"];2080[label="yvy157",fontsize=16,color="green",shape="box"];2081[label="yvy154",fontsize=16,color="green",shape="box"];2082[label="yvy157",fontsize=16,color="green",shape="box"];2083[label="yvy154",fontsize=16,color="green",shape="box"];2084[label="yvy157",fontsize=16,color="green",shape="box"];2331[label="yvy155 < yvy158",fontsize=16,color="blue",shape="box"];4283[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4283[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4283 -> 2335[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4284[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4284[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4284 -> 2336[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4285[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4285[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4285 -> 2337[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4286[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4286[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4286 -> 2338[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4287[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4287[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4287 -> 2339[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4288[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4288[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4288 -> 2340[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4289[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4289[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4289 -> 2341[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4290[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4290[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4290 -> 2342[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4291[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4291[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4291 -> 2343[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4292[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4292[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4292 -> 2344[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4293[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4293[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4293 -> 2345[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4294[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4294[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4294 -> 2346[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4295[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4295[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4295 -> 2347[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4296[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4296[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4296 -> 2348[label="",style="solid", color="blue", weight=3]; 52.72/30.40 2332 -> 1504[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2332[label="yvy155 == yvy158 && yvy156 <= yvy159",fontsize=16,color="magenta"];2332 -> 2349[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2332 -> 2350[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2330[label="yvy279 || yvy280",fontsize=16,color="burlywood",shape="triangle"];4297[label="yvy279/False",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4297[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4297 -> 2351[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4298[label="yvy279/True",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4298[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4298 -> 2352[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2087 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2087[label="yvy154 == yvy157",fontsize=16,color="magenta"];2087 -> 2353[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2087 -> 2354[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2088 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2088[label="yvy154 == yvy157",fontsize=16,color="magenta"];2088 -> 2355[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2088 -> 2356[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2089 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2089[label="yvy154 == yvy157",fontsize=16,color="magenta"];2089 -> 2357[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2089 -> 2358[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2090 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2090[label="yvy154 == yvy157",fontsize=16,color="magenta"];2090 -> 2359[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2090 -> 2360[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2091 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2091[label="yvy154 == yvy157",fontsize=16,color="magenta"];2091 -> 2361[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2091 -> 2362[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2092 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2092[label="yvy154 == yvy157",fontsize=16,color="magenta"];2092 -> 2363[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2092 -> 2364[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2093 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2093[label="yvy154 == yvy157",fontsize=16,color="magenta"];2093 -> 2365[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2093 -> 2366[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2094 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2094[label="yvy154 == yvy157",fontsize=16,color="magenta"];2094 -> 2367[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2094 -> 2368[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2095 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2095[label="yvy154 == yvy157",fontsize=16,color="magenta"];2095 -> 2369[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2095 -> 2370[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2096 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2096[label="yvy154 == yvy157",fontsize=16,color="magenta"];2096 -> 2371[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2096 -> 2372[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2097 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2097[label="yvy154 == yvy157",fontsize=16,color="magenta"];2097 -> 2373[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2097 -> 2374[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2098 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2098[label="yvy154 == yvy157",fontsize=16,color="magenta"];2098 -> 2375[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2098 -> 2376[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2099 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2099[label="yvy154 == yvy157",fontsize=16,color="magenta"];2099 -> 2377[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2099 -> 2378[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2100 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2100[label="yvy154 == yvy157",fontsize=16,color="magenta"];2100 -> 2379[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2100 -> 2380[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2101[label="compare1 (yvy262,yvy263,yvy264) (yvy265,yvy266,yvy267) yvy269",fontsize=16,color="burlywood",shape="triangle"];4299[label="yvy269/False",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4299[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4299 -> 2381[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4300[label="yvy269/True",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4300[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4300 -> 2382[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2102 -> 2101[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2102[label="compare1 (yvy262,yvy263,yvy264) (yvy265,yvy266,yvy267) True",fontsize=16,color="magenta"];2102 -> 2383[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2103 -> 1504[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2103[label="yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];2103 -> 2384[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2103 -> 2385[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2104[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4301[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4301[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4301 -> 2386[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4302[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4302[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4302 -> 2387[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4303[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4303[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4303 -> 2388[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4304[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4304[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4304 -> 2389[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4305[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4305[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4305 -> 2390[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4306[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4306[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4306 -> 2391[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4307[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4307[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4307 -> 2392[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4308[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4308[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4308 -> 2393[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4309[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4309[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4309 -> 2394[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4310[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4310[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4310 -> 2395[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4311[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4311[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4311 -> 2396[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4312[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4312[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4312 -> 2397[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4313[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4313[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4313 -> 2398[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4314[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 4314[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4314 -> 2399[label="",style="solid", color="blue", weight=3]; 52.72/30.40 2105[label="yvy3000",fontsize=16,color="green",shape="box"];2106[label="yvy4000",fontsize=16,color="green",shape="box"];2107 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2107[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2107 -> 2400[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2107 -> 2401[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2108 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2108[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2108 -> 2402[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2108 -> 2403[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2109 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2109[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2109 -> 2404[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2109 -> 2405[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2110 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2110[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2110 -> 2406[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2110 -> 2407[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2111 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2111[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2111 -> 2408[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2111 -> 2409[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2112 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2112[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2112 -> 2410[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2112 -> 2411[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2113 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2113[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2113 -> 2412[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2113 -> 2413[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2114 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2114[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2114 -> 2414[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2114 -> 2415[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2115 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2115[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2115 -> 2416[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2115 -> 2417[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2116 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2116[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2116 -> 2418[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2116 -> 2419[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2117 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2117[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2117 -> 2420[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2117 -> 2421[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2118 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2118[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2118 -> 2422[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2118 -> 2423[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2119 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2119[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2119 -> 2424[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2119 -> 2425[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2120 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2120[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2120 -> 2426[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2120 -> 2427[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2121 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2121[label="yvy4000 * yvy3001 == yvy4001 * yvy3000",fontsize=16,color="magenta"];2121 -> 2428[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2121 -> 2429[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2122[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4315[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4315[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4315 -> 2430[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4316[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4316[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4316 -> 2431[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4317[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4317[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4317 -> 2432[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4318[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4318[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4318 -> 2433[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4319[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4319[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4319 -> 2434[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4320[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4320[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4320 -> 2435[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4321[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4321[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4321 -> 2436[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4322[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4322[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4322 -> 2437[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4323[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4323[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4323 -> 2438[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4324[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4324[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4324 -> 2439[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4325[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4325[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4325 -> 2440[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4326[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4326[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4326 -> 2441[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4327[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4327[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4327 -> 2442[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4328[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4328[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4328 -> 2443[label="",style="solid", color="blue", weight=3]; 52.72/30.40 2123[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4329[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4329[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4329 -> 2444[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4330[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4330[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4330 -> 2445[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4331[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4331[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4331 -> 2446[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4332[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4332[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4332 -> 2447[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4333[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4333[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4333 -> 2448[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4334[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4334[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4334 -> 2449[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4335[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4335[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4335 -> 2450[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4336[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4336[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4336 -> 2451[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4337[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4337[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4337 -> 2452[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4338[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4338[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4338 -> 2453[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4339[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4339[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4339 -> 2454[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4340[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4340[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4340 -> 2455[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4341[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4341[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4341 -> 2456[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4342[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4342[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4342 -> 2457[label="",style="solid", color="blue", weight=3]; 52.72/30.40 2124[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4343[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2124 -> 4343[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4343 -> 2458[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4344[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2124 -> 4344[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4344 -> 2459[label="",style="solid", color="blue", weight=3]; 52.72/30.40 2125[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4345[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2125 -> 4345[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4345 -> 2460[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4346[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2125 -> 4346[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4346 -> 2461[label="",style="solid", color="blue", weight=3]; 52.72/30.40 2126 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2126[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2126 -> 2462[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2126 -> 2463[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2127 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2127[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2127 -> 2464[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2127 -> 2465[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2128 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2128[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2128 -> 2466[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2128 -> 2467[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2129 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2129[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2129 -> 2468[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2129 -> 2469[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2130 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2130[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2130 -> 2470[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2130 -> 2471[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2131 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2131[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2131 -> 2472[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2131 -> 2473[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2132 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2132[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2132 -> 2474[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2132 -> 2475[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2133 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2133[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2133 -> 2476[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2133 -> 2477[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2134 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2134[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2134 -> 2478[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2134 -> 2479[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2135 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2135[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2135 -> 2480[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2135 -> 2481[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2136 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2136[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2136 -> 2482[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2136 -> 2483[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2137 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2137[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2137 -> 2484[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2137 -> 2485[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2138 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2138[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2138 -> 2486[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2138 -> 2487[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2139 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2139[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2139 -> 2488[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2139 -> 2489[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2140 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2140[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2140 -> 2490[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2140 -> 2491[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2141 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2141[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2141 -> 2492[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2141 -> 2493[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2142 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2142[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2142 -> 2494[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2142 -> 2495[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2143 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2143[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2143 -> 2496[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2143 -> 2497[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2144 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2144[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2144 -> 2498[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2144 -> 2499[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2145 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2145[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2145 -> 2500[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2145 -> 2501[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2146 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2146[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2146 -> 2502[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2146 -> 2503[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2147 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2147[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2147 -> 2504[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2147 -> 2505[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2148 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2148[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2148 -> 2506[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2148 -> 2507[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2149 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2149[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2149 -> 2508[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2149 -> 2509[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2150 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2150[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2150 -> 2510[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2150 -> 2511[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2151 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2151[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2151 -> 2512[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2151 -> 2513[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2152 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2152[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2152 -> 2514[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2152 -> 2515[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2153 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2153[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2153 -> 2516[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2153 -> 2517[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2154[label="primEqInt (Pos (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4347[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2154 -> 4347[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4347 -> 2518[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4348[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2154 -> 4348[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4348 -> 2519[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2155[label="primEqInt (Pos (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="black",shape="box"];2155 -> 2520[label="",style="solid", color="black", weight=3]; 52.72/30.40 2156[label="primEqInt (Pos Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4349[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2156 -> 4349[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4349 -> 2521[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4350[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2156 -> 4350[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4350 -> 2522[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2157[label="primEqInt (Pos Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4351[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2157 -> 4351[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4351 -> 2523[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4352[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2157 -> 4352[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4352 -> 2524[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2158[label="primEqInt (Neg (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="black",shape="box"];2158 -> 2525[label="",style="solid", color="black", weight=3]; 52.72/30.40 2159[label="primEqInt (Neg (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4353[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2159 -> 4353[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4353 -> 2526[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4354[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2159 -> 4354[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4354 -> 2527[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2160[label="primEqInt (Neg Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4355[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2160 -> 4355[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4355 -> 2528[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4356[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2160 -> 4356[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4356 -> 2529[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2161[label="primEqInt (Neg Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4357[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2161 -> 4357[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4357 -> 2530[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4358[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2161 -> 4358[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4358 -> 2531[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2162[label="primEqNat yvy4000 yvy3000",fontsize=16,color="burlywood",shape="triangle"];4359[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];2162 -> 4359[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4359 -> 2532[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4360[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2162 -> 4360[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4360 -> 2533[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2163 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2163[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2163 -> 2534[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2163 -> 2535[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2164[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4361[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4361[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4361 -> 2536[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4362[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4362[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4362 -> 2537[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4363[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4363[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4363 -> 2538[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4364[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4364[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4364 -> 2539[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4365[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4365[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4365 -> 2540[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4366[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4366[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4366 -> 2541[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4367[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4367[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4367 -> 2542[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4368[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4368[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4368 -> 2543[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4369[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4369[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4369 -> 2544[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4370[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4370[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4370 -> 2545[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4371[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4371[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4371 -> 2546[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4372[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4372[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4372 -> 2547[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4373[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4373[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4373 -> 2548[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4374[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4374[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4374 -> 2549[label="",style="solid", color="blue", weight=3]; 52.72/30.40 2165 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2165[label="yvy4000 * yvy3001 == yvy4001 * yvy3000",fontsize=16,color="magenta"];2165 -> 2550[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2165 -> 2551[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2166 -> 2552[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2166[label="compare yvy165 yvy166 /= GT",fontsize=16,color="magenta"];2166 -> 2553[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2167 -> 2552[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2167[label="compare yvy165 yvy166 /= GT",fontsize=16,color="magenta"];2167 -> 2554[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2168 -> 2552[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2168[label="compare yvy165 yvy166 /= GT",fontsize=16,color="magenta"];2168 -> 2555[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2169 -> 2552[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2169[label="compare yvy165 yvy166 /= GT",fontsize=16,color="magenta"];2169 -> 2556[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2170 -> 2552[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2170[label="compare yvy165 yvy166 /= GT",fontsize=16,color="magenta"];2170 -> 2557[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2171 -> 2552[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2171[label="compare yvy165 yvy166 /= GT",fontsize=16,color="magenta"];2171 -> 2558[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2172[label="(yvy1650,yvy1651) <= yvy166",fontsize=16,color="burlywood",shape="box"];4375[label="yvy166/(yvy1660,yvy1661)",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4375[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4375 -> 2561[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2173[label="(yvy1650,yvy1651,yvy1652) <= yvy166",fontsize=16,color="burlywood",shape="box"];4376[label="yvy166/(yvy1660,yvy1661,yvy1662)",fontsize=10,color="white",style="solid",shape="box"];2173 -> 4376[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4376 -> 2562[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2174[label="False <= yvy166",fontsize=16,color="burlywood",shape="box"];4377[label="yvy166/False",fontsize=10,color="white",style="solid",shape="box"];2174 -> 4377[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4377 -> 2563[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4378[label="yvy166/True",fontsize=10,color="white",style="solid",shape="box"];2174 -> 4378[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4378 -> 2564[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2175[label="True <= yvy166",fontsize=16,color="burlywood",shape="box"];4379[label="yvy166/False",fontsize=10,color="white",style="solid",shape="box"];2175 -> 4379[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4379 -> 2565[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4380[label="yvy166/True",fontsize=10,color="white",style="solid",shape="box"];2175 -> 4380[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4380 -> 2566[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2176[label="Nothing <= yvy166",fontsize=16,color="burlywood",shape="box"];4381[label="yvy166/Nothing",fontsize=10,color="white",style="solid",shape="box"];2176 -> 4381[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4381 -> 2567[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4382[label="yvy166/Just yvy1660",fontsize=10,color="white",style="solid",shape="box"];2176 -> 4382[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4382 -> 2568[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2177[label="Just yvy1650 <= yvy166",fontsize=16,color="burlywood",shape="box"];4383[label="yvy166/Nothing",fontsize=10,color="white",style="solid",shape="box"];2177 -> 4383[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4383 -> 2569[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4384[label="yvy166/Just yvy1660",fontsize=10,color="white",style="solid",shape="box"];2177 -> 4384[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4384 -> 2570[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2178[label="Left yvy1650 <= yvy166",fontsize=16,color="burlywood",shape="box"];4385[label="yvy166/Left yvy1660",fontsize=10,color="white",style="solid",shape="box"];2178 -> 4385[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4385 -> 2571[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4386[label="yvy166/Right yvy1660",fontsize=10,color="white",style="solid",shape="box"];2178 -> 4386[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4386 -> 2572[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2179[label="Right yvy1650 <= yvy166",fontsize=16,color="burlywood",shape="box"];4387[label="yvy166/Left yvy1660",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4387[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4387 -> 2573[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4388[label="yvy166/Right yvy1660",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4388[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4388 -> 2574[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2180[label="LT <= yvy166",fontsize=16,color="burlywood",shape="box"];4389[label="yvy166/LT",fontsize=10,color="white",style="solid",shape="box"];2180 -> 4389[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4389 -> 2575[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4390[label="yvy166/EQ",fontsize=10,color="white",style="solid",shape="box"];2180 -> 4390[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4390 -> 2576[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4391[label="yvy166/GT",fontsize=10,color="white",style="solid",shape="box"];2180 -> 4391[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4391 -> 2577[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2181[label="EQ <= yvy166",fontsize=16,color="burlywood",shape="box"];4392[label="yvy166/LT",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4392[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4392 -> 2578[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4393[label="yvy166/EQ",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4393[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4393 -> 2579[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4394[label="yvy166/GT",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4394[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4394 -> 2580[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2182[label="GT <= yvy166",fontsize=16,color="burlywood",shape="box"];4395[label="yvy166/LT",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4395[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4395 -> 2581[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4396[label="yvy166/EQ",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4396[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4396 -> 2582[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4397[label="yvy166/GT",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4397[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4397 -> 2583[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2183 -> 2552[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2183[label="compare yvy165 yvy166 /= GT",fontsize=16,color="magenta"];2183 -> 2559[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2184 -> 2552[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2184[label="compare yvy165 yvy166 /= GT",fontsize=16,color="magenta"];2184 -> 2560[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2185[label="compare0 (Just yvy223) (Just yvy224) True",fontsize=16,color="black",shape="box"];2185 -> 2584[label="",style="solid", color="black", weight=3]; 52.72/30.40 2186[label="yvy172",fontsize=16,color="green",shape="box"];2187[label="yvy173",fontsize=16,color="green",shape="box"];2188[label="yvy172",fontsize=16,color="green",shape="box"];2189[label="yvy173",fontsize=16,color="green",shape="box"];2190[label="yvy172",fontsize=16,color="green",shape="box"];2191[label="yvy173",fontsize=16,color="green",shape="box"];2192[label="yvy172",fontsize=16,color="green",shape="box"];2193[label="yvy173",fontsize=16,color="green",shape="box"];2194[label="yvy172",fontsize=16,color="green",shape="box"];2195[label="yvy173",fontsize=16,color="green",shape="box"];2196[label="yvy172",fontsize=16,color="green",shape="box"];2197[label="yvy173",fontsize=16,color="green",shape="box"];2198[label="yvy172",fontsize=16,color="green",shape="box"];2199[label="yvy173",fontsize=16,color="green",shape="box"];2200[label="yvy172",fontsize=16,color="green",shape="box"];2201[label="yvy173",fontsize=16,color="green",shape="box"];2202[label="yvy172",fontsize=16,color="green",shape="box"];2203[label="yvy173",fontsize=16,color="green",shape="box"];2204[label="yvy172",fontsize=16,color="green",shape="box"];2205[label="yvy173",fontsize=16,color="green",shape="box"];2206[label="yvy172",fontsize=16,color="green",shape="box"];2207[label="yvy173",fontsize=16,color="green",shape="box"];2208[label="yvy172",fontsize=16,color="green",shape="box"];2209[label="yvy173",fontsize=16,color="green",shape="box"];2210[label="yvy172",fontsize=16,color="green",shape="box"];2211[label="yvy173",fontsize=16,color="green",shape="box"];2212[label="yvy172",fontsize=16,color="green",shape="box"];2213[label="yvy173",fontsize=16,color="green",shape="box"];2214[label="compare0 (Left yvy230) (Left yvy231) True",fontsize=16,color="black",shape="box"];2214 -> 2585[label="",style="solid", color="black", weight=3]; 52.72/30.40 2215[label="yvy179",fontsize=16,color="green",shape="box"];2216[label="yvy180",fontsize=16,color="green",shape="box"];2217[label="yvy179",fontsize=16,color="green",shape="box"];2218[label="yvy180",fontsize=16,color="green",shape="box"];2219[label="yvy179",fontsize=16,color="green",shape="box"];2220[label="yvy180",fontsize=16,color="green",shape="box"];2221[label="yvy179",fontsize=16,color="green",shape="box"];2222[label="yvy180",fontsize=16,color="green",shape="box"];2223[label="yvy179",fontsize=16,color="green",shape="box"];2224[label="yvy180",fontsize=16,color="green",shape="box"];2225[label="yvy179",fontsize=16,color="green",shape="box"];2226[label="yvy180",fontsize=16,color="green",shape="box"];2227[label="yvy179",fontsize=16,color="green",shape="box"];2228[label="yvy180",fontsize=16,color="green",shape="box"];2229[label="yvy179",fontsize=16,color="green",shape="box"];2230[label="yvy180",fontsize=16,color="green",shape="box"];2231[label="yvy179",fontsize=16,color="green",shape="box"];2232[label="yvy180",fontsize=16,color="green",shape="box"];2233[label="yvy179",fontsize=16,color="green",shape="box"];2234[label="yvy180",fontsize=16,color="green",shape="box"];2235[label="yvy179",fontsize=16,color="green",shape="box"];2236[label="yvy180",fontsize=16,color="green",shape="box"];2237[label="yvy179",fontsize=16,color="green",shape="box"];2238[label="yvy180",fontsize=16,color="green",shape="box"];2239[label="yvy179",fontsize=16,color="green",shape="box"];2240[label="yvy180",fontsize=16,color="green",shape="box"];2241[label="yvy179",fontsize=16,color="green",shape="box"];2242[label="yvy180",fontsize=16,color="green",shape="box"];2243[label="compare0 (Right yvy237) (Right yvy238) True",fontsize=16,color="black",shape="box"];2243 -> 2586[label="",style="solid", color="black", weight=3]; 52.72/30.40 2244[label="primMulNat (Succ yvy40000) (Succ yvy30100)",fontsize=16,color="black",shape="box"];2244 -> 2587[label="",style="solid", color="black", weight=3]; 52.72/30.40 2245[label="primMulNat (Succ yvy40000) Zero",fontsize=16,color="black",shape="box"];2245 -> 2588[label="",style="solid", color="black", weight=3]; 52.72/30.40 2246[label="primMulNat Zero (Succ yvy30100)",fontsize=16,color="black",shape="box"];2246 -> 2589[label="",style="solid", color="black", weight=3]; 52.72/30.40 2247[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2247 -> 2590[label="",style="solid", color="black", weight=3]; 52.72/30.40 2248[label="Succ yvy9300",fontsize=16,color="green",shape="box"];2249[label="Zero",fontsize=16,color="green",shape="box"];2250[label="Succ yvy9300",fontsize=16,color="green",shape="box"];2251 -> 1806[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2251[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat yvy270 (Succ yvy9300)) (Succ yvy9300)) (Succ yvy9300)) (Succ yvy9300)",fontsize=16,color="magenta"];2251 -> 2591[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2251 -> 2592[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2252 -> 1670[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2252[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) yvy118 (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129))",fontsize=16,color="magenta"];2252 -> 2593[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2252 -> 2594[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2253 -> 1386[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2253[label="FiniteMap.sizeFM (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129)",fontsize=16,color="magenta"];2253 -> 2595[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2254[label="primPlusNat (Succ yvy90200) (Succ yvy21000)",fontsize=16,color="black",shape="box"];2254 -> 2596[label="",style="solid", color="black", weight=3]; 52.72/30.40 2255[label="primPlusNat (Succ yvy90200) Zero",fontsize=16,color="black",shape="box"];2255 -> 2597[label="",style="solid", color="black", weight=3]; 52.72/30.40 2256[label="primPlusNat Zero (Succ yvy21000)",fontsize=16,color="black",shape="box"];2256 -> 2598[label="",style="solid", color="black", weight=3]; 52.72/30.40 2257[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2257 -> 2599[label="",style="solid", color="black", weight=3]; 52.72/30.40 2258 -> 1699[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2258[label="primMinusNat yvy90200 yvy21000",fontsize=16,color="magenta"];2258 -> 2600[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2258 -> 2601[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2259[label="Pos (Succ yvy90200)",fontsize=16,color="green",shape="box"];2260[label="Neg (Succ yvy21000)",fontsize=16,color="green",shape="box"];2261[label="Pos Zero",fontsize=16,color="green",shape="box"];2262[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 True",fontsize=16,color="black",shape="box"];2262 -> 2602[label="",style="solid", color="black", weight=3]; 52.72/30.40 2263[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 yvy54 FiniteMap.EmptyFM FiniteMap.EmptyFM yvy54 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2263 -> 2603[label="",style="solid", color="black", weight=3]; 52.72/30.40 2264[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904)",fontsize=16,color="black",shape="box"];2264 -> 2604[label="",style="solid", color="black", weight=3]; 52.72/30.40 2266 -> 74[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2266[label="FiniteMap.sizeFM yvy543 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];2266 -> 2605[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2266 -> 2606[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2265[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 yvy272",fontsize=16,color="burlywood",shape="triangle"];4398[label="yvy272/False",fontsize=10,color="white",style="solid",shape="box"];2265 -> 4398[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4398 -> 2607[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4399[label="yvy272/True",fontsize=10,color="white",style="solid",shape="box"];2265 -> 4399[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4399 -> 2608[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2267 -> 1670[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2267[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size yvy90 yvy50 yvy54)",fontsize=16,color="magenta"];2267 -> 2609[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2267 -> 2610[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2268 -> 1386[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2268[label="FiniteMap.sizeFM yvy54",fontsize=16,color="magenta"];2269[label="yvy191",fontsize=16,color="green",shape="box"];2270[label="yvy193",fontsize=16,color="green",shape="box"];2271[label="yvy191",fontsize=16,color="green",shape="box"];2272[label="yvy193",fontsize=16,color="green",shape="box"];2273[label="yvy191",fontsize=16,color="green",shape="box"];2274[label="yvy193",fontsize=16,color="green",shape="box"];2275[label="yvy191",fontsize=16,color="green",shape="box"];2276[label="yvy193",fontsize=16,color="green",shape="box"];2277[label="yvy191",fontsize=16,color="green",shape="box"];2278[label="yvy193",fontsize=16,color="green",shape="box"];2279[label="yvy191",fontsize=16,color="green",shape="box"];2280[label="yvy193",fontsize=16,color="green",shape="box"];2281[label="yvy191",fontsize=16,color="green",shape="box"];2282[label="yvy193",fontsize=16,color="green",shape="box"];2283[label="yvy191",fontsize=16,color="green",shape="box"];2284[label="yvy193",fontsize=16,color="green",shape="box"];2285[label="yvy191",fontsize=16,color="green",shape="box"];2286[label="yvy193",fontsize=16,color="green",shape="box"];2287[label="yvy191",fontsize=16,color="green",shape="box"];2288[label="yvy193",fontsize=16,color="green",shape="box"];2289[label="yvy191",fontsize=16,color="green",shape="box"];2290[label="yvy193",fontsize=16,color="green",shape="box"];2291[label="yvy191",fontsize=16,color="green",shape="box"];2292[label="yvy193",fontsize=16,color="green",shape="box"];2293[label="yvy191",fontsize=16,color="green",shape="box"];2294[label="yvy193",fontsize=16,color="green",shape="box"];2295[label="yvy191",fontsize=16,color="green",shape="box"];2296[label="yvy193",fontsize=16,color="green",shape="box"];2297[label="yvy192",fontsize=16,color="green",shape="box"];2298[label="yvy190",fontsize=16,color="green",shape="box"];2299[label="yvy192",fontsize=16,color="green",shape="box"];2300[label="yvy190",fontsize=16,color="green",shape="box"];2301[label="yvy192",fontsize=16,color="green",shape="box"];2302[label="yvy190",fontsize=16,color="green",shape="box"];2303[label="yvy192",fontsize=16,color="green",shape="box"];2304[label="yvy190",fontsize=16,color="green",shape="box"];2305[label="yvy192",fontsize=16,color="green",shape="box"];2306[label="yvy190",fontsize=16,color="green",shape="box"];2307[label="yvy192",fontsize=16,color="green",shape="box"];2308[label="yvy190",fontsize=16,color="green",shape="box"];2309[label="yvy192",fontsize=16,color="green",shape="box"];2310[label="yvy190",fontsize=16,color="green",shape="box"];2311[label="yvy192",fontsize=16,color="green",shape="box"];2312[label="yvy190",fontsize=16,color="green",shape="box"];2313[label="yvy192",fontsize=16,color="green",shape="box"];2314[label="yvy190",fontsize=16,color="green",shape="box"];2315[label="yvy192",fontsize=16,color="green",shape="box"];2316[label="yvy190",fontsize=16,color="green",shape="box"];2317[label="yvy192",fontsize=16,color="green",shape="box"];2318[label="yvy190",fontsize=16,color="green",shape="box"];2319[label="yvy192",fontsize=16,color="green",shape="box"];2320[label="yvy190",fontsize=16,color="green",shape="box"];2321[label="yvy192",fontsize=16,color="green",shape="box"];2322[label="yvy190",fontsize=16,color="green",shape="box"];2323[label="yvy192",fontsize=16,color="green",shape="box"];2324[label="yvy190",fontsize=16,color="green",shape="box"];2325[label="compare1 (yvy247,yvy248) (yvy249,yvy250) False",fontsize=16,color="black",shape="box"];2325 -> 2611[label="",style="solid", color="black", weight=3]; 52.72/30.40 2326[label="compare1 (yvy247,yvy248) (yvy249,yvy250) True",fontsize=16,color="black",shape="box"];2326 -> 2612[label="",style="solid", color="black", weight=3]; 52.72/30.40 2327[label="True",fontsize=16,color="green",shape="box"];2335 -> 72[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2335[label="yvy155 < yvy158",fontsize=16,color="magenta"];2335 -> 2613[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2335 -> 2614[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2336 -> 73[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2336[label="yvy155 < yvy158",fontsize=16,color="magenta"];2336 -> 2615[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2336 -> 2616[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2337 -> 74[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2337[label="yvy155 < yvy158",fontsize=16,color="magenta"];2337 -> 2617[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2337 -> 2618[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2338 -> 75[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2338[label="yvy155 < yvy158",fontsize=16,color="magenta"];2338 -> 2619[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2338 -> 2620[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2339 -> 76[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2339[label="yvy155 < yvy158",fontsize=16,color="magenta"];2339 -> 2621[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2339 -> 2622[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2340 -> 77[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2340[label="yvy155 < yvy158",fontsize=16,color="magenta"];2340 -> 2623[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2340 -> 2624[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2341 -> 78[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2341[label="yvy155 < yvy158",fontsize=16,color="magenta"];2341 -> 2625[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2341 -> 2626[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2342 -> 79[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2342[label="yvy155 < yvy158",fontsize=16,color="magenta"];2342 -> 2627[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2342 -> 2628[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2343 -> 80[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2343[label="yvy155 < yvy158",fontsize=16,color="magenta"];2343 -> 2629[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2343 -> 2630[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2344 -> 81[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2344[label="yvy155 < yvy158",fontsize=16,color="magenta"];2344 -> 2631[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2344 -> 2632[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2345 -> 82[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2345[label="yvy155 < yvy158",fontsize=16,color="magenta"];2345 -> 2633[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2345 -> 2634[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2346 -> 83[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2346[label="yvy155 < yvy158",fontsize=16,color="magenta"];2346 -> 2635[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2346 -> 2636[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2347 -> 84[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2347[label="yvy155 < yvy158",fontsize=16,color="magenta"];2347 -> 2637[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2347 -> 2638[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2348 -> 85[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2348[label="yvy155 < yvy158",fontsize=16,color="magenta"];2348 -> 2639[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2348 -> 2640[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2349[label="yvy156 <= yvy159",fontsize=16,color="blue",shape="box"];4400[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4400[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4400 -> 2641[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4401[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4401[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4401 -> 2642[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4402[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4402[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4402 -> 2643[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4403[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4403[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4403 -> 2644[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4404[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4404[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4404 -> 2645[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4405[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4405[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4405 -> 2646[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4406[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4406[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4406 -> 2647[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4407[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4407[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4407 -> 2648[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4408[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4408[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4408 -> 2649[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4409[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4409[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4409 -> 2650[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4410[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4410[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4410 -> 2651[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4411[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4411[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4411 -> 2652[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4412[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4412[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4412 -> 2653[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4413[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2349 -> 4413[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4413 -> 2654[label="",style="solid", color="blue", weight=3]; 52.72/30.40 2350[label="yvy155 == yvy158",fontsize=16,color="blue",shape="box"];4414[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4414[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4414 -> 2655[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4415[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4415[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4415 -> 2656[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4416[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4416[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4416 -> 2657[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4417[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4417[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4417 -> 2658[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4418[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4418[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4418 -> 2659[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4419[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4419[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4419 -> 2660[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4420[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4420[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4420 -> 2661[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4421[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4421[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4421 -> 2662[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4422[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4422[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4422 -> 2663[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4423[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4423[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4423 -> 2664[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4424[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4424[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4424 -> 2665[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4425[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4425[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4425 -> 2666[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4426[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4426[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4426 -> 2667[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4427[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2350 -> 4427[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4427 -> 2668[label="",style="solid", color="blue", weight=3]; 52.72/30.40 2351[label="False || yvy280",fontsize=16,color="black",shape="box"];2351 -> 2669[label="",style="solid", color="black", weight=3]; 52.72/30.40 2352[label="True || yvy280",fontsize=16,color="black",shape="box"];2352 -> 2670[label="",style="solid", color="black", weight=3]; 52.72/30.40 2353[label="yvy157",fontsize=16,color="green",shape="box"];2354[label="yvy154",fontsize=16,color="green",shape="box"];2355[label="yvy157",fontsize=16,color="green",shape="box"];2356[label="yvy154",fontsize=16,color="green",shape="box"];2357[label="yvy157",fontsize=16,color="green",shape="box"];2358[label="yvy154",fontsize=16,color="green",shape="box"];2359[label="yvy157",fontsize=16,color="green",shape="box"];2360[label="yvy154",fontsize=16,color="green",shape="box"];2361[label="yvy157",fontsize=16,color="green",shape="box"];2362[label="yvy154",fontsize=16,color="green",shape="box"];2363[label="yvy157",fontsize=16,color="green",shape="box"];2364[label="yvy154",fontsize=16,color="green",shape="box"];2365[label="yvy157",fontsize=16,color="green",shape="box"];2366[label="yvy154",fontsize=16,color="green",shape="box"];2367[label="yvy157",fontsize=16,color="green",shape="box"];2368[label="yvy154",fontsize=16,color="green",shape="box"];2369[label="yvy157",fontsize=16,color="green",shape="box"];2370[label="yvy154",fontsize=16,color="green",shape="box"];2371[label="yvy157",fontsize=16,color="green",shape="box"];2372[label="yvy154",fontsize=16,color="green",shape="box"];2373[label="yvy157",fontsize=16,color="green",shape="box"];2374[label="yvy154",fontsize=16,color="green",shape="box"];2375[label="yvy157",fontsize=16,color="green",shape="box"];2376[label="yvy154",fontsize=16,color="green",shape="box"];2377[label="yvy157",fontsize=16,color="green",shape="box"];2378[label="yvy154",fontsize=16,color="green",shape="box"];2379[label="yvy157",fontsize=16,color="green",shape="box"];2380[label="yvy154",fontsize=16,color="green",shape="box"];2381[label="compare1 (yvy262,yvy263,yvy264) (yvy265,yvy266,yvy267) False",fontsize=16,color="black",shape="box"];2381 -> 2671[label="",style="solid", color="black", weight=3]; 52.72/30.40 2382[label="compare1 (yvy262,yvy263,yvy264) (yvy265,yvy266,yvy267) True",fontsize=16,color="black",shape="box"];2382 -> 2672[label="",style="solid", color="black", weight=3]; 52.72/30.40 2383[label="True",fontsize=16,color="green",shape="box"];2384[label="yvy4002 == yvy3002",fontsize=16,color="blue",shape="box"];4428[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2384 -> 4428[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4428 -> 2673[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4429[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2384 -> 4429[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4429 -> 2674[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4430[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2384 -> 4430[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4430 -> 2675[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4431[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2384 -> 4431[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4431 -> 2676[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4432[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2384 -> 4432[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4432 -> 2677[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4433[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2384 -> 4433[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4433 -> 2678[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4434[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2384 -> 4434[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4434 -> 2679[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4435[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2384 -> 4435[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4435 -> 2680[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4436[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2384 -> 4436[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4436 -> 2681[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4437[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2384 -> 4437[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4437 -> 2682[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4438[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2384 -> 4438[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4438 -> 2683[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4439[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2384 -> 4439[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4439 -> 2684[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4440[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2384 -> 4440[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4440 -> 2685[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4441[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2384 -> 4441[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4441 -> 2686[label="",style="solid", color="blue", weight=3]; 52.72/30.40 2385[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4442[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4442[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4442 -> 2687[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4443[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4443[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4443 -> 2688[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4444[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4444[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4444 -> 2689[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4445[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4445[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4445 -> 2690[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4446[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4446[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4446 -> 2691[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4447[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4447[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4447 -> 2692[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4448[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4448[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4448 -> 2693[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4449[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4449[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4449 -> 2694[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4450[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4450[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4450 -> 2695[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4451[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4451[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4451 -> 2696[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4452[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4452[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4452 -> 2697[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4453[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4453[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4453 -> 2698[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4454[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4454[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4454 -> 2699[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4455[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4455[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4455 -> 2700[label="",style="solid", color="blue", weight=3]; 52.72/30.40 2386 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2386[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2386 -> 2701[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2386 -> 2702[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2387 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2387[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2387 -> 2703[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2387 -> 2704[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2388 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2388[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2388 -> 2705[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2388 -> 2706[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2389 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2389[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2389 -> 2707[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2389 -> 2708[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2390 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2390[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2390 -> 2709[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2390 -> 2710[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2391 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2391[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2391 -> 2711[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2391 -> 2712[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2392 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2392[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2392 -> 2713[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2392 -> 2714[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2393 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2393[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2393 -> 2715[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2393 -> 2716[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2394 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2394[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2394 -> 2717[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2394 -> 2718[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2395 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2395[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2395 -> 2719[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2395 -> 2720[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2396 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2396[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2396 -> 2721[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2396 -> 2722[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2397 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2397[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2397 -> 2723[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2397 -> 2724[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2398 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2398[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2398 -> 2725[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2398 -> 2726[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2399 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2399[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2399 -> 2727[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2399 -> 2728[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2400[label="yvy3000",fontsize=16,color="green",shape="box"];2401[label="yvy4000",fontsize=16,color="green",shape="box"];2402[label="yvy3000",fontsize=16,color="green",shape="box"];2403[label="yvy4000",fontsize=16,color="green",shape="box"];2404[label="yvy3000",fontsize=16,color="green",shape="box"];2405[label="yvy4000",fontsize=16,color="green",shape="box"];2406[label="yvy3000",fontsize=16,color="green",shape="box"];2407[label="yvy4000",fontsize=16,color="green",shape="box"];2408[label="yvy3000",fontsize=16,color="green",shape="box"];2409[label="yvy4000",fontsize=16,color="green",shape="box"];2410[label="yvy3000",fontsize=16,color="green",shape="box"];2411[label="yvy4000",fontsize=16,color="green",shape="box"];2412[label="yvy3000",fontsize=16,color="green",shape="box"];2413[label="yvy4000",fontsize=16,color="green",shape="box"];2414[label="yvy3000",fontsize=16,color="green",shape="box"];2415[label="yvy4000",fontsize=16,color="green",shape="box"];2416[label="yvy3000",fontsize=16,color="green",shape="box"];2417[label="yvy4000",fontsize=16,color="green",shape="box"];2418[label="yvy3000",fontsize=16,color="green",shape="box"];2419[label="yvy4000",fontsize=16,color="green",shape="box"];2420[label="yvy3000",fontsize=16,color="green",shape="box"];2421[label="yvy4000",fontsize=16,color="green",shape="box"];2422[label="yvy3000",fontsize=16,color="green",shape="box"];2423[label="yvy4000",fontsize=16,color="green",shape="box"];2424[label="yvy3000",fontsize=16,color="green",shape="box"];2425[label="yvy4000",fontsize=16,color="green",shape="box"];2426[label="yvy3000",fontsize=16,color="green",shape="box"];2427[label="yvy4000",fontsize=16,color="green",shape="box"];2428 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2428[label="yvy4001 * yvy3000",fontsize=16,color="magenta"];2428 -> 2729[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2428 -> 2730[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2429 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2429[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];2429 -> 2731[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2429 -> 2732[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2430 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2430[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2430 -> 2733[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2430 -> 2734[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2431 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2431[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2431 -> 2735[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2431 -> 2736[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2432 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2432[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2432 -> 2737[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2432 -> 2738[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2433 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2433[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2433 -> 2739[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2433 -> 2740[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2434 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2434[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2434 -> 2741[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2434 -> 2742[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2435 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2435[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2435 -> 2743[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2435 -> 2744[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2436 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2436[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2436 -> 2745[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2436 -> 2746[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2437 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2437[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2437 -> 2747[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2437 -> 2748[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2438 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2438[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2438 -> 2749[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2438 -> 2750[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2439 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2439[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2439 -> 2751[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2439 -> 2752[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2440 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2440[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2440 -> 2753[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2440 -> 2754[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2441 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2441[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2441 -> 2755[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2441 -> 2756[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2442 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2442[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2442 -> 2757[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2442 -> 2758[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2443 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2443[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2443 -> 2759[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2443 -> 2760[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2444 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2444[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2444 -> 2761[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2444 -> 2762[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2445 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2445[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2445 -> 2763[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2445 -> 2764[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2446 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2446[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2446 -> 2765[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2446 -> 2766[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2447 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2447[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2447 -> 2767[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2447 -> 2768[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2448 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2448[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2448 -> 2769[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2448 -> 2770[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2449 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2449[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2449 -> 2771[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2449 -> 2772[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2450 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2450[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2450 -> 2773[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2450 -> 2774[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2451 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2451[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2451 -> 2775[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2451 -> 2776[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2452 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2452[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2452 -> 2777[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2452 -> 2778[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2453 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2453[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2453 -> 2779[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2453 -> 2780[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2454 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2454[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2454 -> 2781[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2454 -> 2782[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2455 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2455[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2455 -> 2783[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2455 -> 2784[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2456 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2456[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2456 -> 2785[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2456 -> 2786[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2457 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2457[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2457 -> 2787[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2457 -> 2788[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2458 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2458[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2458 -> 2789[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2458 -> 2790[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2459 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2459[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2459 -> 2791[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2459 -> 2792[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2460 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2460[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2460 -> 2793[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2460 -> 2794[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2461 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2461[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2461 -> 2795[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2461 -> 2796[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2462[label="yvy3000",fontsize=16,color="green",shape="box"];2463[label="yvy4000",fontsize=16,color="green",shape="box"];2464[label="yvy3000",fontsize=16,color="green",shape="box"];2465[label="yvy4000",fontsize=16,color="green",shape="box"];2466[label="yvy3000",fontsize=16,color="green",shape="box"];2467[label="yvy4000",fontsize=16,color="green",shape="box"];2468[label="yvy3000",fontsize=16,color="green",shape="box"];2469[label="yvy4000",fontsize=16,color="green",shape="box"];2470[label="yvy3000",fontsize=16,color="green",shape="box"];2471[label="yvy4000",fontsize=16,color="green",shape="box"];2472[label="yvy3000",fontsize=16,color="green",shape="box"];2473[label="yvy4000",fontsize=16,color="green",shape="box"];2474[label="yvy3000",fontsize=16,color="green",shape="box"];2475[label="yvy4000",fontsize=16,color="green",shape="box"];2476[label="yvy3000",fontsize=16,color="green",shape="box"];2477[label="yvy4000",fontsize=16,color="green",shape="box"];2478[label="yvy3000",fontsize=16,color="green",shape="box"];2479[label="yvy4000",fontsize=16,color="green",shape="box"];2480[label="yvy3000",fontsize=16,color="green",shape="box"];2481[label="yvy4000",fontsize=16,color="green",shape="box"];2482[label="yvy3000",fontsize=16,color="green",shape="box"];2483[label="yvy4000",fontsize=16,color="green",shape="box"];2484[label="yvy3000",fontsize=16,color="green",shape="box"];2485[label="yvy4000",fontsize=16,color="green",shape="box"];2486[label="yvy3000",fontsize=16,color="green",shape="box"];2487[label="yvy4000",fontsize=16,color="green",shape="box"];2488[label="yvy3000",fontsize=16,color="green",shape="box"];2489[label="yvy4000",fontsize=16,color="green",shape="box"];2490[label="yvy3000",fontsize=16,color="green",shape="box"];2491[label="yvy4000",fontsize=16,color="green",shape="box"];2492[label="yvy3000",fontsize=16,color="green",shape="box"];2493[label="yvy4000",fontsize=16,color="green",shape="box"];2494[label="yvy3000",fontsize=16,color="green",shape="box"];2495[label="yvy4000",fontsize=16,color="green",shape="box"];2496[label="yvy3000",fontsize=16,color="green",shape="box"];2497[label="yvy4000",fontsize=16,color="green",shape="box"];2498[label="yvy3000",fontsize=16,color="green",shape="box"];2499[label="yvy4000",fontsize=16,color="green",shape="box"];2500[label="yvy3000",fontsize=16,color="green",shape="box"];2501[label="yvy4000",fontsize=16,color="green",shape="box"];2502[label="yvy3000",fontsize=16,color="green",shape="box"];2503[label="yvy4000",fontsize=16,color="green",shape="box"];2504[label="yvy3000",fontsize=16,color="green",shape="box"];2505[label="yvy4000",fontsize=16,color="green",shape="box"];2506[label="yvy3000",fontsize=16,color="green",shape="box"];2507[label="yvy4000",fontsize=16,color="green",shape="box"];2508[label="yvy3000",fontsize=16,color="green",shape="box"];2509[label="yvy4000",fontsize=16,color="green",shape="box"];2510[label="yvy3000",fontsize=16,color="green",shape="box"];2511[label="yvy4000",fontsize=16,color="green",shape="box"];2512[label="yvy3000",fontsize=16,color="green",shape="box"];2513[label="yvy4000",fontsize=16,color="green",shape="box"];2514[label="yvy3000",fontsize=16,color="green",shape="box"];2515[label="yvy4000",fontsize=16,color="green",shape="box"];2516[label="yvy3000",fontsize=16,color="green",shape="box"];2517[label="yvy4000",fontsize=16,color="green",shape="box"];2518[label="primEqInt (Pos (Succ yvy40000)) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];2518 -> 2797[label="",style="solid", color="black", weight=3]; 52.72/30.40 2519[label="primEqInt (Pos (Succ yvy40000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2519 -> 2798[label="",style="solid", color="black", weight=3]; 52.72/30.40 2520[label="False",fontsize=16,color="green",shape="box"];2521[label="primEqInt (Pos Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];2521 -> 2799[label="",style="solid", color="black", weight=3]; 52.72/30.40 2522[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2522 -> 2800[label="",style="solid", color="black", weight=3]; 52.72/30.40 2523[label="primEqInt (Pos Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];2523 -> 2801[label="",style="solid", color="black", weight=3]; 52.72/30.40 2524[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2524 -> 2802[label="",style="solid", color="black", weight=3]; 52.72/30.40 2525[label="False",fontsize=16,color="green",shape="box"];2526[label="primEqInt (Neg (Succ yvy40000)) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];2526 -> 2803[label="",style="solid", color="black", weight=3]; 52.72/30.40 2527[label="primEqInt (Neg (Succ yvy40000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2527 -> 2804[label="",style="solid", color="black", weight=3]; 52.72/30.40 2528[label="primEqInt (Neg Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];2528 -> 2805[label="",style="solid", color="black", weight=3]; 52.72/30.40 2529[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2529 -> 2806[label="",style="solid", color="black", weight=3]; 52.72/30.40 2530[label="primEqInt (Neg Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];2530 -> 2807[label="",style="solid", color="black", weight=3]; 52.72/30.40 2531[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2531 -> 2808[label="",style="solid", color="black", weight=3]; 52.72/30.40 2532[label="primEqNat (Succ yvy40000) yvy3000",fontsize=16,color="burlywood",shape="box"];4456[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2532 -> 4456[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4456 -> 2809[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4457[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2532 -> 4457[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4457 -> 2810[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2533[label="primEqNat Zero yvy3000",fontsize=16,color="burlywood",shape="box"];4458[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2533 -> 4458[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4458 -> 2811[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4459[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2533 -> 4459[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4459 -> 2812[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 2534[label="yvy3001",fontsize=16,color="green",shape="box"];2535[label="yvy4001",fontsize=16,color="green",shape="box"];2536 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2536[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2536 -> 2813[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2536 -> 2814[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2537 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2537[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2537 -> 2815[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2537 -> 2816[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2538 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2538[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2538 -> 2817[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2538 -> 2818[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2539 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2539[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2539 -> 2819[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2539 -> 2820[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2540 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2540[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2540 -> 2821[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2540 -> 2822[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2541 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2541[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2541 -> 2823[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2541 -> 2824[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2542 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2542[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2542 -> 2825[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2542 -> 2826[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2543 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2543[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2543 -> 2827[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2543 -> 2828[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2544 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2544[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2544 -> 2829[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2544 -> 2830[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2545 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2545[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2545 -> 2831[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2545 -> 2832[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2546 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2546[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2546 -> 2833[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2546 -> 2834[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2547 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2547[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2547 -> 2835[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2547 -> 2836[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2548 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2548[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2548 -> 2837[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2548 -> 2838[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2549 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2549[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2549 -> 2839[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2549 -> 2840[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2550 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2550[label="yvy4001 * yvy3000",fontsize=16,color="magenta"];2550 -> 2841[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2550 -> 2842[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2551 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2551[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];2551 -> 2843[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2551 -> 2844[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2553 -> 479[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2553[label="compare yvy165 yvy166",fontsize=16,color="magenta"];2553 -> 2845[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2553 -> 2846[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2552[label="yvy281 /= GT",fontsize=16,color="black",shape="triangle"];2552 -> 2847[label="",style="solid", color="black", weight=3]; 52.72/30.40 2554 -> 480[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2554[label="compare yvy165 yvy166",fontsize=16,color="magenta"];2554 -> 2848[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2554 -> 2849[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2555 -> 481[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2555[label="compare yvy165 yvy166",fontsize=16,color="magenta"];2555 -> 2850[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2555 -> 2851[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2556 -> 482[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2556[label="compare yvy165 yvy166",fontsize=16,color="magenta"];2556 -> 2852[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2556 -> 2853[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2557 -> 483[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2557[label="compare yvy165 yvy166",fontsize=16,color="magenta"];2557 -> 2854[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2557 -> 2855[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2558 -> 484[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2558[label="compare yvy165 yvy166",fontsize=16,color="magenta"];2558 -> 2856[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2558 -> 2857[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2561[label="(yvy1650,yvy1651) <= (yvy1660,yvy1661)",fontsize=16,color="black",shape="box"];2561 -> 2862[label="",style="solid", color="black", weight=3]; 52.72/30.40 2562[label="(yvy1650,yvy1651,yvy1652) <= (yvy1660,yvy1661,yvy1662)",fontsize=16,color="black",shape="box"];2562 -> 2863[label="",style="solid", color="black", weight=3]; 52.72/30.40 2563[label="False <= False",fontsize=16,color="black",shape="box"];2563 -> 2864[label="",style="solid", color="black", weight=3]; 52.72/30.40 2564[label="False <= True",fontsize=16,color="black",shape="box"];2564 -> 2865[label="",style="solid", color="black", weight=3]; 52.72/30.40 2565[label="True <= False",fontsize=16,color="black",shape="box"];2565 -> 2866[label="",style="solid", color="black", weight=3]; 52.72/30.40 2566[label="True <= True",fontsize=16,color="black",shape="box"];2566 -> 2867[label="",style="solid", color="black", weight=3]; 52.72/30.40 2567[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2567 -> 2868[label="",style="solid", color="black", weight=3]; 52.72/30.40 2568[label="Nothing <= Just yvy1660",fontsize=16,color="black",shape="box"];2568 -> 2869[label="",style="solid", color="black", weight=3]; 52.72/30.40 2569[label="Just yvy1650 <= Nothing",fontsize=16,color="black",shape="box"];2569 -> 2870[label="",style="solid", color="black", weight=3]; 52.72/30.40 2570[label="Just yvy1650 <= Just yvy1660",fontsize=16,color="black",shape="box"];2570 -> 2871[label="",style="solid", color="black", weight=3]; 52.72/30.40 2571[label="Left yvy1650 <= Left yvy1660",fontsize=16,color="black",shape="box"];2571 -> 2872[label="",style="solid", color="black", weight=3]; 52.72/30.40 2572[label="Left yvy1650 <= Right yvy1660",fontsize=16,color="black",shape="box"];2572 -> 2873[label="",style="solid", color="black", weight=3]; 52.72/30.40 2573[label="Right yvy1650 <= Left yvy1660",fontsize=16,color="black",shape="box"];2573 -> 2874[label="",style="solid", color="black", weight=3]; 52.72/30.40 2574[label="Right yvy1650 <= Right yvy1660",fontsize=16,color="black",shape="box"];2574 -> 2875[label="",style="solid", color="black", weight=3]; 52.72/30.40 2575[label="LT <= LT",fontsize=16,color="black",shape="box"];2575 -> 2876[label="",style="solid", color="black", weight=3]; 52.72/30.40 2576[label="LT <= EQ",fontsize=16,color="black",shape="box"];2576 -> 2877[label="",style="solid", color="black", weight=3]; 52.72/30.40 2577[label="LT <= GT",fontsize=16,color="black",shape="box"];2577 -> 2878[label="",style="solid", color="black", weight=3]; 52.72/30.40 2578[label="EQ <= LT",fontsize=16,color="black",shape="box"];2578 -> 2879[label="",style="solid", color="black", weight=3]; 52.72/30.40 2579[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2579 -> 2880[label="",style="solid", color="black", weight=3]; 52.72/30.40 2580[label="EQ <= GT",fontsize=16,color="black",shape="box"];2580 -> 2881[label="",style="solid", color="black", weight=3]; 52.72/30.40 2581[label="GT <= LT",fontsize=16,color="black",shape="box"];2581 -> 2882[label="",style="solid", color="black", weight=3]; 52.72/30.40 2582[label="GT <= EQ",fontsize=16,color="black",shape="box"];2582 -> 2883[label="",style="solid", color="black", weight=3]; 52.72/30.40 2583[label="GT <= GT",fontsize=16,color="black",shape="box"];2583 -> 2884[label="",style="solid", color="black", weight=3]; 52.72/30.40 2559 -> 491[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2559[label="compare yvy165 yvy166",fontsize=16,color="magenta"];2559 -> 2858[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2559 -> 2859[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2560 -> 492[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2560[label="compare yvy165 yvy166",fontsize=16,color="magenta"];2560 -> 2860[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2560 -> 2861[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2584[label="GT",fontsize=16,color="green",shape="box"];2585[label="GT",fontsize=16,color="green",shape="box"];2586[label="GT",fontsize=16,color="green",shape="box"];2587 -> 1806[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2587[label="primPlusNat (primMulNat yvy40000 (Succ yvy30100)) (Succ yvy30100)",fontsize=16,color="magenta"];2587 -> 2885[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2587 -> 2886[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2588[label="Zero",fontsize=16,color="green",shape="box"];2589[label="Zero",fontsize=16,color="green",shape="box"];2590[label="Zero",fontsize=16,color="green",shape="box"];2591[label="Succ yvy9300",fontsize=16,color="green",shape="box"];2592 -> 1806[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2592[label="primPlusNat (primPlusNat (primPlusNat yvy270 (Succ yvy9300)) (Succ yvy9300)) (Succ yvy9300)",fontsize=16,color="magenta"];2592 -> 2887[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2592 -> 2888[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2593[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];2594[label="FiniteMap.mkBranchLeft_size (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124) yvy118 (FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129)",fontsize=16,color="black",shape="box"];2594 -> 2889[label="",style="solid", color="black", weight=3]; 52.72/30.40 2595[label="FiniteMap.Branch yvy125 yvy126 yvy127 yvy128 yvy129",fontsize=16,color="green",shape="box"];2596[label="Succ (Succ (primPlusNat yvy90200 yvy21000))",fontsize=16,color="green",shape="box"];2596 -> 2890[label="",style="dashed", color="green", weight=3]; 52.72/30.40 2597[label="Succ yvy90200",fontsize=16,color="green",shape="box"];2598[label="Succ yvy21000",fontsize=16,color="green",shape="box"];2599[label="Zero",fontsize=16,color="green",shape="box"];2600[label="yvy90200",fontsize=16,color="green",shape="box"];2601[label="yvy21000",fontsize=16,color="green",shape="box"];2602[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) yvy50 yvy51 yvy90 yvy54",fontsize=16,color="black",shape="box"];2602 -> 2891[label="",style="solid", color="black", weight=3]; 52.72/30.40 2603[label="error []",fontsize=16,color="red",shape="box"];2604[label="FiniteMap.mkBalBranch6MkBalBranch12 yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904)",fontsize=16,color="black",shape="box"];2604 -> 2892[label="",style="solid", color="black", weight=3]; 52.72/30.40 2605 -> 1386[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2605[label="FiniteMap.sizeFM yvy543",fontsize=16,color="magenta"];2605 -> 2893[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2606 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2606[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];2606 -> 2894[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2606 -> 2895[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2607[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 False",fontsize=16,color="black",shape="box"];2607 -> 2896[label="",style="solid", color="black", weight=3]; 52.72/30.40 2608[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 True",fontsize=16,color="black",shape="box"];2608 -> 2897[label="",style="solid", color="black", weight=3]; 52.72/30.40 2609[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];2610[label="FiniteMap.mkBranchLeft_size yvy90 yvy50 yvy54",fontsize=16,color="black",shape="box"];2610 -> 2898[label="",style="solid", color="black", weight=3]; 52.72/30.40 2611[label="compare0 (yvy247,yvy248) (yvy249,yvy250) otherwise",fontsize=16,color="black",shape="box"];2611 -> 2899[label="",style="solid", color="black", weight=3]; 52.72/30.40 2612[label="LT",fontsize=16,color="green",shape="box"];2613[label="yvy155",fontsize=16,color="green",shape="box"];2614[label="yvy158",fontsize=16,color="green",shape="box"];2615[label="yvy155",fontsize=16,color="green",shape="box"];2616[label="yvy158",fontsize=16,color="green",shape="box"];2617[label="yvy155",fontsize=16,color="green",shape="box"];2618[label="yvy158",fontsize=16,color="green",shape="box"];2619[label="yvy155",fontsize=16,color="green",shape="box"];2620[label="yvy158",fontsize=16,color="green",shape="box"];2621[label="yvy155",fontsize=16,color="green",shape="box"];2622[label="yvy158",fontsize=16,color="green",shape="box"];2623[label="yvy155",fontsize=16,color="green",shape="box"];2624[label="yvy158",fontsize=16,color="green",shape="box"];2625[label="yvy155",fontsize=16,color="green",shape="box"];2626[label="yvy158",fontsize=16,color="green",shape="box"];2627[label="yvy155",fontsize=16,color="green",shape="box"];2628[label="yvy158",fontsize=16,color="green",shape="box"];2629[label="yvy155",fontsize=16,color="green",shape="box"];2630[label="yvy158",fontsize=16,color="green",shape="box"];2631[label="yvy155",fontsize=16,color="green",shape="box"];2632[label="yvy158",fontsize=16,color="green",shape="box"];2633[label="yvy155",fontsize=16,color="green",shape="box"];2634[label="yvy158",fontsize=16,color="green",shape="box"];2635[label="yvy155",fontsize=16,color="green",shape="box"];2636[label="yvy158",fontsize=16,color="green",shape="box"];2637[label="yvy155",fontsize=16,color="green",shape="box"];2638[label="yvy158",fontsize=16,color="green",shape="box"];2639[label="yvy155",fontsize=16,color="green",shape="box"];2640[label="yvy158",fontsize=16,color="green",shape="box"];2641 -> 1926[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2641[label="yvy156 <= yvy159",fontsize=16,color="magenta"];2641 -> 2900[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2641 -> 2901[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2642 -> 1927[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2642[label="yvy156 <= yvy159",fontsize=16,color="magenta"];2642 -> 2902[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2642 -> 2903[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2643 -> 1928[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2643[label="yvy156 <= yvy159",fontsize=16,color="magenta"];2643 -> 2904[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2643 -> 2905[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2644 -> 1929[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2644[label="yvy156 <= yvy159",fontsize=16,color="magenta"];2644 -> 2906[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2644 -> 2907[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2645 -> 1930[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2645[label="yvy156 <= yvy159",fontsize=16,color="magenta"];2645 -> 2908[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2645 -> 2909[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2646 -> 1931[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2646[label="yvy156 <= yvy159",fontsize=16,color="magenta"];2646 -> 2910[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2646 -> 2911[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2647 -> 1932[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2647[label="yvy156 <= yvy159",fontsize=16,color="magenta"];2647 -> 2912[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2647 -> 2913[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2648 -> 1933[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2648[label="yvy156 <= yvy159",fontsize=16,color="magenta"];2648 -> 2914[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2648 -> 2915[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2649 -> 1934[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2649[label="yvy156 <= yvy159",fontsize=16,color="magenta"];2649 -> 2916[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2649 -> 2917[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2650 -> 1935[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2650[label="yvy156 <= yvy159",fontsize=16,color="magenta"];2650 -> 2918[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2650 -> 2919[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2651 -> 1936[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2651[label="yvy156 <= yvy159",fontsize=16,color="magenta"];2651 -> 2920[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2651 -> 2921[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2652 -> 1937[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2652[label="yvy156 <= yvy159",fontsize=16,color="magenta"];2652 -> 2922[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2652 -> 2923[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2653 -> 1938[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2653[label="yvy156 <= yvy159",fontsize=16,color="magenta"];2653 -> 2924[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2653 -> 2925[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2654 -> 1939[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2654[label="yvy156 <= yvy159",fontsize=16,color="magenta"];2654 -> 2926[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2654 -> 2927[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2655 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2655[label="yvy155 == yvy158",fontsize=16,color="magenta"];2655 -> 2928[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2655 -> 2929[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2656 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2656[label="yvy155 == yvy158",fontsize=16,color="magenta"];2656 -> 2930[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2656 -> 2931[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2657 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2657[label="yvy155 == yvy158",fontsize=16,color="magenta"];2657 -> 2932[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2657 -> 2933[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2658 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2658[label="yvy155 == yvy158",fontsize=16,color="magenta"];2658 -> 2934[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2658 -> 2935[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2659 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2659[label="yvy155 == yvy158",fontsize=16,color="magenta"];2659 -> 2936[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2659 -> 2937[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2660 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2660[label="yvy155 == yvy158",fontsize=16,color="magenta"];2660 -> 2938[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2660 -> 2939[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2661 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2661[label="yvy155 == yvy158",fontsize=16,color="magenta"];2661 -> 2940[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2661 -> 2941[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2662 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2662[label="yvy155 == yvy158",fontsize=16,color="magenta"];2662 -> 2942[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2662 -> 2943[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2663 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2663[label="yvy155 == yvy158",fontsize=16,color="magenta"];2663 -> 2944[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2663 -> 2945[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2664 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2664[label="yvy155 == yvy158",fontsize=16,color="magenta"];2664 -> 2946[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2664 -> 2947[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2665 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2665[label="yvy155 == yvy158",fontsize=16,color="magenta"];2665 -> 2948[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2665 -> 2949[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2666 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2666[label="yvy155 == yvy158",fontsize=16,color="magenta"];2666 -> 2950[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2666 -> 2951[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2667 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2667[label="yvy155 == yvy158",fontsize=16,color="magenta"];2667 -> 2952[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2667 -> 2953[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2668 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2668[label="yvy155 == yvy158",fontsize=16,color="magenta"];2668 -> 2954[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2668 -> 2955[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2669[label="yvy280",fontsize=16,color="green",shape="box"];2670[label="True",fontsize=16,color="green",shape="box"];2671[label="compare0 (yvy262,yvy263,yvy264) (yvy265,yvy266,yvy267) otherwise",fontsize=16,color="black",shape="box"];2671 -> 2956[label="",style="solid", color="black", weight=3]; 52.72/30.40 2672[label="LT",fontsize=16,color="green",shape="box"];2673 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2673[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2673 -> 2957[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2673 -> 2958[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2674 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2674[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2674 -> 2959[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2674 -> 2960[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2675 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2675[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2675 -> 2961[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2675 -> 2962[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2676 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2676[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2676 -> 2963[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2676 -> 2964[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2677 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2677[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2677 -> 2965[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2677 -> 2966[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2678 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2678[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2678 -> 2967[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2678 -> 2968[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2679 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2679[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2679 -> 2969[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2679 -> 2970[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2680 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2680[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2680 -> 2971[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2680 -> 2972[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2681 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2681[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2681 -> 2973[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2681 -> 2974[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2682 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2682[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2682 -> 2975[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2682 -> 2976[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2683 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2683[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2683 -> 2977[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2683 -> 2978[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2684 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2684[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2684 -> 2979[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2684 -> 2980[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2685 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2685[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2685 -> 2981[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2685 -> 2982[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2686 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2686[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2686 -> 2983[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2686 -> 2984[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2687 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2687[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2687 -> 2985[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2687 -> 2986[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2688 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2688[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2688 -> 2987[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2688 -> 2988[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2689 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2689[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2689 -> 2989[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2689 -> 2990[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2690 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2690[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2690 -> 2991[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2690 -> 2992[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2691 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2691[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2691 -> 2993[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2691 -> 2994[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2692 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2692[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2692 -> 2995[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2692 -> 2996[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2693 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2693[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2693 -> 2997[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2693 -> 2998[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2694 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2694[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2694 -> 2999[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2694 -> 3000[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2695 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2695[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2695 -> 3001[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2695 -> 3002[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2696 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2696[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2696 -> 3003[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2696 -> 3004[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2697 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2697[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2697 -> 3005[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2697 -> 3006[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2698 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2698[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2698 -> 3007[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2698 -> 3008[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2699 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2699[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2699 -> 3009[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2699 -> 3010[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2700 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2700[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2700 -> 3011[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2700 -> 3012[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2701[label="yvy3000",fontsize=16,color="green",shape="box"];2702[label="yvy4000",fontsize=16,color="green",shape="box"];2703[label="yvy3000",fontsize=16,color="green",shape="box"];2704[label="yvy4000",fontsize=16,color="green",shape="box"];2705[label="yvy3000",fontsize=16,color="green",shape="box"];2706[label="yvy4000",fontsize=16,color="green",shape="box"];2707[label="yvy3000",fontsize=16,color="green",shape="box"];2708[label="yvy4000",fontsize=16,color="green",shape="box"];2709[label="yvy3000",fontsize=16,color="green",shape="box"];2710[label="yvy4000",fontsize=16,color="green",shape="box"];2711[label="yvy3000",fontsize=16,color="green",shape="box"];2712[label="yvy4000",fontsize=16,color="green",shape="box"];2713[label="yvy3000",fontsize=16,color="green",shape="box"];2714[label="yvy4000",fontsize=16,color="green",shape="box"];2715[label="yvy3000",fontsize=16,color="green",shape="box"];2716[label="yvy4000",fontsize=16,color="green",shape="box"];2717[label="yvy3000",fontsize=16,color="green",shape="box"];2718[label="yvy4000",fontsize=16,color="green",shape="box"];2719[label="yvy3000",fontsize=16,color="green",shape="box"];2720[label="yvy4000",fontsize=16,color="green",shape="box"];2721[label="yvy3000",fontsize=16,color="green",shape="box"];2722[label="yvy4000",fontsize=16,color="green",shape="box"];2723[label="yvy3000",fontsize=16,color="green",shape="box"];2724[label="yvy4000",fontsize=16,color="green",shape="box"];2725[label="yvy3000",fontsize=16,color="green",shape="box"];2726[label="yvy4000",fontsize=16,color="green",shape="box"];2727[label="yvy3000",fontsize=16,color="green",shape="box"];2728[label="yvy4000",fontsize=16,color="green",shape="box"];2729[label="yvy4001",fontsize=16,color="green",shape="box"];2730[label="yvy3000",fontsize=16,color="green",shape="box"];2731[label="yvy4000",fontsize=16,color="green",shape="box"];2732[label="yvy3001",fontsize=16,color="green",shape="box"];2733[label="yvy3001",fontsize=16,color="green",shape="box"];2734[label="yvy4001",fontsize=16,color="green",shape="box"];2735[label="yvy3001",fontsize=16,color="green",shape="box"];2736[label="yvy4001",fontsize=16,color="green",shape="box"];2737[label="yvy3001",fontsize=16,color="green",shape="box"];2738[label="yvy4001",fontsize=16,color="green",shape="box"];2739[label="yvy3001",fontsize=16,color="green",shape="box"];2740[label="yvy4001",fontsize=16,color="green",shape="box"];2741[label="yvy3001",fontsize=16,color="green",shape="box"];2742[label="yvy4001",fontsize=16,color="green",shape="box"];2743[label="yvy3001",fontsize=16,color="green",shape="box"];2744[label="yvy4001",fontsize=16,color="green",shape="box"];2745[label="yvy3001",fontsize=16,color="green",shape="box"];2746[label="yvy4001",fontsize=16,color="green",shape="box"];2747[label="yvy3001",fontsize=16,color="green",shape="box"];2748[label="yvy4001",fontsize=16,color="green",shape="box"];2749[label="yvy3001",fontsize=16,color="green",shape="box"];2750[label="yvy4001",fontsize=16,color="green",shape="box"];2751[label="yvy3001",fontsize=16,color="green",shape="box"];2752[label="yvy4001",fontsize=16,color="green",shape="box"];2753[label="yvy3001",fontsize=16,color="green",shape="box"];2754[label="yvy4001",fontsize=16,color="green",shape="box"];2755[label="yvy3001",fontsize=16,color="green",shape="box"];2756[label="yvy4001",fontsize=16,color="green",shape="box"];2757[label="yvy3001",fontsize=16,color="green",shape="box"];2758[label="yvy4001",fontsize=16,color="green",shape="box"];2759[label="yvy3001",fontsize=16,color="green",shape="box"];2760[label="yvy4001",fontsize=16,color="green",shape="box"];2761[label="yvy3000",fontsize=16,color="green",shape="box"];2762[label="yvy4000",fontsize=16,color="green",shape="box"];2763[label="yvy3000",fontsize=16,color="green",shape="box"];2764[label="yvy4000",fontsize=16,color="green",shape="box"];2765[label="yvy3000",fontsize=16,color="green",shape="box"];2766[label="yvy4000",fontsize=16,color="green",shape="box"];2767[label="yvy3000",fontsize=16,color="green",shape="box"];2768[label="yvy4000",fontsize=16,color="green",shape="box"];2769[label="yvy3000",fontsize=16,color="green",shape="box"];2770[label="yvy4000",fontsize=16,color="green",shape="box"];2771[label="yvy3000",fontsize=16,color="green",shape="box"];2772[label="yvy4000",fontsize=16,color="green",shape="box"];2773[label="yvy3000",fontsize=16,color="green",shape="box"];2774[label="yvy4000",fontsize=16,color="green",shape="box"];2775[label="yvy3000",fontsize=16,color="green",shape="box"];2776[label="yvy4000",fontsize=16,color="green",shape="box"];2777[label="yvy3000",fontsize=16,color="green",shape="box"];2778[label="yvy4000",fontsize=16,color="green",shape="box"];2779[label="yvy3000",fontsize=16,color="green",shape="box"];2780[label="yvy4000",fontsize=16,color="green",shape="box"];2781[label="yvy3000",fontsize=16,color="green",shape="box"];2782[label="yvy4000",fontsize=16,color="green",shape="box"];2783[label="yvy3000",fontsize=16,color="green",shape="box"];2784[label="yvy4000",fontsize=16,color="green",shape="box"];2785[label="yvy3000",fontsize=16,color="green",shape="box"];2786[label="yvy4000",fontsize=16,color="green",shape="box"];2787[label="yvy3000",fontsize=16,color="green",shape="box"];2788[label="yvy4000",fontsize=16,color="green",shape="box"];2789[label="yvy3001",fontsize=16,color="green",shape="box"];2790[label="yvy4001",fontsize=16,color="green",shape="box"];2791[label="yvy3001",fontsize=16,color="green",shape="box"];2792[label="yvy4001",fontsize=16,color="green",shape="box"];2793[label="yvy3000",fontsize=16,color="green",shape="box"];2794[label="yvy4000",fontsize=16,color="green",shape="box"];2795[label="yvy3000",fontsize=16,color="green",shape="box"];2796[label="yvy4000",fontsize=16,color="green",shape="box"];2797 -> 2162[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2797[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];2797 -> 3013[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2797 -> 3014[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2798[label="False",fontsize=16,color="green",shape="box"];2799[label="False",fontsize=16,color="green",shape="box"];2800[label="True",fontsize=16,color="green",shape="box"];2801[label="False",fontsize=16,color="green",shape="box"];2802[label="True",fontsize=16,color="green",shape="box"];2803 -> 2162[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2803[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];2803 -> 3015[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2803 -> 3016[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2804[label="False",fontsize=16,color="green",shape="box"];2805[label="False",fontsize=16,color="green",shape="box"];2806[label="True",fontsize=16,color="green",shape="box"];2807[label="False",fontsize=16,color="green",shape="box"];2808[label="True",fontsize=16,color="green",shape="box"];2809[label="primEqNat (Succ yvy40000) (Succ yvy30000)",fontsize=16,color="black",shape="box"];2809 -> 3017[label="",style="solid", color="black", weight=3]; 52.72/30.40 2810[label="primEqNat (Succ yvy40000) Zero",fontsize=16,color="black",shape="box"];2810 -> 3018[label="",style="solid", color="black", weight=3]; 52.72/30.40 2811[label="primEqNat Zero (Succ yvy30000)",fontsize=16,color="black",shape="box"];2811 -> 3019[label="",style="solid", color="black", weight=3]; 52.72/30.40 2812[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2812 -> 3020[label="",style="solid", color="black", weight=3]; 52.72/30.40 2813[label="yvy3000",fontsize=16,color="green",shape="box"];2814[label="yvy4000",fontsize=16,color="green",shape="box"];2815[label="yvy3000",fontsize=16,color="green",shape="box"];2816[label="yvy4000",fontsize=16,color="green",shape="box"];2817[label="yvy3000",fontsize=16,color="green",shape="box"];2818[label="yvy4000",fontsize=16,color="green",shape="box"];2819[label="yvy3000",fontsize=16,color="green",shape="box"];2820[label="yvy4000",fontsize=16,color="green",shape="box"];2821[label="yvy3000",fontsize=16,color="green",shape="box"];2822[label="yvy4000",fontsize=16,color="green",shape="box"];2823[label="yvy3000",fontsize=16,color="green",shape="box"];2824[label="yvy4000",fontsize=16,color="green",shape="box"];2825[label="yvy3000",fontsize=16,color="green",shape="box"];2826[label="yvy4000",fontsize=16,color="green",shape="box"];2827[label="yvy3000",fontsize=16,color="green",shape="box"];2828[label="yvy4000",fontsize=16,color="green",shape="box"];2829[label="yvy3000",fontsize=16,color="green",shape="box"];2830[label="yvy4000",fontsize=16,color="green",shape="box"];2831[label="yvy3000",fontsize=16,color="green",shape="box"];2832[label="yvy4000",fontsize=16,color="green",shape="box"];2833[label="yvy3000",fontsize=16,color="green",shape="box"];2834[label="yvy4000",fontsize=16,color="green",shape="box"];2835[label="yvy3000",fontsize=16,color="green",shape="box"];2836[label="yvy4000",fontsize=16,color="green",shape="box"];2837[label="yvy3000",fontsize=16,color="green",shape="box"];2838[label="yvy4000",fontsize=16,color="green",shape="box"];2839[label="yvy3000",fontsize=16,color="green",shape="box"];2840[label="yvy4000",fontsize=16,color="green",shape="box"];2841[label="yvy4001",fontsize=16,color="green",shape="box"];2842[label="yvy3000",fontsize=16,color="green",shape="box"];2843[label="yvy4000",fontsize=16,color="green",shape="box"];2844[label="yvy3001",fontsize=16,color="green",shape="box"];2845[label="yvy165",fontsize=16,color="green",shape="box"];2846[label="yvy166",fontsize=16,color="green",shape="box"];2847 -> 3021[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2847[label="not (yvy281 == GT)",fontsize=16,color="magenta"];2847 -> 3022[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2848[label="yvy165",fontsize=16,color="green",shape="box"];2849[label="yvy166",fontsize=16,color="green",shape="box"];2850[label="yvy165",fontsize=16,color="green",shape="box"];2851[label="yvy166",fontsize=16,color="green",shape="box"];2852[label="yvy165",fontsize=16,color="green",shape="box"];2853[label="yvy166",fontsize=16,color="green",shape="box"];2854[label="yvy165",fontsize=16,color="green",shape="box"];2855[label="yvy166",fontsize=16,color="green",shape="box"];2856[label="yvy165",fontsize=16,color="green",shape="box"];2857[label="yvy166",fontsize=16,color="green",shape="box"];2862 -> 2330[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2862[label="yvy1650 < yvy1660 || yvy1650 == yvy1660 && yvy1651 <= yvy1661",fontsize=16,color="magenta"];2862 -> 3023[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2862 -> 3024[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2863 -> 2330[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2863[label="yvy1650 < yvy1660 || yvy1650 == yvy1660 && (yvy1651 < yvy1661 || yvy1651 == yvy1661 && yvy1652 <= yvy1662)",fontsize=16,color="magenta"];2863 -> 3025[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2863 -> 3026[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2864[label="True",fontsize=16,color="green",shape="box"];2865[label="True",fontsize=16,color="green",shape="box"];2866[label="False",fontsize=16,color="green",shape="box"];2867[label="True",fontsize=16,color="green",shape="box"];2868[label="True",fontsize=16,color="green",shape="box"];2869[label="True",fontsize=16,color="green",shape="box"];2870[label="False",fontsize=16,color="green",shape="box"];2871[label="yvy1650 <= yvy1660",fontsize=16,color="blue",shape="box"];4460[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4460[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4460 -> 3027[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4461[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4461[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4461 -> 3028[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4462[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4462[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4462 -> 3029[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4463[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4463[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4463 -> 3030[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4464[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4464[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4464 -> 3031[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4465[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4465[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4465 -> 3032[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4466[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4466[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4466 -> 3033[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4467[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4467[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4467 -> 3034[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4468[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4468[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4468 -> 3035[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4469[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4469[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4469 -> 3036[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4470[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4470[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4470 -> 3037[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4471[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4471[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4471 -> 3038[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4472[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4472[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4472 -> 3039[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4473[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4473[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4473 -> 3040[label="",style="solid", color="blue", weight=3]; 52.72/30.40 2872[label="yvy1650 <= yvy1660",fontsize=16,color="blue",shape="box"];4474[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2872 -> 4474[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4474 -> 3041[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4475[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2872 -> 4475[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4475 -> 3042[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4476[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2872 -> 4476[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4476 -> 3043[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4477[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2872 -> 4477[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4477 -> 3044[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4478[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2872 -> 4478[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4478 -> 3045[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4479[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2872 -> 4479[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4479 -> 3046[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4480[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2872 -> 4480[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4480 -> 3047[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4481[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2872 -> 4481[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4481 -> 3048[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4482[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2872 -> 4482[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4482 -> 3049[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4483[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2872 -> 4483[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4483 -> 3050[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4484[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2872 -> 4484[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4484 -> 3051[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4485[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2872 -> 4485[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4485 -> 3052[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4486[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2872 -> 4486[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4486 -> 3053[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4487[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2872 -> 4487[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4487 -> 3054[label="",style="solid", color="blue", weight=3]; 52.72/30.40 2873[label="True",fontsize=16,color="green",shape="box"];2874[label="False",fontsize=16,color="green",shape="box"];2875[label="yvy1650 <= yvy1660",fontsize=16,color="blue",shape="box"];4488[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4488[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4488 -> 3055[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4489[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4489[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4489 -> 3056[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4490[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4490[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4490 -> 3057[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4491[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4491[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4491 -> 3058[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4492[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4492[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4492 -> 3059[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4493[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4493[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4493 -> 3060[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4494[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4494[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4494 -> 3061[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4495[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4495[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4495 -> 3062[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4496[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4496[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4496 -> 3063[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4497[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4497[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4497 -> 3064[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4498[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4498[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4498 -> 3065[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4499[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4499[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4499 -> 3066[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4500[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4500[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4500 -> 3067[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4501[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4501[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4501 -> 3068[label="",style="solid", color="blue", weight=3]; 52.72/30.40 2876[label="True",fontsize=16,color="green",shape="box"];2877[label="True",fontsize=16,color="green",shape="box"];2878[label="True",fontsize=16,color="green",shape="box"];2879[label="False",fontsize=16,color="green",shape="box"];2880[label="True",fontsize=16,color="green",shape="box"];2881[label="True",fontsize=16,color="green",shape="box"];2882[label="False",fontsize=16,color="green",shape="box"];2883[label="False",fontsize=16,color="green",shape="box"];2884[label="True",fontsize=16,color="green",shape="box"];2858[label="yvy165",fontsize=16,color="green",shape="box"];2859[label="yvy166",fontsize=16,color="green",shape="box"];2860[label="yvy165",fontsize=16,color="green",shape="box"];2861[label="yvy166",fontsize=16,color="green",shape="box"];2885[label="Succ yvy30100",fontsize=16,color="green",shape="box"];2886 -> 1796[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2886[label="primMulNat yvy40000 (Succ yvy30100)",fontsize=16,color="magenta"];2886 -> 3069[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2886 -> 3070[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2887[label="Succ yvy9300",fontsize=16,color="green",shape="box"];2888 -> 1806[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2888[label="primPlusNat (primPlusNat yvy270 (Succ yvy9300)) (Succ yvy9300)",fontsize=16,color="magenta"];2888 -> 3071[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2888 -> 3072[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2889 -> 1386[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2889[label="FiniteMap.sizeFM (FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124)",fontsize=16,color="magenta"];2889 -> 3073[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2890 -> 1806[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2890[label="primPlusNat yvy90200 yvy21000",fontsize=16,color="magenta"];2890 -> 3074[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2890 -> 3075[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2891 -> 1007[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2891[label="FiniteMap.mkBranchResult yvy50 yvy51 yvy90 yvy54",fontsize=16,color="magenta"];2892 -> 3076[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2892[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54 yvy900 yvy901 yvy902 yvy903 yvy904 (FiniteMap.sizeFM yvy904 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy903)",fontsize=16,color="magenta"];2892 -> 3077[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2893[label="yvy543",fontsize=16,color="green",shape="box"];2894[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2895 -> 1386[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2895[label="FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];2895 -> 3078[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2896[label="FiniteMap.mkBalBranch6MkBalBranch00 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 otherwise",fontsize=16,color="black",shape="box"];2896 -> 3079[label="",style="solid", color="black", weight=3]; 52.72/30.40 2897[label="FiniteMap.mkBalBranch6Single_L yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2897 -> 3080[label="",style="solid", color="black", weight=3]; 52.72/30.40 2898 -> 1386[label="",style="dashed", color="red", weight=0]; 52.72/30.40 2898[label="FiniteMap.sizeFM yvy90",fontsize=16,color="magenta"];2898 -> 3081[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 2899[label="compare0 (yvy247,yvy248) (yvy249,yvy250) True",fontsize=16,color="black",shape="box"];2899 -> 3082[label="",style="solid", color="black", weight=3]; 52.72/30.40 2900[label="yvy156",fontsize=16,color="green",shape="box"];2901[label="yvy159",fontsize=16,color="green",shape="box"];2902[label="yvy156",fontsize=16,color="green",shape="box"];2903[label="yvy159",fontsize=16,color="green",shape="box"];2904[label="yvy156",fontsize=16,color="green",shape="box"];2905[label="yvy159",fontsize=16,color="green",shape="box"];2906[label="yvy156",fontsize=16,color="green",shape="box"];2907[label="yvy159",fontsize=16,color="green",shape="box"];2908[label="yvy156",fontsize=16,color="green",shape="box"];2909[label="yvy159",fontsize=16,color="green",shape="box"];2910[label="yvy156",fontsize=16,color="green",shape="box"];2911[label="yvy159",fontsize=16,color="green",shape="box"];2912[label="yvy156",fontsize=16,color="green",shape="box"];2913[label="yvy159",fontsize=16,color="green",shape="box"];2914[label="yvy156",fontsize=16,color="green",shape="box"];2915[label="yvy159",fontsize=16,color="green",shape="box"];2916[label="yvy156",fontsize=16,color="green",shape="box"];2917[label="yvy159",fontsize=16,color="green",shape="box"];2918[label="yvy156",fontsize=16,color="green",shape="box"];2919[label="yvy159",fontsize=16,color="green",shape="box"];2920[label="yvy156",fontsize=16,color="green",shape="box"];2921[label="yvy159",fontsize=16,color="green",shape="box"];2922[label="yvy156",fontsize=16,color="green",shape="box"];2923[label="yvy159",fontsize=16,color="green",shape="box"];2924[label="yvy156",fontsize=16,color="green",shape="box"];2925[label="yvy159",fontsize=16,color="green",shape="box"];2926[label="yvy156",fontsize=16,color="green",shape="box"];2927[label="yvy159",fontsize=16,color="green",shape="box"];2928[label="yvy158",fontsize=16,color="green",shape="box"];2929[label="yvy155",fontsize=16,color="green",shape="box"];2930[label="yvy158",fontsize=16,color="green",shape="box"];2931[label="yvy155",fontsize=16,color="green",shape="box"];2932[label="yvy158",fontsize=16,color="green",shape="box"];2933[label="yvy155",fontsize=16,color="green",shape="box"];2934[label="yvy158",fontsize=16,color="green",shape="box"];2935[label="yvy155",fontsize=16,color="green",shape="box"];2936[label="yvy158",fontsize=16,color="green",shape="box"];2937[label="yvy155",fontsize=16,color="green",shape="box"];2938[label="yvy158",fontsize=16,color="green",shape="box"];2939[label="yvy155",fontsize=16,color="green",shape="box"];2940[label="yvy158",fontsize=16,color="green",shape="box"];2941[label="yvy155",fontsize=16,color="green",shape="box"];2942[label="yvy158",fontsize=16,color="green",shape="box"];2943[label="yvy155",fontsize=16,color="green",shape="box"];2944[label="yvy158",fontsize=16,color="green",shape="box"];2945[label="yvy155",fontsize=16,color="green",shape="box"];2946[label="yvy158",fontsize=16,color="green",shape="box"];2947[label="yvy155",fontsize=16,color="green",shape="box"];2948[label="yvy158",fontsize=16,color="green",shape="box"];2949[label="yvy155",fontsize=16,color="green",shape="box"];2950[label="yvy158",fontsize=16,color="green",shape="box"];2951[label="yvy155",fontsize=16,color="green",shape="box"];2952[label="yvy158",fontsize=16,color="green",shape="box"];2953[label="yvy155",fontsize=16,color="green",shape="box"];2954[label="yvy158",fontsize=16,color="green",shape="box"];2955[label="yvy155",fontsize=16,color="green",shape="box"];2956[label="compare0 (yvy262,yvy263,yvy264) (yvy265,yvy266,yvy267) True",fontsize=16,color="black",shape="box"];2956 -> 3083[label="",style="solid", color="black", weight=3]; 52.72/30.40 2957[label="yvy3002",fontsize=16,color="green",shape="box"];2958[label="yvy4002",fontsize=16,color="green",shape="box"];2959[label="yvy3002",fontsize=16,color="green",shape="box"];2960[label="yvy4002",fontsize=16,color="green",shape="box"];2961[label="yvy3002",fontsize=16,color="green",shape="box"];2962[label="yvy4002",fontsize=16,color="green",shape="box"];2963[label="yvy3002",fontsize=16,color="green",shape="box"];2964[label="yvy4002",fontsize=16,color="green",shape="box"];2965[label="yvy3002",fontsize=16,color="green",shape="box"];2966[label="yvy4002",fontsize=16,color="green",shape="box"];2967[label="yvy3002",fontsize=16,color="green",shape="box"];2968[label="yvy4002",fontsize=16,color="green",shape="box"];2969[label="yvy3002",fontsize=16,color="green",shape="box"];2970[label="yvy4002",fontsize=16,color="green",shape="box"];2971[label="yvy3002",fontsize=16,color="green",shape="box"];2972[label="yvy4002",fontsize=16,color="green",shape="box"];2973[label="yvy3002",fontsize=16,color="green",shape="box"];2974[label="yvy4002",fontsize=16,color="green",shape="box"];2975[label="yvy3002",fontsize=16,color="green",shape="box"];2976[label="yvy4002",fontsize=16,color="green",shape="box"];2977[label="yvy3002",fontsize=16,color="green",shape="box"];2978[label="yvy4002",fontsize=16,color="green",shape="box"];2979[label="yvy3002",fontsize=16,color="green",shape="box"];2980[label="yvy4002",fontsize=16,color="green",shape="box"];2981[label="yvy3002",fontsize=16,color="green",shape="box"];2982[label="yvy4002",fontsize=16,color="green",shape="box"];2983[label="yvy3002",fontsize=16,color="green",shape="box"];2984[label="yvy4002",fontsize=16,color="green",shape="box"];2985[label="yvy3001",fontsize=16,color="green",shape="box"];2986[label="yvy4001",fontsize=16,color="green",shape="box"];2987[label="yvy3001",fontsize=16,color="green",shape="box"];2988[label="yvy4001",fontsize=16,color="green",shape="box"];2989[label="yvy3001",fontsize=16,color="green",shape="box"];2990[label="yvy4001",fontsize=16,color="green",shape="box"];2991[label="yvy3001",fontsize=16,color="green",shape="box"];2992[label="yvy4001",fontsize=16,color="green",shape="box"];2993[label="yvy3001",fontsize=16,color="green",shape="box"];2994[label="yvy4001",fontsize=16,color="green",shape="box"];2995[label="yvy3001",fontsize=16,color="green",shape="box"];2996[label="yvy4001",fontsize=16,color="green",shape="box"];2997[label="yvy3001",fontsize=16,color="green",shape="box"];2998[label="yvy4001",fontsize=16,color="green",shape="box"];2999[label="yvy3001",fontsize=16,color="green",shape="box"];3000[label="yvy4001",fontsize=16,color="green",shape="box"];3001[label="yvy3001",fontsize=16,color="green",shape="box"];3002[label="yvy4001",fontsize=16,color="green",shape="box"];3003[label="yvy3001",fontsize=16,color="green",shape="box"];3004[label="yvy4001",fontsize=16,color="green",shape="box"];3005[label="yvy3001",fontsize=16,color="green",shape="box"];3006[label="yvy4001",fontsize=16,color="green",shape="box"];3007[label="yvy3001",fontsize=16,color="green",shape="box"];3008[label="yvy4001",fontsize=16,color="green",shape="box"];3009[label="yvy3001",fontsize=16,color="green",shape="box"];3010[label="yvy4001",fontsize=16,color="green",shape="box"];3011[label="yvy3001",fontsize=16,color="green",shape="box"];3012[label="yvy4001",fontsize=16,color="green",shape="box"];3013[label="yvy30000",fontsize=16,color="green",shape="box"];3014[label="yvy40000",fontsize=16,color="green",shape="box"];3015[label="yvy30000",fontsize=16,color="green",shape="box"];3016[label="yvy40000",fontsize=16,color="green",shape="box"];3017 -> 2162[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3017[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3017 -> 3084[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3017 -> 3085[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3018[label="False",fontsize=16,color="green",shape="box"];3019[label="False",fontsize=16,color="green",shape="box"];3020[label="True",fontsize=16,color="green",shape="box"];3022 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3022[label="yvy281 == GT",fontsize=16,color="magenta"];3022 -> 3086[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3022 -> 3087[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3021[label="not yvy282",fontsize=16,color="burlywood",shape="triangle"];4502[label="yvy282/False",fontsize=10,color="white",style="solid",shape="box"];3021 -> 4502[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4502 -> 3088[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4503[label="yvy282/True",fontsize=10,color="white",style="solid",shape="box"];3021 -> 4503[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4503 -> 3089[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 3023[label="yvy1650 < yvy1660",fontsize=16,color="blue",shape="box"];4504[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4504[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4504 -> 3090[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4505[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4505[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4505 -> 3091[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4506[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4506[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4506 -> 3092[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4507[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4507[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4507 -> 3093[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4508[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4508[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4508 -> 3094[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4509[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4509[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4509 -> 3095[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4510[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4510[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4510 -> 3096[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4511[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4511[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4511 -> 3097[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4512[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4512[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4512 -> 3098[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4513[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4513[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4513 -> 3099[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4514[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4514[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4514 -> 3100[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4515[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4515[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4515 -> 3101[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4516[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4516[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4516 -> 3102[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4517[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4517[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4517 -> 3103[label="",style="solid", color="blue", weight=3]; 52.72/30.40 3024 -> 1504[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3024[label="yvy1650 == yvy1660 && yvy1651 <= yvy1661",fontsize=16,color="magenta"];3024 -> 3104[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3024 -> 3105[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3025[label="yvy1650 < yvy1660",fontsize=16,color="blue",shape="box"];4518[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3025 -> 4518[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4518 -> 3106[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4519[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3025 -> 4519[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4519 -> 3107[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4520[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3025 -> 4520[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4520 -> 3108[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4521[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3025 -> 4521[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4521 -> 3109[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4522[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3025 -> 4522[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4522 -> 3110[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4523[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3025 -> 4523[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4523 -> 3111[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4524[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3025 -> 4524[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4524 -> 3112[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4525[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3025 -> 4525[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4525 -> 3113[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4526[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3025 -> 4526[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4526 -> 3114[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4527[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3025 -> 4527[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4527 -> 3115[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4528[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3025 -> 4528[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4528 -> 3116[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4529[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3025 -> 4529[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4529 -> 3117[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4530[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3025 -> 4530[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4530 -> 3118[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4531[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3025 -> 4531[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4531 -> 3119[label="",style="solid", color="blue", weight=3]; 52.72/30.40 3026 -> 1504[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3026[label="yvy1650 == yvy1660 && (yvy1651 < yvy1661 || yvy1651 == yvy1661 && yvy1652 <= yvy1662)",fontsize=16,color="magenta"];3026 -> 3120[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3026 -> 3121[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3027 -> 1926[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3027[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3027 -> 3122[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3027 -> 3123[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3028 -> 1927[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3028[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3028 -> 3124[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3028 -> 3125[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3029 -> 1928[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3029[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3029 -> 3126[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3029 -> 3127[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3030 -> 1929[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3030[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3030 -> 3128[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3030 -> 3129[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3031 -> 1930[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3031[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3031 -> 3130[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3031 -> 3131[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3032 -> 1931[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3032[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3032 -> 3132[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3032 -> 3133[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3033 -> 1932[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3033[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3033 -> 3134[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3033 -> 3135[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3034 -> 1933[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3034[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3034 -> 3136[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3034 -> 3137[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3035 -> 1934[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3035[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3035 -> 3138[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3035 -> 3139[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3036 -> 1935[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3036[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3036 -> 3140[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3036 -> 3141[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3037 -> 1936[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3037[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3037 -> 3142[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3037 -> 3143[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3038 -> 1937[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3038[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3038 -> 3144[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3038 -> 3145[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3039 -> 1938[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3039[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3039 -> 3146[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3039 -> 3147[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3040 -> 1939[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3040[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3040 -> 3148[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3040 -> 3149[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3041 -> 1926[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3041[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3041 -> 3150[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3041 -> 3151[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3042 -> 1927[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3042[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3042 -> 3152[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3042 -> 3153[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3043 -> 1928[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3043[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3043 -> 3154[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3043 -> 3155[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3044 -> 1929[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3044[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3044 -> 3156[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3044 -> 3157[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3045 -> 1930[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3045[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3045 -> 3158[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3045 -> 3159[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3046 -> 1931[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3046[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3046 -> 3160[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3046 -> 3161[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3047 -> 1932[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3047[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3047 -> 3162[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3047 -> 3163[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3048 -> 1933[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3048[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3048 -> 3164[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3048 -> 3165[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3049 -> 1934[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3049[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3049 -> 3166[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3049 -> 3167[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3050 -> 1935[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3050[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3050 -> 3168[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3050 -> 3169[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3051 -> 1936[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3051[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3051 -> 3170[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3051 -> 3171[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3052 -> 1937[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3052[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3052 -> 3172[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3052 -> 3173[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3053 -> 1938[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3053[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3053 -> 3174[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3053 -> 3175[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3054 -> 1939[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3054[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3054 -> 3176[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3054 -> 3177[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3055 -> 1926[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3055[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3055 -> 3178[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3055 -> 3179[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3056 -> 1927[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3056[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3056 -> 3180[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3056 -> 3181[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3057 -> 1928[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3057[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3057 -> 3182[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3057 -> 3183[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3058 -> 1929[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3058[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3058 -> 3184[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3058 -> 3185[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3059 -> 1930[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3059[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3059 -> 3186[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3059 -> 3187[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3060 -> 1931[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3060[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3060 -> 3188[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3060 -> 3189[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3061 -> 1932[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3061[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3061 -> 3190[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3061 -> 3191[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3062 -> 1933[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3062[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3062 -> 3192[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3062 -> 3193[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3063 -> 1934[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3063[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3063 -> 3194[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3063 -> 3195[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3064 -> 1935[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3064[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3064 -> 3196[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3064 -> 3197[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3065 -> 1936[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3065[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3065 -> 3198[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3065 -> 3199[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3066 -> 1937[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3066[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3066 -> 3200[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3066 -> 3201[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3067 -> 1938[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3067[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3067 -> 3202[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3067 -> 3203[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3068 -> 1939[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3068[label="yvy1650 <= yvy1660",fontsize=16,color="magenta"];3068 -> 3204[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3068 -> 3205[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3069[label="Succ yvy30100",fontsize=16,color="green",shape="box"];3070[label="yvy40000",fontsize=16,color="green",shape="box"];3071[label="Succ yvy9300",fontsize=16,color="green",shape="box"];3072 -> 1806[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3072[label="primPlusNat yvy270 (Succ yvy9300)",fontsize=16,color="magenta"];3072 -> 3206[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3072 -> 3207[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3073[label="FiniteMap.Branch yvy120 yvy121 yvy122 yvy123 yvy124",fontsize=16,color="green",shape="box"];3074[label="yvy21000",fontsize=16,color="green",shape="box"];3075[label="yvy90200",fontsize=16,color="green",shape="box"];3077 -> 74[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3077[label="FiniteMap.sizeFM yvy904 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy903",fontsize=16,color="magenta"];3077 -> 3208[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3077 -> 3209[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3076[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54 yvy900 yvy901 yvy902 yvy903 yvy904 yvy283",fontsize=16,color="burlywood",shape="triangle"];4532[label="yvy283/False",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4532[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4532 -> 3210[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4533[label="yvy283/True",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4533[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4533 -> 3211[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 3078[label="yvy544",fontsize=16,color="green",shape="box"];3079[label="FiniteMap.mkBalBranch6MkBalBranch00 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 True",fontsize=16,color="black",shape="box"];3079 -> 3212[label="",style="solid", color="black", weight=3]; 52.72/30.40 3080[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) yvy540 yvy541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy90 yvy543) yvy544",fontsize=16,color="black",shape="box"];3080 -> 3213[label="",style="solid", color="black", weight=3]; 52.72/30.40 3081[label="yvy90",fontsize=16,color="green",shape="box"];3082[label="GT",fontsize=16,color="green",shape="box"];3083[label="GT",fontsize=16,color="green",shape="box"];3084[label="yvy30000",fontsize=16,color="green",shape="box"];3085[label="yvy40000",fontsize=16,color="green",shape="box"];3086[label="GT",fontsize=16,color="green",shape="box"];3087[label="yvy281",fontsize=16,color="green",shape="box"];3088[label="not False",fontsize=16,color="black",shape="box"];3088 -> 3214[label="",style="solid", color="black", weight=3]; 52.72/30.40 3089[label="not True",fontsize=16,color="black",shape="box"];3089 -> 3215[label="",style="solid", color="black", weight=3]; 52.72/30.40 3090 -> 72[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3090[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3090 -> 3216[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3090 -> 3217[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3091 -> 73[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3091[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3091 -> 3218[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3091 -> 3219[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3092 -> 74[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3092[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3092 -> 3220[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3092 -> 3221[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3093 -> 75[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3093[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3093 -> 3222[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3093 -> 3223[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3094 -> 76[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3094[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3094 -> 3224[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3094 -> 3225[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3095 -> 77[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3095[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3095 -> 3226[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3095 -> 3227[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3096 -> 78[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3096[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3096 -> 3228[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3096 -> 3229[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3097 -> 79[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3097[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3097 -> 3230[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3097 -> 3231[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3098 -> 80[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3098[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3098 -> 3232[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3098 -> 3233[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3099 -> 81[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3099[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3099 -> 3234[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3099 -> 3235[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3100 -> 82[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3100[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3100 -> 3236[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3100 -> 3237[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3101 -> 83[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3101[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3101 -> 3238[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3101 -> 3239[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3102 -> 84[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3102[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3102 -> 3240[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3102 -> 3241[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3103 -> 85[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3103[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3103 -> 3242[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3103 -> 3243[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3104[label="yvy1651 <= yvy1661",fontsize=16,color="blue",shape="box"];4534[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4534[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4534 -> 3244[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4535[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4535[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4535 -> 3245[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4536[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4536[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4536 -> 3246[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4537[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4537[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4537 -> 3247[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4538[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4538[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4538 -> 3248[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4539[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4539[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4539 -> 3249[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4540[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4540[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4540 -> 3250[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4541[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4541[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4541 -> 3251[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4542[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4542[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4542 -> 3252[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4543[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4543[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4543 -> 3253[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4544[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4544[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4544 -> 3254[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4545[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4545[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4545 -> 3255[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4546[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4546[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4546 -> 3256[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4547[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3104 -> 4547[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4547 -> 3257[label="",style="solid", color="blue", weight=3]; 52.72/30.40 3105[label="yvy1650 == yvy1660",fontsize=16,color="blue",shape="box"];4548[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4548[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4548 -> 3258[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4549[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4549[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4549 -> 3259[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4550[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4550[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4550 -> 3260[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4551[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4551[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4551 -> 3261[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4552[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4552[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4552 -> 3262[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4553[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4553[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4553 -> 3263[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4554[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4554[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4554 -> 3264[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4555[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4555[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4555 -> 3265[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4556[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4556[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4556 -> 3266[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4557[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4557[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4557 -> 3267[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4558[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4558[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4558 -> 3268[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4559[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4559[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4559 -> 3269[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4560[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4560[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4560 -> 3270[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4561[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 4561[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4561 -> 3271[label="",style="solid", color="blue", weight=3]; 52.72/30.40 3106 -> 72[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3106[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3106 -> 3272[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3106 -> 3273[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3107 -> 73[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3107[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3107 -> 3274[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3107 -> 3275[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3108 -> 74[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3108[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3108 -> 3276[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3108 -> 3277[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3109 -> 75[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3109[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3109 -> 3278[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3109 -> 3279[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3110 -> 76[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3110[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3110 -> 3280[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3110 -> 3281[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3111 -> 77[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3111[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3111 -> 3282[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3111 -> 3283[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3112 -> 78[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3112[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3112 -> 3284[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3112 -> 3285[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3113 -> 79[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3113[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3113 -> 3286[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3113 -> 3287[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3114 -> 80[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3114[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3114 -> 3288[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3114 -> 3289[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3115 -> 81[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3115[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3115 -> 3290[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3115 -> 3291[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3116 -> 82[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3116[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3116 -> 3292[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3116 -> 3293[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3117 -> 83[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3117[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3117 -> 3294[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3117 -> 3295[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3118 -> 84[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3118[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3118 -> 3296[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3118 -> 3297[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3119 -> 85[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3119[label="yvy1650 < yvy1660",fontsize=16,color="magenta"];3119 -> 3298[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3119 -> 3299[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3120 -> 2330[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3120[label="yvy1651 < yvy1661 || yvy1651 == yvy1661 && yvy1652 <= yvy1662",fontsize=16,color="magenta"];3120 -> 3300[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3120 -> 3301[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3121[label="yvy1650 == yvy1660",fontsize=16,color="blue",shape="box"];4562[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4562[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4562 -> 3302[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4563[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4563[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4563 -> 3303[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4564[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4564[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4564 -> 3304[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4565[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4565[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4565 -> 3305[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4566[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4566[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4566 -> 3306[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4567[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4567[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4567 -> 3307[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4568[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4568[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4568 -> 3308[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4569[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4569[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4569 -> 3309[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4570[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4570[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4570 -> 3310[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4571[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4571[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4571 -> 3311[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4572[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4572[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4572 -> 3312[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4573[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4573[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4573 -> 3313[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4574[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4574[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4574 -> 3314[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4575[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3121 -> 4575[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4575 -> 3315[label="",style="solid", color="blue", weight=3]; 52.72/30.40 3122[label="yvy1650",fontsize=16,color="green",shape="box"];3123[label="yvy1660",fontsize=16,color="green",shape="box"];3124[label="yvy1650",fontsize=16,color="green",shape="box"];3125[label="yvy1660",fontsize=16,color="green",shape="box"];3126[label="yvy1650",fontsize=16,color="green",shape="box"];3127[label="yvy1660",fontsize=16,color="green",shape="box"];3128[label="yvy1650",fontsize=16,color="green",shape="box"];3129[label="yvy1660",fontsize=16,color="green",shape="box"];3130[label="yvy1650",fontsize=16,color="green",shape="box"];3131[label="yvy1660",fontsize=16,color="green",shape="box"];3132[label="yvy1650",fontsize=16,color="green",shape="box"];3133[label="yvy1660",fontsize=16,color="green",shape="box"];3134[label="yvy1650",fontsize=16,color="green",shape="box"];3135[label="yvy1660",fontsize=16,color="green",shape="box"];3136[label="yvy1650",fontsize=16,color="green",shape="box"];3137[label="yvy1660",fontsize=16,color="green",shape="box"];3138[label="yvy1650",fontsize=16,color="green",shape="box"];3139[label="yvy1660",fontsize=16,color="green",shape="box"];3140[label="yvy1650",fontsize=16,color="green",shape="box"];3141[label="yvy1660",fontsize=16,color="green",shape="box"];3142[label="yvy1650",fontsize=16,color="green",shape="box"];3143[label="yvy1660",fontsize=16,color="green",shape="box"];3144[label="yvy1650",fontsize=16,color="green",shape="box"];3145[label="yvy1660",fontsize=16,color="green",shape="box"];3146[label="yvy1650",fontsize=16,color="green",shape="box"];3147[label="yvy1660",fontsize=16,color="green",shape="box"];3148[label="yvy1650",fontsize=16,color="green",shape="box"];3149[label="yvy1660",fontsize=16,color="green",shape="box"];3150[label="yvy1650",fontsize=16,color="green",shape="box"];3151[label="yvy1660",fontsize=16,color="green",shape="box"];3152[label="yvy1650",fontsize=16,color="green",shape="box"];3153[label="yvy1660",fontsize=16,color="green",shape="box"];3154[label="yvy1650",fontsize=16,color="green",shape="box"];3155[label="yvy1660",fontsize=16,color="green",shape="box"];3156[label="yvy1650",fontsize=16,color="green",shape="box"];3157[label="yvy1660",fontsize=16,color="green",shape="box"];3158[label="yvy1650",fontsize=16,color="green",shape="box"];3159[label="yvy1660",fontsize=16,color="green",shape="box"];3160[label="yvy1650",fontsize=16,color="green",shape="box"];3161[label="yvy1660",fontsize=16,color="green",shape="box"];3162[label="yvy1650",fontsize=16,color="green",shape="box"];3163[label="yvy1660",fontsize=16,color="green",shape="box"];3164[label="yvy1650",fontsize=16,color="green",shape="box"];3165[label="yvy1660",fontsize=16,color="green",shape="box"];3166[label="yvy1650",fontsize=16,color="green",shape="box"];3167[label="yvy1660",fontsize=16,color="green",shape="box"];3168[label="yvy1650",fontsize=16,color="green",shape="box"];3169[label="yvy1660",fontsize=16,color="green",shape="box"];3170[label="yvy1650",fontsize=16,color="green",shape="box"];3171[label="yvy1660",fontsize=16,color="green",shape="box"];3172[label="yvy1650",fontsize=16,color="green",shape="box"];3173[label="yvy1660",fontsize=16,color="green",shape="box"];3174[label="yvy1650",fontsize=16,color="green",shape="box"];3175[label="yvy1660",fontsize=16,color="green",shape="box"];3176[label="yvy1650",fontsize=16,color="green",shape="box"];3177[label="yvy1660",fontsize=16,color="green",shape="box"];3178[label="yvy1650",fontsize=16,color="green",shape="box"];3179[label="yvy1660",fontsize=16,color="green",shape="box"];3180[label="yvy1650",fontsize=16,color="green",shape="box"];3181[label="yvy1660",fontsize=16,color="green",shape="box"];3182[label="yvy1650",fontsize=16,color="green",shape="box"];3183[label="yvy1660",fontsize=16,color="green",shape="box"];3184[label="yvy1650",fontsize=16,color="green",shape="box"];3185[label="yvy1660",fontsize=16,color="green",shape="box"];3186[label="yvy1650",fontsize=16,color="green",shape="box"];3187[label="yvy1660",fontsize=16,color="green",shape="box"];3188[label="yvy1650",fontsize=16,color="green",shape="box"];3189[label="yvy1660",fontsize=16,color="green",shape="box"];3190[label="yvy1650",fontsize=16,color="green",shape="box"];3191[label="yvy1660",fontsize=16,color="green",shape="box"];3192[label="yvy1650",fontsize=16,color="green",shape="box"];3193[label="yvy1660",fontsize=16,color="green",shape="box"];3194[label="yvy1650",fontsize=16,color="green",shape="box"];3195[label="yvy1660",fontsize=16,color="green",shape="box"];3196[label="yvy1650",fontsize=16,color="green",shape="box"];3197[label="yvy1660",fontsize=16,color="green",shape="box"];3198[label="yvy1650",fontsize=16,color="green",shape="box"];3199[label="yvy1660",fontsize=16,color="green",shape="box"];3200[label="yvy1650",fontsize=16,color="green",shape="box"];3201[label="yvy1660",fontsize=16,color="green",shape="box"];3202[label="yvy1650",fontsize=16,color="green",shape="box"];3203[label="yvy1660",fontsize=16,color="green",shape="box"];3204[label="yvy1650",fontsize=16,color="green",shape="box"];3205[label="yvy1660",fontsize=16,color="green",shape="box"];3206[label="Succ yvy9300",fontsize=16,color="green",shape="box"];3207[label="yvy270",fontsize=16,color="green",shape="box"];3208 -> 1386[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3208[label="FiniteMap.sizeFM yvy904",fontsize=16,color="magenta"];3208 -> 3316[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3209 -> 865[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3209[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy903",fontsize=16,color="magenta"];3209 -> 3317[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3209 -> 3318[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3210[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54 yvy900 yvy901 yvy902 yvy903 yvy904 False",fontsize=16,color="black",shape="box"];3210 -> 3319[label="",style="solid", color="black", weight=3]; 52.72/30.40 3211[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54 yvy900 yvy901 yvy902 yvy903 yvy904 True",fontsize=16,color="black",shape="box"];3211 -> 3320[label="",style="solid", color="black", weight=3]; 52.72/30.40 3212[label="FiniteMap.mkBalBranch6Double_L yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="burlywood",shape="box"];4576[label="yvy543/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3212 -> 4576[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4576 -> 3321[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 4577[label="yvy543/FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434",fontsize=10,color="white",style="solid",shape="box"];3212 -> 4577[label="",style="solid", color="burlywood", weight=9]; 52.72/30.40 4577 -> 3322[label="",style="solid", color="burlywood", weight=3]; 52.72/30.40 3213 -> 1007[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3213[label="FiniteMap.mkBranchResult yvy540 yvy541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy90 yvy543) yvy544",fontsize=16,color="magenta"];3213 -> 3323[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3213 -> 3324[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3213 -> 3325[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3213 -> 3326[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3214[label="True",fontsize=16,color="green",shape="box"];3215[label="False",fontsize=16,color="green",shape="box"];3216[label="yvy1650",fontsize=16,color="green",shape="box"];3217[label="yvy1660",fontsize=16,color="green",shape="box"];3218[label="yvy1650",fontsize=16,color="green",shape="box"];3219[label="yvy1660",fontsize=16,color="green",shape="box"];3220[label="yvy1650",fontsize=16,color="green",shape="box"];3221[label="yvy1660",fontsize=16,color="green",shape="box"];3222[label="yvy1650",fontsize=16,color="green",shape="box"];3223[label="yvy1660",fontsize=16,color="green",shape="box"];3224[label="yvy1650",fontsize=16,color="green",shape="box"];3225[label="yvy1660",fontsize=16,color="green",shape="box"];3226[label="yvy1650",fontsize=16,color="green",shape="box"];3227[label="yvy1660",fontsize=16,color="green",shape="box"];3228[label="yvy1650",fontsize=16,color="green",shape="box"];3229[label="yvy1660",fontsize=16,color="green",shape="box"];3230[label="yvy1650",fontsize=16,color="green",shape="box"];3231[label="yvy1660",fontsize=16,color="green",shape="box"];3232[label="yvy1650",fontsize=16,color="green",shape="box"];3233[label="yvy1660",fontsize=16,color="green",shape="box"];3234[label="yvy1650",fontsize=16,color="green",shape="box"];3235[label="yvy1660",fontsize=16,color="green",shape="box"];3236[label="yvy1650",fontsize=16,color="green",shape="box"];3237[label="yvy1660",fontsize=16,color="green",shape="box"];3238[label="yvy1650",fontsize=16,color="green",shape="box"];3239[label="yvy1660",fontsize=16,color="green",shape="box"];3240[label="yvy1650",fontsize=16,color="green",shape="box"];3241[label="yvy1660",fontsize=16,color="green",shape="box"];3242[label="yvy1650",fontsize=16,color="green",shape="box"];3243[label="yvy1660",fontsize=16,color="green",shape="box"];3244 -> 1926[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3244[label="yvy1651 <= yvy1661",fontsize=16,color="magenta"];3244 -> 3327[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3244 -> 3328[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3245 -> 1927[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3245[label="yvy1651 <= yvy1661",fontsize=16,color="magenta"];3245 -> 3329[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3245 -> 3330[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3246 -> 1928[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3246[label="yvy1651 <= yvy1661",fontsize=16,color="magenta"];3246 -> 3331[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3246 -> 3332[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3247 -> 1929[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3247[label="yvy1651 <= yvy1661",fontsize=16,color="magenta"];3247 -> 3333[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3247 -> 3334[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3248 -> 1930[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3248[label="yvy1651 <= yvy1661",fontsize=16,color="magenta"];3248 -> 3335[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3248 -> 3336[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3249 -> 1931[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3249[label="yvy1651 <= yvy1661",fontsize=16,color="magenta"];3249 -> 3337[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3249 -> 3338[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3250 -> 1932[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3250[label="yvy1651 <= yvy1661",fontsize=16,color="magenta"];3250 -> 3339[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3250 -> 3340[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3251 -> 1933[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3251[label="yvy1651 <= yvy1661",fontsize=16,color="magenta"];3251 -> 3341[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3251 -> 3342[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3252 -> 1934[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3252[label="yvy1651 <= yvy1661",fontsize=16,color="magenta"];3252 -> 3343[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3252 -> 3344[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3253 -> 1935[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3253[label="yvy1651 <= yvy1661",fontsize=16,color="magenta"];3253 -> 3345[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3253 -> 3346[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3254 -> 1936[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3254[label="yvy1651 <= yvy1661",fontsize=16,color="magenta"];3254 -> 3347[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3254 -> 3348[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3255 -> 1937[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3255[label="yvy1651 <= yvy1661",fontsize=16,color="magenta"];3255 -> 3349[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3255 -> 3350[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3256 -> 1938[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3256[label="yvy1651 <= yvy1661",fontsize=16,color="magenta"];3256 -> 3351[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3256 -> 3352[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3257 -> 1939[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3257[label="yvy1651 <= yvy1661",fontsize=16,color="magenta"];3257 -> 3353[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3257 -> 3354[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3258 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3258[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3258 -> 3355[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3258 -> 3356[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3259 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3259[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3259 -> 3357[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3259 -> 3358[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3260 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3260[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3260 -> 3359[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3260 -> 3360[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3261 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3261[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3261 -> 3361[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3261 -> 3362[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3262 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3262[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3262 -> 3363[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3262 -> 3364[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3263 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3263[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3263 -> 3365[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3263 -> 3366[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3264 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3264[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3264 -> 3367[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3264 -> 3368[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3265 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3265[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3265 -> 3369[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3265 -> 3370[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3266 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3266[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3266 -> 3371[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3266 -> 3372[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3267 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3267[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3267 -> 3373[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3267 -> 3374[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3268 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3268[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3268 -> 3375[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3268 -> 3376[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3269 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3269[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3269 -> 3377[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3269 -> 3378[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3270 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3270[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3270 -> 3379[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3270 -> 3380[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3271 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3271[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3271 -> 3381[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3271 -> 3382[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3272[label="yvy1650",fontsize=16,color="green",shape="box"];3273[label="yvy1660",fontsize=16,color="green",shape="box"];3274[label="yvy1650",fontsize=16,color="green",shape="box"];3275[label="yvy1660",fontsize=16,color="green",shape="box"];3276[label="yvy1650",fontsize=16,color="green",shape="box"];3277[label="yvy1660",fontsize=16,color="green",shape="box"];3278[label="yvy1650",fontsize=16,color="green",shape="box"];3279[label="yvy1660",fontsize=16,color="green",shape="box"];3280[label="yvy1650",fontsize=16,color="green",shape="box"];3281[label="yvy1660",fontsize=16,color="green",shape="box"];3282[label="yvy1650",fontsize=16,color="green",shape="box"];3283[label="yvy1660",fontsize=16,color="green",shape="box"];3284[label="yvy1650",fontsize=16,color="green",shape="box"];3285[label="yvy1660",fontsize=16,color="green",shape="box"];3286[label="yvy1650",fontsize=16,color="green",shape="box"];3287[label="yvy1660",fontsize=16,color="green",shape="box"];3288[label="yvy1650",fontsize=16,color="green",shape="box"];3289[label="yvy1660",fontsize=16,color="green",shape="box"];3290[label="yvy1650",fontsize=16,color="green",shape="box"];3291[label="yvy1660",fontsize=16,color="green",shape="box"];3292[label="yvy1650",fontsize=16,color="green",shape="box"];3293[label="yvy1660",fontsize=16,color="green",shape="box"];3294[label="yvy1650",fontsize=16,color="green",shape="box"];3295[label="yvy1660",fontsize=16,color="green",shape="box"];3296[label="yvy1650",fontsize=16,color="green",shape="box"];3297[label="yvy1660",fontsize=16,color="green",shape="box"];3298[label="yvy1650",fontsize=16,color="green",shape="box"];3299[label="yvy1660",fontsize=16,color="green",shape="box"];3300[label="yvy1651 < yvy1661",fontsize=16,color="blue",shape="box"];4578[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4578[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4578 -> 3383[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4579[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4579[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4579 -> 3384[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4580[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4580[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4580 -> 3385[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4581[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4581[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4581 -> 3386[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4582[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4582[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4582 -> 3387[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4583[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4583[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4583 -> 3388[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4584[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4584[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4584 -> 3389[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4585[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4585[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4585 -> 3390[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4586[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4586[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4586 -> 3391[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4587[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4587[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4587 -> 3392[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4588[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4588[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4588 -> 3393[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4589[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4589[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4589 -> 3394[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4590[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4590[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4590 -> 3395[label="",style="solid", color="blue", weight=3]; 52.72/30.40 4591[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4591[label="",style="solid", color="blue", weight=9]; 52.72/30.40 4591 -> 3396[label="",style="solid", color="blue", weight=3]; 52.72/30.40 3301 -> 1504[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3301[label="yvy1651 == yvy1661 && yvy1652 <= yvy1662",fontsize=16,color="magenta"];3301 -> 3397[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3301 -> 3398[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3302 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3302[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3302 -> 3399[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3302 -> 3400[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3303 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3303[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3303 -> 3401[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3303 -> 3402[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3304 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3304[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3304 -> 3403[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3304 -> 3404[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3305 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3305[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3305 -> 3405[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3305 -> 3406[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3306 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3306[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3306 -> 3407[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3306 -> 3408[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3307 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3307[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3307 -> 3409[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3307 -> 3410[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3308 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3308[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3308 -> 3411[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3308 -> 3412[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3309 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3309[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3309 -> 3413[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3309 -> 3414[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3310 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3310[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3310 -> 3415[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3310 -> 3416[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3311 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3311[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3311 -> 3417[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3311 -> 3418[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3312 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3312[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3312 -> 3419[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3312 -> 3420[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3313 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3313[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3313 -> 3421[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3313 -> 3422[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3314 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3314[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3314 -> 3423[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3314 -> 3424[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3315 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3315[label="yvy1650 == yvy1660",fontsize=16,color="magenta"];3315 -> 3425[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3315 -> 3426[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3316[label="yvy904",fontsize=16,color="green",shape="box"];3317[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3318 -> 1386[label="",style="dashed", color="red", weight=0]; 52.72/30.40 3318[label="FiniteMap.sizeFM yvy903",fontsize=16,color="magenta"];3318 -> 3427[label="",style="dashed", color="magenta", weight=3]; 52.72/30.40 3319[label="FiniteMap.mkBalBranch6MkBalBranch10 yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54 yvy900 yvy901 yvy902 yvy903 yvy904 otherwise",fontsize=16,color="black",shape="box"];3319 -> 3428[label="",style="solid", color="black", weight=3]; 52.72/30.41 3320[label="FiniteMap.mkBalBranch6Single_R yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54",fontsize=16,color="black",shape="box"];3320 -> 3429[label="",style="solid", color="black", weight=3]; 52.72/30.41 3321[label="FiniteMap.mkBalBranch6Double_L yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 FiniteMap.EmptyFM yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 FiniteMap.EmptyFM yvy544)",fontsize=16,color="black",shape="box"];3321 -> 3430[label="",style="solid", color="black", weight=3]; 52.72/30.41 3322[label="FiniteMap.mkBalBranch6Double_L yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 (FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434) yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 (FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434) yvy544)",fontsize=16,color="black",shape="box"];3322 -> 3431[label="",style="solid", color="black", weight=3]; 52.72/30.41 3323[label="yvy540",fontsize=16,color="green",shape="box"];3324[label="yvy544",fontsize=16,color="green",shape="box"];3325[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy90 yvy543",fontsize=16,color="black",shape="box"];3325 -> 3432[label="",style="solid", color="black", weight=3]; 52.72/30.41 3326[label="yvy541",fontsize=16,color="green",shape="box"];3327[label="yvy1651",fontsize=16,color="green",shape="box"];3328[label="yvy1661",fontsize=16,color="green",shape="box"];3329[label="yvy1651",fontsize=16,color="green",shape="box"];3330[label="yvy1661",fontsize=16,color="green",shape="box"];3331[label="yvy1651",fontsize=16,color="green",shape="box"];3332[label="yvy1661",fontsize=16,color="green",shape="box"];3333[label="yvy1651",fontsize=16,color="green",shape="box"];3334[label="yvy1661",fontsize=16,color="green",shape="box"];3335[label="yvy1651",fontsize=16,color="green",shape="box"];3336[label="yvy1661",fontsize=16,color="green",shape="box"];3337[label="yvy1651",fontsize=16,color="green",shape="box"];3338[label="yvy1661",fontsize=16,color="green",shape="box"];3339[label="yvy1651",fontsize=16,color="green",shape="box"];3340[label="yvy1661",fontsize=16,color="green",shape="box"];3341[label="yvy1651",fontsize=16,color="green",shape="box"];3342[label="yvy1661",fontsize=16,color="green",shape="box"];3343[label="yvy1651",fontsize=16,color="green",shape="box"];3344[label="yvy1661",fontsize=16,color="green",shape="box"];3345[label="yvy1651",fontsize=16,color="green",shape="box"];3346[label="yvy1661",fontsize=16,color="green",shape="box"];3347[label="yvy1651",fontsize=16,color="green",shape="box"];3348[label="yvy1661",fontsize=16,color="green",shape="box"];3349[label="yvy1651",fontsize=16,color="green",shape="box"];3350[label="yvy1661",fontsize=16,color="green",shape="box"];3351[label="yvy1651",fontsize=16,color="green",shape="box"];3352[label="yvy1661",fontsize=16,color="green",shape="box"];3353[label="yvy1651",fontsize=16,color="green",shape="box"];3354[label="yvy1661",fontsize=16,color="green",shape="box"];3355[label="yvy1660",fontsize=16,color="green",shape="box"];3356[label="yvy1650",fontsize=16,color="green",shape="box"];3357[label="yvy1660",fontsize=16,color="green",shape="box"];3358[label="yvy1650",fontsize=16,color="green",shape="box"];3359[label="yvy1660",fontsize=16,color="green",shape="box"];3360[label="yvy1650",fontsize=16,color="green",shape="box"];3361[label="yvy1660",fontsize=16,color="green",shape="box"];3362[label="yvy1650",fontsize=16,color="green",shape="box"];3363[label="yvy1660",fontsize=16,color="green",shape="box"];3364[label="yvy1650",fontsize=16,color="green",shape="box"];3365[label="yvy1660",fontsize=16,color="green",shape="box"];3366[label="yvy1650",fontsize=16,color="green",shape="box"];3367[label="yvy1660",fontsize=16,color="green",shape="box"];3368[label="yvy1650",fontsize=16,color="green",shape="box"];3369[label="yvy1660",fontsize=16,color="green",shape="box"];3370[label="yvy1650",fontsize=16,color="green",shape="box"];3371[label="yvy1660",fontsize=16,color="green",shape="box"];3372[label="yvy1650",fontsize=16,color="green",shape="box"];3373[label="yvy1660",fontsize=16,color="green",shape="box"];3374[label="yvy1650",fontsize=16,color="green",shape="box"];3375[label="yvy1660",fontsize=16,color="green",shape="box"];3376[label="yvy1650",fontsize=16,color="green",shape="box"];3377[label="yvy1660",fontsize=16,color="green",shape="box"];3378[label="yvy1650",fontsize=16,color="green",shape="box"];3379[label="yvy1660",fontsize=16,color="green",shape="box"];3380[label="yvy1650",fontsize=16,color="green",shape="box"];3381[label="yvy1660",fontsize=16,color="green",shape="box"];3382[label="yvy1650",fontsize=16,color="green",shape="box"];3383 -> 72[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3383[label="yvy1651 < yvy1661",fontsize=16,color="magenta"];3383 -> 3433[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3383 -> 3434[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3384 -> 73[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3384[label="yvy1651 < yvy1661",fontsize=16,color="magenta"];3384 -> 3435[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3384 -> 3436[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3385 -> 74[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3385[label="yvy1651 < yvy1661",fontsize=16,color="magenta"];3385 -> 3437[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3385 -> 3438[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3386 -> 75[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3386[label="yvy1651 < yvy1661",fontsize=16,color="magenta"];3386 -> 3439[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3386 -> 3440[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3387 -> 76[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3387[label="yvy1651 < yvy1661",fontsize=16,color="magenta"];3387 -> 3441[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3387 -> 3442[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3388 -> 77[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3388[label="yvy1651 < yvy1661",fontsize=16,color="magenta"];3388 -> 3443[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3388 -> 3444[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3389 -> 78[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3389[label="yvy1651 < yvy1661",fontsize=16,color="magenta"];3389 -> 3445[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3389 -> 3446[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3390 -> 79[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3390[label="yvy1651 < yvy1661",fontsize=16,color="magenta"];3390 -> 3447[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3390 -> 3448[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3391 -> 80[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3391[label="yvy1651 < yvy1661",fontsize=16,color="magenta"];3391 -> 3449[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3391 -> 3450[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3392 -> 81[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3392[label="yvy1651 < yvy1661",fontsize=16,color="magenta"];3392 -> 3451[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3392 -> 3452[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3393 -> 82[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3393[label="yvy1651 < yvy1661",fontsize=16,color="magenta"];3393 -> 3453[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3393 -> 3454[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3394 -> 83[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3394[label="yvy1651 < yvy1661",fontsize=16,color="magenta"];3394 -> 3455[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3394 -> 3456[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3395 -> 84[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3395[label="yvy1651 < yvy1661",fontsize=16,color="magenta"];3395 -> 3457[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3395 -> 3458[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3396 -> 85[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3396[label="yvy1651 < yvy1661",fontsize=16,color="magenta"];3396 -> 3459[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3396 -> 3460[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3397[label="yvy1652 <= yvy1662",fontsize=16,color="blue",shape="box"];4592[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3397 -> 4592[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4592 -> 3461[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4593[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3397 -> 4593[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4593 -> 3462[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4594[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3397 -> 4594[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4594 -> 3463[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4595[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3397 -> 4595[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4595 -> 3464[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4596[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3397 -> 4596[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4596 -> 3465[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4597[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3397 -> 4597[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4597 -> 3466[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4598[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3397 -> 4598[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4598 -> 3467[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4599[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3397 -> 4599[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4599 -> 3468[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4600[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3397 -> 4600[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4600 -> 3469[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4601[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3397 -> 4601[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4601 -> 3470[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4602[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3397 -> 4602[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4602 -> 3471[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4603[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3397 -> 4603[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4603 -> 3472[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4604[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3397 -> 4604[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4604 -> 3473[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4605[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3397 -> 4605[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4605 -> 3474[label="",style="solid", color="blue", weight=3]; 52.72/30.41 3398[label="yvy1651 == yvy1661",fontsize=16,color="blue",shape="box"];4606[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3398 -> 4606[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4606 -> 3475[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4607[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3398 -> 4607[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4607 -> 3476[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4608[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3398 -> 4608[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4608 -> 3477[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4609[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3398 -> 4609[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4609 -> 3478[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4610[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3398 -> 4610[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4610 -> 3479[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4611[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3398 -> 4611[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4611 -> 3480[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4612[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3398 -> 4612[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4612 -> 3481[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4613[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3398 -> 4613[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4613 -> 3482[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4614[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3398 -> 4614[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4614 -> 3483[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4615[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3398 -> 4615[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4615 -> 3484[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4616[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3398 -> 4616[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4616 -> 3485[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4617[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3398 -> 4617[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4617 -> 3486[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4618[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3398 -> 4618[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4618 -> 3487[label="",style="solid", color="blue", weight=3]; 52.72/30.41 4619[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3398 -> 4619[label="",style="solid", color="blue", weight=9]; 52.72/30.41 4619 -> 3488[label="",style="solid", color="blue", weight=3]; 52.72/30.41 3399[label="yvy1660",fontsize=16,color="green",shape="box"];3400[label="yvy1650",fontsize=16,color="green",shape="box"];3401[label="yvy1660",fontsize=16,color="green",shape="box"];3402[label="yvy1650",fontsize=16,color="green",shape="box"];3403[label="yvy1660",fontsize=16,color="green",shape="box"];3404[label="yvy1650",fontsize=16,color="green",shape="box"];3405[label="yvy1660",fontsize=16,color="green",shape="box"];3406[label="yvy1650",fontsize=16,color="green",shape="box"];3407[label="yvy1660",fontsize=16,color="green",shape="box"];3408[label="yvy1650",fontsize=16,color="green",shape="box"];3409[label="yvy1660",fontsize=16,color="green",shape="box"];3410[label="yvy1650",fontsize=16,color="green",shape="box"];3411[label="yvy1660",fontsize=16,color="green",shape="box"];3412[label="yvy1650",fontsize=16,color="green",shape="box"];3413[label="yvy1660",fontsize=16,color="green",shape="box"];3414[label="yvy1650",fontsize=16,color="green",shape="box"];3415[label="yvy1660",fontsize=16,color="green",shape="box"];3416[label="yvy1650",fontsize=16,color="green",shape="box"];3417[label="yvy1660",fontsize=16,color="green",shape="box"];3418[label="yvy1650",fontsize=16,color="green",shape="box"];3419[label="yvy1660",fontsize=16,color="green",shape="box"];3420[label="yvy1650",fontsize=16,color="green",shape="box"];3421[label="yvy1660",fontsize=16,color="green",shape="box"];3422[label="yvy1650",fontsize=16,color="green",shape="box"];3423[label="yvy1660",fontsize=16,color="green",shape="box"];3424[label="yvy1650",fontsize=16,color="green",shape="box"];3425[label="yvy1660",fontsize=16,color="green",shape="box"];3426[label="yvy1650",fontsize=16,color="green",shape="box"];3427[label="yvy903",fontsize=16,color="green",shape="box"];3428[label="FiniteMap.mkBalBranch6MkBalBranch10 yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54 yvy900 yvy901 yvy902 yvy903 yvy904 True",fontsize=16,color="black",shape="box"];3428 -> 3489[label="",style="solid", color="black", weight=3]; 52.72/30.41 3429 -> 3570[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3429[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) yvy900 yvy901 yvy903 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) yvy50 yvy51 yvy904 yvy54)",fontsize=16,color="magenta"];3429 -> 3571[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3429 -> 3572[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3429 -> 3573[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3429 -> 3574[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3429 -> 3575[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3429 -> 3576[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3429 -> 3577[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3429 -> 3578[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3429 -> 3579[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3430[label="error []",fontsize=16,color="red",shape="box"];3431 -> 3570[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3431[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) yvy5430 yvy5431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy90 yvy5433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) yvy540 yvy541 yvy5434 yvy544)",fontsize=16,color="magenta"];3431 -> 3580[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3431 -> 3581[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3431 -> 3582[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3431 -> 3583[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3431 -> 3584[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3431 -> 3585[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3431 -> 3586[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3431 -> 3587[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3431 -> 3588[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3432 -> 1007[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3432[label="FiniteMap.mkBranchResult yvy50 yvy51 yvy90 yvy543",fontsize=16,color="magenta"];3432 -> 3511[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3433[label="yvy1651",fontsize=16,color="green",shape="box"];3434[label="yvy1661",fontsize=16,color="green",shape="box"];3435[label="yvy1651",fontsize=16,color="green",shape="box"];3436[label="yvy1661",fontsize=16,color="green",shape="box"];3437[label="yvy1651",fontsize=16,color="green",shape="box"];3438[label="yvy1661",fontsize=16,color="green",shape="box"];3439[label="yvy1651",fontsize=16,color="green",shape="box"];3440[label="yvy1661",fontsize=16,color="green",shape="box"];3441[label="yvy1651",fontsize=16,color="green",shape="box"];3442[label="yvy1661",fontsize=16,color="green",shape="box"];3443[label="yvy1651",fontsize=16,color="green",shape="box"];3444[label="yvy1661",fontsize=16,color="green",shape="box"];3445[label="yvy1651",fontsize=16,color="green",shape="box"];3446[label="yvy1661",fontsize=16,color="green",shape="box"];3447[label="yvy1651",fontsize=16,color="green",shape="box"];3448[label="yvy1661",fontsize=16,color="green",shape="box"];3449[label="yvy1651",fontsize=16,color="green",shape="box"];3450[label="yvy1661",fontsize=16,color="green",shape="box"];3451[label="yvy1651",fontsize=16,color="green",shape="box"];3452[label="yvy1661",fontsize=16,color="green",shape="box"];3453[label="yvy1651",fontsize=16,color="green",shape="box"];3454[label="yvy1661",fontsize=16,color="green",shape="box"];3455[label="yvy1651",fontsize=16,color="green",shape="box"];3456[label="yvy1661",fontsize=16,color="green",shape="box"];3457[label="yvy1651",fontsize=16,color="green",shape="box"];3458[label="yvy1661",fontsize=16,color="green",shape="box"];3459[label="yvy1651",fontsize=16,color="green",shape="box"];3460[label="yvy1661",fontsize=16,color="green",shape="box"];3461 -> 1926[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3461[label="yvy1652 <= yvy1662",fontsize=16,color="magenta"];3461 -> 3512[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3461 -> 3513[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3462 -> 1927[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3462[label="yvy1652 <= yvy1662",fontsize=16,color="magenta"];3462 -> 3514[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3462 -> 3515[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3463 -> 1928[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3463[label="yvy1652 <= yvy1662",fontsize=16,color="magenta"];3463 -> 3516[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3463 -> 3517[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3464 -> 1929[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3464[label="yvy1652 <= yvy1662",fontsize=16,color="magenta"];3464 -> 3518[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3464 -> 3519[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3465 -> 1930[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3465[label="yvy1652 <= yvy1662",fontsize=16,color="magenta"];3465 -> 3520[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3465 -> 3521[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3466 -> 1931[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3466[label="yvy1652 <= yvy1662",fontsize=16,color="magenta"];3466 -> 3522[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3466 -> 3523[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3467 -> 1932[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3467[label="yvy1652 <= yvy1662",fontsize=16,color="magenta"];3467 -> 3524[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3467 -> 3525[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3468 -> 1933[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3468[label="yvy1652 <= yvy1662",fontsize=16,color="magenta"];3468 -> 3526[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3468 -> 3527[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3469 -> 1934[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3469[label="yvy1652 <= yvy1662",fontsize=16,color="magenta"];3469 -> 3528[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3469 -> 3529[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3470 -> 1935[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3470[label="yvy1652 <= yvy1662",fontsize=16,color="magenta"];3470 -> 3530[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3470 -> 3531[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3471 -> 1936[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3471[label="yvy1652 <= yvy1662",fontsize=16,color="magenta"];3471 -> 3532[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3471 -> 3533[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3472 -> 1937[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3472[label="yvy1652 <= yvy1662",fontsize=16,color="magenta"];3472 -> 3534[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3472 -> 3535[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3473 -> 1938[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3473[label="yvy1652 <= yvy1662",fontsize=16,color="magenta"];3473 -> 3536[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3473 -> 3537[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3474 -> 1939[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3474[label="yvy1652 <= yvy1662",fontsize=16,color="magenta"];3474 -> 3538[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3474 -> 3539[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3475 -> 1046[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3475[label="yvy1651 == yvy1661",fontsize=16,color="magenta"];3475 -> 3540[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3475 -> 3541[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3476 -> 1052[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3476[label="yvy1651 == yvy1661",fontsize=16,color="magenta"];3476 -> 3542[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3476 -> 3543[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3477 -> 1051[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3477[label="yvy1651 == yvy1661",fontsize=16,color="magenta"];3477 -> 3544[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3477 -> 3545[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3478 -> 1053[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3478[label="yvy1651 == yvy1661",fontsize=16,color="magenta"];3478 -> 3546[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3478 -> 3547[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3479 -> 1048[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3479[label="yvy1651 == yvy1661",fontsize=16,color="magenta"];3479 -> 3548[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3479 -> 3549[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3480 -> 1042[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3480[label="yvy1651 == yvy1661",fontsize=16,color="magenta"];3480 -> 3550[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3480 -> 3551[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3481 -> 1047[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3481[label="yvy1651 == yvy1661",fontsize=16,color="magenta"];3481 -> 3552[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3481 -> 3553[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3482 -> 1041[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3482[label="yvy1651 == yvy1661",fontsize=16,color="magenta"];3482 -> 3554[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3482 -> 3555[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3483 -> 1043[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3483[label="yvy1651 == yvy1661",fontsize=16,color="magenta"];3483 -> 3556[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3483 -> 3557[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3484 -> 1044[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3484[label="yvy1651 == yvy1661",fontsize=16,color="magenta"];3484 -> 3558[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3484 -> 3559[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3485 -> 1050[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3485[label="yvy1651 == yvy1661",fontsize=16,color="magenta"];3485 -> 3560[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3485 -> 3561[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3486 -> 1045[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3486[label="yvy1651 == yvy1661",fontsize=16,color="magenta"];3486 -> 3562[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3486 -> 3563[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3487 -> 1054[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3487[label="yvy1651 == yvy1661",fontsize=16,color="magenta"];3487 -> 3564[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3487 -> 3565[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3488 -> 1049[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3488[label="yvy1651 == yvy1661",fontsize=16,color="magenta"];3488 -> 3566[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3488 -> 3567[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3489[label="FiniteMap.mkBalBranch6Double_R yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54",fontsize=16,color="burlywood",shape="box"];4620[label="yvy904/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3489 -> 4620[label="",style="solid", color="burlywood", weight=9]; 52.72/30.41 4620 -> 3568[label="",style="solid", color="burlywood", weight=3]; 52.72/30.41 4621[label="yvy904/FiniteMap.Branch yvy9040 yvy9041 yvy9042 yvy9043 yvy9044",fontsize=10,color="white",style="solid",shape="box"];3489 -> 4621[label="",style="solid", color="burlywood", weight=9]; 52.72/30.41 4621 -> 3569[label="",style="solid", color="burlywood", weight=3]; 52.72/30.41 3571[label="yvy903",fontsize=16,color="green",shape="box"];3572[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3573[label="yvy50",fontsize=16,color="green",shape="box"];3574[label="yvy54",fontsize=16,color="green",shape="box"];3575[label="yvy900",fontsize=16,color="green",shape="box"];3576[label="yvy51",fontsize=16,color="green",shape="box"];3577[label="yvy904",fontsize=16,color="green",shape="box"];3578[label="yvy901",fontsize=16,color="green",shape="box"];3579[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3570[label="FiniteMap.mkBranch (Pos (Succ yvy309)) yvy310 yvy311 yvy312 (FiniteMap.mkBranch (Pos (Succ yvy313)) yvy314 yvy315 yvy316 yvy317)",fontsize=16,color="black",shape="triangle"];3570 -> 3607[label="",style="solid", color="black", weight=3]; 52.72/30.41 3580[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy90 yvy5433",fontsize=16,color="black",shape="box"];3580 -> 3608[label="",style="solid", color="black", weight=3]; 52.72/30.41 3581[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3582[label="yvy540",fontsize=16,color="green",shape="box"];3583[label="yvy544",fontsize=16,color="green",shape="box"];3584[label="yvy5430",fontsize=16,color="green",shape="box"];3585[label="yvy541",fontsize=16,color="green",shape="box"];3586[label="yvy5434",fontsize=16,color="green",shape="box"];3587[label="yvy5431",fontsize=16,color="green",shape="box"];3588[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3511[label="yvy543",fontsize=16,color="green",shape="box"];3512[label="yvy1652",fontsize=16,color="green",shape="box"];3513[label="yvy1662",fontsize=16,color="green",shape="box"];3514[label="yvy1652",fontsize=16,color="green",shape="box"];3515[label="yvy1662",fontsize=16,color="green",shape="box"];3516[label="yvy1652",fontsize=16,color="green",shape="box"];3517[label="yvy1662",fontsize=16,color="green",shape="box"];3518[label="yvy1652",fontsize=16,color="green",shape="box"];3519[label="yvy1662",fontsize=16,color="green",shape="box"];3520[label="yvy1652",fontsize=16,color="green",shape="box"];3521[label="yvy1662",fontsize=16,color="green",shape="box"];3522[label="yvy1652",fontsize=16,color="green",shape="box"];3523[label="yvy1662",fontsize=16,color="green",shape="box"];3524[label="yvy1652",fontsize=16,color="green",shape="box"];3525[label="yvy1662",fontsize=16,color="green",shape="box"];3526[label="yvy1652",fontsize=16,color="green",shape="box"];3527[label="yvy1662",fontsize=16,color="green",shape="box"];3528[label="yvy1652",fontsize=16,color="green",shape="box"];3529[label="yvy1662",fontsize=16,color="green",shape="box"];3530[label="yvy1652",fontsize=16,color="green",shape="box"];3531[label="yvy1662",fontsize=16,color="green",shape="box"];3532[label="yvy1652",fontsize=16,color="green",shape="box"];3533[label="yvy1662",fontsize=16,color="green",shape="box"];3534[label="yvy1652",fontsize=16,color="green",shape="box"];3535[label="yvy1662",fontsize=16,color="green",shape="box"];3536[label="yvy1652",fontsize=16,color="green",shape="box"];3537[label="yvy1662",fontsize=16,color="green",shape="box"];3538[label="yvy1652",fontsize=16,color="green",shape="box"];3539[label="yvy1662",fontsize=16,color="green",shape="box"];3540[label="yvy1661",fontsize=16,color="green",shape="box"];3541[label="yvy1651",fontsize=16,color="green",shape="box"];3542[label="yvy1661",fontsize=16,color="green",shape="box"];3543[label="yvy1651",fontsize=16,color="green",shape="box"];3544[label="yvy1661",fontsize=16,color="green",shape="box"];3545[label="yvy1651",fontsize=16,color="green",shape="box"];3546[label="yvy1661",fontsize=16,color="green",shape="box"];3547[label="yvy1651",fontsize=16,color="green",shape="box"];3548[label="yvy1661",fontsize=16,color="green",shape="box"];3549[label="yvy1651",fontsize=16,color="green",shape="box"];3550[label="yvy1661",fontsize=16,color="green",shape="box"];3551[label="yvy1651",fontsize=16,color="green",shape="box"];3552[label="yvy1661",fontsize=16,color="green",shape="box"];3553[label="yvy1651",fontsize=16,color="green",shape="box"];3554[label="yvy1661",fontsize=16,color="green",shape="box"];3555[label="yvy1651",fontsize=16,color="green",shape="box"];3556[label="yvy1661",fontsize=16,color="green",shape="box"];3557[label="yvy1651",fontsize=16,color="green",shape="box"];3558[label="yvy1661",fontsize=16,color="green",shape="box"];3559[label="yvy1651",fontsize=16,color="green",shape="box"];3560[label="yvy1661",fontsize=16,color="green",shape="box"];3561[label="yvy1651",fontsize=16,color="green",shape="box"];3562[label="yvy1661",fontsize=16,color="green",shape="box"];3563[label="yvy1651",fontsize=16,color="green",shape="box"];3564[label="yvy1661",fontsize=16,color="green",shape="box"];3565[label="yvy1651",fontsize=16,color="green",shape="box"];3566[label="yvy1661",fontsize=16,color="green",shape="box"];3567[label="yvy1651",fontsize=16,color="green",shape="box"];3568[label="FiniteMap.mkBalBranch6Double_R yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 FiniteMap.EmptyFM) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 FiniteMap.EmptyFM) yvy54",fontsize=16,color="black",shape="box"];3568 -> 3609[label="",style="solid", color="black", weight=3]; 52.72/30.41 3569[label="FiniteMap.mkBalBranch6Double_R yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 (FiniteMap.Branch yvy9040 yvy9041 yvy9042 yvy9043 yvy9044)) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 (FiniteMap.Branch yvy9040 yvy9041 yvy9042 yvy9043 yvy9044)) yvy54",fontsize=16,color="black",shape="box"];3569 -> 3610[label="",style="solid", color="black", weight=3]; 52.72/30.41 3607 -> 1007[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3607[label="FiniteMap.mkBranchResult yvy310 yvy311 yvy312 (FiniteMap.mkBranch (Pos (Succ yvy313)) yvy314 yvy315 yvy316 yvy317)",fontsize=16,color="magenta"];3607 -> 3611[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3607 -> 3612[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3607 -> 3613[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3607 -> 3614[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3608 -> 1007[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3608[label="FiniteMap.mkBranchResult yvy50 yvy51 yvy90 yvy5433",fontsize=16,color="magenta"];3608 -> 3615[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3609[label="error []",fontsize=16,color="red",shape="box"];3610 -> 3570[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3610[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) yvy9040 yvy9041 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy900 yvy901 yvy903 yvy9043) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) yvy50 yvy51 yvy9044 yvy54)",fontsize=16,color="magenta"];3610 -> 3616[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3610 -> 3617[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3610 -> 3618[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3610 -> 3619[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3610 -> 3620[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3610 -> 3621[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3610 -> 3622[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3610 -> 3623[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3610 -> 3624[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3611[label="yvy310",fontsize=16,color="green",shape="box"];3612[label="FiniteMap.mkBranch (Pos (Succ yvy313)) yvy314 yvy315 yvy316 yvy317",fontsize=16,color="black",shape="triangle"];3612 -> 3625[label="",style="solid", color="black", weight=3]; 52.72/30.41 3613[label="yvy312",fontsize=16,color="green",shape="box"];3614[label="yvy311",fontsize=16,color="green",shape="box"];3615[label="yvy5433",fontsize=16,color="green",shape="box"];3616 -> 3612[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3616[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy900 yvy901 yvy903 yvy9043",fontsize=16,color="magenta"];3616 -> 3626[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3616 -> 3627[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3616 -> 3628[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3616 -> 3629[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3616 -> 3630[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3617[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3618[label="yvy50",fontsize=16,color="green",shape="box"];3619[label="yvy54",fontsize=16,color="green",shape="box"];3620[label="yvy9040",fontsize=16,color="green",shape="box"];3621[label="yvy51",fontsize=16,color="green",shape="box"];3622[label="yvy9044",fontsize=16,color="green",shape="box"];3623[label="yvy9041",fontsize=16,color="green",shape="box"];3624[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3625 -> 1007[label="",style="dashed", color="red", weight=0]; 52.72/30.41 3625[label="FiniteMap.mkBranchResult yvy314 yvy315 yvy316 yvy317",fontsize=16,color="magenta"];3625 -> 3631[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3625 -> 3632[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3625 -> 3633[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3625 -> 3634[label="",style="dashed", color="magenta", weight=3]; 52.72/30.41 3626[label="yvy900",fontsize=16,color="green",shape="box"];3627[label="yvy9043",fontsize=16,color="green",shape="box"];3628[label="yvy901",fontsize=16,color="green",shape="box"];3629[label="yvy903",fontsize=16,color="green",shape="box"];3630[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3631[label="yvy314",fontsize=16,color="green",shape="box"];3632[label="yvy317",fontsize=16,color="green",shape="box"];3633[label="yvy316",fontsize=16,color="green",shape="box"];3634[label="yvy315",fontsize=16,color="green",shape="box"];} 52.72/30.41 52.72/30.41 ---------------------------------------- 52.72/30.41 52.72/30.41 (16) 52.72/30.41 Complex Obligation (AND) 52.72/30.41 52.72/30.41 ---------------------------------------- 52.72/30.41 52.72/30.41 (17) 52.72/30.41 Obligation: 52.72/30.41 Q DP problem: 52.72/30.41 The TRS P consists of the following rules: 52.72/30.41 52.72/30.41 new_primCmpNat(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat(yvy4000, yvy3000) 52.72/30.41 52.72/30.41 R is empty. 52.72/30.41 Q is empty. 52.72/30.41 We have to consider all minimal (P,Q,R)-chains. 52.72/30.41 ---------------------------------------- 52.72/30.41 52.72/30.41 (18) QDPSizeChangeProof (EQUIVALENT) 52.72/30.41 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. 52.72/30.41 52.72/30.41 From the DPs we obtained the following set of size-change graphs: 52.72/30.41 *new_primCmpNat(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat(yvy4000, yvy3000) 52.72/30.41 The graph contains the following edges 1 > 1, 2 > 2 52.72/30.41 52.72/30.41 52.72/30.41 ---------------------------------------- 52.72/30.41 52.72/30.41 (19) 52.72/30.41 YES 52.72/30.41 52.72/30.41 ---------------------------------------- 52.72/30.41 52.72/30.41 (20) 52.72/30.41 Obligation: 52.72/30.41 Q DP problem: 52.72/30.41 The TRS P consists of the following rules: 52.72/30.41 52.72/30.41 new_addToFM_C1(yvy106, yvy107, yvy108, yvy109, yvy110, yvy111, yvy112, True, bb, bc) -> new_addToFM_C(yvy110, yvy111, yvy112, bb, bc) 52.72/30.41 new_addToFM_C2(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, True, h, ba) -> new_addToFM_C(yvy79, yvy81, yvy82, h, ba) 52.72/30.41 new_addToFM_C2(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, False, h, ba) -> new_addToFM_C1(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, new_gt(yvy81, yvy76, h), h, ba) 52.72/30.41 new_addToFM_C(Branch(yvy50, yvy51, yvy52, yvy53, yvy54), yvy40, yvy41, bd, be) -> new_addToFM_C2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy40, yvy41, new_lt24(yvy40, yvy50, bd), bd, be) 52.72/30.41 52.72/30.41 The TRS R consists of the following rules: 52.72/30.41 52.72/30.41 new_esEs14(yvy1650, yvy1660, ty_@0) -> new_esEs19(yvy1650, yvy1660) 52.72/30.41 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(ty_@2, efh), ega)) -> new_esEs21(yvy4000, yvy3000, efh, ega) 52.72/30.41 new_lt24(yvy40, yvy50, ty_Bool) -> new_lt14(yvy40, yvy50) 52.72/30.41 new_ltEs19(yvy179, yvy180, ty_Integer) -> new_ltEs11(yvy179, yvy180) 52.72/30.41 new_compare9(Double(yvy400, Pos(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.72/30.41 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 52.72/30.41 new_primPlusNat0(Zero, Zero) -> Zero 52.72/30.41 new_esEs14(yvy1650, yvy1660, app(app(app(ty_@3, dhe), dhf), dhg)) -> new_esEs22(yvy1650, yvy1660, dhe, dhf, dhg) 52.72/30.41 new_pePe(True, yvy280) -> True 52.72/30.41 new_lt12(yvy40, yvy30, bg, bh) -> new_esEs12(new_compare6(yvy40, yvy30, bg, bh)) 52.72/30.41 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_@0) -> new_ltEs4(yvy1650, yvy1660) 52.72/30.41 new_esEs26(LT, GT) -> False 52.72/30.41 new_esEs26(GT, LT) -> False 52.72/30.41 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(app(ty_@3, fca), fcb), fcc)) -> new_ltEs5(yvy1650, yvy1660, fca, fcb, fcc) 52.72/30.41 new_lt20(yvy190, yvy192, ty_Ordering) -> new_lt17(yvy190, yvy192) 52.72/30.41 new_compare13(Float(yvy400, Pos(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.72/30.41 new_compare13(Float(yvy400, Neg(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.72/30.41 new_esEs8(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.72/30.41 new_esEs30(yvy4000, yvy3000, app(app(ty_@2, ehb), ehc)) -> new_esEs21(yvy4000, yvy3000, ehb, ehc) 52.72/30.41 new_lt24(yvy40, yvy50, app(app(ty_Either, ce), cf)) -> new_lt16(yvy40, yvy50, ce, cf) 52.72/30.41 new_ltEs20(yvy191, yvy193, app(app(app(ty_@3, ge), gf), gg)) -> new_ltEs5(yvy191, yvy193, ge, gf, gg) 52.72/30.41 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 52.72/30.41 new_esEs26(LT, EQ) -> False 52.72/30.41 new_esEs26(EQ, LT) -> False 52.72/30.41 new_esEs29(yvy190, yvy192, ty_@0) -> new_esEs19(yvy190, yvy192) 52.72/30.41 new_lt6(yvy1651, yvy1661, ty_Char) -> new_lt8(yvy1651, yvy1661) 52.72/30.41 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, app(ty_Ratio, cgg)) -> new_ltEs18(yvy1650, yvy1660, cgg) 52.72/30.41 new_ltEs19(yvy179, yvy180, app(app(ty_@2, dd), de)) -> new_ltEs12(yvy179, yvy180, dd, de) 52.72/30.41 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(ty_Ratio, eeh)) -> new_esEs28(yvy4000, yvy3000, eeh) 52.72/30.41 new_lt23(yvy155, yvy158, app(ty_Maybe, dbc)) -> new_lt15(yvy155, yvy158, dbc) 52.72/30.41 new_compare18(LT, LT) -> EQ 52.72/30.41 new_lt24(yvy40, yvy50, app(app(ty_@2, bg), bh)) -> new_lt12(yvy40, yvy50, bg, bh) 52.72/30.41 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Bool) -> new_ltEs13(yvy1650, yvy1660) 52.72/30.41 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(ty_Either, egc), egd)) -> new_esEs25(yvy4000, yvy3000, egc, egd) 52.72/30.41 new_gt1(yvy40, yvy30, bg, bh) -> new_esEs41(new_compare6(yvy40, yvy30, bg, bh)) 52.72/30.41 new_ltEs20(yvy191, yvy193, ty_Float) -> new_ltEs7(yvy191, yvy193) 52.72/30.41 new_esEs30(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.41 new_esEs8(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.72/30.41 new_esEs6(yvy402, yvy302, ty_Int) -> new_esEs17(yvy402, yvy302) 52.72/30.41 new_ltEs21(yvy165, yvy166, ty_Ordering) -> new_ltEs16(yvy165, yvy166) 52.72/30.41 new_ltEs20(yvy191, yvy193, ty_@0) -> new_ltEs4(yvy191, yvy193) 52.72/30.41 new_esEs39(yvy155, yvy158, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs22(yvy155, yvy158, dah, dba, dbb) 52.72/30.41 new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, False, ccg, cch, cda) -> GT 52.72/30.41 new_esEs33(yvy1650, yvy1660, ty_Char) -> new_esEs16(yvy1650, yvy1660) 52.72/30.41 new_esEs36(yvy4002, yvy3002, app(ty_Ratio, bhg)) -> new_esEs28(yvy4002, yvy3002, bhg) 52.72/30.41 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 52.72/30.41 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Double) -> new_ltEs17(yvy1650, yvy1660) 52.72/30.41 new_esEs40(yvy154, yvy157, ty_Double) -> new_esEs27(yvy154, yvy157) 52.72/30.41 new_esEs31(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) 52.72/30.41 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.72/30.41 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.72/30.41 new_ltEs24(yvy156, yvy159, app(ty_[], dbg)) -> new_ltEs10(yvy156, yvy159, dbg) 52.72/30.41 new_esEs7(yvy401, yvy301, ty_Double) -> new_esEs27(yvy401, yvy301) 52.72/30.41 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(ty_Either, fce), fcf)) -> new_ltEs15(yvy1650, yvy1660, fce, fcf) 52.72/30.41 new_not(True) -> False 52.72/30.41 new_ltEs22(yvy172, yvy173, ty_Char) -> new_ltEs8(yvy172, yvy173) 52.72/30.41 new_lt23(yvy155, yvy158, ty_Int) -> new_lt9(yvy155, yvy158) 52.72/30.41 new_esEs13(yvy1651, yvy1661, ty_Integer) -> new_esEs20(yvy1651, yvy1661) 52.72/30.41 new_gt3(yvy40, yvy30) -> new_esEs41(new_compare19(yvy40, yvy30)) 52.72/30.41 new_primCompAux00(yvy133, LT) -> LT 52.72/30.41 new_esEs39(yvy155, yvy158, ty_Ordering) -> new_esEs26(yvy155, yvy158) 52.72/30.41 new_compare17(yvy230, yvy231, False, dda, ddb) -> GT 52.72/30.41 new_lt22(yvy154, yvy157, ty_Float) -> new_lt7(yvy154, yvy157) 52.72/30.41 new_lt22(yvy154, yvy157, app(ty_[], chc)) -> new_lt10(yvy154, yvy157, chc) 52.72/30.41 new_esEs39(yvy155, yvy158, app(ty_[], dae)) -> new_esEs18(yvy155, yvy158, dae) 52.72/30.41 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Char, bgg) -> new_esEs16(yvy4000, yvy3000) 52.72/30.41 new_esEs10(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.72/30.41 new_gt11(yvy40, yvy30, ce, cf) -> new_esEs41(new_compare16(yvy40, yvy30, ce, cf)) 52.72/30.41 new_lt24(yvy40, yvy50, ty_Integer) -> new_lt11(yvy40, yvy50) 52.72/30.41 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.72/30.41 new_lt24(yvy40, yvy50, ty_Double) -> new_lt18(yvy40, yvy50) 52.72/30.41 new_esEs38(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.72/30.41 new_esEs31(yvy4001, yvy3001, app(ty_Ratio, fdf)) -> new_esEs28(yvy4001, yvy3001, fdf) 52.72/30.41 new_primEqNat0(Succ(yvy40000), Zero) -> False 52.72/30.41 new_primEqNat0(Zero, Succ(yvy30000)) -> False 52.72/30.41 new_esEs39(yvy155, yvy158, app(ty_Maybe, dbc)) -> new_esEs24(yvy155, yvy158, dbc) 52.72/30.41 new_esEs10(yvy400, yvy300, app(app(ty_@2, bce), bcf)) -> new_esEs21(yvy400, yvy300, bce, bcf) 52.72/30.41 new_esEs36(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) 52.72/30.41 new_ltEs21(yvy165, yvy166, app(app(ty_@2, hf), hg)) -> new_ltEs12(yvy165, yvy166, hf, hg) 52.72/30.41 new_compare10(yvy237, yvy238, True, ehh, faa) -> LT 52.72/30.41 new_lt6(yvy1651, yvy1661, app(app(ty_@2, eae), eaf)) -> new_lt12(yvy1651, yvy1661, eae, eaf) 52.72/30.41 new_gt7(yvy40, yvy30) -> new_esEs41(new_compare14(yvy40, yvy30)) 52.72/30.41 new_lt20(yvy190, yvy192, app(app(app(ty_@3, fb), fc), fd)) -> new_lt13(yvy190, yvy192, fb, fc, fd) 52.72/30.41 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(ty_@2, cee), cef), bae) -> new_ltEs12(yvy1650, yvy1660, cee, cef) 52.72/30.41 new_compare7(True, True) -> EQ 52.72/30.41 new_gt(yvy81, yvy76, ty_Double) -> new_gt0(yvy81, yvy76) 52.72/30.41 new_ltEs20(yvy191, yvy193, ty_Bool) -> new_ltEs13(yvy191, yvy193) 52.72/30.41 new_compare210(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, True, cgh, cha, chb) -> EQ 52.72/30.41 new_esEs31(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) 52.72/30.41 new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT 52.72/30.41 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Integer, bgg) -> new_esEs20(yvy4000, yvy3000) 52.72/30.41 new_esEs40(yvy154, yvy157, app(app(ty_@2, chd), che)) -> new_esEs21(yvy154, yvy157, chd, che) 52.72/30.41 new_esEs5(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.72/30.41 new_esEs29(yvy190, yvy192, ty_Ordering) -> new_esEs26(yvy190, yvy192) 52.72/30.41 new_esEs29(yvy190, yvy192, ty_Float) -> new_esEs15(yvy190, yvy192) 52.72/30.41 new_esEs10(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.72/30.41 new_ltEs9(yvy165, yvy166) -> new_fsEs(new_compare8(yvy165, yvy166)) 52.72/30.41 new_ltEs6(yvy1652, yvy1662, ty_Double) -> new_ltEs17(yvy1652, yvy1662) 52.72/30.41 new_lt6(yvy1651, yvy1661, app(ty_[], ead)) -> new_lt10(yvy1651, yvy1661, ead) 52.72/30.41 new_esEs34(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.72/30.41 new_esEs7(yvy401, yvy301, ty_Integer) -> new_esEs20(yvy401, yvy301) 52.72/30.41 new_esEs4(yvy401, yvy301, app(app(ty_@2, bfb), bfc)) -> new_esEs21(yvy401, yvy301, bfb, bfc) 52.72/30.41 new_primCmpNat0(Zero, Succ(yvy3000)) -> LT 52.72/30.41 new_esEs30(yvy4000, yvy3000, app(app(ty_Either, ehe), ehf)) -> new_esEs25(yvy4000, yvy3000, ehe, ehf) 52.72/30.41 new_ltEs23(yvy1651, yvy1661, ty_Int) -> new_ltEs9(yvy1651, yvy1661) 52.72/30.41 new_ltEs20(yvy191, yvy193, ty_Double) -> new_ltEs17(yvy191, yvy193) 52.72/30.41 new_esEs38(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.72/30.41 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Float) -> new_ltEs7(yvy1650, yvy1660) 52.72/30.41 new_ltEs15(Right(yvy1650), Left(yvy1660), bad, bae) -> False 52.72/30.41 new_esEs8(yvy400, yvy300, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs22(yvy400, yvy300, dfh, dga, dgb) 52.72/30.41 new_esEs11(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.72/30.41 new_esEs8(yvy400, yvy300, app(ty_[], dha)) -> new_esEs18(yvy400, yvy300, dha) 52.72/30.41 new_compare18(GT, GT) -> EQ 52.72/30.41 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, ty_Char) -> new_ltEs8(yvy1650, yvy1660) 52.72/30.41 new_esEs33(yvy1650, yvy1660, ty_Double) -> new_esEs27(yvy1650, yvy1660) 52.72/30.41 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.72/30.41 new_esEs8(yvy400, yvy300, app(ty_Maybe, dgc)) -> new_esEs24(yvy400, yvy300, dgc) 52.72/30.41 new_ltEs23(yvy1651, yvy1661, ty_Double) -> new_ltEs17(yvy1651, yvy1661) 52.72/30.41 new_esEs29(yvy190, yvy192, app(ty_Maybe, ff)) -> new_esEs24(yvy190, yvy192, ff) 52.72/30.41 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.41 new_esEs23(True, True) -> True 52.72/30.41 new_lt22(yvy154, yvy157, app(ty_Ratio, dad)) -> new_lt19(yvy154, yvy157, dad) 52.72/30.41 new_lt23(yvy155, yvy158, app(app(app(ty_@3, dah), dba), dbb)) -> new_lt13(yvy155, yvy158, dah, dba, dbb) 52.72/30.41 new_esEs39(yvy155, yvy158, ty_Int) -> new_esEs17(yvy155, yvy158) 52.72/30.41 new_ltEs19(yvy179, yvy180, app(ty_Maybe, ea)) -> new_ltEs14(yvy179, yvy180, ea) 52.72/30.41 new_ltEs5(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), hh, baa, bab) -> new_pePe(new_lt5(yvy1650, yvy1660, hh), new_asAs(new_esEs14(yvy1650, yvy1660, hh), new_pePe(new_lt6(yvy1651, yvy1661, baa), new_asAs(new_esEs13(yvy1651, yvy1661, baa), new_ltEs6(yvy1652, yvy1662, bab))))) 52.72/30.41 new_esEs29(yvy190, yvy192, app(ty_[], eg)) -> new_esEs18(yvy190, yvy192, eg) 52.72/30.41 new_lt6(yvy1651, yvy1661, ty_Bool) -> new_lt14(yvy1651, yvy1661) 52.72/30.41 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, ty_@0) -> new_ltEs4(yvy1650, yvy1660) 52.72/30.41 new_esEs7(yvy401, yvy301, ty_Char) -> new_esEs16(yvy401, yvy301) 52.72/30.41 new_esEs9(yvy400, yvy300, app(app(ty_Either, gba), gbb)) -> new_esEs25(yvy400, yvy300, gba, gbb) 52.72/30.41 new_compare30(yvy400, yvy300, ty_Int) -> new_compare8(yvy400, yvy300) 52.72/30.41 new_esEs40(yvy154, yvy157, ty_Char) -> new_esEs16(yvy154, yvy157) 52.72/30.41 new_esEs29(yvy190, yvy192, app(ty_Ratio, ga)) -> new_esEs28(yvy190, yvy192, ga) 52.72/30.41 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(app(ty_Either, efa), efb)) -> new_esEs25(yvy4000, yvy3000, efa, efb) 52.72/30.41 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, app(app(ty_Either, cge), cgf)) -> new_ltEs15(yvy1650, yvy1660, cge, cgf) 52.72/30.41 new_esEs6(yvy402, yvy302, app(ty_Maybe, ddg)) -> new_esEs24(yvy402, yvy302, ddg) 52.72/30.41 new_esEs39(yvy155, yvy158, app(ty_Ratio, dbf)) -> new_esEs28(yvy155, yvy158, dbf) 52.72/30.41 new_esEs4(yvy401, yvy301, ty_Bool) -> new_esEs23(yvy401, yvy301) 52.72/30.41 new_lt8(yvy40, yvy30) -> new_esEs12(new_compare19(yvy40, yvy30)) 52.72/30.41 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Bool, bgg) -> new_esEs23(yvy4000, yvy3000) 52.72/30.41 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 52.72/30.41 new_esEs19(@0, @0) -> True 52.72/30.41 new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT 52.72/30.41 new_primMulInt(Pos(yvy4000), Pos(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) 52.72/30.41 new_ltEs6(yvy1652, yvy1662, ty_Float) -> new_ltEs7(yvy1652, yvy1662) 52.72/30.41 new_ltEs15(Left(yvy1650), Right(yvy1660), bad, bae) -> True 52.72/30.41 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Double, bae) -> new_ltEs17(yvy1650, yvy1660) 52.72/30.41 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(app(ty_@2, eef), eeg)) -> new_esEs21(yvy4000, yvy3000, eef, eeg) 52.72/30.41 new_lt22(yvy154, yvy157, ty_Integer) -> new_lt11(yvy154, yvy157) 52.72/30.41 new_esEs7(yvy401, yvy301, app(app(ty_Either, dfe), dff)) -> new_esEs25(yvy401, yvy301, dfe, dff) 52.72/30.41 new_primMulNat0(Succ(yvy40000), Zero) -> Zero 52.72/30.41 new_primMulNat0(Zero, Succ(yvy30100)) -> Zero 52.72/30.41 new_lt21(yvy1650, yvy1660, ty_Bool) -> new_lt14(yvy1650, yvy1660) 52.72/30.41 new_esEs7(yvy401, yvy301, ty_Bool) -> new_esEs23(yvy401, yvy301) 52.72/30.41 new_lt15(yvy40, yvy30, cd) -> new_esEs12(new_compare29(yvy40, yvy30, cd)) 52.72/30.41 new_lt14(yvy40, yvy30) -> new_esEs12(new_compare7(yvy40, yvy30)) 52.72/30.41 new_esEs11(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.72/30.41 new_lt23(yvy155, yvy158, ty_Ordering) -> new_lt17(yvy155, yvy158) 52.72/30.41 new_lt20(yvy190, yvy192, app(ty_Ratio, ga)) -> new_lt19(yvy190, yvy192, ga) 52.72/30.41 new_esEs38(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.41 new_esEs31(yvy4001, yvy3001, app(app(app(ty_@3, fch), fda), fdb)) -> new_esEs22(yvy4001, yvy3001, fch, fda, fdb) 52.72/30.41 new_esEs8(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.72/30.41 new_esEs40(yvy154, yvy157, ty_Bool) -> new_esEs23(yvy154, yvy157) 52.72/30.41 new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) 52.72/30.41 new_primPlusNat0(Zero, Succ(yvy21000)) -> Succ(yvy21000) 52.72/30.41 new_ltEs22(yvy172, yvy173, ty_Float) -> new_ltEs7(yvy172, yvy173) 52.72/30.41 new_esEs26(EQ, GT) -> False 52.72/30.41 new_esEs26(GT, EQ) -> False 52.72/30.41 new_lt6(yvy1651, yvy1661, ty_Float) -> new_lt7(yvy1651, yvy1661) 52.72/30.41 new_esEs30(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.72/30.41 new_esEs31(yvy4001, yvy3001, app(ty_Maybe, fdc)) -> new_esEs24(yvy4001, yvy3001, fdc) 52.72/30.41 new_esEs10(yvy400, yvy300, app(app(ty_Either, bch), bda)) -> new_esEs25(yvy400, yvy300, bch, bda) 52.72/30.41 new_esEs31(yvy4001, yvy3001, app(ty_[], fea)) -> new_esEs18(yvy4001, yvy3001, fea) 52.72/30.41 new_lt6(yvy1651, yvy1661, ty_Integer) -> new_lt11(yvy1651, yvy1661) 52.72/30.41 new_esEs5(yvy400, yvy300, app(ty_Ratio, bee)) -> new_esEs28(yvy400, yvy300, bee) 52.72/30.41 new_esEs33(yvy1650, yvy1660, app(app(ty_Either, fgc), fgd)) -> new_esEs25(yvy1650, yvy1660, fgc, fgd) 52.72/30.41 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, ty_Bool) -> new_ltEs13(yvy1650, yvy1660) 52.72/30.41 new_esEs7(yvy401, yvy301, app(app(ty_@2, dfb), dfc)) -> new_esEs21(yvy401, yvy301, dfb, dfc) 52.72/30.41 new_esEs31(yvy4001, yvy3001, ty_Ordering) -> new_esEs26(yvy4001, yvy3001) 52.72/30.41 new_gt(yvy81, yvy76, ty_Int) -> new_gt4(yvy81, yvy76) 52.72/30.41 new_esEs23(False, False) -> True 52.72/30.41 new_compare9(Double(yvy400, Pos(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.72/30.41 new_compare9(Double(yvy400, Neg(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.72/30.41 new_esEs17(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 52.72/30.41 new_esEs12(LT) -> True 52.72/30.41 new_esEs13(yvy1651, yvy1661, ty_Double) -> new_esEs27(yvy1651, yvy1661) 52.72/30.41 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.72/30.41 new_esEs6(yvy402, yvy302, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs22(yvy402, yvy302, ddd, dde, ddf) 52.72/30.41 new_esEs32(yvy4000, yvy3000, app(app(ty_Either, ffa), ffb)) -> new_esEs25(yvy4000, yvy3000, ffa, ffb) 52.72/30.41 new_esEs32(yvy4000, yvy3000, app(ty_Maybe, fee)) -> new_esEs24(yvy4000, yvy3000, fee) 52.72/30.41 new_esEs11(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.72/30.41 new_lt20(yvy190, yvy192, ty_Float) -> new_lt7(yvy190, yvy192) 52.72/30.41 new_gt4(yvy40, yvy30) -> new_esEs41(new_compare8(yvy40, yvy30)) 52.72/30.41 new_ltEs12(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), hf, hg) -> new_pePe(new_lt21(yvy1650, yvy1660, hf), new_asAs(new_esEs33(yvy1650, yvy1660, hf), new_ltEs23(yvy1651, yvy1661, hg))) 52.72/30.41 new_esEs5(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.72/30.41 new_lt22(yvy154, yvy157, ty_Bool) -> new_lt14(yvy154, yvy157) 52.72/30.41 new_lt21(yvy1650, yvy1660, ty_Integer) -> new_lt11(yvy1650, yvy1660) 52.72/30.41 new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, ccg, cch, cda) -> LT 52.72/30.41 new_esEs33(yvy1650, yvy1660, ty_Float) -> new_esEs15(yvy1650, yvy1660) 52.72/30.41 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Float, bae) -> new_ltEs7(yvy1650, yvy1660) 52.72/30.41 new_esEs6(yvy402, yvy302, app(ty_[], dee)) -> new_esEs18(yvy402, yvy302, dee) 52.72/30.41 new_esEs5(yvy400, yvy300, app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs22(yvy400, yvy300, bfh, bga, bgb) 52.72/30.41 new_ltEs19(yvy179, yvy180, ty_Ordering) -> new_ltEs16(yvy179, yvy180) 52.72/30.41 new_lt10(yvy40, yvy30, bf) -> new_esEs12(new_compare0(yvy40, yvy30, bf)) 52.72/30.41 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(app(ty_@3, ceg), ceh), cfa), bae) -> new_ltEs5(yvy1650, yvy1660, ceg, ceh, cfa) 52.72/30.41 new_esEs37(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.72/30.41 new_ltEs6(yvy1652, yvy1662, app(app(ty_Either, ece), ecf)) -> new_ltEs15(yvy1652, yvy1662, ece, ecf) 52.72/30.41 new_esEs4(yvy401, yvy301, ty_Integer) -> new_esEs20(yvy401, yvy301) 52.72/30.41 new_esEs30(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.72/30.41 new_esEs29(yvy190, yvy192, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs22(yvy190, yvy192, fb, fc, fd) 52.72/30.41 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.41 new_compare16(Left(yvy400), Left(yvy300), ce, cf) -> new_compare28(yvy400, yvy300, new_esEs10(yvy400, yvy300, ce), ce, cf) 52.72/30.41 new_esEs40(yvy154, yvy157, ty_Integer) -> new_esEs20(yvy154, yvy157) 52.72/30.41 new_esEs14(yvy1650, yvy1660, ty_Int) -> new_esEs17(yvy1650, yvy1660) 52.72/30.41 new_ltEs20(yvy191, yvy193, app(app(ty_Either, ha), hb)) -> new_ltEs15(yvy191, yvy193, ha, hb) 52.72/30.41 new_esEs32(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.41 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Float, bgg) -> new_esEs15(yvy4000, yvy3000) 52.72/30.41 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, app(ty_[], cff)) -> new_ltEs10(yvy1650, yvy1660, cff) 52.72/30.41 new_esEs31(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.72/30.41 new_esEs13(yvy1651, yvy1661, app(ty_Ratio, ebe)) -> new_esEs28(yvy1651, yvy1661, ebe) 52.72/30.41 new_lt6(yvy1651, yvy1661, app(ty_Ratio, ebe)) -> new_lt19(yvy1651, yvy1661, ebe) 52.72/30.41 new_esEs12(GT) -> False 52.72/30.41 new_gt(yvy81, yvy76, ty_@0) -> new_gt6(yvy81, yvy76) 52.72/30.41 new_esEs12(EQ) -> False 52.72/30.41 new_esEs37(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) 52.72/30.41 new_esEs37(yvy4001, yvy3001, app(app(ty_Either, cbb), cbc)) -> new_esEs25(yvy4001, yvy3001, cbb, cbc) 52.72/30.41 new_esEs37(yvy4001, yvy3001, ty_Bool) -> new_esEs23(yvy4001, yvy3001) 52.72/30.41 new_esEs10(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.72/30.41 new_compare19(Char(yvy400), Char(yvy300)) -> new_primCmpNat0(yvy400, yvy300) 52.72/30.41 new_lt22(yvy154, yvy157, ty_Ordering) -> new_lt17(yvy154, yvy157) 52.72/30.41 new_compare11(yvy247, yvy248, yvy249, yvy250, False, yvy252, fhh, gaa) -> new_compare110(yvy247, yvy248, yvy249, yvy250, yvy252, fhh, gaa) 52.72/30.41 new_lt6(yvy1651, yvy1661, ty_@0) -> new_lt4(yvy1651, yvy1661) 52.72/30.41 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.41 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Char) -> new_ltEs8(yvy1650, yvy1660) 52.72/30.41 new_esEs9(yvy400, yvy300, app(ty_[], gbc)) -> new_esEs18(yvy400, yvy300, gbc) 52.72/30.41 new_esEs36(yvy4002, yvy3002, app(ty_Maybe, bhd)) -> new_esEs24(yvy4002, yvy3002, bhd) 52.72/30.41 new_esEs29(yvy190, yvy192, ty_Char) -> new_esEs16(yvy190, yvy192) 52.72/30.41 new_esEs38(yvy4000, yvy3000, app(ty_Ratio, ccc)) -> new_esEs28(yvy4000, yvy3000, ccc) 52.72/30.41 new_esEs37(yvy4001, yvy3001, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs22(yvy4001, yvy3001, cac, cad, cae) 52.72/30.41 new_esEs32(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.72/30.41 new_lt5(yvy1650, yvy1660, app(app(ty_Either, eaa), eab)) -> new_lt16(yvy1650, yvy1660, eaa, eab) 52.72/30.41 new_lt5(yvy1650, yvy1660, ty_Bool) -> new_lt14(yvy1650, yvy1660) 52.72/30.41 new_compare18(GT, LT) -> GT 52.72/30.41 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Int) -> new_ltEs9(yvy1650, yvy1660) 52.72/30.41 new_gt10(yvy40, yvy30, cd) -> new_esEs41(new_compare29(yvy40, yvy30, cd)) 52.72/30.41 new_compare18(EQ, LT) -> GT 52.72/30.41 new_esEs11(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.72/30.41 new_lt5(yvy1650, yvy1660, app(app(app(ty_@3, dhe), dhf), dhg)) -> new_lt13(yvy1650, yvy1660, dhe, dhf, dhg) 52.72/30.41 new_esEs10(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.72/30.41 new_compare0([], :(yvy300, yvy301), bf) -> LT 52.72/30.41 new_compare10(yvy237, yvy238, False, ehh, faa) -> GT 52.72/30.41 new_esEs6(yvy402, yvy302, ty_Ordering) -> new_esEs26(yvy402, yvy302) 52.72/30.41 new_compare30(yvy400, yvy300, ty_@0) -> new_compare5(yvy400, yvy300) 52.72/30.41 new_esEs33(yvy1650, yvy1660, ty_Ordering) -> new_esEs26(yvy1650, yvy1660) 52.72/30.41 new_esEs16(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 52.72/30.41 new_esEs5(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.72/30.41 new_compare30(yvy400, yvy300, ty_Ordering) -> new_compare18(yvy400, yvy300) 52.72/30.41 new_lt21(yvy1650, yvy1660, ty_Char) -> new_lt8(yvy1650, yvy1660) 52.72/30.41 new_ltEs23(yvy1651, yvy1661, app(app(ty_@2, fgg), fgh)) -> new_ltEs12(yvy1651, yvy1661, fgg, fgh) 52.72/30.41 new_lt24(yvy40, yvy50, ty_Float) -> new_lt7(yvy40, yvy50) 52.72/30.41 new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) 52.72/30.41 new_gt6(yvy40, yvy30) -> new_esEs41(new_compare5(yvy40, yvy30)) 52.72/30.41 new_lt20(yvy190, yvy192, app(ty_[], eg)) -> new_lt10(yvy190, yvy192, eg) 52.72/30.41 new_esEs18(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bgh) -> new_asAs(new_esEs30(yvy4000, yvy3000, bgh), new_esEs18(yvy4001, yvy3001, bgh)) 52.72/30.41 new_primCompAux00(yvy133, EQ) -> yvy133 52.72/30.41 new_lt5(yvy1650, yvy1660, ty_Ordering) -> new_lt17(yvy1650, yvy1660) 52.72/30.41 new_compare7(False, True) -> LT 52.72/30.41 new_esEs6(yvy402, yvy302, app(app(ty_Either, dec), ded)) -> new_esEs25(yvy402, yvy302, dec, ded) 52.72/30.41 new_esEs33(yvy1650, yvy1660, ty_Bool) -> new_esEs23(yvy1650, yvy1660) 52.72/30.41 new_esEs33(yvy1650, yvy1660, app(app(app(ty_@3, ffg), ffh), fga)) -> new_esEs22(yvy1650, yvy1660, ffg, ffh, fga) 52.72/30.41 new_gt(yvy81, yvy76, app(app(ty_Either, bbf), bbg)) -> new_gt11(yvy81, yvy76, bbf, bbg) 52.72/30.41 new_gt(yvy81, yvy76, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_gt8(yvy81, yvy76, bbb, bbc, bbd) 52.72/30.41 new_esEs6(yvy402, yvy302, ty_@0) -> new_esEs19(yvy402, yvy302) 52.72/30.41 new_esEs35(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.41 new_esEs29(yvy190, yvy192, ty_Int) -> new_esEs17(yvy190, yvy192) 52.72/30.41 new_compare30(yvy400, yvy300, ty_Integer) -> new_compare14(yvy400, yvy300) 52.72/30.41 new_lt23(yvy155, yvy158, ty_Float) -> new_lt7(yvy155, yvy158) 52.72/30.41 new_lt21(yvy1650, yvy1660, app(ty_[], ffd)) -> new_lt10(yvy1650, yvy1660, ffd) 52.72/30.41 new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) 52.72/30.41 new_esEs37(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.72/30.41 new_esEs9(yvy400, yvy300, app(app(ty_@2, gaf), gag)) -> new_esEs21(yvy400, yvy300, gaf, gag) 52.72/30.41 new_esEs4(yvy401, yvy301, app(ty_Maybe, bfa)) -> new_esEs24(yvy401, yvy301, bfa) 52.72/30.41 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Ordering, bae) -> new_ltEs16(yvy1650, yvy1660) 52.72/30.41 new_esEs27(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs17(new_sr0(yvy4000, yvy3001), new_sr0(yvy4001, yvy3000)) 52.72/30.41 new_esEs31(yvy4001, yvy3001, ty_Char) -> new_esEs16(yvy4001, yvy3001) 52.72/30.41 new_esEs32(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs22(yvy4000, yvy3000, feb, fec, fed) 52.72/30.41 new_ltEs11(yvy165, yvy166) -> new_fsEs(new_compare14(yvy165, yvy166)) 52.72/30.41 new_esEs5(yvy400, yvy300, app(app(ty_Either, bgf), bgg)) -> new_esEs25(yvy400, yvy300, bgf, bgg) 52.72/30.41 new_ltEs13(False, True) -> True 52.72/30.41 new_ltEs13(False, False) -> True 52.72/30.41 new_gt(yvy81, yvy76, ty_Integer) -> new_gt7(yvy81, yvy76) 52.72/30.41 new_esEs32(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.72/30.41 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_Ratio, fcg)) -> new_ltEs18(yvy1650, yvy1660, fcg) 52.72/30.41 new_esEs36(yvy4002, yvy3002, ty_Integer) -> new_esEs20(yvy4002, yvy3002) 52.72/30.41 new_ltEs22(yvy172, yvy173, app(ty_[], fad)) -> new_ltEs10(yvy172, yvy173, fad) 52.72/30.41 new_esEs13(yvy1651, yvy1661, ty_Float) -> new_esEs15(yvy1651, yvy1661) 52.72/30.41 new_lt21(yvy1650, yvy1660, ty_Int) -> new_lt9(yvy1650, yvy1660) 52.72/30.41 new_esEs5(yvy400, yvy300, app(ty_Maybe, bgc)) -> new_esEs24(yvy400, yvy300, bgc) 52.72/30.41 new_compare30(yvy400, yvy300, ty_Bool) -> new_compare7(yvy400, yvy300) 52.72/30.41 new_esEs6(yvy402, yvy302, ty_Float) -> new_esEs15(yvy402, yvy302) 52.72/30.41 new_lt20(yvy190, yvy192, ty_Char) -> new_lt8(yvy190, yvy192) 52.72/30.41 new_ltEs22(yvy172, yvy173, app(app(ty_@2, fae), faf)) -> new_ltEs12(yvy172, yvy173, fae, faf) 52.72/30.41 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, app(app(ty_@2, cfg), cfh)) -> new_ltEs12(yvy1650, yvy1660, cfg, cfh) 52.72/30.41 new_compare13(Float(yvy400, Neg(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.72/30.41 new_lt6(yvy1651, yvy1661, ty_Ordering) -> new_lt17(yvy1651, yvy1661) 52.72/30.41 new_compare29(Just(yvy400), Nothing, cd) -> GT 52.72/30.41 new_lt22(yvy154, yvy157, app(app(ty_Either, dab), dac)) -> new_lt16(yvy154, yvy157, dab, dac) 52.72/30.41 new_esEs14(yvy1650, yvy1660, ty_Char) -> new_esEs16(yvy1650, yvy1660) 52.72/30.41 new_esEs11(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.72/30.41 new_esEs31(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.72/30.41 new_lt22(yvy154, yvy157, ty_Int) -> new_lt9(yvy154, yvy157) 52.72/30.41 new_lt23(yvy155, yvy158, ty_@0) -> new_lt4(yvy155, yvy158) 52.72/30.41 new_ltEs14(Just(yvy1650), Nothing, bac) -> False 52.72/30.41 new_ltEs14(Nothing, Nothing, bac) -> True 52.72/30.41 new_esEs41(GT) -> True 52.72/30.41 new_esEs11(yvy400, yvy300, app(ty_Maybe, bdf)) -> new_esEs24(yvy400, yvy300, bdf) 52.72/30.41 new_lt21(yvy1650, yvy1660, app(ty_Maybe, fgb)) -> new_lt15(yvy1650, yvy1660, fgb) 52.72/30.41 new_compare30(yvy400, yvy300, app(ty_[], cdb)) -> new_compare0(yvy400, yvy300, cdb) 52.72/30.41 new_esEs5(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.72/30.41 new_esEs36(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) 52.72/30.41 new_esEs38(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.72/30.41 new_gt(yvy81, yvy76, ty_Bool) -> new_gt9(yvy81, yvy76) 52.72/30.41 new_esEs11(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.72/30.41 new_lt5(yvy1650, yvy1660, ty_Char) -> new_lt8(yvy1650, yvy1660) 52.72/30.41 new_lt21(yvy1650, yvy1660, ty_Ordering) -> new_lt17(yvy1650, yvy1660) 52.72/30.41 new_lt5(yvy1650, yvy1660, app(ty_Maybe, dhh)) -> new_lt15(yvy1650, yvy1660, dhh) 52.72/30.41 new_lt5(yvy1650, yvy1660, ty_@0) -> new_lt4(yvy1650, yvy1660) 52.72/30.41 new_lt22(yvy154, yvy157, ty_@0) -> new_lt4(yvy154, yvy157) 52.72/30.41 new_ltEs24(yvy156, yvy159, app(app(ty_@2, dbh), dca)) -> new_ltEs12(yvy156, yvy159, dbh, dca) 52.72/30.41 new_lt22(yvy154, yvy157, ty_Char) -> new_lt8(yvy154, yvy157) 52.72/30.41 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.72/30.41 new_compare18(EQ, EQ) -> EQ 52.72/30.41 new_esEs37(yvy4001, yvy3001, app(ty_Ratio, cba)) -> new_esEs28(yvy4001, yvy3001, cba) 52.72/30.41 new_esEs39(yvy155, yvy158, ty_Float) -> new_esEs15(yvy155, yvy158) 52.72/30.41 new_esEs14(yvy1650, yvy1660, app(ty_Ratio, eac)) -> new_esEs28(yvy1650, yvy1660, eac) 52.72/30.41 new_esEs13(yvy1651, yvy1661, ty_Bool) -> new_esEs23(yvy1651, yvy1661) 52.72/30.41 new_esEs32(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.41 new_esEs33(yvy1650, yvy1660, ty_Integer) -> new_esEs20(yvy1650, yvy1660) 52.72/30.41 new_ltEs8(yvy165, yvy166) -> new_fsEs(new_compare19(yvy165, yvy166)) 52.72/30.41 new_esEs13(yvy1651, yvy1661, app(app(ty_Either, ebc), ebd)) -> new_esEs25(yvy1651, yvy1661, ebc, ebd) 52.72/30.41 new_compare18(LT, EQ) -> LT 52.72/30.41 new_lt20(yvy190, yvy192, ty_@0) -> new_lt4(yvy190, yvy192) 52.72/30.41 new_esEs13(yvy1651, yvy1661, app(app(app(ty_@3, eag), eah), eba)) -> new_esEs22(yvy1651, yvy1661, eag, eah, eba) 52.72/30.41 new_esEs40(yvy154, yvy157, ty_Ordering) -> new_esEs26(yvy154, yvy157) 52.72/30.41 new_esEs38(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.72/30.41 new_compare0(:(yvy400, yvy401), [], bf) -> GT 52.72/30.41 new_esEs36(yvy4002, yvy3002, ty_Bool) -> new_esEs23(yvy4002, yvy3002) 52.72/30.41 new_esEs36(yvy4002, yvy3002, app(app(ty_Either, bhh), caa)) -> new_esEs25(yvy4002, yvy3002, bhh, caa) 52.72/30.41 new_esEs21(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bgd, bge) -> new_asAs(new_esEs32(yvy4000, yvy3000, bgd), new_esEs31(yvy4001, yvy3001, bge)) 52.72/30.41 new_lt17(yvy40, yvy30) -> new_esEs12(new_compare18(yvy40, yvy30)) 52.72/30.41 new_primPlusNat0(Succ(yvy90200), Succ(yvy21000)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21000))) 52.72/30.41 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Bool, bae) -> new_ltEs13(yvy1650, yvy1660) 52.72/30.41 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Int, bae) -> new_ltEs9(yvy1650, yvy1660) 52.72/30.41 new_compare30(yvy400, yvy300, app(app(ty_Either, cea), ceb)) -> new_compare16(yvy400, yvy300, cea, ceb) 52.72/30.41 new_gt(yvy81, yvy76, ty_Float) -> new_gt2(yvy81, yvy76) 52.72/30.41 new_esEs4(yvy401, yvy301, app(app(ty_Either, bfe), bff)) -> new_esEs25(yvy401, yvy301, bfe, bff) 52.72/30.41 new_esEs37(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) 52.72/30.41 new_esEs40(yvy154, yvy157, ty_Float) -> new_esEs15(yvy154, yvy157) 52.72/30.41 new_lt24(yvy40, yvy50, ty_Char) -> new_lt8(yvy40, yvy50) 52.72/30.41 new_esEs13(yvy1651, yvy1661, ty_Ordering) -> new_esEs26(yvy1651, yvy1661) 52.72/30.41 new_compare25(yvy179, yvy180, False, da, db) -> new_compare10(yvy179, yvy180, new_ltEs19(yvy179, yvy180, db), da, db) 52.72/30.41 new_lt20(yvy190, yvy192, ty_Int) -> new_lt9(yvy190, yvy192) 52.72/30.41 new_esEs35(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.41 new_compare110(yvy247, yvy248, yvy249, yvy250, False, fhh, gaa) -> GT 52.72/30.41 new_gt(yvy81, yvy76, ty_Ordering) -> new_gt12(yvy81, yvy76) 52.72/30.41 new_esEs36(yvy4002, yvy3002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs22(yvy4002, yvy3002, bha, bhb, bhc) 52.72/30.41 new_esEs14(yvy1650, yvy1660, ty_Float) -> new_esEs15(yvy1650, yvy1660) 52.72/30.41 new_compare29(Nothing, Just(yvy300), cd) -> LT 52.72/30.41 new_esEs31(yvy4001, yvy3001, ty_Double) -> new_esEs27(yvy4001, yvy3001) 52.72/30.41 new_esEs10(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.72/30.41 new_lt20(yvy190, yvy192, app(ty_Maybe, ff)) -> new_lt15(yvy190, yvy192, ff) 52.72/30.41 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Char, bae) -> new_ltEs8(yvy1650, yvy1660) 52.72/30.41 new_lt6(yvy1651, yvy1661, app(app(ty_Either, ebc), ebd)) -> new_lt16(yvy1651, yvy1661, ebc, ebd) 52.72/30.41 new_lt5(yvy1650, yvy1660, ty_Int) -> new_lt9(yvy1650, yvy1660) 52.72/30.41 new_esEs30(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.41 new_esEs11(yvy400, yvy300, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs22(yvy400, yvy300, bdc, bdd, bde) 52.72/30.41 new_esEs33(yvy1650, yvy1660, app(ty_Ratio, fge)) -> new_esEs28(yvy1650, yvy1660, fge) 52.72/30.41 new_compare0(:(yvy400, yvy401), :(yvy300, yvy301), bf) -> new_primCompAux0(yvy400, yvy300, new_compare0(yvy401, yvy301, bf), bf) 52.72/30.41 new_esEs10(yvy400, yvy300, app(ty_Ratio, bcg)) -> new_esEs28(yvy400, yvy300, bcg) 52.72/30.41 new_lt21(yvy1650, yvy1660, app(app(ty_Either, fgc), fgd)) -> new_lt16(yvy1650, yvy1660, fgc, fgd) 52.72/30.41 new_gt9(yvy40, yvy30) -> new_esEs41(new_compare7(yvy40, yvy30)) 52.72/30.41 new_ltEs13(True, False) -> False 52.72/30.41 new_esEs36(yvy4002, yvy3002, ty_Char) -> new_esEs16(yvy4002, yvy3002) 52.72/30.41 new_esEs36(yvy4002, yvy3002, ty_Ordering) -> new_esEs26(yvy4002, yvy3002) 52.72/30.41 new_esEs13(yvy1651, yvy1661, ty_Char) -> new_esEs16(yvy1651, yvy1661) 52.72/30.41 new_compare29(Just(yvy400), Just(yvy300), cd) -> new_compare27(yvy400, yvy300, new_esEs9(yvy400, yvy300, cd), cd) 52.72/30.41 new_compare16(Right(yvy400), Right(yvy300), ce, cf) -> new_compare25(yvy400, yvy300, new_esEs11(yvy400, yvy300, cf), ce, cf) 52.72/30.41 new_esEs11(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.72/30.41 new_esEs40(yvy154, yvy157, ty_@0) -> new_esEs19(yvy154, yvy157) 52.72/30.41 new_compare16(Right(yvy400), Left(yvy300), ce, cf) -> GT 52.72/30.41 new_esEs40(yvy154, yvy157, app(app(ty_Either, dab), dac)) -> new_esEs25(yvy154, yvy157, dab, dac) 52.72/30.41 new_ltEs20(yvy191, yvy193, app(ty_[], gb)) -> new_ltEs10(yvy191, yvy193, gb) 52.72/30.41 new_compare30(yvy400, yvy300, app(app(app(ty_@3, cde), cdf), cdg)) -> new_compare31(yvy400, yvy300, cde, cdf, cdg) 52.72/30.41 new_lt20(yvy190, yvy192, app(app(ty_Either, fg), fh)) -> new_lt16(yvy190, yvy192, fg, fh) 52.72/30.41 new_ltEs21(yvy165, yvy166, app(ty_[], he)) -> new_ltEs10(yvy165, yvy166, he) 52.72/30.41 new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) 52.72/30.41 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, ty_Float) -> new_ltEs7(yvy1650, yvy1660) 52.72/30.41 new_esEs29(yvy190, yvy192, ty_Double) -> new_esEs27(yvy190, yvy192) 52.72/30.41 new_compare30(yvy400, yvy300, ty_Float) -> new_compare13(yvy400, yvy300) 52.72/30.41 new_esEs38(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.72/30.41 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Integer, bae) -> new_ltEs11(yvy1650, yvy1660) 52.72/30.41 new_gt13(yvy40, yvy30, cg) -> new_esEs41(new_compare12(yvy40, yvy30, cg)) 52.72/30.41 new_ltEs17(yvy165, yvy166) -> new_fsEs(new_compare9(yvy165, yvy166)) 52.72/30.41 new_compare110(yvy247, yvy248, yvy249, yvy250, True, fhh, gaa) -> LT 52.72/30.41 new_lt24(yvy40, yvy50, app(ty_[], bf)) -> new_lt10(yvy40, yvy50, bf) 52.72/30.41 new_esEs14(yvy1650, yvy1660, app(ty_Maybe, dhh)) -> new_esEs24(yvy1650, yvy1660, dhh) 52.72/30.41 new_esEs30(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.72/30.41 new_esEs37(yvy4001, yvy3001, ty_Ordering) -> new_esEs26(yvy4001, yvy3001) 52.72/30.41 new_esEs11(yvy400, yvy300, app(ty_Ratio, bea)) -> new_esEs28(yvy400, yvy300, bea) 52.72/30.41 new_esEs4(yvy401, yvy301, ty_@0) -> new_esEs19(yvy401, yvy301) 52.72/30.41 new_gt(yvy81, yvy76, app(ty_Maybe, bbe)) -> new_gt10(yvy81, yvy76, bbe) 52.72/30.41 new_esEs14(yvy1650, yvy1660, ty_Ordering) -> new_esEs26(yvy1650, yvy1660) 52.72/30.41 new_esEs37(yvy4001, yvy3001, app(ty_Maybe, caf)) -> new_esEs24(yvy4001, yvy3001, caf) 52.72/30.41 new_compare30(yvy400, yvy300, ty_Char) -> new_compare19(yvy400, yvy300) 52.72/30.41 new_lt11(yvy40, yvy30) -> new_esEs12(new_compare14(yvy40, yvy30)) 52.72/30.41 new_esEs39(yvy155, yvy158, ty_@0) -> new_esEs19(yvy155, yvy158) 52.72/30.41 new_ltEs6(yvy1652, yvy1662, app(ty_[], ebf)) -> new_ltEs10(yvy1652, yvy1662, ebf) 52.72/30.41 new_ltEs19(yvy179, yvy180, app(ty_[], dc)) -> new_ltEs10(yvy179, yvy180, dc) 52.72/30.41 new_compare28(yvy172, yvy173, True, fab, fac) -> EQ 52.72/30.41 new_esEs38(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.72/30.41 new_esEs38(yvy4000, yvy3000, app(app(ty_Either, ccd), cce)) -> new_esEs25(yvy4000, yvy3000, ccd, cce) 52.72/30.41 new_esEs34(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.72/30.41 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_@0, bae) -> new_ltEs4(yvy1650, yvy1660) 52.72/30.41 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_Maybe, edc), bgg) -> new_esEs24(yvy4000, yvy3000, edc) 52.72/30.41 new_compare14(Integer(yvy400), Integer(yvy300)) -> new_primCmpInt(yvy400, yvy300) 52.72/30.41 new_esEs11(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.72/30.41 new_esEs14(yvy1650, yvy1660, app(app(ty_Either, eaa), eab)) -> new_esEs25(yvy1650, yvy1660, eaa, eab) 52.72/30.41 new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT 52.72/30.41 new_lt21(yvy1650, yvy1660, ty_@0) -> new_lt4(yvy1650, yvy1660) 52.72/30.41 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Int, bgg) -> new_esEs17(yvy4000, yvy3000) 52.72/30.41 new_ltEs19(yvy179, yvy180, ty_Float) -> new_ltEs7(yvy179, yvy180) 52.72/30.41 new_esEs14(yvy1650, yvy1660, ty_Bool) -> new_esEs23(yvy1650, yvy1660) 52.72/30.41 new_lt7(yvy40, yvy30) -> new_esEs12(new_compare13(yvy40, yvy30)) 52.72/30.41 new_ltEs19(yvy179, yvy180, app(app(ty_Either, eb), ec)) -> new_ltEs15(yvy179, yvy180, eb, ec) 52.72/30.41 new_lt23(yvy155, yvy158, ty_Char) -> new_lt8(yvy155, yvy158) 52.72/30.41 new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT 52.72/30.41 new_esEs10(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.72/30.41 new_esEs13(yvy1651, yvy1661, app(ty_Maybe, ebb)) -> new_esEs24(yvy1651, yvy1661, ebb) 52.72/30.41 new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) 52.72/30.41 new_lt24(yvy40, yvy50, app(app(app(ty_@3, ca), cb), cc)) -> new_lt13(yvy40, yvy50, ca, cb, cc) 52.72/30.41 new_esEs38(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.41 new_esEs24(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.72/30.41 new_esEs33(yvy1650, yvy1660, ty_Int) -> new_esEs17(yvy1650, yvy1660) 52.72/30.41 new_esEs41(EQ) -> False 52.72/30.41 new_esEs40(yvy154, yvy157, app(ty_[], chc)) -> new_esEs18(yvy154, yvy157, chc) 52.72/30.41 new_lt4(yvy40, yvy30) -> new_esEs12(new_compare5(yvy40, yvy30)) 52.72/30.41 new_primCompAux0(yvy400, yvy300, yvy115, bf) -> new_primCompAux00(yvy115, new_compare30(yvy400, yvy300, bf)) 52.72/30.41 new_ltEs14(Nothing, Just(yvy1660), bac) -> True 52.72/30.41 new_esEs39(yvy155, yvy158, ty_Double) -> new_esEs27(yvy155, yvy158) 52.72/30.41 new_esEs39(yvy155, yvy158, app(app(ty_Either, dbd), dbe)) -> new_esEs25(yvy155, yvy158, dbd, dbe) 52.72/30.41 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 52.72/30.41 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 52.72/30.41 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, efd), efe), eff)) -> new_esEs22(yvy4000, yvy3000, efd, efe, eff) 52.72/30.41 new_compare30(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) 52.72/30.41 new_esEs39(yvy155, yvy158, ty_Bool) -> new_esEs23(yvy155, yvy158) 52.72/30.41 new_gt(yvy81, yvy76, ty_Char) -> new_gt3(yvy81, yvy76) 52.72/30.41 new_esEs29(yvy190, yvy192, app(app(ty_@2, eh), fa)) -> new_esEs21(yvy190, yvy192, eh, fa) 52.72/30.41 new_lt23(yvy155, yvy158, app(ty_[], dae)) -> new_lt10(yvy155, yvy158, dae) 52.72/30.41 new_esEs7(yvy401, yvy301, app(ty_[], dfg)) -> new_esEs18(yvy401, yvy301, dfg) 52.72/30.41 new_ltEs13(True, True) -> True 52.72/30.41 new_esEs9(yvy400, yvy300, app(ty_Ratio, gah)) -> new_esEs28(yvy400, yvy300, gah) 52.72/30.41 new_ltEs6(yvy1652, yvy1662, app(ty_Maybe, ecd)) -> new_ltEs14(yvy1652, yvy1662, ecd) 52.72/30.41 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(ty_Either, cfc), cfd), bae) -> new_ltEs15(yvy1650, yvy1660, cfc, cfd) 52.72/30.41 new_esEs6(yvy402, yvy302, ty_Char) -> new_esEs16(yvy402, yvy302) 52.72/30.41 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(ty_Either, edg), edh), bgg) -> new_esEs25(yvy4000, yvy3000, edg, edh) 52.72/30.41 new_esEs4(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) 52.72/30.41 new_esEs38(yvy4000, yvy3000, app(ty_Maybe, cbh)) -> new_esEs24(yvy4000, yvy3000, cbh) 52.72/30.41 new_esEs18([], [], bgh) -> True 52.72/30.41 new_compare16(Left(yvy400), Right(yvy300), ce, cf) -> LT 52.72/30.41 new_ltEs24(yvy156, yvy159, ty_Double) -> new_ltEs17(yvy156, yvy159) 52.72/30.41 new_ltEs19(yvy179, yvy180, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs5(yvy179, yvy180, df, dg, dh) 52.72/30.41 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_[], fbf)) -> new_ltEs10(yvy1650, yvy1660, fbf) 52.72/30.41 new_lt5(yvy1650, yvy1660, app(ty_[], dhb)) -> new_lt10(yvy1650, yvy1660, dhb) 52.72/30.41 new_lt23(yvy155, yvy158, ty_Integer) -> new_lt11(yvy155, yvy158) 52.72/30.41 new_esEs30(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.72/30.41 new_primCmpNat0(Zero, Zero) -> EQ 52.72/30.41 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_Maybe, efg)) -> new_esEs24(yvy4000, yvy3000, efg) 52.72/30.41 new_esEs32(yvy4000, yvy3000, app(ty_Ratio, feh)) -> new_esEs28(yvy4000, yvy3000, feh) 52.72/30.41 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_[], ege)) -> new_esEs18(yvy4000, yvy3000, ege) 52.72/30.41 new_esEs10(yvy400, yvy300, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs22(yvy400, yvy300, bca, bcb, bcc) 52.72/30.41 new_lt6(yvy1651, yvy1661, ty_Int) -> new_lt9(yvy1651, yvy1661) 52.72/30.41 new_esEs14(yvy1650, yvy1660, ty_Double) -> new_esEs27(yvy1650, yvy1660) 52.72/30.41 new_lt20(yvy190, yvy192, ty_Bool) -> new_lt14(yvy190, yvy192) 52.72/30.41 new_ltEs22(yvy172, yvy173, ty_Int) -> new_ltEs9(yvy172, yvy173) 52.72/30.41 new_compare26(yvy190, yvy191, yvy192, yvy193, False, ee, ef) -> new_compare11(yvy190, yvy191, yvy192, yvy193, new_lt20(yvy190, yvy192, ee), new_asAs(new_esEs29(yvy190, yvy192, ee), new_ltEs20(yvy191, yvy193, ef)), ee, ef) 52.72/30.41 new_ltEs16(GT, EQ) -> False 52.72/30.41 new_esEs14(yvy1650, yvy1660, ty_Integer) -> new_esEs20(yvy1650, yvy1660) 52.72/30.41 new_compare27(yvy165, yvy166, True, hd) -> EQ 52.72/30.41 new_esEs7(yvy401, yvy301, app(app(app(ty_@3, def), deg), deh)) -> new_esEs22(yvy401, yvy301, def, deg, deh) 52.72/30.41 new_ltEs19(yvy179, yvy180, ty_Double) -> new_ltEs17(yvy179, yvy180) 52.72/30.41 new_lt16(yvy40, yvy30, ce, cf) -> new_esEs12(new_compare16(yvy40, yvy30, ce, cf)) 52.72/30.41 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Integer) -> new_ltEs11(yvy1650, yvy1660) 52.72/30.41 new_esEs4(yvy401, yvy301, ty_Ordering) -> new_esEs26(yvy401, yvy301) 52.72/30.41 new_ltEs10(yvy165, yvy166, he) -> new_fsEs(new_compare0(yvy165, yvy166, he)) 52.72/30.41 new_esEs7(yvy401, yvy301, ty_@0) -> new_esEs19(yvy401, yvy301) 52.72/30.41 new_compare8(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) 52.72/30.41 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.72/30.41 new_ltEs20(yvy191, yvy193, ty_Integer) -> new_ltEs11(yvy191, yvy193) 52.72/30.41 new_ltEs19(yvy179, yvy180, ty_@0) -> new_ltEs4(yvy179, yvy180) 52.72/30.41 new_lt20(yvy190, yvy192, app(app(ty_@2, eh), fa)) -> new_lt12(yvy190, yvy192, eh, fa) 52.72/30.41 new_primCompAux00(yvy133, GT) -> GT 52.72/30.41 new_esEs8(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.72/30.41 new_esEs37(yvy4001, yvy3001, ty_Char) -> new_esEs16(yvy4001, yvy3001) 52.72/30.41 new_esEs40(yvy154, yvy157, app(ty_Maybe, daa)) -> new_esEs24(yvy154, yvy157, daa) 52.72/30.41 new_esEs40(yvy154, yvy157, ty_Int) -> new_esEs17(yvy154, yvy157) 52.72/30.41 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, ty_Ordering) -> new_ltEs16(yvy1650, yvy1660) 52.72/30.41 new_esEs32(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.72/30.41 new_esEs30(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.72/30.41 new_esEs8(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.72/30.41 new_ltEs24(yvy156, yvy159, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_ltEs5(yvy156, yvy159, dcb, dcc, dcd) 52.72/30.41 new_ltEs23(yvy1651, yvy1661, app(ty_[], fgf)) -> new_ltEs10(yvy1651, yvy1661, fgf) 52.72/30.41 new_ltEs24(yvy156, yvy159, ty_@0) -> new_ltEs4(yvy156, yvy159) 52.72/30.41 new_ltEs4(yvy165, yvy166) -> new_fsEs(new_compare5(yvy165, yvy166)) 52.72/30.41 new_esEs33(yvy1650, yvy1660, app(ty_[], ffd)) -> new_esEs18(yvy1650, yvy1660, ffd) 52.72/30.41 new_ltEs16(LT, LT) -> True 52.72/30.41 new_esEs29(yvy190, yvy192, app(app(ty_Either, fg), fh)) -> new_esEs25(yvy190, yvy192, fg, fh) 52.72/30.41 new_ltEs7(yvy165, yvy166) -> new_fsEs(new_compare13(yvy165, yvy166)) 52.72/30.41 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_Ratio, edf), bgg) -> new_esEs28(yvy4000, yvy3000, edf) 52.72/30.41 new_ltEs19(yvy179, yvy180, ty_Bool) -> new_ltEs13(yvy179, yvy180) 52.72/30.41 new_lt6(yvy1651, yvy1661, app(ty_Maybe, ebb)) -> new_lt15(yvy1651, yvy1661, ebb) 52.72/30.41 new_esEs38(yvy4000, yvy3000, app(ty_[], ccf)) -> new_esEs18(yvy4000, yvy3000, ccf) 52.72/30.41 new_esEs39(yvy155, yvy158, app(app(ty_@2, daf), dag)) -> new_esEs21(yvy155, yvy158, daf, dag) 52.72/30.41 new_gt(yvy81, yvy76, app(ty_Ratio, bbh)) -> new_gt13(yvy81, yvy76, bbh) 52.72/30.41 new_ltEs24(yvy156, yvy159, ty_Float) -> new_ltEs7(yvy156, yvy159) 52.72/30.41 new_esEs13(yvy1651, yvy1661, ty_@0) -> new_esEs19(yvy1651, yvy1661) 52.72/30.41 new_sr(Integer(yvy4000), Integer(yvy3010)) -> Integer(new_primMulInt(yvy4000, yvy3010)) 52.72/30.41 new_primCmpNat0(Succ(yvy4000), Zero) -> GT 52.72/30.41 new_esEs38(yvy4000, yvy3000, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs22(yvy4000, yvy3000, cbe, cbf, cbg) 52.72/30.41 new_esEs30(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.72/30.41 new_pePe(False, yvy280) -> yvy280 52.72/30.41 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.41 new_compare6(@2(yvy400, yvy401), @2(yvy300, yvy301), bg, bh) -> new_compare26(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs5(yvy400, yvy300, bg), new_esEs4(yvy401, yvy301, bh)), bg, bh) 52.72/30.41 new_compare25(yvy179, yvy180, True, da, db) -> EQ 52.72/30.41 new_compare18(LT, GT) -> LT 52.72/30.41 new_lt22(yvy154, yvy157, app(ty_Maybe, daa)) -> new_lt15(yvy154, yvy157, daa) 52.72/30.41 new_ltEs16(LT, GT) -> True 52.72/30.41 new_ltEs21(yvy165, yvy166, ty_Double) -> new_ltEs17(yvy165, yvy166) 52.72/30.41 new_lt23(yvy155, yvy158, ty_Bool) -> new_lt14(yvy155, yvy158) 52.72/30.41 new_lt13(yvy40, yvy30, ca, cb, cc) -> new_esEs12(new_compare31(yvy40, yvy30, ca, cb, cc)) 52.72/30.41 new_ltEs16(LT, EQ) -> True 52.72/30.41 new_ltEs16(EQ, LT) -> False 52.72/30.41 new_lt20(yvy190, yvy192, ty_Integer) -> new_lt11(yvy190, yvy192) 52.72/30.41 new_esEs6(yvy402, yvy302, ty_Integer) -> new_esEs20(yvy402, yvy302) 52.72/30.41 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 52.72/30.41 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 52.72/30.41 new_esEs7(yvy401, yvy301, ty_Ordering) -> new_esEs26(yvy401, yvy301) 52.72/30.41 new_lt6(yvy1651, yvy1661, app(app(app(ty_@3, eag), eah), eba)) -> new_lt13(yvy1651, yvy1661, eag, eah, eba) 52.72/30.41 new_lt23(yvy155, yvy158, app(app(ty_Either, dbd), dbe)) -> new_lt16(yvy155, yvy158, dbd, dbe) 52.72/30.41 new_ltEs16(GT, LT) -> False 52.72/30.41 new_esEs4(yvy401, yvy301, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs22(yvy401, yvy301, bef, beg, beh) 52.72/30.41 new_compare30(yvy400, yvy300, app(ty_Maybe, cdh)) -> new_compare29(yvy400, yvy300, cdh) 52.72/30.41 new_lt24(yvy40, yvy50, ty_@0) -> new_lt4(yvy40, yvy50) 52.72/30.41 new_esEs31(yvy4001, yvy3001, ty_Bool) -> new_esEs23(yvy4001, yvy3001) 52.72/30.41 new_esEs25(Left(yvy4000), Left(yvy3000), ty_@0, bgg) -> new_esEs19(yvy4000, yvy3000) 52.72/30.41 new_esEs31(yvy4001, yvy3001, app(app(ty_Either, fdg), fdh)) -> new_esEs25(yvy4001, yvy3001, fdg, fdh) 52.72/30.41 new_ltEs21(yvy165, yvy166, app(app(ty_Either, bad), bae)) -> new_ltEs15(yvy165, yvy166, bad, bae) 52.72/30.41 new_esEs30(yvy4000, yvy3000, app(ty_Ratio, ehd)) -> new_esEs28(yvy4000, yvy3000, ehd) 52.72/30.41 new_lt21(yvy1650, yvy1660, app(app(app(ty_@3, ffg), ffh), fga)) -> new_lt13(yvy1650, yvy1660, ffg, ffh, fga) 52.72/30.41 new_esEs33(yvy1650, yvy1660, app(ty_Maybe, fgb)) -> new_esEs24(yvy1650, yvy1660, fgb) 52.72/30.41 new_esEs9(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.72/30.41 new_ltEs24(yvy156, yvy159, ty_Int) -> new_ltEs9(yvy156, yvy159) 52.72/30.41 new_esEs7(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) 52.72/30.41 new_lt5(yvy1650, yvy1660, app(ty_Ratio, eac)) -> new_lt19(yvy1650, yvy1660, eac) 52.72/30.41 new_esEs10(yvy400, yvy300, app(ty_Maybe, bcd)) -> new_esEs24(yvy400, yvy300, bcd) 52.72/30.41 new_esEs11(yvy400, yvy300, app(app(ty_Either, beb), bec)) -> new_esEs25(yvy400, yvy300, beb, bec) 52.72/30.41 new_esEs6(yvy402, yvy302, app(ty_Ratio, deb)) -> new_esEs28(yvy402, yvy302, deb) 52.72/30.41 new_compare12(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Integer) -> new_compare14(new_sr(yvy400, yvy301), new_sr(yvy300, yvy401)) 52.72/30.41 new_esEs8(yvy400, yvy300, app(app(ty_@2, dgd), dge)) -> new_esEs21(yvy400, yvy300, dgd, dge) 52.72/30.41 new_esEs30(yvy4000, yvy3000, app(ty_Maybe, eha)) -> new_esEs24(yvy4000, yvy3000, eha) 52.72/30.41 new_ltEs20(yvy191, yvy193, app(ty_Maybe, gh)) -> new_ltEs14(yvy191, yvy193, gh) 52.72/30.41 new_esEs20(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 52.72/30.41 new_esEs33(yvy1650, yvy1660, ty_@0) -> new_esEs19(yvy1650, yvy1660) 52.72/30.41 new_esEs30(yvy4000, yvy3000, app(ty_[], ehg)) -> new_esEs18(yvy4000, yvy3000, ehg) 52.72/30.41 new_esEs26(GT, GT) -> True 52.72/30.41 new_esEs40(yvy154, yvy157, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs22(yvy154, yvy157, chf, chg, chh) 52.72/30.41 new_ltEs16(EQ, GT) -> True 52.72/30.41 new_ltEs20(yvy191, yvy193, app(app(ty_@2, gc), gd)) -> new_ltEs12(yvy191, yvy193, gc, gd) 52.72/30.41 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_Maybe, fcd)) -> new_ltEs14(yvy1650, yvy1660, fcd) 52.72/30.41 new_compare18(EQ, GT) -> LT 52.72/30.41 new_ltEs16(EQ, EQ) -> True 52.72/30.41 new_esEs6(yvy402, yvy302, ty_Bool) -> new_esEs23(yvy402, yvy302) 52.72/30.41 new_esEs36(yvy4002, yvy3002, ty_Int) -> new_esEs17(yvy4002, yvy3002) 52.72/30.41 new_compare17(yvy230, yvy231, True, dda, ddb) -> LT 52.72/30.41 new_esEs29(yvy190, yvy192, ty_Integer) -> new_esEs20(yvy190, yvy192) 52.72/30.41 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Ordering, bgg) -> new_esEs26(yvy4000, yvy3000) 52.72/30.41 new_esEs10(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.72/30.41 new_lt5(yvy1650, yvy1660, ty_Float) -> new_lt7(yvy1650, yvy1660) 52.72/30.41 new_ltEs6(yvy1652, yvy1662, app(app(ty_@2, ebg), ebh)) -> new_ltEs12(yvy1652, yvy1662, ebg, ebh) 52.72/30.41 new_esEs39(yvy155, yvy158, ty_Char) -> new_esEs16(yvy155, yvy158) 52.72/30.41 new_esEs5(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.72/30.41 new_esEs36(yvy4002, yvy3002, ty_Double) -> new_esEs27(yvy4002, yvy3002) 52.72/30.41 new_lt24(yvy40, yvy50, ty_Int) -> new_lt9(yvy40, yvy50) 52.72/30.41 new_esEs10(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.72/30.41 new_lt5(yvy1650, yvy1660, ty_Integer) -> new_lt11(yvy1650, yvy1660) 52.72/30.41 new_esEs13(yvy1651, yvy1661, ty_Int) -> new_esEs17(yvy1651, yvy1661) 52.72/30.41 new_lt21(yvy1650, yvy1660, ty_Float) -> new_lt7(yvy1650, yvy1660) 52.72/30.41 new_esEs23(False, True) -> False 52.72/30.41 new_esEs23(True, False) -> False 52.72/30.41 new_esEs9(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.72/30.41 new_esEs4(yvy401, yvy301, ty_Char) -> new_esEs16(yvy401, yvy301) 52.72/30.41 new_ltEs6(yvy1652, yvy1662, ty_Ordering) -> new_ltEs16(yvy1652, yvy1662) 52.72/30.41 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_Ratio, egb)) -> new_esEs28(yvy4000, yvy3000, egb) 52.72/30.41 new_esEs40(yvy154, yvy157, app(ty_Ratio, dad)) -> new_esEs28(yvy154, yvy157, dad) 52.72/30.41 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(ty_@2, fbg), fbh)) -> new_ltEs12(yvy1650, yvy1660, fbg, fbh) 52.72/30.41 new_lt18(yvy40, yvy30) -> new_esEs12(new_compare9(yvy40, yvy30)) 52.72/30.41 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Ordering) -> new_ltEs16(yvy1650, yvy1660) 52.72/30.41 new_esEs6(yvy402, yvy302, app(app(ty_@2, ddh), dea)) -> new_esEs21(yvy402, yvy302, ddh, dea) 52.72/30.41 new_ltEs20(yvy191, yvy193, ty_Ordering) -> new_ltEs16(yvy191, yvy193) 52.72/30.41 new_esEs4(yvy401, yvy301, app(ty_Ratio, bfd)) -> new_esEs28(yvy401, yvy301, bfd) 52.72/30.41 new_esEs5(yvy400, yvy300, app(ty_[], bgh)) -> new_esEs18(yvy400, yvy300, bgh) 52.72/30.41 new_compare7(False, False) -> EQ 52.72/30.41 new_lt24(yvy40, yvy50, app(ty_Maybe, cd)) -> new_lt15(yvy40, yvy50, cd) 52.72/30.41 new_lt21(yvy1650, yvy1660, app(ty_Ratio, fge)) -> new_lt19(yvy1650, yvy1660, fge) 52.72/30.41 new_primMulInt(Neg(yvy4000), Neg(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) 52.72/30.41 new_esEs32(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.72/30.41 new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs17(new_sr0(yvy4000, yvy3001), new_sr0(yvy4001, yvy3000)) 52.72/30.41 new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) 52.72/30.41 new_lt19(yvy40, yvy30, cg) -> new_esEs12(new_compare12(yvy40, yvy30, cg)) 52.72/30.41 new_esEs8(yvy400, yvy300, app(app(ty_Either, dgg), dgh)) -> new_esEs25(yvy400, yvy300, dgg, dgh) 52.72/30.41 new_gt8(yvy40, yvy30, ca, cb, cc) -> new_esEs41(new_compare31(yvy40, yvy30, ca, cb, cc)) 52.72/30.41 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_Ratio, cfe), bae) -> new_ltEs18(yvy1650, yvy1660, cfe) 52.72/30.41 new_lt23(yvy155, yvy158, app(app(ty_@2, daf), dag)) -> new_lt12(yvy155, yvy158, daf, dag) 52.72/30.41 new_esEs25(Left(yvy4000), Right(yvy3000), bgf, bgg) -> False 52.72/30.41 new_esEs25(Right(yvy4000), Left(yvy3000), bgf, bgg) -> False 52.72/30.41 new_lt24(yvy40, yvy50, ty_Ordering) -> new_lt17(yvy40, yvy50) 52.72/30.41 new_esEs39(yvy155, yvy158, ty_Integer) -> new_esEs20(yvy155, yvy158) 52.72/30.41 new_esEs30(yvy4000, yvy3000, app(app(app(ty_@3, egf), egg), egh)) -> new_esEs22(yvy4000, yvy3000, egf, egg, egh) 52.72/30.41 new_ltEs21(yvy165, yvy166, ty_Float) -> new_ltEs7(yvy165, yvy166) 52.72/30.41 new_gt12(yvy40, yvy30) -> new_esEs41(new_compare18(yvy40, yvy30)) 52.72/30.41 new_fsEs(yvy281) -> new_not(new_esEs26(yvy281, GT)) 52.72/30.41 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(app(app(ty_@3, eeb), eec), eed)) -> new_esEs22(yvy4000, yvy3000, eeb, eec, eed) 52.72/30.41 new_esEs29(yvy190, yvy192, ty_Bool) -> new_esEs23(yvy190, yvy192) 52.72/30.41 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(ty_@2, edd), ede), bgg) -> new_esEs21(yvy4000, yvy3000, edd, ede) 52.72/30.41 new_esEs22(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfh, bga, bgb) -> new_asAs(new_esEs38(yvy4000, yvy3000, bfh), new_asAs(new_esEs37(yvy4001, yvy3001, bga), new_esEs36(yvy4002, yvy3002, bgb))) 52.72/30.41 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, ty_Integer) -> new_ltEs11(yvy1650, yvy1660) 52.72/30.41 new_esEs9(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.72/30.41 new_compare7(True, False) -> GT 52.72/30.41 new_gt2(yvy40, yvy30) -> new_esEs41(new_compare13(yvy40, yvy30)) 52.72/30.41 new_esEs28(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bee) -> new_asAs(new_esEs35(yvy4000, yvy3000, bee), new_esEs34(yvy4001, yvy3001, bee)) 52.72/30.41 new_lt22(yvy154, yvy157, app(app(app(ty_@3, chf), chg), chh)) -> new_lt13(yvy154, yvy157, chf, chg, chh) 52.72/30.41 new_esEs32(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.72/30.41 new_esEs7(yvy401, yvy301, app(ty_Maybe, dfa)) -> new_esEs24(yvy401, yvy301, dfa) 52.72/30.41 new_esEs31(yvy4001, yvy3001, app(app(ty_@2, fdd), fde)) -> new_esEs21(yvy4001, yvy3001, fdd, fde) 52.72/30.41 new_esEs4(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) 52.72/30.41 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(ty_[], efc)) -> new_esEs18(yvy4000, yvy3000, efc) 52.72/30.41 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, app(ty_Maybe, cgd)) -> new_ltEs14(yvy1650, yvy1660, cgd) 52.72/30.41 new_lt23(yvy155, yvy158, app(ty_Ratio, dbf)) -> new_lt19(yvy155, yvy158, dbf) 52.72/30.41 new_esEs11(yvy400, yvy300, app(ty_[], bed)) -> new_esEs18(yvy400, yvy300, bed) 52.72/30.41 new_esEs8(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.72/30.41 new_primMulInt(Pos(yvy4000), Neg(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) 52.72/30.41 new_primMulInt(Neg(yvy4000), Pos(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) 52.72/30.41 new_compare27(yvy165, yvy166, False, hd) -> new_compare15(yvy165, yvy166, new_ltEs21(yvy165, yvy166, hd), hd) 52.72/30.41 new_esEs5(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.72/30.41 new_compare30(yvy400, yvy300, app(app(ty_@2, cdc), cdd)) -> new_compare6(yvy400, yvy300, cdc, cdd) 52.72/30.41 new_compare5(@0, @0) -> EQ 52.72/30.41 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(ty_Maybe, eee)) -> new_esEs24(yvy4000, yvy3000, eee) 52.72/30.41 new_ltEs22(yvy172, yvy173, ty_@0) -> new_ltEs4(yvy172, yvy173) 52.72/30.41 new_ltEs22(yvy172, yvy173, app(app(app(ty_@3, fag), fah), fba)) -> new_ltEs5(yvy172, yvy173, fag, fah, fba) 52.72/30.41 new_ltEs19(yvy179, yvy180, ty_Int) -> new_ltEs9(yvy179, yvy180) 52.72/30.41 new_esEs36(yvy4002, yvy3002, app(ty_[], cab)) -> new_esEs18(yvy4002, yvy3002, cab) 52.72/30.41 new_ltEs23(yvy1651, yvy1661, ty_Ordering) -> new_ltEs16(yvy1651, yvy1661) 52.72/30.41 new_compare210(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, cgh, cha, chb) -> new_compare111(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, new_lt22(yvy154, yvy157, cgh), new_asAs(new_esEs40(yvy154, yvy157, cgh), new_pePe(new_lt23(yvy155, yvy158, cha), new_asAs(new_esEs39(yvy155, yvy158, cha), new_ltEs24(yvy156, yvy159, chb)))), cgh, cha, chb) 52.72/30.41 new_esEs9(yvy400, yvy300, app(ty_Maybe, gae)) -> new_esEs24(yvy400, yvy300, gae) 52.72/30.41 new_esEs5(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.72/30.41 new_ltEs20(yvy191, yvy193, ty_Char) -> new_ltEs8(yvy191, yvy193) 52.72/30.41 new_ltEs22(yvy172, yvy173, ty_Double) -> new_ltEs17(yvy172, yvy173) 52.72/30.41 new_asAs(True, yvy208) -> yvy208 52.72/30.41 new_esEs32(yvy4000, yvy3000, app(app(ty_@2, fef), feg)) -> new_esEs21(yvy4000, yvy3000, fef, feg) 52.72/30.41 new_ltEs6(yvy1652, yvy1662, app(ty_Ratio, ecg)) -> new_ltEs18(yvy1652, yvy1662, ecg) 52.72/30.41 new_ltEs23(yvy1651, yvy1661, ty_Integer) -> new_ltEs11(yvy1651, yvy1661) 52.72/30.41 new_esEs5(yvy400, yvy300, app(app(ty_@2, bgd), bge)) -> new_esEs21(yvy400, yvy300, bgd, bge) 52.72/30.41 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs5(yvy1650, yvy1660, cga, cgb, cgc) 52.72/30.41 new_esEs32(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.72/30.41 new_compare26(yvy190, yvy191, yvy192, yvy193, True, ee, ef) -> EQ 52.72/30.41 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_[], ced), bae) -> new_ltEs10(yvy1650, yvy1660, ced) 52.72/30.41 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_[], eea), bgg) -> new_esEs18(yvy4000, yvy3000, eea) 52.72/30.41 new_compare15(yvy223, yvy224, False, ddc) -> GT 52.72/30.41 new_compare28(yvy172, yvy173, False, fab, fac) -> new_compare17(yvy172, yvy173, new_ltEs22(yvy172, yvy173, fab), fab, fac) 52.72/30.41 new_lt21(yvy1650, yvy1660, ty_Double) -> new_lt18(yvy1650, yvy1660) 52.72/30.41 new_compare0([], [], bf) -> EQ 52.72/30.41 new_lt22(yvy154, yvy157, app(app(ty_@2, chd), che)) -> new_lt12(yvy154, yvy157, chd, che) 52.72/30.41 new_ltEs16(GT, GT) -> True 52.72/30.41 new_compare13(Float(yvy400, Pos(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.72/30.41 new_esEs37(yvy4001, yvy3001, ty_Double) -> new_esEs27(yvy4001, yvy3001) 52.72/30.41 new_esEs9(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.72/30.41 new_primMulNat0(Zero, Zero) -> Zero 52.72/30.41 new_esEs11(yvy400, yvy300, app(app(ty_@2, bdg), bdh)) -> new_esEs21(yvy400, yvy300, bdg, bdh) 52.72/30.41 new_ltEs21(yvy165, yvy166, app(ty_Maybe, bac)) -> new_ltEs14(yvy165, yvy166, bac) 52.72/30.41 new_lt5(yvy1650, yvy1660, app(app(ty_@2, dhc), dhd)) -> new_lt12(yvy1650, yvy1660, dhc, dhd) 52.72/30.41 new_ltEs19(yvy179, yvy180, ty_Char) -> new_ltEs8(yvy179, yvy180) 52.72/30.41 new_ltEs23(yvy1651, yvy1661, app(app(ty_Either, fhe), fhf)) -> new_ltEs15(yvy1651, yvy1661, fhe, fhf) 52.72/30.41 new_esEs4(yvy401, yvy301, app(ty_[], bfg)) -> new_esEs18(yvy401, yvy301, bfg) 52.72/30.41 new_lt21(yvy1650, yvy1660, app(app(ty_@2, ffe), fff)) -> new_lt12(yvy1650, yvy1660, ffe, fff) 52.72/30.41 new_ltEs23(yvy1651, yvy1661, ty_Float) -> new_ltEs7(yvy1651, yvy1661) 52.72/30.41 new_lt5(yvy1650, yvy1660, ty_Double) -> new_lt18(yvy1650, yvy1660) 52.72/30.41 new_ltEs22(yvy172, yvy173, app(ty_Maybe, fbb)) -> new_ltEs14(yvy172, yvy173, fbb) 52.72/30.41 new_esEs32(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs18(yvy4000, yvy3000, ffc) 52.72/30.41 new_esEs33(yvy1650, yvy1660, app(app(ty_@2, ffe), fff)) -> new_esEs21(yvy1650, yvy1660, ffe, fff) 52.72/30.41 new_esEs9(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.72/30.41 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, ty_Int) -> new_ltEs9(yvy1650, yvy1660) 52.72/30.41 new_compare12(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Int) -> new_compare8(new_sr0(yvy400, yvy301), new_sr0(yvy300, yvy401)) 52.72/30.41 new_ltEs22(yvy172, yvy173, app(app(ty_Either, fbc), fbd)) -> new_ltEs15(yvy172, yvy173, fbc, fbd) 52.72/30.41 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.72/30.41 new_ltEs24(yvy156, yvy159, app(ty_Ratio, dch)) -> new_ltEs18(yvy156, yvy159, dch) 52.72/30.41 new_ltEs6(yvy1652, yvy1662, ty_Char) -> new_ltEs8(yvy1652, yvy1662) 52.72/30.41 new_esEs7(yvy401, yvy301, app(ty_Ratio, dfd)) -> new_esEs28(yvy401, yvy301, dfd) 52.72/30.41 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 52.72/30.41 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 52.72/30.41 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 52.72/30.41 new_gt5(yvy40, yvy30, bf) -> new_esEs41(new_compare0(yvy40, yvy30, bf)) 52.72/30.41 new_lt24(yvy40, yvy50, app(ty_Ratio, cg)) -> new_lt19(yvy40, yvy50, cg) 52.72/30.41 new_esEs10(yvy400, yvy300, app(ty_[], bdb)) -> new_esEs18(yvy400, yvy300, bdb) 52.72/30.41 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 52.72/30.41 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 52.72/30.41 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_Maybe, cfb), bae) -> new_ltEs14(yvy1650, yvy1660, cfb) 52.72/30.41 new_compare31(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), ca, cb, cc) -> new_compare210(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs8(yvy400, yvy300, ca), new_asAs(new_esEs7(yvy401, yvy301, cb), new_esEs6(yvy402, yvy302, cc))), ca, cb, cc) 52.72/30.41 new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) 52.72/30.41 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 52.72/30.41 new_ltEs22(yvy172, yvy173, ty_Ordering) -> new_ltEs16(yvy172, yvy173) 52.72/30.41 new_compare111(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, yvy269, ccg, cch, cda) -> new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, ccg, cch, cda) 52.72/30.41 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, ty_Double) -> new_ltEs17(yvy1650, yvy1660) 52.72/30.41 new_ltEs19(yvy179, yvy180, app(ty_Ratio, ed)) -> new_ltEs18(yvy179, yvy180, ed) 52.72/30.41 new_ltEs21(yvy165, yvy166, ty_Char) -> new_ltEs8(yvy165, yvy166) 52.72/30.41 new_esEs6(yvy402, yvy302, ty_Double) -> new_esEs27(yvy402, yvy302) 52.72/30.41 new_ltEs6(yvy1652, yvy1662, ty_Bool) -> new_ltEs13(yvy1652, yvy1662) 52.72/30.41 new_lt20(yvy190, yvy192, ty_Double) -> new_lt18(yvy190, yvy192) 52.72/30.41 new_not(False) -> True 52.72/30.41 new_ltEs23(yvy1651, yvy1661, app(app(app(ty_@3, fha), fhb), fhc)) -> new_ltEs5(yvy1651, yvy1661, fha, fhb, fhc) 52.72/30.41 new_esEs8(yvy400, yvy300, app(ty_Ratio, dgf)) -> new_esEs28(yvy400, yvy300, dgf) 52.72/30.41 new_ltEs6(yvy1652, yvy1662, ty_Integer) -> new_ltEs11(yvy1652, yvy1662) 52.72/30.41 new_compare18(GT, EQ) -> GT 52.72/30.41 new_esEs5(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.72/30.41 new_ltEs24(yvy156, yvy159, ty_Ordering) -> new_ltEs16(yvy156, yvy159) 52.72/30.41 new_ltEs21(yvy165, yvy166, ty_@0) -> new_ltEs4(yvy165, yvy166) 52.72/30.41 new_ltEs6(yvy1652, yvy1662, app(app(app(ty_@3, eca), ecb), ecc)) -> new_ltEs5(yvy1652, yvy1662, eca, ecb, ecc) 52.72/30.41 new_ltEs6(yvy1652, yvy1662, ty_@0) -> new_ltEs4(yvy1652, yvy1662) 52.72/30.41 new_ltEs24(yvy156, yvy159, ty_Integer) -> new_ltEs11(yvy156, yvy159) 52.72/30.41 new_esEs41(LT) -> False 52.72/30.41 new_gt(yvy81, yvy76, app(ty_[], bag)) -> new_gt5(yvy81, yvy76, bag) 52.72/30.41 new_esEs9(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.72/30.41 new_compare11(yvy247, yvy248, yvy249, yvy250, True, yvy252, fhh, gaa) -> new_compare110(yvy247, yvy248, yvy249, yvy250, True, fhh, gaa) 52.72/30.41 new_esEs37(yvy4001, yvy3001, app(ty_[], cbd)) -> new_esEs18(yvy4001, yvy3001, cbd) 52.72/30.41 new_ltEs20(yvy191, yvy193, app(ty_Ratio, hc)) -> new_ltEs18(yvy191, yvy193, hc) 52.72/30.41 new_ltEs21(yvy165, yvy166, ty_Bool) -> new_ltEs13(yvy165, yvy166) 52.72/30.41 new_esEs4(yvy401, yvy301, ty_Double) -> new_esEs27(yvy401, yvy301) 52.72/30.41 new_esEs38(yvy4000, yvy3000, app(app(ty_@2, cca), ccb)) -> new_esEs21(yvy4000, yvy3000, cca, ccb) 52.72/30.41 new_esEs8(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.72/30.41 new_ltEs23(yvy1651, yvy1661, app(ty_Maybe, fhd)) -> new_ltEs14(yvy1651, yvy1661, fhd) 52.72/30.41 new_compare29(Nothing, Nothing, cd) -> EQ 52.72/30.41 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Double, bgg) -> new_esEs27(yvy4000, yvy3000) 52.72/30.41 new_esEs9(yvy400, yvy300, app(app(app(ty_@3, gab), gac), gad)) -> new_esEs22(yvy400, yvy300, gab, gac, gad) 52.72/30.41 new_sr0(yvy400, yvy301) -> new_primMulInt(yvy400, yvy301) 52.72/30.41 new_ltEs23(yvy1651, yvy1661, app(ty_Ratio, fhg)) -> new_ltEs18(yvy1651, yvy1661, fhg) 52.72/30.41 new_ltEs24(yvy156, yvy159, ty_Bool) -> new_ltEs13(yvy156, yvy159) 52.72/30.41 new_gt(yvy81, yvy76, app(app(ty_@2, bah), bba)) -> new_gt1(yvy81, yvy76, bah, bba) 52.72/30.41 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 52.72/30.41 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 52.72/30.41 new_esEs9(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.72/30.41 new_ltEs23(yvy1651, yvy1661, ty_@0) -> new_ltEs4(yvy1651, yvy1661) 52.72/30.41 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, ech), eda), edb), bgg) -> new_esEs22(yvy4000, yvy3000, ech, eda, edb) 52.72/30.41 new_esEs14(yvy1650, yvy1660, app(ty_[], dhb)) -> new_esEs18(yvy1650, yvy1660, dhb) 52.72/30.41 new_ltEs24(yvy156, yvy159, app(app(ty_Either, dcf), dcg)) -> new_ltEs15(yvy156, yvy159, dcf, dcg) 52.72/30.41 new_esEs18(:(yvy4000, yvy4001), [], bgh) -> False 52.72/30.41 new_esEs18([], :(yvy3000, yvy3001), bgh) -> False 52.72/30.41 new_ltEs23(yvy1651, yvy1661, ty_Bool) -> new_ltEs13(yvy1651, yvy1661) 52.72/30.41 new_lt9(yvy40, yvy30) -> new_esEs12(new_compare8(yvy40, yvy30)) 52.72/30.41 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 52.72/30.41 new_ltEs18(yvy165, yvy166, baf) -> new_fsEs(new_compare12(yvy165, yvy166, baf)) 52.72/30.41 new_ltEs22(yvy172, yvy173, app(ty_Ratio, fbe)) -> new_ltEs18(yvy172, yvy173, fbe) 52.72/30.41 new_esEs26(EQ, EQ) -> True 52.72/30.41 new_ltEs21(yvy165, yvy166, ty_Integer) -> new_ltEs11(yvy165, yvy166) 52.72/30.41 new_esEs8(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.72/30.41 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.72/30.41 new_lt6(yvy1651, yvy1661, ty_Double) -> new_lt18(yvy1651, yvy1661) 52.72/30.41 new_compare15(yvy223, yvy224, True, ddc) -> LT 52.72/30.41 new_esEs26(LT, LT) -> True 52.72/30.41 new_esEs36(yvy4002, yvy3002, app(app(ty_@2, bhe), bhf)) -> new_esEs21(yvy4002, yvy3002, bhe, bhf) 52.72/30.41 new_esEs9(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.72/30.41 new_esEs24(Nothing, Nothing, bgc) -> True 52.72/30.41 new_esEs13(yvy1651, yvy1661, app(app(ty_@2, eae), eaf)) -> new_esEs21(yvy1651, yvy1661, eae, eaf) 52.72/30.41 new_ltEs21(yvy165, yvy166, ty_Int) -> new_ltEs9(yvy165, yvy166) 52.72/30.41 new_ltEs21(yvy165, yvy166, app(ty_Ratio, baf)) -> new_ltEs18(yvy165, yvy166, baf) 52.72/30.41 new_ltEs22(yvy172, yvy173, ty_Bool) -> new_ltEs13(yvy172, yvy173) 52.72/30.41 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 52.72/30.41 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 52.72/30.41 new_ltEs24(yvy156, yvy159, ty_Char) -> new_ltEs8(yvy156, yvy159) 52.72/30.41 new_lt23(yvy155, yvy158, ty_Double) -> new_lt18(yvy155, yvy158) 52.72/30.41 new_primEqNat0(Zero, Zero) -> True 52.72/30.41 new_esEs37(yvy4001, yvy3001, app(app(ty_@2, cag), cah)) -> new_esEs21(yvy4001, yvy3001, cag, cah) 52.72/30.41 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.72/30.41 new_esEs14(yvy1650, yvy1660, app(app(ty_@2, dhc), dhd)) -> new_esEs21(yvy1650, yvy1660, dhc, dhd) 52.72/30.41 new_ltEs20(yvy191, yvy193, ty_Int) -> new_ltEs9(yvy191, yvy193) 52.72/30.41 new_esEs24(Nothing, Just(yvy3000), bgc) -> False 52.72/30.41 new_esEs24(Just(yvy4000), Nothing, bgc) -> False 52.72/30.41 new_esEs13(yvy1651, yvy1661, app(ty_[], ead)) -> new_esEs18(yvy1651, yvy1661, ead) 52.72/30.41 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.72/30.41 new_compare9(Double(yvy400, Neg(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.72/30.41 new_lt22(yvy154, yvy157, ty_Double) -> new_lt18(yvy154, yvy157) 52.72/30.41 new_asAs(False, yvy208) -> False 52.72/30.41 new_ltEs23(yvy1651, yvy1661, ty_Char) -> new_ltEs8(yvy1651, yvy1661) 52.72/30.41 new_ltEs6(yvy1652, yvy1662, ty_Int) -> new_ltEs9(yvy1652, yvy1662) 52.72/30.41 new_compare111(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, False, yvy269, ccg, cch, cda) -> new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, yvy269, ccg, cch, cda) 52.72/30.41 new_ltEs22(yvy172, yvy173, ty_Integer) -> new_ltEs11(yvy172, yvy173) 52.72/30.41 new_ltEs24(yvy156, yvy159, app(ty_Maybe, dce)) -> new_ltEs14(yvy156, yvy159, dce) 52.72/30.41 new_compare30(yvy400, yvy300, app(ty_Ratio, cec)) -> new_compare12(yvy400, yvy300, cec) 52.72/30.41 new_esEs7(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) 52.72/30.41 new_gt0(yvy40, yvy30) -> new_esEs41(new_compare9(yvy40, yvy30)) 52.72/30.41 new_ltEs21(yvy165, yvy166, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs5(yvy165, yvy166, hh, baa, bab) 52.72/30.41 52.72/30.41 The set Q consists of the following terms: 52.72/30.41 52.72/30.41 new_esEs8(x0, x1, ty_Ordering) 52.72/30.41 new_esEs9(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_esEs7(x0, x1, ty_Char) 52.72/30.41 new_esEs38(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 52.72/30.41 new_esEs10(x0, x1, ty_Int) 52.72/30.41 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 52.72/30.41 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 52.72/30.41 new_ltEs23(x0, x1, app(ty_[], x2)) 52.72/30.41 new_esEs38(x0, x1, app(ty_[], x2)) 52.72/30.41 new_ltEs21(x0, x1, ty_Double) 52.72/30.41 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_compare0([], :(x0, x1), x2) 52.72/30.41 new_lt20(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_ltEs6(x0, x1, app(ty_[], x2)) 52.72/30.41 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 52.72/30.41 new_esEs29(x0, x1, ty_@0) 52.72/30.41 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_asAs(False, x0) 52.72/30.41 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_esEs8(x0, x1, ty_Double) 52.72/30.41 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_compare30(x0, x1, ty_Char) 52.72/30.41 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_ltEs21(x0, x1, ty_Ordering) 52.72/30.41 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_esEs29(x0, x1, ty_Bool) 52.72/30.41 new_esEs37(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_lt22(x0, x1, ty_@0) 52.72/30.41 new_esEs6(x0, x1, app(ty_[], x2)) 52.72/30.41 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 52.72/30.41 new_lt5(x0, x1, ty_Float) 52.72/30.41 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_primEqInt(Pos(Zero), Pos(Zero)) 52.72/30.41 new_ltEs15(Left(x0), Left(x1), ty_Int, x2) 52.72/30.41 new_primMulNat0(Zero, Succ(x0)) 52.72/30.41 new_ltEs19(x0, x1, ty_Integer) 52.72/30.41 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 52.72/30.41 new_esEs36(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_lt20(x0, x1, ty_Char) 52.72/30.41 new_esEs24(Nothing, Just(x0), x1) 52.72/30.41 new_primCompAux00(x0, GT) 52.72/30.41 new_esEs18(:(x0, x1), :(x2, x3), x4) 52.72/30.41 new_ltEs20(x0, x1, ty_Ordering) 52.72/30.41 new_ltEs19(x0, x1, ty_Float) 52.72/30.41 new_sr0(x0, x1) 52.72/30.41 new_ltEs7(x0, x1) 52.72/30.41 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_esEs7(x0, x1, ty_Ordering) 52.72/30.41 new_lt24(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_primEqInt(Neg(Zero), Neg(Zero)) 52.72/30.41 new_ltEs11(x0, x1) 52.72/30.41 new_ltEs16(GT, EQ) 52.72/30.41 new_ltEs16(EQ, GT) 52.72/30.41 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 52.72/30.41 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_esEs39(x0, x1, ty_Int) 52.72/30.41 new_lt21(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_ltEs24(x0, x1, app(ty_[], x2)) 52.72/30.41 new_ltEs21(x0, x1, ty_Char) 52.72/30.41 new_lt11(x0, x1) 52.72/30.41 new_gt(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_esEs29(x0, x1, ty_Integer) 52.72/30.41 new_ltEs16(LT, LT) 52.72/30.41 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 52.72/30.41 new_esEs8(x0, x1, ty_Char) 52.72/30.41 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_esEs35(x0, x1, ty_Integer) 52.72/30.41 new_lt24(x0, x1, ty_Float) 52.72/30.41 new_ltEs20(x0, x1, ty_Char) 52.72/30.41 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_primPlusNat0(Zero, Succ(x0)) 52.72/30.41 new_compare30(x0, x1, ty_Double) 52.72/30.41 new_esEs20(Integer(x0), Integer(x1)) 52.72/30.41 new_esEs6(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 52.72/30.41 new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_lt23(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_primEqInt(Pos(Zero), Neg(Zero)) 52.72/30.41 new_primEqInt(Neg(Zero), Pos(Zero)) 52.72/30.41 new_esEs25(Left(x0), Left(x1), ty_Float, x2) 52.72/30.41 new_ltEs20(x0, x1, ty_Double) 52.72/30.41 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_esEs11(x0, x1, ty_Float) 52.72/30.41 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 52.72/30.41 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 52.72/30.41 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_ltEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 52.72/30.41 new_esEs34(x0, x1, ty_Integer) 52.72/30.41 new_gt(x0, x1, ty_Char) 52.72/30.41 new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) 52.72/30.41 new_gt(x0, x1, ty_Double) 52.72/30.41 new_compare18(GT, GT) 52.72/30.41 new_esEs25(Left(x0), Left(x1), ty_@0, x2) 52.72/30.41 new_lt20(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_lt23(x0, x1, ty_Char) 52.72/30.41 new_compare7(True, True) 52.72/30.41 new_gt11(x0, x1, x2, x3) 52.72/30.41 new_gt4(x0, x1) 52.72/30.41 new_primCmpNat0(Succ(x0), Zero) 52.72/30.41 new_esEs6(x0, x1, ty_Ordering) 52.72/30.41 new_esEs38(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_lt23(x0, x1, ty_Double) 52.72/30.41 new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_lt23(x0, x1, app(ty_[], x2)) 52.72/30.41 new_ltEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 52.72/30.41 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 52.72/30.41 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 52.72/30.41 new_esEs7(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 52.72/30.41 new_esEs23(False, False) 52.72/30.41 new_esEs29(x0, x1, ty_Float) 52.72/30.41 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_compare19(Char(x0), Char(x1)) 52.72/30.41 new_esEs32(x0, x1, ty_Double) 52.72/30.41 new_primEqNat0(Succ(x0), Succ(x1)) 52.72/30.41 new_esEs31(x0, x1, ty_Float) 52.72/30.41 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_esEs24(Just(x0), Just(x1), ty_Float) 52.72/30.41 new_ltEs15(Right(x0), Right(x1), x2, ty_Ordering) 52.72/30.41 new_esEs25(Right(x0), Right(x1), x2, ty_Int) 52.72/30.41 new_lt24(x0, x1, ty_Integer) 52.72/30.41 new_esEs31(x0, x1, ty_Char) 52.72/30.41 new_esEs12(GT) 52.72/30.41 new_lt20(x0, x1, ty_Ordering) 52.72/30.41 new_esEs26(LT, EQ) 52.72/30.41 new_esEs26(EQ, LT) 52.72/30.41 new_esEs25(Left(x0), Left(x1), ty_Bool, x2) 52.72/30.41 new_esEs5(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_ltEs19(x0, x1, ty_@0) 52.72/30.41 new_esEs6(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_ltEs16(LT, EQ) 52.72/30.41 new_ltEs16(EQ, LT) 52.72/30.41 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_lt22(x0, x1, ty_Float) 52.72/30.41 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_lt21(x0, x1, ty_Float) 52.72/30.41 new_esEs5(x0, x1, app(ty_[], x2)) 52.72/30.41 new_ltEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 52.72/30.41 new_ltEs22(x0, x1, ty_Int) 52.72/30.41 new_esEs24(Just(x0), Just(x1), ty_Char) 52.72/30.41 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_esEs30(x0, x1, ty_Int) 52.72/30.41 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_lt22(x0, x1, ty_Integer) 52.72/30.41 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_lt20(x0, x1, ty_Double) 52.72/30.41 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) 52.72/30.41 new_ltEs23(x0, x1, ty_Char) 52.72/30.41 new_esEs18([], :(x0, x1), x2) 52.72/30.41 new_ltEs15(Right(x0), Right(x1), x2, ty_Double) 52.72/30.41 new_ltEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 52.72/30.41 new_ltEs24(x0, x1, ty_Char) 52.72/30.41 new_ltEs15(Left(x0), Left(x1), ty_@0, x2) 52.72/30.41 new_lt7(x0, x1) 52.72/30.41 new_esEs37(x0, x1, app(ty_[], x2)) 52.72/30.41 new_ltEs10(x0, x1, x2) 52.72/30.41 new_ltEs15(Left(x0), Left(x1), app(ty_[], x2), x3) 52.72/30.41 new_gt(x0, x1, ty_Ordering) 52.72/30.41 new_esEs40(x0, x1, ty_@0) 52.72/30.41 new_esEs7(x0, x1, ty_Double) 52.72/30.41 new_lt22(x0, x1, ty_Int) 52.72/30.41 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_ltEs23(x0, x1, ty_Ordering) 52.72/30.41 new_lt24(x0, x1, ty_Ordering) 52.72/30.41 new_esEs37(x0, x1, ty_Int) 52.72/30.41 new_ltEs14(Just(x0), Just(x1), ty_Double) 52.72/30.41 new_gt0(x0, x1) 52.72/30.41 new_esEs39(x0, x1, ty_Integer) 52.72/30.41 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_compare14(Integer(x0), Integer(x1)) 52.72/30.41 new_esEs10(x0, x1, ty_@0) 52.72/30.41 new_esEs25(Left(x0), Left(x1), ty_Integer, x2) 52.72/30.41 new_esEs6(x0, x1, ty_Char) 52.72/30.41 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_esEs4(x0, x1, ty_Int) 52.72/30.41 new_ltEs19(x0, x1, app(ty_[], x2)) 52.72/30.41 new_compare29(Nothing, Nothing, x0) 52.72/30.41 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_lt18(x0, x1) 52.72/30.41 new_esEs14(x0, x1, ty_Int) 52.72/30.41 new_ltEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 52.72/30.41 new_lt22(x0, x1, ty_Bool) 52.72/30.41 new_lt5(x0, x1, ty_@0) 52.72/30.41 new_lt5(x0, x1, ty_Double) 52.72/30.41 new_esEs40(x0, x1, app(ty_[], x2)) 52.72/30.41 new_esEs32(x0, x1, ty_@0) 52.72/30.41 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 52.72/30.41 new_esEs35(x0, x1, ty_Int) 52.72/30.41 new_esEs29(x0, x1, ty_Int) 52.72/30.41 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 52.72/30.41 new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 52.72/30.41 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_esEs26(EQ, EQ) 52.72/30.41 new_ltEs13(True, True) 52.72/30.41 new_ltEs6(x0, x1, ty_Double) 52.72/30.41 new_esEs5(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_gt5(x0, x1, x2) 52.72/30.41 new_esEs37(x0, x1, ty_@0) 52.72/30.41 new_esEs31(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_esEs23(False, True) 52.72/30.41 new_esEs23(True, False) 52.72/30.41 new_ltEs21(x0, x1, ty_Float) 52.72/30.41 new_esEs25(Right(x0), Right(x1), x2, ty_Bool) 52.72/30.41 new_ltEs15(Left(x0), Left(x1), ty_Float, x2) 52.72/30.41 new_esEs9(x0, x1, ty_Ordering) 52.72/30.41 new_compare16(Right(x0), Left(x1), x2, x3) 52.72/30.41 new_compare16(Left(x0), Right(x1), x2, x3) 52.72/30.41 new_compare18(GT, LT) 52.72/30.41 new_compare18(LT, GT) 52.72/30.41 new_lt22(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_esEs11(x0, x1, ty_Int) 52.72/30.41 new_primCompAux00(x0, EQ) 52.72/30.41 new_lt23(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_esEs25(Right(x0), Right(x1), x2, ty_@0) 52.72/30.41 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_esEs5(x0, x1, ty_Int) 52.72/30.41 new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.72/30.41 new_pePe(True, x0) 52.72/30.41 new_ltEs14(Nothing, Just(x0), x1) 52.72/30.41 new_esEs30(x0, x1, ty_Bool) 52.72/30.41 new_esEs11(x0, x1, ty_Char) 52.72/30.41 new_esEs25(Right(x0), Right(x1), x2, ty_Integer) 52.72/30.41 new_ltEs20(x0, x1, ty_Float) 52.72/30.41 new_esEs5(x0, x1, ty_Char) 52.72/30.41 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_ltEs24(x0, x1, ty_Ordering) 52.72/30.41 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 52.72/30.41 new_esEs32(x0, x1, ty_Bool) 52.72/30.41 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_compare29(Just(x0), Just(x1), x2) 52.72/30.41 new_esEs37(x0, x1, ty_Bool) 52.72/30.41 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 52.72/30.41 new_ltEs20(x0, x1, ty_Integer) 52.72/30.41 new_ltEs19(x0, x1, ty_Ordering) 52.72/30.41 new_esEs13(x0, x1, ty_Bool) 52.72/30.41 new_ltEs24(x0, x1, ty_Double) 52.72/30.41 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_lt13(x0, x1, x2, x3, x4) 52.72/30.41 new_esEs36(x0, x1, ty_Integer) 52.72/30.41 new_primPlusNat0(Zero, Zero) 52.72/30.41 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_lt21(x0, x1, ty_@0) 52.72/30.41 new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 52.72/30.41 new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) 52.72/30.41 new_lt8(x0, x1) 52.72/30.41 new_not(True) 52.72/30.41 new_esEs4(x0, x1, ty_Ordering) 52.72/30.41 new_esEs32(x0, x1, ty_Integer) 52.72/30.41 new_gt10(x0, x1, x2) 52.72/30.41 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_ltEs13(False, False) 52.72/30.41 new_lt21(x0, x1, ty_Int) 52.72/30.41 new_esEs29(x0, x1, app(ty_[], x2)) 52.72/30.41 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 52.72/30.41 new_lt21(x0, x1, ty_Integer) 52.72/30.41 new_ltEs14(Just(x0), Nothing, x1) 52.72/30.41 new_esEs13(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_gt(x0, x1, ty_Float) 52.72/30.41 new_esEs18(:(x0, x1), [], x2) 52.72/30.41 new_esEs5(x0, x1, ty_@0) 52.72/30.41 new_esEs38(x0, x1, ty_Ordering) 52.72/30.41 new_lt24(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 52.72/30.41 new_lt21(x0, x1, ty_Char) 52.72/30.41 new_esEs36(x0, x1, app(ty_[], x2)) 52.72/30.41 new_ltEs6(x0, x1, ty_Ordering) 52.72/30.41 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_compare17(x0, x1, False, x2, x3) 52.72/30.41 new_lt5(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_esEs36(x0, x1, ty_Bool) 52.72/30.41 new_esEs11(x0, x1, ty_@0) 52.72/30.41 new_esEs10(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_lt5(x0, x1, ty_Ordering) 52.72/30.41 new_lt21(x0, x1, ty_Bool) 52.72/30.41 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_esEs39(x0, x1, ty_@0) 52.72/30.41 new_lt24(x0, x1, ty_@0) 52.72/30.41 new_esEs24(Nothing, Nothing, x0) 52.72/30.41 new_esEs36(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_lt6(x0, x1, ty_@0) 52.72/30.41 new_esEs37(x0, x1, ty_Integer) 52.72/30.41 new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 52.72/30.41 new_esEs7(x0, x1, app(ty_[], x2)) 52.72/30.41 new_esEs13(x0, x1, ty_Integer) 52.72/30.41 new_compare10(x0, x1, True, x2, x3) 52.72/30.41 new_ltEs20(x0, x1, ty_Bool) 52.72/30.41 new_ltEs18(x0, x1, x2) 52.72/30.41 new_esEs8(x0, x1, ty_Float) 52.72/30.41 new_esEs32(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_esEs24(Just(x0), Just(x1), ty_Ordering) 52.72/30.41 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 52.72/30.41 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_compare15(x0, x1, False, x2) 52.72/30.41 new_ltEs15(Right(x0), Right(x1), x2, ty_Int) 52.72/30.41 new_ltEs21(x0, x1, ty_@0) 52.72/30.41 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_ltEs21(x0, x1, ty_Bool) 52.72/30.41 new_esEs40(x0, x1, ty_Integer) 52.72/30.41 new_esEs30(x0, x1, ty_Double) 52.72/30.41 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) 52.72/30.41 new_esEs24(Just(x0), Just(x1), ty_Double) 52.72/30.41 new_ltEs15(Left(x0), Left(x1), ty_Bool, x2) 52.72/30.41 new_esEs31(x0, x1, ty_Ordering) 52.72/30.41 new_esEs36(x0, x1, ty_Char) 52.72/30.41 new_compare110(x0, x1, x2, x3, True, x4, x5) 52.72/30.41 new_ltEs14(Just(x0), Just(x1), ty_Char) 52.72/30.41 new_lt20(x0, x1, ty_Float) 52.72/30.41 new_fsEs(x0) 52.72/30.41 new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 52.72/30.41 new_primMulInt(Neg(x0), Neg(x1)) 52.72/30.41 new_esEs36(x0, x1, ty_Int) 52.72/30.41 new_esEs11(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_esEs26(EQ, GT) 52.72/30.41 new_esEs26(GT, EQ) 52.72/30.41 new_lt12(x0, x1, x2, x3) 52.72/30.41 new_esEs15(Float(x0, x1), Float(x2, x3)) 52.72/30.41 new_esEs33(x0, x1, ty_Char) 52.72/30.41 new_esEs32(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_esEs5(x0, x1, ty_Bool) 52.72/30.41 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 52.72/30.41 new_esEs31(x0, x1, ty_Double) 52.72/30.41 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_ltEs21(x0, x1, ty_Integer) 52.72/30.41 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 52.72/30.41 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 52.72/30.41 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 52.72/30.41 new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) 52.72/30.41 new_esEs11(x0, x1, ty_Bool) 52.72/30.41 new_esEs33(x0, x1, ty_Int) 52.72/30.41 new_ltEs15(Right(x0), Right(x1), x2, ty_Char) 52.72/30.41 new_gt13(x0, x1, x2) 52.72/30.41 new_esEs36(x0, x1, ty_Float) 52.72/30.41 new_primMulInt(Pos(x0), Pos(x1)) 52.72/30.41 new_esEs9(x0, x1, app(ty_[], x2)) 52.72/30.41 new_primEqNat0(Zero, Zero) 52.72/30.41 new_esEs32(x0, x1, ty_Int) 52.72/30.41 new_ltEs4(x0, x1) 52.72/30.41 new_lt20(x0, x1, ty_Int) 52.72/30.41 new_ltEs15(Left(x0), Left(x1), ty_Char, x2) 52.72/30.41 new_ltEs22(x0, x1, ty_Ordering) 52.72/30.41 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_not(False) 52.72/30.41 new_ltEs14(Just(x0), Just(x1), ty_Bool) 52.72/30.41 new_esEs13(x0, x1, ty_Char) 52.72/30.41 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_esEs12(LT) 52.72/30.41 new_esEs13(x0, x1, ty_Int) 52.72/30.41 new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 52.72/30.41 new_esEs32(x0, x1, ty_Char) 52.72/30.41 new_esEs40(x0, x1, ty_Bool) 52.72/30.41 new_ltEs15(Left(x0), Left(x1), ty_Integer, x2) 52.72/30.41 new_esEs33(x0, x1, ty_Integer) 52.72/30.41 new_esEs40(x0, x1, ty_Float) 52.72/30.41 new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_ltEs14(Just(x0), Just(x1), ty_Float) 52.72/30.41 new_esEs14(x0, x1, ty_@0) 52.72/30.41 new_gt3(x0, x1) 52.72/30.41 new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 52.72/30.41 new_esEs33(x0, x1, ty_Bool) 52.72/30.41 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_ltEs15(Right(x0), Right(x1), x2, ty_Float) 52.72/30.41 new_ltEs9(x0, x1) 52.72/30.41 new_esEs32(x0, x1, ty_Float) 52.72/30.41 new_gt(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_compare25(x0, x1, True, x2, x3) 52.72/30.41 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_esEs41(LT) 52.72/30.41 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 52.72/30.41 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 52.72/30.41 new_esEs40(x0, x1, ty_Int) 52.72/30.41 new_esEs5(x0, x1, ty_Integer) 52.72/30.41 new_esEs4(x0, x1, ty_Double) 52.72/30.41 new_esEs13(x0, x1, ty_Float) 52.72/30.41 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 52.72/30.41 new_esEs11(x0, x1, ty_Integer) 52.72/30.41 new_esEs29(x0, x1, ty_Double) 52.72/30.41 new_esEs13(x0, x1, app(ty_[], x2)) 52.72/30.41 new_compare11(x0, x1, x2, x3, False, x4, x5, x6) 52.72/30.41 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_esEs40(x0, x1, ty_Char) 52.72/30.41 new_ltEs14(Just(x0), Just(x1), ty_Int) 52.72/30.41 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_lt5(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_esEs6(x0, x1, ty_@0) 52.72/30.41 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_esEs13(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_compare30(x0, x1, ty_Ordering) 52.72/30.41 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 52.72/30.41 new_esEs29(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_ltEs15(Left(x0), Left(x1), ty_Double, x2) 52.72/30.41 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_primPlusNat0(Succ(x0), Zero) 52.72/30.41 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_lt23(x0, x1, ty_Bool) 52.72/30.41 new_esEs9(x0, x1, ty_Float) 52.72/30.41 new_ltEs15(Right(x0), Right(x1), x2, ty_Integer) 52.72/30.41 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_compare30(x0, x1, ty_Int) 52.72/30.41 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 52.72/30.41 new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.72/30.41 new_ltEs6(x0, x1, ty_Integer) 52.72/30.41 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_esEs18([], [], x0) 52.72/30.41 new_lt20(x0, x1, ty_@0) 52.72/30.41 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_compare110(x0, x1, x2, x3, False, x4, x5) 52.72/30.41 new_ltEs24(x0, x1, ty_Float) 52.72/30.41 new_sr(Integer(x0), Integer(x1)) 52.72/30.41 new_esEs32(x0, x1, app(ty_[], x2)) 52.72/30.41 new_lt23(x0, x1, ty_@0) 52.72/30.41 new_esEs8(x0, x1, ty_Int) 52.72/30.41 new_lt20(x0, x1, ty_Bool) 52.72/30.41 new_esEs10(x0, x1, ty_Ordering) 52.72/30.41 new_esEs31(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 52.72/30.41 new_esEs7(x0, x1, ty_Int) 52.72/30.41 new_esEs6(x0, x1, ty_Bool) 52.72/30.41 new_lt23(x0, x1, ty_Integer) 52.72/30.41 new_gt12(x0, x1) 52.72/30.41 new_ltEs17(x0, x1) 52.72/30.41 new_ltEs15(Right(x0), Right(x1), x2, ty_Bool) 52.72/30.41 new_gt6(x0, x1) 52.72/30.41 new_primCmpNat0(Zero, Succ(x0)) 52.72/30.41 new_esEs26(LT, GT) 52.72/30.41 new_esEs26(GT, LT) 52.72/30.41 new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 52.72/30.41 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_lt24(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_compare15(x0, x1, True, x2) 52.72/30.41 new_ltEs15(Left(x0), Left(x1), ty_Ordering, x2) 52.72/30.41 new_primMulNat0(Succ(x0), Zero) 52.72/30.41 new_esEs30(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 52.72/30.41 new_esEs6(x0, x1, ty_Integer) 52.72/30.41 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_ltEs23(x0, x1, ty_Float) 52.72/30.41 new_ltEs20(x0, x1, app(ty_[], x2)) 52.72/30.41 new_ltEs13(False, True) 52.72/30.41 new_ltEs13(True, False) 52.72/30.41 new_lt20(x0, x1, ty_Integer) 52.72/30.41 new_ltEs24(x0, x1, ty_Integer) 52.72/30.41 new_compare18(EQ, LT) 52.72/30.41 new_compare18(LT, EQ) 52.72/30.41 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_ltEs20(x0, x1, ty_Int) 52.72/30.41 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_lt22(x0, x1, ty_Ordering) 52.72/30.41 new_ltEs23(x0, x1, ty_@0) 52.72/30.41 new_esEs33(x0, x1, ty_Float) 52.72/30.41 new_gt(x0, x1, app(ty_[], x2)) 52.72/30.41 new_esEs7(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_esEs9(x0, x1, ty_Integer) 52.72/30.41 new_lt6(x0, x1, ty_Float) 52.72/30.41 new_compare18(LT, LT) 52.72/30.41 new_gt(x0, x1, ty_Bool) 52.72/30.41 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_ltEs22(x0, x1, ty_Double) 52.72/30.41 new_ltEs21(x0, x1, ty_Int) 52.72/30.41 new_lt6(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_ltEs14(Just(x0), Just(x1), ty_Integer) 52.72/30.41 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_esEs5(x0, x1, ty_Float) 52.72/30.41 new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_esEs39(x0, x1, ty_Double) 52.72/30.41 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_esEs40(x0, x1, ty_Ordering) 52.72/30.41 new_esEs4(x0, x1, app(ty_[], x2)) 52.72/30.41 new_esEs29(x0, x1, ty_Ordering) 52.72/30.41 new_gt(x0, x1, ty_@0) 52.72/30.41 new_esEs8(x0, x1, ty_@0) 52.72/30.41 new_pePe(False, x0) 52.72/30.41 new_esEs36(x0, x1, ty_Double) 52.72/30.41 new_lt23(x0, x1, ty_Int) 52.72/30.41 new_lt17(x0, x1) 52.72/30.41 new_compare26(x0, x1, x2, x3, False, x4, x5) 52.72/30.41 new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_esEs39(x0, x1, ty_Char) 52.72/30.41 new_gt(x0, x1, ty_Int) 52.72/30.41 new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) 52.72/30.41 new_primEqNat0(Succ(x0), Zero) 52.72/30.41 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 52.72/30.41 new_compare30(x0, x1, ty_@0) 52.72/30.41 new_lt24(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_lt23(x0, x1, ty_Float) 52.72/30.41 new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 52.72/30.41 new_lt24(x0, x1, app(ty_[], x2)) 52.72/30.41 new_esEs14(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_esEs41(GT) 52.72/30.41 new_esEs8(x0, x1, ty_Bool) 52.72/30.41 new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) 52.72/30.41 new_esEs23(True, True) 52.72/30.41 new_esEs13(x0, x1, ty_Double) 52.72/30.41 new_compare11(x0, x1, x2, x3, True, x4, x5, x6) 52.72/30.41 new_esEs14(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_esEs8(x0, x1, app(ty_[], x2)) 52.72/30.41 new_esEs30(x0, x1, ty_Float) 52.72/30.41 new_primPlusNat0(Succ(x0), Succ(x1)) 52.72/30.41 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_compare18(EQ, GT) 52.72/30.41 new_compare18(GT, EQ) 52.72/30.41 new_ltEs16(GT, GT) 52.72/30.41 new_lt6(x0, x1, ty_Integer) 52.72/30.41 new_ltEs22(x0, x1, ty_Char) 52.72/30.41 new_ltEs24(x0, x1, ty_Bool) 52.72/30.41 new_compare30(x0, x1, app(ty_[], x2)) 52.72/30.41 new_lt5(x0, x1, app(ty_[], x2)) 52.72/30.41 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 52.72/30.41 new_esEs33(x0, x1, ty_@0) 52.72/30.41 new_gt(x0, x1, ty_Integer) 52.72/30.41 new_compare28(x0, x1, True, x2, x3) 52.72/30.41 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 52.72/30.41 new_ltEs23(x0, x1, ty_Int) 52.72/30.41 new_esEs26(GT, GT) 52.72/30.41 new_ltEs20(x0, x1, ty_@0) 52.72/30.41 new_esEs14(x0, x1, ty_Integer) 52.72/30.41 new_esEs30(x0, x1, ty_Ordering) 52.72/30.41 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_esEs36(x0, x1, ty_Ordering) 52.72/30.41 new_compare17(x0, x1, True, x2, x3) 52.72/30.41 new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) 52.72/30.41 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_esEs9(x0, x1, ty_@0) 52.72/30.41 new_esEs24(Just(x0), Just(x1), ty_Int) 52.72/30.41 new_esEs31(x0, x1, ty_Int) 52.72/30.41 new_esEs25(Right(x0), Right(x1), x2, ty_Float) 52.72/30.41 new_esEs4(x0, x1, ty_Float) 52.72/30.41 new_gt(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_esEs4(x0, x1, ty_Integer) 52.72/30.41 new_compare25(x0, x1, False, x2, x3) 52.72/30.41 new_esEs14(x0, x1, ty_Float) 52.72/30.41 new_esEs30(x0, x1, app(ty_[], x2)) 52.72/30.41 new_primCmpInt(Neg(Zero), Neg(Zero)) 52.72/30.41 new_lt6(x0, x1, ty_Ordering) 52.72/30.41 new_ltEs22(x0, x1, ty_Float) 52.72/30.41 new_esEs37(x0, x1, ty_Char) 52.72/30.41 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_compare0(:(x0, x1), [], x2) 52.72/30.41 new_esEs7(x0, x1, ty_@0) 52.72/30.41 new_esEs30(x0, x1, ty_Char) 52.72/30.41 new_esEs29(x0, x1, ty_Char) 52.72/30.41 new_compare10(x0, x1, False, x2, x3) 52.72/30.41 new_primCmpInt(Pos(Zero), Neg(Zero)) 52.72/30.41 new_primCmpInt(Neg(Zero), Pos(Zero)) 52.72/30.41 new_esEs14(x0, x1, ty_Bool) 52.72/30.41 new_esEs25(Left(x0), Right(x1), x2, x3) 52.72/30.41 new_esEs25(Right(x0), Left(x1), x2, x3) 52.72/30.41 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_ltEs15(Right(x0), Right(x1), x2, ty_@0) 52.72/30.41 new_esEs38(x0, x1, ty_@0) 52.72/30.41 new_ltEs19(x0, x1, ty_Double) 52.72/30.41 new_esEs30(x0, x1, ty_Integer) 52.72/30.41 new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 52.72/30.41 new_esEs10(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_ltEs6(x0, x1, ty_@0) 52.72/30.41 new_ltEs23(x0, x1, ty_Bool) 52.72/30.41 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_compare7(False, False) 52.72/30.41 new_esEs10(x0, x1, ty_Double) 52.72/30.41 new_esEs31(x0, x1, app(ty_[], x2)) 52.72/30.41 new_lt22(x0, x1, ty_Char) 52.72/30.41 new_compare30(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_ltEs23(x0, x1, ty_Integer) 52.72/30.41 new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) 52.72/30.41 new_esEs39(x0, x1, ty_Ordering) 52.72/30.41 new_esEs6(x0, x1, ty_Float) 52.72/30.41 new_esEs4(x0, x1, ty_Char) 52.72/30.41 new_esEs25(Right(x0), Right(x1), x2, ty_Char) 52.72/30.41 new_lt22(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_esEs37(x0, x1, ty_Float) 52.72/30.41 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_esEs6(x0, x1, ty_Int) 52.72/30.41 new_ltEs14(Just(x0), Just(x1), ty_@0) 52.72/30.41 new_esEs40(x0, x1, ty_Double) 52.72/30.41 new_esEs4(x0, x1, ty_Bool) 52.72/30.41 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_esEs24(Just(x0), Nothing, x1) 52.72/30.41 new_esEs14(x0, x1, ty_Char) 52.72/30.41 new_esEs38(x0, x1, ty_Double) 52.72/30.41 new_compare0(:(x0, x1), :(x2, x3), x4) 52.72/30.41 new_ltEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) 52.72/30.41 new_esEs8(x0, x1, ty_Integer) 52.72/30.41 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 52.72/30.41 new_lt5(x0, x1, ty_Int) 52.72/30.41 new_esEs11(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_ltEs21(x0, x1, app(ty_[], x2)) 52.72/30.41 new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 52.72/30.41 new_primMulNat0(Succ(x0), Succ(x1)) 52.72/30.41 new_esEs11(x0, x1, app(ty_[], x2)) 52.72/30.41 new_esEs26(LT, LT) 52.72/30.41 new_esEs30(x0, x1, ty_@0) 52.72/30.41 new_esEs13(x0, x1, ty_@0) 52.72/30.41 new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) 52.72/30.41 new_esEs9(x0, x1, ty_Double) 52.72/30.41 new_esEs24(Just(x0), Just(x1), ty_Bool) 52.72/30.41 new_ltEs16(EQ, EQ) 52.72/30.41 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_gt8(x0, x1, x2, x3, x4) 52.72/30.41 new_lt6(x0, x1, ty_Char) 52.72/30.41 new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 52.72/30.41 new_esEs5(x0, x1, ty_Ordering) 52.72/30.41 new_primMulNat0(Zero, Zero) 52.72/30.41 new_esEs31(x0, x1, ty_Bool) 52.72/30.41 new_compare5(@0, @0) 52.72/30.41 new_lt15(x0, x1, x2) 52.72/30.41 new_compare30(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_esEs39(x0, x1, app(ty_[], x2)) 52.72/30.41 new_esEs31(x0, x1, ty_Integer) 52.72/30.41 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_esEs9(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_esEs24(Just(x0), Just(x1), ty_Integer) 52.72/30.41 new_esEs39(x0, x1, ty_Float) 52.72/30.41 new_esEs10(x0, x1, ty_Float) 52.72/30.41 new_esEs5(x0, x1, ty_Double) 52.72/30.41 new_esEs9(x0, x1, ty_Int) 52.72/30.41 new_esEs11(x0, x1, ty_Double) 52.72/30.41 new_esEs40(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_compare27(x0, x1, True, x2) 52.72/30.41 new_esEs33(x0, x1, ty_Double) 52.72/30.41 new_lt6(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_primCmpNat0(Succ(x0), Succ(x1)) 52.72/30.41 new_esEs4(x0, x1, ty_@0) 52.72/30.41 new_ltEs22(x0, x1, ty_Integer) 52.72/30.41 new_esEs31(x0, x1, ty_@0) 52.72/30.41 new_esEs8(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_compare7(False, True) 52.72/30.41 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_compare7(True, False) 52.72/30.41 new_lt10(x0, x1, x2) 52.72/30.41 new_esEs24(Just(x0), Just(x1), ty_@0) 52.72/30.41 new_ltEs24(x0, x1, ty_Int) 52.72/30.41 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 52.72/30.41 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 52.72/30.41 new_gt9(x0, x1) 52.72/30.41 new_compare8(x0, x1) 52.72/30.41 new_esEs39(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_ltEs22(x0, x1, ty_Bool) 52.72/30.41 new_esEs7(x0, x1, ty_Float) 52.72/30.41 new_lt6(x0, x1, ty_Bool) 52.72/30.41 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_ltEs14(Just(x0), Just(x1), ty_Ordering) 52.72/30.41 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_lt21(x0, x1, app(ty_[], x2)) 52.72/30.41 new_compare29(Nothing, Just(x0), x1) 52.72/30.41 new_lt6(x0, x1, ty_Double) 52.72/30.41 new_lt20(x0, x1, app(ty_[], x2)) 52.72/30.41 new_compare6(@2(x0, x1), @2(x2, x3), x4, x5) 52.72/30.41 new_esEs36(x0, x1, ty_@0) 52.72/30.41 new_lt6(x0, x1, app(ty_[], x2)) 52.72/30.41 new_esEs9(x0, x1, ty_Char) 52.72/30.41 new_ltEs15(Right(x0), Left(x1), x2, x3) 52.72/30.41 new_ltEs15(Left(x0), Right(x1), x2, x3) 52.72/30.41 new_esEs4(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_esEs14(x0, x1, ty_Ordering) 52.72/30.41 new_lt24(x0, x1, ty_Bool) 52.72/30.41 new_lt21(x0, x1, ty_Double) 52.72/30.41 new_esEs39(x0, x1, ty_Bool) 52.72/30.41 new_compare27(x0, x1, False, x2) 52.72/30.41 new_esEs25(Left(x0), Left(x1), ty_Double, x2) 52.72/30.41 new_esEs32(x0, x1, ty_Ordering) 52.72/30.41 new_gt7(x0, x1) 52.72/30.41 new_esEs33(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_esEs13(x0, x1, ty_Ordering) 52.72/30.41 new_compare16(Right(x0), Right(x1), x2, x3) 52.72/30.41 new_compare30(x0, x1, ty_Float) 52.72/30.41 new_esEs25(Left(x0), Left(x1), ty_Char, x2) 52.72/30.41 new_ltEs8(x0, x1) 52.72/30.41 new_ltEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 52.72/30.41 new_ltEs16(LT, GT) 52.72/30.41 new_ltEs16(GT, LT) 52.72/30.41 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_lt24(x0, x1, ty_Double) 52.72/30.41 new_lt24(x0, x1, ty_Char) 52.72/30.41 new_lt14(x0, x1) 52.72/30.41 new_lt24(x0, x1, ty_Int) 52.72/30.41 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_lt6(x0, x1, ty_Int) 52.72/30.41 new_primCmpInt(Pos(Zero), Pos(Zero)) 52.72/30.41 new_esEs25(Left(x0), Left(x1), ty_Int, x2) 52.72/30.41 new_compare0([], [], x0) 52.72/30.41 new_primCompAux0(x0, x1, x2, x3) 52.72/30.41 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_asAs(True, x0) 52.72/30.41 new_ltEs6(x0, x1, ty_Char) 52.72/30.41 new_esEs9(x0, x1, ty_Bool) 52.72/30.41 new_esEs29(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_esEs14(x0, x1, app(ty_[], x2)) 52.72/30.41 new_lt16(x0, x1, x2, x3) 52.72/30.41 new_compare30(x0, x1, ty_Integer) 52.72/30.41 new_ltEs14(Nothing, Nothing, x0) 52.72/30.41 new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.72/30.41 new_ltEs24(x0, x1, ty_@0) 52.72/30.41 new_esEs25(Right(x0), Right(x1), x2, ty_Double) 52.72/30.41 new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_esEs10(x0, x1, ty_Integer) 52.72/30.41 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_esEs6(x0, x1, ty_Double) 52.72/30.41 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_esEs17(x0, x1) 52.72/30.41 new_compare29(Just(x0), Nothing, x1) 52.72/30.41 new_lt23(x0, x1, ty_Ordering) 52.72/30.41 new_esEs37(x0, x1, ty_Ordering) 52.72/30.41 new_lt5(x0, x1, ty_Integer) 52.72/30.41 new_compare26(x0, x1, x2, x3, True, x4, x5) 52.72/30.41 new_esEs28(:%(x0, x1), :%(x2, x3), x4) 52.72/30.41 new_compare18(EQ, EQ) 52.72/30.41 new_lt5(x0, x1, ty_Bool) 52.72/30.41 new_gt(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_esEs38(x0, x1, ty_Integer) 52.72/30.41 new_compare30(x0, x1, ty_Bool) 52.72/30.41 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_esEs34(x0, x1, ty_Int) 52.72/30.41 new_esEs37(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_esEs7(x0, x1, ty_Integer) 52.72/30.41 new_esEs12(EQ) 52.72/30.41 new_esEs16(Char(x0), Char(x1)) 52.72/30.41 new_ltEs22(x0, x1, ty_@0) 52.72/30.41 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_esEs37(x0, x1, ty_Double) 52.72/30.41 new_lt4(x0, x1) 52.72/30.41 new_gt1(x0, x1, x2, x3) 52.72/30.41 new_compare16(Left(x0), Left(x1), x2, x3) 52.72/30.41 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.41 new_esEs41(EQ) 52.72/30.41 new_ltEs22(x0, x1, app(ty_[], x2)) 52.72/30.41 new_lt21(x0, x1, ty_Ordering) 52.72/30.41 new_esEs33(x0, x1, app(ty_[], x2)) 52.72/30.41 new_gt2(x0, x1) 52.72/30.41 new_lt9(x0, x1) 52.72/30.41 new_esEs38(x0, x1, ty_Bool) 52.72/30.41 new_ltEs6(x0, x1, ty_Float) 52.72/30.41 new_esEs33(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_esEs40(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_ltEs23(x0, x1, ty_Double) 52.72/30.41 new_esEs33(x0, x1, ty_Ordering) 52.72/30.41 new_esEs38(x0, x1, ty_Float) 52.72/30.41 new_ltEs19(x0, x1, ty_Int) 52.72/30.41 new_ltEs6(x0, x1, ty_Bool) 52.72/30.41 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) 52.72/30.41 new_primCompAux00(x0, LT) 52.72/30.41 new_esEs38(x0, x1, ty_Int) 52.72/30.41 new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 52.72/30.41 new_esEs30(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_esEs39(x0, x1, app(ty_Ratio, x2)) 52.72/30.41 new_primMulInt(Pos(x0), Neg(x1)) 52.72/30.41 new_primMulInt(Neg(x0), Pos(x1)) 52.72/30.41 new_lt21(x0, x1, app(ty_Maybe, x2)) 52.72/30.41 new_compare28(x0, x1, False, x2, x3) 52.72/30.41 new_esEs19(@0, @0) 52.72/30.41 new_ltEs19(x0, x1, ty_Char) 52.72/30.41 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.41 new_lt5(x0, x1, ty_Char) 52.72/30.41 new_ltEs6(x0, x1, ty_Int) 52.72/30.41 new_esEs10(x0, x1, ty_Bool) 52.72/30.41 new_lt19(x0, x1, x2) 52.72/30.41 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.41 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 52.72/30.41 new_esEs27(Double(x0, x1), Double(x2, x3)) 52.72/30.42 new_ltEs19(x0, x1, ty_Bool) 52.72/30.42 new_esEs8(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_esEs11(x0, x1, ty_Ordering) 52.72/30.42 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 52.72/30.42 new_esEs7(x0, x1, ty_Bool) 52.72/30.42 new_esEs4(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_lt22(x0, x1, app(ty_[], x2)) 52.72/30.42 new_esEs10(x0, x1, ty_Char) 52.72/30.42 new_primEqNat0(Zero, Succ(x0)) 52.72/30.42 new_primCmpNat0(Zero, Zero) 52.72/30.42 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 52.72/30.42 new_esEs14(x0, x1, ty_Double) 52.72/30.42 new_esEs10(x0, x1, app(ty_[], x2)) 52.72/30.42 new_lt22(x0, x1, ty_Double) 52.72/30.42 new_esEs38(x0, x1, ty_Char) 52.72/30.42 52.72/30.42 We have to consider all minimal (P,Q,R)-chains. 52.72/30.42 ---------------------------------------- 52.72/30.42 52.72/30.42 (21) QDPSizeChangeProof (EQUIVALENT) 52.72/30.42 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. 52.72/30.42 52.72/30.42 From the DPs we obtained the following set of size-change graphs: 52.72/30.42 *new_addToFM_C(Branch(yvy50, yvy51, yvy52, yvy53, yvy54), yvy40, yvy41, bd, be) -> new_addToFM_C2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy40, yvy41, new_lt24(yvy40, yvy50, bd), bd, be) 52.72/30.42 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 7, 4 >= 9, 5 >= 10 52.72/30.42 52.72/30.42 52.72/30.42 *new_addToFM_C2(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, False, h, ba) -> new_addToFM_C1(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, new_gt(yvy81, yvy76, h), h, ba) 52.72/30.42 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10 52.72/30.42 52.72/30.42 52.72/30.42 *new_addToFM_C1(yvy106, yvy107, yvy108, yvy109, yvy110, yvy111, yvy112, True, bb, bc) -> new_addToFM_C(yvy110, yvy111, yvy112, bb, bc) 52.72/30.42 The graph contains the following edges 5 >= 1, 6 >= 2, 7 >= 3, 9 >= 4, 10 >= 5 52.72/30.42 52.72/30.42 52.72/30.42 *new_addToFM_C2(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, True, h, ba) -> new_addToFM_C(yvy79, yvy81, yvy82, h, ba) 52.72/30.42 The graph contains the following edges 4 >= 1, 6 >= 2, 7 >= 3, 9 >= 4, 10 >= 5 52.72/30.42 52.72/30.42 52.72/30.42 ---------------------------------------- 52.72/30.42 52.72/30.42 (22) 52.72/30.42 YES 52.72/30.42 52.72/30.42 ---------------------------------------- 52.72/30.42 52.72/30.42 (23) 52.72/30.42 Obligation: 52.72/30.42 Q DP problem: 52.72/30.42 The TRS P consists of the following rules: 52.72/30.42 52.72/30.42 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) 52.72/30.42 new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) 52.72/30.42 new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) 52.72/30.42 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy53, h, ba) 52.72/30.42 52.72/30.42 The TRS R consists of the following rules: 52.72/30.42 52.72/30.42 new_primCmpNat0(Succ(yvy4000), Zero) -> GT 52.72/30.42 new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) 52.72/30.42 new_primPlusNat0(Zero, Succ(yvy21000)) -> Succ(yvy21000) 52.72/30.42 new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT 52.72/30.42 new_primCmpNat0(Zero, Zero) -> EQ 52.72/30.42 new_primMulNat0(Zero, Zero) -> Zero 52.72/30.42 new_lt9(yvy40, yvy30) -> new_esEs12(new_compare8(yvy40, yvy30)) 52.72/30.42 new_primPlusNat0(Zero, Zero) -> Zero 52.72/30.42 new_esEs12(GT) -> False 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT 52.72/30.42 new_esEs12(EQ) -> False 52.72/30.42 new_sr1(Pos(yvy930)) -> Pos(new_primMulNat1(yvy930)) 52.72/30.42 new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT 52.72/30.42 new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) 52.72/30.42 new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 52.72/30.42 new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) 52.72/30.42 new_primMulNat1(Succ(yvy9300)) -> new_primPlusNat1(new_primMulNat0(Zero, Succ(yvy9300)), yvy9300) 52.72/30.42 new_primMulNat1(Zero) -> Zero 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 52.72/30.42 new_primPlusNat1(yvy270, yvy9300) -> new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(yvy270, Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)) 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT 52.72/30.42 new_sr1(Neg(yvy930)) -> Neg(new_primMulNat1(yvy930)) 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 52.72/30.42 new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 52.72/30.42 new_primMulNat0(Succ(yvy40000), Zero) -> Zero 52.72/30.42 new_primMulNat0(Zero, Succ(yvy30100)) -> Zero 52.72/30.42 new_esEs12(LT) -> True 52.72/30.42 new_compare8(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) 52.72/30.42 new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) 52.72/30.42 new_primCmpNat0(Zero, Succ(yvy3000)) -> LT 52.72/30.42 new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) 52.72/30.42 new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) 52.72/30.42 new_primPlusNat0(Succ(yvy90200), Succ(yvy21000)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21000))) 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 52.72/30.42 52.72/30.42 The set Q consists of the following terms: 52.72/30.42 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Zero)) 52.72/30.42 new_esEs12(GT) 52.72/30.42 new_primMulNat0(Succ(x0), Succ(x1)) 52.72/30.42 new_primPlusNat0(Succ(x0), Zero) 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 52.72/30.42 new_lt9(x0, x1) 52.72/30.42 new_sr1(Pos(x0)) 52.72/30.42 new_primMulNat0(Zero, Succ(x0)) 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 52.72/30.42 new_primCmpNat0(Succ(x0), Succ(x1)) 52.72/30.42 new_primMulNat1(Succ(x0)) 52.72/30.42 new_primPlusNat1(x0, x1) 52.72/30.42 new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Zero)) 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Zero)) 52.72/30.42 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 52.72/30.42 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 52.72/30.42 new_esEs12(LT) 52.72/30.42 new_primCmpNat0(Zero, Succ(x0)) 52.72/30.42 new_mkVBalBranch3Size_l(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 52.72/30.42 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 52.72/30.42 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 52.72/30.42 new_primMulNat0(Zero, Zero) 52.72/30.42 new_esEs12(EQ) 52.72/30.42 new_sizeFM(x0, x1, x2, x3, x4, x5, x6) 52.72/30.42 new_sr1(Neg(x0)) 52.72/30.42 new_primPlusNat0(Succ(x0), Succ(x1)) 52.72/30.42 new_primCmpNat0(Zero, Zero) 52.72/30.42 new_compare8(x0, x1) 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Zero)) 52.72/30.42 new_primPlusNat0(Zero, Succ(x0)) 52.72/30.42 new_primMulNat1(Zero) 52.72/30.42 new_primPlusNat0(Zero, Zero) 52.72/30.42 new_primCmpNat0(Succ(x0), Zero) 52.72/30.42 new_primMulNat0(Succ(x0), Zero) 52.72/30.42 52.72/30.42 We have to consider all minimal (P,Q,R)-chains. 52.72/30.42 ---------------------------------------- 52.72/30.42 52.72/30.42 (24) QDPOrderProof (EQUIVALENT) 52.72/30.42 We use the reduction pair processor [LPAR04,JAR06]. 52.72/30.42 52.72/30.42 52.72/30.42 The following pairs can be oriented strictly and are deleted. 52.72/30.42 52.72/30.42 new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) 52.72/30.42 The remaining pairs can at least be oriented weakly. 52.72/30.42 Used ordering: Polynomial interpretation [POLO]: 52.72/30.42 52.72/30.42 POL(Branch(x_1, x_2, x_3, x_4, x_5)) = x_1 + x_2 + x_3 + x_5 52.72/30.42 POL(EQ) = 0 52.72/30.42 POL(False) = 0 52.72/30.42 POL(GT) = 0 52.72/30.42 POL(LT) = 1 52.72/30.42 POL(Neg(x_1)) = 1 52.72/30.42 POL(Pos(x_1)) = 1 52.72/30.42 POL(Succ(x_1)) = 0 52.72/30.42 POL(True) = 1 52.72/30.42 POL(Zero) = 0 52.72/30.42 POL(new_compare8(x_1, x_2)) = x_2 52.72/30.42 POL(new_esEs12(x_1)) = x_1 52.72/30.42 POL(new_lt9(x_1, x_2)) = x_2 52.72/30.42 POL(new_mkVBalBranch(x_1, x_2, x_3, x_4, x_5, x_6)) = x_3 + x_5 + x_6 52.72/30.42 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_13 + x_14 + x_15 52.72/30.42 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_8 52.72/30.42 POL(new_mkVBalBranch3Size_l(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_6 + x_7 + x_8 52.72/30.42 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_8 + x_9 52.72/30.42 POL(new_primCmpInt(x_1, x_2)) = x_2 52.72/30.42 POL(new_primCmpNat0(x_1, x_2)) = 1 52.72/30.42 POL(new_primMulNat0(x_1, x_2)) = x_1 + x_2 52.72/30.42 POL(new_primMulNat1(x_1)) = 0 52.72/30.42 POL(new_primPlusNat0(x_1, x_2)) = x_2 52.72/30.42 POL(new_primPlusNat1(x_1, x_2)) = 1 + x_2 52.72/30.42 POL(new_sizeFM(x_1, x_2, x_3, x_4, x_5, x_6, x_7)) = x_3 52.72/30.42 POL(new_sr1(x_1)) = 0 52.72/30.42 52.72/30.42 The following usable rules [FROCOS05] with respect to the argument filtering of the ordering [JAR06] were oriented: 52.72/30.42 52.72/30.42 new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) 52.72/30.42 new_lt9(yvy40, yvy30) -> new_esEs12(new_compare8(yvy40, yvy30)) 52.72/30.42 new_compare8(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) 52.72/30.42 new_esEs12(GT) -> False 52.72/30.42 new_esEs12(EQ) -> False 52.72/30.42 new_esEs12(LT) -> True 52.72/30.42 new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT 52.72/30.42 new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 52.72/30.42 new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) 52.72/30.42 new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 52.72/30.42 new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) 52.72/30.42 new_primCmpNat0(Zero, Succ(yvy3000)) -> LT 52.72/30.42 new_primCmpNat0(Succ(yvy4000), Zero) -> GT 52.72/30.42 new_primCmpNat0(Zero, Zero) -> EQ 52.72/30.42 new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 52.72/30.42 52.72/30.42 52.72/30.42 ---------------------------------------- 52.72/30.42 52.72/30.42 (25) 52.72/30.42 Obligation: 52.72/30.42 Q DP problem: 52.72/30.42 The TRS P consists of the following rules: 52.72/30.42 52.72/30.42 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) 52.72/30.42 new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) 52.72/30.42 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy53, h, ba) 52.72/30.42 52.72/30.42 The TRS R consists of the following rules: 52.72/30.42 52.72/30.42 new_primCmpNat0(Succ(yvy4000), Zero) -> GT 52.72/30.42 new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) 52.72/30.42 new_primPlusNat0(Zero, Succ(yvy21000)) -> Succ(yvy21000) 52.72/30.42 new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT 52.72/30.42 new_primCmpNat0(Zero, Zero) -> EQ 52.72/30.42 new_primMulNat0(Zero, Zero) -> Zero 52.72/30.42 new_lt9(yvy40, yvy30) -> new_esEs12(new_compare8(yvy40, yvy30)) 52.72/30.42 new_primPlusNat0(Zero, Zero) -> Zero 52.72/30.42 new_esEs12(GT) -> False 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT 52.72/30.42 new_esEs12(EQ) -> False 52.72/30.42 new_sr1(Pos(yvy930)) -> Pos(new_primMulNat1(yvy930)) 52.72/30.42 new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT 52.72/30.42 new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) 52.72/30.42 new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 52.72/30.42 new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) 52.72/30.42 new_primMulNat1(Succ(yvy9300)) -> new_primPlusNat1(new_primMulNat0(Zero, Succ(yvy9300)), yvy9300) 52.72/30.42 new_primMulNat1(Zero) -> Zero 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 52.72/30.42 new_primPlusNat1(yvy270, yvy9300) -> new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(yvy270, Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)) 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT 52.72/30.42 new_sr1(Neg(yvy930)) -> Neg(new_primMulNat1(yvy930)) 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 52.72/30.42 new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 52.72/30.42 new_primMulNat0(Succ(yvy40000), Zero) -> Zero 52.72/30.42 new_primMulNat0(Zero, Succ(yvy30100)) -> Zero 52.72/30.42 new_esEs12(LT) -> True 52.72/30.42 new_compare8(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) 52.72/30.42 new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) 52.72/30.42 new_primCmpNat0(Zero, Succ(yvy3000)) -> LT 52.72/30.42 new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) 52.72/30.42 new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) 52.72/30.42 new_primPlusNat0(Succ(yvy90200), Succ(yvy21000)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21000))) 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 52.72/30.42 52.72/30.42 The set Q consists of the following terms: 52.72/30.42 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Zero)) 52.72/30.42 new_esEs12(GT) 52.72/30.42 new_primMulNat0(Succ(x0), Succ(x1)) 52.72/30.42 new_primPlusNat0(Succ(x0), Zero) 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 52.72/30.42 new_lt9(x0, x1) 52.72/30.42 new_sr1(Pos(x0)) 52.72/30.42 new_primMulNat0(Zero, Succ(x0)) 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 52.72/30.42 new_primCmpNat0(Succ(x0), Succ(x1)) 52.72/30.42 new_primMulNat1(Succ(x0)) 52.72/30.42 new_primPlusNat1(x0, x1) 52.72/30.42 new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Zero)) 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Zero)) 52.72/30.42 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 52.72/30.42 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 52.72/30.42 new_esEs12(LT) 52.72/30.42 new_primCmpNat0(Zero, Succ(x0)) 52.72/30.42 new_mkVBalBranch3Size_l(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 52.72/30.42 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 52.72/30.42 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 52.72/30.42 new_primMulNat0(Zero, Zero) 52.72/30.42 new_esEs12(EQ) 52.72/30.42 new_sizeFM(x0, x1, x2, x3, x4, x5, x6) 52.72/30.42 new_sr1(Neg(x0)) 52.72/30.42 new_primPlusNat0(Succ(x0), Succ(x1)) 52.72/30.42 new_primCmpNat0(Zero, Zero) 52.72/30.42 new_compare8(x0, x1) 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Zero)) 52.72/30.42 new_primPlusNat0(Zero, Succ(x0)) 52.72/30.42 new_primMulNat1(Zero) 52.72/30.42 new_primPlusNat0(Zero, Zero) 52.72/30.42 new_primCmpNat0(Succ(x0), Zero) 52.72/30.42 new_primMulNat0(Succ(x0), Zero) 52.72/30.42 52.72/30.42 We have to consider all minimal (P,Q,R)-chains. 52.72/30.42 ---------------------------------------- 52.72/30.42 52.72/30.42 (26) DependencyGraphProof (EQUIVALENT) 52.72/30.42 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 1 less node. 52.72/30.42 ---------------------------------------- 52.72/30.42 52.72/30.42 (27) 52.72/30.42 Obligation: 52.72/30.42 Q DP problem: 52.72/30.42 The TRS P consists of the following rules: 52.72/30.42 52.72/30.42 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy53, h, ba) 52.72/30.42 new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) 52.72/30.42 52.72/30.42 The TRS R consists of the following rules: 52.72/30.42 52.72/30.42 new_primCmpNat0(Succ(yvy4000), Zero) -> GT 52.72/30.42 new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) 52.72/30.42 new_primPlusNat0(Zero, Succ(yvy21000)) -> Succ(yvy21000) 52.72/30.42 new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT 52.72/30.42 new_primCmpNat0(Zero, Zero) -> EQ 52.72/30.42 new_primMulNat0(Zero, Zero) -> Zero 52.72/30.42 new_lt9(yvy40, yvy30) -> new_esEs12(new_compare8(yvy40, yvy30)) 52.72/30.42 new_primPlusNat0(Zero, Zero) -> Zero 52.72/30.42 new_esEs12(GT) -> False 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT 52.72/30.42 new_esEs12(EQ) -> False 52.72/30.42 new_sr1(Pos(yvy930)) -> Pos(new_primMulNat1(yvy930)) 52.72/30.42 new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT 52.72/30.42 new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) 52.72/30.42 new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 52.72/30.42 new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) 52.72/30.42 new_primMulNat1(Succ(yvy9300)) -> new_primPlusNat1(new_primMulNat0(Zero, Succ(yvy9300)), yvy9300) 52.72/30.42 new_primMulNat1(Zero) -> Zero 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 52.72/30.42 new_primPlusNat1(yvy270, yvy9300) -> new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(yvy270, Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)) 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT 52.72/30.42 new_sr1(Neg(yvy930)) -> Neg(new_primMulNat1(yvy930)) 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 52.72/30.42 new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 52.72/30.42 new_primMulNat0(Succ(yvy40000), Zero) -> Zero 52.72/30.42 new_primMulNat0(Zero, Succ(yvy30100)) -> Zero 52.72/30.42 new_esEs12(LT) -> True 52.72/30.42 new_compare8(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) 52.72/30.42 new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) 52.72/30.42 new_primCmpNat0(Zero, Succ(yvy3000)) -> LT 52.72/30.42 new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) 52.72/30.42 new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) 52.72/30.42 new_primPlusNat0(Succ(yvy90200), Succ(yvy21000)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21000))) 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 52.72/30.42 52.72/30.42 The set Q consists of the following terms: 52.72/30.42 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Zero)) 52.72/30.42 new_esEs12(GT) 52.72/30.42 new_primMulNat0(Succ(x0), Succ(x1)) 52.72/30.42 new_primPlusNat0(Succ(x0), Zero) 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 52.72/30.42 new_lt9(x0, x1) 52.72/30.42 new_sr1(Pos(x0)) 52.72/30.42 new_primMulNat0(Zero, Succ(x0)) 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 52.72/30.42 new_primCmpNat0(Succ(x0), Succ(x1)) 52.72/30.42 new_primMulNat1(Succ(x0)) 52.72/30.42 new_primPlusNat1(x0, x1) 52.72/30.42 new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Zero)) 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Zero)) 52.72/30.42 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 52.72/30.42 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 52.72/30.42 new_esEs12(LT) 52.72/30.42 new_primCmpNat0(Zero, Succ(x0)) 52.72/30.42 new_mkVBalBranch3Size_l(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 52.72/30.42 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 52.72/30.42 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 52.72/30.42 new_primMulNat0(Zero, Zero) 52.72/30.42 new_esEs12(EQ) 52.72/30.42 new_sizeFM(x0, x1, x2, x3, x4, x5, x6) 52.72/30.42 new_sr1(Neg(x0)) 52.72/30.42 new_primPlusNat0(Succ(x0), Succ(x1)) 52.72/30.42 new_primCmpNat0(Zero, Zero) 52.72/30.42 new_compare8(x0, x1) 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Zero)) 52.72/30.42 new_primPlusNat0(Zero, Succ(x0)) 52.72/30.42 new_primMulNat1(Zero) 52.72/30.42 new_primPlusNat0(Zero, Zero) 52.72/30.42 new_primCmpNat0(Succ(x0), Zero) 52.72/30.42 new_primMulNat0(Succ(x0), Zero) 52.72/30.42 52.72/30.42 We have to consider all minimal (P,Q,R)-chains. 52.72/30.42 ---------------------------------------- 52.72/30.42 52.72/30.42 (28) QDPSizeChangeProof (EQUIVALENT) 52.72/30.42 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. 52.72/30.42 52.72/30.42 From the DPs we obtained the following set of size-change graphs: 52.72/30.42 *new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) 52.72/30.42 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 52.72/30.42 52.72/30.42 52.72/30.42 *new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy53, h, ba) 52.72/30.42 The graph contains the following edges 11 >= 1, 12 >= 2, 4 >= 4, 14 >= 5, 15 >= 6 52.72/30.42 52.72/30.42 52.72/30.42 ---------------------------------------- 52.72/30.42 52.72/30.42 (29) 52.72/30.42 YES 52.72/30.42 52.72/30.42 ---------------------------------------- 52.72/30.42 52.72/30.42 (30) 52.72/30.42 Obligation: 52.72/30.42 Q DP problem: 52.72/30.42 The TRS P consists of the following rules: 52.72/30.42 52.72/30.42 new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, bcg), app(app(app(ty_@3, bdc), bdd), bde))) -> new_ltEs1(yvy1651, yvy1661, bdc, bdd, bde) 52.72/30.42 new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, app(app(ty_@2, bff), bfg), bec) -> new_lt0(yvy1651, yvy1661, bff, bfg) 52.72/30.42 new_compare22(Left(yvy1650), Left(yvy1660), False, app(app(ty_Either, app(ty_[], cah)), cba)) -> new_ltEs(yvy1650, yvy1660, cah) 52.72/30.42 new_compare20(yvy190, yvy191, yvy192, yvy193, False, dg, app(app(ty_Either, eg), eh)) -> new_ltEs3(yvy191, yvy193, eg, eh) 52.72/30.42 new_ltEs(yvy165, yvy166, bbd) -> new_compare(yvy165, yvy166, bbd) 52.72/30.42 new_compare22(Left(yvy1650), Left(yvy1660), False, app(app(ty_Either, app(ty_Maybe, cbg)), cba)) -> new_ltEs2(yvy1650, yvy1660, cbg) 52.72/30.42 new_compare22(Left(yvy1650), Left(yvy1660), False, app(app(ty_Either, app(app(ty_@2, cbb), cbc)), cba)) -> new_ltEs0(yvy1650, yvy1660, cbb, cbc) 52.72/30.42 new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), app(ty_[], bfe)), bec)) -> new_lt(yvy1651, yvy1661, bfe) 52.72/30.42 new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), beb), app(app(ty_@2, bgg), bgh))) -> new_ltEs0(yvy1652, yvy1662, bgg, bgh) 52.72/30.42 new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, ff, app(app(ty_@2, bac), bad)) -> new_ltEs0(yvy156, yvy159, bac, bad) 52.72/30.42 new_ltEs2(Just(yvy1650), Just(yvy1660), app(app(ty_@2, bhh), caa)) -> new_ltEs0(yvy1650, yvy1660, bhh, caa) 52.72/30.42 new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, app(app(ty_@2, bbg), bbh)), bbf)) -> new_lt0(yvy1650, yvy1660, bbg, bbh) 52.72/30.42 new_compare23(yvy172, yvy173, False, app(app(ty_@2, cdh), cea), cdg) -> new_ltEs0(yvy172, yvy173, cdh, cea) 52.72/30.42 new_compare22(Right(yvy1650), Right(yvy1660), False, app(app(ty_Either, ccb), app(app(app(ty_@3, ccf), ccg), cch))) -> new_ltEs1(yvy1650, yvy1660, ccf, ccg, cch) 52.72/30.42 new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), beb), app(app(app(ty_@3, bha), bhb), bhc))) -> new_ltEs1(yvy1652, yvy1662, bha, bhb, bhc) 52.72/30.42 new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, app(app(ty_@2, hb), hc), fg) -> new_lt0(yvy155, yvy158, hb, hc) 52.72/30.42 new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), bcg, app(app(ty_@2, bda), bdb)) -> new_ltEs0(yvy1651, yvy1661, bda, bdb) 52.72/30.42 new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, app(app(app(ty_@3, bfh), bga), bgb), bec) -> new_lt1(yvy1651, yvy1661, bfh, bga, bgb) 52.72/30.42 new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), app(app(app(ty_@3, bca), bcb), bcc), bbf) -> new_lt1(yvy1650, yvy1660, bca, bcb, bcc) 52.72/30.42 new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), app(app(ty_Either, bce), bcf), bbf) -> new_lt3(yvy1650, yvy1660, bce, bcf) 52.72/30.42 new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), bcg, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs1(yvy1651, yvy1661, bdc, bdd, bde) 52.72/30.42 new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, bcg), app(app(ty_Either, bdg), bdh))) -> new_ltEs3(yvy1651, yvy1661, bdg, bdh) 52.72/30.42 new_compare22(Right(yvy1650), Right(yvy1660), False, app(app(ty_Either, ccb), app(ty_[], ccc))) -> new_ltEs(yvy1650, yvy1660, ccc) 52.72/30.42 new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, app(ty_[], bfe), bec) -> new_lt(yvy1651, yvy1661, bfe) 52.72/30.42 new_compare20(yvy190, yvy191, yvy192, yvy193, False, app(ty_[], cd), ce) -> new_lt(yvy190, yvy192, cd) 52.72/30.42 new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, app(ty_Maybe, bgc), bec) -> new_lt2(yvy1651, yvy1661, bgc) 52.72/30.42 new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, ff, app(app(app(ty_@3, bae), baf), bag)) -> new_ltEs1(yvy156, yvy159, bae, baf, bag) 52.72/30.42 new_ltEs3(Left(yvy1650), Left(yvy1660), app(app(ty_@2, cbb), cbc), cba) -> new_ltEs0(yvy1650, yvy1660, cbb, cbc) 52.72/30.42 new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, bcg), app(app(ty_@2, bda), bdb))) -> new_ltEs0(yvy1651, yvy1661, bda, bdb) 52.72/30.42 new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, app(app(ty_Either, bgd), bge), bec) -> new_lt3(yvy1651, yvy1661, bgd, bge) 52.72/30.42 new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, bcg), app(ty_[], bch))) -> new_ltEs(yvy1651, yvy1661, bch) 52.72/30.42 new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, app(ty_[], bbe)), bbf)) -> new_lt(yvy1650, yvy1660, bbe) 52.72/30.42 new_compare22(Left(yvy1650), Left(yvy1660), False, app(app(ty_Either, app(app(ty_Either, cbh), cca)), cba)) -> new_ltEs3(yvy1650, yvy1660, cbh, cca) 52.72/30.42 new_ltEs3(Left(yvy1650), Left(yvy1660), app(ty_Maybe, cbg), cba) -> new_ltEs2(yvy1650, yvy1660, cbg) 52.72/30.42 new_ltEs3(Right(yvy1650), Right(yvy1660), ccb, app(ty_[], ccc)) -> new_ltEs(yvy1650, yvy1660, ccc) 52.72/30.42 new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), app(app(ty_@2, bbg), bbh), bbf) -> new_lt0(yvy1650, yvy1660, bbg, bbh) 52.72/30.42 new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), app(ty_Maybe, bfa), beb, bec) -> new_lt2(yvy1650, yvy1660, bfa) 52.72/30.42 new_lt2(yvy40, yvy30, bbc) -> new_compare3(yvy40, yvy30, bbc) 52.72/30.42 new_compare22(Right(yvy1650), Right(yvy1660), False, app(app(ty_Either, ccb), app(app(ty_Either, cdb), cdc))) -> new_ltEs3(yvy1650, yvy1660, cdb, cdc) 52.72/30.42 new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, app(ty_[], bea)), beb), bec)) -> new_lt(yvy1650, yvy1660, bea) 52.72/30.42 new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), app(app(app(ty_@3, bef), beg), beh), beb, bec) -> new_lt1(yvy1650, yvy1660, bef, beg, beh) 52.72/30.42 new_compare24(yvy179, yvy180, False, ceh, app(ty_[], cfa)) -> new_ltEs(yvy179, yvy180, cfa) 52.72/30.42 new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, beb, app(ty_Maybe, bhd)) -> new_ltEs2(yvy1652, yvy1662, bhd) 52.72/30.42 new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, app(app(app(ty_@3, bef), beg), beh)), beb), bec)) -> new_lt1(yvy1650, yvy1660, bef, beg, beh) 52.72/30.42 new_ltEs3(Right(yvy1650), Right(yvy1660), ccb, app(ty_Maybe, cda)) -> new_ltEs2(yvy1650, yvy1660, cda) 52.72/30.42 new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, app(app(app(ty_@3, gb), gc), gd), ff, fg) -> new_lt1(yvy154, yvy157, gb, gc, gd) 52.72/30.42 new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, ff, app(ty_Maybe, bah)) -> new_ltEs2(yvy156, yvy159, bah) 52.72/30.42 new_compare23(yvy172, yvy173, False, app(ty_[], cdf), cdg) -> new_ltEs(yvy172, yvy173, cdf) 52.72/30.42 new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, ff, app(ty_[], bab)) -> new_ltEs(yvy156, yvy159, bab) 52.72/30.42 new_ltEs2(Just(yvy1650), Just(yvy1660), app(ty_[], bhg)) -> new_ltEs(yvy1650, yvy1660, bhg) 52.72/30.42 new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), beb), app(ty_[], bgf))) -> new_ltEs(yvy1652, yvy1662, bgf) 52.72/30.42 new_ltEs2(Just(yvy1650), Just(yvy1660), app(ty_Maybe, cae)) -> new_ltEs2(yvy1650, yvy1660, cae) 52.72/30.42 new_compare24(yvy179, yvy180, False, ceh, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs1(yvy179, yvy180, cfd, cfe, cff) 52.72/30.42 new_compare3(Just(yvy400), Just(yvy300), bbc) -> new_compare22(yvy400, yvy300, new_esEs9(yvy400, yvy300, bbc), bbc) 52.72/30.42 new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), app(app(ty_Either, bfb), bfc), beb, bec) -> new_lt3(yvy1650, yvy1660, bfb, bfc) 52.72/30.42 new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, beb, app(app(ty_@2, bgg), bgh)) -> new_ltEs0(yvy1652, yvy1662, bgg, bgh) 52.72/30.42 new_compare22(Right(yvy1650), Right(yvy1660), False, app(app(ty_Either, ccb), app(app(ty_@2, ccd), cce))) -> new_ltEs0(yvy1650, yvy1660, ccd, cce) 52.72/30.42 new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, app(ty_Maybe, hg), fg) -> new_lt2(yvy155, yvy158, hg) 52.72/30.42 new_compare22(Just(yvy1650), Just(yvy1660), False, app(ty_Maybe, app(ty_[], bhg))) -> new_ltEs(yvy1650, yvy1660, bhg) 52.72/30.42 new_ltEs3(Left(yvy1650), Left(yvy1660), app(ty_[], cah), cba) -> new_ltEs(yvy1650, yvy1660, cah) 52.72/30.42 new_compare24(yvy179, yvy180, False, ceh, app(app(ty_Either, cfh), cga)) -> new_ltEs3(yvy179, yvy180, cfh, cga) 52.72/30.42 new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, app(app(app(ty_@3, bca), bcb), bcc)), bbf)) -> new_lt1(yvy1650, yvy1660, bca, bcb, bcc) 52.72/30.42 new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), bcg, app(ty_Maybe, bdf)) -> new_ltEs2(yvy1651, yvy1661, bdf) 52.72/30.42 new_compare22(Just(yvy1650), Just(yvy1660), False, app(ty_Maybe, app(app(app(ty_@3, cab), cac), cad))) -> new_ltEs1(yvy1650, yvy1660, cab, cac, cad) 52.72/30.42 new_ltEs3(Left(yvy1650), Left(yvy1660), app(app(ty_Either, cbh), cca), cba) -> new_ltEs3(yvy1650, yvy1660, cbh, cca) 52.72/30.42 new_primCompAux(yvy400, yvy300, yvy115, app(ty_Maybe, bg)) -> new_compare3(yvy400, yvy300, bg) 52.72/30.42 new_compare20(yvy190, yvy191, yvy192, yvy193, False, app(app(ty_@2, cf), cg), ce) -> new_lt0(yvy190, yvy192, cf, cg) 52.72/30.42 new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, app(app(ty_@2, bed), bee)), beb), bec)) -> new_lt0(yvy1650, yvy1660, bed, bee) 52.72/30.42 new_compare22(yvy165, yvy166, False, app(ty_[], bbd)) -> new_compare(yvy165, yvy166, bbd) 52.72/30.42 new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), app(ty_[], bbe), bbf) -> new_lt(yvy1650, yvy1660, bbe) 52.72/30.42 new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, app(app(ty_Either, gf), gg), ff, fg) -> new_lt3(yvy154, yvy157, gf, gg) 52.72/30.42 new_compare23(yvy172, yvy173, False, app(ty_Maybe, cee), cdg) -> new_ltEs2(yvy172, yvy173, cee) 52.72/30.42 new_compare24(yvy179, yvy180, False, ceh, app(ty_Maybe, cfg)) -> new_ltEs2(yvy179, yvy180, cfg) 52.72/30.42 new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), app(ty_Maybe, bgc)), bec)) -> new_lt2(yvy1651, yvy1661, bgc) 52.72/30.42 new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), app(app(ty_Either, bgd), bge)), bec)) -> new_lt3(yvy1651, yvy1661, bgd, bge) 52.72/30.42 new_ltEs3(Right(yvy1650), Right(yvy1660), ccb, app(app(ty_@2, ccd), cce)) -> new_ltEs0(yvy1650, yvy1660, ccd, cce) 52.72/30.42 new_compare23(yvy172, yvy173, False, app(app(app(ty_@3, ceb), cec), ced), cdg) -> new_ltEs1(yvy172, yvy173, ceb, cec, ced) 52.72/30.42 new_ltEs3(Right(yvy1650), Right(yvy1660), ccb, app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs1(yvy1650, yvy1660, ccf, ccg, cch) 52.72/30.42 new_compare22(Just(yvy1650), Just(yvy1660), False, app(ty_Maybe, app(ty_Maybe, cae))) -> new_ltEs2(yvy1650, yvy1660, cae) 52.72/30.42 new_primCompAux(yvy400, yvy300, yvy115, app(app(ty_Either, bh), ca)) -> new_compare4(yvy400, yvy300, bh, ca) 52.72/30.42 new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, ff, app(app(ty_Either, bba), bbb)) -> new_ltEs3(yvy156, yvy159, bba, bbb) 52.72/30.42 new_compare1(@2(yvy400, yvy401), @2(yvy300, yvy301), cb, cc) -> new_compare20(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs5(yvy400, yvy300, cb), new_esEs4(yvy401, yvy301, cc)), cb, cc) 52.72/30.42 new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, beb, app(ty_[], bgf)) -> new_ltEs(yvy1652, yvy1662, bgf) 52.72/30.42 new_ltEs3(Right(yvy1650), Right(yvy1660), ccb, app(app(ty_Either, cdb), cdc)) -> new_ltEs3(yvy1650, yvy1660, cdb, cdc) 52.72/30.42 new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, app(app(ty_Either, bce), bcf)), bbf)) -> new_lt3(yvy1650, yvy1660, bce, bcf) 52.72/30.42 new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, bcg), app(ty_Maybe, bdf))) -> new_ltEs2(yvy1651, yvy1661, bdf) 52.72/30.42 new_lt0(yvy40, yvy30, cb, cc) -> new_compare1(yvy40, yvy30, cb, cc) 52.72/30.42 new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), beb), app(app(ty_Either, bhe), bhf))) -> new_ltEs3(yvy1652, yvy1662, bhe, bhf) 52.72/30.42 new_compare20(yvy190, yvy191, yvy192, yvy193, False, app(ty_Maybe, dd), ce) -> new_lt2(yvy190, yvy192, dd) 52.72/30.42 new_lt(yvy40, yvy30, h) -> new_compare(yvy40, yvy30, h) 52.72/30.42 new_primCompAux(yvy400, yvy300, yvy115, app(app(app(ty_@3, bd), be), bf)) -> new_compare2(yvy400, yvy300, bd, be, bf) 52.72/30.42 new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, beb, app(app(ty_Either, bhe), bhf)) -> new_ltEs3(yvy1652, yvy1662, bhe, bhf) 52.72/30.42 new_compare(:(yvy400, yvy401), :(yvy300, yvy301), h) -> new_primCompAux(yvy400, yvy300, new_compare0(yvy401, yvy301, h), h) 52.72/30.42 new_compare20(yvy190, yvy191, yvy192, yvy193, False, dg, app(ty_[], dh)) -> new_ltEs(yvy191, yvy193, dh) 52.72/30.42 new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, app(ty_[], fd), ff, fg) -> new_lt(yvy154, yvy157, fd) 52.72/30.42 new_compare4(Right(yvy400), Right(yvy300), cdd, cde) -> new_compare24(yvy400, yvy300, new_esEs11(yvy400, yvy300, cde), cdd, cde) 52.72/30.42 new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, app(ty_Maybe, ge), ff, fg) -> new_lt2(yvy154, yvy157, ge) 52.72/30.42 new_ltEs3(Left(yvy1650), Left(yvy1660), app(app(app(ty_@3, cbd), cbe), cbf), cba) -> new_ltEs1(yvy1650, yvy1660, cbd, cbe, cbf) 52.72/30.42 new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, app(app(ty_Either, bfb), bfc)), beb), bec)) -> new_lt3(yvy1650, yvy1660, bfb, bfc) 52.72/30.42 new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), beb), app(ty_Maybe, bhd))) -> new_ltEs2(yvy1652, yvy1662, bhd) 52.72/30.42 new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), bcg, app(ty_[], bch)) -> new_ltEs(yvy1651, yvy1661, bch) 52.72/30.42 new_primCompAux(yvy400, yvy300, yvy115, app(ty_[], ba)) -> new_compare(yvy400, yvy300, ba) 52.72/30.42 new_compare23(yvy172, yvy173, False, app(app(ty_Either, cef), ceg), cdg) -> new_ltEs3(yvy172, yvy173, cef, ceg) 52.72/30.42 new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), app(app(ty_@2, bed), bee), beb, bec) -> new_lt0(yvy1650, yvy1660, bed, bee) 52.72/30.42 new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), bcg, app(app(ty_Either, bdg), bdh)) -> new_ltEs3(yvy1651, yvy1661, bdg, bdh) 52.72/30.42 new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), app(app(ty_@2, bff), bfg)), bec)) -> new_lt0(yvy1651, yvy1661, bff, bfg) 52.72/30.42 new_compare2(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), fa, fb, fc) -> new_compare21(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs8(yvy400, yvy300, fa), new_asAs(new_esEs7(yvy401, yvy301, fb), new_esEs6(yvy402, yvy302, fc))), fa, fb, fc) 52.72/30.42 new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, app(ty_Maybe, bfa)), beb), bec)) -> new_lt2(yvy1650, yvy1660, bfa) 52.72/30.42 new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, app(app(ty_Either, hh), baa), fg) -> new_lt3(yvy155, yvy158, hh, baa) 52.72/30.42 new_compare20(yvy190, yvy191, yvy192, yvy193, False, dg, app(app(ty_@2, ea), eb)) -> new_ltEs0(yvy191, yvy193, ea, eb) 52.72/30.42 new_compare22(Left(yvy1650), Left(yvy1660), False, app(app(ty_Either, app(app(app(ty_@3, cbd), cbe), cbf)), cba)) -> new_ltEs1(yvy1650, yvy1660, cbd, cbe, cbf) 52.72/30.42 new_compare22(Right(yvy1650), Right(yvy1660), False, app(app(ty_Either, ccb), app(ty_Maybe, cda))) -> new_ltEs2(yvy1650, yvy1660, cda) 52.72/30.42 new_compare20(yvy190, yvy191, yvy192, yvy193, False, dg, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs1(yvy191, yvy193, ec, ed, ee) 52.72/30.42 new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, beb, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs1(yvy1652, yvy1662, bha, bhb, bhc) 52.72/30.42 new_compare24(yvy179, yvy180, False, ceh, app(app(ty_@2, cfb), cfc)) -> new_ltEs0(yvy179, yvy180, cfb, cfc) 52.72/30.42 new_ltEs2(Just(yvy1650), Just(yvy1660), app(app(app(ty_@3, cab), cac), cad)) -> new_ltEs1(yvy1650, yvy1660, cab, cac, cad) 52.72/30.42 new_lt3(yvy40, yvy30, cdd, cde) -> new_compare4(yvy40, yvy30, cdd, cde) 52.72/30.42 new_compare(:(yvy400, yvy401), :(yvy300, yvy301), h) -> new_compare(yvy401, yvy301, h) 52.72/30.42 new_compare20(yvy190, yvy191, yvy192, yvy193, False, dg, app(ty_Maybe, ef)) -> new_ltEs2(yvy191, yvy193, ef) 52.72/30.42 new_compare22(Just(yvy1650), Just(yvy1660), False, app(ty_Maybe, app(app(ty_Either, caf), cag))) -> new_ltEs3(yvy1650, yvy1660, caf, cag) 52.72/30.42 new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), app(ty_Maybe, bcd), bbf) -> new_lt2(yvy1650, yvy1660, bcd) 52.72/30.42 new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), app(ty_[], bea), beb, bec) -> new_lt(yvy1650, yvy1660, bea) 52.72/30.42 new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, app(app(ty_@2, fh), ga), ff, fg) -> new_lt0(yvy154, yvy157, fh, ga) 52.72/30.42 new_ltEs2(Just(yvy1650), Just(yvy1660), app(app(ty_Either, caf), cag)) -> new_ltEs3(yvy1650, yvy1660, caf, cag) 52.72/30.42 new_compare20(yvy190, yvy191, yvy192, yvy193, False, app(app(app(ty_@3, da), db), dc), ce) -> new_lt1(yvy190, yvy192, da, db, dc) 52.72/30.42 new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, app(app(app(ty_@3, hd), he), hf), fg) -> new_lt1(yvy155, yvy158, hd, he, hf) 52.72/30.42 new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, app(ty_[], ha), fg) -> new_lt(yvy155, yvy158, ha) 52.72/30.42 new_primCompAux(yvy400, yvy300, yvy115, app(app(ty_@2, bb), bc)) -> new_compare1(yvy400, yvy300, bb, bc) 52.72/30.42 new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), app(app(app(ty_@3, bfh), bga), bgb)), bec)) -> new_lt1(yvy1651, yvy1661, bfh, bga, bgb) 52.72/30.42 new_compare4(Left(yvy400), Left(yvy300), cdd, cde) -> new_compare23(yvy400, yvy300, new_esEs10(yvy400, yvy300, cdd), cdd, cde) 52.72/30.42 new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, app(ty_Maybe, bcd)), bbf)) -> new_lt2(yvy1650, yvy1660, bcd) 52.72/30.42 new_compare20(yvy190, yvy191, yvy192, yvy193, False, app(app(ty_Either, de), df), ce) -> new_lt3(yvy190, yvy192, de, df) 52.72/30.42 new_lt1(yvy40, yvy30, fa, fb, fc) -> new_compare2(yvy40, yvy30, fa, fb, fc) 52.72/30.42 new_compare22(Just(yvy1650), Just(yvy1660), False, app(ty_Maybe, app(app(ty_@2, bhh), caa))) -> new_ltEs0(yvy1650, yvy1660, bhh, caa) 52.72/30.42 52.72/30.42 The TRS R consists of the following rules: 52.72/30.42 52.72/30.42 new_esEs14(yvy1650, yvy1660, ty_@0) -> new_esEs19(yvy1650, yvy1660) 52.72/30.42 new_esEs14(yvy1650, yvy1660, app(app(ty_Either, bfb), bfc)) -> new_esEs25(yvy1650, yvy1660, bfb, bfc) 52.72/30.42 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(ty_@2, dce), dcf)) -> new_esEs21(yvy4000, yvy3000, dce, dcf) 52.72/30.42 new_ltEs19(yvy179, yvy180, ty_Integer) -> new_ltEs11(yvy179, yvy180) 52.72/30.42 new_compare9(Double(yvy400, Pos(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.72/30.42 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 52.72/30.42 new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT 52.72/30.42 new_esEs14(yvy1650, yvy1660, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs22(yvy1650, yvy1660, bef, beg, beh) 52.72/30.42 new_primPlusNat0(Zero, Zero) -> Zero 52.72/30.42 new_pePe(True, yvy280) -> True 52.72/30.42 new_lt21(yvy1650, yvy1660, ty_@0) -> new_lt4(yvy1650, yvy1660) 52.72/30.42 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Int, chd) -> new_esEs17(yvy4000, yvy3000) 52.72/30.42 new_lt12(yvy40, yvy30, cb, cc) -> new_esEs12(new_compare6(yvy40, yvy30, cb, cc)) 52.72/30.42 new_ltEs19(yvy179, yvy180, ty_Float) -> new_ltEs7(yvy179, yvy180) 52.72/30.42 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_@0) -> new_ltEs4(yvy1650, yvy1660) 52.72/30.42 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(app(ty_@3, cab), cac), cad)) -> new_ltEs5(yvy1650, yvy1660, cab, cac, cad) 52.72/30.42 new_esEs26(LT, GT) -> False 52.72/30.42 new_esEs26(GT, LT) -> False 52.72/30.42 new_lt20(yvy190, yvy192, ty_Ordering) -> new_lt17(yvy190, yvy192) 52.72/30.42 new_compare13(Float(yvy400, Pos(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.72/30.42 new_compare13(Float(yvy400, Neg(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.72/30.42 new_esEs8(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.72/30.42 new_esEs14(yvy1650, yvy1660, ty_Bool) -> new_esEs23(yvy1650, yvy1660) 52.72/30.42 new_lt7(yvy40, yvy30) -> new_esEs12(new_compare13(yvy40, yvy30)) 52.72/30.42 new_esEs30(yvy4000, yvy3000, app(app(ty_@2, ddh), dea)) -> new_esEs21(yvy4000, yvy3000, ddh, dea) 52.72/30.42 new_ltEs19(yvy179, yvy180, app(app(ty_Either, cfh), cga)) -> new_ltEs15(yvy179, yvy180, cfh, cga) 52.72/30.42 new_ltEs20(yvy191, yvy193, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs5(yvy191, yvy193, ec, ed, ee) 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 52.72/30.42 new_lt23(yvy155, yvy158, ty_Char) -> new_lt8(yvy155, yvy158) 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT 52.72/30.42 new_esEs26(LT, EQ) -> False 52.72/30.42 new_esEs26(EQ, LT) -> False 52.72/30.42 new_esEs10(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.72/30.42 new_lt6(yvy1651, yvy1661, ty_Char) -> new_lt8(yvy1651, yvy1661) 52.72/30.42 new_esEs29(yvy190, yvy192, ty_@0) -> new_esEs19(yvy190, yvy192) 52.72/30.42 new_esEs13(yvy1651, yvy1661, app(ty_Maybe, bgc)) -> new_esEs24(yvy1651, yvy1661, bgc) 52.72/30.42 new_ltEs15(Right(yvy1650), Right(yvy1660), ccb, app(ty_Ratio, ffc)) -> new_ltEs18(yvy1650, yvy1660, ffc) 52.72/30.42 new_ltEs19(yvy179, yvy180, app(app(ty_@2, cfb), cfc)) -> new_ltEs12(yvy179, yvy180, cfb, cfc) 52.72/30.42 new_esEs25(Right(yvy4000), Right(yvy3000), dad, app(ty_Ratio, dbc)) -> new_esEs28(yvy4000, yvy3000, dbc) 52.72/30.42 new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) 52.72/30.42 new_lt23(yvy155, yvy158, app(ty_Maybe, hg)) -> new_lt15(yvy155, yvy158, hg) 52.72/30.42 new_compare18(LT, LT) -> EQ 52.72/30.42 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Bool) -> new_ltEs13(yvy1650, yvy1660) 52.72/30.42 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(ty_Either, dch), dda)) -> new_esEs25(yvy4000, yvy3000, dch, dda) 52.72/30.42 new_esEs38(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.42 new_esEs24(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.72/30.42 new_ltEs20(yvy191, yvy193, ty_Float) -> new_ltEs7(yvy191, yvy193) 52.72/30.42 new_esEs30(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.42 new_esEs33(yvy1650, yvy1660, ty_Int) -> new_esEs17(yvy1650, yvy1660) 52.72/30.42 new_esEs8(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.72/30.42 new_lt4(yvy40, yvy30) -> new_esEs12(new_compare5(yvy40, yvy30)) 52.72/30.42 new_esEs40(yvy154, yvy157, app(ty_[], fd)) -> new_esEs18(yvy154, yvy157, fd) 52.72/30.42 new_primCompAux0(yvy400, yvy300, yvy115, h) -> new_primCompAux00(yvy115, new_compare30(yvy400, yvy300, h)) 52.72/30.42 new_ltEs14(Nothing, Just(yvy1660), deg) -> True 52.72/30.42 new_esEs39(yvy155, yvy158, ty_Double) -> new_esEs27(yvy155, yvy158) 52.72/30.42 new_esEs6(yvy402, yvy302, ty_Int) -> new_esEs17(yvy402, yvy302) 52.72/30.42 new_esEs39(yvy155, yvy158, app(app(ty_Either, hh), baa)) -> new_esEs25(yvy155, yvy158, hh, baa) 52.72/30.42 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 52.72/30.42 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 52.72/30.42 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs22(yvy4000, yvy3000, dca, dcb, dcc) 52.72/30.42 new_ltEs21(yvy165, yvy166, ty_Ordering) -> new_ltEs16(yvy165, yvy166) 52.72/30.42 new_compare30(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) 52.72/30.42 new_esEs39(yvy155, yvy158, ty_Bool) -> new_esEs23(yvy155, yvy158) 52.72/30.42 new_ltEs20(yvy191, yvy193, ty_@0) -> new_ltEs4(yvy191, yvy193) 52.72/30.42 new_esEs29(yvy190, yvy192, app(app(ty_@2, cf), cg)) -> new_esEs21(yvy190, yvy192, cf, cg) 52.72/30.42 new_esEs7(yvy401, yvy301, app(ty_[], dgb)) -> new_esEs18(yvy401, yvy301, dgb) 52.72/30.42 new_lt23(yvy155, yvy158, app(ty_[], ha)) -> new_lt10(yvy155, yvy158, ha) 52.72/30.42 new_esEs39(yvy155, yvy158, app(app(app(ty_@3, hd), he), hf)) -> new_esEs22(yvy155, yvy158, hd, he, hf) 52.72/30.42 new_ltEs13(True, True) -> True 52.72/30.42 new_esEs9(yvy400, yvy300, app(ty_Ratio, eff)) -> new_esEs28(yvy400, yvy300, eff) 52.72/30.42 new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, False, fef, feg, feh) -> GT 52.72/30.42 new_ltEs6(yvy1652, yvy1662, app(ty_Maybe, bhd)) -> new_ltEs14(yvy1652, yvy1662, bhd) 52.72/30.42 new_esEs33(yvy1650, yvy1660, ty_Char) -> new_esEs16(yvy1650, yvy1660) 52.72/30.42 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(ty_Either, cbh), cca), cba) -> new_ltEs15(yvy1650, yvy1660, cbh, cca) 52.72/30.42 new_esEs36(yvy4002, yvy3002, app(ty_Ratio, fab)) -> new_esEs28(yvy4002, yvy3002, fab) 52.72/30.42 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 52.72/30.42 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(ty_Either, daa), dab), chd) -> new_esEs25(yvy4000, yvy3000, daa, dab) 52.72/30.42 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Double) -> new_ltEs17(yvy1650, yvy1660) 52.72/30.42 new_esEs6(yvy402, yvy302, ty_Char) -> new_esEs16(yvy402, yvy302) 52.72/30.42 new_esEs40(yvy154, yvy157, ty_Double) -> new_esEs27(yvy154, yvy157) 52.72/30.42 new_esEs4(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) 52.72/30.42 new_esEs38(yvy4000, yvy3000, app(ty_Maybe, fcc)) -> new_esEs24(yvy4000, yvy3000, fcc) 52.72/30.42 new_esEs18([], [], ddc) -> True 52.72/30.42 new_esEs31(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) 52.72/30.42 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.72/30.42 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.72/30.42 new_esEs7(yvy401, yvy301, ty_Double) -> new_esEs27(yvy401, yvy301) 52.72/30.42 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(ty_Either, caf), cag)) -> new_ltEs15(yvy1650, yvy1660, caf, cag) 52.72/30.42 new_ltEs24(yvy156, yvy159, app(ty_[], bab)) -> new_ltEs10(yvy156, yvy159, bab) 52.72/30.42 new_compare16(Left(yvy400), Right(yvy300), cdd, cde) -> LT 52.72/30.42 new_not(True) -> False 52.72/30.42 new_ltEs24(yvy156, yvy159, ty_Double) -> new_ltEs17(yvy156, yvy159) 52.72/30.42 new_ltEs22(yvy172, yvy173, ty_Char) -> new_ltEs8(yvy172, yvy173) 52.72/30.42 new_ltEs19(yvy179, yvy180, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs5(yvy179, yvy180, cfd, cfe, cff) 52.72/30.42 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_[], bhg)) -> new_ltEs10(yvy1650, yvy1660, bhg) 52.72/30.42 new_lt5(yvy1650, yvy1660, app(ty_[], bea)) -> new_lt10(yvy1650, yvy1660, bea) 52.72/30.42 new_lt23(yvy155, yvy158, ty_Int) -> new_lt9(yvy155, yvy158) 52.72/30.42 new_esEs13(yvy1651, yvy1661, ty_Integer) -> new_esEs20(yvy1651, yvy1661) 52.72/30.42 new_esEs30(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.72/30.42 new_lt23(yvy155, yvy158, ty_Integer) -> new_lt11(yvy155, yvy158) 52.72/30.42 new_primCompAux00(yvy133, LT) -> LT 52.72/30.42 new_primCmpNat0(Zero, Zero) -> EQ 52.72/30.42 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_Maybe, dcd)) -> new_esEs24(yvy4000, yvy3000, dcd) 52.72/30.42 new_esEs32(yvy4000, yvy3000, app(ty_Ratio, ebb)) -> new_esEs28(yvy4000, yvy3000, ebb) 52.72/30.42 new_esEs39(yvy155, yvy158, ty_Ordering) -> new_esEs26(yvy155, yvy158) 52.72/30.42 new_compare17(yvy230, yvy231, False, fha, fhb) -> GT 52.72/30.42 new_lt22(yvy154, yvy157, ty_Float) -> new_lt7(yvy154, yvy157) 52.72/30.42 new_lt22(yvy154, yvy157, app(ty_[], fd)) -> new_lt10(yvy154, yvy157, fd) 52.72/30.42 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_[], ddb)) -> new_esEs18(yvy4000, yvy3000, ddb) 52.72/30.42 new_esEs10(yvy400, yvy300, app(app(app(ty_@3, ebf), ebg), ebh)) -> new_esEs22(yvy400, yvy300, ebf, ebg, ebh) 52.72/30.42 new_lt6(yvy1651, yvy1661, ty_Int) -> new_lt9(yvy1651, yvy1661) 52.72/30.42 new_esEs14(yvy1650, yvy1660, ty_Double) -> new_esEs27(yvy1650, yvy1660) 52.72/30.42 new_esEs39(yvy155, yvy158, app(ty_[], ha)) -> new_esEs18(yvy155, yvy158, ha) 52.72/30.42 new_lt20(yvy190, yvy192, ty_Bool) -> new_lt14(yvy190, yvy192) 52.72/30.42 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Char, chd) -> new_esEs16(yvy4000, yvy3000) 52.72/30.42 new_ltEs22(yvy172, yvy173, ty_Int) -> new_ltEs9(yvy172, yvy173) 52.72/30.42 new_esEs10(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.72/30.42 new_compare26(yvy190, yvy191, yvy192, yvy193, False, dg, ce) -> new_compare11(yvy190, yvy191, yvy192, yvy193, new_lt20(yvy190, yvy192, dg), new_asAs(new_esEs29(yvy190, yvy192, dg), new_ltEs20(yvy191, yvy193, ce)), dg, ce) 52.72/30.42 new_ltEs16(GT, EQ) -> False 52.72/30.42 new_esEs14(yvy1650, yvy1660, ty_Integer) -> new_esEs20(yvy1650, yvy1660) 52.72/30.42 new_esEs25(Right(yvy4000), Right(yvy3000), dad, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.72/30.42 new_compare27(yvy165, yvy166, True, def) -> EQ 52.72/30.42 new_esEs7(yvy401, yvy301, app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs22(yvy401, yvy301, dfa, dfb, dfc) 52.72/30.42 new_ltEs19(yvy179, yvy180, ty_Double) -> new_ltEs17(yvy179, yvy180) 52.72/30.42 new_esEs38(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.72/30.42 new_lt16(yvy40, yvy30, cdd, cde) -> new_esEs12(new_compare16(yvy40, yvy30, cdd, cde)) 52.72/30.42 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Integer) -> new_ltEs11(yvy1650, yvy1660) 52.72/30.42 new_esEs31(yvy4001, yvy3001, app(ty_Ratio, dhh)) -> new_esEs28(yvy4001, yvy3001, dhh) 52.72/30.42 new_primEqNat0(Succ(yvy40000), Zero) -> False 52.72/30.42 new_primEqNat0(Zero, Succ(yvy30000)) -> False 52.72/30.42 new_esEs4(yvy401, yvy301, ty_Ordering) -> new_esEs26(yvy401, yvy301) 52.72/30.42 new_ltEs10(yvy165, yvy166, bbd) -> new_fsEs(new_compare0(yvy165, yvy166, bbd)) 52.72/30.42 new_esEs39(yvy155, yvy158, app(ty_Maybe, hg)) -> new_esEs24(yvy155, yvy158, hg) 52.72/30.42 new_esEs10(yvy400, yvy300, app(app(ty_@2, ecb), ecc)) -> new_esEs21(yvy400, yvy300, ecb, ecc) 52.72/30.42 new_esEs36(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) 52.72/30.42 new_ltEs21(yvy165, yvy166, app(app(ty_@2, bcg), bbf)) -> new_ltEs12(yvy165, yvy166, bcg, bbf) 52.72/30.42 new_esEs7(yvy401, yvy301, ty_@0) -> new_esEs19(yvy401, yvy301) 52.72/30.42 new_compare8(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) 52.72/30.42 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.72/30.42 new_compare10(yvy237, yvy238, True, dgc, dgd) -> LT 52.72/30.42 new_lt6(yvy1651, yvy1661, app(app(ty_@2, bff), bfg)) -> new_lt12(yvy1651, yvy1661, bff, bfg) 52.72/30.42 new_ltEs20(yvy191, yvy193, ty_Integer) -> new_ltEs11(yvy191, yvy193) 52.72/30.42 new_lt20(yvy190, yvy192, app(app(app(ty_@3, da), db), dc)) -> new_lt13(yvy190, yvy192, da, db, dc) 52.72/30.42 new_ltEs19(yvy179, yvy180, ty_@0) -> new_ltEs4(yvy179, yvy180) 52.72/30.42 new_lt20(yvy190, yvy192, app(app(ty_@2, cf), cg)) -> new_lt12(yvy190, yvy192, cf, cg) 52.72/30.42 new_primCompAux00(yvy133, GT) -> GT 52.72/30.42 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(ty_@2, cbb), cbc), cba) -> new_ltEs12(yvy1650, yvy1660, cbb, cbc) 52.72/30.42 new_compare7(True, True) -> EQ 52.72/30.42 new_esEs8(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.72/30.42 new_esEs37(yvy4001, yvy3001, ty_Char) -> new_esEs16(yvy4001, yvy3001) 52.72/30.42 new_esEs40(yvy154, yvy157, app(ty_Maybe, ge)) -> new_esEs24(yvy154, yvy157, ge) 52.72/30.42 new_esEs40(yvy154, yvy157, ty_Int) -> new_esEs17(yvy154, yvy157) 52.72/30.42 new_ltEs20(yvy191, yvy193, ty_Bool) -> new_ltEs13(yvy191, yvy193) 52.72/30.42 new_ltEs15(Right(yvy1650), Right(yvy1660), ccb, ty_Ordering) -> new_ltEs16(yvy1650, yvy1660) 52.72/30.42 new_esEs32(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.72/30.42 new_esEs31(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) 52.72/30.42 new_compare210(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, True, gh, ff, fg) -> EQ 52.72/30.42 new_esEs30(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.72/30.42 new_esEs8(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.72/30.42 new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT 52.72/30.42 new_ltEs23(yvy1651, yvy1661, app(ty_[], bch)) -> new_ltEs10(yvy1651, yvy1661, bch) 52.72/30.42 new_ltEs24(yvy156, yvy159, app(app(app(ty_@3, bae), baf), bag)) -> new_ltEs5(yvy156, yvy159, bae, baf, bag) 52.72/30.42 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Integer, chd) -> new_esEs20(yvy4000, yvy3000) 52.72/30.42 new_ltEs24(yvy156, yvy159, ty_@0) -> new_ltEs4(yvy156, yvy159) 52.72/30.42 new_ltEs4(yvy165, yvy166) -> new_fsEs(new_compare5(yvy165, yvy166)) 52.72/30.42 new_esEs33(yvy1650, yvy1660, app(ty_[], bbe)) -> new_esEs18(yvy1650, yvy1660, bbe) 52.72/30.42 new_esEs40(yvy154, yvy157, app(app(ty_@2, fh), ga)) -> new_esEs21(yvy154, yvy157, fh, ga) 52.72/30.42 new_ltEs16(LT, LT) -> True 52.72/30.42 new_esEs29(yvy190, yvy192, app(app(ty_Either, de), df)) -> new_esEs25(yvy190, yvy192, de, df) 52.72/30.42 new_esEs5(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.72/30.42 new_ltEs7(yvy165, yvy166) -> new_fsEs(new_compare13(yvy165, yvy166)) 52.72/30.42 new_esEs29(yvy190, yvy192, ty_Ordering) -> new_esEs26(yvy190, yvy192) 52.72/30.42 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_Ratio, chh), chd) -> new_esEs28(yvy4000, yvy3000, chh) 52.72/30.42 new_esEs29(yvy190, yvy192, ty_Float) -> new_esEs15(yvy190, yvy192) 52.72/30.42 new_ltEs19(yvy179, yvy180, ty_Bool) -> new_ltEs13(yvy179, yvy180) 52.72/30.42 new_lt6(yvy1651, yvy1661, app(ty_Maybe, bgc)) -> new_lt15(yvy1651, yvy1661, bgc) 52.72/30.42 new_esEs10(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.72/30.42 new_ltEs9(yvy165, yvy166) -> new_fsEs(new_compare8(yvy165, yvy166)) 52.72/30.42 new_ltEs6(yvy1652, yvy1662, ty_Double) -> new_ltEs17(yvy1652, yvy1662) 52.72/30.42 new_lt6(yvy1651, yvy1661, app(ty_[], bfe)) -> new_lt10(yvy1651, yvy1661, bfe) 52.72/30.42 new_esEs34(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.72/30.42 new_esEs38(yvy4000, yvy3000, app(ty_[], fda)) -> new_esEs18(yvy4000, yvy3000, fda) 52.72/30.42 new_esEs7(yvy401, yvy301, ty_Integer) -> new_esEs20(yvy401, yvy301) 52.72/30.42 new_esEs39(yvy155, yvy158, app(app(ty_@2, hb), hc)) -> new_esEs21(yvy155, yvy158, hb, hc) 52.72/30.42 new_primCmpNat0(Zero, Succ(yvy3000)) -> LT 52.72/30.42 new_esEs4(yvy401, yvy301, app(app(ty_@2, egf), egg)) -> new_esEs21(yvy401, yvy301, egf, egg) 52.72/30.42 new_esEs30(yvy4000, yvy3000, app(app(ty_Either, dec), ded)) -> new_esEs25(yvy4000, yvy3000, dec, ded) 52.72/30.42 new_ltEs23(yvy1651, yvy1661, ty_Int) -> new_ltEs9(yvy1651, yvy1661) 52.72/30.42 new_ltEs20(yvy191, yvy193, ty_Double) -> new_ltEs17(yvy191, yvy193) 52.72/30.42 new_esEs38(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.72/30.42 new_ltEs24(yvy156, yvy159, ty_Float) -> new_ltEs7(yvy156, yvy159) 52.72/30.42 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Float) -> new_ltEs7(yvy1650, yvy1660) 52.72/30.42 new_esEs13(yvy1651, yvy1661, ty_@0) -> new_esEs19(yvy1651, yvy1661) 52.72/30.42 new_ltEs15(Right(yvy1650), Left(yvy1660), ccb, cba) -> False 52.72/30.42 new_esEs8(yvy400, yvy300, app(app(app(ty_@3, ffg), ffh), fga)) -> new_esEs22(yvy400, yvy300, ffg, ffh, fga) 52.72/30.42 new_esEs11(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.72/30.42 new_compare18(GT, GT) -> EQ 52.72/30.42 new_esEs8(yvy400, yvy300, app(ty_[], fgh)) -> new_esEs18(yvy400, yvy300, fgh) 52.72/30.42 new_sr(Integer(yvy4000), Integer(yvy3010)) -> Integer(new_primMulInt(yvy4000, yvy3010)) 52.72/30.42 new_primCmpNat0(Succ(yvy4000), Zero) -> GT 52.72/30.42 new_esEs38(yvy4000, yvy3000, app(app(app(ty_@3, fbh), fca), fcb)) -> new_esEs22(yvy4000, yvy3000, fbh, fca, fcb) 52.72/30.42 new_esEs30(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.72/30.42 new_pePe(False, yvy280) -> yvy280 52.72/30.42 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.42 new_esEs33(yvy1650, yvy1660, ty_Double) -> new_esEs27(yvy1650, yvy1660) 52.72/30.42 new_ltEs15(Right(yvy1650), Right(yvy1660), ccb, ty_Char) -> new_ltEs8(yvy1650, yvy1660) 52.72/30.42 new_compare6(@2(yvy400, yvy401), @2(yvy300, yvy301), cb, cc) -> new_compare26(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs5(yvy400, yvy300, cb), new_esEs4(yvy401, yvy301, cc)), cb, cc) 52.72/30.42 new_compare25(yvy179, yvy180, True, ceh, cge) -> EQ 52.72/30.42 new_compare18(LT, GT) -> LT 52.72/30.42 new_esEs25(Right(yvy4000), Right(yvy3000), dad, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.72/30.42 new_ltEs23(yvy1651, yvy1661, ty_Double) -> new_ltEs17(yvy1651, yvy1661) 52.72/30.42 new_esEs8(yvy400, yvy300, app(ty_Maybe, fgb)) -> new_esEs24(yvy400, yvy300, fgb) 52.72/30.42 new_esEs29(yvy190, yvy192, app(ty_Maybe, dd)) -> new_esEs24(yvy190, yvy192, dd) 52.72/30.42 new_lt22(yvy154, yvy157, app(ty_Maybe, ge)) -> new_lt15(yvy154, yvy157, ge) 52.72/30.42 new_ltEs16(LT, GT) -> True 52.72/30.42 new_esEs25(Right(yvy4000), Right(yvy3000), dad, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.42 new_ltEs21(yvy165, yvy166, ty_Double) -> new_ltEs17(yvy165, yvy166) 52.72/30.42 new_esEs23(True, True) -> True 52.72/30.42 new_lt22(yvy154, yvy157, app(ty_Ratio, ffd)) -> new_lt19(yvy154, yvy157, ffd) 52.72/30.42 new_lt23(yvy155, yvy158, app(app(app(ty_@3, hd), he), hf)) -> new_lt13(yvy155, yvy158, hd, he, hf) 52.72/30.42 new_lt23(yvy155, yvy158, ty_Bool) -> new_lt14(yvy155, yvy158) 52.72/30.42 new_esEs39(yvy155, yvy158, ty_Int) -> new_esEs17(yvy155, yvy158) 52.72/30.42 new_lt13(yvy40, yvy30, fa, fb, fc) -> new_esEs12(new_compare31(yvy40, yvy30, fa, fb, fc)) 52.72/30.42 new_ltEs5(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, beb, bec) -> new_pePe(new_lt5(yvy1650, yvy1660, bfd), new_asAs(new_esEs14(yvy1650, yvy1660, bfd), new_pePe(new_lt6(yvy1651, yvy1661, beb), new_asAs(new_esEs13(yvy1651, yvy1661, beb), new_ltEs6(yvy1652, yvy1662, bec))))) 52.72/30.42 new_ltEs19(yvy179, yvy180, app(ty_Maybe, cfg)) -> new_ltEs14(yvy179, yvy180, cfg) 52.72/30.42 new_esEs29(yvy190, yvy192, app(ty_[], cd)) -> new_esEs18(yvy190, yvy192, cd) 52.72/30.42 new_lt6(yvy1651, yvy1661, ty_Bool) -> new_lt14(yvy1651, yvy1661) 52.72/30.42 new_ltEs16(LT, EQ) -> True 52.72/30.42 new_ltEs16(EQ, LT) -> False 52.72/30.42 new_lt20(yvy190, yvy192, ty_Integer) -> new_lt11(yvy190, yvy192) 52.72/30.42 new_ltEs15(Right(yvy1650), Right(yvy1660), ccb, ty_@0) -> new_ltEs4(yvy1650, yvy1660) 52.72/30.42 new_esEs7(yvy401, yvy301, ty_Char) -> new_esEs16(yvy401, yvy301) 52.72/30.42 new_esEs6(yvy402, yvy302, ty_Integer) -> new_esEs20(yvy402, yvy302) 52.72/30.42 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 52.72/30.42 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 52.72/30.42 new_esEs9(yvy400, yvy300, app(app(ty_Either, efg), efh)) -> new_esEs25(yvy400, yvy300, efg, efh) 52.72/30.42 new_compare30(yvy400, yvy300, ty_Int) -> new_compare8(yvy400, yvy300) 52.72/30.42 new_esEs40(yvy154, yvy157, ty_Char) -> new_esEs16(yvy154, yvy157) 52.72/30.42 new_esEs7(yvy401, yvy301, ty_Ordering) -> new_esEs26(yvy401, yvy301) 52.72/30.42 new_esEs29(yvy190, yvy192, app(ty_Ratio, cgg)) -> new_esEs28(yvy190, yvy192, cgg) 52.72/30.42 new_lt6(yvy1651, yvy1661, app(app(app(ty_@3, bfh), bga), bgb)) -> new_lt13(yvy1651, yvy1661, bfh, bga, bgb) 52.72/30.42 new_lt23(yvy155, yvy158, app(app(ty_Either, hh), baa)) -> new_lt16(yvy155, yvy158, hh, baa) 52.72/30.42 new_esEs25(Right(yvy4000), Right(yvy3000), dad, app(app(ty_Either, dbd), dbe)) -> new_esEs25(yvy4000, yvy3000, dbd, dbe) 52.72/30.42 new_ltEs16(GT, LT) -> False 52.72/30.42 new_ltEs15(Right(yvy1650), Right(yvy1660), ccb, app(app(ty_Either, cdb), cdc)) -> new_ltEs15(yvy1650, yvy1660, cdb, cdc) 52.72/30.42 new_esEs4(yvy401, yvy301, app(app(app(ty_@3, egb), egc), egd)) -> new_esEs22(yvy401, yvy301, egb, egc, egd) 52.72/30.42 new_esEs6(yvy402, yvy302, app(ty_Maybe, fde)) -> new_esEs24(yvy402, yvy302, fde) 52.72/30.42 new_compare30(yvy400, yvy300, app(ty_Maybe, bg)) -> new_compare29(yvy400, yvy300, bg) 52.72/30.42 new_esEs39(yvy155, yvy158, app(ty_Ratio, ffe)) -> new_esEs28(yvy155, yvy158, ffe) 52.72/30.42 new_esEs4(yvy401, yvy301, ty_Bool) -> new_esEs23(yvy401, yvy301) 52.72/30.42 new_lt8(yvy40, yvy30) -> new_esEs12(new_compare19(yvy40, yvy30)) 52.72/30.42 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Bool, chd) -> new_esEs23(yvy4000, yvy3000) 52.72/30.42 new_esEs31(yvy4001, yvy3001, ty_Bool) -> new_esEs23(yvy4001, yvy3001) 52.72/30.42 new_esEs25(Left(yvy4000), Left(yvy3000), ty_@0, chd) -> new_esEs19(yvy4000, yvy3000) 52.72/30.42 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 52.72/30.42 new_esEs19(@0, @0) -> True 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT 52.72/30.42 new_esEs31(yvy4001, yvy3001, app(app(ty_Either, eaa), eab)) -> new_esEs25(yvy4001, yvy3001, eaa, eab) 52.72/30.42 new_ltEs6(yvy1652, yvy1662, ty_Float) -> new_ltEs7(yvy1652, yvy1662) 52.72/30.42 new_primMulInt(Pos(yvy4000), Pos(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) 52.72/30.42 new_esEs30(yvy4000, yvy3000, app(ty_Ratio, deb)) -> new_esEs28(yvy4000, yvy3000, deb) 52.72/30.42 new_ltEs21(yvy165, yvy166, app(app(ty_Either, ccb), cba)) -> new_ltEs15(yvy165, yvy166, ccb, cba) 52.72/30.42 new_lt21(yvy1650, yvy1660, app(app(app(ty_@3, bca), bcb), bcc)) -> new_lt13(yvy1650, yvy1660, bca, bcb, bcc) 52.72/30.42 new_esEs33(yvy1650, yvy1660, app(ty_Maybe, bcd)) -> new_esEs24(yvy1650, yvy1660, bcd) 52.72/30.42 new_ltEs15(Left(yvy1650), Right(yvy1660), ccb, cba) -> True 52.72/30.42 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Double, cba) -> new_ltEs17(yvy1650, yvy1660) 52.72/30.42 new_esEs25(Right(yvy4000), Right(yvy3000), dad, app(app(ty_@2, dba), dbb)) -> new_esEs21(yvy4000, yvy3000, dba, dbb) 52.72/30.42 new_lt22(yvy154, yvy157, ty_Integer) -> new_lt11(yvy154, yvy157) 52.72/30.42 new_esEs9(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.72/30.42 new_esEs7(yvy401, yvy301, app(app(ty_Either, dfh), dga)) -> new_esEs25(yvy401, yvy301, dfh, dga) 52.72/30.42 new_ltEs24(yvy156, yvy159, ty_Int) -> new_ltEs9(yvy156, yvy159) 52.72/30.42 new_esEs7(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) 52.72/30.42 new_lt5(yvy1650, yvy1660, app(ty_Ratio, cgb)) -> new_lt19(yvy1650, yvy1660, cgb) 52.72/30.42 new_esEs10(yvy400, yvy300, app(ty_Maybe, eca)) -> new_esEs24(yvy400, yvy300, eca) 52.72/30.42 new_lt21(yvy1650, yvy1660, ty_Bool) -> new_lt14(yvy1650, yvy1660) 52.72/30.42 new_primMulNat0(Succ(yvy40000), Zero) -> Zero 52.72/30.42 new_primMulNat0(Zero, Succ(yvy30100)) -> Zero 52.72/30.42 new_esEs7(yvy401, yvy301, ty_Bool) -> new_esEs23(yvy401, yvy301) 52.72/30.42 new_esEs11(yvy400, yvy300, app(app(ty_Either, edg), edh)) -> new_esEs25(yvy400, yvy300, edg, edh) 52.72/30.42 new_lt14(yvy40, yvy30) -> new_esEs12(new_compare7(yvy40, yvy30)) 52.72/30.42 new_lt15(yvy40, yvy30, bbc) -> new_esEs12(new_compare29(yvy40, yvy30, bbc)) 52.72/30.42 new_esEs6(yvy402, yvy302, app(ty_Ratio, fdh)) -> new_esEs28(yvy402, yvy302, fdh) 52.72/30.42 new_compare12(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Integer) -> new_compare14(new_sr(yvy400, yvy301), new_sr(yvy300, yvy401)) 52.72/30.42 new_esEs11(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.72/30.42 new_lt23(yvy155, yvy158, ty_Ordering) -> new_lt17(yvy155, yvy158) 52.72/30.42 new_lt20(yvy190, yvy192, app(ty_Ratio, cgg)) -> new_lt19(yvy190, yvy192, cgg) 52.72/30.42 new_esEs30(yvy4000, yvy3000, app(ty_Maybe, ddg)) -> new_esEs24(yvy4000, yvy3000, ddg) 52.72/30.42 new_esEs8(yvy400, yvy300, app(app(ty_@2, fgc), fgd)) -> new_esEs21(yvy400, yvy300, fgc, fgd) 52.72/30.42 new_esEs38(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.42 new_esEs31(yvy4001, yvy3001, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs22(yvy4001, yvy3001, dhb, dhc, dhd) 52.72/30.42 new_ltEs20(yvy191, yvy193, app(ty_Maybe, ef)) -> new_ltEs14(yvy191, yvy193, ef) 52.72/30.42 new_esEs33(yvy1650, yvy1660, ty_@0) -> new_esEs19(yvy1650, yvy1660) 52.72/30.42 new_esEs20(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 52.72/30.42 new_esEs30(yvy4000, yvy3000, app(ty_[], dee)) -> new_esEs18(yvy4000, yvy3000, dee) 52.72/30.42 new_esEs8(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.72/30.42 new_esEs26(GT, GT) -> True 52.72/30.42 new_esEs40(yvy154, yvy157, ty_Bool) -> new_esEs23(yvy154, yvy157) 52.72/30.42 new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) 52.72/30.42 new_primPlusNat0(Zero, Succ(yvy21000)) -> Succ(yvy21000) 52.72/30.42 new_ltEs22(yvy172, yvy173, ty_Float) -> new_ltEs7(yvy172, yvy173) 52.72/30.42 new_esEs40(yvy154, yvy157, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs22(yvy154, yvy157, gb, gc, gd) 52.72/30.42 new_ltEs16(EQ, GT) -> True 52.72/30.42 new_ltEs20(yvy191, yvy193, app(app(ty_@2, ea), eb)) -> new_ltEs12(yvy191, yvy193, ea, eb) 52.72/30.42 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_Maybe, cae)) -> new_ltEs14(yvy1650, yvy1660, cae) 52.72/30.42 new_esEs26(EQ, GT) -> False 52.72/30.42 new_esEs26(GT, EQ) -> False 52.72/30.42 new_compare18(EQ, GT) -> LT 52.72/30.42 new_ltEs16(EQ, EQ) -> True 52.72/30.42 new_lt6(yvy1651, yvy1661, ty_Float) -> new_lt7(yvy1651, yvy1661) 52.72/30.42 new_esEs6(yvy402, yvy302, ty_Bool) -> new_esEs23(yvy402, yvy302) 52.72/30.42 new_esEs30(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.72/30.42 new_esEs36(yvy4002, yvy3002, ty_Int) -> new_esEs17(yvy4002, yvy3002) 52.72/30.42 new_compare17(yvy230, yvy231, True, fha, fhb) -> LT 52.72/30.42 new_esEs29(yvy190, yvy192, ty_Integer) -> new_esEs20(yvy190, yvy192) 52.72/30.42 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Ordering, chd) -> new_esEs26(yvy4000, yvy3000) 52.72/30.42 new_esEs31(yvy4001, yvy3001, app(ty_Maybe, dhe)) -> new_esEs24(yvy4001, yvy3001, dhe) 52.72/30.42 new_lt5(yvy1650, yvy1660, ty_Float) -> new_lt7(yvy1650, yvy1660) 52.72/30.42 new_esEs10(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.72/30.42 new_esEs10(yvy400, yvy300, app(app(ty_Either, ece), ecf)) -> new_esEs25(yvy400, yvy300, ece, ecf) 52.72/30.42 new_ltEs6(yvy1652, yvy1662, app(app(ty_@2, bgg), bgh)) -> new_ltEs12(yvy1652, yvy1662, bgg, bgh) 52.72/30.42 new_esEs31(yvy4001, yvy3001, app(ty_[], eac)) -> new_esEs18(yvy4001, yvy3001, eac) 52.72/30.42 new_lt6(yvy1651, yvy1661, ty_Integer) -> new_lt11(yvy1651, yvy1661) 52.72/30.42 new_esEs5(yvy400, yvy300, app(ty_Ratio, eee)) -> new_esEs28(yvy400, yvy300, eee) 52.72/30.42 new_esEs39(yvy155, yvy158, ty_Char) -> new_esEs16(yvy155, yvy158) 52.72/30.42 new_esEs33(yvy1650, yvy1660, app(app(ty_Either, bce), bcf)) -> new_esEs25(yvy1650, yvy1660, bce, bcf) 52.72/30.42 new_ltEs15(Right(yvy1650), Right(yvy1660), ccb, ty_Bool) -> new_ltEs13(yvy1650, yvy1660) 52.72/30.42 new_esEs7(yvy401, yvy301, app(app(ty_@2, dfe), dff)) -> new_esEs21(yvy401, yvy301, dfe, dff) 52.72/30.42 new_esEs5(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.72/30.42 new_esEs36(yvy4002, yvy3002, ty_Double) -> new_esEs27(yvy4002, yvy3002) 52.72/30.42 new_esEs31(yvy4001, yvy3001, ty_Ordering) -> new_esEs26(yvy4001, yvy3001) 52.72/30.42 new_lt5(yvy1650, yvy1660, ty_Integer) -> new_lt11(yvy1650, yvy1660) 52.72/30.42 new_esEs10(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.72/30.42 new_esEs13(yvy1651, yvy1661, ty_Int) -> new_esEs17(yvy1651, yvy1661) 52.72/30.42 new_compare9(Double(yvy400, Pos(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.72/30.42 new_compare9(Double(yvy400, Neg(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.72/30.42 new_esEs23(False, False) -> True 52.72/30.42 new_lt21(yvy1650, yvy1660, ty_Float) -> new_lt7(yvy1650, yvy1660) 52.72/30.42 new_esEs9(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.72/30.42 new_esEs23(False, True) -> False 52.72/30.42 new_esEs23(True, False) -> False 52.72/30.42 new_esEs4(yvy401, yvy301, ty_Char) -> new_esEs16(yvy401, yvy301) 52.72/30.42 new_ltEs6(yvy1652, yvy1662, ty_Ordering) -> new_ltEs16(yvy1652, yvy1662) 52.72/30.42 new_esEs17(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 52.72/30.42 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_Ratio, dcg)) -> new_esEs28(yvy4000, yvy3000, dcg) 52.72/30.42 new_esEs12(LT) -> True 52.72/30.42 new_esEs40(yvy154, yvy157, app(ty_Ratio, ffd)) -> new_esEs28(yvy154, yvy157, ffd) 52.72/30.42 new_esEs13(yvy1651, yvy1661, ty_Double) -> new_esEs27(yvy1651, yvy1661) 52.72/30.42 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(ty_@2, bhh), caa)) -> new_ltEs12(yvy1650, yvy1660, bhh, caa) 52.72/30.42 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.72/30.42 new_lt18(yvy40, yvy30) -> new_esEs12(new_compare9(yvy40, yvy30)) 52.72/30.42 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Ordering) -> new_ltEs16(yvy1650, yvy1660) 52.72/30.42 new_esEs6(yvy402, yvy302, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_esEs22(yvy402, yvy302, fdb, fdc, fdd) 52.72/30.42 new_esEs32(yvy4000, yvy3000, app(app(ty_Either, ebc), ebd)) -> new_esEs25(yvy4000, yvy3000, ebc, ebd) 52.72/30.42 new_esEs6(yvy402, yvy302, app(app(ty_@2, fdf), fdg)) -> new_esEs21(yvy402, yvy302, fdf, fdg) 52.72/30.42 new_esEs32(yvy4000, yvy3000, app(ty_Maybe, eag)) -> new_esEs24(yvy4000, yvy3000, eag) 52.72/30.42 new_ltEs20(yvy191, yvy193, ty_Ordering) -> new_ltEs16(yvy191, yvy193) 52.72/30.42 new_esEs5(yvy400, yvy300, app(ty_[], ddc)) -> new_esEs18(yvy400, yvy300, ddc) 52.72/30.42 new_esEs4(yvy401, yvy301, app(ty_Ratio, egh)) -> new_esEs28(yvy401, yvy301, egh) 52.72/30.42 new_esEs11(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.72/30.42 new_lt20(yvy190, yvy192, ty_Float) -> new_lt7(yvy190, yvy192) 52.72/30.42 new_compare7(False, False) -> EQ 52.72/30.42 new_lt21(yvy1650, yvy1660, app(ty_Ratio, eef)) -> new_lt19(yvy1650, yvy1660, eef) 52.72/30.42 new_ltEs12(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), bcg, bbf) -> new_pePe(new_lt21(yvy1650, yvy1660, bcg), new_asAs(new_esEs33(yvy1650, yvy1660, bcg), new_ltEs23(yvy1651, yvy1661, bbf))) 52.72/30.42 new_esEs5(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.72/30.42 new_lt21(yvy1650, yvy1660, ty_Integer) -> new_lt11(yvy1650, yvy1660) 52.72/30.42 new_lt22(yvy154, yvy157, ty_Bool) -> new_lt14(yvy154, yvy157) 52.72/30.42 new_esEs33(yvy1650, yvy1660, ty_Float) -> new_esEs15(yvy1650, yvy1660) 52.72/30.42 new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, fef, feg, feh) -> LT 52.72/30.42 new_esEs32(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.72/30.42 new_primMulInt(Neg(yvy4000), Neg(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) 52.72/30.42 new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs17(new_sr0(yvy4000, yvy3001), new_sr0(yvy4001, yvy3000)) 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) 52.72/30.42 new_lt19(yvy40, yvy30, dbg) -> new_esEs12(new_compare12(yvy40, yvy30, dbg)) 52.72/30.42 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Float, cba) -> new_ltEs7(yvy1650, yvy1660) 52.72/30.42 new_esEs6(yvy402, yvy302, app(ty_[], fec)) -> new_esEs18(yvy402, yvy302, fec) 52.72/30.42 new_esEs8(yvy400, yvy300, app(app(ty_Either, fgf), fgg)) -> new_esEs25(yvy400, yvy300, fgf, fgg) 52.72/30.42 new_esEs5(yvy400, yvy300, app(app(app(ty_@3, eeb), eec), eed)) -> new_esEs22(yvy400, yvy300, eeb, eec, eed) 52.72/30.42 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_Ratio, ffb), cba) -> new_ltEs18(yvy1650, yvy1660, ffb) 52.72/30.42 new_lt23(yvy155, yvy158, app(app(ty_@2, hb), hc)) -> new_lt12(yvy155, yvy158, hb, hc) 52.72/30.42 new_esEs25(Left(yvy4000), Right(yvy3000), dad, chd) -> False 52.72/30.42 new_esEs25(Right(yvy4000), Left(yvy3000), dad, chd) -> False 52.72/30.42 new_ltEs19(yvy179, yvy180, ty_Ordering) -> new_ltEs16(yvy179, yvy180) 52.72/30.42 new_esEs30(yvy4000, yvy3000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs22(yvy4000, yvy3000, ddd, dde, ddf) 52.72/30.42 new_esEs39(yvy155, yvy158, ty_Integer) -> new_esEs20(yvy155, yvy158) 52.72/30.42 new_lt10(yvy40, yvy30, h) -> new_esEs12(new_compare0(yvy40, yvy30, h)) 52.72/30.42 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(app(ty_@3, cbd), cbe), cbf), cba) -> new_ltEs5(yvy1650, yvy1660, cbd, cbe, cbf) 52.72/30.42 new_ltEs21(yvy165, yvy166, ty_Float) -> new_ltEs7(yvy165, yvy166) 52.72/30.42 new_esEs37(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.72/30.42 new_fsEs(yvy281) -> new_not(new_esEs26(yvy281, GT)) 52.72/30.42 new_esEs25(Right(yvy4000), Right(yvy3000), dad, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs22(yvy4000, yvy3000, dae, daf, dag) 52.72/30.42 new_ltEs6(yvy1652, yvy1662, app(app(ty_Either, bhe), bhf)) -> new_ltEs15(yvy1652, yvy1662, bhe, bhf) 52.72/30.42 new_esEs29(yvy190, yvy192, ty_Bool) -> new_esEs23(yvy190, yvy192) 52.72/30.42 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(ty_@2, chf), chg), chd) -> new_esEs21(yvy4000, yvy3000, chf, chg) 52.72/30.42 new_esEs30(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.72/30.42 new_esEs4(yvy401, yvy301, ty_Integer) -> new_esEs20(yvy401, yvy301) 52.72/30.42 new_esEs22(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), eeb, eec, eed) -> new_asAs(new_esEs38(yvy4000, yvy3000, eeb), new_asAs(new_esEs37(yvy4001, yvy3001, eec), new_esEs36(yvy4002, yvy3002, eed))) 52.72/30.42 new_esEs9(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.72/30.42 new_ltEs15(Right(yvy1650), Right(yvy1660), ccb, ty_Integer) -> new_ltEs11(yvy1650, yvy1660) 52.72/30.42 new_esEs29(yvy190, yvy192, app(app(app(ty_@3, da), db), dc)) -> new_esEs22(yvy190, yvy192, da, db, dc) 52.72/30.42 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.42 new_compare7(True, False) -> GT 52.72/30.42 new_compare16(Left(yvy400), Left(yvy300), cdd, cde) -> new_compare28(yvy400, yvy300, new_esEs10(yvy400, yvy300, cdd), cdd, cde) 52.72/30.42 new_esEs40(yvy154, yvy157, ty_Integer) -> new_esEs20(yvy154, yvy157) 52.72/30.42 new_esEs14(yvy1650, yvy1660, ty_Int) -> new_esEs17(yvy1650, yvy1660) 52.72/30.42 new_ltEs20(yvy191, yvy193, app(app(ty_Either, eg), eh)) -> new_ltEs15(yvy191, yvy193, eg, eh) 52.72/30.42 new_esEs28(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), eee) -> new_asAs(new_esEs35(yvy4000, yvy3000, eee), new_esEs34(yvy4001, yvy3001, eee)) 52.72/30.42 new_esEs32(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.72/30.42 new_lt22(yvy154, yvy157, app(app(app(ty_@3, gb), gc), gd)) -> new_lt13(yvy154, yvy157, gb, gc, gd) 52.72/30.42 new_esEs7(yvy401, yvy301, app(ty_Maybe, dfd)) -> new_esEs24(yvy401, yvy301, dfd) 52.72/30.42 new_esEs31(yvy4001, yvy3001, app(app(ty_@2, dhf), dhg)) -> new_esEs21(yvy4001, yvy3001, dhf, dhg) 52.72/30.42 new_esEs32(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.42 new_esEs4(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) 52.72/30.42 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Float, chd) -> new_esEs15(yvy4000, yvy3000) 52.72/30.42 new_esEs25(Right(yvy4000), Right(yvy3000), dad, app(ty_[], dbf)) -> new_esEs18(yvy4000, yvy3000, dbf) 52.72/30.42 new_esEs31(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.72/30.42 new_ltEs15(Right(yvy1650), Right(yvy1660), ccb, app(ty_[], ccc)) -> new_ltEs10(yvy1650, yvy1660, ccc) 52.72/30.42 new_ltEs15(Right(yvy1650), Right(yvy1660), ccb, app(ty_Maybe, cda)) -> new_ltEs14(yvy1650, yvy1660, cda) 52.72/30.42 new_lt23(yvy155, yvy158, app(ty_Ratio, ffe)) -> new_lt19(yvy155, yvy158, ffe) 52.72/30.42 new_esEs13(yvy1651, yvy1661, app(ty_Ratio, cgc)) -> new_esEs28(yvy1651, yvy1661, cgc) 52.72/30.42 new_esEs11(yvy400, yvy300, app(ty_[], eea)) -> new_esEs18(yvy400, yvy300, eea) 52.72/30.42 new_esEs8(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.72/30.42 new_primMulInt(Pos(yvy4000), Neg(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) 52.72/30.42 new_primMulInt(Neg(yvy4000), Pos(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) 52.72/30.42 new_lt6(yvy1651, yvy1661, app(ty_Ratio, cgc)) -> new_lt19(yvy1651, yvy1661, cgc) 52.72/30.42 new_compare27(yvy165, yvy166, False, def) -> new_compare15(yvy165, yvy166, new_ltEs21(yvy165, yvy166, def), def) 52.72/30.42 new_esEs5(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.72/30.42 new_esEs12(GT) -> False 52.72/30.42 new_esEs12(EQ) -> False 52.72/30.42 new_esEs37(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) 52.72/30.42 new_esEs37(yvy4001, yvy3001, app(app(ty_Either, fbe), fbf)) -> new_esEs25(yvy4001, yvy3001, fbe, fbf) 52.72/30.42 new_esEs37(yvy4001, yvy3001, ty_Bool) -> new_esEs23(yvy4001, yvy3001) 52.72/30.42 new_compare30(yvy400, yvy300, app(app(ty_@2, bb), bc)) -> new_compare6(yvy400, yvy300, bb, bc) 52.72/30.42 new_compare5(@0, @0) -> EQ 52.72/30.42 new_esEs10(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.72/30.42 new_compare19(Char(yvy400), Char(yvy300)) -> new_primCmpNat0(yvy400, yvy300) 52.72/30.42 new_esEs25(Right(yvy4000), Right(yvy3000), dad, app(ty_Maybe, dah)) -> new_esEs24(yvy4000, yvy3000, dah) 52.72/30.42 new_lt22(yvy154, yvy157, ty_Ordering) -> new_lt17(yvy154, yvy157) 52.72/30.42 new_ltEs22(yvy172, yvy173, ty_@0) -> new_ltEs4(yvy172, yvy173) 52.72/30.42 new_ltEs22(yvy172, yvy173, app(app(app(ty_@3, ceb), cec), ced)) -> new_ltEs5(yvy172, yvy173, ceb, cec, ced) 52.72/30.42 new_compare11(yvy247, yvy248, yvy249, yvy250, False, yvy252, fed, fee) -> new_compare110(yvy247, yvy248, yvy249, yvy250, yvy252, fed, fee) 52.72/30.42 new_lt6(yvy1651, yvy1661, ty_@0) -> new_lt4(yvy1651, yvy1661) 52.72/30.42 new_ltEs19(yvy179, yvy180, ty_Int) -> new_ltEs9(yvy179, yvy180) 52.72/30.42 new_esEs25(Right(yvy4000), Right(yvy3000), dad, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.42 new_esEs36(yvy4002, yvy3002, app(ty_[], fae)) -> new_esEs18(yvy4002, yvy3002, fae) 52.72/30.42 new_ltEs23(yvy1651, yvy1661, ty_Ordering) -> new_ltEs16(yvy1651, yvy1661) 52.72/30.42 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Char) -> new_ltEs8(yvy1650, yvy1660) 52.72/30.42 new_esEs9(yvy400, yvy300, app(ty_[], ega)) -> new_esEs18(yvy400, yvy300, ega) 52.72/30.42 new_esEs36(yvy4002, yvy3002, app(ty_Maybe, ehg)) -> new_esEs24(yvy4002, yvy3002, ehg) 52.72/30.42 new_compare210(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, ff, fg) -> new_compare111(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, new_lt22(yvy154, yvy157, gh), new_asAs(new_esEs40(yvy154, yvy157, gh), new_pePe(new_lt23(yvy155, yvy158, ff), new_asAs(new_esEs39(yvy155, yvy158, ff), new_ltEs24(yvy156, yvy159, fg)))), gh, ff, fg) 52.72/30.42 new_esEs29(yvy190, yvy192, ty_Char) -> new_esEs16(yvy190, yvy192) 52.72/30.42 new_esEs38(yvy4000, yvy3000, app(ty_Ratio, fcf)) -> new_esEs28(yvy4000, yvy3000, fcf) 52.72/30.42 new_esEs9(yvy400, yvy300, app(ty_Maybe, efc)) -> new_esEs24(yvy400, yvy300, efc) 52.72/30.42 new_esEs37(yvy4001, yvy3001, app(app(app(ty_@3, faf), fag), fah)) -> new_esEs22(yvy4001, yvy3001, faf, fag, fah) 52.72/30.42 new_esEs5(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.72/30.42 new_ltEs20(yvy191, yvy193, ty_Char) -> new_ltEs8(yvy191, yvy193) 52.72/30.42 new_esEs32(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.72/30.42 new_lt5(yvy1650, yvy1660, app(app(ty_Either, bfb), bfc)) -> new_lt16(yvy1650, yvy1660, bfb, bfc) 52.72/30.42 new_ltEs22(yvy172, yvy173, ty_Double) -> new_ltEs17(yvy172, yvy173) 52.72/30.42 new_lt5(yvy1650, yvy1660, ty_Bool) -> new_lt14(yvy1650, yvy1660) 52.72/30.42 new_compare18(GT, LT) -> GT 52.72/30.42 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Int) -> new_ltEs9(yvy1650, yvy1660) 52.72/30.42 new_compare18(EQ, LT) -> GT 52.72/30.42 new_lt5(yvy1650, yvy1660, app(app(app(ty_@3, bef), beg), beh)) -> new_lt13(yvy1650, yvy1660, bef, beg, beh) 52.72/30.42 new_esEs11(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.72/30.42 new_esEs10(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.72/30.42 new_compare0([], :(yvy300, yvy301), h) -> LT 52.72/30.42 new_asAs(True, yvy208) -> yvy208 52.72/30.42 new_compare10(yvy237, yvy238, False, dgc, dgd) -> GT 52.72/30.42 new_esEs32(yvy4000, yvy3000, app(app(ty_@2, eah), eba)) -> new_esEs21(yvy4000, yvy3000, eah, eba) 52.72/30.42 new_esEs6(yvy402, yvy302, ty_Ordering) -> new_esEs26(yvy402, yvy302) 52.72/30.42 new_ltEs6(yvy1652, yvy1662, app(ty_Ratio, cgd)) -> new_ltEs18(yvy1652, yvy1662, cgd) 52.72/30.42 new_ltEs23(yvy1651, yvy1661, ty_Integer) -> new_ltEs11(yvy1651, yvy1661) 52.72/30.42 new_esEs5(yvy400, yvy300, app(app(ty_@2, dgh), dha)) -> new_esEs21(yvy400, yvy300, dgh, dha) 52.72/30.42 new_compare30(yvy400, yvy300, ty_@0) -> new_compare5(yvy400, yvy300) 52.72/30.42 new_esEs33(yvy1650, yvy1660, ty_Ordering) -> new_esEs26(yvy1650, yvy1660) 52.72/30.42 new_esEs16(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 52.72/30.42 new_esEs5(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.72/30.42 new_ltEs15(Right(yvy1650), Right(yvy1660), ccb, app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs5(yvy1650, yvy1660, ccf, ccg, cch) 52.72/30.42 new_compare30(yvy400, yvy300, ty_Ordering) -> new_compare18(yvy400, yvy300) 52.72/30.42 new_esEs32(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.72/30.42 new_lt21(yvy1650, yvy1660, ty_Char) -> new_lt8(yvy1650, yvy1660) 52.72/30.42 new_compare26(yvy190, yvy191, yvy192, yvy193, True, dg, ce) -> EQ 52.72/30.42 new_ltEs23(yvy1651, yvy1661, app(app(ty_@2, bda), bdb)) -> new_ltEs12(yvy1651, yvy1661, bda, bdb) 52.72/30.42 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_[], cah), cba) -> new_ltEs10(yvy1650, yvy1660, cah) 52.72/30.42 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_[], dac), chd) -> new_esEs18(yvy4000, yvy3000, dac) 52.72/30.42 new_compare15(yvy223, yvy224, False, fhc) -> GT 52.72/30.42 new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) 52.72/30.42 new_compare28(yvy172, yvy173, False, dge, cdg) -> new_compare17(yvy172, yvy173, new_ltEs22(yvy172, yvy173, dge), dge, cdg) 52.72/30.42 new_lt20(yvy190, yvy192, app(ty_[], cd)) -> new_lt10(yvy190, yvy192, cd) 52.72/30.42 new_esEs18(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ddc) -> new_asAs(new_esEs30(yvy4000, yvy3000, ddc), new_esEs18(yvy4001, yvy3001, ddc)) 52.72/30.42 new_lt21(yvy1650, yvy1660, ty_Double) -> new_lt18(yvy1650, yvy1660) 52.72/30.42 new_primCompAux00(yvy133, EQ) -> yvy133 52.72/30.42 new_compare0([], [], h) -> EQ 52.72/30.42 new_lt5(yvy1650, yvy1660, ty_Ordering) -> new_lt17(yvy1650, yvy1660) 52.72/30.42 new_lt22(yvy154, yvy157, app(app(ty_@2, fh), ga)) -> new_lt12(yvy154, yvy157, fh, ga) 52.72/30.42 new_compare7(False, True) -> LT 52.72/30.42 new_esEs33(yvy1650, yvy1660, ty_Bool) -> new_esEs23(yvy1650, yvy1660) 52.72/30.42 new_esEs6(yvy402, yvy302, app(app(ty_Either, fea), feb)) -> new_esEs25(yvy402, yvy302, fea, feb) 52.72/30.42 new_ltEs16(GT, GT) -> True 52.72/30.42 new_esEs33(yvy1650, yvy1660, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs22(yvy1650, yvy1660, bca, bcb, bcc) 52.72/30.42 new_compare13(Float(yvy400, Pos(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.72/30.42 new_esEs37(yvy4001, yvy3001, ty_Double) -> new_esEs27(yvy4001, yvy3001) 52.72/30.42 new_esEs9(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.72/30.42 new_primMulNat0(Zero, Zero) -> Zero 52.72/30.42 new_esEs11(yvy400, yvy300, app(app(ty_@2, edd), ede)) -> new_esEs21(yvy400, yvy300, edd, ede) 52.72/30.42 new_esEs6(yvy402, yvy302, ty_@0) -> new_esEs19(yvy402, yvy302) 52.72/30.42 new_esEs35(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.42 new_esEs29(yvy190, yvy192, ty_Int) -> new_esEs17(yvy190, yvy192) 52.72/30.42 new_lt21(yvy1650, yvy1660, app(ty_[], bbe)) -> new_lt10(yvy1650, yvy1660, bbe) 52.72/30.42 new_compare30(yvy400, yvy300, ty_Integer) -> new_compare14(yvy400, yvy300) 52.72/30.42 new_lt23(yvy155, yvy158, ty_Float) -> new_lt7(yvy155, yvy158) 52.72/30.42 new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) 52.72/30.42 new_ltEs21(yvy165, yvy166, app(ty_Maybe, deg)) -> new_ltEs14(yvy165, yvy166, deg) 52.72/30.42 new_esEs9(yvy400, yvy300, app(app(ty_@2, efd), efe)) -> new_esEs21(yvy400, yvy300, efd, efe) 52.72/30.42 new_esEs37(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.72/30.42 new_lt5(yvy1650, yvy1660, app(app(ty_@2, bed), bee)) -> new_lt12(yvy1650, yvy1660, bed, bee) 52.72/30.42 new_esEs4(yvy401, yvy301, app(ty_Maybe, ege)) -> new_esEs24(yvy401, yvy301, ege) 52.72/30.42 new_ltEs19(yvy179, yvy180, ty_Char) -> new_ltEs8(yvy179, yvy180) 52.72/30.42 new_ltEs23(yvy1651, yvy1661, app(app(ty_Either, bdg), bdh)) -> new_ltEs15(yvy1651, yvy1661, bdg, bdh) 52.72/30.42 new_lt21(yvy1650, yvy1660, app(app(ty_@2, bbg), bbh)) -> new_lt12(yvy1650, yvy1660, bbg, bbh) 52.72/30.42 new_esEs4(yvy401, yvy301, app(ty_[], ehc)) -> new_esEs18(yvy401, yvy301, ehc) 52.72/30.42 new_esEs27(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs17(new_sr0(yvy4000, yvy3001), new_sr0(yvy4001, yvy3000)) 52.72/30.42 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Ordering, cba) -> new_ltEs16(yvy1650, yvy1660) 52.72/30.42 new_esEs31(yvy4001, yvy3001, ty_Char) -> new_esEs16(yvy4001, yvy3001) 52.72/30.42 new_esEs32(yvy4000, yvy3000, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs22(yvy4000, yvy3000, ead, eae, eaf) 52.72/30.42 new_ltEs11(yvy165, yvy166) -> new_fsEs(new_compare14(yvy165, yvy166)) 52.72/30.42 new_esEs5(yvy400, yvy300, app(app(ty_Either, dad), chd)) -> new_esEs25(yvy400, yvy300, dad, chd) 52.72/30.42 new_ltEs13(False, True) -> True 52.72/30.42 new_ltEs23(yvy1651, yvy1661, ty_Float) -> new_ltEs7(yvy1651, yvy1661) 52.72/30.42 new_ltEs13(False, False) -> True 52.72/30.42 new_esEs32(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.72/30.42 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_Ratio, dgg)) -> new_ltEs18(yvy1650, yvy1660, dgg) 52.72/30.42 new_lt5(yvy1650, yvy1660, ty_Double) -> new_lt18(yvy1650, yvy1660) 52.72/30.42 new_esEs36(yvy4002, yvy3002, ty_Integer) -> new_esEs20(yvy4002, yvy3002) 52.72/30.42 new_ltEs22(yvy172, yvy173, app(ty_[], cdf)) -> new_ltEs10(yvy172, yvy173, cdf) 52.72/30.42 new_esEs13(yvy1651, yvy1661, ty_Float) -> new_esEs15(yvy1651, yvy1661) 52.72/30.42 new_ltEs22(yvy172, yvy173, app(ty_Maybe, cee)) -> new_ltEs14(yvy172, yvy173, cee) 52.72/30.42 new_esEs32(yvy4000, yvy3000, app(ty_[], ebe)) -> new_esEs18(yvy4000, yvy3000, ebe) 52.72/30.42 new_lt21(yvy1650, yvy1660, ty_Int) -> new_lt9(yvy1650, yvy1660) 52.72/30.42 new_esEs33(yvy1650, yvy1660, app(app(ty_@2, bbg), bbh)) -> new_esEs21(yvy1650, yvy1660, bbg, bbh) 52.72/30.42 new_esEs9(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.72/30.42 new_esEs5(yvy400, yvy300, app(ty_Maybe, dbh)) -> new_esEs24(yvy400, yvy300, dbh) 52.72/30.42 new_compare12(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Int) -> new_compare8(new_sr0(yvy400, yvy301), new_sr0(yvy300, yvy401)) 52.72/30.42 new_ltEs15(Right(yvy1650), Right(yvy1660), ccb, ty_Int) -> new_ltEs9(yvy1650, yvy1660) 52.72/30.42 new_ltEs22(yvy172, yvy173, app(app(ty_Either, cef), ceg)) -> new_ltEs15(yvy172, yvy173, cef, ceg) 52.72/30.42 new_compare30(yvy400, yvy300, ty_Bool) -> new_compare7(yvy400, yvy300) 52.72/30.42 new_esEs25(Right(yvy4000), Right(yvy3000), dad, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.72/30.42 new_esEs6(yvy402, yvy302, ty_Float) -> new_esEs15(yvy402, yvy302) 52.72/30.42 new_lt20(yvy190, yvy192, ty_Char) -> new_lt8(yvy190, yvy192) 52.72/30.42 new_ltEs22(yvy172, yvy173, app(app(ty_@2, cdh), cea)) -> new_ltEs12(yvy172, yvy173, cdh, cea) 52.72/30.42 new_ltEs24(yvy156, yvy159, app(ty_Ratio, fff)) -> new_ltEs18(yvy156, yvy159, fff) 52.72/30.42 new_ltEs6(yvy1652, yvy1662, ty_Char) -> new_ltEs8(yvy1652, yvy1662) 52.72/30.42 new_ltEs15(Right(yvy1650), Right(yvy1660), ccb, app(app(ty_@2, ccd), cce)) -> new_ltEs12(yvy1650, yvy1660, ccd, cce) 52.72/30.42 new_lt6(yvy1651, yvy1661, ty_Ordering) -> new_lt17(yvy1651, yvy1661) 52.72/30.42 new_esEs7(yvy401, yvy301, app(ty_Ratio, dfg)) -> new_esEs28(yvy401, yvy301, dfg) 52.72/30.42 new_compare13(Float(yvy400, Neg(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.72/30.42 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 52.72/30.42 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 52.72/30.42 new_compare29(Just(yvy400), Nothing, bbc) -> GT 52.72/30.42 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 52.72/30.42 new_lt22(yvy154, yvy157, app(app(ty_Either, gf), gg)) -> new_lt16(yvy154, yvy157, gf, gg) 52.72/30.42 new_esEs14(yvy1650, yvy1660, ty_Char) -> new_esEs16(yvy1650, yvy1660) 52.72/30.42 new_esEs31(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.72/30.42 new_esEs11(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.72/30.42 new_lt22(yvy154, yvy157, ty_Int) -> new_lt9(yvy154, yvy157) 52.72/30.42 new_lt23(yvy155, yvy158, ty_@0) -> new_lt4(yvy155, yvy158) 52.72/30.42 new_ltEs14(Just(yvy1650), Nothing, deg) -> False 52.72/30.42 new_ltEs14(Nothing, Nothing, deg) -> True 52.72/30.42 new_esEs10(yvy400, yvy300, app(ty_[], ecg)) -> new_esEs18(yvy400, yvy300, ecg) 52.72/30.42 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 52.72/30.42 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 52.72/30.42 new_esEs11(yvy400, yvy300, app(ty_Maybe, edc)) -> new_esEs24(yvy400, yvy300, edc) 52.72/30.42 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_Maybe, cbg), cba) -> new_ltEs14(yvy1650, yvy1660, cbg) 52.72/30.42 new_compare31(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), fa, fb, fc) -> new_compare210(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs8(yvy400, yvy300, fa), new_asAs(new_esEs7(yvy401, yvy301, fb), new_esEs6(yvy402, yvy302, fc))), fa, fb, fc) 52.72/30.42 new_lt21(yvy1650, yvy1660, app(ty_Maybe, bcd)) -> new_lt15(yvy1650, yvy1660, bcd) 52.72/30.42 new_compare30(yvy400, yvy300, app(ty_[], ba)) -> new_compare0(yvy400, yvy300, ba) 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) 52.72/30.42 new_esEs5(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.72/30.42 new_esEs36(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) 52.72/30.42 new_esEs38(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 52.72/30.42 new_ltEs22(yvy172, yvy173, ty_Ordering) -> new_ltEs16(yvy172, yvy173) 52.72/30.42 new_compare111(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, yvy269, fef, feg, feh) -> new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, fef, feg, feh) 52.72/30.42 new_ltEs15(Right(yvy1650), Right(yvy1660), ccb, ty_Double) -> new_ltEs17(yvy1650, yvy1660) 52.72/30.42 new_esEs11(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.72/30.42 new_lt5(yvy1650, yvy1660, ty_Char) -> new_lt8(yvy1650, yvy1660) 52.72/30.42 new_lt21(yvy1650, yvy1660, ty_Ordering) -> new_lt17(yvy1650, yvy1660) 52.72/30.42 new_lt5(yvy1650, yvy1660, app(ty_Maybe, bfa)) -> new_lt15(yvy1650, yvy1660, bfa) 52.72/30.42 new_lt5(yvy1650, yvy1660, ty_@0) -> new_lt4(yvy1650, yvy1660) 52.72/30.42 new_ltEs19(yvy179, yvy180, app(ty_Ratio, cgf)) -> new_ltEs18(yvy179, yvy180, cgf) 52.72/30.42 new_lt22(yvy154, yvy157, ty_@0) -> new_lt4(yvy154, yvy157) 52.72/30.42 new_ltEs24(yvy156, yvy159, app(app(ty_@2, bac), bad)) -> new_ltEs12(yvy156, yvy159, bac, bad) 52.72/30.42 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.72/30.42 new_lt22(yvy154, yvy157, ty_Char) -> new_lt8(yvy154, yvy157) 52.72/30.42 new_compare18(EQ, EQ) -> EQ 52.72/30.42 new_esEs37(yvy4001, yvy3001, app(ty_Ratio, fbd)) -> new_esEs28(yvy4001, yvy3001, fbd) 52.72/30.42 new_esEs39(yvy155, yvy158, ty_Float) -> new_esEs15(yvy155, yvy158) 52.72/30.42 new_ltEs21(yvy165, yvy166, ty_Char) -> new_ltEs8(yvy165, yvy166) 52.72/30.42 new_ltEs6(yvy1652, yvy1662, ty_Bool) -> new_ltEs13(yvy1652, yvy1662) 52.72/30.42 new_esEs14(yvy1650, yvy1660, app(ty_Ratio, cgb)) -> new_esEs28(yvy1650, yvy1660, cgb) 52.72/30.42 new_esEs6(yvy402, yvy302, ty_Double) -> new_esEs27(yvy402, yvy302) 52.72/30.42 new_lt20(yvy190, yvy192, ty_Double) -> new_lt18(yvy190, yvy192) 52.72/30.42 new_esEs13(yvy1651, yvy1661, ty_Bool) -> new_esEs23(yvy1651, yvy1661) 52.72/30.42 new_esEs32(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.42 new_not(False) -> True 52.72/30.42 new_esEs33(yvy1650, yvy1660, ty_Integer) -> new_esEs20(yvy1650, yvy1660) 52.72/30.42 new_ltEs8(yvy165, yvy166) -> new_fsEs(new_compare19(yvy165, yvy166)) 52.72/30.42 new_esEs13(yvy1651, yvy1661, app(app(ty_Either, bgd), bge)) -> new_esEs25(yvy1651, yvy1661, bgd, bge) 52.72/30.42 new_compare18(LT, EQ) -> LT 52.72/30.42 new_lt20(yvy190, yvy192, ty_@0) -> new_lt4(yvy190, yvy192) 52.72/30.42 new_esEs13(yvy1651, yvy1661, app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs22(yvy1651, yvy1661, bfh, bga, bgb) 52.72/30.42 new_ltEs23(yvy1651, yvy1661, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs5(yvy1651, yvy1661, bdc, bdd, bde) 52.72/30.42 new_esEs40(yvy154, yvy157, ty_Ordering) -> new_esEs26(yvy154, yvy157) 52.72/30.42 new_esEs38(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.72/30.42 new_compare0(:(yvy400, yvy401), [], h) -> GT 52.72/30.42 new_esEs36(yvy4002, yvy3002, ty_Bool) -> new_esEs23(yvy4002, yvy3002) 52.72/30.42 new_ltEs6(yvy1652, yvy1662, ty_Integer) -> new_ltEs11(yvy1652, yvy1662) 52.72/30.42 new_compare18(GT, EQ) -> GT 52.72/30.42 new_esEs8(yvy400, yvy300, app(ty_Ratio, fge)) -> new_esEs28(yvy400, yvy300, fge) 52.72/30.42 new_esEs21(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), dgh, dha) -> new_asAs(new_esEs32(yvy4000, yvy3000, dgh), new_esEs31(yvy4001, yvy3001, dha)) 52.72/30.42 new_lt17(yvy40, yvy30) -> new_esEs12(new_compare18(yvy40, yvy30)) 52.72/30.42 new_esEs5(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.72/30.42 new_esEs36(yvy4002, yvy3002, app(app(ty_Either, fac), fad)) -> new_esEs25(yvy4002, yvy3002, fac, fad) 52.72/30.42 new_primPlusNat0(Succ(yvy90200), Succ(yvy21000)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21000))) 52.72/30.42 new_ltEs24(yvy156, yvy159, ty_Ordering) -> new_ltEs16(yvy156, yvy159) 52.72/30.42 new_ltEs21(yvy165, yvy166, ty_@0) -> new_ltEs4(yvy165, yvy166) 52.72/30.42 new_ltEs6(yvy1652, yvy1662, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs5(yvy1652, yvy1662, bha, bhb, bhc) 52.72/30.42 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Bool, cba) -> new_ltEs13(yvy1650, yvy1660) 52.72/30.42 new_ltEs6(yvy1652, yvy1662, ty_@0) -> new_ltEs4(yvy1652, yvy1662) 52.72/30.42 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Int, cba) -> new_ltEs9(yvy1650, yvy1660) 52.72/30.42 new_ltEs24(yvy156, yvy159, ty_Integer) -> new_ltEs11(yvy156, yvy159) 52.72/30.42 new_compare30(yvy400, yvy300, app(app(ty_Either, bh), ca)) -> new_compare16(yvy400, yvy300, bh, ca) 52.72/30.42 new_esEs4(yvy401, yvy301, app(app(ty_Either, eha), ehb)) -> new_esEs25(yvy401, yvy301, eha, ehb) 52.72/30.42 new_esEs37(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) 52.72/30.42 new_esEs40(yvy154, yvy157, ty_Float) -> new_esEs15(yvy154, yvy157) 52.72/30.42 new_esEs13(yvy1651, yvy1661, ty_Ordering) -> new_esEs26(yvy1651, yvy1661) 52.72/30.42 new_esEs9(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.72/30.42 new_compare11(yvy247, yvy248, yvy249, yvy250, True, yvy252, fed, fee) -> new_compare110(yvy247, yvy248, yvy249, yvy250, True, fed, fee) 52.72/30.42 new_esEs37(yvy4001, yvy3001, app(ty_[], fbg)) -> new_esEs18(yvy4001, yvy3001, fbg) 52.72/30.42 new_compare25(yvy179, yvy180, False, ceh, cge) -> new_compare10(yvy179, yvy180, new_ltEs19(yvy179, yvy180, cge), ceh, cge) 52.72/30.42 new_ltEs20(yvy191, yvy193, app(ty_Ratio, cgh)) -> new_ltEs18(yvy191, yvy193, cgh) 52.72/30.42 new_lt20(yvy190, yvy192, ty_Int) -> new_lt9(yvy190, yvy192) 52.72/30.42 new_esEs35(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.42 new_compare110(yvy247, yvy248, yvy249, yvy250, False, fed, fee) -> GT 52.72/30.42 new_ltEs21(yvy165, yvy166, ty_Bool) -> new_ltEs13(yvy165, yvy166) 52.72/30.42 new_esEs4(yvy401, yvy301, ty_Double) -> new_esEs27(yvy401, yvy301) 52.72/30.42 new_esEs38(yvy4000, yvy3000, app(app(ty_@2, fcd), fce)) -> new_esEs21(yvy4000, yvy3000, fcd, fce) 52.72/30.42 new_esEs8(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.72/30.42 new_ltEs23(yvy1651, yvy1661, app(ty_Maybe, bdf)) -> new_ltEs14(yvy1651, yvy1661, bdf) 52.72/30.42 new_esEs36(yvy4002, yvy3002, app(app(app(ty_@3, ehd), ehe), ehf)) -> new_esEs22(yvy4002, yvy3002, ehd, ehe, ehf) 52.72/30.42 new_esEs14(yvy1650, yvy1660, ty_Float) -> new_esEs15(yvy1650, yvy1660) 52.72/30.42 new_compare29(Nothing, Nothing, bbc) -> EQ 52.72/30.42 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Double, chd) -> new_esEs27(yvy4000, yvy3000) 52.72/30.42 new_esEs9(yvy400, yvy300, app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs22(yvy400, yvy300, eeh, efa, efb) 52.72/30.42 new_compare29(Nothing, Just(yvy300), bbc) -> LT 52.72/30.42 new_esEs31(yvy4001, yvy3001, ty_Double) -> new_esEs27(yvy4001, yvy3001) 52.72/30.42 new_sr0(yvy400, yvy301) -> new_primMulInt(yvy400, yvy301) 52.72/30.42 new_esEs10(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.72/30.42 new_lt20(yvy190, yvy192, app(ty_Maybe, dd)) -> new_lt15(yvy190, yvy192, dd) 52.72/30.42 new_lt6(yvy1651, yvy1661, app(app(ty_Either, bgd), bge)) -> new_lt16(yvy1651, yvy1661, bgd, bge) 52.72/30.42 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Char, cba) -> new_ltEs8(yvy1650, yvy1660) 52.72/30.42 new_ltEs23(yvy1651, yvy1661, app(ty_Ratio, eeg)) -> new_ltEs18(yvy1651, yvy1661, eeg) 52.72/30.42 new_lt5(yvy1650, yvy1660, ty_Int) -> new_lt9(yvy1650, yvy1660) 52.72/30.42 new_ltEs24(yvy156, yvy159, ty_Bool) -> new_ltEs13(yvy156, yvy159) 52.72/30.42 new_esEs30(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 52.72/30.42 new_esEs11(yvy400, yvy300, app(app(app(ty_@3, ech), eda), edb)) -> new_esEs22(yvy400, yvy300, ech, eda, edb) 52.72/30.42 new_esEs33(yvy1650, yvy1660, app(ty_Ratio, eef)) -> new_esEs28(yvy1650, yvy1660, eef) 52.72/30.42 new_compare0(:(yvy400, yvy401), :(yvy300, yvy301), h) -> new_primCompAux0(yvy400, yvy300, new_compare0(yvy401, yvy301, h), h) 52.72/30.42 new_esEs10(yvy400, yvy300, app(ty_Ratio, ecd)) -> new_esEs28(yvy400, yvy300, ecd) 52.72/30.42 new_esEs9(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.72/30.42 new_lt21(yvy1650, yvy1660, app(app(ty_Either, bce), bcf)) -> new_lt16(yvy1650, yvy1660, bce, bcf) 52.72/30.42 new_ltEs23(yvy1651, yvy1661, ty_@0) -> new_ltEs4(yvy1651, yvy1661) 52.72/30.42 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cha), chb), chc), chd) -> new_esEs22(yvy4000, yvy3000, cha, chb, chc) 52.72/30.42 new_esEs14(yvy1650, yvy1660, app(ty_[], bea)) -> new_esEs18(yvy1650, yvy1660, bea) 52.72/30.42 new_ltEs13(True, False) -> False 52.72/30.42 new_esEs36(yvy4002, yvy3002, ty_Char) -> new_esEs16(yvy4002, yvy3002) 52.72/30.42 new_esEs13(yvy1651, yvy1661, ty_Char) -> new_esEs16(yvy1651, yvy1661) 52.72/30.42 new_esEs36(yvy4002, yvy3002, ty_Ordering) -> new_esEs26(yvy4002, yvy3002) 52.72/30.42 new_compare29(Just(yvy400), Just(yvy300), bbc) -> new_compare27(yvy400, yvy300, new_esEs9(yvy400, yvy300, bbc), bbc) 52.72/30.42 new_esEs18(:(yvy4000, yvy4001), [], ddc) -> False 52.72/30.42 new_esEs18([], :(yvy3000, yvy3001), ddc) -> False 52.72/30.42 new_ltEs24(yvy156, yvy159, app(app(ty_Either, bba), bbb)) -> new_ltEs15(yvy156, yvy159, bba, bbb) 52.72/30.42 new_compare16(Right(yvy400), Right(yvy300), cdd, cde) -> new_compare25(yvy400, yvy300, new_esEs11(yvy400, yvy300, cde), cdd, cde) 52.72/30.42 new_esEs11(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.72/30.42 new_esEs40(yvy154, yvy157, ty_@0) -> new_esEs19(yvy154, yvy157) 52.72/30.42 new_compare16(Right(yvy400), Left(yvy300), cdd, cde) -> GT 52.72/30.42 new_esEs40(yvy154, yvy157, app(app(ty_Either, gf), gg)) -> new_esEs25(yvy154, yvy157, gf, gg) 52.72/30.42 new_ltEs20(yvy191, yvy193, app(ty_[], dh)) -> new_ltEs10(yvy191, yvy193, dh) 52.72/30.42 new_compare30(yvy400, yvy300, app(app(app(ty_@3, bd), be), bf)) -> new_compare31(yvy400, yvy300, bd, be, bf) 52.72/30.42 new_ltEs23(yvy1651, yvy1661, ty_Bool) -> new_ltEs13(yvy1651, yvy1661) 52.72/30.42 new_lt9(yvy40, yvy30) -> new_esEs12(new_compare8(yvy40, yvy30)) 52.72/30.42 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 52.72/30.42 new_ltEs18(yvy165, yvy166, deh) -> new_fsEs(new_compare12(yvy165, yvy166, deh)) 52.72/30.42 new_ltEs22(yvy172, yvy173, app(ty_Ratio, dgf)) -> new_ltEs18(yvy172, yvy173, dgf) 52.72/30.42 new_esEs26(EQ, EQ) -> True 52.72/30.42 new_ltEs21(yvy165, yvy166, ty_Integer) -> new_ltEs11(yvy165, yvy166) 52.72/30.42 new_lt20(yvy190, yvy192, app(app(ty_Either, de), df)) -> new_lt16(yvy190, yvy192, de, df) 52.72/30.42 new_esEs8(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.72/30.42 new_ltEs21(yvy165, yvy166, app(ty_[], bbd)) -> new_ltEs10(yvy165, yvy166, bbd) 52.72/30.42 new_esEs25(Right(yvy4000), Right(yvy3000), dad, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.72/30.42 new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) 52.72/30.42 new_ltEs15(Right(yvy1650), Right(yvy1660), ccb, ty_Float) -> new_ltEs7(yvy1650, yvy1660) 52.72/30.42 new_lt6(yvy1651, yvy1661, ty_Double) -> new_lt18(yvy1651, yvy1661) 52.72/30.42 new_esEs29(yvy190, yvy192, ty_Double) -> new_esEs27(yvy190, yvy192) 52.72/30.42 new_compare30(yvy400, yvy300, ty_Float) -> new_compare13(yvy400, yvy300) 52.72/30.42 new_compare15(yvy223, yvy224, True, fhc) -> LT 52.72/30.42 new_ltEs17(yvy165, yvy166) -> new_fsEs(new_compare9(yvy165, yvy166)) 52.72/30.42 new_esEs38(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.72/30.42 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Integer, cba) -> new_ltEs11(yvy1650, yvy1660) 52.72/30.42 new_esEs26(LT, LT) -> True 52.72/30.42 new_compare110(yvy247, yvy248, yvy249, yvy250, True, fed, fee) -> LT 52.72/30.42 new_esEs36(yvy4002, yvy3002, app(app(ty_@2, ehh), faa)) -> new_esEs21(yvy4002, yvy3002, ehh, faa) 52.72/30.42 new_esEs9(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.72/30.42 new_esEs24(Nothing, Nothing, dbh) -> True 52.72/30.42 new_esEs13(yvy1651, yvy1661, app(app(ty_@2, bff), bfg)) -> new_esEs21(yvy1651, yvy1661, bff, bfg) 52.72/30.42 new_ltEs21(yvy165, yvy166, ty_Int) -> new_ltEs9(yvy165, yvy166) 52.72/30.42 new_ltEs21(yvy165, yvy166, app(ty_Ratio, deh)) -> new_ltEs18(yvy165, yvy166, deh) 52.72/30.42 new_ltEs22(yvy172, yvy173, ty_Bool) -> new_ltEs13(yvy172, yvy173) 52.72/30.42 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 52.72/30.42 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 52.72/30.42 new_ltEs24(yvy156, yvy159, ty_Char) -> new_ltEs8(yvy156, yvy159) 52.72/30.42 new_lt23(yvy155, yvy158, ty_Double) -> new_lt18(yvy155, yvy158) 52.72/30.42 new_esEs14(yvy1650, yvy1660, app(ty_Maybe, bfa)) -> new_esEs24(yvy1650, yvy1660, bfa) 52.72/30.42 new_esEs30(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.72/30.42 new_esEs37(yvy4001, yvy3001, ty_Ordering) -> new_esEs26(yvy4001, yvy3001) 52.72/30.42 new_esEs11(yvy400, yvy300, app(ty_Ratio, edf)) -> new_esEs28(yvy400, yvy300, edf) 52.72/30.42 new_primEqNat0(Zero, Zero) -> True 52.72/30.42 new_esEs25(Right(yvy4000), Right(yvy3000), dad, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.72/30.42 new_esEs37(yvy4001, yvy3001, app(app(ty_@2, fbb), fbc)) -> new_esEs21(yvy4001, yvy3001, fbb, fbc) 52.72/30.42 new_esEs14(yvy1650, yvy1660, app(app(ty_@2, bed), bee)) -> new_esEs21(yvy1650, yvy1660, bed, bee) 52.72/30.42 new_ltEs20(yvy191, yvy193, ty_Int) -> new_ltEs9(yvy191, yvy193) 52.72/30.42 new_esEs4(yvy401, yvy301, ty_@0) -> new_esEs19(yvy401, yvy301) 52.72/30.42 new_esEs24(Nothing, Just(yvy3000), dbh) -> False 52.72/30.42 new_esEs24(Just(yvy4000), Nothing, dbh) -> False 52.72/30.42 new_esEs13(yvy1651, yvy1661, app(ty_[], bfe)) -> new_esEs18(yvy1651, yvy1661, bfe) 52.72/30.42 new_esEs14(yvy1650, yvy1660, ty_Ordering) -> new_esEs26(yvy1650, yvy1660) 52.72/30.42 new_esEs25(Right(yvy4000), Right(yvy3000), dad, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.72/30.42 new_esEs37(yvy4001, yvy3001, app(ty_Maybe, fba)) -> new_esEs24(yvy4001, yvy3001, fba) 52.72/30.42 new_compare9(Double(yvy400, Neg(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.72/30.42 new_lt11(yvy40, yvy30) -> new_esEs12(new_compare14(yvy40, yvy30)) 52.72/30.42 new_compare30(yvy400, yvy300, ty_Char) -> new_compare19(yvy400, yvy300) 52.72/30.42 new_lt22(yvy154, yvy157, ty_Double) -> new_lt18(yvy154, yvy157) 52.72/30.42 new_esEs39(yvy155, yvy158, ty_@0) -> new_esEs19(yvy155, yvy158) 52.72/30.42 new_asAs(False, yvy208) -> False 52.72/30.42 new_ltEs23(yvy1651, yvy1661, ty_Char) -> new_ltEs8(yvy1651, yvy1661) 52.72/30.42 new_ltEs6(yvy1652, yvy1662, app(ty_[], bgf)) -> new_ltEs10(yvy1652, yvy1662, bgf) 52.72/30.42 new_ltEs19(yvy179, yvy180, app(ty_[], cfa)) -> new_ltEs10(yvy179, yvy180, cfa) 52.72/30.42 new_compare28(yvy172, yvy173, True, dge, cdg) -> EQ 52.72/30.42 new_ltEs6(yvy1652, yvy1662, ty_Int) -> new_ltEs9(yvy1652, yvy1662) 52.72/30.42 new_esEs38(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.72/30.42 new_compare111(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, False, yvy269, fef, feg, feh) -> new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, yvy269, fef, feg, feh) 52.72/30.42 new_esEs38(yvy4000, yvy3000, app(app(ty_Either, fcg), fch)) -> new_esEs25(yvy4000, yvy3000, fcg, fch) 52.72/30.42 new_ltEs22(yvy172, yvy173, ty_Integer) -> new_ltEs11(yvy172, yvy173) 52.72/30.42 new_esEs34(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.72/30.42 new_ltEs24(yvy156, yvy159, app(ty_Maybe, bah)) -> new_ltEs14(yvy156, yvy159, bah) 52.72/30.42 new_esEs7(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) 52.72/30.42 new_compare30(yvy400, yvy300, app(ty_Ratio, ffa)) -> new_compare12(yvy400, yvy300, ffa) 52.72/30.42 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_Maybe, che), chd) -> new_esEs24(yvy4000, yvy3000, che) 52.72/30.42 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_@0, cba) -> new_ltEs4(yvy1650, yvy1660) 52.72/30.42 new_compare14(Integer(yvy400), Integer(yvy300)) -> new_primCmpInt(yvy400, yvy300) 52.72/30.42 new_esEs11(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.72/30.42 new_ltEs21(yvy165, yvy166, app(app(app(ty_@3, bfd), beb), bec)) -> new_ltEs5(yvy165, yvy166, bfd, beb, bec) 52.72/30.42 52.72/30.42 The set Q consists of the following terms: 52.72/30.42 52.72/30.42 new_esEs7(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_esEs8(x0, x1, ty_Ordering) 52.72/30.42 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_esEs24(Nothing, Just(x0), x1) 52.72/30.42 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_esEs7(x0, x1, ty_Char) 52.72/30.42 new_primPlusNat0(Succ(x0), Zero) 52.72/30.42 new_lt23(x0, x1, ty_Bool) 52.72/30.42 new_compare17(x0, x1, False, x2, x3) 52.72/30.42 new_esEs9(x0, x1, ty_Float) 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 52.72/30.42 new_esEs10(x0, x1, ty_Int) 52.72/30.42 new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 52.72/30.42 new_compare25(x0, x1, False, x2, x3) 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 52.72/30.42 new_ltEs21(x0, x1, ty_Double) 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 52.72/30.42 new_compare30(x0, x1, ty_Int) 52.72/30.42 new_esEs29(x0, x1, ty_@0) 52.72/30.42 new_compare10(x0, x1, True, x2, x3) 52.72/30.42 new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_asAs(False, x0) 52.72/30.42 new_ltEs6(x0, x1, ty_Integer) 52.72/30.42 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_compare26(x0, x1, x2, x3, False, x4, x5) 52.72/30.42 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_esEs8(x0, x1, ty_Double) 52.72/30.42 new_compare29(Just(x0), Nothing, x1) 52.72/30.42 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_lt20(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_esEs38(x0, x1, app(ty_[], x2)) 52.72/30.42 new_lt20(x0, x1, ty_@0) 52.72/30.42 new_compare30(x0, x1, ty_Char) 52.72/30.42 new_ltEs21(x0, x1, ty_Ordering) 52.72/30.42 new_ltEs24(x0, x1, ty_Float) 52.72/30.42 new_sr(Integer(x0), Integer(x1)) 52.72/30.42 new_esEs11(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_ltEs15(Right(x0), Right(x1), x2, ty_Integer) 52.72/30.42 new_lt23(x0, x1, ty_@0) 52.72/30.42 new_compare15(x0, x1, False, x2) 52.72/30.42 new_esEs8(x0, x1, ty_Int) 52.72/30.42 new_ltEs10(x0, x1, x2) 52.72/30.42 new_esEs29(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_esEs29(x0, x1, ty_Bool) 52.72/30.42 new_lt20(x0, x1, ty_Bool) 52.72/30.42 new_esEs10(x0, x1, ty_Ordering) 52.72/30.42 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_lt22(x0, x1, ty_@0) 52.72/30.42 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 52.72/30.42 new_lt5(x0, x1, ty_Float) 52.72/30.42 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_compare30(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 52.72/30.42 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_ltEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 52.72/30.42 new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 52.72/30.42 new_primEqInt(Pos(Zero), Pos(Zero)) 52.72/30.42 new_primMulNat0(Zero, Succ(x0)) 52.72/30.42 new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) 52.72/30.42 new_esEs7(x0, x1, ty_Int) 52.72/30.42 new_ltEs19(x0, x1, ty_Integer) 52.72/30.42 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_esEs6(x0, x1, ty_Bool) 52.72/30.42 new_esEs25(Left(x0), Left(x1), ty_Int, x2) 52.72/30.42 new_lt23(x0, x1, ty_Integer) 52.72/30.42 new_ltEs17(x0, x1) 52.72/30.42 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_primCmpNat0(Zero, Succ(x0)) 52.72/30.42 new_lt20(x0, x1, ty_Char) 52.72/30.42 new_esEs26(LT, GT) 52.72/30.42 new_esEs26(GT, LT) 52.72/30.42 new_primCompAux00(x0, GT) 52.72/30.42 new_ltEs20(x0, x1, ty_Ordering) 52.72/30.42 new_ltEs19(x0, x1, ty_Float) 52.72/30.42 new_sr0(x0, x1) 52.72/30.42 new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 52.72/30.42 new_ltEs7(x0, x1) 52.72/30.42 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 52.72/30.42 new_ltEs23(x0, x1, app(ty_[], x2)) 52.72/30.42 new_esEs7(x0, x1, ty_Ordering) 52.72/30.42 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 52.72/30.42 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_primEqInt(Neg(Zero), Neg(Zero)) 52.72/30.42 new_ltEs11(x0, x1) 52.72/30.42 new_esEs25(Left(x0), Left(x1), ty_Char, x2) 52.72/30.42 new_ltEs16(GT, EQ) 52.72/30.42 new_ltEs16(EQ, GT) 52.72/30.42 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 52.72/30.42 new_primMulNat0(Succ(x0), Zero) 52.72/30.42 new_esEs40(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_lt20(x0, x1, app(ty_[], x2)) 52.72/30.42 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_ltEs15(Right(x0), Right(x1), x2, ty_Float) 52.72/30.42 new_esEs39(x0, x1, ty_Int) 52.72/30.42 new_esEs25(Left(x0), Left(x1), ty_Double, x2) 52.72/30.42 new_esEs6(x0, x1, ty_Integer) 52.72/30.42 new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 52.72/30.42 new_ltEs21(x0, x1, ty_Char) 52.72/30.42 new_ltEs23(x0, x1, ty_Float) 52.72/30.42 new_lt11(x0, x1) 52.72/30.42 new_esEs29(x0, x1, ty_Integer) 52.72/30.42 new_esEs31(x0, x1, app(ty_[], x2)) 52.72/30.42 new_lt20(x0, x1, ty_Integer) 52.72/30.42 new_ltEs13(False, True) 52.72/30.42 new_ltEs24(x0, x1, ty_Integer) 52.72/30.42 new_ltEs13(True, False) 52.72/30.42 new_ltEs16(LT, LT) 52.72/30.42 new_compare11(x0, x1, x2, x3, True, x4, x5, x6) 52.72/30.42 new_compare18(EQ, LT) 52.72/30.42 new_compare18(LT, EQ) 52.72/30.42 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_ltEs15(Right(x0), Right(x1), x2, ty_@0) 52.72/30.42 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_ltEs20(x0, x1, ty_Int) 52.72/30.42 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 52.72/30.42 new_compare29(Nothing, Nothing, x0) 52.72/30.42 new_esEs8(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_lt16(x0, x1, x2, x3) 52.72/30.42 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_compare29(Just(x0), Just(x1), x2) 52.72/30.42 new_lt22(x0, x1, ty_Ordering) 52.72/30.42 new_compare27(x0, x1, True, x2) 52.72/30.42 new_esEs8(x0, x1, ty_Char) 52.72/30.42 new_lt22(x0, x1, app(ty_[], x2)) 52.72/30.42 new_ltEs23(x0, x1, ty_@0) 52.72/30.42 new_esEs25(Right(x0), Right(x1), x2, ty_Float) 52.72/30.42 new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) 52.72/30.42 new_esEs33(x0, x1, ty_Float) 52.72/30.42 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_esEs9(x0, x1, ty_Integer) 52.72/30.42 new_lt6(x0, x1, ty_Float) 52.72/30.42 new_compare18(LT, LT) 52.72/30.42 new_esEs40(x0, x1, app(ty_[], x2)) 52.72/30.42 new_esEs35(x0, x1, ty_Integer) 52.72/30.42 new_ltEs20(x0, x1, ty_Char) 52.72/30.42 new_ltEs22(x0, x1, ty_Double) 52.72/30.42 new_ltEs21(x0, x1, ty_Int) 52.72/30.42 new_esEs25(Left(x0), Left(x1), ty_Bool, x2) 52.72/30.42 new_compare30(x0, x1, ty_Double) 52.72/30.42 new_primPlusNat0(Zero, Succ(x0)) 52.72/30.42 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_esEs37(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_esEs20(Integer(x0), Integer(x1)) 52.72/30.42 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_ltEs14(Just(x0), Just(x1), ty_Integer) 52.72/30.42 new_primEqInt(Pos(Zero), Neg(Zero)) 52.72/30.42 new_primEqInt(Neg(Zero), Pos(Zero)) 52.72/30.42 new_esEs32(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_lt6(x0, x1, app(ty_[], x2)) 52.72/30.42 new_esEs5(x0, x1, ty_Float) 52.72/30.42 new_esEs39(x0, x1, ty_Double) 52.72/30.42 new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) 52.72/30.42 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_ltEs20(x0, x1, ty_Double) 52.72/30.42 new_esEs11(x0, x1, ty_Float) 52.72/30.42 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 52.72/30.42 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 52.72/30.42 new_esEs40(x0, x1, ty_Ordering) 52.72/30.42 new_esEs9(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_ltEs15(Left(x0), Left(x1), ty_Integer, x2) 52.72/30.42 new_esEs29(x0, x1, ty_Ordering) 52.72/30.42 new_ltEs15(Right(x0), Left(x1), x2, x3) 52.72/30.42 new_ltEs15(Left(x0), Right(x1), x2, x3) 52.72/30.42 new_esEs34(x0, x1, ty_Integer) 52.72/30.42 new_esEs8(x0, x1, ty_@0) 52.72/30.42 new_pePe(False, x0) 52.72/30.42 new_esEs36(x0, x1, ty_Double) 52.72/30.42 new_lt23(x0, x1, ty_Int) 52.72/30.42 new_lt17(x0, x1) 52.72/30.42 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_esEs29(x0, x1, app(ty_[], x2)) 52.72/30.42 new_compare30(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_compare18(GT, GT) 52.72/30.42 new_ltEs21(x0, x1, app(ty_[], x2)) 52.72/30.42 new_esEs39(x0, x1, ty_Char) 52.72/30.42 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_compare10(x0, x1, False, x2, x3) 52.72/30.42 new_ltEs14(Nothing, Just(x0), x1) 52.72/30.42 new_lt23(x0, x1, ty_Char) 52.72/30.42 new_primCompAux0(x0, x1, x2, x3) 52.72/30.42 new_compare25(x0, x1, True, x2, x3) 52.72/30.42 new_compare7(True, True) 52.72/30.42 new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 52.72/30.42 new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) 52.72/30.42 new_primEqNat0(Succ(x0), Zero) 52.72/30.42 new_primCmpNat0(Succ(x0), Zero) 52.72/30.42 new_compare30(x0, x1, ty_@0) 52.72/30.42 new_esEs6(x0, x1, ty_Ordering) 52.72/30.42 new_compare0([], [], x0) 52.72/30.42 new_lt19(x0, x1, x2) 52.72/30.42 new_lt23(x0, x1, ty_Float) 52.72/30.42 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 52.72/30.42 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_lt23(x0, x1, ty_Double) 52.72/30.42 new_esEs6(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_esEs8(x0, x1, ty_Bool) 52.72/30.42 new_compare15(x0, x1, True, x2) 52.72/30.42 new_esEs39(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_esEs23(True, True) 52.72/30.42 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_compare17(x0, x1, True, x2, x3) 52.72/30.42 new_esEs13(x0, x1, ty_Double) 52.72/30.42 new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 52.72/30.42 new_compare0([], :(x0, x1), x2) 52.72/30.42 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 52.72/30.42 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 52.72/30.42 new_lt21(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_lt13(x0, x1, x2, x3, x4) 52.72/30.42 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) 52.72/30.42 new_esEs23(False, False) 52.72/30.42 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_esEs29(x0, x1, ty_Float) 52.72/30.42 new_compare19(Char(x0), Char(x1)) 52.72/30.42 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_esEs33(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_esEs25(Left(x0), Left(x1), ty_Integer, x2) 52.72/30.42 new_esEs30(x0, x1, ty_Float) 52.72/30.42 new_esEs32(x0, x1, ty_Double) 52.72/30.42 new_primPlusNat0(Succ(x0), Succ(x1)) 52.72/30.42 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_primEqNat0(Succ(x0), Succ(x1)) 52.72/30.42 new_esEs31(x0, x1, ty_Float) 52.72/30.42 new_compare18(EQ, GT) 52.72/30.42 new_esEs24(Just(x0), Just(x1), ty_Float) 52.72/30.42 new_compare18(GT, EQ) 52.72/30.42 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_ltEs16(GT, GT) 52.72/30.42 new_esEs39(x0, x1, app(ty_[], x2)) 52.72/30.42 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 52.72/30.42 new_lt6(x0, x1, ty_Integer) 52.72/30.42 new_ltEs22(x0, x1, ty_Char) 52.72/30.42 new_ltEs24(x0, x1, ty_Bool) 52.72/30.42 new_lt5(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_esEs31(x0, x1, ty_Char) 52.72/30.42 new_esEs7(x0, x1, app(ty_[], x2)) 52.72/30.42 new_esEs12(GT) 52.72/30.42 new_lt20(x0, x1, ty_Ordering) 52.72/30.42 new_esEs33(x0, x1, ty_@0) 52.72/30.42 new_esEs10(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_esEs26(LT, EQ) 52.72/30.42 new_esEs26(EQ, LT) 52.72/30.42 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_esEs6(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 52.72/30.42 new_ltEs19(x0, x1, ty_@0) 52.72/30.42 new_ltEs23(x0, x1, ty_Int) 52.72/30.42 new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_ltEs16(LT, EQ) 52.72/30.42 new_ltEs16(EQ, LT) 52.72/30.42 new_esEs26(GT, GT) 52.72/30.42 new_lt10(x0, x1, x2) 52.72/30.42 new_ltEs20(x0, x1, ty_@0) 52.72/30.42 new_lt22(x0, x1, ty_Float) 52.72/30.42 new_esEs14(x0, x1, ty_Integer) 52.72/30.42 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_esEs30(x0, x1, ty_Ordering) 52.72/30.42 new_lt21(x0, x1, ty_Float) 52.72/30.42 new_esEs36(x0, x1, ty_Ordering) 52.72/30.42 new_ltEs22(x0, x1, ty_Int) 52.72/30.42 new_esEs24(Just(x0), Just(x1), ty_Char) 52.72/30.42 new_esEs30(x0, x1, ty_Int) 52.72/30.42 new_lt22(x0, x1, ty_Integer) 52.72/30.42 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_lt20(x0, x1, ty_Double) 52.72/30.42 new_ltEs23(x0, x1, ty_Char) 52.72/30.42 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_esEs9(x0, x1, ty_@0) 52.72/30.42 new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) 52.72/30.42 new_esEs24(Just(x0), Just(x1), ty_Int) 52.72/30.42 new_ltEs18(x0, x1, x2) 52.72/30.42 new_ltEs24(x0, x1, ty_Char) 52.72/30.42 new_esEs31(x0, x1, ty_Int) 52.72/30.42 new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.72/30.42 new_lt7(x0, x1) 52.72/30.42 new_esEs4(x0, x1, ty_Float) 52.72/30.42 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_esEs10(x0, x1, app(ty_[], x2)) 52.72/30.42 new_esEs4(x0, x1, ty_Integer) 52.72/30.42 new_ltEs19(x0, x1, app(ty_[], x2)) 52.72/30.42 new_esEs14(x0, x1, ty_Float) 52.72/30.42 new_primCmpInt(Neg(Zero), Neg(Zero)) 52.72/30.42 new_esEs4(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_lt6(x0, x1, ty_Ordering) 52.72/30.42 new_ltEs22(x0, x1, ty_Float) 52.72/30.42 new_ltEs15(Right(x0), Right(x1), x2, ty_Double) 52.72/30.42 new_esEs40(x0, x1, ty_@0) 52.72/30.42 new_esEs37(x0, x1, ty_Char) 52.72/30.42 new_esEs24(Just(x0), Nothing, x1) 52.72/30.42 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_esEs7(x0, x1, ty_Double) 52.72/30.42 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_esEs7(x0, x1, ty_@0) 52.72/30.42 new_esEs25(Left(x0), Left(x1), ty_@0, x2) 52.72/30.42 new_esEs30(x0, x1, ty_Char) 52.72/30.42 new_ltEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 52.72/30.42 new_esEs29(x0, x1, ty_Char) 52.72/30.42 new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) 52.72/30.42 new_compare0(:(x0, x1), [], x2) 52.72/30.42 new_lt22(x0, x1, ty_Int) 52.72/30.42 new_primCmpInt(Pos(Zero), Neg(Zero)) 52.72/30.42 new_primCmpInt(Neg(Zero), Pos(Zero)) 52.72/30.42 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_ltEs23(x0, x1, ty_Ordering) 52.72/30.42 new_esEs14(x0, x1, ty_Bool) 52.72/30.42 new_esEs37(x0, x1, ty_Int) 52.72/30.42 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_esEs13(x0, x1, app(ty_[], x2)) 52.72/30.42 new_esEs38(x0, x1, ty_@0) 52.72/30.42 new_ltEs14(Just(x0), Just(x1), ty_Double) 52.72/30.42 new_compare27(x0, x1, False, x2) 52.72/30.42 new_esEs39(x0, x1, ty_Integer) 52.72/30.42 new_lt21(x0, x1, app(ty_[], x2)) 52.72/30.42 new_ltEs19(x0, x1, ty_Double) 52.72/30.42 new_esEs30(x0, x1, ty_Integer) 52.72/30.42 new_ltEs15(Left(x0), Left(x1), ty_Double, x2) 52.72/30.42 new_esEs10(x0, x1, ty_@0) 52.72/30.42 new_compare14(Integer(x0), Integer(x1)) 52.72/30.42 new_esEs6(x0, x1, ty_Char) 52.72/30.42 new_esEs25(Right(x0), Right(x1), x2, ty_Integer) 52.72/30.42 new_esEs4(x0, x1, ty_Int) 52.72/30.42 new_compare11(x0, x1, x2, x3, False, x4, x5, x6) 52.72/30.42 new_ltEs6(x0, x1, ty_@0) 52.72/30.42 new_ltEs23(x0, x1, ty_Bool) 52.72/30.42 new_compare7(False, False) 52.72/30.42 new_esEs10(x0, x1, ty_Double) 52.72/30.42 new_esEs32(x0, x1, app(ty_[], x2)) 52.72/30.42 new_lt22(x0, x1, ty_Char) 52.72/30.42 new_lt18(x0, x1) 52.72/30.42 new_compare28(x0, x1, True, x2, x3) 52.72/30.42 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_ltEs23(x0, x1, ty_Integer) 52.72/30.42 new_esEs14(x0, x1, ty_Int) 52.72/30.42 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 52.72/30.42 new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_esEs39(x0, x1, ty_Ordering) 52.72/30.42 new_lt22(x0, x1, ty_Bool) 52.72/30.42 new_lt5(x0, x1, ty_@0) 52.72/30.42 new_lt5(x0, x1, ty_Double) 52.72/30.42 new_esEs6(x0, x1, ty_Float) 52.72/30.42 new_esEs4(x0, x1, ty_Char) 52.72/30.42 new_esEs32(x0, x1, ty_@0) 52.72/30.42 new_esEs37(x0, x1, ty_Float) 52.72/30.42 new_esEs6(x0, x1, ty_Int) 52.72/30.42 new_ltEs14(Just(x0), Just(x1), ty_@0) 52.72/30.42 new_lt20(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_esEs35(x0, x1, ty_Int) 52.72/30.42 new_esEs40(x0, x1, ty_Double) 52.72/30.42 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_esEs29(x0, x1, ty_Int) 52.72/30.42 new_esEs4(x0, x1, ty_Bool) 52.72/30.42 new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 52.72/30.42 new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 52.72/30.42 new_ltEs15(Left(x0), Left(x1), app(ty_[], x2), x3) 52.72/30.42 new_esEs14(x0, x1, ty_Char) 52.72/30.42 new_compare0(:(x0, x1), :(x2, x3), x4) 52.72/30.42 new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 52.72/30.42 new_esEs38(x0, x1, ty_Double) 52.72/30.42 new_compare110(x0, x1, x2, x3, True, x4, x5) 52.72/30.42 new_ltEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 52.72/30.42 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_esEs26(EQ, EQ) 52.72/30.42 new_ltEs13(True, True) 52.72/30.42 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_esEs8(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_ltEs6(x0, x1, ty_Double) 52.72/30.42 new_esEs8(x0, x1, ty_Integer) 52.72/30.42 new_ltEs15(Left(x0), Left(x1), ty_@0, x2) 52.72/30.42 new_lt5(x0, x1, ty_Int) 52.72/30.42 new_esEs37(x0, x1, ty_@0) 52.72/30.42 new_primMulNat0(Succ(x0), Succ(x1)) 52.72/30.42 new_esEs23(False, True) 52.72/30.42 new_esEs23(True, False) 52.72/30.42 new_esEs26(LT, LT) 52.72/30.42 new_esEs30(x0, x1, ty_@0) 52.72/30.42 new_esEs13(x0, x1, ty_@0) 52.72/30.42 new_ltEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 52.72/30.42 new_ltEs21(x0, x1, ty_Float) 52.72/30.42 new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) 52.72/30.42 new_esEs9(x0, x1, ty_Ordering) 52.72/30.42 new_esEs40(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_esEs9(x0, x1, ty_Double) 52.72/30.42 new_esEs24(Just(x0), Just(x1), ty_Bool) 52.72/30.42 new_ltEs16(EQ, EQ) 52.72/30.42 new_ltEs20(x0, x1, app(ty_[], x2)) 52.72/30.42 new_esEs29(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 52.72/30.42 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_compare18(LT, GT) 52.72/30.42 new_compare18(GT, LT) 52.72/30.42 new_esEs11(x0, x1, ty_Int) 52.72/30.42 new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) 52.72/30.42 new_primCompAux00(x0, EQ) 52.72/30.42 new_lt6(x0, x1, ty_Char) 52.72/30.42 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_primMulNat0(Zero, Zero) 52.72/30.42 new_esEs5(x0, x1, ty_Ordering) 52.72/30.42 new_ltEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) 52.72/30.42 new_esEs31(x0, x1, ty_Bool) 52.72/30.42 new_lt12(x0, x1, x2, x3) 52.72/30.42 new_compare5(@0, @0) 52.72/30.42 new_esEs5(x0, x1, ty_Int) 52.72/30.42 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_ltEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 52.72/30.42 new_pePe(True, x0) 52.72/30.42 new_esEs31(x0, x1, ty_Integer) 52.72/30.42 new_esEs30(x0, x1, ty_Bool) 52.72/30.42 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_esEs7(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_esEs11(x0, x1, ty_Char) 52.72/30.42 new_esEs24(Just(x0), Just(x1), ty_Integer) 52.72/30.42 new_esEs39(x0, x1, ty_Float) 52.72/30.42 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_esEs10(x0, x1, ty_Float) 52.72/30.42 new_esEs5(x0, x1, ty_Double) 52.72/30.42 new_esEs9(x0, x1, ty_Int) 52.72/30.42 new_esEs6(x0, x1, app(ty_[], x2)) 52.72/30.42 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_esEs11(x0, x1, ty_Double) 52.72/30.42 new_ltEs20(x0, x1, ty_Float) 52.72/30.42 new_esEs5(x0, x1, ty_Char) 52.72/30.42 new_esEs33(x0, x1, ty_Double) 52.72/30.42 new_ltEs24(x0, x1, ty_Ordering) 52.72/30.42 new_primCmpNat0(Succ(x0), Succ(x1)) 52.72/30.42 new_esEs4(x0, x1, ty_@0) 52.72/30.42 new_ltEs22(x0, x1, ty_Integer) 52.72/30.42 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 52.72/30.42 new_esEs32(x0, x1, ty_Bool) 52.72/30.42 new_esEs31(x0, x1, ty_@0) 52.72/30.42 new_compare7(True, False) 52.72/30.42 new_compare7(False, True) 52.72/30.42 new_esEs11(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_esEs37(x0, x1, ty_Bool) 52.72/30.42 new_esEs24(Just(x0), Just(x1), ty_@0) 52.72/30.42 new_ltEs24(x0, x1, ty_Int) 52.72/30.42 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_ltEs20(x0, x1, ty_Integer) 52.72/30.42 new_esEs37(x0, x1, app(ty_[], x2)) 52.72/30.42 new_ltEs19(x0, x1, ty_Ordering) 52.72/30.42 new_esEs13(x0, x1, ty_Bool) 52.72/30.42 new_ltEs24(x0, x1, ty_Double) 52.72/30.42 new_esEs37(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_compare110(x0, x1, x2, x3, False, x4, x5) 52.72/30.42 new_esEs36(x0, x1, ty_Integer) 52.72/30.42 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_compare8(x0, x1) 52.72/30.42 new_primPlusNat0(Zero, Zero) 52.72/30.42 new_esEs33(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_lt21(x0, x1, ty_@0) 52.72/30.42 new_lt21(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_lt8(x0, x1) 52.72/30.42 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_ltEs22(x0, x1, ty_Bool) 52.72/30.42 new_esEs10(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_not(True) 52.72/30.42 new_esEs4(x0, x1, ty_Ordering) 52.72/30.42 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_esEs32(x0, x1, ty_Integer) 52.72/30.42 new_esEs7(x0, x1, ty_Float) 52.72/30.42 new_esEs5(x0, x1, app(ty_[], x2)) 52.72/30.42 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 52.72/30.42 new_lt6(x0, x1, ty_Bool) 52.72/30.42 new_ltEs14(Just(x0), Just(x1), ty_Ordering) 52.72/30.42 new_esEs24(Nothing, Nothing, x0) 52.72/30.42 new_ltEs13(False, False) 52.72/30.42 new_ltEs24(x0, x1, app(ty_[], x2)) 52.72/30.42 new_lt21(x0, x1, ty_Int) 52.72/30.42 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_lt6(x0, x1, ty_Double) 52.72/30.42 new_esEs33(x0, x1, app(ty_[], x2)) 52.72/30.42 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 52.72/30.42 new_lt21(x0, x1, ty_Integer) 52.72/30.42 new_esEs36(x0, x1, ty_@0) 52.72/30.42 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_esEs14(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_esEs9(x0, x1, ty_Char) 52.72/30.42 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_esEs25(Right(x0), Right(x1), x2, ty_Bool) 52.72/30.42 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 52.72/30.42 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 52.72/30.42 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_esEs14(x0, x1, ty_Ordering) 52.72/30.42 new_esEs5(x0, x1, ty_@0) 52.72/30.42 new_esEs38(x0, x1, ty_Ordering) 52.72/30.42 new_esEs36(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_lt21(x0, x1, ty_Char) 52.72/30.42 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_ltEs6(x0, x1, ty_Ordering) 52.72/30.42 new_lt21(x0, x1, ty_Double) 52.72/30.42 new_esEs39(x0, x1, ty_Bool) 52.72/30.42 new_lt23(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_ltEs14(Nothing, Nothing, x0) 52.72/30.42 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_esEs30(x0, x1, app(ty_[], x2)) 52.72/30.42 new_esEs32(x0, x1, ty_Ordering) 52.72/30.42 new_esEs36(x0, x1, ty_Bool) 52.72/30.42 new_esEs25(Right(x0), Right(x1), x2, ty_@0) 52.72/30.42 new_esEs11(x0, x1, ty_@0) 52.72/30.42 new_esEs39(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_esEs9(x0, x1, app(ty_[], x2)) 52.72/30.42 new_lt5(x0, x1, ty_Ordering) 52.72/30.42 new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 52.72/30.42 new_lt21(x0, x1, ty_Bool) 52.72/30.42 new_esEs13(x0, x1, ty_Ordering) 52.72/30.42 new_esEs13(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_compare30(x0, x1, ty_Float) 52.72/30.42 new_esEs25(Right(x0), Right(x1), x2, ty_Char) 52.72/30.42 new_esEs25(Right(x0), Right(x1), x2, ty_Double) 52.72/30.42 new_esEs39(x0, x1, ty_@0) 52.72/30.42 new_ltEs22(x0, x1, app(ty_[], x2)) 52.72/30.42 new_esEs8(x0, x1, app(ty_[], x2)) 52.72/30.42 new_ltEs8(x0, x1) 52.72/30.42 new_esEs4(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_ltEs16(LT, GT) 52.72/30.42 new_ltEs16(GT, LT) 52.72/30.42 new_compare30(x0, x1, app(ty_[], x2)) 52.72/30.42 new_esEs5(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_lt5(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_lt6(x0, x1, ty_@0) 52.72/30.42 new_lt14(x0, x1) 52.72/30.42 new_esEs37(x0, x1, ty_Integer) 52.72/30.42 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_esEs13(x0, x1, ty_Integer) 52.72/30.42 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_ltEs20(x0, x1, ty_Bool) 52.72/30.42 new_lt23(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_esEs31(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_lt6(x0, x1, ty_Int) 52.72/30.42 new_primCmpInt(Pos(Zero), Pos(Zero)) 52.72/30.42 new_esEs14(x0, x1, app(ty_[], x2)) 52.72/30.42 new_esEs8(x0, x1, ty_Float) 52.72/30.42 new_esEs25(Right(x0), Right(x1), x2, ty_Int) 52.72/30.42 new_ltEs15(Left(x0), Left(x1), ty_Ordering, x2) 52.72/30.42 new_asAs(True, x0) 52.72/30.42 new_esEs24(Just(x0), Just(x1), ty_Ordering) 52.72/30.42 new_ltEs6(x0, x1, ty_Char) 52.72/30.42 new_esEs9(x0, x1, ty_Bool) 52.72/30.42 new_lt6(x0, x1, app(ty_Maybe, x2)) 52.72/30.42 new_compare30(x0, x1, ty_Integer) 52.72/30.42 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 52.72/30.42 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.42 new_ltEs21(x0, x1, ty_@0) 52.72/30.42 new_esEs11(x0, x1, app(ty_[], x2)) 52.72/30.42 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_ltEs15(Right(x0), Right(x1), x2, ty_Char) 52.72/30.42 new_ltEs21(x0, x1, ty_Bool) 52.72/30.42 new_ltEs24(x0, x1, ty_@0) 52.72/30.42 new_esEs40(x0, x1, ty_Integer) 52.72/30.42 new_esEs30(x0, x1, ty_Double) 52.72/30.42 new_lt5(x0, x1, app(ty_[], x2)) 52.72/30.42 new_esEs10(x0, x1, ty_Integer) 52.72/30.42 new_esEs24(Just(x0), Just(x1), ty_Double) 52.72/30.42 new_esEs31(x0, x1, ty_Ordering) 52.72/30.42 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.42 new_lt6(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_esEs6(x0, x1, ty_Double) 52.72/30.42 new_esEs36(x0, x1, ty_Char) 52.72/30.42 new_esEs38(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_ltEs14(Just(x0), Just(x1), ty_Char) 52.72/30.42 new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.72/30.42 new_esEs18(:(x0, x1), :(x2, x3), x4) 52.72/30.42 new_ltEs15(Left(x0), Left(x1), ty_Char, x2) 52.72/30.42 new_esEs17(x0, x1) 52.72/30.42 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.42 new_esEs5(x0, x1, app(ty_Ratio, x2)) 52.72/30.42 new_lt20(x0, x1, ty_Float) 52.72/30.42 new_fsEs(x0) 52.72/30.42 new_lt23(x0, x1, ty_Ordering) 52.72/30.42 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.43 new_compare29(Nothing, Just(x0), x1) 52.72/30.43 new_lt5(x0, x1, ty_Integer) 52.72/30.43 new_primMulInt(Neg(x0), Neg(x1)) 52.72/30.43 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.43 new_esEs37(x0, x1, ty_Ordering) 52.72/30.43 new_esEs30(x0, x1, app(ty_Maybe, x2)) 52.72/30.43 new_esEs36(x0, x1, ty_Int) 52.72/30.43 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 52.72/30.43 new_esEs26(EQ, GT) 52.72/30.43 new_esEs26(GT, EQ) 52.72/30.43 new_esEs15(Float(x0, x1), Float(x2, x3)) 52.72/30.43 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 52.72/30.43 new_compare16(Left(x0), Left(x1), x2, x3) 52.72/30.43 new_compare28(x0, x1, False, x2, x3) 52.72/30.43 new_compare18(EQ, EQ) 52.72/30.43 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.43 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.43 new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 52.72/30.43 new_lt5(x0, x1, ty_Bool) 52.72/30.43 new_esEs32(x0, x1, app(ty_Maybe, x2)) 52.72/30.43 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.43 new_ltEs15(Right(x0), Right(x1), x2, ty_Int) 52.72/30.43 new_esEs33(x0, x1, ty_Char) 52.72/30.43 new_esEs38(x0, x1, ty_Integer) 52.72/30.43 new_esEs5(x0, x1, ty_Bool) 52.72/30.43 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.43 new_esEs31(x0, x1, app(ty_Ratio, x2)) 52.72/30.43 new_compare30(x0, x1, ty_Bool) 52.72/30.43 new_esEs34(x0, x1, ty_Int) 52.72/30.43 new_esEs31(x0, x1, ty_Double) 52.72/30.43 new_esEs28(:%(x0, x1), :%(x2, x3), x4) 52.72/30.43 new_esEs14(x0, x1, app(ty_Ratio, x2)) 52.72/30.43 new_esEs13(x0, x1, app(ty_Ratio, x2)) 52.72/30.43 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.43 new_ltEs21(x0, x1, ty_Integer) 52.72/30.43 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 52.72/30.43 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 52.72/30.43 new_esEs7(x0, x1, ty_Integer) 52.72/30.43 new_esEs38(x0, x1, app(ty_Maybe, x2)) 52.72/30.43 new_esEs12(EQ) 52.72/30.43 new_esEs11(x0, x1, ty_Bool) 52.72/30.43 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.43 new_esEs33(x0, x1, ty_Int) 52.72/30.43 new_ltEs22(x0, x1, ty_@0) 52.72/30.43 new_esEs16(Char(x0), Char(x1)) 52.72/30.43 new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) 52.72/30.43 new_esEs18([], [], x0) 52.72/30.43 new_lt22(x0, x1, app(ty_Ratio, x2)) 52.72/30.43 new_esEs37(x0, x1, ty_Double) 52.72/30.43 new_lt4(x0, x1) 52.72/30.43 new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 52.72/30.43 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.43 new_esEs18(:(x0, x1), [], x2) 52.72/30.43 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.43 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.43 new_compare26(x0, x1, x2, x3, True, x4, x5) 52.72/30.43 new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 52.72/30.43 new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 52.72/30.43 new_esEs36(x0, x1, ty_Float) 52.72/30.43 new_esEs36(x0, x1, app(ty_Maybe, x2)) 52.72/30.43 new_lt21(x0, x1, ty_Ordering) 52.72/30.43 new_primMulInt(Pos(x0), Pos(x1)) 52.72/30.43 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.43 new_primEqNat0(Zero, Zero) 52.72/30.43 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 52.72/30.43 new_ltEs15(Left(x0), Left(x1), ty_Bool, x2) 52.72/30.43 new_ltEs4(x0, x1) 52.72/30.43 new_esEs32(x0, x1, ty_Int) 52.72/30.43 new_compare6(@2(x0, x1), @2(x2, x3), x4, x5) 52.72/30.43 new_lt20(x0, x1, ty_Int) 52.72/30.43 new_esEs25(Left(x0), Left(x1), ty_Float, x2) 52.72/30.43 new_esEs4(x0, x1, app(ty_[], x2)) 52.72/30.43 new_lt9(x0, x1) 52.72/30.43 new_ltEs22(x0, x1, ty_Ordering) 52.72/30.43 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.43 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.43 new_esEs38(x0, x1, ty_Bool) 52.72/30.43 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.43 new_not(False) 52.72/30.43 new_esEs9(x0, x1, app(ty_Ratio, x2)) 52.72/30.43 new_ltEs15(Right(x0), Right(x1), x2, ty_Ordering) 52.72/30.43 new_ltEs6(x0, x1, ty_Float) 52.72/30.43 new_ltEs14(Just(x0), Nothing, x1) 52.72/30.43 new_ltEs23(x0, x1, ty_Double) 52.72/30.43 new_esEs33(x0, x1, ty_Ordering) 52.72/30.43 new_ltEs14(Just(x0), Just(x1), ty_Bool) 52.72/30.43 new_ltEs15(Left(x0), Left(x1), ty_Float, x2) 52.72/30.43 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.43 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 52.72/30.43 new_esEs38(x0, x1, ty_Float) 52.72/30.43 new_esEs13(x0, x1, ty_Char) 52.72/30.43 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.43 new_esEs13(x0, x1, ty_Int) 52.72/30.43 new_esEs12(LT) 52.72/30.43 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.43 new_esEs32(x0, x1, ty_Char) 52.72/30.43 new_esEs40(x0, x1, ty_Bool) 52.72/30.43 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.43 new_ltEs19(x0, x1, ty_Int) 52.72/30.43 new_ltEs6(x0, x1, ty_Bool) 52.72/30.43 new_esEs18([], :(x0, x1), x2) 52.72/30.43 new_esEs33(x0, x1, ty_Integer) 52.72/30.43 new_esEs40(x0, x1, ty_Float) 52.72/30.43 new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 52.72/30.43 new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 52.72/30.43 new_ltEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 52.72/30.43 new_ltEs14(Just(x0), Just(x1), ty_Float) 52.72/30.43 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.43 new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 52.72/30.43 new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 52.72/30.43 new_esEs14(x0, x1, ty_@0) 52.72/30.43 new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.72/30.43 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.43 new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) 52.72/30.43 new_ltEs15(Right(x0), Right(x1), x2, ty_Bool) 52.72/30.43 new_compare16(Left(x0), Right(x1), x2, x3) 52.72/30.43 new_esEs25(Left(x0), Right(x1), x2, x3) 52.72/30.43 new_esEs25(Right(x0), Left(x1), x2, x3) 52.72/30.43 new_compare16(Right(x0), Left(x1), x2, x3) 52.72/30.43 new_primCompAux00(x0, LT) 52.72/30.43 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.43 new_esEs33(x0, x1, ty_Bool) 52.72/30.43 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.43 new_esEs38(x0, x1, ty_Int) 52.72/30.43 new_primMulInt(Pos(x0), Neg(x1)) 52.72/30.43 new_primMulInt(Neg(x0), Pos(x1)) 52.72/30.43 new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 52.72/30.43 new_lt23(x0, x1, app(ty_[], x2)) 52.72/30.43 new_esEs19(@0, @0) 52.72/30.43 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.43 new_esEs36(x0, x1, app(ty_[], x2)) 52.72/30.43 new_ltEs19(x0, x1, ty_Char) 52.72/30.43 new_compare16(Right(x0), Right(x1), x2, x3) 52.72/30.43 new_ltEs9(x0, x1) 52.72/30.43 new_esEs32(x0, x1, ty_Float) 52.72/30.43 new_ltEs15(Left(x0), Left(x1), ty_Int, x2) 52.72/30.43 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 52.72/30.43 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 52.72/30.43 new_lt5(x0, x1, ty_Char) 52.72/30.43 new_ltEs6(x0, x1, ty_Int) 52.72/30.43 new_esEs10(x0, x1, ty_Bool) 52.72/30.43 new_lt15(x0, x1, x2) 52.72/30.43 new_esEs30(x0, x1, app(ty_Ratio, x2)) 52.72/30.43 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 52.72/30.43 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 52.72/30.43 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 52.72/30.43 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.43 new_esEs27(Double(x0, x1), Double(x2, x3)) 52.72/30.43 new_esEs40(x0, x1, ty_Int) 52.72/30.43 new_ltEs19(x0, x1, ty_Bool) 52.72/30.43 new_esEs5(x0, x1, ty_Integer) 52.72/30.43 new_esEs4(x0, x1, ty_Double) 52.72/30.43 new_esEs13(x0, x1, ty_Float) 52.72/30.43 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 52.72/30.43 new_esEs11(x0, x1, ty_Integer) 52.72/30.43 new_esEs29(x0, x1, ty_Double) 52.72/30.43 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.43 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 52.72/30.43 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.43 new_esEs11(x0, x1, ty_Ordering) 52.72/30.43 new_esEs7(x0, x1, ty_Bool) 52.72/30.43 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.72/30.43 new_esEs40(x0, x1, ty_Char) 52.72/30.43 new_esEs10(x0, x1, ty_Char) 52.72/30.43 new_ltEs14(Just(x0), Just(x1), ty_Int) 52.72/30.43 new_primCmpNat0(Zero, Zero) 52.72/30.43 new_primEqNat0(Zero, Succ(x0)) 52.72/30.43 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 52.72/30.43 new_ltEs6(x0, x1, app(ty_[], x2)) 52.72/30.43 new_esEs14(x0, x1, ty_Double) 52.72/30.43 new_lt22(x0, x1, ty_Double) 52.72/30.43 new_esEs6(x0, x1, ty_@0) 52.72/30.43 new_esEs38(x0, x1, ty_Char) 52.72/30.43 new_lt22(x0, x1, app(ty_Maybe, x2)) 52.72/30.43 new_compare30(x0, x1, ty_Ordering) 52.72/30.43 52.72/30.43 We have to consider all minimal (P,Q,R)-chains. 52.72/30.43 ---------------------------------------- 52.72/30.43 52.72/30.43 (31) QDPSizeChangeProof (EQUIVALENT) 52.72/30.43 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. 52.72/30.43 52.72/30.43 From the DPs we obtained the following set of size-change graphs: 52.72/30.43 *new_compare3(Just(yvy400), Just(yvy300), bbc) -> new_compare22(yvy400, yvy300, new_esEs9(yvy400, yvy300, bbc), bbc) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, beb, app(app(app(ty_@3, bha), bhb), bhc)) -> new_ltEs1(yvy1652, yvy1662, bha, bhb, bhc) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_lt0(yvy40, yvy30, cb, cc) -> new_compare1(yvy40, yvy30, cb, cc) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs(yvy165, yvy166, bbd) -> new_compare(yvy165, yvy166, bbd) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare1(@2(yvy400, yvy401), @2(yvy300, yvy301), cb, cc) -> new_compare20(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs5(yvy400, yvy300, cb), new_esEs4(yvy401, yvy301, cc)), cb, cc) 52.72/30.43 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, beb, app(ty_[], bgf)) -> new_ltEs(yvy1652, yvy1662, bgf) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs2(Just(yvy1650), Just(yvy1660), app(app(app(ty_@3, cab), cac), cad)) -> new_ltEs1(yvy1650, yvy1660, cab, cac, cad) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs2(Just(yvy1650), Just(yvy1660), app(ty_[], bhg)) -> new_ltEs(yvy1650, yvy1660, bhg) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), bcg, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs1(yvy1651, yvy1661, bdc, bdd, bde) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), bcg, app(ty_[], bch)) -> new_ltEs(yvy1651, yvy1661, bch) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_lt(yvy40, yvy30, h) -> new_compare(yvy40, yvy30, h) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare2(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), fa, fb, fc) -> new_compare21(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs8(yvy400, yvy300, fa), new_asAs(new_esEs7(yvy401, yvy301, fb), new_esEs6(yvy402, yvy302, fc))), fa, fb, fc) 52.72/30.43 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, beb, app(ty_Maybe, bhd)) -> new_ltEs2(yvy1652, yvy1662, bhd) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs2(Just(yvy1650), Just(yvy1660), app(ty_Maybe, cae)) -> new_ltEs2(yvy1650, yvy1660, cae) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), bcg, app(ty_Maybe, bdf)) -> new_ltEs2(yvy1651, yvy1661, bdf) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare4(Left(yvy400), Left(yvy300), cdd, cde) -> new_compare23(yvy400, yvy300, new_esEs10(yvy400, yvy300, cdd), cdd, cde) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, beb, app(app(ty_@2, bgg), bgh)) -> new_ltEs0(yvy1652, yvy1662, bgg, bgh) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs2(Just(yvy1650), Just(yvy1660), app(app(ty_@2, bhh), caa)) -> new_ltEs0(yvy1650, yvy1660, bhh, caa) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs2(Just(yvy1650), Just(yvy1660), app(app(ty_Either, caf), cag)) -> new_ltEs3(yvy1650, yvy1660, caf, cag) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), bcg, app(app(ty_@2, bda), bdb)) -> new_ltEs0(yvy1651, yvy1661, bda, bdb) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_lt1(yvy40, yvy30, fa, fb, fc) -> new_compare2(yvy40, yvy30, fa, fb, fc) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_lt3(yvy40, yvy30, cdd, cde) -> new_compare4(yvy40, yvy30, cdd, cde) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_lt2(yvy40, yvy30, bbc) -> new_compare3(yvy40, yvy30, bbc) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, beb, app(app(ty_Either, bhe), bhf)) -> new_ltEs3(yvy1652, yvy1662, bhe, bhf) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), bcg, app(app(ty_Either, bdg), bdh)) -> new_ltEs3(yvy1651, yvy1661, bdg, bdh) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), app(ty_Maybe, bcd), bbf) -> new_lt2(yvy1650, yvy1660, bcd) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare4(Right(yvy400), Right(yvy300), cdd, cde) -> new_compare24(yvy400, yvy300, new_esEs11(yvy400, yvy300, cde), cdd, cde) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_primCompAux(yvy400, yvy300, yvy115, app(ty_Maybe, bg)) -> new_compare3(yvy400, yvy300, bg) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare(:(yvy400, yvy401), :(yvy300, yvy301), h) -> new_primCompAux(yvy400, yvy300, new_compare0(yvy401, yvy301, h), h) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare(:(yvy400, yvy401), :(yvy300, yvy301), h) -> new_compare(yvy401, yvy301, h) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare20(yvy190, yvy191, yvy192, yvy193, False, dg, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs1(yvy191, yvy193, ec, ed, ee) 52.72/30.43 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare20(yvy190, yvy191, yvy192, yvy193, False, dg, app(ty_[], dh)) -> new_ltEs(yvy191, yvy193, dh) 52.72/30.43 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare20(yvy190, yvy191, yvy192, yvy193, False, dg, app(ty_Maybe, ef)) -> new_ltEs2(yvy191, yvy193, ef) 52.72/30.43 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare20(yvy190, yvy191, yvy192, yvy193, False, dg, app(app(ty_@2, ea), eb)) -> new_ltEs0(yvy191, yvy193, ea, eb) 52.72/30.43 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare20(yvy190, yvy191, yvy192, yvy193, False, dg, app(app(ty_Either, eg), eh)) -> new_ltEs3(yvy191, yvy193, eg, eh) 52.72/30.43 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare20(yvy190, yvy191, yvy192, yvy193, False, app(ty_Maybe, dd), ce) -> new_lt2(yvy190, yvy192, dd) 52.72/30.43 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_primCompAux(yvy400, yvy300, yvy115, app(app(ty_@2, bb), bc)) -> new_compare1(yvy400, yvy300, bb, bc) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), app(app(ty_@2, bbg), bbh), bbf) -> new_lt0(yvy1650, yvy1660, bbg, bbh) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare20(yvy190, yvy191, yvy192, yvy193, False, app(app(ty_@2, cf), cg), ce) -> new_lt0(yvy190, yvy192, cf, cg) 52.72/30.43 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), app(ty_[], bbe), bbf) -> new_lt(yvy1650, yvy1660, bbe) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare20(yvy190, yvy191, yvy192, yvy193, False, app(ty_[], cd), ce) -> new_lt(yvy190, yvy192, cd) 52.72/30.43 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(yvy165, yvy166, False, app(ty_[], bbd)) -> new_compare(yvy165, yvy166, bbd) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_primCompAux(yvy400, yvy300, yvy115, app(ty_[], ba)) -> new_compare(yvy400, yvy300, ba) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare24(yvy179, yvy180, False, ceh, app(app(app(ty_@3, cfd), cfe), cff)) -> new_ltEs1(yvy179, yvy180, cfd, cfe, cff) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare24(yvy179, yvy180, False, ceh, app(ty_[], cfa)) -> new_ltEs(yvy179, yvy180, cfa) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare24(yvy179, yvy180, False, ceh, app(ty_Maybe, cfg)) -> new_ltEs2(yvy179, yvy180, cfg) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare24(yvy179, yvy180, False, ceh, app(app(ty_@2, cfb), cfc)) -> new_ltEs0(yvy179, yvy180, cfb, cfc) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare24(yvy179, yvy180, False, ceh, app(app(ty_Either, cfh), cga)) -> new_ltEs3(yvy179, yvy180, cfh, cga) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_primCompAux(yvy400, yvy300, yvy115, app(app(ty_Either, bh), ca)) -> new_compare4(yvy400, yvy300, bh, ca) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_primCompAux(yvy400, yvy300, yvy115, app(app(app(ty_@3, bd), be), bf)) -> new_compare2(yvy400, yvy300, bd, be, bf) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, ff, app(app(app(ty_@3, bae), baf), bag)) -> new_ltEs1(yvy156, yvy159, bae, baf, bag) 52.72/30.43 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare23(yvy172, yvy173, False, app(app(app(ty_@3, ceb), cec), ced), cdg) -> new_ltEs1(yvy172, yvy173, ceb, cec, ced) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, ff, app(ty_[], bab)) -> new_ltEs(yvy156, yvy159, bab) 52.72/30.43 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare23(yvy172, yvy173, False, app(ty_[], cdf), cdg) -> new_ltEs(yvy172, yvy173, cdf) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, ff, app(ty_Maybe, bah)) -> new_ltEs2(yvy156, yvy159, bah) 52.72/30.43 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare23(yvy172, yvy173, False, app(ty_Maybe, cee), cdg) -> new_ltEs2(yvy172, yvy173, cee) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, ff, app(app(ty_@2, bac), bad)) -> new_ltEs0(yvy156, yvy159, bac, bad) 52.72/30.43 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare23(yvy172, yvy173, False, app(app(ty_@2, cdh), cea), cdg) -> new_ltEs0(yvy172, yvy173, cdh, cea) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, ff, app(app(ty_Either, bba), bbb)) -> new_ltEs3(yvy156, yvy159, bba, bbb) 52.72/30.43 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare23(yvy172, yvy173, False, app(app(ty_Either, cef), ceg), cdg) -> new_ltEs3(yvy172, yvy173, cef, ceg) 52.72/30.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), app(app(ty_Either, bce), bcf), bbf) -> new_lt3(yvy1650, yvy1660, bce, bcf) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs0(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), app(app(app(ty_@3, bca), bcb), bcc), bbf) -> new_lt1(yvy1650, yvy1660, bca, bcb, bcc) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare20(yvy190, yvy191, yvy192, yvy193, False, app(app(ty_Either, de), df), ce) -> new_lt3(yvy190, yvy192, de, df) 52.72/30.43 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare20(yvy190, yvy191, yvy192, yvy193, False, app(app(app(ty_@3, da), db), dc), ce) -> new_lt1(yvy190, yvy192, da, db, dc) 52.72/30.43 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, app(ty_Maybe, bgc), bec) -> new_lt2(yvy1651, yvy1661, bgc) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), app(ty_Maybe, bfa), beb, bec) -> new_lt2(yvy1650, yvy1660, bfa) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, app(app(ty_@2, bff), bfg), bec) -> new_lt0(yvy1651, yvy1661, bff, bfg) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), app(app(ty_@2, bed), bee), beb, bec) -> new_lt0(yvy1650, yvy1660, bed, bee) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, app(ty_[], bfe), bec) -> new_lt(yvy1651, yvy1661, bfe) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), app(ty_[], bea), beb, bec) -> new_lt(yvy1650, yvy1660, bea) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, app(app(ty_Either, bgd), bge), bec) -> new_lt3(yvy1651, yvy1661, bgd, bge) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), app(app(ty_Either, bfb), bfc), beb, bec) -> new_lt3(yvy1650, yvy1660, bfb, bfc) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bfd, app(app(app(ty_@3, bfh), bga), bgb), bec) -> new_lt1(yvy1651, yvy1661, bfh, bga, bgb) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs1(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), app(app(app(ty_@3, bef), beg), beh), beb, bec) -> new_lt1(yvy1650, yvy1660, bef, beg, beh) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs3(Right(yvy1650), Right(yvy1660), ccb, app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs1(yvy1650, yvy1660, ccf, ccg, cch) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs3(Left(yvy1650), Left(yvy1660), app(app(app(ty_@3, cbd), cbe), cbf), cba) -> new_ltEs1(yvy1650, yvy1660, cbd, cbe, cbf) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, bcg), app(app(app(ty_@3, bdc), bdd), bde))) -> new_ltEs1(yvy1651, yvy1661, bdc, bdd, bde) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(Right(yvy1650), Right(yvy1660), False, app(app(ty_Either, ccb), app(app(app(ty_@3, ccf), ccg), cch))) -> new_ltEs1(yvy1650, yvy1660, ccf, ccg, cch) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), beb), app(app(app(ty_@3, bha), bhb), bhc))) -> new_ltEs1(yvy1652, yvy1662, bha, bhb, bhc) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(Just(yvy1650), Just(yvy1660), False, app(ty_Maybe, app(app(app(ty_@3, cab), cac), cad))) -> new_ltEs1(yvy1650, yvy1660, cab, cac, cad) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(Left(yvy1650), Left(yvy1660), False, app(app(ty_Either, app(app(app(ty_@3, cbd), cbe), cbf)), cba)) -> new_ltEs1(yvy1650, yvy1660, cbd, cbe, cbf) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs3(Right(yvy1650), Right(yvy1660), ccb, app(ty_[], ccc)) -> new_ltEs(yvy1650, yvy1660, ccc) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs3(Left(yvy1650), Left(yvy1660), app(ty_[], cah), cba) -> new_ltEs(yvy1650, yvy1660, cah) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs3(Left(yvy1650), Left(yvy1660), app(ty_Maybe, cbg), cba) -> new_ltEs2(yvy1650, yvy1660, cbg) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs3(Right(yvy1650), Right(yvy1660), ccb, app(ty_Maybe, cda)) -> new_ltEs2(yvy1650, yvy1660, cda) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs3(Left(yvy1650), Left(yvy1660), app(app(ty_@2, cbb), cbc), cba) -> new_ltEs0(yvy1650, yvy1660, cbb, cbc) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs3(Right(yvy1650), Right(yvy1660), ccb, app(app(ty_@2, ccd), cce)) -> new_ltEs0(yvy1650, yvy1660, ccd, cce) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs3(Left(yvy1650), Left(yvy1660), app(app(ty_Either, cbh), cca), cba) -> new_ltEs3(yvy1650, yvy1660, cbh, cca) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_ltEs3(Right(yvy1650), Right(yvy1660), ccb, app(app(ty_Either, cdb), cdc)) -> new_ltEs3(yvy1650, yvy1660, cdb, cdc) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(Left(yvy1650), Left(yvy1660), False, app(app(ty_Either, app(ty_[], cah)), cba)) -> new_ltEs(yvy1650, yvy1660, cah) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(Right(yvy1650), Right(yvy1660), False, app(app(ty_Either, ccb), app(ty_[], ccc))) -> new_ltEs(yvy1650, yvy1660, ccc) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, bcg), app(ty_[], bch))) -> new_ltEs(yvy1651, yvy1661, bch) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), beb), app(ty_[], bgf))) -> new_ltEs(yvy1652, yvy1662, bgf) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(Just(yvy1650), Just(yvy1660), False, app(ty_Maybe, app(ty_[], bhg))) -> new_ltEs(yvy1650, yvy1660, bhg) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(Left(yvy1650), Left(yvy1660), False, app(app(ty_Either, app(ty_Maybe, cbg)), cba)) -> new_ltEs2(yvy1650, yvy1660, cbg) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(Just(yvy1650), Just(yvy1660), False, app(ty_Maybe, app(ty_Maybe, cae))) -> new_ltEs2(yvy1650, yvy1660, cae) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, bcg), app(ty_Maybe, bdf))) -> new_ltEs2(yvy1651, yvy1661, bdf) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), beb), app(ty_Maybe, bhd))) -> new_ltEs2(yvy1652, yvy1662, bhd) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(Right(yvy1650), Right(yvy1660), False, app(app(ty_Either, ccb), app(ty_Maybe, cda))) -> new_ltEs2(yvy1650, yvy1660, cda) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(Left(yvy1650), Left(yvy1660), False, app(app(ty_Either, app(app(ty_@2, cbb), cbc)), cba)) -> new_ltEs0(yvy1650, yvy1660, cbb, cbc) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), beb), app(app(ty_@2, bgg), bgh))) -> new_ltEs0(yvy1652, yvy1662, bgg, bgh) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, bcg), app(app(ty_@2, bda), bdb))) -> new_ltEs0(yvy1651, yvy1661, bda, bdb) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(Right(yvy1650), Right(yvy1660), False, app(app(ty_Either, ccb), app(app(ty_@2, ccd), cce))) -> new_ltEs0(yvy1650, yvy1660, ccd, cce) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(Just(yvy1650), Just(yvy1660), False, app(ty_Maybe, app(app(ty_@2, bhh), caa))) -> new_ltEs0(yvy1650, yvy1660, bhh, caa) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, bcg), app(app(ty_Either, bdg), bdh))) -> new_ltEs3(yvy1651, yvy1661, bdg, bdh) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(Left(yvy1650), Left(yvy1660), False, app(app(ty_Either, app(app(ty_Either, cbh), cca)), cba)) -> new_ltEs3(yvy1650, yvy1660, cbh, cca) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(Right(yvy1650), Right(yvy1660), False, app(app(ty_Either, ccb), app(app(ty_Either, cdb), cdc))) -> new_ltEs3(yvy1650, yvy1660, cdb, cdc) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), beb), app(app(ty_Either, bhe), bhf))) -> new_ltEs3(yvy1652, yvy1662, bhe, bhf) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(Just(yvy1650), Just(yvy1660), False, app(ty_Maybe, app(app(ty_Either, caf), cag))) -> new_ltEs3(yvy1650, yvy1660, caf, cag) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), app(ty_Maybe, bgc)), bec)) -> new_lt2(yvy1651, yvy1661, bgc) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, app(ty_Maybe, bfa)), beb), bec)) -> new_lt2(yvy1650, yvy1660, bfa) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, app(ty_Maybe, bcd)), bbf)) -> new_lt2(yvy1650, yvy1660, bcd) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, app(ty_Maybe, hg), fg) -> new_lt2(yvy155, yvy158, hg) 52.72/30.43 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, app(ty_Maybe, ge), ff, fg) -> new_lt2(yvy154, yvy157, ge) 52.72/30.43 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, app(app(ty_@2, bbg), bbh)), bbf)) -> new_lt0(yvy1650, yvy1660, bbg, bbh) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, app(app(ty_@2, bed), bee)), beb), bec)) -> new_lt0(yvy1650, yvy1660, bed, bee) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), app(app(ty_@2, bff), bfg)), bec)) -> new_lt0(yvy1651, yvy1661, bff, bfg) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), app(ty_[], bfe)), bec)) -> new_lt(yvy1651, yvy1661, bfe) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, app(ty_[], bbe)), bbf)) -> new_lt(yvy1650, yvy1660, bbe) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, app(ty_[], bea)), beb), bec)) -> new_lt(yvy1650, yvy1660, bea) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), app(app(ty_Either, bgd), bge)), bec)) -> new_lt3(yvy1651, yvy1661, bgd, bge) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, app(app(ty_Either, bce), bcf)), bbf)) -> new_lt3(yvy1650, yvy1660, bce, bcf) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, app(app(ty_Either, bfb), bfc)), beb), bec)) -> new_lt3(yvy1650, yvy1660, bfb, bfc) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, app(app(app(ty_@3, bef), beg), beh)), beb), bec)) -> new_lt1(yvy1650, yvy1660, bef, beg, beh) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), False, app(app(ty_@2, app(app(app(ty_@3, bca), bcb), bcc)), bbf)) -> new_lt1(yvy1650, yvy1660, bca, bcb, bcc) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare22(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), False, app(app(app(ty_@3, bfd), app(app(app(ty_@3, bfh), bga), bgb)), bec)) -> new_lt1(yvy1651, yvy1661, bfh, bga, bgb) 52.72/30.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, app(app(ty_@2, hb), hc), fg) -> new_lt0(yvy155, yvy158, hb, hc) 52.72/30.43 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, app(app(ty_@2, fh), ga), ff, fg) -> new_lt0(yvy154, yvy157, fh, ga) 52.72/30.43 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, app(ty_[], fd), ff, fg) -> new_lt(yvy154, yvy157, fd) 52.72/30.43 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, app(ty_[], ha), fg) -> new_lt(yvy155, yvy158, ha) 52.72/30.43 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, app(app(ty_Either, gf), gg), ff, fg) -> new_lt3(yvy154, yvy157, gf, gg) 52.72/30.43 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, app(app(ty_Either, hh), baa), fg) -> new_lt3(yvy155, yvy158, hh, baa) 52.72/30.43 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, app(app(app(ty_@3, gb), gc), gd), ff, fg) -> new_lt1(yvy154, yvy157, gb, gc, gd) 52.72/30.43 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 52.72/30.43 52.72/30.43 52.72/30.43 *new_compare21(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, gh, app(app(app(ty_@3, hd), he), hf), fg) -> new_lt1(yvy155, yvy158, hd, he, hf) 52.72/30.43 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 52.72/30.43 52.72/30.43 52.72/30.43 ---------------------------------------- 52.72/30.43 52.72/30.43 (32) 52.72/30.43 YES 52.72/30.43 52.72/30.43 ---------------------------------------- 52.72/30.43 52.72/30.43 (33) 52.72/30.43 Obligation: 52.72/30.43 Q DP problem: 52.72/30.43 The TRS P consists of the following rules: 52.72/30.43 52.72/30.43 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) 52.72/30.43 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) 52.72/30.43 52.72/30.43 The TRS R consists of the following rules: 52.72/30.43 52.72/30.43 new_esEs14(yvy1650, yvy1660, ty_@0) -> new_esEs19(yvy1650, yvy1660) 52.72/30.43 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(ty_@2, egd), ege)) -> new_esEs21(yvy4000, yvy3000, egd, ege) 52.72/30.43 new_ltEs19(yvy179, yvy180, ty_Integer) -> new_ltEs11(yvy179, yvy180) 52.72/30.43 new_compare9(Double(yvy400, Pos(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.72/30.43 new_lt24(yvy40, yvy50, ty_Bool) -> new_lt14(yvy40, yvy50) 52.72/30.43 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 52.72/30.43 new_primPlusNat0(Zero, Zero) -> Zero 52.72/30.43 new_esEs14(yvy1650, yvy1660, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs22(yvy1650, yvy1660, dhg, dhh, eaa) 52.72/30.43 new_pePe(True, yvy280) -> True 52.72/30.43 new_lt12(yvy40, yvy30, bc, bd) -> new_esEs12(new_compare6(yvy40, yvy30, bc, bd)) 52.72/30.43 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_@0) -> new_ltEs4(yvy1650, yvy1660) 52.72/30.43 new_esEs26(LT, GT) -> False 52.72/30.43 new_esEs26(GT, LT) -> False 52.72/30.43 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs5(yvy1650, yvy1660, fee, fef, feg) 52.72/30.43 new_lt20(yvy190, yvy192, ty_Ordering) -> new_lt17(yvy190, yvy192) 52.72/30.43 new_compare13(Float(yvy400, Pos(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.72/30.43 new_compare13(Float(yvy400, Neg(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.72/30.43 new_esEs8(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.72/30.43 new_esEs30(yvy4000, yvy3000, app(app(ty_@2, ehf), ehg)) -> new_esEs21(yvy4000, yvy3000, ehf, ehg) 52.72/30.43 new_lt24(yvy40, yvy50, app(app(ty_Either, ca), cb)) -> new_lt16(yvy40, yvy50, ca, cb) 52.72/30.43 new_ltEs20(yvy191, yvy193, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs5(yvy191, yvy193, he, hf, hg) 52.72/30.43 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 52.72/30.43 new_addToFM_C20(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, True, fad, fae) -> new_mkBalBranch(yvy76, yvy77, new_addToFM_C0(yvy79, yvy81, yvy82, fad, fae), yvy80, fad, fae) 52.72/30.43 new_esEs26(LT, EQ) -> False 52.72/30.43 new_esEs26(EQ, LT) -> False 52.72/30.43 new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) 52.72/30.43 new_esEs29(yvy190, yvy192, ty_@0) -> new_esEs19(yvy190, yvy192) 52.72/30.43 new_lt6(yvy1651, yvy1661, ty_Char) -> new_lt8(yvy1651, yvy1661) 52.72/30.43 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(ty_Ratio, cgg)) -> new_ltEs18(yvy1650, yvy1660, cgg) 52.72/30.43 new_ltEs19(yvy179, yvy180, app(app(ty_@2, cg), da)) -> new_ltEs12(yvy179, yvy180, cg, da) 52.72/30.43 new_emptyFM(h, ba) -> EmptyFM 52.72/30.43 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(ty_Ratio, efd)) -> new_esEs28(yvy4000, yvy3000, efd) 52.72/30.43 new_lt23(yvy155, yvy158, app(ty_Maybe, dbc)) -> new_lt15(yvy155, yvy158, dbc) 52.72/30.43 new_compare18(LT, LT) -> EQ 52.72/30.43 new_lt24(yvy40, yvy50, app(app(ty_@2, bc), bd)) -> new_lt12(yvy40, yvy50, bc, bd) 52.72/30.43 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Bool) -> new_ltEs13(yvy1650, yvy1660) 52.72/30.43 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(ty_Either, egg), egh)) -> new_esEs25(yvy4000, yvy3000, egg, egh) 52.72/30.43 new_gt1(yvy40, yvy30, bc, bd) -> new_esEs41(new_compare6(yvy40, yvy30, bc, bd)) 52.72/30.43 new_ltEs20(yvy191, yvy193, ty_Float) -> new_ltEs7(yvy191, yvy193) 52.72/30.43 new_esEs30(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.43 new_esEs8(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.72/30.43 new_lt25(yvy40, yvy30, app(ty_Ratio, cc)) -> new_lt19(yvy40, yvy30, cc) 52.72/30.43 new_esEs6(yvy402, yvy302, ty_Int) -> new_esEs17(yvy402, yvy302) 52.72/30.43 new_ltEs21(yvy165, yvy166, ty_Ordering) -> new_ltEs16(yvy165, yvy166) 52.72/30.43 new_ltEs20(yvy191, yvy193, ty_@0) -> new_ltEs4(yvy191, yvy193) 52.72/30.43 new_esEs39(yvy155, yvy158, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs22(yvy155, yvy158, dah, dba, dbb) 52.72/30.43 new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, False, ccg, cch, cda) -> GT 52.72/30.43 new_esEs33(yvy1650, yvy1660, ty_Char) -> new_esEs16(yvy1650, yvy1660) 52.72/30.43 new_esEs36(yvy4002, yvy3002, app(ty_Ratio, bhg)) -> new_esEs28(yvy4002, yvy3002, bhg) 52.72/30.43 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 52.72/30.43 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Double) -> new_ltEs17(yvy1650, yvy1660) 52.72/30.43 new_esEs40(yvy154, yvy157, ty_Double) -> new_esEs27(yvy154, yvy157) 52.72/30.43 new_esEs31(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) 52.72/30.43 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.72/30.43 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.72/30.43 new_ltEs24(yvy156, yvy159, app(ty_[], dbg)) -> new_ltEs10(yvy156, yvy159, dbg) 52.72/30.43 new_esEs7(yvy401, yvy301, ty_Double) -> new_esEs27(yvy401, yvy301) 52.72/30.43 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(ty_Either, ffa), ffb)) -> new_ltEs15(yvy1650, yvy1660, ffa, ffb) 52.72/30.43 new_not(True) -> False 52.72/30.43 new_ltEs22(yvy172, yvy173, ty_Char) -> new_ltEs8(yvy172, yvy173) 52.72/30.43 new_lt23(yvy155, yvy158, ty_Int) -> new_lt9(yvy155, yvy158) 52.72/30.43 new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, Branch(yvy9040, yvy9041, yvy9042, yvy9043, yvy9044), False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), yvy9040, yvy9041, new_mkBranch0(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), yvy900, yvy901, yvy903, yvy9043, h, ba), Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), yvy50, yvy51, yvy9044, yvy54, h, ba) 52.72/30.43 new_esEs13(yvy1651, yvy1661, ty_Integer) -> new_esEs20(yvy1651, yvy1661) 52.72/30.43 new_gt3(yvy40, yvy30) -> new_esEs41(new_compare19(yvy40, yvy30)) 52.72/30.43 new_primCompAux00(yvy133, LT) -> LT 52.72/30.43 new_esEs39(yvy155, yvy158, ty_Ordering) -> new_esEs26(yvy155, yvy158) 52.72/30.43 new_compare17(yvy230, yvy231, False, ddc, ddd) -> GT 52.72/30.43 new_lt22(yvy154, yvy157, ty_Float) -> new_lt7(yvy154, yvy157) 52.72/30.43 new_lt22(yvy154, yvy157, app(ty_[], chc)) -> new_lt10(yvy154, yvy157, chc) 52.72/30.43 new_esEs39(yvy155, yvy158, app(ty_[], dae)) -> new_esEs18(yvy155, yvy158, dae) 52.72/30.43 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Char, bgg) -> new_esEs16(yvy4000, yvy3000) 52.72/30.43 new_esEs10(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.72/30.43 new_gt11(yvy40, yvy30, ca, cb) -> new_esEs41(new_compare16(yvy40, yvy30, ca, cb)) 52.72/30.43 new_lt24(yvy40, yvy50, ty_Integer) -> new_lt11(yvy40, yvy50) 52.72/30.43 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.72/30.43 new_primMulNat1(Succ(yvy9300)) -> new_primPlusNat1(new_primMulNat0(Zero, Succ(yvy9300)), yvy9300) 52.72/30.43 new_lt24(yvy40, yvy50, ty_Double) -> new_lt18(yvy40, yvy50) 52.72/30.43 new_gt15(yvy40, yvy30, ty_Char) -> new_gt3(yvy40, yvy30) 52.72/30.43 new_esEs38(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.72/30.43 new_esEs31(yvy4001, yvy3001, app(ty_Ratio, fgb)) -> new_esEs28(yvy4001, yvy3001, fgb) 52.72/30.43 new_primEqNat0(Succ(yvy40000), Zero) -> False 52.72/30.43 new_primEqNat0(Zero, Succ(yvy30000)) -> False 52.72/30.43 new_esEs39(yvy155, yvy158, app(ty_Maybe, dbc)) -> new_esEs24(yvy155, yvy158, dbc) 52.72/30.43 new_esEs10(yvy400, yvy300, app(app(ty_@2, bce), bcf)) -> new_esEs21(yvy400, yvy300, bce, bcf) 52.72/30.43 new_esEs36(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) 52.72/30.43 new_ltEs21(yvy165, yvy166, app(app(ty_@2, baf), bag)) -> new_ltEs12(yvy165, yvy166, baf, bag) 52.72/30.43 new_compare10(yvy237, yvy238, True, fcb, fcc) -> LT 52.72/30.43 new_lt6(yvy1651, yvy1661, app(app(ty_@2, eag), eah)) -> new_lt12(yvy1651, yvy1661, eag, eah) 52.72/30.43 new_gt7(yvy40, yvy30) -> new_esEs41(new_compare14(yvy40, yvy30)) 52.72/30.43 new_lt20(yvy190, yvy192, app(app(app(ty_@3, gc), gd), ge)) -> new_lt13(yvy190, yvy192, gc, gd, ge) 52.72/30.43 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(ty_@2, cee), cef), bbe) -> new_ltEs12(yvy1650, yvy1660, cee, cef) 52.72/30.43 new_compare7(True, True) -> EQ 52.72/30.43 new_gt(yvy81, yvy76, ty_Double) -> new_gt0(yvy81, yvy76) 52.72/30.43 new_ltEs20(yvy191, yvy193, ty_Bool) -> new_ltEs13(yvy191, yvy193) 52.72/30.43 new_primPlusInt(Pos(yvy9020), Pos(yvy2100)) -> Pos(new_primPlusNat0(yvy9020, yvy2100)) 52.72/30.43 new_compare210(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, True, cgh, cha, chb) -> EQ 52.72/30.43 new_esEs31(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) 52.72/30.43 new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT 52.72/30.43 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Integer, bgg) -> new_esEs20(yvy4000, yvy3000) 52.72/30.43 new_esEs40(yvy154, yvy157, app(app(ty_@2, chd), che)) -> new_esEs21(yvy154, yvy157, chd, che) 52.72/30.43 new_esEs5(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.72/30.43 new_esEs29(yvy190, yvy192, ty_Ordering) -> new_esEs26(yvy190, yvy192) 52.72/30.43 new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, True, h, ba) -> new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) 52.72/30.43 new_esEs29(yvy190, yvy192, ty_Float) -> new_esEs15(yvy190, yvy192) 52.72/30.43 new_esEs10(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.72/30.43 new_ltEs9(yvy165, yvy166) -> new_fsEs(new_compare8(yvy165, yvy166)) 52.72/30.43 new_ltEs6(yvy1652, yvy1662, ty_Double) -> new_ltEs17(yvy1652, yvy1662) 52.72/30.43 new_lt6(yvy1651, yvy1661, app(ty_[], eaf)) -> new_lt10(yvy1651, yvy1661, eaf) 52.72/30.43 new_esEs34(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.72/30.43 new_esEs7(yvy401, yvy301, ty_Integer) -> new_esEs20(yvy401, yvy301) 52.72/30.43 new_esEs4(yvy401, yvy301, app(app(ty_@2, bfb), bfc)) -> new_esEs21(yvy401, yvy301, bfb, bfc) 52.72/30.43 new_primCmpNat0(Zero, Succ(yvy3000)) -> LT 52.72/30.43 new_esEs30(yvy4000, yvy3000, app(app(ty_Either, faa), fab)) -> new_esEs25(yvy4000, yvy3000, faa, fab) 52.72/30.43 new_ltEs23(yvy1651, yvy1661, ty_Int) -> new_ltEs9(yvy1651, yvy1661) 52.72/30.43 new_ltEs20(yvy191, yvy193, ty_Double) -> new_ltEs17(yvy191, yvy193) 52.72/30.43 new_esEs38(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.72/30.43 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Float) -> new_ltEs7(yvy1650, yvy1660) 52.72/30.43 new_ltEs15(Right(yvy1650), Left(yvy1660), bbd, bbe) -> False 52.72/30.43 new_esEs8(yvy400, yvy300, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs22(yvy400, yvy300, dgb, dgc, dgd) 52.72/30.43 new_esEs11(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.72/30.43 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 52.72/30.43 new_esEs8(yvy400, yvy300, app(ty_[], dhc)) -> new_esEs18(yvy400, yvy300, dhc) 52.72/30.43 new_compare18(GT, GT) -> EQ 52.72/30.43 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Char) -> new_ltEs8(yvy1650, yvy1660) 52.72/30.43 new_esEs33(yvy1650, yvy1660, ty_Double) -> new_esEs27(yvy1650, yvy1660) 52.72/30.43 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.72/30.43 new_esEs8(yvy400, yvy300, app(ty_Maybe, dge)) -> new_esEs24(yvy400, yvy300, dge) 52.72/30.43 new_ltEs23(yvy1651, yvy1661, ty_Double) -> new_ltEs17(yvy1651, yvy1661) 52.72/30.43 new_esEs29(yvy190, yvy192, app(ty_Maybe, gf)) -> new_esEs24(yvy190, yvy192, gf) 52.72/30.43 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.43 new_esEs23(True, True) -> True 52.72/30.43 new_lt22(yvy154, yvy157, app(ty_Ratio, dad)) -> new_lt19(yvy154, yvy157, dad) 52.72/30.43 new_lt23(yvy155, yvy158, app(app(app(ty_@3, dah), dba), dbb)) -> new_lt13(yvy155, yvy158, dah, dba, dbb) 52.72/30.43 new_esEs39(yvy155, yvy158, ty_Int) -> new_esEs17(yvy155, yvy158) 52.72/30.43 new_ltEs19(yvy179, yvy180, app(ty_Maybe, de)) -> new_ltEs14(yvy179, yvy180, de) 52.72/30.43 new_ltEs5(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bah, bba, bbb) -> new_pePe(new_lt5(yvy1650, yvy1660, bah), new_asAs(new_esEs14(yvy1650, yvy1660, bah), new_pePe(new_lt6(yvy1651, yvy1661, bba), new_asAs(new_esEs13(yvy1651, yvy1661, bba), new_ltEs6(yvy1652, yvy1662, bbb))))) 52.72/30.43 new_esEs29(yvy190, yvy192, app(ty_[], fh)) -> new_esEs18(yvy190, yvy192, fh) 52.72/30.43 new_lt6(yvy1651, yvy1661, ty_Bool) -> new_lt14(yvy1651, yvy1661) 52.72/30.43 new_splitGT10(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bbg, bbh) -> new_mkVBalBranch0(yvy45, yvy46, new_splitGT0(yvy48, yvy50, bbg, bbh), yvy49, bbg, bbh) 52.72/30.43 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_@0) -> new_ltEs4(yvy1650, yvy1660) 52.72/30.43 new_esEs7(yvy401, yvy301, ty_Char) -> new_esEs16(yvy401, yvy301) 52.72/30.43 new_esEs9(yvy400, yvy300, app(app(ty_Either, gfb), gfc)) -> new_esEs25(yvy400, yvy300, gfb, gfc) 52.72/30.43 new_compare30(yvy400, yvy300, ty_Int) -> new_compare8(yvy400, yvy300) 52.72/30.43 new_esEs40(yvy154, yvy157, ty_Char) -> new_esEs16(yvy154, yvy157) 52.72/30.43 new_esEs29(yvy190, yvy192, app(ty_Ratio, ha)) -> new_esEs28(yvy190, yvy192, ha) 52.72/30.43 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(app(ty_Either, efe), eff)) -> new_esEs25(yvy4000, yvy3000, efe, eff) 52.72/30.43 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(app(ty_Either, cge), cgf)) -> new_ltEs15(yvy1650, yvy1660, cge, cgf) 52.72/30.43 new_esEs6(yvy402, yvy302, app(ty_Maybe, dea)) -> new_esEs24(yvy402, yvy302, dea) 52.72/30.43 new_esEs39(yvy155, yvy158, app(ty_Ratio, dbf)) -> new_esEs28(yvy155, yvy158, dbf) 52.72/30.43 new_esEs4(yvy401, yvy301, ty_Bool) -> new_esEs23(yvy401, yvy301) 52.72/30.43 new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, EmptyFM, yvy544, yvy90, False, h, ba) -> error([]) 52.72/30.43 new_lt8(yvy40, yvy30) -> new_esEs12(new_compare19(yvy40, yvy30)) 52.72/30.43 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Bool, bgg) -> new_esEs23(yvy4000, yvy3000) 52.72/30.43 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 52.72/30.43 new_esEs19(@0, @0) -> True 52.72/30.43 new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT 52.72/30.43 new_primMulInt(Pos(yvy4000), Pos(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) 52.72/30.43 new_ltEs6(yvy1652, yvy1662, ty_Float) -> new_ltEs7(yvy1652, yvy1662) 52.72/30.43 new_ltEs15(Left(yvy1650), Right(yvy1660), bbd, bbe) -> True 52.72/30.43 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Double, bbe) -> new_ltEs17(yvy1650, yvy1660) 52.72/30.43 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(app(ty_@2, efb), efc)) -> new_esEs21(yvy4000, yvy3000, efb, efc) 52.72/30.43 new_lt22(yvy154, yvy157, ty_Integer) -> new_lt11(yvy154, yvy157) 52.72/30.43 new_esEs7(yvy401, yvy301, app(app(ty_Either, dfg), dfh)) -> new_esEs25(yvy401, yvy301, dfg, dfh) 52.72/30.43 new_gt14(yvy35, yvy30, ty_Int) -> new_gt4(yvy35, yvy30) 52.72/30.43 new_primMulNat0(Succ(yvy40000), Zero) -> Zero 52.72/30.43 new_primMulNat0(Zero, Succ(yvy30100)) -> Zero 52.72/30.43 new_lt21(yvy1650, yvy1660, ty_Bool) -> new_lt14(yvy1650, yvy1660) 52.72/30.43 new_esEs7(yvy401, yvy301, ty_Bool) -> new_esEs23(yvy401, yvy301) 52.72/30.43 new_lt15(yvy40, yvy30, bh) -> new_esEs12(new_compare29(yvy40, yvy30, bh)) 52.72/30.43 new_lt14(yvy40, yvy30) -> new_esEs12(new_compare7(yvy40, yvy30)) 52.72/30.43 new_esEs11(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.72/30.43 new_lt23(yvy155, yvy158, ty_Ordering) -> new_lt17(yvy155, yvy158) 52.72/30.43 new_lt20(yvy190, yvy192, app(ty_Ratio, ha)) -> new_lt19(yvy190, yvy192, ha) 52.72/30.43 new_esEs38(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.43 new_esEs31(yvy4001, yvy3001, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs22(yvy4001, yvy3001, ffd, ffe, fff) 52.72/30.43 new_esEs8(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.72/30.43 new_esEs40(yvy154, yvy157, ty_Bool) -> new_esEs23(yvy154, yvy157) 52.72/30.43 new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) 52.72/30.43 new_primPlusNat0(Zero, Succ(yvy21000)) -> Succ(yvy21000) 52.72/30.43 new_ltEs22(yvy172, yvy173, ty_Float) -> new_ltEs7(yvy172, yvy173) 52.72/30.43 new_esEs26(EQ, GT) -> False 52.72/30.43 new_esEs26(GT, EQ) -> False 52.72/30.43 new_lt6(yvy1651, yvy1661, ty_Float) -> new_lt7(yvy1651, yvy1661) 52.72/30.43 new_esEs30(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.72/30.43 new_esEs31(yvy4001, yvy3001, app(ty_Maybe, ffg)) -> new_esEs24(yvy4001, yvy3001, ffg) 52.72/30.43 new_esEs10(yvy400, yvy300, app(app(ty_Either, bch), bda)) -> new_esEs25(yvy400, yvy300, bch, bda) 52.72/30.43 new_esEs31(yvy4001, yvy3001, app(ty_[], fge)) -> new_esEs18(yvy4001, yvy3001, fge) 52.72/30.43 new_lt6(yvy1651, yvy1661, ty_Integer) -> new_lt11(yvy1651, yvy1661) 52.72/30.43 new_esEs5(yvy400, yvy300, app(ty_Ratio, bee)) -> new_esEs28(yvy400, yvy300, bee) 52.72/30.43 new_esEs33(yvy1650, yvy1660, app(app(ty_Either, gag), gah)) -> new_esEs25(yvy1650, yvy1660, gag, gah) 52.72/30.43 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Bool) -> new_ltEs13(yvy1650, yvy1660) 52.72/30.43 new_esEs7(yvy401, yvy301, app(app(ty_@2, dfd), dfe)) -> new_esEs21(yvy401, yvy301, dfd, dfe) 52.72/30.43 new_esEs31(yvy4001, yvy3001, ty_Ordering) -> new_esEs26(yvy4001, yvy3001) 52.72/30.43 new_esEs23(False, False) -> True 52.72/30.43 new_compare9(Double(yvy400, Pos(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.72/30.43 new_compare9(Double(yvy400, Neg(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.72/30.43 new_gt(yvy81, yvy76, ty_Int) -> new_gt4(yvy81, yvy76) 52.72/30.43 new_lt25(yvy40, yvy30, ty_@0) -> new_lt4(yvy40, yvy30) 52.72/30.43 new_splitGT10(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, False, bbg, bbh) -> yvy49 52.72/30.43 new_esEs17(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 52.72/30.43 new_esEs12(LT) -> True 52.72/30.43 new_esEs13(yvy1651, yvy1661, ty_Double) -> new_esEs27(yvy1651, yvy1661) 52.72/30.43 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.72/30.43 new_esEs6(yvy402, yvy302, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs22(yvy402, yvy302, ddf, ddg, ddh) 52.72/30.43 new_esEs32(yvy4000, yvy3000, app(app(ty_Either, fhe), fhf)) -> new_esEs25(yvy4000, yvy3000, fhe, fhf) 52.72/30.43 new_esEs32(yvy4000, yvy3000, app(ty_Maybe, fha)) -> new_esEs24(yvy4000, yvy3000, fha) 52.72/30.43 new_esEs11(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.72/30.43 new_lt25(yvy40, yvy30, ty_Ordering) -> new_lt17(yvy40, yvy30) 52.72/30.43 new_lt20(yvy190, yvy192, ty_Float) -> new_lt7(yvy190, yvy192) 52.72/30.43 new_lt25(yvy40, yvy30, ty_Int) -> new_lt9(yvy40, yvy30) 52.72/30.43 new_gt4(yvy40, yvy30) -> new_esEs41(new_compare8(yvy40, yvy30)) 52.72/30.43 new_ltEs12(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), baf, bag) -> new_pePe(new_lt21(yvy1650, yvy1660, baf), new_asAs(new_esEs33(yvy1650, yvy1660, baf), new_ltEs23(yvy1651, yvy1661, bag))) 52.72/30.43 new_esEs5(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.72/30.43 new_lt22(yvy154, yvy157, ty_Bool) -> new_lt14(yvy154, yvy157) 52.72/30.43 new_lt21(yvy1650, yvy1660, ty_Integer) -> new_lt11(yvy1650, yvy1660) 52.72/30.43 new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, ccg, cch, cda) -> LT 52.72/30.43 new_esEs33(yvy1650, yvy1660, ty_Float) -> new_esEs15(yvy1650, yvy1660) 52.72/30.43 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Float, bbe) -> new_ltEs7(yvy1650, yvy1660) 52.72/30.43 new_esEs6(yvy402, yvy302, app(ty_[], deg)) -> new_esEs18(yvy402, yvy302, deg) 52.72/30.43 new_esEs5(yvy400, yvy300, app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs22(yvy400, yvy300, bfh, bga, bgb) 52.72/30.43 new_ltEs19(yvy179, yvy180, ty_Ordering) -> new_ltEs16(yvy179, yvy180) 52.72/30.43 new_lt10(yvy40, yvy30, bb) -> new_esEs12(new_compare0(yvy40, yvy30, bb)) 52.72/30.43 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(app(ty_@3, ceg), ceh), cfa), bbe) -> new_ltEs5(yvy1650, yvy1660, ceg, ceh, cfa) 52.72/30.43 new_esEs37(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.72/30.43 new_ltEs6(yvy1652, yvy1662, app(app(ty_Either, ecg), ech)) -> new_ltEs15(yvy1652, yvy1662, ecg, ech) 52.72/30.43 new_esEs4(yvy401, yvy301, ty_Integer) -> new_esEs20(yvy401, yvy301) 52.72/30.43 new_esEs30(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.72/30.43 new_esEs29(yvy190, yvy192, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs22(yvy190, yvy192, gc, gd, ge) 52.72/30.43 new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, EmptyFM, False, h, ba) -> error([]) 52.72/30.43 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.43 new_compare16(Left(yvy400), Left(yvy300), ca, cb) -> new_compare28(yvy400, yvy300, new_esEs10(yvy400, yvy300, ca), ca, cb) 52.72/30.43 new_mkBalBranch(yvy50, yvy51, yvy90, yvy54, h, ba) -> new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, new_lt9(new_primPlusInt(new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba), new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba)), Pos(Succ(Succ(Zero)))), h, ba) 52.72/30.43 new_esEs40(yvy154, yvy157, ty_Integer) -> new_esEs20(yvy154, yvy157) 52.72/30.43 new_esEs14(yvy1650, yvy1660, ty_Int) -> new_esEs17(yvy1650, yvy1660) 52.72/30.43 new_ltEs20(yvy191, yvy193, app(app(ty_Either, baa), bab)) -> new_ltEs15(yvy191, yvy193, baa, bab) 52.72/30.43 new_esEs32(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.43 new_lt26(yvy20, yvy15, app(app(ty_@2, gch), gda)) -> new_lt12(yvy20, yvy15, gch, gda) 52.72/30.43 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Float, bgg) -> new_esEs15(yvy4000, yvy3000) 52.72/30.43 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(ty_[], cff)) -> new_ltEs10(yvy1650, yvy1660, cff) 52.72/30.43 new_esEs31(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.72/30.43 new_esEs13(yvy1651, yvy1661, app(ty_Ratio, ebg)) -> new_esEs28(yvy1651, yvy1661, ebg) 52.72/30.43 new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy35, ea, eb) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, yvy35, ea, eb) 52.72/30.43 new_lt6(yvy1651, yvy1661, app(ty_Ratio, ebg)) -> new_lt19(yvy1651, yvy1661, ebg) 52.72/30.43 new_esEs12(GT) -> False 52.72/30.43 new_gt(yvy81, yvy76, ty_@0) -> new_gt6(yvy81, yvy76) 52.72/30.43 new_esEs12(EQ) -> False 52.72/30.43 new_esEs37(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) 52.72/30.43 new_esEs37(yvy4001, yvy3001, app(app(ty_Either, cbb), cbc)) -> new_esEs25(yvy4001, yvy3001, cbb, cbc) 52.72/30.43 new_addToFM_C10(yvy106, yvy107, yvy108, yvy109, yvy110, yvy111, yvy112, True, dda, ddb) -> new_mkBalBranch(yvy106, yvy107, yvy109, new_addToFM_C0(yvy110, yvy111, yvy112, dda, ddb), dda, ddb) 52.72/30.43 new_esEs37(yvy4001, yvy3001, ty_Bool) -> new_esEs23(yvy4001, yvy3001) 52.72/30.43 new_esEs10(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.72/30.43 new_compare19(Char(yvy400), Char(yvy300)) -> new_primCmpNat0(yvy400, yvy300) 52.72/30.43 new_lt22(yvy154, yvy157, ty_Ordering) -> new_lt17(yvy154, yvy157) 52.72/30.43 new_gt15(yvy40, yvy30, ty_Ordering) -> new_gt12(yvy40, yvy30) 52.72/30.43 new_compare11(yvy247, yvy248, yvy249, yvy250, False, yvy252, gea, geb) -> new_compare110(yvy247, yvy248, yvy249, yvy250, yvy252, gea, geb) 52.72/30.43 new_lt6(yvy1651, yvy1661, ty_@0) -> new_lt4(yvy1651, yvy1661) 52.72/30.43 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.43 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Char) -> new_ltEs8(yvy1650, yvy1660) 52.72/30.43 new_esEs9(yvy400, yvy300, app(ty_[], gfd)) -> new_esEs18(yvy400, yvy300, gfd) 52.72/30.43 new_esEs36(yvy4002, yvy3002, app(ty_Maybe, bhd)) -> new_esEs24(yvy4002, yvy3002, bhd) 52.72/30.43 new_lt25(yvy40, yvy30, app(ty_[], bb)) -> new_lt10(yvy40, yvy30, bb) 52.72/30.43 new_primPlusInt(Neg(yvy9020), Neg(yvy2100)) -> Neg(new_primPlusNat0(yvy9020, yvy2100)) 52.72/30.43 new_esEs29(yvy190, yvy192, ty_Char) -> new_esEs16(yvy190, yvy192) 52.72/30.43 new_esEs38(yvy4000, yvy3000, app(ty_Ratio, ccc)) -> new_esEs28(yvy4000, yvy3000, ccc) 52.72/30.43 new_gt14(yvy35, yvy30, ty_@0) -> new_gt6(yvy35, yvy30) 52.72/30.43 new_esEs37(yvy4001, yvy3001, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs22(yvy4001, yvy3001, cac, cad, cae) 52.72/30.43 new_esEs32(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.72/30.43 new_lt5(yvy1650, yvy1660, app(app(ty_Either, eac), ead)) -> new_lt16(yvy1650, yvy1660, eac, ead) 52.72/30.43 new_lt5(yvy1650, yvy1660, ty_Bool) -> new_lt14(yvy1650, yvy1660) 52.72/30.43 new_compare18(GT, LT) -> GT 52.72/30.43 new_gt14(yvy35, yvy30, app(ty_Maybe, fa)) -> new_gt10(yvy35, yvy30, fa) 52.72/30.43 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Int) -> new_ltEs9(yvy1650, yvy1660) 52.72/30.43 new_mkBranch(yvy309, yvy310, yvy311, yvy312, yvy313, yvy314, yvy315, yvy316, yvy317, edb, edc) -> new_mkBranchResult(yvy310, yvy311, yvy312, new_mkBranch0(yvy313, yvy314, yvy315, yvy316, yvy317, edb, edc), edb, edc) 52.72/30.43 new_gt10(yvy40, yvy30, bh) -> new_esEs41(new_compare29(yvy40, yvy30, bh)) 52.72/30.43 new_compare18(EQ, LT) -> GT 52.72/30.43 new_esEs11(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.72/30.43 new_lt5(yvy1650, yvy1660, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_lt13(yvy1650, yvy1660, dhg, dhh, eaa) 52.72/30.43 new_esEs10(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.72/30.43 new_compare0([], :(yvy300, yvy301), bb) -> LT 52.72/30.43 new_compare10(yvy237, yvy238, False, fcb, fcc) -> GT 52.72/30.43 new_esEs6(yvy402, yvy302, ty_Ordering) -> new_esEs26(yvy402, yvy302) 52.72/30.43 new_compare30(yvy400, yvy300, ty_@0) -> new_compare5(yvy400, yvy300) 52.72/30.43 new_esEs33(yvy1650, yvy1660, ty_Ordering) -> new_esEs26(yvy1650, yvy1660) 52.72/30.43 new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkBranch1(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, yvy60, yvy61, yvy62, yvy63, yvy64, yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 52.72/30.43 new_esEs16(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 52.72/30.43 new_esEs5(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.72/30.43 new_compare30(yvy400, yvy300, ty_Ordering) -> new_compare18(yvy400, yvy300) 52.72/30.43 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 52.72/30.43 new_lt21(yvy1650, yvy1660, ty_Char) -> new_lt8(yvy1650, yvy1660) 52.72/30.43 new_ltEs23(yvy1651, yvy1661, app(app(ty_@2, gbc), gbd)) -> new_ltEs12(yvy1651, yvy1661, gbc, gbd) 52.72/30.43 new_gt15(yvy40, yvy30, ty_Float) -> new_gt2(yvy40, yvy30) 52.72/30.43 new_lt24(yvy40, yvy50, ty_Float) -> new_lt7(yvy40, yvy50) 52.72/30.43 new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) 52.72/30.43 new_gt6(yvy40, yvy30) -> new_esEs41(new_compare5(yvy40, yvy30)) 52.72/30.43 new_lt20(yvy190, yvy192, app(ty_[], fh)) -> new_lt10(yvy190, yvy192, fh) 52.72/30.43 new_esEs18(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bgh) -> new_asAs(new_esEs30(yvy4000, yvy3000, bgh), new_esEs18(yvy4001, yvy3001, bgh)) 52.72/30.43 new_primCompAux00(yvy133, EQ) -> yvy133 52.72/30.43 new_lt5(yvy1650, yvy1660, ty_Ordering) -> new_lt17(yvy1650, yvy1660) 52.72/30.43 new_mkBalBranch6MkBalBranch4(yvy50, yvy51, EmptyFM, yvy90, True, h, ba) -> error([]) 52.72/30.43 new_compare7(False, True) -> LT 52.72/30.43 new_addToFM(yvy5, yvy40, yvy41, h, ba) -> new_addToFM_C0(yvy5, yvy40, yvy41, h, ba) 52.72/30.43 new_esEs6(yvy402, yvy302, app(app(ty_Either, dee), def)) -> new_esEs25(yvy402, yvy302, dee, def) 52.72/30.43 new_esEs33(yvy1650, yvy1660, ty_Bool) -> new_esEs23(yvy1650, yvy1660) 52.72/30.43 new_esEs33(yvy1650, yvy1660, app(app(app(ty_@3, gac), gad), gae)) -> new_esEs22(yvy1650, yvy1660, gac, gad, gae) 52.72/30.43 new_gt(yvy81, yvy76, app(app(ty_Either, fbe), fbf)) -> new_gt11(yvy81, yvy76, fbe, fbf) 52.72/30.43 new_gt(yvy81, yvy76, app(app(app(ty_@3, fba), fbb), fbc)) -> new_gt8(yvy81, yvy76, fba, fbb, fbc) 52.72/30.43 new_gt14(yvy35, yvy30, ty_Bool) -> new_gt9(yvy35, yvy30) 52.72/30.43 new_esEs6(yvy402, yvy302, ty_@0) -> new_esEs19(yvy402, yvy302) 52.72/30.43 new_esEs35(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.43 new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) 52.72/30.43 new_lt26(yvy20, yvy15, ty_Char) -> new_lt8(yvy20, yvy15) 52.72/30.43 new_esEs29(yvy190, yvy192, ty_Int) -> new_esEs17(yvy190, yvy192) 52.72/30.43 new_compare30(yvy400, yvy300, ty_Integer) -> new_compare14(yvy400, yvy300) 52.72/30.43 new_lt23(yvy155, yvy158, ty_Float) -> new_lt7(yvy155, yvy158) 52.72/30.43 new_lt21(yvy1650, yvy1660, app(ty_[], fhh)) -> new_lt10(yvy1650, yvy1660, fhh) 52.72/30.43 new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) 52.72/30.43 new_esEs37(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.72/30.43 new_esEs9(yvy400, yvy300, app(app(ty_@2, geg), geh)) -> new_esEs21(yvy400, yvy300, geg, geh) 52.72/30.43 new_esEs4(yvy401, yvy301, app(ty_Maybe, bfa)) -> new_esEs24(yvy401, yvy301, bfa) 52.72/30.43 new_splitGT20(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, gce, gcf) -> new_splitGT0(yvy19, yvy20, gce, gcf) 52.72/30.43 new_gt15(yvy40, yvy30, app(app(app(ty_@3, be), bf), bg)) -> new_gt8(yvy40, yvy30, be, bf, bg) 52.72/30.43 new_gt15(yvy40, yvy30, app(app(ty_Either, ca), cb)) -> new_gt11(yvy40, yvy30, ca, cb) 52.72/30.43 new_gt14(yvy35, yvy30, ty_Integer) -> new_gt7(yvy35, yvy30) 52.72/30.43 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Ordering, bbe) -> new_ltEs16(yvy1650, yvy1660) 52.72/30.43 new_esEs27(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs17(new_sr0(yvy4000, yvy3001), new_sr0(yvy4001, yvy3000)) 52.72/30.43 new_esEs31(yvy4001, yvy3001, ty_Char) -> new_esEs16(yvy4001, yvy3001) 52.72/30.43 new_esEs32(yvy4000, yvy3000, app(app(app(ty_@3, fgf), fgg), fgh)) -> new_esEs22(yvy4000, yvy3000, fgf, fgg, fgh) 52.72/30.43 new_ltEs11(yvy165, yvy166) -> new_fsEs(new_compare14(yvy165, yvy166)) 52.72/30.43 new_esEs5(yvy400, yvy300, app(app(ty_Either, bgf), bgg)) -> new_esEs25(yvy400, yvy300, bgf, bgg) 52.72/30.43 new_ltEs13(False, True) -> True 52.72/30.43 new_ltEs13(False, False) -> True 52.72/30.43 new_gt(yvy81, yvy76, ty_Integer) -> new_gt7(yvy81, yvy76) 52.72/30.43 new_esEs32(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.72/30.43 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_Ratio, ffc)) -> new_ltEs18(yvy1650, yvy1660, ffc) 52.72/30.43 new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) 52.72/30.43 new_esEs36(yvy4002, yvy3002, ty_Integer) -> new_esEs20(yvy4002, yvy3002) 52.72/30.43 new_ltEs22(yvy172, yvy173, app(ty_[], fch)) -> new_ltEs10(yvy172, yvy173, fch) 52.72/30.43 new_esEs13(yvy1651, yvy1661, ty_Float) -> new_esEs15(yvy1651, yvy1661) 52.72/30.43 new_lt21(yvy1650, yvy1660, ty_Int) -> new_lt9(yvy1650, yvy1660) 52.72/30.43 new_gt14(yvy35, yvy30, app(app(app(ty_@3, ef), eg), eh)) -> new_gt8(yvy35, yvy30, ef, eg, eh) 52.72/30.43 new_esEs5(yvy400, yvy300, app(ty_Maybe, bgc)) -> new_esEs24(yvy400, yvy300, bgc) 52.72/30.43 new_gt15(yvy40, yvy30, ty_Integer) -> new_gt7(yvy40, yvy30) 52.72/30.43 new_compare30(yvy400, yvy300, ty_Bool) -> new_compare7(yvy400, yvy300) 52.72/30.43 new_esEs6(yvy402, yvy302, ty_Float) -> new_esEs15(yvy402, yvy302) 52.72/30.43 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) 52.72/30.43 new_gt14(yvy35, yvy30, ty_Float) -> new_gt2(yvy35, yvy30) 52.72/30.43 new_lt20(yvy190, yvy192, ty_Char) -> new_lt8(yvy190, yvy192) 52.72/30.43 new_ltEs22(yvy172, yvy173, app(app(ty_@2, fda), fdb)) -> new_ltEs12(yvy172, yvy173, fda, fdb) 52.72/30.43 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(app(ty_@2, cfg), cfh)) -> new_ltEs12(yvy1650, yvy1660, cfg, cfh) 52.72/30.43 new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, EmptyFM, True, h, ba) -> error([]) 52.72/30.43 new_compare13(Float(yvy400, Neg(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.72/30.43 new_lt6(yvy1651, yvy1661, ty_Ordering) -> new_lt17(yvy1651, yvy1661) 52.72/30.43 new_compare29(Just(yvy400), Nothing, bh) -> GT 52.72/30.43 new_lt22(yvy154, yvy157, app(app(ty_Either, dab), dac)) -> new_lt16(yvy154, yvy157, dab, dac) 52.72/30.43 new_esEs14(yvy1650, yvy1660, ty_Char) -> new_esEs16(yvy1650, yvy1660) 52.72/30.43 new_esEs11(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.72/30.43 new_esEs31(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.72/30.43 new_lt22(yvy154, yvy157, ty_Int) -> new_lt9(yvy154, yvy157) 52.72/30.43 new_lt23(yvy155, yvy158, ty_@0) -> new_lt4(yvy155, yvy158) 52.72/30.43 new_lt25(yvy40, yvy30, ty_Char) -> new_lt8(yvy40, yvy30) 52.72/30.43 new_ltEs14(Just(yvy1650), Nothing, bbc) -> False 52.72/30.43 new_ltEs14(Nothing, Nothing, bbc) -> True 52.72/30.43 new_gt15(yvy40, yvy30, ty_Bool) -> new_gt9(yvy40, yvy30) 52.72/30.43 new_esEs41(GT) -> True 52.72/30.43 new_esEs11(yvy400, yvy300, app(ty_Maybe, bdf)) -> new_esEs24(yvy400, yvy300, bdf) 52.72/30.43 new_mkBranch0(yvy313, yvy314, yvy315, yvy316, yvy317, edb, edc) -> new_mkBranchResult(yvy314, yvy315, yvy316, yvy317, edb, edc) 52.72/30.43 new_lt21(yvy1650, yvy1660, app(ty_Maybe, gaf)) -> new_lt15(yvy1650, yvy1660, gaf) 52.72/30.43 new_compare30(yvy400, yvy300, app(ty_[], cdb)) -> new_compare0(yvy400, yvy300, cdb) 52.72/30.43 new_esEs5(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.72/30.43 new_esEs36(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) 52.72/30.43 new_gt15(yvy40, yvy30, app(ty_Ratio, cc)) -> new_gt13(yvy40, yvy30, cc) 52.72/30.43 new_esEs38(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.72/30.43 new_gt(yvy81, yvy76, ty_Bool) -> new_gt9(yvy81, yvy76) 52.72/30.43 new_gt14(yvy35, yvy30, app(app(ty_Either, fb), fc)) -> new_gt11(yvy35, yvy30, fb, fc) 52.72/30.43 new_esEs11(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.72/30.43 new_lt5(yvy1650, yvy1660, ty_Char) -> new_lt8(yvy1650, yvy1660) 52.72/30.43 new_lt21(yvy1650, yvy1660, ty_Ordering) -> new_lt17(yvy1650, yvy1660) 52.72/30.43 new_lt5(yvy1650, yvy1660, app(ty_Maybe, eab)) -> new_lt15(yvy1650, yvy1660, eab) 52.72/30.43 new_lt5(yvy1650, yvy1660, ty_@0) -> new_lt4(yvy1650, yvy1660) 52.72/30.43 new_lt22(yvy154, yvy157, ty_@0) -> new_lt4(yvy154, yvy157) 52.72/30.43 new_ltEs24(yvy156, yvy159, app(app(ty_@2, dbh), dca)) -> new_ltEs12(yvy156, yvy159, dbh, dca) 52.72/30.43 new_sizeFM0(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 52.72/30.43 new_lt22(yvy154, yvy157, ty_Char) -> new_lt8(yvy154, yvy157) 52.72/30.43 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.72/30.43 new_compare18(EQ, EQ) -> EQ 52.72/30.43 new_esEs37(yvy4001, yvy3001, app(ty_Ratio, cba)) -> new_esEs28(yvy4001, yvy3001, cba) 52.72/30.43 new_lt26(yvy20, yvy15, app(ty_[], gcg)) -> new_lt10(yvy20, yvy15, gcg) 52.72/30.43 new_esEs39(yvy155, yvy158, ty_Float) -> new_esEs15(yvy155, yvy158) 52.72/30.43 new_gt15(yvy40, yvy30, ty_@0) -> new_gt6(yvy40, yvy30) 52.72/30.43 new_esEs14(yvy1650, yvy1660, app(ty_Ratio, eae)) -> new_esEs28(yvy1650, yvy1660, eae) 52.72/30.43 new_gt14(yvy35, yvy30, app(ty_Ratio, fd)) -> new_gt13(yvy35, yvy30, fd) 52.72/30.43 new_esEs13(yvy1651, yvy1661, ty_Bool) -> new_esEs23(yvy1651, yvy1661) 52.72/30.43 new_esEs32(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.43 new_esEs33(yvy1650, yvy1660, ty_Integer) -> new_esEs20(yvy1650, yvy1660) 52.72/30.43 new_ltEs8(yvy165, yvy166) -> new_fsEs(new_compare19(yvy165, yvy166)) 52.72/30.43 new_esEs13(yvy1651, yvy1661, app(app(ty_Either, ebe), ebf)) -> new_esEs25(yvy1651, yvy1661, ebe, ebf) 52.72/30.43 new_compare18(LT, EQ) -> LT 52.72/30.43 new_lt20(yvy190, yvy192, ty_@0) -> new_lt4(yvy190, yvy192) 52.72/30.43 new_esEs13(yvy1651, yvy1661, app(app(app(ty_@3, eba), ebb), ebc)) -> new_esEs22(yvy1651, yvy1661, eba, ebb, ebc) 52.72/30.43 new_esEs40(yvy154, yvy157, ty_Ordering) -> new_esEs26(yvy154, yvy157) 52.72/30.43 new_esEs38(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.72/30.43 new_compare0(:(yvy400, yvy401), [], bb) -> GT 52.72/30.43 new_esEs36(yvy4002, yvy3002, ty_Bool) -> new_esEs23(yvy4002, yvy3002) 52.72/30.43 new_esEs36(yvy4002, yvy3002, app(app(ty_Either, bhh), caa)) -> new_esEs25(yvy4002, yvy3002, bhh, caa) 52.72/30.43 new_esEs21(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bgd, bge) -> new_asAs(new_esEs32(yvy4000, yvy3000, bgd), new_esEs31(yvy4001, yvy3001, bge)) 52.72/30.43 new_lt17(yvy40, yvy30) -> new_esEs12(new_compare18(yvy40, yvy30)) 52.72/30.43 new_primPlusNat0(Succ(yvy90200), Succ(yvy21000)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21000))) 52.72/30.43 new_gt14(yvy35, yvy30, ty_Ordering) -> new_gt12(yvy35, yvy30) 52.72/30.43 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Bool, bbe) -> new_ltEs13(yvy1650, yvy1660) 52.72/30.43 new_mkBalBranch6MkBalBranch4(yvy50, yvy51, Branch(yvy540, yvy541, yvy542, yvy543, yvy544), yvy90, True, h, ba) -> new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, yvy90, new_lt9(new_sizeFM0(yvy543, h, ba), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM0(yvy544, h, ba))), h, ba) 52.72/30.43 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Int, bbe) -> new_ltEs9(yvy1650, yvy1660) 52.72/30.43 new_compare30(yvy400, yvy300, app(app(ty_Either, cea), ceb)) -> new_compare16(yvy400, yvy300, cea, ceb) 52.72/30.43 new_gt(yvy81, yvy76, ty_Float) -> new_gt2(yvy81, yvy76) 52.72/30.43 new_esEs4(yvy401, yvy301, app(app(ty_Either, bfe), bff)) -> new_esEs25(yvy401, yvy301, bfe, bff) 52.72/30.43 new_esEs37(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) 52.72/30.43 new_esEs40(yvy154, yvy157, ty_Float) -> new_esEs15(yvy154, yvy157) 52.72/30.43 new_lt24(yvy40, yvy50, ty_Char) -> new_lt8(yvy40, yvy50) 52.72/30.43 new_esEs13(yvy1651, yvy1661, ty_Ordering) -> new_esEs26(yvy1651, yvy1661) 52.72/30.43 new_compare25(yvy179, yvy180, False, cd, ce) -> new_compare10(yvy179, yvy180, new_ltEs19(yvy179, yvy180, ce), cd, ce) 52.72/30.43 new_lt20(yvy190, yvy192, ty_Int) -> new_lt9(yvy190, yvy192) 52.72/30.43 new_esEs35(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.72/30.43 new_compare110(yvy247, yvy248, yvy249, yvy250, False, gea, geb) -> GT 52.72/30.43 new_gt(yvy81, yvy76, ty_Ordering) -> new_gt12(yvy81, yvy76) 52.72/30.43 new_esEs36(yvy4002, yvy3002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs22(yvy4002, yvy3002, bha, bhb, bhc) 52.72/30.43 new_esEs14(yvy1650, yvy1660, ty_Float) -> new_esEs15(yvy1650, yvy1660) 52.72/30.43 new_compare29(Nothing, Just(yvy300), bh) -> LT 52.72/30.43 new_esEs31(yvy4001, yvy3001, ty_Double) -> new_esEs27(yvy4001, yvy3001) 52.72/30.43 new_esEs10(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.72/30.43 new_lt20(yvy190, yvy192, app(ty_Maybe, gf)) -> new_lt15(yvy190, yvy192, gf) 52.72/30.43 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Char, bbe) -> new_ltEs8(yvy1650, yvy1660) 52.72/30.43 new_lt6(yvy1651, yvy1661, app(app(ty_Either, ebe), ebf)) -> new_lt16(yvy1651, yvy1661, ebe, ebf) 52.72/30.43 new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, yvy90, True, h, ba) -> new_mkBranchResult(yvy540, yvy541, new_mkBranchResult(yvy50, yvy51, yvy90, yvy543, h, ba), yvy544, h, ba) 52.72/30.43 new_lt5(yvy1650, yvy1660, ty_Int) -> new_lt9(yvy1650, yvy1660) 52.72/30.43 new_esEs30(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.43 new_esEs11(yvy400, yvy300, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs22(yvy400, yvy300, bdc, bdd, bde) 52.72/30.43 new_esEs33(yvy1650, yvy1660, app(ty_Ratio, gba)) -> new_esEs28(yvy1650, yvy1660, gba) 52.72/30.43 new_compare0(:(yvy400, yvy401), :(yvy300, yvy301), bb) -> new_primCompAux0(yvy400, yvy300, new_compare0(yvy401, yvy301, bb), bb) 52.72/30.43 new_esEs10(yvy400, yvy300, app(ty_Ratio, bcg)) -> new_esEs28(yvy400, yvy300, bcg) 52.72/30.43 new_lt21(yvy1650, yvy1660, app(app(ty_Either, gag), gah)) -> new_lt16(yvy1650, yvy1660, gag, gah) 52.72/30.43 new_gt9(yvy40, yvy30) -> new_esEs41(new_compare7(yvy40, yvy30)) 52.72/30.43 new_ltEs13(True, False) -> False 52.72/30.43 new_esEs36(yvy4002, yvy3002, ty_Char) -> new_esEs16(yvy4002, yvy3002) 52.72/30.43 new_esEs36(yvy4002, yvy3002, ty_Ordering) -> new_esEs26(yvy4002, yvy3002) 52.72/30.43 new_esEs13(yvy1651, yvy1661, ty_Char) -> new_esEs16(yvy1651, yvy1661) 52.72/30.43 new_compare29(Just(yvy400), Just(yvy300), bh) -> new_compare27(yvy400, yvy300, new_esEs9(yvy400, yvy300, bh), bh) 52.72/30.43 new_compare16(Right(yvy400), Right(yvy300), ca, cb) -> new_compare25(yvy400, yvy300, new_esEs11(yvy400, yvy300, cb), ca, cb) 52.72/30.43 new_esEs11(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.72/30.43 new_esEs40(yvy154, yvy157, ty_@0) -> new_esEs19(yvy154, yvy157) 52.72/30.43 new_compare16(Right(yvy400), Left(yvy300), ca, cb) -> GT 52.72/30.43 new_esEs40(yvy154, yvy157, app(app(ty_Either, dab), dac)) -> new_esEs25(yvy154, yvy157, dab, dac) 52.72/30.43 new_ltEs20(yvy191, yvy193, app(ty_[], hb)) -> new_ltEs10(yvy191, yvy193, hb) 52.72/30.43 new_compare30(yvy400, yvy300, app(app(app(ty_@3, cde), cdf), cdg)) -> new_compare31(yvy400, yvy300, cde, cdf, cdg) 52.72/30.43 new_splitGT20(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, gce, gcf) -> new_splitGT10(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_lt26(yvy20, yvy15, gce), gce, gcf) 52.72/30.43 new_lt20(yvy190, yvy192, app(app(ty_Either, gg), gh)) -> new_lt16(yvy190, yvy192, gg, gh) 52.72/30.43 new_ltEs21(yvy165, yvy166, app(ty_[], bae)) -> new_ltEs10(yvy165, yvy166, bae) 52.72/30.43 new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) 52.72/30.43 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Float) -> new_ltEs7(yvy1650, yvy1660) 52.72/30.43 new_esEs29(yvy190, yvy192, ty_Double) -> new_esEs27(yvy190, yvy192) 52.72/30.43 new_compare30(yvy400, yvy300, ty_Float) -> new_compare13(yvy400, yvy300) 52.72/30.43 new_esEs38(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.72/30.43 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Integer, bbe) -> new_ltEs11(yvy1650, yvy1660) 52.72/30.43 new_gt13(yvy40, yvy30, cc) -> new_esEs41(new_compare12(yvy40, yvy30, cc)) 52.72/30.43 new_ltEs17(yvy165, yvy166) -> new_fsEs(new_compare9(yvy165, yvy166)) 52.72/30.43 new_compare110(yvy247, yvy248, yvy249, yvy250, True, gea, geb) -> LT 52.72/30.43 new_splitGT0(Branch(yvy190, yvy191, yvy192, yvy193, yvy194), yvy20, gce, gcf) -> new_splitGT30(yvy190, yvy191, yvy192, yvy193, yvy194, yvy20, gce, gcf) 52.72/30.43 new_primMinusNat0(Zero, Succ(yvy21000)) -> Neg(Succ(yvy21000)) 52.72/30.43 new_mkBranch1(yvy117, yvy118, yvy119, yvy120, yvy121, yvy122, yvy123, yvy124, yvy125, yvy126, yvy127, yvy128, yvy129, fbh, fca) -> Branch(yvy118, yvy119, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(Branch(yvy120, yvy121, yvy122, yvy123, yvy124), fbh, fca)), new_sizeFM0(Branch(yvy125, yvy126, yvy127, yvy128, yvy129), fbh, fca)), Branch(yvy120, yvy121, yvy122, yvy123, yvy124), Branch(yvy125, yvy126, yvy127, yvy128, yvy129)) 52.72/30.43 new_esEs14(yvy1650, yvy1660, app(ty_Maybe, eab)) -> new_esEs24(yvy1650, yvy1660, eab) 52.72/30.43 new_esEs30(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.72/30.43 new_lt24(yvy40, yvy50, app(ty_[], bb)) -> new_lt10(yvy40, yvy50, bb) 52.72/30.43 new_esEs37(yvy4001, yvy3001, ty_Ordering) -> new_esEs26(yvy4001, yvy3001) 52.72/30.43 new_esEs11(yvy400, yvy300, app(ty_Ratio, bea)) -> new_esEs28(yvy400, yvy300, bea) 52.72/30.43 new_lt25(yvy40, yvy30, ty_Float) -> new_lt7(yvy40, yvy30) 52.72/30.43 new_esEs4(yvy401, yvy301, ty_@0) -> new_esEs19(yvy401, yvy301) 52.72/30.43 new_gt(yvy81, yvy76, app(ty_Maybe, fbd)) -> new_gt10(yvy81, yvy76, fbd) 52.72/30.43 new_esEs14(yvy1650, yvy1660, ty_Ordering) -> new_esEs26(yvy1650, yvy1660) 52.72/30.43 new_esEs37(yvy4001, yvy3001, app(ty_Maybe, caf)) -> new_esEs24(yvy4001, yvy3001, caf) 52.72/30.43 new_gt15(yvy40, yvy30, app(ty_Maybe, bh)) -> new_gt10(yvy40, yvy30, bh) 52.72/30.43 new_compare30(yvy400, yvy300, ty_Char) -> new_compare19(yvy400, yvy300) 52.72/30.43 new_lt11(yvy40, yvy30) -> new_esEs12(new_compare14(yvy40, yvy30)) 52.72/30.43 new_esEs39(yvy155, yvy158, ty_@0) -> new_esEs19(yvy155, yvy158) 52.72/30.43 new_ltEs6(yvy1652, yvy1662, app(ty_[], ebh)) -> new_ltEs10(yvy1652, yvy1662, ebh) 52.72/30.43 new_ltEs19(yvy179, yvy180, app(ty_[], cf)) -> new_ltEs10(yvy179, yvy180, cf) 52.72/30.43 new_compare28(yvy172, yvy173, True, fcf, fcg) -> EQ 52.72/30.43 new_esEs38(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.72/30.43 new_sizeFM0(EmptyFM, h, ba) -> Pos(Zero) 52.72/30.43 new_esEs38(yvy4000, yvy3000, app(app(ty_Either, ccd), cce)) -> new_esEs25(yvy4000, yvy3000, ccd, cce) 52.72/30.43 new_esEs34(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.72/30.43 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_@0, bbe) -> new_ltEs4(yvy1650, yvy1660) 52.72/30.43 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_Maybe, edg), bgg) -> new_esEs24(yvy4000, yvy3000, edg) 52.72/30.43 new_compare14(Integer(yvy400), Integer(yvy300)) -> new_primCmpInt(yvy400, yvy300) 52.72/30.43 new_esEs11(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.72/30.43 new_esEs14(yvy1650, yvy1660, app(app(ty_Either, eac), ead)) -> new_esEs25(yvy1650, yvy1660, eac, ead) 52.72/30.43 new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT 52.72/30.43 new_lt21(yvy1650, yvy1660, ty_@0) -> new_lt4(yvy1650, yvy1660) 52.72/30.43 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Int, bgg) -> new_esEs17(yvy4000, yvy3000) 52.72/30.43 new_ltEs19(yvy179, yvy180, ty_Float) -> new_ltEs7(yvy179, yvy180) 52.72/30.43 new_esEs14(yvy1650, yvy1660, ty_Bool) -> new_esEs23(yvy1650, yvy1660) 52.72/30.43 new_lt7(yvy40, yvy30) -> new_esEs12(new_compare13(yvy40, yvy30)) 52.72/30.43 new_splitGT0(EmptyFM, yvy20, gce, gcf) -> new_emptyFM(gce, gcf) 52.72/30.43 new_ltEs19(yvy179, yvy180, app(app(ty_Either, df), dg)) -> new_ltEs15(yvy179, yvy180, df, dg) 52.72/30.43 new_lt23(yvy155, yvy158, ty_Char) -> new_lt8(yvy155, yvy158) 52.72/30.43 new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT 52.72/30.43 new_esEs10(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.72/30.43 new_esEs13(yvy1651, yvy1661, app(ty_Maybe, ebd)) -> new_esEs24(yvy1651, yvy1661, ebd) 52.72/30.43 new_lt26(yvy20, yvy15, ty_Float) -> new_lt7(yvy20, yvy15) 52.72/30.43 new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) 52.72/30.43 new_lt24(yvy40, yvy50, app(app(app(ty_@3, be), bf), bg)) -> new_lt13(yvy40, yvy50, be, bf, bg) 52.72/30.43 new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba) -> new_sizeFM0(yvy90, h, ba) 52.72/30.43 new_esEs38(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.72/30.43 new_esEs24(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.72/30.43 new_esEs33(yvy1650, yvy1660, ty_Int) -> new_esEs17(yvy1650, yvy1660) 52.72/30.43 new_esEs41(EQ) -> False 52.72/30.43 new_gt14(yvy35, yvy30, ty_Char) -> new_gt3(yvy35, yvy30) 52.72/30.43 new_esEs40(yvy154, yvy157, app(ty_[], chc)) -> new_esEs18(yvy154, yvy157, chc) 52.72/30.43 new_lt4(yvy40, yvy30) -> new_esEs12(new_compare5(yvy40, yvy30)) 52.72/30.43 new_primCompAux0(yvy400, yvy300, yvy115, bb) -> new_primCompAux00(yvy115, new_compare30(yvy400, yvy300, bb)) 52.72/30.43 new_splitLT0(EmptyFM, yvy35, ea, eb) -> new_emptyFM(ea, eb) 52.72/30.43 new_ltEs14(Nothing, Just(yvy1660), bbc) -> True 52.72/30.43 new_esEs39(yvy155, yvy158, ty_Double) -> new_esEs27(yvy155, yvy158) 52.72/30.43 new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, yvy904, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), yvy900, yvy901, yvy903, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), yvy50, yvy51, yvy904, yvy54, h, ba) 52.72/30.43 new_mkVBalBranch0(yvy40, yvy41, EmptyFM, yvy5, h, ba) -> new_addToFM(yvy5, yvy40, yvy41, h, ba) 52.72/30.43 new_esEs39(yvy155, yvy158, app(app(ty_Either, dbd), dbe)) -> new_esEs25(yvy155, yvy158, dbd, dbe) 52.72/30.43 new_gt15(yvy40, yvy30, app(ty_[], bb)) -> new_gt5(yvy40, yvy30, bb) 52.72/30.43 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 52.72/30.43 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 52.72/30.43 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, efh), ega), egb)) -> new_esEs22(yvy4000, yvy3000, efh, ega, egb) 52.72/30.43 new_compare30(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) 52.72/30.43 new_esEs39(yvy155, yvy158, ty_Bool) -> new_esEs23(yvy155, yvy158) 52.72/30.43 new_gt(yvy81, yvy76, ty_Char) -> new_gt3(yvy81, yvy76) 52.72/30.43 new_esEs29(yvy190, yvy192, app(app(ty_@2, ga), gb)) -> new_esEs21(yvy190, yvy192, ga, gb) 52.72/30.43 new_lt23(yvy155, yvy158, app(ty_[], dae)) -> new_lt10(yvy155, yvy158, dae) 52.72/30.43 new_esEs7(yvy401, yvy301, app(ty_[], dga)) -> new_esEs18(yvy401, yvy301, dga) 52.72/30.43 new_ltEs13(True, True) -> True 52.72/30.43 new_sr1(Neg(yvy930)) -> Neg(new_primMulNat1(yvy930)) 52.72/30.43 new_esEs9(yvy400, yvy300, app(ty_Ratio, gfa)) -> new_esEs28(yvy400, yvy300, gfa) 52.72/30.43 new_ltEs6(yvy1652, yvy1662, app(ty_Maybe, ecf)) -> new_ltEs14(yvy1652, yvy1662, ecf) 52.72/30.43 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(ty_Either, cfc), cfd), bbe) -> new_ltEs15(yvy1650, yvy1660, cfc, cfd) 52.72/30.43 new_esEs6(yvy402, yvy302, ty_Char) -> new_esEs16(yvy402, yvy302) 52.72/30.43 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(ty_Either, eec), eed), bgg) -> new_esEs25(yvy4000, yvy3000, eec, eed) 52.72/30.43 new_esEs4(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) 52.72/30.43 new_esEs38(yvy4000, yvy3000, app(ty_Maybe, cbh)) -> new_esEs24(yvy4000, yvy3000, cbh) 52.72/30.43 new_esEs18([], [], bgh) -> True 52.72/30.43 new_addToFM_C20(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, False, fad, fae) -> new_addToFM_C10(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, new_gt(yvy81, yvy76, fad), fad, fae) 52.72/30.43 new_compare16(Left(yvy400), Right(yvy300), ca, cb) -> LT 52.72/30.43 new_ltEs24(yvy156, yvy159, ty_Double) -> new_ltEs17(yvy156, yvy159) 52.72/30.43 new_ltEs19(yvy179, yvy180, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs5(yvy179, yvy180, db, dc, dd) 52.72/30.43 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_[], feb)) -> new_ltEs10(yvy1650, yvy1660, feb) 52.72/30.43 new_lt5(yvy1650, yvy1660, app(ty_[], dhd)) -> new_lt10(yvy1650, yvy1660, dhd) 52.72/30.43 new_lt23(yvy155, yvy158, ty_Integer) -> new_lt11(yvy155, yvy158) 52.72/30.43 new_esEs30(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.72/30.43 new_primCmpNat0(Zero, Zero) -> EQ 52.72/30.43 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_Maybe, egc)) -> new_esEs24(yvy4000, yvy3000, egc) 52.72/30.43 new_esEs32(yvy4000, yvy3000, app(ty_Ratio, fhd)) -> new_esEs28(yvy4000, yvy3000, fhd) 52.72/30.43 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_[], eha)) -> new_esEs18(yvy4000, yvy3000, eha) 52.72/30.43 new_esEs10(yvy400, yvy300, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs22(yvy400, yvy300, bca, bcb, bcc) 52.72/30.43 new_lt6(yvy1651, yvy1661, ty_Int) -> new_lt9(yvy1651, yvy1661) 52.72/30.43 new_esEs14(yvy1650, yvy1660, ty_Double) -> new_esEs27(yvy1650, yvy1660) 52.72/30.43 new_lt20(yvy190, yvy192, ty_Bool) -> new_lt14(yvy190, yvy192) 52.72/30.43 new_ltEs22(yvy172, yvy173, ty_Int) -> new_ltEs9(yvy172, yvy173) 52.72/30.43 new_compare26(yvy190, yvy191, yvy192, yvy193, False, ff, fg) -> new_compare11(yvy190, yvy191, yvy192, yvy193, new_lt20(yvy190, yvy192, ff), new_asAs(new_esEs29(yvy190, yvy192, ff), new_ltEs20(yvy191, yvy193, fg)), ff, fg) 52.72/30.43 new_ltEs16(GT, EQ) -> False 52.72/30.43 new_esEs14(yvy1650, yvy1660, ty_Integer) -> new_esEs20(yvy1650, yvy1660) 52.72/30.43 new_compare27(yvy165, yvy166, True, bad) -> EQ 52.72/30.43 new_esEs7(yvy401, yvy301, app(app(app(ty_@3, deh), dfa), dfb)) -> new_esEs22(yvy401, yvy301, deh, dfa, dfb) 52.72/30.43 new_ltEs19(yvy179, yvy180, ty_Double) -> new_ltEs17(yvy179, yvy180) 52.72/30.43 new_lt16(yvy40, yvy30, ca, cb) -> new_esEs12(new_compare16(yvy40, yvy30, ca, cb)) 52.72/30.43 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Integer) -> new_ltEs11(yvy1650, yvy1660) 52.72/30.43 new_esEs4(yvy401, yvy301, ty_Ordering) -> new_esEs26(yvy401, yvy301) 52.72/30.43 new_ltEs10(yvy165, yvy166, bae) -> new_fsEs(new_compare0(yvy165, yvy166, bae)) 52.72/30.43 new_esEs7(yvy401, yvy301, ty_@0) -> new_esEs19(yvy401, yvy301) 52.72/30.43 new_addToFM_C0(Branch(yvy50, yvy51, yvy52, yvy53, yvy54), yvy40, yvy41, h, ba) -> new_addToFM_C20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy40, yvy41, new_lt24(yvy40, yvy50, h), h, ba) 52.72/30.43 new_compare8(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) 52.72/30.43 new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, ea, eb) -> new_splitLT10(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt14(yvy35, yvy30, ea), ea, eb) 52.72/30.43 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.72/30.43 new_ltEs20(yvy191, yvy193, ty_Integer) -> new_ltEs11(yvy191, yvy193) 52.72/30.43 new_ltEs19(yvy179, yvy180, ty_@0) -> new_ltEs4(yvy179, yvy180) 52.72/30.43 new_lt20(yvy190, yvy192, app(app(ty_@2, ga), gb)) -> new_lt12(yvy190, yvy192, ga, gb) 52.72/30.43 new_primCompAux00(yvy133, GT) -> GT 52.72/30.43 new_primMinusNat0(Succ(yvy90200), Zero) -> Pos(Succ(yvy90200)) 52.72/30.43 new_esEs8(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.72/30.43 new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy54, yvy90, new_gt4(new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba))), h, ba) 52.72/30.43 new_esEs37(yvy4001, yvy3001, ty_Char) -> new_esEs16(yvy4001, yvy3001) 52.72/30.43 new_esEs40(yvy154, yvy157, app(ty_Maybe, daa)) -> new_esEs24(yvy154, yvy157, daa) 52.72/30.43 new_esEs40(yvy154, yvy157, ty_Int) -> new_esEs17(yvy154, yvy157) 52.72/30.43 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Ordering) -> new_ltEs16(yvy1650, yvy1660) 52.72/30.43 new_esEs32(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.83/30.43 new_esEs30(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.83/30.43 new_esEs8(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.83/30.43 new_ltEs24(yvy156, yvy159, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_ltEs5(yvy156, yvy159, dcb, dcc, dcd) 52.83/30.43 new_ltEs23(yvy1651, yvy1661, app(ty_[], gbb)) -> new_ltEs10(yvy1651, yvy1661, gbb) 52.83/30.43 new_ltEs24(yvy156, yvy159, ty_@0) -> new_ltEs4(yvy156, yvy159) 52.83/30.43 new_ltEs4(yvy165, yvy166) -> new_fsEs(new_compare5(yvy165, yvy166)) 52.83/30.43 new_esEs33(yvy1650, yvy1660, app(ty_[], fhh)) -> new_esEs18(yvy1650, yvy1660, fhh) 52.83/30.43 new_ltEs16(LT, LT) -> True 52.83/30.43 new_esEs29(yvy190, yvy192, app(app(ty_Either, gg), gh)) -> new_esEs25(yvy190, yvy192, gg, gh) 52.83/30.43 new_ltEs7(yvy165, yvy166) -> new_fsEs(new_compare13(yvy165, yvy166)) 52.83/30.43 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_Ratio, eeb), bgg) -> new_esEs28(yvy4000, yvy3000, eeb) 52.83/30.43 new_ltEs19(yvy179, yvy180, ty_Bool) -> new_ltEs13(yvy179, yvy180) 52.83/30.43 new_lt6(yvy1651, yvy1661, app(ty_Maybe, ebd)) -> new_lt15(yvy1651, yvy1661, ebd) 52.83/30.43 new_lt25(yvy40, yvy30, ty_Bool) -> new_lt14(yvy40, yvy30) 52.83/30.43 new_esEs38(yvy4000, yvy3000, app(ty_[], ccf)) -> new_esEs18(yvy4000, yvy3000, ccf) 52.83/30.43 new_esEs39(yvy155, yvy158, app(app(ty_@2, daf), dag)) -> new_esEs21(yvy155, yvy158, daf, dag) 52.83/30.43 new_gt(yvy81, yvy76, app(ty_Ratio, fbg)) -> new_gt13(yvy81, yvy76, fbg) 52.83/30.43 new_ltEs24(yvy156, yvy159, ty_Float) -> new_ltEs7(yvy156, yvy159) 52.83/30.43 new_esEs13(yvy1651, yvy1661, ty_@0) -> new_esEs19(yvy1651, yvy1661) 52.83/30.43 new_sr(Integer(yvy4000), Integer(yvy3010)) -> Integer(new_primMulInt(yvy4000, yvy3010)) 52.83/30.43 new_primCmpNat0(Succ(yvy4000), Zero) -> GT 52.83/30.43 new_esEs38(yvy4000, yvy3000, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs22(yvy4000, yvy3000, cbe, cbf, cbg) 52.83/30.43 new_addToFM_C10(yvy106, yvy107, yvy108, yvy109, yvy110, yvy111, yvy112, False, dda, ddb) -> Branch(yvy111, yvy112, yvy108, yvy109, yvy110) 52.83/30.43 new_esEs30(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.83/30.43 new_pePe(False, yvy280) -> yvy280 52.83/30.43 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.83/30.43 new_compare6(@2(yvy400, yvy401), @2(yvy300, yvy301), bc, bd) -> new_compare26(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs5(yvy400, yvy300, bc), new_esEs4(yvy401, yvy301, bd)), bc, bd) 52.83/30.43 new_compare25(yvy179, yvy180, True, cd, ce) -> EQ 52.83/30.43 new_compare18(LT, GT) -> LT 52.83/30.43 new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba) -> new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, h), h, ba) 52.83/30.43 new_lt22(yvy154, yvy157, app(ty_Maybe, daa)) -> new_lt15(yvy154, yvy157, daa) 52.83/30.43 new_ltEs16(LT, GT) -> True 52.83/30.43 new_ltEs21(yvy165, yvy166, ty_Double) -> new_ltEs17(yvy165, yvy166) 52.83/30.43 new_primMinusNat0(Succ(yvy90200), Succ(yvy21000)) -> new_primMinusNat0(yvy90200, yvy21000) 52.83/30.43 new_lt23(yvy155, yvy158, ty_Bool) -> new_lt14(yvy155, yvy158) 52.83/30.43 new_lt13(yvy40, yvy30, be, bf, bg) -> new_esEs12(new_compare31(yvy40, yvy30, be, bf, bg)) 52.83/30.43 new_ltEs16(LT, EQ) -> True 52.83/30.43 new_ltEs16(EQ, LT) -> False 52.83/30.43 new_lt20(yvy190, yvy192, ty_Integer) -> new_lt11(yvy190, yvy192) 52.83/30.43 new_esEs6(yvy402, yvy302, ty_Integer) -> new_esEs20(yvy402, yvy302) 52.83/30.43 new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, Branch(yvy900, yvy901, yvy902, yvy903, yvy904), True, h, ba) -> new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, yvy904, new_lt9(new_sizeFM0(yvy904, h, ba), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM0(yvy903, h, ba))), h, ba) 52.83/30.43 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 52.83/30.43 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 52.83/30.43 new_esEs7(yvy401, yvy301, ty_Ordering) -> new_esEs26(yvy401, yvy301) 52.83/30.43 new_lt6(yvy1651, yvy1661, app(app(app(ty_@3, eba), ebb), ebc)) -> new_lt13(yvy1651, yvy1661, eba, ebb, ebc) 52.83/30.43 new_lt23(yvy155, yvy158, app(app(ty_Either, dbd), dbe)) -> new_lt16(yvy155, yvy158, dbd, dbe) 52.83/30.43 new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) -> Branch(yvy50, yvy51, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(yvy90, h, ba)), new_sizeFM0(yvy54, h, ba)), yvy90, yvy54) 52.83/30.43 new_ltEs16(GT, LT) -> False 52.83/30.43 new_esEs4(yvy401, yvy301, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs22(yvy401, yvy301, bef, beg, beh) 52.83/30.43 new_compare30(yvy400, yvy300, app(ty_Maybe, cdh)) -> new_compare29(yvy400, yvy300, cdh) 52.83/30.43 new_lt24(yvy40, yvy50, ty_@0) -> new_lt4(yvy40, yvy50) 52.83/30.43 new_esEs31(yvy4001, yvy3001, ty_Bool) -> new_esEs23(yvy4001, yvy3001) 52.83/30.43 new_esEs25(Left(yvy4000), Left(yvy3000), ty_@0, bgg) -> new_esEs19(yvy4000, yvy3000) 52.83/30.43 new_esEs31(yvy4001, yvy3001, app(app(ty_Either, fgc), fgd)) -> new_esEs25(yvy4001, yvy3001, fgc, fgd) 52.83/30.43 new_ltEs21(yvy165, yvy166, app(app(ty_Either, bbd), bbe)) -> new_ltEs15(yvy165, yvy166, bbd, bbe) 52.83/30.43 new_esEs30(yvy4000, yvy3000, app(ty_Ratio, ehh)) -> new_esEs28(yvy4000, yvy3000, ehh) 52.83/30.43 new_lt21(yvy1650, yvy1660, app(app(app(ty_@3, gac), gad), gae)) -> new_lt13(yvy1650, yvy1660, gac, gad, gae) 52.83/30.43 new_esEs33(yvy1650, yvy1660, app(ty_Maybe, gaf)) -> new_esEs24(yvy1650, yvy1660, gaf) 52.83/30.43 new_esEs9(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.83/30.43 new_lt25(yvy40, yvy30, app(app(ty_@2, bc), bd)) -> new_lt12(yvy40, yvy30, bc, bd) 52.83/30.43 new_ltEs24(yvy156, yvy159, ty_Int) -> new_ltEs9(yvy156, yvy159) 52.83/30.43 new_esEs7(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) 52.83/30.43 new_lt5(yvy1650, yvy1660, app(ty_Ratio, eae)) -> new_lt19(yvy1650, yvy1660, eae) 52.83/30.43 new_esEs10(yvy400, yvy300, app(ty_Maybe, bcd)) -> new_esEs24(yvy400, yvy300, bcd) 52.83/30.43 new_esEs11(yvy400, yvy300, app(app(ty_Either, beb), bec)) -> new_esEs25(yvy400, yvy300, beb, bec) 52.83/30.43 new_esEs6(yvy402, yvy302, app(ty_Ratio, ded)) -> new_esEs28(yvy402, yvy302, ded) 52.83/30.43 new_compare12(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Integer) -> new_compare14(new_sr(yvy400, yvy301), new_sr(yvy300, yvy401)) 52.83/30.43 new_esEs8(yvy400, yvy300, app(app(ty_@2, dgf), dgg)) -> new_esEs21(yvy400, yvy300, dgf, dgg) 52.83/30.43 new_esEs30(yvy4000, yvy3000, app(ty_Maybe, ehe)) -> new_esEs24(yvy4000, yvy3000, ehe) 52.83/30.43 new_ltEs20(yvy191, yvy193, app(ty_Maybe, hh)) -> new_ltEs14(yvy191, yvy193, hh) 52.83/30.43 new_esEs20(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 52.83/30.43 new_esEs33(yvy1650, yvy1660, ty_@0) -> new_esEs19(yvy1650, yvy1660) 52.83/30.43 new_esEs30(yvy4000, yvy3000, app(ty_[], fac)) -> new_esEs18(yvy4000, yvy3000, fac) 52.83/30.43 new_esEs26(GT, GT) -> True 52.83/30.43 new_esEs40(yvy154, yvy157, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs22(yvy154, yvy157, chf, chg, chh) 52.83/30.43 new_ltEs16(EQ, GT) -> True 52.83/30.43 new_ltEs20(yvy191, yvy193, app(app(ty_@2, hc), hd)) -> new_ltEs12(yvy191, yvy193, hc, hd) 52.83/30.43 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_Maybe, feh)) -> new_ltEs14(yvy1650, yvy1660, feh) 52.83/30.43 new_compare18(EQ, GT) -> LT 52.83/30.43 new_ltEs16(EQ, EQ) -> True 52.83/30.43 new_esEs6(yvy402, yvy302, ty_Bool) -> new_esEs23(yvy402, yvy302) 52.83/30.43 new_esEs36(yvy4002, yvy3002, ty_Int) -> new_esEs17(yvy4002, yvy3002) 52.83/30.43 new_compare17(yvy230, yvy231, True, ddc, ddd) -> LT 52.83/30.43 new_esEs29(yvy190, yvy192, ty_Integer) -> new_esEs20(yvy190, yvy192) 52.83/30.43 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Ordering, bgg) -> new_esEs26(yvy4000, yvy3000) 52.83/30.43 new_esEs10(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.83/30.43 new_lt5(yvy1650, yvy1660, ty_Float) -> new_lt7(yvy1650, yvy1660) 52.83/30.43 new_ltEs6(yvy1652, yvy1662, app(app(ty_@2, eca), ecb)) -> new_ltEs12(yvy1652, yvy1662, eca, ecb) 52.83/30.43 new_esEs39(yvy155, yvy158, ty_Char) -> new_esEs16(yvy155, yvy158) 52.83/30.43 new_primMulNat1(Zero) -> Zero 52.83/30.43 new_esEs5(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.83/30.43 new_esEs36(yvy4002, yvy3002, ty_Double) -> new_esEs27(yvy4002, yvy3002) 52.83/30.43 new_lt24(yvy40, yvy50, ty_Int) -> new_lt9(yvy40, yvy50) 52.83/30.43 new_esEs10(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.83/30.43 new_lt5(yvy1650, yvy1660, ty_Integer) -> new_lt11(yvy1650, yvy1660) 52.83/30.43 new_esEs13(yvy1651, yvy1661, ty_Int) -> new_esEs17(yvy1651, yvy1661) 52.83/30.43 new_lt21(yvy1650, yvy1660, ty_Float) -> new_lt7(yvy1650, yvy1660) 52.83/30.43 new_esEs23(False, True) -> False 52.83/30.43 new_esEs23(True, False) -> False 52.83/30.43 new_esEs9(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.83/30.43 new_esEs4(yvy401, yvy301, ty_Char) -> new_esEs16(yvy401, yvy301) 52.83/30.43 new_ltEs6(yvy1652, yvy1662, ty_Ordering) -> new_ltEs16(yvy1652, yvy1662) 52.83/30.43 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_Ratio, egf)) -> new_esEs28(yvy4000, yvy3000, egf) 52.83/30.43 new_esEs40(yvy154, yvy157, app(ty_Ratio, dad)) -> new_esEs28(yvy154, yvy157, dad) 52.83/30.43 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy1650, yvy1660, fec, fed) 52.83/30.43 new_lt18(yvy40, yvy30) -> new_esEs12(new_compare9(yvy40, yvy30)) 52.83/30.43 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Ordering) -> new_ltEs16(yvy1650, yvy1660) 52.83/30.43 new_esEs6(yvy402, yvy302, app(app(ty_@2, deb), dec)) -> new_esEs21(yvy402, yvy302, deb, dec) 52.83/30.43 new_ltEs20(yvy191, yvy193, ty_Ordering) -> new_ltEs16(yvy191, yvy193) 52.83/30.43 new_esEs4(yvy401, yvy301, app(ty_Ratio, bfd)) -> new_esEs28(yvy401, yvy301, bfd) 52.83/30.43 new_esEs5(yvy400, yvy300, app(ty_[], bgh)) -> new_esEs18(yvy400, yvy300, bgh) 52.83/30.43 new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, Branch(yvy5430, yvy5431, yvy5432, yvy5433, yvy5434), yvy544, yvy90, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), yvy5430, yvy5431, new_mkBranchResult(yvy50, yvy51, yvy90, yvy5433, h, ba), Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), yvy540, yvy541, yvy5434, yvy544, h, ba) 52.83/30.43 new_compare7(False, False) -> EQ 52.83/30.43 new_gt15(yvy40, yvy30, ty_Int) -> new_gt4(yvy40, yvy30) 52.83/30.43 new_lt24(yvy40, yvy50, app(ty_Maybe, bh)) -> new_lt15(yvy40, yvy50, bh) 52.83/30.43 new_lt21(yvy1650, yvy1660, app(ty_Ratio, gba)) -> new_lt19(yvy1650, yvy1660, gba) 52.83/30.43 new_primMulInt(Neg(yvy4000), Neg(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) 52.83/30.43 new_esEs32(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.83/30.43 new_sr1(Pos(yvy930)) -> Pos(new_primMulNat1(yvy930)) 52.83/30.43 new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs17(new_sr0(yvy4000, yvy3001), new_sr0(yvy4001, yvy3000)) 52.83/30.43 new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) 52.83/30.43 new_lt19(yvy40, yvy30, cc) -> new_esEs12(new_compare12(yvy40, yvy30, cc)) 52.83/30.43 new_esEs8(yvy400, yvy300, app(app(ty_Either, dha), dhb)) -> new_esEs25(yvy400, yvy300, dha, dhb) 52.83/30.43 new_gt8(yvy40, yvy30, be, bf, bg) -> new_esEs41(new_compare31(yvy40, yvy30, be, bf, bg)) 52.83/30.43 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_Ratio, cfe), bbe) -> new_ltEs18(yvy1650, yvy1660, cfe) 52.83/30.43 new_lt23(yvy155, yvy158, app(app(ty_@2, daf), dag)) -> new_lt12(yvy155, yvy158, daf, dag) 52.83/30.43 new_esEs25(Left(yvy4000), Right(yvy3000), bgf, bgg) -> False 52.83/30.43 new_esEs25(Right(yvy4000), Left(yvy3000), bgf, bgg) -> False 52.83/30.43 new_esEs39(yvy155, yvy158, ty_Integer) -> new_esEs20(yvy155, yvy158) 52.83/30.43 new_esEs30(yvy4000, yvy3000, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs22(yvy4000, yvy3000, ehb, ehc, ehd) 52.83/30.43 new_lt24(yvy40, yvy50, ty_Ordering) -> new_lt17(yvy40, yvy50) 52.83/30.43 new_ltEs21(yvy165, yvy166, ty_Float) -> new_ltEs7(yvy165, yvy166) 52.83/30.43 new_gt12(yvy40, yvy30) -> new_esEs41(new_compare18(yvy40, yvy30)) 52.83/30.43 new_fsEs(yvy281) -> new_not(new_esEs26(yvy281, GT)) 52.83/30.43 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs22(yvy4000, yvy3000, eef, eeg, eeh) 52.83/30.43 new_esEs29(yvy190, yvy192, ty_Bool) -> new_esEs23(yvy190, yvy192) 52.83/30.43 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(ty_@2, edh), eea), bgg) -> new_esEs21(yvy4000, yvy3000, edh, eea) 52.83/30.43 new_esEs22(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfh, bga, bgb) -> new_asAs(new_esEs38(yvy4000, yvy3000, bfh), new_asAs(new_esEs37(yvy4001, yvy3001, bga), new_esEs36(yvy4002, yvy3002, bgb))) 52.83/30.43 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Integer) -> new_ltEs11(yvy1650, yvy1660) 52.83/30.43 new_esEs9(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.83/30.43 new_compare7(True, False) -> GT 52.83/30.43 new_lt26(yvy20, yvy15, ty_@0) -> new_lt4(yvy20, yvy15) 52.83/30.43 new_gt2(yvy40, yvy30) -> new_esEs41(new_compare13(yvy40, yvy30)) 52.83/30.43 new_esEs28(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bee) -> new_asAs(new_esEs35(yvy4000, yvy3000, bee), new_esEs34(yvy4001, yvy3001, bee)) 52.83/30.43 new_lt22(yvy154, yvy157, app(app(app(ty_@3, chf), chg), chh)) -> new_lt13(yvy154, yvy157, chf, chg, chh) 52.83/30.43 new_esEs32(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.83/30.43 new_lt25(yvy40, yvy30, app(app(ty_Either, ca), cb)) -> new_lt16(yvy40, yvy30, ca, cb) 52.83/30.43 new_esEs7(yvy401, yvy301, app(ty_Maybe, dfc)) -> new_esEs24(yvy401, yvy301, dfc) 52.83/30.43 new_esEs31(yvy4001, yvy3001, app(app(ty_@2, ffh), fga)) -> new_esEs21(yvy4001, yvy3001, ffh, fga) 52.83/30.43 new_esEs4(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) 52.83/30.43 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(ty_[], efg)) -> new_esEs18(yvy4000, yvy3000, efg) 52.83/30.43 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(ty_Maybe, cgd)) -> new_ltEs14(yvy1650, yvy1660, cgd) 52.83/30.43 new_lt23(yvy155, yvy158, app(ty_Ratio, dbf)) -> new_lt19(yvy155, yvy158, dbf) 52.83/30.43 new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) 52.83/30.43 new_esEs11(yvy400, yvy300, app(ty_[], bed)) -> new_esEs18(yvy400, yvy300, bed) 52.83/30.43 new_esEs8(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.83/30.43 new_primMulInt(Pos(yvy4000), Neg(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) 52.83/30.43 new_primMulInt(Neg(yvy4000), Pos(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) 52.83/30.43 new_compare27(yvy165, yvy166, False, bad) -> new_compare15(yvy165, yvy166, new_ltEs21(yvy165, yvy166, bad), bad) 52.83/30.43 new_esEs5(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.83/30.43 new_compare30(yvy400, yvy300, app(app(ty_@2, cdc), cdd)) -> new_compare6(yvy400, yvy300, cdc, cdd) 52.83/30.43 new_compare5(@0, @0) -> EQ 52.83/30.43 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(ty_Maybe, efa)) -> new_esEs24(yvy4000, yvy3000, efa) 52.83/30.43 new_ltEs22(yvy172, yvy173, ty_@0) -> new_ltEs4(yvy172, yvy173) 52.83/30.43 new_ltEs22(yvy172, yvy173, app(app(app(ty_@3, fdc), fdd), fde)) -> new_ltEs5(yvy172, yvy173, fdc, fdd, fde) 52.83/30.43 new_ltEs19(yvy179, yvy180, ty_Int) -> new_ltEs9(yvy179, yvy180) 52.83/30.43 new_esEs36(yvy4002, yvy3002, app(ty_[], cab)) -> new_esEs18(yvy4002, yvy3002, cab) 52.83/30.43 new_ltEs23(yvy1651, yvy1661, ty_Ordering) -> new_ltEs16(yvy1651, yvy1661) 52.83/30.43 new_compare210(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, cgh, cha, chb) -> new_compare111(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, new_lt22(yvy154, yvy157, cgh), new_asAs(new_esEs40(yvy154, yvy157, cgh), new_pePe(new_lt23(yvy155, yvy158, cha), new_asAs(new_esEs39(yvy155, yvy158, cha), new_ltEs24(yvy156, yvy159, chb)))), cgh, cha, chb) 52.83/30.43 new_esEs9(yvy400, yvy300, app(ty_Maybe, gef)) -> new_esEs24(yvy400, yvy300, gef) 52.83/30.43 new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba) -> new_splitGT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, h), h, ba) 52.83/30.43 new_esEs5(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.83/30.43 new_ltEs20(yvy191, yvy193, ty_Char) -> new_ltEs8(yvy191, yvy193) 52.83/30.43 new_ltEs22(yvy172, yvy173, ty_Double) -> new_ltEs17(yvy172, yvy173) 52.83/30.43 new_asAs(True, yvy208) -> yvy208 52.83/30.43 new_gt15(yvy40, yvy30, app(app(ty_@2, bc), bd)) -> new_gt1(yvy40, yvy30, bc, bd) 52.83/30.43 new_esEs32(yvy4000, yvy3000, app(app(ty_@2, fhb), fhc)) -> new_esEs21(yvy4000, yvy3000, fhb, fhc) 52.83/30.43 new_ltEs6(yvy1652, yvy1662, app(ty_Ratio, eda)) -> new_ltEs18(yvy1652, yvy1662, eda) 52.83/30.43 new_ltEs23(yvy1651, yvy1661, ty_Integer) -> new_ltEs11(yvy1651, yvy1661) 52.83/30.43 new_lt26(yvy20, yvy15, ty_Bool) -> new_lt14(yvy20, yvy15) 52.83/30.43 new_lt26(yvy20, yvy15, app(app(ty_Either, gdf), gdg)) -> new_lt16(yvy20, yvy15, gdf, gdg) 52.83/30.43 new_esEs5(yvy400, yvy300, app(app(ty_@2, bgd), bge)) -> new_esEs21(yvy400, yvy300, bgd, bge) 52.83/30.43 new_lt26(yvy20, yvy15, ty_Double) -> new_lt18(yvy20, yvy15) 52.83/30.43 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs5(yvy1650, yvy1660, cga, cgb, cgc) 52.83/30.43 new_lt25(yvy40, yvy30, app(ty_Maybe, bh)) -> new_lt15(yvy40, yvy30, bh) 52.83/30.43 new_esEs32(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.83/30.43 new_compare26(yvy190, yvy191, yvy192, yvy193, True, ff, fg) -> EQ 52.83/30.43 new_primPlusInt(Pos(yvy9020), Neg(yvy2100)) -> new_primMinusNat0(yvy9020, yvy2100) 52.83/30.43 new_primPlusInt(Neg(yvy9020), Pos(yvy2100)) -> new_primMinusNat0(yvy2100, yvy9020) 52.83/30.43 new_lt26(yvy20, yvy15, ty_Int) -> new_lt9(yvy20, yvy15) 52.83/30.43 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_[], ced), bbe) -> new_ltEs10(yvy1650, yvy1660, ced) 52.83/30.43 new_lt26(yvy20, yvy15, app(app(app(ty_@3, gdb), gdc), gdd)) -> new_lt13(yvy20, yvy15, gdb, gdc, gdd) 52.83/30.43 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_[], eee), bgg) -> new_esEs18(yvy4000, yvy3000, eee) 52.83/30.43 new_compare15(yvy223, yvy224, False, dde) -> GT 52.83/30.43 new_compare28(yvy172, yvy173, False, fcf, fcg) -> new_compare17(yvy172, yvy173, new_ltEs22(yvy172, yvy173, fcf), fcf, fcg) 52.83/30.43 new_lt21(yvy1650, yvy1660, ty_Double) -> new_lt18(yvy1650, yvy1660) 52.83/30.43 new_compare0([], [], bb) -> EQ 52.83/30.43 new_lt22(yvy154, yvy157, app(app(ty_@2, chd), che)) -> new_lt12(yvy154, yvy157, chd, che) 52.83/30.43 new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba) -> new_sizeFM0(yvy54, h, ba) 52.83/30.43 new_ltEs16(GT, GT) -> True 52.83/30.43 new_compare13(Float(yvy400, Pos(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.83/30.43 new_esEs37(yvy4001, yvy3001, ty_Double) -> new_esEs27(yvy4001, yvy3001) 52.83/30.43 new_esEs9(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.83/30.43 new_lt26(yvy20, yvy15, app(ty_Maybe, gde)) -> new_lt15(yvy20, yvy15, gde) 52.83/30.43 new_primMulNat0(Zero, Zero) -> Zero 52.83/30.43 new_esEs11(yvy400, yvy300, app(app(ty_@2, bdg), bdh)) -> new_esEs21(yvy400, yvy300, bdg, bdh) 52.83/30.43 new_ltEs21(yvy165, yvy166, app(ty_Maybe, bbc)) -> new_ltEs14(yvy165, yvy166, bbc) 52.83/30.43 new_lt26(yvy20, yvy15, ty_Ordering) -> new_lt17(yvy20, yvy15) 52.83/30.43 new_lt5(yvy1650, yvy1660, app(app(ty_@2, dhe), dhf)) -> new_lt12(yvy1650, yvy1660, dhe, dhf) 52.83/30.43 new_ltEs19(yvy179, yvy180, ty_Char) -> new_ltEs8(yvy179, yvy180) 52.83/30.43 new_ltEs23(yvy1651, yvy1661, app(app(ty_Either, gca), gcb)) -> new_ltEs15(yvy1651, yvy1661, gca, gcb) 52.83/30.43 new_esEs4(yvy401, yvy301, app(ty_[], bfg)) -> new_esEs18(yvy401, yvy301, bfg) 52.83/30.43 new_lt21(yvy1650, yvy1660, app(app(ty_@2, gaa), gab)) -> new_lt12(yvy1650, yvy1660, gaa, gab) 52.83/30.43 new_ltEs23(yvy1651, yvy1661, ty_Float) -> new_ltEs7(yvy1651, yvy1661) 52.83/30.43 new_lt5(yvy1650, yvy1660, ty_Double) -> new_lt18(yvy1650, yvy1660) 52.83/30.43 new_ltEs22(yvy172, yvy173, app(ty_Maybe, fdf)) -> new_ltEs14(yvy172, yvy173, fdf) 52.83/30.43 new_esEs32(yvy4000, yvy3000, app(ty_[], fhg)) -> new_esEs18(yvy4000, yvy3000, fhg) 52.83/30.43 new_esEs33(yvy1650, yvy1660, app(app(ty_@2, gaa), gab)) -> new_esEs21(yvy1650, yvy1660, gaa, gab) 52.83/30.43 new_esEs9(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.83/30.43 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Int) -> new_ltEs9(yvy1650, yvy1660) 52.83/30.43 new_compare12(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Int) -> new_compare8(new_sr0(yvy400, yvy301), new_sr0(yvy300, yvy401)) 52.83/30.43 new_ltEs22(yvy172, yvy173, app(app(ty_Either, fdg), fdh)) -> new_ltEs15(yvy172, yvy173, fdg, fdh) 52.83/30.43 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.83/30.43 new_ltEs24(yvy156, yvy159, app(ty_Ratio, dch)) -> new_ltEs18(yvy156, yvy159, dch) 52.83/30.43 new_ltEs6(yvy1652, yvy1662, ty_Char) -> new_ltEs8(yvy1652, yvy1662) 52.83/30.43 new_esEs7(yvy401, yvy301, app(ty_Ratio, dff)) -> new_esEs28(yvy401, yvy301, dff) 52.83/30.43 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 52.83/30.43 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 52.83/30.43 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 52.83/30.43 new_primPlusNat1(yvy270, yvy9300) -> new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(yvy270, Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)) 52.83/30.43 new_gt5(yvy40, yvy30, bb) -> new_esEs41(new_compare0(yvy40, yvy30, bb)) 52.83/30.43 new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 52.83/30.43 new_lt24(yvy40, yvy50, app(ty_Ratio, cc)) -> new_lt19(yvy40, yvy50, cc) 52.83/30.43 new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy53, h, ba), yvy54, h, ba) 52.83/30.43 new_esEs10(yvy400, yvy300, app(ty_[], bdb)) -> new_esEs18(yvy400, yvy300, bdb) 52.83/30.43 new_gt15(yvy40, yvy30, ty_Double) -> new_gt0(yvy40, yvy30) 52.83/30.43 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 52.83/30.43 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 52.83/30.43 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_Maybe, cfb), bbe) -> new_ltEs14(yvy1650, yvy1660, cfb) 52.83/30.43 new_compare31(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), be, bf, bg) -> new_compare210(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs8(yvy400, yvy300, be), new_asAs(new_esEs7(yvy401, yvy301, bf), new_esEs6(yvy402, yvy302, bg))), be, bf, bg) 52.83/30.43 new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) 52.83/30.43 new_lt25(yvy40, yvy30, ty_Double) -> new_lt18(yvy40, yvy30) 52.83/30.43 new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, 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) 52.83/30.43 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 52.83/30.43 new_ltEs22(yvy172, yvy173, ty_Ordering) -> new_ltEs16(yvy172, yvy173) 52.83/30.43 new_compare111(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, yvy269, ccg, cch, cda) -> new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, ccg, cch, cda) 52.83/30.43 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Double) -> new_ltEs17(yvy1650, yvy1660) 52.83/30.43 new_ltEs19(yvy179, yvy180, app(ty_Ratio, dh)) -> new_ltEs18(yvy179, yvy180, dh) 52.83/30.43 new_ltEs21(yvy165, yvy166, ty_Char) -> new_ltEs8(yvy165, yvy166) 52.83/30.43 new_lt25(yvy40, yvy30, app(app(app(ty_@3, be), bf), bg)) -> new_lt13(yvy40, yvy30, be, bf, bg) 52.83/30.43 new_esEs6(yvy402, yvy302, ty_Double) -> new_esEs27(yvy402, yvy302) 52.83/30.43 new_ltEs6(yvy1652, yvy1662, ty_Bool) -> new_ltEs13(yvy1652, yvy1662) 52.83/30.43 new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 52.83/30.43 new_lt20(yvy190, yvy192, ty_Double) -> new_lt18(yvy190, yvy192) 52.83/30.43 new_not(False) -> True 52.83/30.43 new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, yvy90, new_gt4(new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba))), h, ba) 52.83/30.43 new_ltEs23(yvy1651, yvy1661, app(app(app(ty_@3, gbe), gbf), gbg)) -> new_ltEs5(yvy1651, yvy1661, gbe, gbf, gbg) 52.83/30.43 new_esEs8(yvy400, yvy300, app(ty_Ratio, dgh)) -> new_esEs28(yvy400, yvy300, dgh) 52.83/30.43 new_ltEs6(yvy1652, yvy1662, ty_Integer) -> new_ltEs11(yvy1652, yvy1662) 52.83/30.43 new_compare18(GT, EQ) -> GT 52.83/30.43 new_esEs5(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.83/30.43 new_ltEs24(yvy156, yvy159, ty_Ordering) -> new_ltEs16(yvy156, yvy159) 52.83/30.43 new_ltEs21(yvy165, yvy166, ty_@0) -> new_ltEs4(yvy165, yvy166) 52.83/30.43 new_ltEs6(yvy1652, yvy1662, app(app(app(ty_@3, ecc), ecd), ece)) -> new_ltEs5(yvy1652, yvy1662, ecc, ecd, ece) 52.83/30.43 new_ltEs6(yvy1652, yvy1662, ty_@0) -> new_ltEs4(yvy1652, yvy1662) 52.83/30.43 new_ltEs24(yvy156, yvy159, ty_Integer) -> new_ltEs11(yvy156, yvy159) 52.83/30.43 new_gt14(yvy35, yvy30, ty_Double) -> new_gt0(yvy35, yvy30) 52.83/30.43 new_esEs41(LT) -> False 52.83/30.43 new_gt(yvy81, yvy76, app(ty_[], faf)) -> new_gt5(yvy81, yvy76, faf) 52.83/30.43 new_esEs9(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.83/30.43 new_compare11(yvy247, yvy248, yvy249, yvy250, True, yvy252, gea, geb) -> new_compare110(yvy247, yvy248, yvy249, yvy250, True, gea, geb) 52.83/30.43 new_esEs37(yvy4001, yvy3001, app(ty_[], cbd)) -> new_esEs18(yvy4001, yvy3001, cbd) 52.83/30.43 new_lt26(yvy20, yvy15, app(ty_Ratio, gdh)) -> new_lt19(yvy20, yvy15, gdh) 52.83/30.43 new_ltEs20(yvy191, yvy193, app(ty_Ratio, bac)) -> new_ltEs18(yvy191, yvy193, bac) 52.83/30.43 new_ltEs21(yvy165, yvy166, ty_Bool) -> new_ltEs13(yvy165, yvy166) 52.83/30.43 new_esEs4(yvy401, yvy301, ty_Double) -> new_esEs27(yvy401, yvy301) 52.83/30.43 new_esEs38(yvy4000, yvy3000, app(app(ty_@2, cca), ccb)) -> new_esEs21(yvy4000, yvy3000, cca, ccb) 52.83/30.43 new_esEs8(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.83/30.43 new_ltEs23(yvy1651, yvy1661, app(ty_Maybe, gbh)) -> new_ltEs14(yvy1651, yvy1661, gbh) 52.83/30.43 new_compare29(Nothing, Nothing, bh) -> EQ 52.83/30.43 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Double, bgg) -> new_esEs27(yvy4000, yvy3000) 52.83/30.43 new_esEs9(yvy400, yvy300, app(app(app(ty_@3, gec), ged), gee)) -> new_esEs22(yvy400, yvy300, gec, ged, gee) 52.83/30.43 new_sr0(yvy400, yvy301) -> new_primMulInt(yvy400, yvy301) 52.83/30.43 new_ltEs23(yvy1651, yvy1661, app(ty_Ratio, gcc)) -> new_ltEs18(yvy1651, yvy1661, gcc) 52.83/30.43 new_ltEs24(yvy156, yvy159, ty_Bool) -> new_ltEs13(yvy156, yvy159) 52.83/30.43 new_gt(yvy81, yvy76, app(app(ty_@2, fag), fah)) -> new_gt1(yvy81, yvy76, fag, fah) 52.83/30.43 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 52.83/30.43 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 52.83/30.43 new_splitLT10(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, fcd, fce) -> new_mkVBalBranch0(yvy60, yvy61, yvy63, new_splitLT0(yvy64, yvy65, fcd, fce), fcd, fce) 52.83/30.43 new_esEs9(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.83/30.43 new_ltEs23(yvy1651, yvy1661, ty_@0) -> new_ltEs4(yvy1651, yvy1661) 52.83/30.43 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, edd), ede), edf), bgg) -> new_esEs22(yvy4000, yvy3000, edd, ede, edf) 52.83/30.43 new_lt25(yvy40, yvy30, ty_Integer) -> new_lt11(yvy40, yvy30) 52.83/30.43 new_esEs14(yvy1650, yvy1660, app(ty_[], dhd)) -> new_esEs18(yvy1650, yvy1660, dhd) 52.83/30.43 new_ltEs24(yvy156, yvy159, app(app(ty_Either, dcf), dcg)) -> new_ltEs15(yvy156, yvy159, dcf, dcg) 52.83/30.43 new_esEs18(:(yvy4000, yvy4001), [], bgh) -> False 52.83/30.43 new_esEs18([], :(yvy3000, yvy3001), bgh) -> False 52.83/30.43 new_ltEs23(yvy1651, yvy1661, ty_Bool) -> new_ltEs13(yvy1651, yvy1661) 52.83/30.43 new_lt9(yvy40, yvy30) -> new_esEs12(new_compare8(yvy40, yvy30)) 52.83/30.43 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 52.83/30.43 new_ltEs18(yvy165, yvy166, bbf) -> new_fsEs(new_compare12(yvy165, yvy166, bbf)) 52.83/30.43 new_ltEs22(yvy172, yvy173, app(ty_Ratio, fea)) -> new_ltEs18(yvy172, yvy173, fea) 52.83/30.43 new_esEs26(EQ, EQ) -> True 52.83/30.43 new_ltEs21(yvy165, yvy166, ty_Integer) -> new_ltEs11(yvy165, yvy166) 52.83/30.43 new_esEs8(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.83/30.43 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.83/30.43 new_lt6(yvy1651, yvy1661, ty_Double) -> new_lt18(yvy1651, yvy1661) 52.83/30.43 new_compare15(yvy223, yvy224, True, dde) -> LT 52.83/30.43 new_esEs26(LT, LT) -> True 52.83/30.43 new_esEs36(yvy4002, yvy3002, app(app(ty_@2, bhe), bhf)) -> new_esEs21(yvy4002, yvy3002, bhe, bhf) 52.83/30.43 new_esEs9(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.83/30.43 new_esEs24(Nothing, Nothing, bgc) -> True 52.83/30.43 new_addToFM_C0(EmptyFM, yvy40, yvy41, h, ba) -> Branch(yvy40, yvy41, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) 52.83/30.43 new_esEs13(yvy1651, yvy1661, app(app(ty_@2, eag), eah)) -> new_esEs21(yvy1651, yvy1661, eag, eah) 52.83/30.43 new_ltEs21(yvy165, yvy166, ty_Int) -> new_ltEs9(yvy165, yvy166) 52.83/30.43 new_ltEs21(yvy165, yvy166, app(ty_Ratio, bbf)) -> new_ltEs18(yvy165, yvy166, bbf) 52.83/30.43 new_ltEs22(yvy172, yvy173, ty_Bool) -> new_ltEs13(yvy172, yvy173) 52.83/30.43 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 52.83/30.43 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 52.83/30.43 new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, ea, eb) -> new_splitLT0(yvy33, yvy35, ea, eb) 52.83/30.43 new_ltEs24(yvy156, yvy159, ty_Char) -> new_ltEs8(yvy156, yvy159) 52.83/30.43 new_lt23(yvy155, yvy158, ty_Double) -> new_lt18(yvy155, yvy158) 52.83/30.43 new_gt14(yvy35, yvy30, app(ty_[], ec)) -> new_gt5(yvy35, yvy30, ec) 52.83/30.43 new_primEqNat0(Zero, Zero) -> True 52.83/30.43 new_esEs37(yvy4001, yvy3001, app(app(ty_@2, cag), cah)) -> new_esEs21(yvy4001, yvy3001, cag, cah) 52.83/30.43 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.83/30.43 new_esEs14(yvy1650, yvy1660, app(app(ty_@2, dhe), dhf)) -> new_esEs21(yvy1650, yvy1660, dhe, dhf) 52.83/30.43 new_ltEs20(yvy191, yvy193, ty_Int) -> new_ltEs9(yvy191, yvy193) 52.83/30.43 new_esEs24(Nothing, Just(yvy3000), bgc) -> False 52.83/30.43 new_esEs24(Just(yvy4000), Nothing, bgc) -> False 52.83/30.43 new_esEs13(yvy1651, yvy1661, app(ty_[], eaf)) -> new_esEs18(yvy1651, yvy1661, eaf) 52.83/30.43 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.83/30.43 new_lt26(yvy20, yvy15, ty_Integer) -> new_lt11(yvy20, yvy15) 52.83/30.43 new_compare9(Double(yvy400, Neg(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.83/30.43 new_lt22(yvy154, yvy157, ty_Double) -> new_lt18(yvy154, yvy157) 52.83/30.43 new_asAs(False, yvy208) -> False 52.83/30.43 new_ltEs23(yvy1651, yvy1661, ty_Char) -> new_ltEs8(yvy1651, yvy1661) 52.83/30.43 new_ltEs6(yvy1652, yvy1662, ty_Int) -> new_ltEs9(yvy1652, yvy1662) 52.83/30.43 new_gt14(yvy35, yvy30, app(app(ty_@2, ed), ee)) -> new_gt1(yvy35, yvy30, ed, ee) 52.83/30.43 new_compare111(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, False, yvy269, ccg, cch, cda) -> new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, yvy269, ccg, cch, cda) 52.83/30.43 new_ltEs22(yvy172, yvy173, ty_Integer) -> new_ltEs11(yvy172, yvy173) 52.83/30.43 new_ltEs24(yvy156, yvy159, app(ty_Maybe, dce)) -> new_ltEs14(yvy156, yvy159, dce) 52.83/30.43 new_compare30(yvy400, yvy300, app(ty_Ratio, cec)) -> new_compare12(yvy400, yvy300, cec) 52.83/30.43 new_esEs7(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) 52.83/30.43 new_splitLT10(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, False, fcd, fce) -> yvy63 52.83/30.43 new_gt0(yvy40, yvy30) -> new_esEs41(new_compare9(yvy40, yvy30)) 52.83/30.43 new_ltEs21(yvy165, yvy166, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs5(yvy165, yvy166, bah, bba, bbb) 52.83/30.43 52.83/30.43 The set Q consists of the following terms: 52.83/30.43 52.83/30.43 new_esEs8(x0, x1, ty_Ordering) 52.83/30.43 new_esEs7(x0, x1, ty_Char) 52.83/30.43 new_esEs38(x0, x1, app(ty_Ratio, x2)) 52.83/30.43 new_lt25(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.43 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 52.83/30.43 new_esEs10(x0, x1, ty_Int) 52.83/30.43 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 52.83/30.43 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 52.83/30.43 new_esEs38(x0, x1, app(ty_[], x2)) 52.83/30.43 new_ltEs21(x0, x1, ty_Double) 52.83/30.43 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.43 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.43 new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 52.83/30.43 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 52.83/30.43 new_esEs29(x0, x1, ty_@0) 52.83/30.43 new_lt25(x0, x1, ty_Double) 52.83/30.43 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.43 new_esEs7(x0, x1, app(ty_Maybe, x2)) 52.83/30.43 new_asAs(False, x0) 52.83/30.43 new_lt6(x0, x1, app(ty_Ratio, x2)) 52.83/30.43 new_esEs8(x0, x1, ty_Double) 52.83/30.43 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.43 new_compare30(x0, x1, ty_Char) 52.83/30.43 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.43 new_ltEs21(x0, x1, ty_Ordering) 52.83/30.43 new_mkVBalBranch0(x0, x1, EmptyFM, x2, x3, x4) 52.83/30.43 new_compare16(Right(x0), Right(x1), x2, x3) 52.83/30.43 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.43 new_compare27(x0, x1, True, x2) 52.83/30.43 new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) 52.83/30.43 new_esEs29(x0, x1, ty_Bool) 52.83/30.43 new_esEs37(x0, x1, app(ty_Maybe, x2)) 52.83/30.43 new_splitLT20(x0, x1, x2, x3, x4, x5, True, x6, x7) 52.83/30.43 new_lt22(x0, x1, ty_@0) 52.83/30.43 new_lt5(x0, x1, app(ty_[], x2)) 52.83/30.43 new_esEs8(x0, x1, app(ty_[], x2)) 52.83/30.43 new_splitGT20(x0, x1, x2, x3, x4, x5, False, x6, x7) 52.83/30.43 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 52.83/30.43 new_lt5(x0, x1, ty_Float) 52.83/30.43 new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 52.83/30.43 new_ltEs15(Left(x0), Left(x1), ty_Ordering, x2) 52.83/30.43 new_primEqInt(Pos(Zero), Pos(Zero)) 52.83/30.43 new_esEs29(x0, x1, app(ty_Maybe, x2)) 52.83/30.43 new_primMulNat0(Zero, Succ(x0)) 52.83/30.43 new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), EmptyFM, x7, x8) 52.83/30.43 new_ltEs19(x0, x1, ty_Integer) 52.83/30.43 new_lt25(x0, x1, ty_Ordering) 52.83/30.43 new_primPlusNat1(x0, x1) 52.83/30.43 new_ltEs15(Left(x0), Left(x1), ty_Double, x2) 52.83/30.43 new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 52.83/30.43 new_esEs33(x0, x1, app(ty_[], x2)) 52.83/30.43 new_mkBalBranch6MkBalBranch3(x0, x1, x2, EmptyFM, True, x3, x4) 52.83/30.43 new_esEs36(x0, x1, app(ty_Maybe, x2)) 52.83/30.43 new_lt20(x0, x1, ty_Char) 52.83/30.43 new_esEs24(Nothing, Just(x0), x1) 52.83/30.43 new_primCompAux00(x0, GT) 52.83/30.43 new_esEs18(:(x0, x1), :(x2, x3), x4) 52.83/30.43 new_lt26(x0, x1, app(ty_[], x2)) 52.83/30.43 new_ltEs20(x0, x1, ty_Ordering) 52.83/30.43 new_ltEs19(x0, x1, ty_Float) 52.83/30.43 new_sr0(x0, x1) 52.83/30.43 new_ltEs7(x0, x1) 52.83/30.43 new_esEs7(x0, x1, ty_Ordering) 52.83/30.43 new_ltEs15(Left(x0), Left(x1), ty_Char, x2) 52.83/30.43 new_lt26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.43 new_primEqInt(Neg(Zero), Neg(Zero)) 52.83/30.43 new_gt14(x0, x1, ty_Int) 52.83/30.43 new_gt15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.43 new_ltEs11(x0, x1) 52.83/30.43 new_compare0(:(x0, x1), :(x2, x3), x4) 52.83/30.43 new_splitGT30(x0, x1, x2, x3, x4, x5, x6, x7) 52.83/30.43 new_ltEs16(GT, EQ) 52.83/30.43 new_ltEs16(EQ, GT) 52.83/30.43 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 52.83/30.43 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.43 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 52.83/30.43 new_esEs39(x0, x1, ty_Int) 52.83/30.43 new_esEs29(x0, x1, app(ty_[], x2)) 52.83/30.43 new_ltEs24(x0, x1, app(ty_[], x2)) 52.83/30.43 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.43 new_ltEs21(x0, x1, ty_Char) 52.83/30.43 new_lt11(x0, x1) 52.83/30.43 new_esEs29(x0, x1, ty_Integer) 52.83/30.43 new_ltEs16(LT, LT) 52.83/30.43 new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 52.83/30.43 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 52.83/30.43 new_lt19(x0, x1, x2) 52.83/30.43 new_lt25(x0, x1, ty_Char) 52.83/30.43 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) 52.83/30.43 new_esEs8(x0, x1, ty_Char) 52.83/30.43 new_lt16(x0, x1, x2, x3) 52.83/30.43 new_gt15(x0, x1, ty_Int) 52.83/30.43 new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) 52.83/30.43 new_gt15(x0, x1, ty_@0) 52.83/30.43 new_esEs35(x0, x1, ty_Integer) 52.83/30.43 new_lt24(x0, x1, ty_Float) 52.83/30.43 new_ltEs20(x0, x1, ty_Char) 52.83/30.43 new_primPlusNat0(Zero, Succ(x0)) 52.83/30.43 new_compare30(x0, x1, ty_Double) 52.83/30.43 new_esEs20(Integer(x0), Integer(x1)) 52.83/30.43 new_esEs13(x0, x1, app(ty_Ratio, x2)) 52.83/30.43 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.43 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 52.83/30.43 new_lt23(x0, x1, app(ty_Maybe, x2)) 52.83/30.43 new_primEqInt(Pos(Zero), Neg(Zero)) 52.83/30.43 new_primEqInt(Neg(Zero), Pos(Zero)) 52.83/30.43 new_esEs25(Left(x0), Left(x1), ty_Float, x2) 52.83/30.43 new_esEs8(x0, x1, app(ty_Maybe, x2)) 52.83/30.43 new_ltEs20(x0, x1, ty_Double) 52.83/30.43 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.43 new_esEs11(x0, x1, ty_Float) 52.83/30.43 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 52.83/30.43 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 52.83/30.43 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.43 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.43 new_ltEs15(Right(x0), Right(x1), x2, ty_@0) 52.83/30.43 new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) 52.83/30.43 new_esEs34(x0, x1, ty_Integer) 52.83/30.43 new_lt24(x0, x1, app(ty_Maybe, x2)) 52.83/30.43 new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 52.83/30.43 new_ltEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) 52.83/30.43 new_mkVBalBranch3MkVBalBranch10(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) 52.83/30.43 new_mkBranch0(x0, x1, x2, x3, x4, x5, x6) 52.83/30.43 new_splitGT0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) 52.83/30.43 new_gt(x0, x1, ty_Char) 52.83/30.43 new_gt(x0, x1, ty_Double) 52.83/30.43 new_compare18(GT, GT) 52.83/30.43 new_ltEs15(Right(x0), Right(x1), x2, ty_Float) 52.83/30.43 new_esEs25(Left(x0), Left(x1), ty_@0, x2) 52.83/30.43 new_lt23(x0, x1, ty_Char) 52.83/30.43 new_compare7(True, True) 52.83/30.43 new_esEs14(x0, x1, app(ty_Ratio, x2)) 52.83/30.43 new_gt4(x0, x1) 52.83/30.43 new_primCmpNat0(Succ(x0), Zero) 52.83/30.43 new_esEs6(x0, x1, ty_Ordering) 52.83/30.43 new_esEs38(x0, x1, app(ty_Maybe, x2)) 52.83/30.43 new_lt23(x0, x1, ty_Double) 52.83/30.43 new_lt23(x0, x1, app(ty_[], x2)) 52.83/30.43 new_esEs30(x0, x1, app(ty_Maybe, x2)) 52.83/30.43 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 52.83/30.43 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 52.83/30.43 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.43 new_esEs23(False, False) 52.83/30.43 new_esEs29(x0, x1, ty_Float) 52.83/30.43 new_compare19(Char(x0), Char(x1)) 52.83/30.43 new_compare29(Nothing, Just(x0), x1) 52.83/30.43 new_mkVBalBranch3MkVBalBranch20(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) 52.83/30.43 new_esEs32(x0, x1, ty_Double) 52.83/30.43 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.43 new_gt14(x0, x1, ty_Bool) 52.83/30.43 new_primEqNat0(Succ(x0), Succ(x1)) 52.83/30.43 new_esEs31(x0, x1, ty_Float) 52.83/30.43 new_esEs24(Just(x0), Just(x1), ty_Float) 52.83/30.43 new_gt14(x0, x1, ty_Integer) 52.83/30.43 new_esEs25(Right(x0), Right(x1), x2, ty_Int) 52.83/30.43 new_lt24(x0, x1, ty_Integer) 52.83/30.43 new_esEs31(x0, x1, ty_Char) 52.83/30.43 new_esEs12(GT) 52.83/30.43 new_lt20(x0, x1, ty_Ordering) 52.83/30.43 new_gt15(x0, x1, app(ty_Ratio, x2)) 52.83/30.43 new_esEs26(LT, EQ) 52.83/30.43 new_esEs26(EQ, LT) 52.83/30.43 new_primCompAux0(x0, x1, x2, x3) 52.83/30.43 new_esEs25(Left(x0), Left(x1), ty_Bool, x2) 52.83/30.43 new_esEs5(x0, x1, app(ty_Ratio, x2)) 52.83/30.43 new_ltEs19(x0, x1, ty_@0) 52.83/30.43 new_ltEs16(LT, EQ) 52.83/30.43 new_ltEs16(EQ, LT) 52.83/30.43 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.43 new_lt22(x0, x1, ty_Float) 52.83/30.43 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.43 new_compare26(x0, x1, x2, x3, False, x4, x5) 52.83/30.43 new_primPlusInt(Pos(x0), Neg(x1)) 52.83/30.43 new_primPlusInt(Neg(x0), Pos(x1)) 52.83/30.43 new_lt21(x0, x1, ty_Float) 52.83/30.43 new_esEs5(x0, x1, app(ty_[], x2)) 52.83/30.43 new_ltEs22(x0, x1, ty_Int) 52.83/30.43 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.43 new_esEs24(Just(x0), Just(x1), ty_Char) 52.83/30.43 new_esEs30(x0, x1, ty_Int) 52.83/30.43 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.43 new_lt22(x0, x1, ty_Integer) 52.83/30.43 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.43 new_compare110(x0, x1, x2, x3, False, x4, x5) 52.83/30.43 new_lt26(x0, x1, ty_Integer) 52.83/30.43 new_lt20(x0, x1, ty_Double) 52.83/30.43 new_ltEs23(x0, x1, ty_Char) 52.83/30.43 new_esEs18([], :(x0, x1), x2) 52.83/30.43 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 52.83/30.43 new_ltEs24(x0, x1, ty_Char) 52.83/30.43 new_lt7(x0, x1) 52.83/30.43 new_esEs37(x0, x1, app(ty_[], x2)) 52.83/30.43 new_ltEs15(Right(x0), Right(x1), x2, ty_Bool) 52.83/30.43 new_gt(x0, x1, ty_Ordering) 52.83/30.43 new_esEs40(x0, x1, ty_@0) 52.83/30.43 new_lt25(x0, x1, app(ty_Maybe, x2)) 52.83/30.43 new_esEs7(x0, x1, ty_Double) 52.83/30.43 new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 52.83/30.43 new_lt25(x0, x1, app(ty_[], x2)) 52.83/30.43 new_lt22(x0, x1, ty_Int) 52.83/30.43 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, EmptyFM, x5, x6, False, x7, x8) 52.83/30.43 new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) 52.83/30.43 new_ltEs23(x0, x1, ty_Ordering) 52.83/30.43 new_lt24(x0, x1, ty_Ordering) 52.83/30.43 new_esEs37(x0, x1, ty_Int) 52.83/30.43 new_ltEs14(Just(x0), Just(x1), ty_Double) 52.83/30.43 new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 52.83/30.43 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.43 new_gt0(x0, x1) 52.83/30.43 new_esEs33(x0, x1, app(ty_Maybe, x2)) 52.83/30.43 new_esEs39(x0, x1, ty_Integer) 52.83/30.43 new_compare14(Integer(x0), Integer(x1)) 52.83/30.43 new_esEs10(x0, x1, ty_@0) 52.83/30.43 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.43 new_esEs25(Left(x0), Left(x1), ty_Integer, x2) 52.83/30.43 new_esEs6(x0, x1, ty_Char) 52.83/30.43 new_esEs4(x0, x1, ty_Int) 52.83/30.43 new_compare0(:(x0, x1), [], x2) 52.83/30.43 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.43 new_lt18(x0, x1) 52.83/30.43 new_ltEs15(Right(x0), Right(x1), x2, ty_Integer) 52.83/30.43 new_compare15(x0, x1, True, x2) 52.83/30.43 new_esEs14(x0, x1, ty_Int) 52.83/30.43 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.43 new_lt22(x0, x1, ty_Bool) 52.83/30.43 new_lt5(x0, x1, ty_@0) 52.83/30.43 new_ltEs19(x0, x1, app(ty_[], x2)) 52.83/30.43 new_lt5(x0, x1, ty_Double) 52.83/30.43 new_esEs40(x0, x1, app(ty_[], x2)) 52.83/30.43 new_esEs32(x0, x1, ty_@0) 52.83/30.43 new_compare25(x0, x1, False, x2, x3) 52.83/30.43 new_gt(x0, x1, app(ty_Ratio, x2)) 52.83/30.43 new_compare17(x0, x1, True, x2, x3) 52.83/30.43 new_ltEs21(x0, x1, app(ty_[], x2)) 52.83/30.43 new_splitLT10(x0, x1, x2, x3, x4, x5, False, x6, x7) 52.83/30.43 new_primPlusInt(Neg(x0), Neg(x1)) 52.83/30.43 new_esEs35(x0, x1, ty_Int) 52.83/30.43 new_esEs29(x0, x1, ty_Int) 52.83/30.43 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.43 new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 52.83/30.43 new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 52.83/30.43 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 52.83/30.43 new_esEs26(EQ, EQ) 52.83/30.43 new_ltEs13(True, True) 52.83/30.43 new_ltEs6(x0, x1, ty_Double) 52.83/30.43 new_esEs5(x0, x1, app(ty_Maybe, x2)) 52.83/30.43 new_lt24(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.43 new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 52.83/30.44 new_mkBalBranch(x0, x1, x2, x3, x4, x5) 52.83/30.44 new_esEs37(x0, x1, ty_@0) 52.83/30.44 new_lt26(x0, x1, ty_Char) 52.83/30.44 new_esEs23(False, True) 52.83/30.44 new_esEs23(True, False) 52.83/30.44 new_sizeFM0(EmptyFM, x0, x1) 52.83/30.44 new_ltEs21(x0, x1, ty_Float) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, ty_Bool) 52.83/30.44 new_esEs9(x0, x1, ty_Ordering) 52.83/30.44 new_ltEs15(Right(x0), Left(x1), x2, x3) 52.83/30.44 new_ltEs15(Left(x0), Right(x1), x2, x3) 52.83/30.44 new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 52.83/30.44 new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_compare25(x0, x1, True, x2, x3) 52.83/30.44 new_compare18(GT, LT) 52.83/30.44 new_compare18(LT, GT) 52.83/30.44 new_lt22(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_esEs11(x0, x1, ty_Int) 52.83/30.44 new_primCompAux00(x0, EQ) 52.83/30.44 new_lt23(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, ty_@0) 52.83/30.44 new_lt25(x0, x1, ty_Float) 52.83/30.44 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_esEs5(x0, x1, ty_Int) 52.83/30.44 new_gt14(x0, x1, ty_Float) 52.83/30.44 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.83/30.44 new_addToFM_C0(EmptyFM, x0, x1, x2, x3) 52.83/30.44 new_pePe(True, x0) 52.83/30.44 new_esEs30(x0, x1, ty_Bool) 52.83/30.44 new_esEs11(x0, x1, ty_Char) 52.83/30.44 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, ty_Integer) 52.83/30.44 new_gt15(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_ltEs20(x0, x1, ty_Float) 52.83/30.44 new_lt26(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs5(x0, x1, ty_Char) 52.83/30.44 new_lt24(x0, x1, app(ty_[], x2)) 52.83/30.44 new_gt10(x0, x1, x2) 52.83/30.44 new_ltEs24(x0, x1, ty_Ordering) 52.83/30.44 new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 52.83/30.44 new_lt26(x0, x1, ty_Int) 52.83/30.44 new_esEs32(x0, x1, ty_Bool) 52.83/30.44 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_mkBranchResult(x0, x1, x2, x3, x4, x5) 52.83/30.44 new_esEs37(x0, x1, ty_Bool) 52.83/30.44 new_gt(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 52.83/30.44 new_compare28(x0, x1, False, x2, x3) 52.83/30.44 new_ltEs20(x0, x1, ty_Integer) 52.83/30.44 new_ltEs19(x0, x1, ty_Ordering) 52.83/30.44 new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 52.83/30.44 new_esEs13(x0, x1, ty_Bool) 52.83/30.44 new_lt6(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_ltEs24(x0, x1, ty_Double) 52.83/30.44 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) 52.83/30.44 new_splitGT10(x0, x1, x2, x3, x4, x5, False, x6, x7) 52.83/30.44 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_esEs36(x0, x1, ty_Integer) 52.83/30.44 new_primPlusNat0(Zero, Zero) 52.83/30.44 new_lt21(x0, x1, ty_@0) 52.83/30.44 new_lt8(x0, x1) 52.83/30.44 new_esEs8(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_not(True) 52.83/30.44 new_lt10(x0, x1, x2) 52.83/30.44 new_esEs4(x0, x1, ty_Ordering) 52.83/30.44 new_esEs32(x0, x1, ty_Integer) 52.83/30.44 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_lt26(x0, x1, ty_Double) 52.83/30.44 new_ltEs13(False, False) 52.83/30.44 new_lt21(x0, x1, ty_Int) 52.83/30.44 new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) 52.83/30.44 new_splitLT10(x0, x1, x2, x3, x4, x5, True, x6, x7) 52.83/30.44 new_esEs9(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 52.83/30.44 new_lt21(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_lt21(x0, x1, ty_Integer) 52.83/30.44 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 52.83/30.44 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_lt25(x0, x1, ty_Integer) 52.83/30.44 new_gt(x0, x1, ty_Float) 52.83/30.44 new_esEs18(:(x0, x1), [], x2) 52.83/30.44 new_esEs5(x0, x1, ty_@0) 52.83/30.44 new_esEs38(x0, x1, ty_Ordering) 52.83/30.44 new_lt21(x0, x1, ty_Char) 52.83/30.44 new_esEs36(x0, x1, app(ty_[], x2)) 52.83/30.44 new_ltEs6(x0, x1, ty_Ordering) 52.83/30.44 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_ltEs14(Nothing, Nothing, x0) 52.83/30.44 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_esEs36(x0, x1, ty_Bool) 52.83/30.44 new_esEs11(x0, x1, ty_@0) 52.83/30.44 new_esEs10(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_lt5(x0, x1, ty_Ordering) 52.83/30.44 new_lt21(x0, x1, ty_Bool) 52.83/30.44 new_lt15(x0, x1, x2) 52.83/30.44 new_ltEs23(x0, x1, app(ty_[], x2)) 52.83/30.44 new_esEs39(x0, x1, ty_@0) 52.83/30.44 new_splitGT10(x0, x1, x2, x3, x4, x5, True, x6, x7) 52.83/30.44 new_lt24(x0, x1, ty_@0) 52.83/30.44 new_esEs24(Nothing, Nothing, x0) 52.83/30.44 new_esEs36(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_gt15(x0, x1, ty_Float) 52.83/30.44 new_lt26(x0, x1, ty_Bool) 52.83/30.44 new_lt6(x0, x1, ty_@0) 52.83/30.44 new_esEs37(x0, x1, ty_Integer) 52.83/30.44 new_esEs13(x0, x1, ty_Integer) 52.83/30.44 new_ltEs20(x0, x1, ty_Bool) 52.83/30.44 new_esEs8(x0, x1, ty_Float) 52.83/30.44 new_esEs24(Just(x0), Just(x1), ty_Ordering) 52.83/30.44 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 52.83/30.44 new_lt6(x0, x1, app(ty_[], x2)) 52.83/30.44 new_lt25(x0, x1, ty_@0) 52.83/30.44 new_ltEs21(x0, x1, ty_@0) 52.83/30.44 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_ltEs21(x0, x1, ty_Bool) 52.83/30.44 new_esEs7(x0, x1, app(ty_[], x2)) 52.83/30.44 new_esEs40(x0, x1, ty_Integer) 52.83/30.44 new_esEs31(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_esEs30(x0, x1, ty_Double) 52.83/30.44 new_esEs24(Just(x0), Just(x1), ty_Double) 52.83/30.44 new_gt8(x0, x1, x2, x3, x4) 52.83/30.44 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_esEs31(x0, x1, ty_Ordering) 52.83/30.44 new_esEs36(x0, x1, ty_Char) 52.83/30.44 new_ltEs14(Just(x0), Just(x1), ty_Char) 52.83/30.44 new_gt14(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_lt20(x0, x1, ty_Float) 52.83/30.44 new_fsEs(x0) 52.83/30.44 new_lt24(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_primMulInt(Neg(x0), Neg(x1)) 52.83/30.44 new_gt14(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs36(x0, x1, ty_Int) 52.83/30.44 new_ltEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 52.83/30.44 new_esEs11(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs26(EQ, GT) 52.83/30.44 new_esEs26(GT, EQ) 52.83/30.44 new_splitLT30(x0, x1, x2, x3, x4, x5, x6, x7) 52.83/30.44 new_esEs15(Float(x0, x1), Float(x2, x3)) 52.83/30.44 new_primPlusInt(Pos(x0), Pos(x1)) 52.83/30.44 new_gt(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs33(x0, x1, ty_Char) 52.83/30.44 new_esEs5(x0, x1, ty_Bool) 52.83/30.44 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 52.83/30.44 new_esEs31(x0, x1, ty_Double) 52.83/30.44 new_ltEs21(x0, x1, ty_Integer) 52.83/30.44 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 52.83/30.44 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 52.83/30.44 new_esEs11(x0, x1, ty_Bool) 52.83/30.44 new_esEs33(x0, x1, ty_Int) 52.83/30.44 new_ltEs20(x0, x1, app(ty_[], x2)) 52.83/30.44 new_lt20(x0, x1, app(ty_[], x2)) 52.83/30.44 new_addToFM(x0, x1, x2, x3, x4) 52.83/30.44 new_esEs36(x0, x1, ty_Float) 52.83/30.44 new_primMulInt(Pos(x0), Pos(x1)) 52.83/30.44 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_primEqNat0(Zero, Zero) 52.83/30.44 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), False, x12, x13) 52.83/30.44 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_esEs32(x0, x1, ty_Int) 52.83/30.44 new_ltEs4(x0, x1) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 52.83/30.44 new_lt20(x0, x1, ty_Int) 52.83/30.44 new_ltEs22(x0, x1, ty_Ordering) 52.83/30.44 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_not(False) 52.83/30.44 new_lt26(x0, x1, ty_Float) 52.83/30.44 new_mkBalBranch6MkBalBranch4(x0, x1, EmptyFM, x2, True, x3, x4) 52.83/30.44 new_ltEs14(Just(x0), Just(x1), ty_Bool) 52.83/30.44 new_gt15(x0, x1, ty_Bool) 52.83/30.44 new_compare16(Right(x0), Left(x1), x2, x3) 52.83/30.44 new_compare16(Left(x0), Right(x1), x2, x3) 52.83/30.44 new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) 52.83/30.44 new_esEs13(x0, x1, ty_Char) 52.83/30.44 new_esEs12(LT) 52.83/30.44 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_esEs13(x0, x1, ty_Int) 52.83/30.44 new_esEs32(x0, x1, ty_Char) 52.83/30.44 new_esEs40(x0, x1, ty_Bool) 52.83/30.44 new_ltEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 52.83/30.44 new_mkVBalBranch3MkVBalBranch10(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) 52.83/30.44 new_esEs33(x0, x1, ty_Integer) 52.83/30.44 new_esEs40(x0, x1, ty_Float) 52.83/30.44 new_ltEs14(Just(x0), Just(x1), ty_Float) 52.83/30.44 new_esEs14(x0, x1, ty_@0) 52.83/30.44 new_gt3(x0, x1) 52.83/30.44 new_esEs33(x0, x1, ty_Bool) 52.83/30.44 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) 52.83/30.44 new_ltEs9(x0, x1) 52.83/30.44 new_esEs32(x0, x1, ty_Float) 52.83/30.44 new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_gt14(x0, x1, app(ty_[], x2)) 52.83/30.44 new_esEs41(LT) 52.83/30.44 new_lt20(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_gt15(x0, x1, ty_Integer) 52.83/30.44 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_compare29(Just(x0), Just(x1), x2) 52.83/30.44 new_gt14(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 52.83/30.44 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 52.83/30.44 new_esEs40(x0, x1, ty_Int) 52.83/30.44 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_esEs5(x0, x1, ty_Integer) 52.83/30.44 new_esEs4(x0, x1, ty_Double) 52.83/30.44 new_esEs13(x0, x1, ty_Float) 52.83/30.44 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 52.83/30.44 new_esEs11(x0, x1, ty_Integer) 52.83/30.44 new_esEs29(x0, x1, ty_Double) 52.83/30.44 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_lt25(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_addToFM_C0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) 52.83/30.44 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs40(x0, x1, ty_Char) 52.83/30.44 new_ltEs14(Just(x0), Just(x1), ty_Int) 52.83/30.44 new_esEs6(x0, x1, ty_@0) 52.83/30.44 new_compare30(x0, x1, ty_Ordering) 52.83/30.44 new_compare28(x0, x1, True, x2, x3) 52.83/30.44 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 52.83/30.44 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_primPlusNat0(Succ(x0), Zero) 52.83/30.44 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_ltEs15(Left(x0), Left(x1), ty_Int, x2) 52.83/30.44 new_lt23(x0, x1, ty_Bool) 52.83/30.44 new_esEs9(x0, x1, ty_Float) 52.83/30.44 new_compare30(x0, x1, ty_Int) 52.83/30.44 new_esEs31(x0, x1, app(ty_[], x2)) 52.83/30.44 new_gt15(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_gt(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_ltEs6(x0, x1, ty_Integer) 52.83/30.44 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_lt5(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_lt12(x0, x1, x2, x3) 52.83/30.44 new_mkVBalBranch3Size_l(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 52.83/30.44 new_esEs18([], [], x0) 52.83/30.44 new_lt20(x0, x1, ty_@0) 52.83/30.44 new_ltEs24(x0, x1, ty_Float) 52.83/30.44 new_sr(Integer(x0), Integer(x1)) 52.83/30.44 new_compare26(x0, x1, x2, x3, True, x4, x5) 52.83/30.44 new_lt23(x0, x1, ty_@0) 52.83/30.44 new_esEs8(x0, x1, ty_Int) 52.83/30.44 new_lt20(x0, x1, ty_Bool) 52.83/30.44 new_esEs10(x0, x1, ty_Ordering) 52.83/30.44 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 52.83/30.44 new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 52.83/30.44 new_gt15(x0, x1, app(ty_[], x2)) 52.83/30.44 new_primMinusNat0(Zero, Zero) 52.83/30.44 new_esEs7(x0, x1, ty_Int) 52.83/30.44 new_esEs6(x0, x1, ty_Bool) 52.83/30.44 new_emptyFM(x0, x1) 52.83/30.44 new_lt23(x0, x1, ty_Integer) 52.83/30.44 new_gt14(x0, x1, ty_Double) 52.83/30.44 new_gt12(x0, x1) 52.83/30.44 new_ltEs17(x0, x1) 52.83/30.44 new_esEs14(x0, x1, app(ty_[], x2)) 52.83/30.44 new_gt14(x0, x1, ty_Char) 52.83/30.44 new_gt6(x0, x1) 52.83/30.44 new_lt25(x0, x1, ty_Int) 52.83/30.44 new_primCmpNat0(Zero, Succ(x0)) 52.83/30.44 new_esEs26(LT, GT) 52.83/30.44 new_esEs26(GT, LT) 52.83/30.44 new_mkVBalBranch3MkVBalBranch20(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) 52.83/30.44 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_gt14(x0, x1, ty_Ordering) 52.83/30.44 new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 52.83/30.44 new_gt1(x0, x1, x2, x3) 52.83/30.44 new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) 52.83/30.44 new_gt15(x0, x1, ty_Char) 52.83/30.44 new_esEs31(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_primMulNat0(Succ(x0), Zero) 52.83/30.44 new_esEs9(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_sIZE_RATIO 52.83/30.44 new_esEs6(x0, x1, ty_Integer) 52.83/30.44 new_ltEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 52.83/30.44 new_ltEs23(x0, x1, ty_Float) 52.83/30.44 new_ltEs13(False, True) 52.83/30.44 new_ltEs13(True, False) 52.83/30.44 new_lt20(x0, x1, ty_Integer) 52.83/30.44 new_ltEs24(x0, x1, ty_Integer) 52.83/30.44 new_compare18(EQ, LT) 52.83/30.44 new_compare18(LT, EQ) 52.83/30.44 new_ltEs20(x0, x1, ty_Int) 52.83/30.44 new_esEs9(x0, x1, app(ty_[], x2)) 52.83/30.44 new_lt22(x0, x1, ty_Ordering) 52.83/30.44 new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) 52.83/30.44 new_ltEs23(x0, x1, ty_@0) 52.83/30.44 new_esEs33(x0, x1, ty_Float) 52.83/30.44 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_esEs9(x0, x1, ty_Integer) 52.83/30.44 new_lt6(x0, x1, ty_Float) 52.83/30.44 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_compare18(LT, LT) 52.83/30.44 new_gt(x0, x1, ty_Bool) 52.83/30.44 new_ltEs22(x0, x1, ty_Double) 52.83/30.44 new_ltEs21(x0, x1, ty_Int) 52.83/30.44 new_ltEs15(Left(x0), Left(x1), ty_Bool, x2) 52.83/30.44 new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 52.83/30.44 new_compare11(x0, x1, x2, x3, False, x4, x5, x6) 52.83/30.44 new_splitGT20(x0, x1, x2, x3, x4, x5, True, x6, x7) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) 52.83/30.44 new_ltEs14(Just(x0), Just(x1), ty_Integer) 52.83/30.44 new_esEs5(x0, x1, ty_Float) 52.83/30.44 new_esEs39(x0, x1, ty_Double) 52.83/30.44 new_lt21(x0, x1, app(ty_[], x2)) 52.83/30.44 new_esEs40(x0, x1, ty_Ordering) 52.83/30.44 new_esEs4(x0, x1, app(ty_[], x2)) 52.83/30.44 new_esEs29(x0, x1, ty_Ordering) 52.83/30.44 new_gt(x0, x1, ty_@0) 52.83/30.44 new_esEs8(x0, x1, ty_@0) 52.83/30.44 new_pePe(False, x0) 52.83/30.44 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_esEs36(x0, x1, ty_Double) 52.83/30.44 new_lt23(x0, x1, ty_Int) 52.83/30.44 new_lt17(x0, x1) 52.83/30.44 new_splitLT0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) 52.83/30.44 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 52.83/30.44 new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs39(x0, x1, ty_Char) 52.83/30.44 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_gt(x0, x1, ty_Int) 52.83/30.44 new_gt15(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) 52.83/30.44 new_primEqNat0(Succ(x0), Zero) 52.83/30.44 new_compare110(x0, x1, x2, x3, True, x4, x5) 52.83/30.44 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 52.83/30.44 new_compare30(x0, x1, ty_@0) 52.83/30.44 new_lt23(x0, x1, ty_Float) 52.83/30.44 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_ltEs15(Left(x0), Left(x1), ty_Integer, x2) 52.83/30.44 new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 52.83/30.44 new_esEs41(GT) 52.83/30.44 new_esEs8(x0, x1, ty_Bool) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) 52.83/30.44 new_esEs23(True, True) 52.83/30.44 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs13(x0, x1, ty_Double) 52.83/30.44 new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 52.83/30.44 new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.83/30.44 new_esEs6(x0, x1, app(ty_[], x2)) 52.83/30.44 new_lt25(x0, x1, ty_Bool) 52.83/30.44 new_esEs30(x0, x1, ty_Float) 52.83/30.44 new_esEs32(x0, x1, app(ty_[], x2)) 52.83/30.44 new_primPlusNat0(Succ(x0), Succ(x1)) 52.83/30.44 new_ltEs15(Right(x0), Right(x1), x2, ty_Char) 52.83/30.44 new_compare18(EQ, GT) 52.83/30.44 new_compare18(GT, EQ) 52.83/30.44 new_esEs30(x0, x1, app(ty_[], x2)) 52.83/30.44 new_ltEs10(x0, x1, x2) 52.83/30.44 new_ltEs16(GT, GT) 52.83/30.44 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 52.83/30.44 new_lt6(x0, x1, ty_Integer) 52.83/30.44 new_ltEs22(x0, x1, ty_Char) 52.83/30.44 new_ltEs24(x0, x1, ty_Bool) 52.83/30.44 new_compare30(x0, x1, app(ty_[], x2)) 52.83/30.44 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 52.83/30.44 new_mkBalBranch6MkBalBranch3(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) 52.83/30.44 new_esEs33(x0, x1, ty_@0) 52.83/30.44 new_gt(x0, x1, ty_Integer) 52.83/30.44 new_lt25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 52.83/30.44 new_lt26(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 52.83/30.44 new_ltEs23(x0, x1, ty_Int) 52.83/30.44 new_lt13(x0, x1, x2, x3, x4) 52.83/30.44 new_esEs26(GT, GT) 52.83/30.44 new_ltEs20(x0, x1, ty_@0) 52.83/30.44 new_compare27(x0, x1, False, x2) 52.83/30.44 new_esEs14(x0, x1, ty_Integer) 52.83/30.44 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_ltEs15(Left(x0), Left(x1), app(ty_[], x2), x3) 52.83/30.44 new_esEs30(x0, x1, ty_Ordering) 52.83/30.44 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_esEs36(x0, x1, ty_Ordering) 52.83/30.44 new_esEs30(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_gt15(x0, x1, ty_Double) 52.83/30.44 new_compare0([], [], x0) 52.83/30.44 new_sr1(Neg(x0)) 52.83/30.44 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_esEs9(x0, x1, ty_@0) 52.83/30.44 new_splitLT0(EmptyFM, x0, x1, x2) 52.83/30.44 new_esEs24(Just(x0), Just(x1), ty_Int) 52.83/30.44 new_ltEs6(x0, x1, app(ty_[], x2)) 52.83/30.44 new_esEs31(x0, x1, ty_Int) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, ty_Float) 52.83/30.44 new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 52.83/30.44 new_esEs4(x0, x1, ty_Float) 52.83/30.44 new_esEs4(x0, x1, ty_Integer) 52.83/30.44 new_esEs14(x0, x1, ty_Float) 52.83/30.44 new_primCmpInt(Neg(Zero), Neg(Zero)) 52.83/30.44 new_lt6(x0, x1, ty_Ordering) 52.83/30.44 new_ltEs22(x0, x1, ty_Float) 52.83/30.44 new_esEs37(x0, x1, ty_Char) 52.83/30.44 new_lt25(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_esEs7(x0, x1, ty_@0) 52.83/30.44 new_esEs30(x0, x1, ty_Char) 52.83/30.44 new_esEs29(x0, x1, ty_Char) 52.83/30.44 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_primCmpInt(Pos(Zero), Neg(Zero)) 52.83/30.44 new_primCmpInt(Neg(Zero), Pos(Zero)) 52.83/30.44 new_ltEs15(Right(x0), Right(x1), x2, ty_Ordering) 52.83/30.44 new_esEs14(x0, x1, ty_Bool) 52.83/30.44 new_esEs25(Left(x0), Right(x1), x2, x3) 52.83/30.44 new_esEs25(Right(x0), Left(x1), x2, x3) 52.83/30.44 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) 52.83/30.44 new_esEs38(x0, x1, ty_@0) 52.83/30.44 new_ltEs15(Left(x0), Left(x1), ty_@0, x2) 52.83/30.44 new_ltEs19(x0, x1, ty_Double) 52.83/30.44 new_esEs30(x0, x1, ty_Integer) 52.83/30.44 new_esEs10(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_gt5(x0, x1, x2) 52.83/30.44 new_ltEs6(x0, x1, ty_@0) 52.83/30.44 new_ltEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 52.83/30.44 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_ltEs23(x0, x1, ty_Bool) 52.83/30.44 new_compare7(False, False) 52.83/30.44 new_esEs10(x0, x1, ty_Double) 52.83/30.44 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_lt22(x0, x1, ty_Char) 52.83/30.44 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_compare30(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_ltEs23(x0, x1, ty_Integer) 52.83/30.44 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_sr1(Pos(x0)) 52.83/30.44 new_ltEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 52.83/30.44 new_primMinusNat0(Succ(x0), Succ(x1)) 52.83/30.44 new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) 52.83/30.44 new_esEs39(x0, x1, ty_Ordering) 52.83/30.44 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 52.83/30.44 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) 52.83/30.44 new_esEs6(x0, x1, ty_Float) 52.83/30.44 new_esEs4(x0, x1, ty_Char) 52.83/30.44 new_compare0([], :(x0, x1), x2) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, ty_Char) 52.83/30.44 new_lt22(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_esEs37(x0, x1, ty_Float) 52.83/30.44 new_esEs6(x0, x1, ty_Int) 52.83/30.44 new_ltEs14(Just(x0), Just(x1), ty_@0) 52.83/30.44 new_esEs40(x0, x1, ty_Double) 52.83/30.44 new_esEs4(x0, x1, ty_Bool) 52.83/30.44 new_gt(x0, x1, app(ty_[], x2)) 52.83/30.44 new_esEs24(Just(x0), Nothing, x1) 52.83/30.44 new_esEs14(x0, x1, ty_Char) 52.83/30.44 new_esEs38(x0, x1, ty_Double) 52.83/30.44 new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_esEs8(x0, x1, ty_Integer) 52.83/30.44 new_lt5(x0, x1, ty_Int) 52.83/30.44 new_esEs11(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13) 52.83/30.44 new_primMulNat0(Succ(x0), Succ(x1)) 52.83/30.44 new_esEs11(x0, x1, app(ty_[], x2)) 52.83/30.44 new_esEs26(LT, LT) 52.83/30.44 new_esEs30(x0, x1, ty_@0) 52.83/30.44 new_esEs13(x0, x1, ty_@0) 52.83/30.44 new_esEs14(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) 52.83/30.44 new_esEs9(x0, x1, ty_Double) 52.83/30.44 new_esEs24(Just(x0), Just(x1), ty_Bool) 52.83/30.44 new_esEs13(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_ltEs16(EQ, EQ) 52.83/30.44 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_primMulNat1(Succ(x0)) 52.83/30.44 new_ltEs18(x0, x1, x2) 52.83/30.44 new_primMinusNat0(Succ(x0), Zero) 52.83/30.44 new_gt14(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_lt6(x0, x1, ty_Char) 52.83/30.44 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_esEs5(x0, x1, ty_Ordering) 52.83/30.44 new_primMulNat0(Zero, Zero) 52.83/30.44 new_sizeFM(x0, x1, x2, x3, x4, x5, x6) 52.83/30.44 new_compare10(x0, x1, False, x2, x3) 52.83/30.44 new_esEs31(x0, x1, ty_Bool) 52.83/30.44 new_compare5(@0, @0) 52.83/30.44 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_compare30(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_esEs39(x0, x1, app(ty_[], x2)) 52.83/30.44 new_esEs31(x0, x1, ty_Integer) 52.83/30.44 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 52.83/30.44 new_esEs24(Just(x0), Just(x1), ty_Integer) 52.83/30.44 new_esEs39(x0, x1, ty_Float) 52.83/30.44 new_esEs10(x0, x1, ty_Float) 52.83/30.44 new_esEs5(x0, x1, ty_Double) 52.83/30.44 new_esEs9(x0, x1, ty_Int) 52.83/30.44 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 52.83/30.44 new_esEs11(x0, x1, ty_Double) 52.83/30.44 new_esEs40(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_ltEs14(Nothing, Just(x0), x1) 52.83/30.44 new_esEs33(x0, x1, ty_Double) 52.83/30.44 new_primCmpNat0(Succ(x0), Succ(x1)) 52.83/30.44 new_esEs4(x0, x1, ty_@0) 52.83/30.44 new_ltEs22(x0, x1, ty_Integer) 52.83/30.44 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_ltEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 52.83/30.44 new_esEs31(x0, x1, ty_@0) 52.83/30.44 new_compare7(False, True) 52.83/30.44 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_compare7(True, False) 52.83/30.44 new_compare29(Nothing, Nothing, x0) 52.83/30.44 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs24(Just(x0), Just(x1), ty_@0) 52.83/30.44 new_ltEs24(x0, x1, ty_Int) 52.83/30.44 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_lt26(x0, x1, ty_Ordering) 52.83/30.44 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_gt9(x0, x1) 52.83/30.44 new_compare8(x0, x1) 52.83/30.44 new_esEs39(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_ltEs22(x0, x1, ty_Bool) 52.83/30.44 new_compare29(Just(x0), Nothing, x1) 52.83/30.44 new_esEs7(x0, x1, ty_Float) 52.83/30.44 new_mkBranch1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14) 52.83/30.44 new_lt6(x0, x1, ty_Bool) 52.83/30.44 new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_ltEs14(Just(x0), Just(x1), ty_Ordering) 52.83/30.44 new_lt26(x0, x1, ty_@0) 52.83/30.44 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_lt6(x0, x1, ty_Double) 52.83/30.44 new_ltEs15(Right(x0), Right(x1), x2, ty_Double) 52.83/30.44 new_esEs36(x0, x1, ty_@0) 52.83/30.44 new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 52.83/30.44 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_primMinusNat0(Zero, Succ(x0)) 52.83/30.44 new_esEs9(x0, x1, ty_Char) 52.83/30.44 new_ltEs15(Right(x0), Right(x1), x2, ty_Int) 52.83/30.44 new_compare17(x0, x1, False, x2, x3) 52.83/30.44 new_esEs7(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_esEs4(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_esEs14(x0, x1, ty_Ordering) 52.83/30.44 new_lt24(x0, x1, ty_Bool) 52.83/30.44 new_compare15(x0, x1, False, x2) 52.83/30.44 new_lt26(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_lt21(x0, x1, ty_Double) 52.83/30.44 new_esEs39(x0, x1, ty_Bool) 52.83/30.44 new_esEs25(Left(x0), Left(x1), ty_Double, x2) 52.83/30.44 new_esEs32(x0, x1, ty_Ordering) 52.83/30.44 new_gt7(x0, x1) 52.83/30.44 new_esEs33(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_esEs13(x0, x1, ty_Ordering) 52.83/30.44 new_compare30(x0, x1, ty_Float) 52.83/30.44 new_esEs13(x0, x1, app(ty_[], x2)) 52.83/30.44 new_esEs25(Left(x0), Left(x1), ty_Char, x2) 52.83/30.44 new_ltEs8(x0, x1) 52.83/30.44 new_mkBranch(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) 52.83/30.44 new_ltEs16(LT, GT) 52.83/30.44 new_ltEs16(GT, LT) 52.83/30.44 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_lt24(x0, x1, ty_Double) 52.83/30.44 new_lt24(x0, x1, ty_Char) 52.83/30.44 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_lt14(x0, x1) 52.83/30.44 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, EmptyFM, False, x7, x8) 52.83/30.44 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_lt24(x0, x1, ty_Int) 52.83/30.44 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_esEs29(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_lt6(x0, x1, ty_Int) 52.83/30.44 new_primCmpInt(Pos(Zero), Pos(Zero)) 52.83/30.44 new_esEs25(Left(x0), Left(x1), ty_Int, x2) 52.83/30.44 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_asAs(True, x0) 52.83/30.44 new_ltEs6(x0, x1, ty_Char) 52.83/30.44 new_esEs9(x0, x1, ty_Bool) 52.83/30.44 new_compare30(x0, x1, ty_Integer) 52.83/30.44 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_ltEs24(x0, x1, ty_@0) 52.83/30.44 new_lt26(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, ty_Double) 52.83/30.44 new_esEs10(x0, x1, ty_Integer) 52.83/30.44 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) 52.83/30.44 new_esEs6(x0, x1, ty_Double) 52.83/30.44 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_splitLT20(x0, x1, x2, x3, x4, x5, False, x6, x7) 52.83/30.44 new_esEs32(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, x11, False, x12, x13) 52.83/30.44 new_esEs17(x0, x1) 52.83/30.44 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_compare6(@2(x0, x1), @2(x2, x3), x4, x5) 52.83/30.44 new_lt23(x0, x1, ty_Ordering) 52.83/30.44 new_esEs37(x0, x1, ty_Ordering) 52.83/30.44 new_lt5(x0, x1, ty_Integer) 52.83/30.44 new_esEs28(:%(x0, x1), :%(x2, x3), x4) 52.83/30.44 new_compare18(EQ, EQ) 52.83/30.44 new_lt5(x0, x1, ty_Bool) 52.83/30.44 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_gt14(x0, x1, ty_@0) 52.83/30.44 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_esEs38(x0, x1, ty_Integer) 52.83/30.44 new_compare16(Left(x0), Left(x1), x2, x3) 52.83/30.44 new_gt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_compare30(x0, x1, ty_Bool) 52.83/30.44 new_esEs34(x0, x1, ty_Int) 52.83/30.44 new_lt24(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_esEs37(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_esEs6(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs7(x0, x1, ty_Integer) 52.83/30.44 new_lt20(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_esEs32(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_esEs12(EQ) 52.83/30.44 new_esEs16(Char(x0), Char(x1)) 52.83/30.44 new_ltEs22(x0, x1, ty_@0) 52.83/30.44 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_esEs37(x0, x1, ty_Double) 52.83/30.44 new_lt4(x0, x1) 52.83/30.44 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_esEs41(EQ) 52.83/30.44 new_lt21(x0, x1, ty_Ordering) 52.83/30.44 new_gt2(x0, x1) 52.83/30.44 new_lt9(x0, x1) 52.83/30.44 new_esEs38(x0, x1, ty_Bool) 52.83/30.44 new_ltEs6(x0, x1, ty_Float) 52.83/30.44 new_esEs40(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_ltEs23(x0, x1, ty_Double) 52.83/30.44 new_esEs33(x0, x1, ty_Ordering) 52.83/30.44 new_esEs38(x0, x1, ty_Float) 52.83/30.44 new_lt21(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_ltEs19(x0, x1, ty_Int) 52.83/30.44 new_ltEs6(x0, x1, ty_Bool) 52.83/30.44 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.83/30.44 new_ltEs15(Left(x0), Left(x1), ty_Float, x2) 52.83/30.44 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) 52.83/30.44 new_primCompAux00(x0, LT) 52.83/30.44 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_gt15(x0, x1, ty_Ordering) 52.83/30.44 new_esEs38(x0, x1, ty_Int) 52.83/30.44 new_esEs39(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_primMulInt(Pos(x0), Neg(x1)) 52.83/30.44 new_primMulInt(Neg(x0), Pos(x1)) 52.83/30.44 new_compare11(x0, x1, x2, x3, True, x4, x5, x6) 52.83/30.44 new_esEs19(@0, @0) 52.83/30.44 new_ltEs19(x0, x1, ty_Char) 52.83/30.44 new_lt5(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_lt5(x0, x1, ty_Char) 52.83/30.44 new_ltEs6(x0, x1, ty_Int) 52.83/30.44 new_esEs10(x0, x1, ty_Bool) 52.83/30.44 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 52.83/30.44 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 52.83/30.44 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_esEs27(Double(x0, x1), Double(x2, x3)) 52.83/30.44 new_ltEs19(x0, x1, ty_Bool) 52.83/30.44 new_splitGT0(EmptyFM, x0, x1, x2) 52.83/30.44 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_gt13(x0, x1, x2) 52.83/30.44 new_gt11(x0, x1, x2, x3) 52.83/30.44 new_compare10(x0, x1, True, x2, x3) 52.83/30.44 new_esEs11(x0, x1, ty_Ordering) 52.83/30.44 new_esEs6(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_ltEs22(x0, x1, app(ty_[], x2)) 52.83/30.44 new_esEs7(x0, x1, ty_Bool) 52.83/30.44 new_esEs4(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_lt22(x0, x1, app(ty_[], x2)) 52.83/30.44 new_esEs10(x0, x1, ty_Char) 52.83/30.44 new_mkBalBranch6MkBalBranch4(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) 52.83/30.44 new_primEqNat0(Zero, Succ(x0)) 52.83/30.44 new_ltEs14(Just(x0), Nothing, x1) 52.83/30.44 new_primCmpNat0(Zero, Zero) 52.83/30.44 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 52.83/30.44 new_esEs14(x0, x1, ty_Double) 52.83/30.44 new_esEs10(x0, x1, app(ty_[], x2)) 52.83/30.44 new_lt22(x0, x1, ty_Double) 52.83/30.44 new_primMulNat1(Zero) 52.83/30.44 new_esEs38(x0, x1, ty_Char) 52.83/30.44 52.83/30.44 We have to consider all minimal (P,Q,R)-chains. 52.83/30.44 ---------------------------------------- 52.83/30.44 52.83/30.44 (34) TransformationProof (EQUIVALENT) 52.83/30.44 By rewriting [LPAR04] the rule 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) at position [0] we obtained the following new rules [LPAR04]: 52.83/30.44 52.83/30.44 (new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, h), h, ba), yvy44, h, ba),new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, h), h, ba), yvy44, h, ba)) 52.83/30.44 52.83/30.44 52.83/30.44 ---------------------------------------- 52.83/30.44 52.83/30.44 (35) 52.83/30.44 Obligation: 52.83/30.44 Q DP problem: 52.83/30.44 The TRS P consists of the following rules: 52.83/30.44 52.83/30.44 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) 52.83/30.44 new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, h), h, ba), yvy44, h, ba) 52.83/30.44 52.83/30.44 The TRS R consists of the following rules: 52.83/30.44 52.83/30.44 new_esEs14(yvy1650, yvy1660, ty_@0) -> new_esEs19(yvy1650, yvy1660) 52.83/30.44 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(ty_@2, egd), ege)) -> new_esEs21(yvy4000, yvy3000, egd, ege) 52.83/30.44 new_ltEs19(yvy179, yvy180, ty_Integer) -> new_ltEs11(yvy179, yvy180) 52.83/30.44 new_compare9(Double(yvy400, Pos(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.83/30.44 new_lt24(yvy40, yvy50, ty_Bool) -> new_lt14(yvy40, yvy50) 52.83/30.44 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 52.83/30.44 new_primPlusNat0(Zero, Zero) -> Zero 52.83/30.44 new_esEs14(yvy1650, yvy1660, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs22(yvy1650, yvy1660, dhg, dhh, eaa) 52.83/30.44 new_pePe(True, yvy280) -> True 52.83/30.44 new_lt12(yvy40, yvy30, bc, bd) -> new_esEs12(new_compare6(yvy40, yvy30, bc, bd)) 52.83/30.44 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_@0) -> new_ltEs4(yvy1650, yvy1660) 52.83/30.44 new_esEs26(LT, GT) -> False 52.83/30.44 new_esEs26(GT, LT) -> False 52.83/30.44 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs5(yvy1650, yvy1660, fee, fef, feg) 52.83/30.44 new_lt20(yvy190, yvy192, ty_Ordering) -> new_lt17(yvy190, yvy192) 52.83/30.44 new_compare13(Float(yvy400, Pos(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.83/30.44 new_compare13(Float(yvy400, Neg(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.83/30.44 new_esEs8(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.83/30.44 new_esEs30(yvy4000, yvy3000, app(app(ty_@2, ehf), ehg)) -> new_esEs21(yvy4000, yvy3000, ehf, ehg) 52.83/30.44 new_lt24(yvy40, yvy50, app(app(ty_Either, ca), cb)) -> new_lt16(yvy40, yvy50, ca, cb) 52.83/30.44 new_ltEs20(yvy191, yvy193, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs5(yvy191, yvy193, he, hf, hg) 52.83/30.44 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 52.83/30.44 new_addToFM_C20(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, True, fad, fae) -> new_mkBalBranch(yvy76, yvy77, new_addToFM_C0(yvy79, yvy81, yvy82, fad, fae), yvy80, fad, fae) 52.83/30.44 new_esEs26(LT, EQ) -> False 52.83/30.44 new_esEs26(EQ, LT) -> False 52.83/30.44 new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) 52.83/30.44 new_esEs29(yvy190, yvy192, ty_@0) -> new_esEs19(yvy190, yvy192) 52.83/30.44 new_lt6(yvy1651, yvy1661, ty_Char) -> new_lt8(yvy1651, yvy1661) 52.83/30.44 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(ty_Ratio, cgg)) -> new_ltEs18(yvy1650, yvy1660, cgg) 52.83/30.44 new_ltEs19(yvy179, yvy180, app(app(ty_@2, cg), da)) -> new_ltEs12(yvy179, yvy180, cg, da) 52.83/30.44 new_emptyFM(h, ba) -> EmptyFM 52.83/30.44 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(ty_Ratio, efd)) -> new_esEs28(yvy4000, yvy3000, efd) 52.83/30.44 new_lt23(yvy155, yvy158, app(ty_Maybe, dbc)) -> new_lt15(yvy155, yvy158, dbc) 52.83/30.44 new_compare18(LT, LT) -> EQ 52.83/30.44 new_lt24(yvy40, yvy50, app(app(ty_@2, bc), bd)) -> new_lt12(yvy40, yvy50, bc, bd) 52.83/30.44 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Bool) -> new_ltEs13(yvy1650, yvy1660) 52.83/30.44 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(ty_Either, egg), egh)) -> new_esEs25(yvy4000, yvy3000, egg, egh) 52.83/30.44 new_gt1(yvy40, yvy30, bc, bd) -> new_esEs41(new_compare6(yvy40, yvy30, bc, bd)) 52.83/30.44 new_ltEs20(yvy191, yvy193, ty_Float) -> new_ltEs7(yvy191, yvy193) 52.83/30.44 new_esEs30(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.83/30.44 new_esEs8(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.83/30.44 new_lt25(yvy40, yvy30, app(ty_Ratio, cc)) -> new_lt19(yvy40, yvy30, cc) 52.83/30.44 new_esEs6(yvy402, yvy302, ty_Int) -> new_esEs17(yvy402, yvy302) 52.83/30.44 new_ltEs21(yvy165, yvy166, ty_Ordering) -> new_ltEs16(yvy165, yvy166) 52.83/30.44 new_ltEs20(yvy191, yvy193, ty_@0) -> new_ltEs4(yvy191, yvy193) 52.83/30.44 new_esEs39(yvy155, yvy158, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs22(yvy155, yvy158, dah, dba, dbb) 52.83/30.44 new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, False, ccg, cch, cda) -> GT 52.83/30.44 new_esEs33(yvy1650, yvy1660, ty_Char) -> new_esEs16(yvy1650, yvy1660) 52.83/30.44 new_esEs36(yvy4002, yvy3002, app(ty_Ratio, bhg)) -> new_esEs28(yvy4002, yvy3002, bhg) 52.83/30.44 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 52.83/30.44 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Double) -> new_ltEs17(yvy1650, yvy1660) 52.83/30.44 new_esEs40(yvy154, yvy157, ty_Double) -> new_esEs27(yvy154, yvy157) 52.83/30.44 new_esEs31(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) 52.83/30.44 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.83/30.44 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.83/30.44 new_ltEs24(yvy156, yvy159, app(ty_[], dbg)) -> new_ltEs10(yvy156, yvy159, dbg) 52.83/30.44 new_esEs7(yvy401, yvy301, ty_Double) -> new_esEs27(yvy401, yvy301) 52.83/30.44 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(ty_Either, ffa), ffb)) -> new_ltEs15(yvy1650, yvy1660, ffa, ffb) 52.83/30.44 new_not(True) -> False 52.83/30.44 new_ltEs22(yvy172, yvy173, ty_Char) -> new_ltEs8(yvy172, yvy173) 52.83/30.44 new_lt23(yvy155, yvy158, ty_Int) -> new_lt9(yvy155, yvy158) 52.83/30.44 new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, Branch(yvy9040, yvy9041, yvy9042, yvy9043, yvy9044), False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), yvy9040, yvy9041, new_mkBranch0(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), yvy900, yvy901, yvy903, yvy9043, h, ba), Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), yvy50, yvy51, yvy9044, yvy54, h, ba) 52.83/30.44 new_esEs13(yvy1651, yvy1661, ty_Integer) -> new_esEs20(yvy1651, yvy1661) 52.83/30.44 new_gt3(yvy40, yvy30) -> new_esEs41(new_compare19(yvy40, yvy30)) 52.83/30.44 new_primCompAux00(yvy133, LT) -> LT 52.83/30.44 new_esEs39(yvy155, yvy158, ty_Ordering) -> new_esEs26(yvy155, yvy158) 52.83/30.44 new_compare17(yvy230, yvy231, False, ddc, ddd) -> GT 52.83/30.44 new_lt22(yvy154, yvy157, ty_Float) -> new_lt7(yvy154, yvy157) 52.83/30.44 new_lt22(yvy154, yvy157, app(ty_[], chc)) -> new_lt10(yvy154, yvy157, chc) 52.83/30.44 new_esEs39(yvy155, yvy158, app(ty_[], dae)) -> new_esEs18(yvy155, yvy158, dae) 52.83/30.44 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Char, bgg) -> new_esEs16(yvy4000, yvy3000) 52.83/30.44 new_esEs10(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.83/30.44 new_gt11(yvy40, yvy30, ca, cb) -> new_esEs41(new_compare16(yvy40, yvy30, ca, cb)) 52.83/30.44 new_lt24(yvy40, yvy50, ty_Integer) -> new_lt11(yvy40, yvy50) 52.83/30.44 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.83/30.44 new_primMulNat1(Succ(yvy9300)) -> new_primPlusNat1(new_primMulNat0(Zero, Succ(yvy9300)), yvy9300) 52.83/30.44 new_lt24(yvy40, yvy50, ty_Double) -> new_lt18(yvy40, yvy50) 52.83/30.44 new_gt15(yvy40, yvy30, ty_Char) -> new_gt3(yvy40, yvy30) 52.83/30.44 new_esEs38(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.83/30.44 new_esEs31(yvy4001, yvy3001, app(ty_Ratio, fgb)) -> new_esEs28(yvy4001, yvy3001, fgb) 52.83/30.44 new_primEqNat0(Succ(yvy40000), Zero) -> False 52.83/30.44 new_primEqNat0(Zero, Succ(yvy30000)) -> False 52.83/30.44 new_esEs39(yvy155, yvy158, app(ty_Maybe, dbc)) -> new_esEs24(yvy155, yvy158, dbc) 52.83/30.44 new_esEs10(yvy400, yvy300, app(app(ty_@2, bce), bcf)) -> new_esEs21(yvy400, yvy300, bce, bcf) 52.83/30.44 new_esEs36(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) 52.83/30.44 new_ltEs21(yvy165, yvy166, app(app(ty_@2, baf), bag)) -> new_ltEs12(yvy165, yvy166, baf, bag) 52.83/30.44 new_compare10(yvy237, yvy238, True, fcb, fcc) -> LT 52.83/30.44 new_lt6(yvy1651, yvy1661, app(app(ty_@2, eag), eah)) -> new_lt12(yvy1651, yvy1661, eag, eah) 52.83/30.44 new_gt7(yvy40, yvy30) -> new_esEs41(new_compare14(yvy40, yvy30)) 52.83/30.44 new_lt20(yvy190, yvy192, app(app(app(ty_@3, gc), gd), ge)) -> new_lt13(yvy190, yvy192, gc, gd, ge) 52.83/30.44 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(ty_@2, cee), cef), bbe) -> new_ltEs12(yvy1650, yvy1660, cee, cef) 52.83/30.44 new_compare7(True, True) -> EQ 52.83/30.44 new_gt(yvy81, yvy76, ty_Double) -> new_gt0(yvy81, yvy76) 52.83/30.44 new_ltEs20(yvy191, yvy193, ty_Bool) -> new_ltEs13(yvy191, yvy193) 52.83/30.44 new_primPlusInt(Pos(yvy9020), Pos(yvy2100)) -> Pos(new_primPlusNat0(yvy9020, yvy2100)) 52.83/30.44 new_compare210(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, True, cgh, cha, chb) -> EQ 52.83/30.44 new_esEs31(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) 52.83/30.44 new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT 52.83/30.44 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Integer, bgg) -> new_esEs20(yvy4000, yvy3000) 52.83/30.44 new_esEs40(yvy154, yvy157, app(app(ty_@2, chd), che)) -> new_esEs21(yvy154, yvy157, chd, che) 52.83/30.44 new_esEs5(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.83/30.44 new_esEs29(yvy190, yvy192, ty_Ordering) -> new_esEs26(yvy190, yvy192) 52.83/30.44 new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, True, h, ba) -> new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) 52.83/30.44 new_esEs29(yvy190, yvy192, ty_Float) -> new_esEs15(yvy190, yvy192) 52.83/30.44 new_esEs10(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.83/30.44 new_ltEs9(yvy165, yvy166) -> new_fsEs(new_compare8(yvy165, yvy166)) 52.83/30.44 new_ltEs6(yvy1652, yvy1662, ty_Double) -> new_ltEs17(yvy1652, yvy1662) 52.83/30.44 new_lt6(yvy1651, yvy1661, app(ty_[], eaf)) -> new_lt10(yvy1651, yvy1661, eaf) 52.83/30.44 new_esEs34(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.83/30.44 new_esEs7(yvy401, yvy301, ty_Integer) -> new_esEs20(yvy401, yvy301) 52.83/30.44 new_esEs4(yvy401, yvy301, app(app(ty_@2, bfb), bfc)) -> new_esEs21(yvy401, yvy301, bfb, bfc) 52.83/30.44 new_primCmpNat0(Zero, Succ(yvy3000)) -> LT 52.83/30.44 new_esEs30(yvy4000, yvy3000, app(app(ty_Either, faa), fab)) -> new_esEs25(yvy4000, yvy3000, faa, fab) 52.83/30.44 new_ltEs23(yvy1651, yvy1661, ty_Int) -> new_ltEs9(yvy1651, yvy1661) 52.83/30.44 new_ltEs20(yvy191, yvy193, ty_Double) -> new_ltEs17(yvy191, yvy193) 52.83/30.44 new_esEs38(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.83/30.44 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Float) -> new_ltEs7(yvy1650, yvy1660) 52.83/30.44 new_ltEs15(Right(yvy1650), Left(yvy1660), bbd, bbe) -> False 52.83/30.44 new_esEs8(yvy400, yvy300, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs22(yvy400, yvy300, dgb, dgc, dgd) 52.83/30.44 new_esEs11(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.83/30.44 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 52.83/30.44 new_esEs8(yvy400, yvy300, app(ty_[], dhc)) -> new_esEs18(yvy400, yvy300, dhc) 52.83/30.44 new_compare18(GT, GT) -> EQ 52.83/30.44 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Char) -> new_ltEs8(yvy1650, yvy1660) 52.83/30.44 new_esEs33(yvy1650, yvy1660, ty_Double) -> new_esEs27(yvy1650, yvy1660) 52.83/30.44 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.83/30.44 new_esEs8(yvy400, yvy300, app(ty_Maybe, dge)) -> new_esEs24(yvy400, yvy300, dge) 52.83/30.44 new_ltEs23(yvy1651, yvy1661, ty_Double) -> new_ltEs17(yvy1651, yvy1661) 52.83/30.44 new_esEs29(yvy190, yvy192, app(ty_Maybe, gf)) -> new_esEs24(yvy190, yvy192, gf) 52.83/30.44 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.83/30.44 new_esEs23(True, True) -> True 52.83/30.44 new_lt22(yvy154, yvy157, app(ty_Ratio, dad)) -> new_lt19(yvy154, yvy157, dad) 52.83/30.44 new_lt23(yvy155, yvy158, app(app(app(ty_@3, dah), dba), dbb)) -> new_lt13(yvy155, yvy158, dah, dba, dbb) 52.83/30.44 new_esEs39(yvy155, yvy158, ty_Int) -> new_esEs17(yvy155, yvy158) 52.83/30.44 new_ltEs19(yvy179, yvy180, app(ty_Maybe, de)) -> new_ltEs14(yvy179, yvy180, de) 52.83/30.44 new_ltEs5(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bah, bba, bbb) -> new_pePe(new_lt5(yvy1650, yvy1660, bah), new_asAs(new_esEs14(yvy1650, yvy1660, bah), new_pePe(new_lt6(yvy1651, yvy1661, bba), new_asAs(new_esEs13(yvy1651, yvy1661, bba), new_ltEs6(yvy1652, yvy1662, bbb))))) 52.83/30.44 new_esEs29(yvy190, yvy192, app(ty_[], fh)) -> new_esEs18(yvy190, yvy192, fh) 52.83/30.44 new_lt6(yvy1651, yvy1661, ty_Bool) -> new_lt14(yvy1651, yvy1661) 52.83/30.44 new_splitGT10(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bbg, bbh) -> new_mkVBalBranch0(yvy45, yvy46, new_splitGT0(yvy48, yvy50, bbg, bbh), yvy49, bbg, bbh) 52.83/30.44 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_@0) -> new_ltEs4(yvy1650, yvy1660) 52.83/30.44 new_esEs7(yvy401, yvy301, ty_Char) -> new_esEs16(yvy401, yvy301) 52.83/30.44 new_esEs9(yvy400, yvy300, app(app(ty_Either, gfb), gfc)) -> new_esEs25(yvy400, yvy300, gfb, gfc) 52.83/30.44 new_compare30(yvy400, yvy300, ty_Int) -> new_compare8(yvy400, yvy300) 52.83/30.44 new_esEs40(yvy154, yvy157, ty_Char) -> new_esEs16(yvy154, yvy157) 52.83/30.44 new_esEs29(yvy190, yvy192, app(ty_Ratio, ha)) -> new_esEs28(yvy190, yvy192, ha) 52.83/30.44 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(app(ty_Either, efe), eff)) -> new_esEs25(yvy4000, yvy3000, efe, eff) 52.83/30.44 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(app(ty_Either, cge), cgf)) -> new_ltEs15(yvy1650, yvy1660, cge, cgf) 52.83/30.44 new_esEs6(yvy402, yvy302, app(ty_Maybe, dea)) -> new_esEs24(yvy402, yvy302, dea) 52.83/30.44 new_esEs39(yvy155, yvy158, app(ty_Ratio, dbf)) -> new_esEs28(yvy155, yvy158, dbf) 52.83/30.44 new_esEs4(yvy401, yvy301, ty_Bool) -> new_esEs23(yvy401, yvy301) 52.83/30.44 new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, EmptyFM, yvy544, yvy90, False, h, ba) -> error([]) 52.83/30.44 new_lt8(yvy40, yvy30) -> new_esEs12(new_compare19(yvy40, yvy30)) 52.83/30.44 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Bool, bgg) -> new_esEs23(yvy4000, yvy3000) 52.83/30.44 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 52.83/30.44 new_esEs19(@0, @0) -> True 52.83/30.44 new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT 52.83/30.44 new_primMulInt(Pos(yvy4000), Pos(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) 52.83/30.44 new_ltEs6(yvy1652, yvy1662, ty_Float) -> new_ltEs7(yvy1652, yvy1662) 52.83/30.44 new_ltEs15(Left(yvy1650), Right(yvy1660), bbd, bbe) -> True 52.83/30.44 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Double, bbe) -> new_ltEs17(yvy1650, yvy1660) 52.83/30.44 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(app(ty_@2, efb), efc)) -> new_esEs21(yvy4000, yvy3000, efb, efc) 52.83/30.44 new_lt22(yvy154, yvy157, ty_Integer) -> new_lt11(yvy154, yvy157) 52.83/30.44 new_esEs7(yvy401, yvy301, app(app(ty_Either, dfg), dfh)) -> new_esEs25(yvy401, yvy301, dfg, dfh) 52.83/30.44 new_gt14(yvy35, yvy30, ty_Int) -> new_gt4(yvy35, yvy30) 52.83/30.44 new_primMulNat0(Succ(yvy40000), Zero) -> Zero 52.83/30.44 new_primMulNat0(Zero, Succ(yvy30100)) -> Zero 52.83/30.44 new_lt21(yvy1650, yvy1660, ty_Bool) -> new_lt14(yvy1650, yvy1660) 52.83/30.44 new_esEs7(yvy401, yvy301, ty_Bool) -> new_esEs23(yvy401, yvy301) 52.83/30.44 new_lt15(yvy40, yvy30, bh) -> new_esEs12(new_compare29(yvy40, yvy30, bh)) 52.83/30.44 new_lt14(yvy40, yvy30) -> new_esEs12(new_compare7(yvy40, yvy30)) 52.83/30.44 new_esEs11(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.83/30.44 new_lt23(yvy155, yvy158, ty_Ordering) -> new_lt17(yvy155, yvy158) 52.83/30.44 new_lt20(yvy190, yvy192, app(ty_Ratio, ha)) -> new_lt19(yvy190, yvy192, ha) 52.83/30.44 new_esEs38(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.83/30.44 new_esEs31(yvy4001, yvy3001, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs22(yvy4001, yvy3001, ffd, ffe, fff) 52.83/30.44 new_esEs8(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.83/30.44 new_esEs40(yvy154, yvy157, ty_Bool) -> new_esEs23(yvy154, yvy157) 52.83/30.44 new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) 52.83/30.44 new_primPlusNat0(Zero, Succ(yvy21000)) -> Succ(yvy21000) 52.83/30.44 new_ltEs22(yvy172, yvy173, ty_Float) -> new_ltEs7(yvy172, yvy173) 52.83/30.44 new_esEs26(EQ, GT) -> False 52.83/30.44 new_esEs26(GT, EQ) -> False 52.83/30.44 new_lt6(yvy1651, yvy1661, ty_Float) -> new_lt7(yvy1651, yvy1661) 52.83/30.44 new_esEs30(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.83/30.44 new_esEs31(yvy4001, yvy3001, app(ty_Maybe, ffg)) -> new_esEs24(yvy4001, yvy3001, ffg) 52.83/30.44 new_esEs10(yvy400, yvy300, app(app(ty_Either, bch), bda)) -> new_esEs25(yvy400, yvy300, bch, bda) 52.83/30.44 new_esEs31(yvy4001, yvy3001, app(ty_[], fge)) -> new_esEs18(yvy4001, yvy3001, fge) 52.83/30.44 new_lt6(yvy1651, yvy1661, ty_Integer) -> new_lt11(yvy1651, yvy1661) 52.83/30.44 new_esEs5(yvy400, yvy300, app(ty_Ratio, bee)) -> new_esEs28(yvy400, yvy300, bee) 52.83/30.44 new_esEs33(yvy1650, yvy1660, app(app(ty_Either, gag), gah)) -> new_esEs25(yvy1650, yvy1660, gag, gah) 52.83/30.44 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Bool) -> new_ltEs13(yvy1650, yvy1660) 52.83/30.44 new_esEs7(yvy401, yvy301, app(app(ty_@2, dfd), dfe)) -> new_esEs21(yvy401, yvy301, dfd, dfe) 52.83/30.44 new_esEs31(yvy4001, yvy3001, ty_Ordering) -> new_esEs26(yvy4001, yvy3001) 52.83/30.44 new_esEs23(False, False) -> True 52.83/30.44 new_compare9(Double(yvy400, Pos(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.83/30.44 new_compare9(Double(yvy400, Neg(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.83/30.44 new_gt(yvy81, yvy76, ty_Int) -> new_gt4(yvy81, yvy76) 52.83/30.44 new_lt25(yvy40, yvy30, ty_@0) -> new_lt4(yvy40, yvy30) 52.83/30.44 new_splitGT10(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, False, bbg, bbh) -> yvy49 52.83/30.44 new_esEs17(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 52.83/30.44 new_esEs12(LT) -> True 52.83/30.44 new_esEs13(yvy1651, yvy1661, ty_Double) -> new_esEs27(yvy1651, yvy1661) 52.83/30.44 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.83/30.44 new_esEs6(yvy402, yvy302, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs22(yvy402, yvy302, ddf, ddg, ddh) 52.83/30.44 new_esEs32(yvy4000, yvy3000, app(app(ty_Either, fhe), fhf)) -> new_esEs25(yvy4000, yvy3000, fhe, fhf) 52.83/30.44 new_esEs32(yvy4000, yvy3000, app(ty_Maybe, fha)) -> new_esEs24(yvy4000, yvy3000, fha) 52.83/30.44 new_esEs11(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.83/30.44 new_lt25(yvy40, yvy30, ty_Ordering) -> new_lt17(yvy40, yvy30) 52.83/30.44 new_lt20(yvy190, yvy192, ty_Float) -> new_lt7(yvy190, yvy192) 52.83/30.44 new_lt25(yvy40, yvy30, ty_Int) -> new_lt9(yvy40, yvy30) 52.83/30.44 new_gt4(yvy40, yvy30) -> new_esEs41(new_compare8(yvy40, yvy30)) 52.83/30.44 new_ltEs12(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), baf, bag) -> new_pePe(new_lt21(yvy1650, yvy1660, baf), new_asAs(new_esEs33(yvy1650, yvy1660, baf), new_ltEs23(yvy1651, yvy1661, bag))) 52.83/30.44 new_esEs5(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.83/30.44 new_lt22(yvy154, yvy157, ty_Bool) -> new_lt14(yvy154, yvy157) 52.83/30.44 new_lt21(yvy1650, yvy1660, ty_Integer) -> new_lt11(yvy1650, yvy1660) 52.83/30.44 new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, ccg, cch, cda) -> LT 52.83/30.44 new_esEs33(yvy1650, yvy1660, ty_Float) -> new_esEs15(yvy1650, yvy1660) 52.83/30.44 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Float, bbe) -> new_ltEs7(yvy1650, yvy1660) 52.83/30.44 new_esEs6(yvy402, yvy302, app(ty_[], deg)) -> new_esEs18(yvy402, yvy302, deg) 52.83/30.44 new_esEs5(yvy400, yvy300, app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs22(yvy400, yvy300, bfh, bga, bgb) 52.83/30.44 new_ltEs19(yvy179, yvy180, ty_Ordering) -> new_ltEs16(yvy179, yvy180) 52.83/30.44 new_lt10(yvy40, yvy30, bb) -> new_esEs12(new_compare0(yvy40, yvy30, bb)) 52.83/30.44 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(app(ty_@3, ceg), ceh), cfa), bbe) -> new_ltEs5(yvy1650, yvy1660, ceg, ceh, cfa) 52.83/30.44 new_esEs37(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.83/30.44 new_ltEs6(yvy1652, yvy1662, app(app(ty_Either, ecg), ech)) -> new_ltEs15(yvy1652, yvy1662, ecg, ech) 52.83/30.44 new_esEs4(yvy401, yvy301, ty_Integer) -> new_esEs20(yvy401, yvy301) 52.83/30.44 new_esEs30(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.83/30.44 new_esEs29(yvy190, yvy192, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs22(yvy190, yvy192, gc, gd, ge) 52.83/30.44 new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, EmptyFM, False, h, ba) -> error([]) 52.83/30.44 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.83/30.44 new_compare16(Left(yvy400), Left(yvy300), ca, cb) -> new_compare28(yvy400, yvy300, new_esEs10(yvy400, yvy300, ca), ca, cb) 52.83/30.44 new_mkBalBranch(yvy50, yvy51, yvy90, yvy54, h, ba) -> new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, new_lt9(new_primPlusInt(new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba), new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba)), Pos(Succ(Succ(Zero)))), h, ba) 52.83/30.44 new_esEs40(yvy154, yvy157, ty_Integer) -> new_esEs20(yvy154, yvy157) 52.83/30.44 new_esEs14(yvy1650, yvy1660, ty_Int) -> new_esEs17(yvy1650, yvy1660) 52.83/30.44 new_ltEs20(yvy191, yvy193, app(app(ty_Either, baa), bab)) -> new_ltEs15(yvy191, yvy193, baa, bab) 52.83/30.44 new_esEs32(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.83/30.44 new_lt26(yvy20, yvy15, app(app(ty_@2, gch), gda)) -> new_lt12(yvy20, yvy15, gch, gda) 52.83/30.44 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Float, bgg) -> new_esEs15(yvy4000, yvy3000) 52.83/30.44 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(ty_[], cff)) -> new_ltEs10(yvy1650, yvy1660, cff) 52.83/30.44 new_esEs31(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.83/30.44 new_esEs13(yvy1651, yvy1661, app(ty_Ratio, ebg)) -> new_esEs28(yvy1651, yvy1661, ebg) 52.83/30.44 new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy35, ea, eb) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, yvy35, ea, eb) 52.83/30.44 new_lt6(yvy1651, yvy1661, app(ty_Ratio, ebg)) -> new_lt19(yvy1651, yvy1661, ebg) 52.83/30.44 new_esEs12(GT) -> False 52.83/30.44 new_gt(yvy81, yvy76, ty_@0) -> new_gt6(yvy81, yvy76) 52.83/30.44 new_esEs12(EQ) -> False 52.83/30.44 new_esEs37(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) 52.83/30.44 new_esEs37(yvy4001, yvy3001, app(app(ty_Either, cbb), cbc)) -> new_esEs25(yvy4001, yvy3001, cbb, cbc) 52.83/30.44 new_addToFM_C10(yvy106, yvy107, yvy108, yvy109, yvy110, yvy111, yvy112, True, dda, ddb) -> new_mkBalBranch(yvy106, yvy107, yvy109, new_addToFM_C0(yvy110, yvy111, yvy112, dda, ddb), dda, ddb) 52.83/30.44 new_esEs37(yvy4001, yvy3001, ty_Bool) -> new_esEs23(yvy4001, yvy3001) 52.83/30.44 new_esEs10(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.83/30.44 new_compare19(Char(yvy400), Char(yvy300)) -> new_primCmpNat0(yvy400, yvy300) 52.83/30.44 new_lt22(yvy154, yvy157, ty_Ordering) -> new_lt17(yvy154, yvy157) 52.83/30.44 new_gt15(yvy40, yvy30, ty_Ordering) -> new_gt12(yvy40, yvy30) 52.83/30.44 new_compare11(yvy247, yvy248, yvy249, yvy250, False, yvy252, gea, geb) -> new_compare110(yvy247, yvy248, yvy249, yvy250, yvy252, gea, geb) 52.83/30.44 new_lt6(yvy1651, yvy1661, ty_@0) -> new_lt4(yvy1651, yvy1661) 52.83/30.44 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.83/30.44 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Char) -> new_ltEs8(yvy1650, yvy1660) 52.83/30.44 new_esEs9(yvy400, yvy300, app(ty_[], gfd)) -> new_esEs18(yvy400, yvy300, gfd) 52.83/30.44 new_esEs36(yvy4002, yvy3002, app(ty_Maybe, bhd)) -> new_esEs24(yvy4002, yvy3002, bhd) 52.83/30.44 new_lt25(yvy40, yvy30, app(ty_[], bb)) -> new_lt10(yvy40, yvy30, bb) 52.83/30.44 new_primPlusInt(Neg(yvy9020), Neg(yvy2100)) -> Neg(new_primPlusNat0(yvy9020, yvy2100)) 52.83/30.44 new_esEs29(yvy190, yvy192, ty_Char) -> new_esEs16(yvy190, yvy192) 52.83/30.44 new_esEs38(yvy4000, yvy3000, app(ty_Ratio, ccc)) -> new_esEs28(yvy4000, yvy3000, ccc) 52.83/30.44 new_gt14(yvy35, yvy30, ty_@0) -> new_gt6(yvy35, yvy30) 52.83/30.44 new_esEs37(yvy4001, yvy3001, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs22(yvy4001, yvy3001, cac, cad, cae) 52.83/30.44 new_esEs32(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.83/30.44 new_lt5(yvy1650, yvy1660, app(app(ty_Either, eac), ead)) -> new_lt16(yvy1650, yvy1660, eac, ead) 52.83/30.44 new_lt5(yvy1650, yvy1660, ty_Bool) -> new_lt14(yvy1650, yvy1660) 52.83/30.44 new_compare18(GT, LT) -> GT 52.83/30.44 new_gt14(yvy35, yvy30, app(ty_Maybe, fa)) -> new_gt10(yvy35, yvy30, fa) 52.83/30.44 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Int) -> new_ltEs9(yvy1650, yvy1660) 52.83/30.44 new_mkBranch(yvy309, yvy310, yvy311, yvy312, yvy313, yvy314, yvy315, yvy316, yvy317, edb, edc) -> new_mkBranchResult(yvy310, yvy311, yvy312, new_mkBranch0(yvy313, yvy314, yvy315, yvy316, yvy317, edb, edc), edb, edc) 52.83/30.44 new_gt10(yvy40, yvy30, bh) -> new_esEs41(new_compare29(yvy40, yvy30, bh)) 52.83/30.44 new_compare18(EQ, LT) -> GT 52.83/30.44 new_esEs11(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.83/30.44 new_lt5(yvy1650, yvy1660, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_lt13(yvy1650, yvy1660, dhg, dhh, eaa) 52.83/30.44 new_esEs10(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.83/30.44 new_compare0([], :(yvy300, yvy301), bb) -> LT 52.83/30.44 new_compare10(yvy237, yvy238, False, fcb, fcc) -> GT 52.83/30.44 new_esEs6(yvy402, yvy302, ty_Ordering) -> new_esEs26(yvy402, yvy302) 52.83/30.44 new_compare30(yvy400, yvy300, ty_@0) -> new_compare5(yvy400, yvy300) 52.83/30.44 new_esEs33(yvy1650, yvy1660, ty_Ordering) -> new_esEs26(yvy1650, yvy1660) 52.83/30.44 new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkBranch1(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, yvy60, yvy61, yvy62, yvy63, yvy64, yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 52.83/30.44 new_esEs16(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 52.83/30.44 new_esEs5(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.83/30.44 new_compare30(yvy400, yvy300, ty_Ordering) -> new_compare18(yvy400, yvy300) 52.83/30.44 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 52.83/30.44 new_lt21(yvy1650, yvy1660, ty_Char) -> new_lt8(yvy1650, yvy1660) 52.83/30.44 new_ltEs23(yvy1651, yvy1661, app(app(ty_@2, gbc), gbd)) -> new_ltEs12(yvy1651, yvy1661, gbc, gbd) 52.83/30.44 new_gt15(yvy40, yvy30, ty_Float) -> new_gt2(yvy40, yvy30) 52.83/30.44 new_lt24(yvy40, yvy50, ty_Float) -> new_lt7(yvy40, yvy50) 52.83/30.44 new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) 52.83/30.44 new_gt6(yvy40, yvy30) -> new_esEs41(new_compare5(yvy40, yvy30)) 52.83/30.44 new_lt20(yvy190, yvy192, app(ty_[], fh)) -> new_lt10(yvy190, yvy192, fh) 52.83/30.44 new_esEs18(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bgh) -> new_asAs(new_esEs30(yvy4000, yvy3000, bgh), new_esEs18(yvy4001, yvy3001, bgh)) 52.83/30.44 new_primCompAux00(yvy133, EQ) -> yvy133 52.83/30.44 new_lt5(yvy1650, yvy1660, ty_Ordering) -> new_lt17(yvy1650, yvy1660) 52.83/30.44 new_mkBalBranch6MkBalBranch4(yvy50, yvy51, EmptyFM, yvy90, True, h, ba) -> error([]) 52.83/30.44 new_compare7(False, True) -> LT 52.83/30.44 new_addToFM(yvy5, yvy40, yvy41, h, ba) -> new_addToFM_C0(yvy5, yvy40, yvy41, h, ba) 52.83/30.44 new_esEs6(yvy402, yvy302, app(app(ty_Either, dee), def)) -> new_esEs25(yvy402, yvy302, dee, def) 52.83/30.44 new_esEs33(yvy1650, yvy1660, ty_Bool) -> new_esEs23(yvy1650, yvy1660) 52.83/30.44 new_esEs33(yvy1650, yvy1660, app(app(app(ty_@3, gac), gad), gae)) -> new_esEs22(yvy1650, yvy1660, gac, gad, gae) 52.83/30.44 new_gt(yvy81, yvy76, app(app(ty_Either, fbe), fbf)) -> new_gt11(yvy81, yvy76, fbe, fbf) 52.83/30.44 new_gt(yvy81, yvy76, app(app(app(ty_@3, fba), fbb), fbc)) -> new_gt8(yvy81, yvy76, fba, fbb, fbc) 52.83/30.44 new_gt14(yvy35, yvy30, ty_Bool) -> new_gt9(yvy35, yvy30) 52.83/30.44 new_esEs6(yvy402, yvy302, ty_@0) -> new_esEs19(yvy402, yvy302) 52.83/30.44 new_esEs35(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.83/30.44 new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) 52.83/30.44 new_lt26(yvy20, yvy15, ty_Char) -> new_lt8(yvy20, yvy15) 52.83/30.44 new_esEs29(yvy190, yvy192, ty_Int) -> new_esEs17(yvy190, yvy192) 52.83/30.44 new_compare30(yvy400, yvy300, ty_Integer) -> new_compare14(yvy400, yvy300) 52.83/30.44 new_lt23(yvy155, yvy158, ty_Float) -> new_lt7(yvy155, yvy158) 52.83/30.44 new_lt21(yvy1650, yvy1660, app(ty_[], fhh)) -> new_lt10(yvy1650, yvy1660, fhh) 52.83/30.44 new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) 52.83/30.44 new_esEs37(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.83/30.44 new_esEs9(yvy400, yvy300, app(app(ty_@2, geg), geh)) -> new_esEs21(yvy400, yvy300, geg, geh) 52.83/30.44 new_esEs4(yvy401, yvy301, app(ty_Maybe, bfa)) -> new_esEs24(yvy401, yvy301, bfa) 52.83/30.44 new_splitGT20(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, gce, gcf) -> new_splitGT0(yvy19, yvy20, gce, gcf) 52.83/30.44 new_gt15(yvy40, yvy30, app(app(app(ty_@3, be), bf), bg)) -> new_gt8(yvy40, yvy30, be, bf, bg) 52.83/30.44 new_gt15(yvy40, yvy30, app(app(ty_Either, ca), cb)) -> new_gt11(yvy40, yvy30, ca, cb) 52.83/30.44 new_gt14(yvy35, yvy30, ty_Integer) -> new_gt7(yvy35, yvy30) 52.83/30.44 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Ordering, bbe) -> new_ltEs16(yvy1650, yvy1660) 52.83/30.44 new_esEs27(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs17(new_sr0(yvy4000, yvy3001), new_sr0(yvy4001, yvy3000)) 52.83/30.44 new_esEs31(yvy4001, yvy3001, ty_Char) -> new_esEs16(yvy4001, yvy3001) 52.83/30.44 new_esEs32(yvy4000, yvy3000, app(app(app(ty_@3, fgf), fgg), fgh)) -> new_esEs22(yvy4000, yvy3000, fgf, fgg, fgh) 52.83/30.44 new_ltEs11(yvy165, yvy166) -> new_fsEs(new_compare14(yvy165, yvy166)) 52.83/30.44 new_esEs5(yvy400, yvy300, app(app(ty_Either, bgf), bgg)) -> new_esEs25(yvy400, yvy300, bgf, bgg) 52.83/30.44 new_ltEs13(False, True) -> True 52.83/30.44 new_ltEs13(False, False) -> True 52.83/30.44 new_gt(yvy81, yvy76, ty_Integer) -> new_gt7(yvy81, yvy76) 52.83/30.44 new_esEs32(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.83/30.44 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_Ratio, ffc)) -> new_ltEs18(yvy1650, yvy1660, ffc) 52.83/30.44 new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) 52.83/30.44 new_esEs36(yvy4002, yvy3002, ty_Integer) -> new_esEs20(yvy4002, yvy3002) 52.83/30.44 new_ltEs22(yvy172, yvy173, app(ty_[], fch)) -> new_ltEs10(yvy172, yvy173, fch) 52.83/30.44 new_esEs13(yvy1651, yvy1661, ty_Float) -> new_esEs15(yvy1651, yvy1661) 52.83/30.44 new_lt21(yvy1650, yvy1660, ty_Int) -> new_lt9(yvy1650, yvy1660) 52.83/30.44 new_gt14(yvy35, yvy30, app(app(app(ty_@3, ef), eg), eh)) -> new_gt8(yvy35, yvy30, ef, eg, eh) 52.83/30.44 new_esEs5(yvy400, yvy300, app(ty_Maybe, bgc)) -> new_esEs24(yvy400, yvy300, bgc) 52.83/30.44 new_gt15(yvy40, yvy30, ty_Integer) -> new_gt7(yvy40, yvy30) 52.83/30.44 new_compare30(yvy400, yvy300, ty_Bool) -> new_compare7(yvy400, yvy300) 52.83/30.44 new_esEs6(yvy402, yvy302, ty_Float) -> new_esEs15(yvy402, yvy302) 52.83/30.44 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) 52.83/30.44 new_gt14(yvy35, yvy30, ty_Float) -> new_gt2(yvy35, yvy30) 52.83/30.44 new_lt20(yvy190, yvy192, ty_Char) -> new_lt8(yvy190, yvy192) 52.83/30.44 new_ltEs22(yvy172, yvy173, app(app(ty_@2, fda), fdb)) -> new_ltEs12(yvy172, yvy173, fda, fdb) 52.83/30.44 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(app(ty_@2, cfg), cfh)) -> new_ltEs12(yvy1650, yvy1660, cfg, cfh) 52.83/30.44 new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, EmptyFM, True, h, ba) -> error([]) 52.83/30.44 new_compare13(Float(yvy400, Neg(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.83/30.44 new_lt6(yvy1651, yvy1661, ty_Ordering) -> new_lt17(yvy1651, yvy1661) 52.83/30.44 new_compare29(Just(yvy400), Nothing, bh) -> GT 52.83/30.44 new_lt22(yvy154, yvy157, app(app(ty_Either, dab), dac)) -> new_lt16(yvy154, yvy157, dab, dac) 52.83/30.44 new_esEs14(yvy1650, yvy1660, ty_Char) -> new_esEs16(yvy1650, yvy1660) 52.83/30.44 new_esEs11(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.83/30.44 new_esEs31(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.83/30.44 new_lt22(yvy154, yvy157, ty_Int) -> new_lt9(yvy154, yvy157) 52.83/30.44 new_lt23(yvy155, yvy158, ty_@0) -> new_lt4(yvy155, yvy158) 52.83/30.44 new_lt25(yvy40, yvy30, ty_Char) -> new_lt8(yvy40, yvy30) 52.83/30.44 new_ltEs14(Just(yvy1650), Nothing, bbc) -> False 52.83/30.44 new_ltEs14(Nothing, Nothing, bbc) -> True 52.83/30.44 new_gt15(yvy40, yvy30, ty_Bool) -> new_gt9(yvy40, yvy30) 52.83/30.44 new_esEs41(GT) -> True 52.83/30.44 new_esEs11(yvy400, yvy300, app(ty_Maybe, bdf)) -> new_esEs24(yvy400, yvy300, bdf) 52.83/30.44 new_mkBranch0(yvy313, yvy314, yvy315, yvy316, yvy317, edb, edc) -> new_mkBranchResult(yvy314, yvy315, yvy316, yvy317, edb, edc) 52.83/30.44 new_lt21(yvy1650, yvy1660, app(ty_Maybe, gaf)) -> new_lt15(yvy1650, yvy1660, gaf) 52.83/30.44 new_compare30(yvy400, yvy300, app(ty_[], cdb)) -> new_compare0(yvy400, yvy300, cdb) 52.83/30.44 new_esEs5(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.83/30.44 new_esEs36(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) 52.83/30.44 new_gt15(yvy40, yvy30, app(ty_Ratio, cc)) -> new_gt13(yvy40, yvy30, cc) 52.83/30.44 new_esEs38(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.83/30.44 new_gt(yvy81, yvy76, ty_Bool) -> new_gt9(yvy81, yvy76) 52.83/30.44 new_gt14(yvy35, yvy30, app(app(ty_Either, fb), fc)) -> new_gt11(yvy35, yvy30, fb, fc) 52.83/30.44 new_esEs11(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.83/30.44 new_lt5(yvy1650, yvy1660, ty_Char) -> new_lt8(yvy1650, yvy1660) 52.83/30.44 new_lt21(yvy1650, yvy1660, ty_Ordering) -> new_lt17(yvy1650, yvy1660) 52.83/30.44 new_lt5(yvy1650, yvy1660, app(ty_Maybe, eab)) -> new_lt15(yvy1650, yvy1660, eab) 52.83/30.44 new_lt5(yvy1650, yvy1660, ty_@0) -> new_lt4(yvy1650, yvy1660) 52.83/30.44 new_lt22(yvy154, yvy157, ty_@0) -> new_lt4(yvy154, yvy157) 52.83/30.44 new_ltEs24(yvy156, yvy159, app(app(ty_@2, dbh), dca)) -> new_ltEs12(yvy156, yvy159, dbh, dca) 52.83/30.44 new_sizeFM0(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 52.83/30.44 new_lt22(yvy154, yvy157, ty_Char) -> new_lt8(yvy154, yvy157) 52.83/30.44 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.83/30.44 new_compare18(EQ, EQ) -> EQ 52.83/30.44 new_esEs37(yvy4001, yvy3001, app(ty_Ratio, cba)) -> new_esEs28(yvy4001, yvy3001, cba) 52.83/30.44 new_lt26(yvy20, yvy15, app(ty_[], gcg)) -> new_lt10(yvy20, yvy15, gcg) 52.83/30.44 new_esEs39(yvy155, yvy158, ty_Float) -> new_esEs15(yvy155, yvy158) 52.83/30.44 new_gt15(yvy40, yvy30, ty_@0) -> new_gt6(yvy40, yvy30) 52.83/30.44 new_esEs14(yvy1650, yvy1660, app(ty_Ratio, eae)) -> new_esEs28(yvy1650, yvy1660, eae) 52.83/30.44 new_gt14(yvy35, yvy30, app(ty_Ratio, fd)) -> new_gt13(yvy35, yvy30, fd) 52.83/30.44 new_esEs13(yvy1651, yvy1661, ty_Bool) -> new_esEs23(yvy1651, yvy1661) 52.83/30.44 new_esEs32(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.83/30.44 new_esEs33(yvy1650, yvy1660, ty_Integer) -> new_esEs20(yvy1650, yvy1660) 52.83/30.44 new_ltEs8(yvy165, yvy166) -> new_fsEs(new_compare19(yvy165, yvy166)) 52.83/30.44 new_esEs13(yvy1651, yvy1661, app(app(ty_Either, ebe), ebf)) -> new_esEs25(yvy1651, yvy1661, ebe, ebf) 52.83/30.44 new_compare18(LT, EQ) -> LT 52.83/30.44 new_lt20(yvy190, yvy192, ty_@0) -> new_lt4(yvy190, yvy192) 52.83/30.44 new_esEs13(yvy1651, yvy1661, app(app(app(ty_@3, eba), ebb), ebc)) -> new_esEs22(yvy1651, yvy1661, eba, ebb, ebc) 52.83/30.44 new_esEs40(yvy154, yvy157, ty_Ordering) -> new_esEs26(yvy154, yvy157) 52.83/30.44 new_esEs38(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.83/30.44 new_compare0(:(yvy400, yvy401), [], bb) -> GT 52.83/30.44 new_esEs36(yvy4002, yvy3002, ty_Bool) -> new_esEs23(yvy4002, yvy3002) 52.83/30.44 new_esEs36(yvy4002, yvy3002, app(app(ty_Either, bhh), caa)) -> new_esEs25(yvy4002, yvy3002, bhh, caa) 52.83/30.44 new_esEs21(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bgd, bge) -> new_asAs(new_esEs32(yvy4000, yvy3000, bgd), new_esEs31(yvy4001, yvy3001, bge)) 52.83/30.44 new_lt17(yvy40, yvy30) -> new_esEs12(new_compare18(yvy40, yvy30)) 52.83/30.44 new_primPlusNat0(Succ(yvy90200), Succ(yvy21000)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21000))) 52.83/30.44 new_gt14(yvy35, yvy30, ty_Ordering) -> new_gt12(yvy35, yvy30) 52.83/30.44 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Bool, bbe) -> new_ltEs13(yvy1650, yvy1660) 52.83/30.44 new_mkBalBranch6MkBalBranch4(yvy50, yvy51, Branch(yvy540, yvy541, yvy542, yvy543, yvy544), yvy90, True, h, ba) -> new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, yvy90, new_lt9(new_sizeFM0(yvy543, h, ba), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM0(yvy544, h, ba))), h, ba) 52.83/30.44 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Int, bbe) -> new_ltEs9(yvy1650, yvy1660) 52.83/30.44 new_compare30(yvy400, yvy300, app(app(ty_Either, cea), ceb)) -> new_compare16(yvy400, yvy300, cea, ceb) 52.83/30.44 new_gt(yvy81, yvy76, ty_Float) -> new_gt2(yvy81, yvy76) 52.83/30.44 new_esEs4(yvy401, yvy301, app(app(ty_Either, bfe), bff)) -> new_esEs25(yvy401, yvy301, bfe, bff) 52.83/30.44 new_esEs37(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) 52.83/30.44 new_esEs40(yvy154, yvy157, ty_Float) -> new_esEs15(yvy154, yvy157) 52.83/30.44 new_lt24(yvy40, yvy50, ty_Char) -> new_lt8(yvy40, yvy50) 52.83/30.44 new_esEs13(yvy1651, yvy1661, ty_Ordering) -> new_esEs26(yvy1651, yvy1661) 52.83/30.44 new_compare25(yvy179, yvy180, False, cd, ce) -> new_compare10(yvy179, yvy180, new_ltEs19(yvy179, yvy180, ce), cd, ce) 52.83/30.44 new_lt20(yvy190, yvy192, ty_Int) -> new_lt9(yvy190, yvy192) 52.83/30.44 new_esEs35(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.83/30.44 new_compare110(yvy247, yvy248, yvy249, yvy250, False, gea, geb) -> GT 52.83/30.44 new_gt(yvy81, yvy76, ty_Ordering) -> new_gt12(yvy81, yvy76) 52.83/30.44 new_esEs36(yvy4002, yvy3002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs22(yvy4002, yvy3002, bha, bhb, bhc) 52.83/30.44 new_esEs14(yvy1650, yvy1660, ty_Float) -> new_esEs15(yvy1650, yvy1660) 52.83/30.44 new_compare29(Nothing, Just(yvy300), bh) -> LT 52.83/30.44 new_esEs31(yvy4001, yvy3001, ty_Double) -> new_esEs27(yvy4001, yvy3001) 52.83/30.44 new_esEs10(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.83/30.44 new_lt20(yvy190, yvy192, app(ty_Maybe, gf)) -> new_lt15(yvy190, yvy192, gf) 52.83/30.44 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Char, bbe) -> new_ltEs8(yvy1650, yvy1660) 52.83/30.44 new_lt6(yvy1651, yvy1661, app(app(ty_Either, ebe), ebf)) -> new_lt16(yvy1651, yvy1661, ebe, ebf) 52.83/30.44 new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, yvy90, True, h, ba) -> new_mkBranchResult(yvy540, yvy541, new_mkBranchResult(yvy50, yvy51, yvy90, yvy543, h, ba), yvy544, h, ba) 52.83/30.44 new_lt5(yvy1650, yvy1660, ty_Int) -> new_lt9(yvy1650, yvy1660) 52.83/30.44 new_esEs30(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.83/30.44 new_esEs11(yvy400, yvy300, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs22(yvy400, yvy300, bdc, bdd, bde) 52.83/30.44 new_esEs33(yvy1650, yvy1660, app(ty_Ratio, gba)) -> new_esEs28(yvy1650, yvy1660, gba) 52.83/30.44 new_compare0(:(yvy400, yvy401), :(yvy300, yvy301), bb) -> new_primCompAux0(yvy400, yvy300, new_compare0(yvy401, yvy301, bb), bb) 52.83/30.44 new_esEs10(yvy400, yvy300, app(ty_Ratio, bcg)) -> new_esEs28(yvy400, yvy300, bcg) 52.83/30.44 new_lt21(yvy1650, yvy1660, app(app(ty_Either, gag), gah)) -> new_lt16(yvy1650, yvy1660, gag, gah) 52.83/30.44 new_gt9(yvy40, yvy30) -> new_esEs41(new_compare7(yvy40, yvy30)) 52.83/30.44 new_ltEs13(True, False) -> False 52.83/30.44 new_esEs36(yvy4002, yvy3002, ty_Char) -> new_esEs16(yvy4002, yvy3002) 52.83/30.44 new_esEs36(yvy4002, yvy3002, ty_Ordering) -> new_esEs26(yvy4002, yvy3002) 52.83/30.44 new_esEs13(yvy1651, yvy1661, ty_Char) -> new_esEs16(yvy1651, yvy1661) 52.83/30.44 new_compare29(Just(yvy400), Just(yvy300), bh) -> new_compare27(yvy400, yvy300, new_esEs9(yvy400, yvy300, bh), bh) 52.83/30.44 new_compare16(Right(yvy400), Right(yvy300), ca, cb) -> new_compare25(yvy400, yvy300, new_esEs11(yvy400, yvy300, cb), ca, cb) 52.83/30.44 new_esEs11(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.83/30.44 new_esEs40(yvy154, yvy157, ty_@0) -> new_esEs19(yvy154, yvy157) 52.83/30.44 new_compare16(Right(yvy400), Left(yvy300), ca, cb) -> GT 52.83/30.44 new_esEs40(yvy154, yvy157, app(app(ty_Either, dab), dac)) -> new_esEs25(yvy154, yvy157, dab, dac) 52.83/30.44 new_ltEs20(yvy191, yvy193, app(ty_[], hb)) -> new_ltEs10(yvy191, yvy193, hb) 52.83/30.44 new_compare30(yvy400, yvy300, app(app(app(ty_@3, cde), cdf), cdg)) -> new_compare31(yvy400, yvy300, cde, cdf, cdg) 52.83/30.44 new_splitGT20(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, gce, gcf) -> new_splitGT10(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_lt26(yvy20, yvy15, gce), gce, gcf) 52.83/30.44 new_lt20(yvy190, yvy192, app(app(ty_Either, gg), gh)) -> new_lt16(yvy190, yvy192, gg, gh) 52.83/30.44 new_ltEs21(yvy165, yvy166, app(ty_[], bae)) -> new_ltEs10(yvy165, yvy166, bae) 52.83/30.44 new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) 52.83/30.44 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Float) -> new_ltEs7(yvy1650, yvy1660) 52.83/30.44 new_esEs29(yvy190, yvy192, ty_Double) -> new_esEs27(yvy190, yvy192) 52.83/30.44 new_compare30(yvy400, yvy300, ty_Float) -> new_compare13(yvy400, yvy300) 52.83/30.44 new_esEs38(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.83/30.44 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Integer, bbe) -> new_ltEs11(yvy1650, yvy1660) 52.83/30.44 new_gt13(yvy40, yvy30, cc) -> new_esEs41(new_compare12(yvy40, yvy30, cc)) 52.83/30.44 new_ltEs17(yvy165, yvy166) -> new_fsEs(new_compare9(yvy165, yvy166)) 52.83/30.44 new_compare110(yvy247, yvy248, yvy249, yvy250, True, gea, geb) -> LT 52.83/30.44 new_splitGT0(Branch(yvy190, yvy191, yvy192, yvy193, yvy194), yvy20, gce, gcf) -> new_splitGT30(yvy190, yvy191, yvy192, yvy193, yvy194, yvy20, gce, gcf) 52.83/30.44 new_primMinusNat0(Zero, Succ(yvy21000)) -> Neg(Succ(yvy21000)) 52.83/30.44 new_mkBranch1(yvy117, yvy118, yvy119, yvy120, yvy121, yvy122, yvy123, yvy124, yvy125, yvy126, yvy127, yvy128, yvy129, fbh, fca) -> Branch(yvy118, yvy119, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(Branch(yvy120, yvy121, yvy122, yvy123, yvy124), fbh, fca)), new_sizeFM0(Branch(yvy125, yvy126, yvy127, yvy128, yvy129), fbh, fca)), Branch(yvy120, yvy121, yvy122, yvy123, yvy124), Branch(yvy125, yvy126, yvy127, yvy128, yvy129)) 52.83/30.44 new_esEs14(yvy1650, yvy1660, app(ty_Maybe, eab)) -> new_esEs24(yvy1650, yvy1660, eab) 52.83/30.44 new_esEs30(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.83/30.44 new_lt24(yvy40, yvy50, app(ty_[], bb)) -> new_lt10(yvy40, yvy50, bb) 52.83/30.44 new_esEs37(yvy4001, yvy3001, ty_Ordering) -> new_esEs26(yvy4001, yvy3001) 52.83/30.44 new_esEs11(yvy400, yvy300, app(ty_Ratio, bea)) -> new_esEs28(yvy400, yvy300, bea) 52.83/30.44 new_lt25(yvy40, yvy30, ty_Float) -> new_lt7(yvy40, yvy30) 52.83/30.44 new_esEs4(yvy401, yvy301, ty_@0) -> new_esEs19(yvy401, yvy301) 52.83/30.44 new_gt(yvy81, yvy76, app(ty_Maybe, fbd)) -> new_gt10(yvy81, yvy76, fbd) 52.83/30.44 new_esEs14(yvy1650, yvy1660, ty_Ordering) -> new_esEs26(yvy1650, yvy1660) 52.83/30.44 new_esEs37(yvy4001, yvy3001, app(ty_Maybe, caf)) -> new_esEs24(yvy4001, yvy3001, caf) 52.83/30.44 new_gt15(yvy40, yvy30, app(ty_Maybe, bh)) -> new_gt10(yvy40, yvy30, bh) 52.83/30.44 new_compare30(yvy400, yvy300, ty_Char) -> new_compare19(yvy400, yvy300) 52.83/30.44 new_lt11(yvy40, yvy30) -> new_esEs12(new_compare14(yvy40, yvy30)) 52.83/30.44 new_esEs39(yvy155, yvy158, ty_@0) -> new_esEs19(yvy155, yvy158) 52.83/30.44 new_ltEs6(yvy1652, yvy1662, app(ty_[], ebh)) -> new_ltEs10(yvy1652, yvy1662, ebh) 52.83/30.44 new_ltEs19(yvy179, yvy180, app(ty_[], cf)) -> new_ltEs10(yvy179, yvy180, cf) 52.83/30.44 new_compare28(yvy172, yvy173, True, fcf, fcg) -> EQ 52.83/30.44 new_esEs38(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.83/30.44 new_sizeFM0(EmptyFM, h, ba) -> Pos(Zero) 52.83/30.44 new_esEs38(yvy4000, yvy3000, app(app(ty_Either, ccd), cce)) -> new_esEs25(yvy4000, yvy3000, ccd, cce) 52.83/30.44 new_esEs34(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.83/30.44 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_@0, bbe) -> new_ltEs4(yvy1650, yvy1660) 52.83/30.44 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_Maybe, edg), bgg) -> new_esEs24(yvy4000, yvy3000, edg) 52.83/30.44 new_compare14(Integer(yvy400), Integer(yvy300)) -> new_primCmpInt(yvy400, yvy300) 52.83/30.44 new_esEs11(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.83/30.44 new_esEs14(yvy1650, yvy1660, app(app(ty_Either, eac), ead)) -> new_esEs25(yvy1650, yvy1660, eac, ead) 52.83/30.44 new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT 52.83/30.44 new_lt21(yvy1650, yvy1660, ty_@0) -> new_lt4(yvy1650, yvy1660) 52.83/30.44 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Int, bgg) -> new_esEs17(yvy4000, yvy3000) 52.83/30.44 new_ltEs19(yvy179, yvy180, ty_Float) -> new_ltEs7(yvy179, yvy180) 52.83/30.44 new_esEs14(yvy1650, yvy1660, ty_Bool) -> new_esEs23(yvy1650, yvy1660) 52.83/30.44 new_lt7(yvy40, yvy30) -> new_esEs12(new_compare13(yvy40, yvy30)) 52.83/30.44 new_splitGT0(EmptyFM, yvy20, gce, gcf) -> new_emptyFM(gce, gcf) 52.83/30.44 new_ltEs19(yvy179, yvy180, app(app(ty_Either, df), dg)) -> new_ltEs15(yvy179, yvy180, df, dg) 52.83/30.44 new_lt23(yvy155, yvy158, ty_Char) -> new_lt8(yvy155, yvy158) 52.83/30.44 new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT 52.83/30.44 new_esEs10(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.83/30.44 new_esEs13(yvy1651, yvy1661, app(ty_Maybe, ebd)) -> new_esEs24(yvy1651, yvy1661, ebd) 52.83/30.44 new_lt26(yvy20, yvy15, ty_Float) -> new_lt7(yvy20, yvy15) 52.83/30.44 new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) 52.83/30.44 new_lt24(yvy40, yvy50, app(app(app(ty_@3, be), bf), bg)) -> new_lt13(yvy40, yvy50, be, bf, bg) 52.83/30.44 new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba) -> new_sizeFM0(yvy90, h, ba) 52.83/30.44 new_esEs38(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.83/30.44 new_esEs24(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.83/30.44 new_esEs33(yvy1650, yvy1660, ty_Int) -> new_esEs17(yvy1650, yvy1660) 52.83/30.44 new_esEs41(EQ) -> False 52.83/30.44 new_gt14(yvy35, yvy30, ty_Char) -> new_gt3(yvy35, yvy30) 52.83/30.44 new_esEs40(yvy154, yvy157, app(ty_[], chc)) -> new_esEs18(yvy154, yvy157, chc) 52.83/30.44 new_lt4(yvy40, yvy30) -> new_esEs12(new_compare5(yvy40, yvy30)) 52.83/30.44 new_primCompAux0(yvy400, yvy300, yvy115, bb) -> new_primCompAux00(yvy115, new_compare30(yvy400, yvy300, bb)) 52.83/30.44 new_splitLT0(EmptyFM, yvy35, ea, eb) -> new_emptyFM(ea, eb) 52.83/30.44 new_ltEs14(Nothing, Just(yvy1660), bbc) -> True 52.83/30.44 new_esEs39(yvy155, yvy158, ty_Double) -> new_esEs27(yvy155, yvy158) 52.83/30.44 new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, yvy904, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), yvy900, yvy901, yvy903, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), yvy50, yvy51, yvy904, yvy54, h, ba) 52.83/30.44 new_mkVBalBranch0(yvy40, yvy41, EmptyFM, yvy5, h, ba) -> new_addToFM(yvy5, yvy40, yvy41, h, ba) 52.83/30.44 new_esEs39(yvy155, yvy158, app(app(ty_Either, dbd), dbe)) -> new_esEs25(yvy155, yvy158, dbd, dbe) 52.83/30.44 new_gt15(yvy40, yvy30, app(ty_[], bb)) -> new_gt5(yvy40, yvy30, bb) 52.83/30.44 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 52.83/30.44 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 52.83/30.44 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, efh), ega), egb)) -> new_esEs22(yvy4000, yvy3000, efh, ega, egb) 52.83/30.44 new_compare30(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) 52.83/30.44 new_esEs39(yvy155, yvy158, ty_Bool) -> new_esEs23(yvy155, yvy158) 52.83/30.44 new_gt(yvy81, yvy76, ty_Char) -> new_gt3(yvy81, yvy76) 52.83/30.44 new_esEs29(yvy190, yvy192, app(app(ty_@2, ga), gb)) -> new_esEs21(yvy190, yvy192, ga, gb) 52.83/30.44 new_lt23(yvy155, yvy158, app(ty_[], dae)) -> new_lt10(yvy155, yvy158, dae) 52.83/30.44 new_esEs7(yvy401, yvy301, app(ty_[], dga)) -> new_esEs18(yvy401, yvy301, dga) 52.83/30.44 new_ltEs13(True, True) -> True 52.83/30.44 new_sr1(Neg(yvy930)) -> Neg(new_primMulNat1(yvy930)) 52.83/30.44 new_esEs9(yvy400, yvy300, app(ty_Ratio, gfa)) -> new_esEs28(yvy400, yvy300, gfa) 52.83/30.44 new_ltEs6(yvy1652, yvy1662, app(ty_Maybe, ecf)) -> new_ltEs14(yvy1652, yvy1662, ecf) 52.83/30.44 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(ty_Either, cfc), cfd), bbe) -> new_ltEs15(yvy1650, yvy1660, cfc, cfd) 52.83/30.44 new_esEs6(yvy402, yvy302, ty_Char) -> new_esEs16(yvy402, yvy302) 52.83/30.44 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(ty_Either, eec), eed), bgg) -> new_esEs25(yvy4000, yvy3000, eec, eed) 52.83/30.44 new_esEs4(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) 52.83/30.44 new_esEs38(yvy4000, yvy3000, app(ty_Maybe, cbh)) -> new_esEs24(yvy4000, yvy3000, cbh) 52.83/30.44 new_esEs18([], [], bgh) -> True 52.83/30.44 new_addToFM_C20(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, False, fad, fae) -> new_addToFM_C10(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, new_gt(yvy81, yvy76, fad), fad, fae) 52.83/30.44 new_compare16(Left(yvy400), Right(yvy300), ca, cb) -> LT 52.83/30.44 new_ltEs24(yvy156, yvy159, ty_Double) -> new_ltEs17(yvy156, yvy159) 52.83/30.44 new_ltEs19(yvy179, yvy180, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs5(yvy179, yvy180, db, dc, dd) 52.83/30.44 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_[], feb)) -> new_ltEs10(yvy1650, yvy1660, feb) 52.83/30.44 new_lt5(yvy1650, yvy1660, app(ty_[], dhd)) -> new_lt10(yvy1650, yvy1660, dhd) 52.83/30.44 new_lt23(yvy155, yvy158, ty_Integer) -> new_lt11(yvy155, yvy158) 52.83/30.44 new_esEs30(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.83/30.44 new_primCmpNat0(Zero, Zero) -> EQ 52.83/30.44 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_Maybe, egc)) -> new_esEs24(yvy4000, yvy3000, egc) 52.83/30.44 new_esEs32(yvy4000, yvy3000, app(ty_Ratio, fhd)) -> new_esEs28(yvy4000, yvy3000, fhd) 52.83/30.44 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_[], eha)) -> new_esEs18(yvy4000, yvy3000, eha) 52.83/30.44 new_esEs10(yvy400, yvy300, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs22(yvy400, yvy300, bca, bcb, bcc) 52.83/30.44 new_lt6(yvy1651, yvy1661, ty_Int) -> new_lt9(yvy1651, yvy1661) 52.83/30.44 new_esEs14(yvy1650, yvy1660, ty_Double) -> new_esEs27(yvy1650, yvy1660) 52.83/30.44 new_lt20(yvy190, yvy192, ty_Bool) -> new_lt14(yvy190, yvy192) 52.83/30.44 new_ltEs22(yvy172, yvy173, ty_Int) -> new_ltEs9(yvy172, yvy173) 52.83/30.44 new_compare26(yvy190, yvy191, yvy192, yvy193, False, ff, fg) -> new_compare11(yvy190, yvy191, yvy192, yvy193, new_lt20(yvy190, yvy192, ff), new_asAs(new_esEs29(yvy190, yvy192, ff), new_ltEs20(yvy191, yvy193, fg)), ff, fg) 52.83/30.44 new_ltEs16(GT, EQ) -> False 52.83/30.44 new_esEs14(yvy1650, yvy1660, ty_Integer) -> new_esEs20(yvy1650, yvy1660) 52.83/30.44 new_compare27(yvy165, yvy166, True, bad) -> EQ 52.83/30.44 new_esEs7(yvy401, yvy301, app(app(app(ty_@3, deh), dfa), dfb)) -> new_esEs22(yvy401, yvy301, deh, dfa, dfb) 52.83/30.44 new_ltEs19(yvy179, yvy180, ty_Double) -> new_ltEs17(yvy179, yvy180) 52.83/30.44 new_lt16(yvy40, yvy30, ca, cb) -> new_esEs12(new_compare16(yvy40, yvy30, ca, cb)) 52.83/30.44 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Integer) -> new_ltEs11(yvy1650, yvy1660) 52.83/30.44 new_esEs4(yvy401, yvy301, ty_Ordering) -> new_esEs26(yvy401, yvy301) 52.83/30.44 new_ltEs10(yvy165, yvy166, bae) -> new_fsEs(new_compare0(yvy165, yvy166, bae)) 52.83/30.44 new_esEs7(yvy401, yvy301, ty_@0) -> new_esEs19(yvy401, yvy301) 52.83/30.44 new_addToFM_C0(Branch(yvy50, yvy51, yvy52, yvy53, yvy54), yvy40, yvy41, h, ba) -> new_addToFM_C20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy40, yvy41, new_lt24(yvy40, yvy50, h), h, ba) 52.83/30.44 new_compare8(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) 52.83/30.44 new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, ea, eb) -> new_splitLT10(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt14(yvy35, yvy30, ea), ea, eb) 52.83/30.44 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.83/30.44 new_ltEs20(yvy191, yvy193, ty_Integer) -> new_ltEs11(yvy191, yvy193) 52.83/30.44 new_ltEs19(yvy179, yvy180, ty_@0) -> new_ltEs4(yvy179, yvy180) 52.83/30.44 new_lt20(yvy190, yvy192, app(app(ty_@2, ga), gb)) -> new_lt12(yvy190, yvy192, ga, gb) 52.83/30.44 new_primCompAux00(yvy133, GT) -> GT 52.83/30.44 new_primMinusNat0(Succ(yvy90200), Zero) -> Pos(Succ(yvy90200)) 52.83/30.44 new_esEs8(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.83/30.44 new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy54, yvy90, new_gt4(new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba))), h, ba) 52.83/30.44 new_esEs37(yvy4001, yvy3001, ty_Char) -> new_esEs16(yvy4001, yvy3001) 52.83/30.44 new_esEs40(yvy154, yvy157, app(ty_Maybe, daa)) -> new_esEs24(yvy154, yvy157, daa) 52.83/30.44 new_esEs40(yvy154, yvy157, ty_Int) -> new_esEs17(yvy154, yvy157) 52.83/30.44 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Ordering) -> new_ltEs16(yvy1650, yvy1660) 52.83/30.44 new_esEs32(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.83/30.44 new_esEs30(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.83/30.44 new_esEs8(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.83/30.44 new_ltEs24(yvy156, yvy159, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_ltEs5(yvy156, yvy159, dcb, dcc, dcd) 52.83/30.44 new_ltEs23(yvy1651, yvy1661, app(ty_[], gbb)) -> new_ltEs10(yvy1651, yvy1661, gbb) 52.83/30.44 new_ltEs24(yvy156, yvy159, ty_@0) -> new_ltEs4(yvy156, yvy159) 52.83/30.44 new_ltEs4(yvy165, yvy166) -> new_fsEs(new_compare5(yvy165, yvy166)) 52.83/30.44 new_esEs33(yvy1650, yvy1660, app(ty_[], fhh)) -> new_esEs18(yvy1650, yvy1660, fhh) 52.83/30.44 new_ltEs16(LT, LT) -> True 52.83/30.44 new_esEs29(yvy190, yvy192, app(app(ty_Either, gg), gh)) -> new_esEs25(yvy190, yvy192, gg, gh) 52.83/30.44 new_ltEs7(yvy165, yvy166) -> new_fsEs(new_compare13(yvy165, yvy166)) 52.83/30.44 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_Ratio, eeb), bgg) -> new_esEs28(yvy4000, yvy3000, eeb) 52.83/30.44 new_ltEs19(yvy179, yvy180, ty_Bool) -> new_ltEs13(yvy179, yvy180) 52.83/30.44 new_lt6(yvy1651, yvy1661, app(ty_Maybe, ebd)) -> new_lt15(yvy1651, yvy1661, ebd) 52.83/30.44 new_lt25(yvy40, yvy30, ty_Bool) -> new_lt14(yvy40, yvy30) 52.83/30.44 new_esEs38(yvy4000, yvy3000, app(ty_[], ccf)) -> new_esEs18(yvy4000, yvy3000, ccf) 52.83/30.44 new_esEs39(yvy155, yvy158, app(app(ty_@2, daf), dag)) -> new_esEs21(yvy155, yvy158, daf, dag) 52.83/30.44 new_gt(yvy81, yvy76, app(ty_Ratio, fbg)) -> new_gt13(yvy81, yvy76, fbg) 52.83/30.44 new_ltEs24(yvy156, yvy159, ty_Float) -> new_ltEs7(yvy156, yvy159) 52.83/30.44 new_esEs13(yvy1651, yvy1661, ty_@0) -> new_esEs19(yvy1651, yvy1661) 52.83/30.44 new_sr(Integer(yvy4000), Integer(yvy3010)) -> Integer(new_primMulInt(yvy4000, yvy3010)) 52.83/30.44 new_primCmpNat0(Succ(yvy4000), Zero) -> GT 52.83/30.44 new_esEs38(yvy4000, yvy3000, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs22(yvy4000, yvy3000, cbe, cbf, cbg) 52.83/30.44 new_addToFM_C10(yvy106, yvy107, yvy108, yvy109, yvy110, yvy111, yvy112, False, dda, ddb) -> Branch(yvy111, yvy112, yvy108, yvy109, yvy110) 52.83/30.44 new_esEs30(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.83/30.44 new_pePe(False, yvy280) -> yvy280 52.83/30.44 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.83/30.44 new_compare6(@2(yvy400, yvy401), @2(yvy300, yvy301), bc, bd) -> new_compare26(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs5(yvy400, yvy300, bc), new_esEs4(yvy401, yvy301, bd)), bc, bd) 52.83/30.44 new_compare25(yvy179, yvy180, True, cd, ce) -> EQ 52.83/30.44 new_compare18(LT, GT) -> LT 52.83/30.44 new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba) -> new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, h), h, ba) 52.83/30.44 new_lt22(yvy154, yvy157, app(ty_Maybe, daa)) -> new_lt15(yvy154, yvy157, daa) 52.83/30.44 new_ltEs16(LT, GT) -> True 52.83/30.44 new_ltEs21(yvy165, yvy166, ty_Double) -> new_ltEs17(yvy165, yvy166) 52.83/30.44 new_primMinusNat0(Succ(yvy90200), Succ(yvy21000)) -> new_primMinusNat0(yvy90200, yvy21000) 52.83/30.44 new_lt23(yvy155, yvy158, ty_Bool) -> new_lt14(yvy155, yvy158) 52.83/30.44 new_lt13(yvy40, yvy30, be, bf, bg) -> new_esEs12(new_compare31(yvy40, yvy30, be, bf, bg)) 52.83/30.44 new_ltEs16(LT, EQ) -> True 52.83/30.44 new_ltEs16(EQ, LT) -> False 52.83/30.44 new_lt20(yvy190, yvy192, ty_Integer) -> new_lt11(yvy190, yvy192) 52.83/30.44 new_esEs6(yvy402, yvy302, ty_Integer) -> new_esEs20(yvy402, yvy302) 52.83/30.44 new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, Branch(yvy900, yvy901, yvy902, yvy903, yvy904), True, h, ba) -> new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, yvy904, new_lt9(new_sizeFM0(yvy904, h, ba), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM0(yvy903, h, ba))), h, ba) 52.83/30.44 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 52.83/30.44 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 52.83/30.44 new_esEs7(yvy401, yvy301, ty_Ordering) -> new_esEs26(yvy401, yvy301) 52.83/30.44 new_lt6(yvy1651, yvy1661, app(app(app(ty_@3, eba), ebb), ebc)) -> new_lt13(yvy1651, yvy1661, eba, ebb, ebc) 52.83/30.44 new_lt23(yvy155, yvy158, app(app(ty_Either, dbd), dbe)) -> new_lt16(yvy155, yvy158, dbd, dbe) 52.83/30.44 new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) -> Branch(yvy50, yvy51, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(yvy90, h, ba)), new_sizeFM0(yvy54, h, ba)), yvy90, yvy54) 52.83/30.44 new_ltEs16(GT, LT) -> False 52.83/30.44 new_esEs4(yvy401, yvy301, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs22(yvy401, yvy301, bef, beg, beh) 52.83/30.44 new_compare30(yvy400, yvy300, app(ty_Maybe, cdh)) -> new_compare29(yvy400, yvy300, cdh) 52.83/30.44 new_lt24(yvy40, yvy50, ty_@0) -> new_lt4(yvy40, yvy50) 52.83/30.44 new_esEs31(yvy4001, yvy3001, ty_Bool) -> new_esEs23(yvy4001, yvy3001) 52.83/30.44 new_esEs25(Left(yvy4000), Left(yvy3000), ty_@0, bgg) -> new_esEs19(yvy4000, yvy3000) 52.83/30.44 new_esEs31(yvy4001, yvy3001, app(app(ty_Either, fgc), fgd)) -> new_esEs25(yvy4001, yvy3001, fgc, fgd) 52.83/30.44 new_ltEs21(yvy165, yvy166, app(app(ty_Either, bbd), bbe)) -> new_ltEs15(yvy165, yvy166, bbd, bbe) 52.83/30.44 new_esEs30(yvy4000, yvy3000, app(ty_Ratio, ehh)) -> new_esEs28(yvy4000, yvy3000, ehh) 52.83/30.44 new_lt21(yvy1650, yvy1660, app(app(app(ty_@3, gac), gad), gae)) -> new_lt13(yvy1650, yvy1660, gac, gad, gae) 52.83/30.44 new_esEs33(yvy1650, yvy1660, app(ty_Maybe, gaf)) -> new_esEs24(yvy1650, yvy1660, gaf) 52.83/30.44 new_esEs9(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.83/30.44 new_lt25(yvy40, yvy30, app(app(ty_@2, bc), bd)) -> new_lt12(yvy40, yvy30, bc, bd) 52.83/30.44 new_ltEs24(yvy156, yvy159, ty_Int) -> new_ltEs9(yvy156, yvy159) 52.83/30.44 new_esEs7(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) 52.83/30.44 new_lt5(yvy1650, yvy1660, app(ty_Ratio, eae)) -> new_lt19(yvy1650, yvy1660, eae) 52.83/30.44 new_esEs10(yvy400, yvy300, app(ty_Maybe, bcd)) -> new_esEs24(yvy400, yvy300, bcd) 52.83/30.44 new_esEs11(yvy400, yvy300, app(app(ty_Either, beb), bec)) -> new_esEs25(yvy400, yvy300, beb, bec) 52.83/30.44 new_esEs6(yvy402, yvy302, app(ty_Ratio, ded)) -> new_esEs28(yvy402, yvy302, ded) 52.83/30.44 new_compare12(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Integer) -> new_compare14(new_sr(yvy400, yvy301), new_sr(yvy300, yvy401)) 52.83/30.44 new_esEs8(yvy400, yvy300, app(app(ty_@2, dgf), dgg)) -> new_esEs21(yvy400, yvy300, dgf, dgg) 52.83/30.44 new_esEs30(yvy4000, yvy3000, app(ty_Maybe, ehe)) -> new_esEs24(yvy4000, yvy3000, ehe) 52.83/30.44 new_ltEs20(yvy191, yvy193, app(ty_Maybe, hh)) -> new_ltEs14(yvy191, yvy193, hh) 52.83/30.44 new_esEs20(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 52.83/30.44 new_esEs33(yvy1650, yvy1660, ty_@0) -> new_esEs19(yvy1650, yvy1660) 52.83/30.44 new_esEs30(yvy4000, yvy3000, app(ty_[], fac)) -> new_esEs18(yvy4000, yvy3000, fac) 52.83/30.44 new_esEs26(GT, GT) -> True 52.83/30.44 new_esEs40(yvy154, yvy157, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs22(yvy154, yvy157, chf, chg, chh) 52.83/30.44 new_ltEs16(EQ, GT) -> True 52.83/30.44 new_ltEs20(yvy191, yvy193, app(app(ty_@2, hc), hd)) -> new_ltEs12(yvy191, yvy193, hc, hd) 52.83/30.44 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_Maybe, feh)) -> new_ltEs14(yvy1650, yvy1660, feh) 52.83/30.44 new_compare18(EQ, GT) -> LT 52.83/30.44 new_ltEs16(EQ, EQ) -> True 52.83/30.44 new_esEs6(yvy402, yvy302, ty_Bool) -> new_esEs23(yvy402, yvy302) 52.83/30.44 new_esEs36(yvy4002, yvy3002, ty_Int) -> new_esEs17(yvy4002, yvy3002) 52.83/30.44 new_compare17(yvy230, yvy231, True, ddc, ddd) -> LT 52.83/30.44 new_esEs29(yvy190, yvy192, ty_Integer) -> new_esEs20(yvy190, yvy192) 52.83/30.44 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Ordering, bgg) -> new_esEs26(yvy4000, yvy3000) 52.83/30.44 new_esEs10(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.83/30.44 new_lt5(yvy1650, yvy1660, ty_Float) -> new_lt7(yvy1650, yvy1660) 52.83/30.44 new_ltEs6(yvy1652, yvy1662, app(app(ty_@2, eca), ecb)) -> new_ltEs12(yvy1652, yvy1662, eca, ecb) 52.83/30.44 new_esEs39(yvy155, yvy158, ty_Char) -> new_esEs16(yvy155, yvy158) 52.83/30.44 new_primMulNat1(Zero) -> Zero 52.83/30.44 new_esEs5(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.83/30.44 new_esEs36(yvy4002, yvy3002, ty_Double) -> new_esEs27(yvy4002, yvy3002) 52.83/30.44 new_lt24(yvy40, yvy50, ty_Int) -> new_lt9(yvy40, yvy50) 52.83/30.44 new_esEs10(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.83/30.44 new_lt5(yvy1650, yvy1660, ty_Integer) -> new_lt11(yvy1650, yvy1660) 52.83/30.44 new_esEs13(yvy1651, yvy1661, ty_Int) -> new_esEs17(yvy1651, yvy1661) 52.83/30.44 new_lt21(yvy1650, yvy1660, ty_Float) -> new_lt7(yvy1650, yvy1660) 52.83/30.44 new_esEs23(False, True) -> False 52.83/30.44 new_esEs23(True, False) -> False 52.83/30.44 new_esEs9(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.83/30.44 new_esEs4(yvy401, yvy301, ty_Char) -> new_esEs16(yvy401, yvy301) 52.83/30.44 new_ltEs6(yvy1652, yvy1662, ty_Ordering) -> new_ltEs16(yvy1652, yvy1662) 52.83/30.44 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_Ratio, egf)) -> new_esEs28(yvy4000, yvy3000, egf) 52.83/30.44 new_esEs40(yvy154, yvy157, app(ty_Ratio, dad)) -> new_esEs28(yvy154, yvy157, dad) 52.83/30.44 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy1650, yvy1660, fec, fed) 52.83/30.44 new_lt18(yvy40, yvy30) -> new_esEs12(new_compare9(yvy40, yvy30)) 52.83/30.44 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Ordering) -> new_ltEs16(yvy1650, yvy1660) 52.83/30.44 new_esEs6(yvy402, yvy302, app(app(ty_@2, deb), dec)) -> new_esEs21(yvy402, yvy302, deb, dec) 52.83/30.44 new_ltEs20(yvy191, yvy193, ty_Ordering) -> new_ltEs16(yvy191, yvy193) 52.83/30.44 new_esEs4(yvy401, yvy301, app(ty_Ratio, bfd)) -> new_esEs28(yvy401, yvy301, bfd) 52.83/30.44 new_esEs5(yvy400, yvy300, app(ty_[], bgh)) -> new_esEs18(yvy400, yvy300, bgh) 52.83/30.44 new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, Branch(yvy5430, yvy5431, yvy5432, yvy5433, yvy5434), yvy544, yvy90, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), yvy5430, yvy5431, new_mkBranchResult(yvy50, yvy51, yvy90, yvy5433, h, ba), Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), yvy540, yvy541, yvy5434, yvy544, h, ba) 52.83/30.44 new_compare7(False, False) -> EQ 52.83/30.44 new_gt15(yvy40, yvy30, ty_Int) -> new_gt4(yvy40, yvy30) 52.83/30.44 new_lt24(yvy40, yvy50, app(ty_Maybe, bh)) -> new_lt15(yvy40, yvy50, bh) 52.83/30.44 new_lt21(yvy1650, yvy1660, app(ty_Ratio, gba)) -> new_lt19(yvy1650, yvy1660, gba) 52.83/30.44 new_primMulInt(Neg(yvy4000), Neg(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) 52.83/30.44 new_esEs32(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.83/30.44 new_sr1(Pos(yvy930)) -> Pos(new_primMulNat1(yvy930)) 52.83/30.44 new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs17(new_sr0(yvy4000, yvy3001), new_sr0(yvy4001, yvy3000)) 52.83/30.44 new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) 52.83/30.44 new_lt19(yvy40, yvy30, cc) -> new_esEs12(new_compare12(yvy40, yvy30, cc)) 52.83/30.44 new_esEs8(yvy400, yvy300, app(app(ty_Either, dha), dhb)) -> new_esEs25(yvy400, yvy300, dha, dhb) 52.83/30.44 new_gt8(yvy40, yvy30, be, bf, bg) -> new_esEs41(new_compare31(yvy40, yvy30, be, bf, bg)) 52.83/30.44 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_Ratio, cfe), bbe) -> new_ltEs18(yvy1650, yvy1660, cfe) 52.83/30.44 new_lt23(yvy155, yvy158, app(app(ty_@2, daf), dag)) -> new_lt12(yvy155, yvy158, daf, dag) 52.83/30.44 new_esEs25(Left(yvy4000), Right(yvy3000), bgf, bgg) -> False 52.83/30.44 new_esEs25(Right(yvy4000), Left(yvy3000), bgf, bgg) -> False 52.83/30.44 new_esEs39(yvy155, yvy158, ty_Integer) -> new_esEs20(yvy155, yvy158) 52.83/30.44 new_esEs30(yvy4000, yvy3000, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs22(yvy4000, yvy3000, ehb, ehc, ehd) 52.83/30.44 new_lt24(yvy40, yvy50, ty_Ordering) -> new_lt17(yvy40, yvy50) 52.83/30.44 new_ltEs21(yvy165, yvy166, ty_Float) -> new_ltEs7(yvy165, yvy166) 52.83/30.44 new_gt12(yvy40, yvy30) -> new_esEs41(new_compare18(yvy40, yvy30)) 52.83/30.44 new_fsEs(yvy281) -> new_not(new_esEs26(yvy281, GT)) 52.83/30.44 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs22(yvy4000, yvy3000, eef, eeg, eeh) 52.83/30.44 new_esEs29(yvy190, yvy192, ty_Bool) -> new_esEs23(yvy190, yvy192) 52.83/30.44 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(ty_@2, edh), eea), bgg) -> new_esEs21(yvy4000, yvy3000, edh, eea) 52.83/30.44 new_esEs22(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfh, bga, bgb) -> new_asAs(new_esEs38(yvy4000, yvy3000, bfh), new_asAs(new_esEs37(yvy4001, yvy3001, bga), new_esEs36(yvy4002, yvy3002, bgb))) 52.83/30.44 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Integer) -> new_ltEs11(yvy1650, yvy1660) 52.83/30.44 new_esEs9(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.83/30.44 new_compare7(True, False) -> GT 52.83/30.44 new_lt26(yvy20, yvy15, ty_@0) -> new_lt4(yvy20, yvy15) 52.83/30.44 new_gt2(yvy40, yvy30) -> new_esEs41(new_compare13(yvy40, yvy30)) 52.83/30.44 new_esEs28(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bee) -> new_asAs(new_esEs35(yvy4000, yvy3000, bee), new_esEs34(yvy4001, yvy3001, bee)) 52.83/30.44 new_lt22(yvy154, yvy157, app(app(app(ty_@3, chf), chg), chh)) -> new_lt13(yvy154, yvy157, chf, chg, chh) 52.83/30.44 new_esEs32(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.83/30.44 new_lt25(yvy40, yvy30, app(app(ty_Either, ca), cb)) -> new_lt16(yvy40, yvy30, ca, cb) 52.83/30.44 new_esEs7(yvy401, yvy301, app(ty_Maybe, dfc)) -> new_esEs24(yvy401, yvy301, dfc) 52.83/30.44 new_esEs31(yvy4001, yvy3001, app(app(ty_@2, ffh), fga)) -> new_esEs21(yvy4001, yvy3001, ffh, fga) 52.83/30.44 new_esEs4(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) 52.83/30.44 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(ty_[], efg)) -> new_esEs18(yvy4000, yvy3000, efg) 52.83/30.44 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(ty_Maybe, cgd)) -> new_ltEs14(yvy1650, yvy1660, cgd) 52.83/30.44 new_lt23(yvy155, yvy158, app(ty_Ratio, dbf)) -> new_lt19(yvy155, yvy158, dbf) 52.83/30.44 new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) 52.83/30.44 new_esEs11(yvy400, yvy300, app(ty_[], bed)) -> new_esEs18(yvy400, yvy300, bed) 52.83/30.44 new_esEs8(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.83/30.44 new_primMulInt(Pos(yvy4000), Neg(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) 52.83/30.44 new_primMulInt(Neg(yvy4000), Pos(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) 52.83/30.44 new_compare27(yvy165, yvy166, False, bad) -> new_compare15(yvy165, yvy166, new_ltEs21(yvy165, yvy166, bad), bad) 52.83/30.44 new_esEs5(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.83/30.44 new_compare30(yvy400, yvy300, app(app(ty_@2, cdc), cdd)) -> new_compare6(yvy400, yvy300, cdc, cdd) 52.83/30.44 new_compare5(@0, @0) -> EQ 52.83/30.44 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(ty_Maybe, efa)) -> new_esEs24(yvy4000, yvy3000, efa) 52.83/30.44 new_ltEs22(yvy172, yvy173, ty_@0) -> new_ltEs4(yvy172, yvy173) 52.83/30.44 new_ltEs22(yvy172, yvy173, app(app(app(ty_@3, fdc), fdd), fde)) -> new_ltEs5(yvy172, yvy173, fdc, fdd, fde) 52.83/30.44 new_ltEs19(yvy179, yvy180, ty_Int) -> new_ltEs9(yvy179, yvy180) 52.83/30.44 new_esEs36(yvy4002, yvy3002, app(ty_[], cab)) -> new_esEs18(yvy4002, yvy3002, cab) 52.83/30.44 new_ltEs23(yvy1651, yvy1661, ty_Ordering) -> new_ltEs16(yvy1651, yvy1661) 52.83/30.44 new_compare210(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, cgh, cha, chb) -> new_compare111(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, new_lt22(yvy154, yvy157, cgh), new_asAs(new_esEs40(yvy154, yvy157, cgh), new_pePe(new_lt23(yvy155, yvy158, cha), new_asAs(new_esEs39(yvy155, yvy158, cha), new_ltEs24(yvy156, yvy159, chb)))), cgh, cha, chb) 52.83/30.44 new_esEs9(yvy400, yvy300, app(ty_Maybe, gef)) -> new_esEs24(yvy400, yvy300, gef) 52.83/30.44 new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba) -> new_splitGT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, h), h, ba) 52.83/30.44 new_esEs5(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.83/30.44 new_ltEs20(yvy191, yvy193, ty_Char) -> new_ltEs8(yvy191, yvy193) 52.83/30.44 new_ltEs22(yvy172, yvy173, ty_Double) -> new_ltEs17(yvy172, yvy173) 52.83/30.44 new_asAs(True, yvy208) -> yvy208 52.83/30.44 new_gt15(yvy40, yvy30, app(app(ty_@2, bc), bd)) -> new_gt1(yvy40, yvy30, bc, bd) 52.83/30.44 new_esEs32(yvy4000, yvy3000, app(app(ty_@2, fhb), fhc)) -> new_esEs21(yvy4000, yvy3000, fhb, fhc) 52.83/30.44 new_ltEs6(yvy1652, yvy1662, app(ty_Ratio, eda)) -> new_ltEs18(yvy1652, yvy1662, eda) 52.83/30.44 new_ltEs23(yvy1651, yvy1661, ty_Integer) -> new_ltEs11(yvy1651, yvy1661) 52.83/30.44 new_lt26(yvy20, yvy15, ty_Bool) -> new_lt14(yvy20, yvy15) 52.83/30.44 new_lt26(yvy20, yvy15, app(app(ty_Either, gdf), gdg)) -> new_lt16(yvy20, yvy15, gdf, gdg) 52.83/30.44 new_esEs5(yvy400, yvy300, app(app(ty_@2, bgd), bge)) -> new_esEs21(yvy400, yvy300, bgd, bge) 52.83/30.44 new_lt26(yvy20, yvy15, ty_Double) -> new_lt18(yvy20, yvy15) 52.83/30.44 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs5(yvy1650, yvy1660, cga, cgb, cgc) 52.83/30.44 new_lt25(yvy40, yvy30, app(ty_Maybe, bh)) -> new_lt15(yvy40, yvy30, bh) 52.83/30.44 new_esEs32(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.83/30.44 new_compare26(yvy190, yvy191, yvy192, yvy193, True, ff, fg) -> EQ 52.83/30.44 new_primPlusInt(Pos(yvy9020), Neg(yvy2100)) -> new_primMinusNat0(yvy9020, yvy2100) 52.83/30.44 new_primPlusInt(Neg(yvy9020), Pos(yvy2100)) -> new_primMinusNat0(yvy2100, yvy9020) 52.83/30.44 new_lt26(yvy20, yvy15, ty_Int) -> new_lt9(yvy20, yvy15) 52.83/30.44 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_[], ced), bbe) -> new_ltEs10(yvy1650, yvy1660, ced) 52.83/30.44 new_lt26(yvy20, yvy15, app(app(app(ty_@3, gdb), gdc), gdd)) -> new_lt13(yvy20, yvy15, gdb, gdc, gdd) 52.83/30.44 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_[], eee), bgg) -> new_esEs18(yvy4000, yvy3000, eee) 52.83/30.44 new_compare15(yvy223, yvy224, False, dde) -> GT 52.83/30.44 new_compare28(yvy172, yvy173, False, fcf, fcg) -> new_compare17(yvy172, yvy173, new_ltEs22(yvy172, yvy173, fcf), fcf, fcg) 52.83/30.44 new_lt21(yvy1650, yvy1660, ty_Double) -> new_lt18(yvy1650, yvy1660) 52.83/30.44 new_compare0([], [], bb) -> EQ 52.83/30.44 new_lt22(yvy154, yvy157, app(app(ty_@2, chd), che)) -> new_lt12(yvy154, yvy157, chd, che) 52.83/30.44 new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba) -> new_sizeFM0(yvy54, h, ba) 52.83/30.44 new_ltEs16(GT, GT) -> True 52.83/30.44 new_compare13(Float(yvy400, Pos(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.83/30.44 new_esEs37(yvy4001, yvy3001, ty_Double) -> new_esEs27(yvy4001, yvy3001) 52.83/30.44 new_esEs9(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.83/30.44 new_lt26(yvy20, yvy15, app(ty_Maybe, gde)) -> new_lt15(yvy20, yvy15, gde) 52.83/30.44 new_primMulNat0(Zero, Zero) -> Zero 52.83/30.44 new_esEs11(yvy400, yvy300, app(app(ty_@2, bdg), bdh)) -> new_esEs21(yvy400, yvy300, bdg, bdh) 52.83/30.44 new_ltEs21(yvy165, yvy166, app(ty_Maybe, bbc)) -> new_ltEs14(yvy165, yvy166, bbc) 52.83/30.44 new_lt26(yvy20, yvy15, ty_Ordering) -> new_lt17(yvy20, yvy15) 52.83/30.44 new_lt5(yvy1650, yvy1660, app(app(ty_@2, dhe), dhf)) -> new_lt12(yvy1650, yvy1660, dhe, dhf) 52.83/30.44 new_ltEs19(yvy179, yvy180, ty_Char) -> new_ltEs8(yvy179, yvy180) 52.83/30.44 new_ltEs23(yvy1651, yvy1661, app(app(ty_Either, gca), gcb)) -> new_ltEs15(yvy1651, yvy1661, gca, gcb) 52.83/30.44 new_esEs4(yvy401, yvy301, app(ty_[], bfg)) -> new_esEs18(yvy401, yvy301, bfg) 52.83/30.44 new_lt21(yvy1650, yvy1660, app(app(ty_@2, gaa), gab)) -> new_lt12(yvy1650, yvy1660, gaa, gab) 52.83/30.44 new_ltEs23(yvy1651, yvy1661, ty_Float) -> new_ltEs7(yvy1651, yvy1661) 52.83/30.44 new_lt5(yvy1650, yvy1660, ty_Double) -> new_lt18(yvy1650, yvy1660) 52.83/30.44 new_ltEs22(yvy172, yvy173, app(ty_Maybe, fdf)) -> new_ltEs14(yvy172, yvy173, fdf) 52.83/30.44 new_esEs32(yvy4000, yvy3000, app(ty_[], fhg)) -> new_esEs18(yvy4000, yvy3000, fhg) 52.83/30.44 new_esEs33(yvy1650, yvy1660, app(app(ty_@2, gaa), gab)) -> new_esEs21(yvy1650, yvy1660, gaa, gab) 52.83/30.44 new_esEs9(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.83/30.44 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Int) -> new_ltEs9(yvy1650, yvy1660) 52.83/30.44 new_compare12(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Int) -> new_compare8(new_sr0(yvy400, yvy301), new_sr0(yvy300, yvy401)) 52.83/30.44 new_ltEs22(yvy172, yvy173, app(app(ty_Either, fdg), fdh)) -> new_ltEs15(yvy172, yvy173, fdg, fdh) 52.83/30.44 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.83/30.44 new_ltEs24(yvy156, yvy159, app(ty_Ratio, dch)) -> new_ltEs18(yvy156, yvy159, dch) 52.83/30.44 new_ltEs6(yvy1652, yvy1662, ty_Char) -> new_ltEs8(yvy1652, yvy1662) 52.83/30.44 new_esEs7(yvy401, yvy301, app(ty_Ratio, dff)) -> new_esEs28(yvy401, yvy301, dff) 52.83/30.44 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 52.83/30.44 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 52.83/30.44 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 52.83/30.44 new_primPlusNat1(yvy270, yvy9300) -> new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(yvy270, Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)) 52.83/30.44 new_gt5(yvy40, yvy30, bb) -> new_esEs41(new_compare0(yvy40, yvy30, bb)) 52.83/30.44 new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 52.83/30.44 new_lt24(yvy40, yvy50, app(ty_Ratio, cc)) -> new_lt19(yvy40, yvy50, cc) 52.83/30.44 new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy53, h, ba), yvy54, h, ba) 52.83/30.44 new_esEs10(yvy400, yvy300, app(ty_[], bdb)) -> new_esEs18(yvy400, yvy300, bdb) 52.83/30.44 new_gt15(yvy40, yvy30, ty_Double) -> new_gt0(yvy40, yvy30) 52.83/30.44 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 52.83/30.44 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 52.83/30.44 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_Maybe, cfb), bbe) -> new_ltEs14(yvy1650, yvy1660, cfb) 52.83/30.44 new_compare31(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), be, bf, bg) -> new_compare210(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs8(yvy400, yvy300, be), new_asAs(new_esEs7(yvy401, yvy301, bf), new_esEs6(yvy402, yvy302, bg))), be, bf, bg) 52.83/30.44 new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) 52.83/30.44 new_lt25(yvy40, yvy30, ty_Double) -> new_lt18(yvy40, yvy30) 52.83/30.44 new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, 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) 52.83/30.44 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 52.83/30.44 new_ltEs22(yvy172, yvy173, ty_Ordering) -> new_ltEs16(yvy172, yvy173) 52.83/30.44 new_compare111(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, yvy269, ccg, cch, cda) -> new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, ccg, cch, cda) 52.83/30.44 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Double) -> new_ltEs17(yvy1650, yvy1660) 52.83/30.44 new_ltEs19(yvy179, yvy180, app(ty_Ratio, dh)) -> new_ltEs18(yvy179, yvy180, dh) 52.83/30.44 new_ltEs21(yvy165, yvy166, ty_Char) -> new_ltEs8(yvy165, yvy166) 52.83/30.44 new_lt25(yvy40, yvy30, app(app(app(ty_@3, be), bf), bg)) -> new_lt13(yvy40, yvy30, be, bf, bg) 52.83/30.44 new_esEs6(yvy402, yvy302, ty_Double) -> new_esEs27(yvy402, yvy302) 52.83/30.44 new_ltEs6(yvy1652, yvy1662, ty_Bool) -> new_ltEs13(yvy1652, yvy1662) 52.83/30.44 new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 52.83/30.44 new_lt20(yvy190, yvy192, ty_Double) -> new_lt18(yvy190, yvy192) 52.83/30.44 new_not(False) -> True 52.83/30.44 new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, yvy90, new_gt4(new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba))), h, ba) 52.83/30.44 new_ltEs23(yvy1651, yvy1661, app(app(app(ty_@3, gbe), gbf), gbg)) -> new_ltEs5(yvy1651, yvy1661, gbe, gbf, gbg) 52.83/30.44 new_esEs8(yvy400, yvy300, app(ty_Ratio, dgh)) -> new_esEs28(yvy400, yvy300, dgh) 52.83/30.44 new_ltEs6(yvy1652, yvy1662, ty_Integer) -> new_ltEs11(yvy1652, yvy1662) 52.83/30.44 new_compare18(GT, EQ) -> GT 52.83/30.44 new_esEs5(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.83/30.44 new_ltEs24(yvy156, yvy159, ty_Ordering) -> new_ltEs16(yvy156, yvy159) 52.83/30.44 new_ltEs21(yvy165, yvy166, ty_@0) -> new_ltEs4(yvy165, yvy166) 52.83/30.44 new_ltEs6(yvy1652, yvy1662, app(app(app(ty_@3, ecc), ecd), ece)) -> new_ltEs5(yvy1652, yvy1662, ecc, ecd, ece) 52.83/30.44 new_ltEs6(yvy1652, yvy1662, ty_@0) -> new_ltEs4(yvy1652, yvy1662) 52.83/30.44 new_ltEs24(yvy156, yvy159, ty_Integer) -> new_ltEs11(yvy156, yvy159) 52.83/30.44 new_gt14(yvy35, yvy30, ty_Double) -> new_gt0(yvy35, yvy30) 52.83/30.44 new_esEs41(LT) -> False 52.83/30.44 new_gt(yvy81, yvy76, app(ty_[], faf)) -> new_gt5(yvy81, yvy76, faf) 52.83/30.44 new_esEs9(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.83/30.44 new_compare11(yvy247, yvy248, yvy249, yvy250, True, yvy252, gea, geb) -> new_compare110(yvy247, yvy248, yvy249, yvy250, True, gea, geb) 52.83/30.44 new_esEs37(yvy4001, yvy3001, app(ty_[], cbd)) -> new_esEs18(yvy4001, yvy3001, cbd) 52.83/30.44 new_lt26(yvy20, yvy15, app(ty_Ratio, gdh)) -> new_lt19(yvy20, yvy15, gdh) 52.83/30.44 new_ltEs20(yvy191, yvy193, app(ty_Ratio, bac)) -> new_ltEs18(yvy191, yvy193, bac) 52.83/30.44 new_ltEs21(yvy165, yvy166, ty_Bool) -> new_ltEs13(yvy165, yvy166) 52.83/30.44 new_esEs4(yvy401, yvy301, ty_Double) -> new_esEs27(yvy401, yvy301) 52.83/30.44 new_esEs38(yvy4000, yvy3000, app(app(ty_@2, cca), ccb)) -> new_esEs21(yvy4000, yvy3000, cca, ccb) 52.83/30.44 new_esEs8(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.83/30.44 new_ltEs23(yvy1651, yvy1661, app(ty_Maybe, gbh)) -> new_ltEs14(yvy1651, yvy1661, gbh) 52.83/30.44 new_compare29(Nothing, Nothing, bh) -> EQ 52.83/30.44 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Double, bgg) -> new_esEs27(yvy4000, yvy3000) 52.83/30.44 new_esEs9(yvy400, yvy300, app(app(app(ty_@3, gec), ged), gee)) -> new_esEs22(yvy400, yvy300, gec, ged, gee) 52.83/30.44 new_sr0(yvy400, yvy301) -> new_primMulInt(yvy400, yvy301) 52.83/30.44 new_ltEs23(yvy1651, yvy1661, app(ty_Ratio, gcc)) -> new_ltEs18(yvy1651, yvy1661, gcc) 52.83/30.44 new_ltEs24(yvy156, yvy159, ty_Bool) -> new_ltEs13(yvy156, yvy159) 52.83/30.44 new_gt(yvy81, yvy76, app(app(ty_@2, fag), fah)) -> new_gt1(yvy81, yvy76, fag, fah) 52.83/30.44 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 52.83/30.44 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 52.83/30.44 new_splitLT10(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, fcd, fce) -> new_mkVBalBranch0(yvy60, yvy61, yvy63, new_splitLT0(yvy64, yvy65, fcd, fce), fcd, fce) 52.83/30.44 new_esEs9(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.83/30.44 new_ltEs23(yvy1651, yvy1661, ty_@0) -> new_ltEs4(yvy1651, yvy1661) 52.83/30.44 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, edd), ede), edf), bgg) -> new_esEs22(yvy4000, yvy3000, edd, ede, edf) 52.83/30.44 new_lt25(yvy40, yvy30, ty_Integer) -> new_lt11(yvy40, yvy30) 52.83/30.44 new_esEs14(yvy1650, yvy1660, app(ty_[], dhd)) -> new_esEs18(yvy1650, yvy1660, dhd) 52.83/30.44 new_ltEs24(yvy156, yvy159, app(app(ty_Either, dcf), dcg)) -> new_ltEs15(yvy156, yvy159, dcf, dcg) 52.83/30.44 new_esEs18(:(yvy4000, yvy4001), [], bgh) -> False 52.83/30.44 new_esEs18([], :(yvy3000, yvy3001), bgh) -> False 52.83/30.44 new_ltEs23(yvy1651, yvy1661, ty_Bool) -> new_ltEs13(yvy1651, yvy1661) 52.83/30.44 new_lt9(yvy40, yvy30) -> new_esEs12(new_compare8(yvy40, yvy30)) 52.83/30.44 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 52.83/30.44 new_ltEs18(yvy165, yvy166, bbf) -> new_fsEs(new_compare12(yvy165, yvy166, bbf)) 52.83/30.44 new_ltEs22(yvy172, yvy173, app(ty_Ratio, fea)) -> new_ltEs18(yvy172, yvy173, fea) 52.83/30.44 new_esEs26(EQ, EQ) -> True 52.83/30.44 new_ltEs21(yvy165, yvy166, ty_Integer) -> new_ltEs11(yvy165, yvy166) 52.83/30.44 new_esEs8(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.83/30.44 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.83/30.44 new_lt6(yvy1651, yvy1661, ty_Double) -> new_lt18(yvy1651, yvy1661) 52.83/30.44 new_compare15(yvy223, yvy224, True, dde) -> LT 52.83/30.44 new_esEs26(LT, LT) -> True 52.83/30.44 new_esEs36(yvy4002, yvy3002, app(app(ty_@2, bhe), bhf)) -> new_esEs21(yvy4002, yvy3002, bhe, bhf) 52.83/30.44 new_esEs9(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.83/30.44 new_esEs24(Nothing, Nothing, bgc) -> True 52.83/30.44 new_addToFM_C0(EmptyFM, yvy40, yvy41, h, ba) -> Branch(yvy40, yvy41, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) 52.83/30.44 new_esEs13(yvy1651, yvy1661, app(app(ty_@2, eag), eah)) -> new_esEs21(yvy1651, yvy1661, eag, eah) 52.83/30.44 new_ltEs21(yvy165, yvy166, ty_Int) -> new_ltEs9(yvy165, yvy166) 52.83/30.44 new_ltEs21(yvy165, yvy166, app(ty_Ratio, bbf)) -> new_ltEs18(yvy165, yvy166, bbf) 52.83/30.44 new_ltEs22(yvy172, yvy173, ty_Bool) -> new_ltEs13(yvy172, yvy173) 52.83/30.44 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 52.83/30.44 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 52.83/30.44 new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, ea, eb) -> new_splitLT0(yvy33, yvy35, ea, eb) 52.83/30.44 new_ltEs24(yvy156, yvy159, ty_Char) -> new_ltEs8(yvy156, yvy159) 52.83/30.44 new_lt23(yvy155, yvy158, ty_Double) -> new_lt18(yvy155, yvy158) 52.83/30.44 new_gt14(yvy35, yvy30, app(ty_[], ec)) -> new_gt5(yvy35, yvy30, ec) 52.83/30.44 new_primEqNat0(Zero, Zero) -> True 52.83/30.44 new_esEs37(yvy4001, yvy3001, app(app(ty_@2, cag), cah)) -> new_esEs21(yvy4001, yvy3001, cag, cah) 52.83/30.44 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.83/30.44 new_esEs14(yvy1650, yvy1660, app(app(ty_@2, dhe), dhf)) -> new_esEs21(yvy1650, yvy1660, dhe, dhf) 52.83/30.44 new_ltEs20(yvy191, yvy193, ty_Int) -> new_ltEs9(yvy191, yvy193) 52.83/30.44 new_esEs24(Nothing, Just(yvy3000), bgc) -> False 52.83/30.44 new_esEs24(Just(yvy4000), Nothing, bgc) -> False 52.83/30.44 new_esEs13(yvy1651, yvy1661, app(ty_[], eaf)) -> new_esEs18(yvy1651, yvy1661, eaf) 52.83/30.44 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.83/30.44 new_lt26(yvy20, yvy15, ty_Integer) -> new_lt11(yvy20, yvy15) 52.83/30.44 new_compare9(Double(yvy400, Neg(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.83/30.44 new_lt22(yvy154, yvy157, ty_Double) -> new_lt18(yvy154, yvy157) 52.83/30.44 new_asAs(False, yvy208) -> False 52.83/30.44 new_ltEs23(yvy1651, yvy1661, ty_Char) -> new_ltEs8(yvy1651, yvy1661) 52.83/30.44 new_ltEs6(yvy1652, yvy1662, ty_Int) -> new_ltEs9(yvy1652, yvy1662) 52.83/30.44 new_gt14(yvy35, yvy30, app(app(ty_@2, ed), ee)) -> new_gt1(yvy35, yvy30, ed, ee) 52.83/30.44 new_compare111(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, False, yvy269, ccg, cch, cda) -> new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, yvy269, ccg, cch, cda) 52.83/30.44 new_ltEs22(yvy172, yvy173, ty_Integer) -> new_ltEs11(yvy172, yvy173) 52.83/30.44 new_ltEs24(yvy156, yvy159, app(ty_Maybe, dce)) -> new_ltEs14(yvy156, yvy159, dce) 52.83/30.44 new_compare30(yvy400, yvy300, app(ty_Ratio, cec)) -> new_compare12(yvy400, yvy300, cec) 52.83/30.44 new_esEs7(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) 52.83/30.44 new_splitLT10(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, False, fcd, fce) -> yvy63 52.83/30.44 new_gt0(yvy40, yvy30) -> new_esEs41(new_compare9(yvy40, yvy30)) 52.83/30.44 new_ltEs21(yvy165, yvy166, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs5(yvy165, yvy166, bah, bba, bbb) 52.83/30.44 52.83/30.44 The set Q consists of the following terms: 52.83/30.44 52.83/30.44 new_esEs8(x0, x1, ty_Ordering) 52.83/30.44 new_esEs7(x0, x1, ty_Char) 52.83/30.44 new_esEs38(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_lt25(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 52.83/30.44 new_esEs10(x0, x1, ty_Int) 52.83/30.44 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 52.83/30.44 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 52.83/30.44 new_esEs38(x0, x1, app(ty_[], x2)) 52.83/30.44 new_ltEs21(x0, x1, ty_Double) 52.83/30.44 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 52.83/30.44 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 52.83/30.44 new_esEs29(x0, x1, ty_@0) 52.83/30.44 new_lt25(x0, x1, ty_Double) 52.83/30.44 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs7(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_asAs(False, x0) 52.83/30.44 new_lt6(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_esEs8(x0, x1, ty_Double) 52.83/30.44 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_compare30(x0, x1, ty_Char) 52.83/30.44 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_ltEs21(x0, x1, ty_Ordering) 52.83/30.44 new_mkVBalBranch0(x0, x1, EmptyFM, x2, x3, x4) 52.83/30.44 new_compare16(Right(x0), Right(x1), x2, x3) 52.83/30.44 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_compare27(x0, x1, True, x2) 52.83/30.44 new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) 52.83/30.44 new_esEs29(x0, x1, ty_Bool) 52.83/30.44 new_esEs37(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_splitLT20(x0, x1, x2, x3, x4, x5, True, x6, x7) 52.83/30.44 new_lt22(x0, x1, ty_@0) 52.83/30.44 new_lt5(x0, x1, app(ty_[], x2)) 52.83/30.44 new_esEs8(x0, x1, app(ty_[], x2)) 52.83/30.44 new_splitGT20(x0, x1, x2, x3, x4, x5, False, x6, x7) 52.83/30.44 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 52.83/30.44 new_lt5(x0, x1, ty_Float) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 52.83/30.44 new_ltEs15(Left(x0), Left(x1), ty_Ordering, x2) 52.83/30.44 new_primEqInt(Pos(Zero), Pos(Zero)) 52.83/30.44 new_esEs29(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_primMulNat0(Zero, Succ(x0)) 52.83/30.44 new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), EmptyFM, x7, x8) 52.83/30.44 new_ltEs19(x0, x1, ty_Integer) 52.83/30.44 new_lt25(x0, x1, ty_Ordering) 52.83/30.44 new_primPlusNat1(x0, x1) 52.83/30.44 new_ltEs15(Left(x0), Left(x1), ty_Double, x2) 52.83/30.44 new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 52.83/30.44 new_esEs33(x0, x1, app(ty_[], x2)) 52.83/30.44 new_mkBalBranch6MkBalBranch3(x0, x1, x2, EmptyFM, True, x3, x4) 52.83/30.44 new_esEs36(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_lt20(x0, x1, ty_Char) 52.83/30.44 new_esEs24(Nothing, Just(x0), x1) 52.83/30.44 new_primCompAux00(x0, GT) 52.83/30.44 new_esEs18(:(x0, x1), :(x2, x3), x4) 52.83/30.44 new_lt26(x0, x1, app(ty_[], x2)) 52.83/30.44 new_ltEs20(x0, x1, ty_Ordering) 52.83/30.44 new_ltEs19(x0, x1, ty_Float) 52.83/30.44 new_sr0(x0, x1) 52.83/30.44 new_ltEs7(x0, x1) 52.83/30.44 new_esEs7(x0, x1, ty_Ordering) 52.83/30.44 new_ltEs15(Left(x0), Left(x1), ty_Char, x2) 52.83/30.44 new_lt26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_primEqInt(Neg(Zero), Neg(Zero)) 52.83/30.44 new_gt14(x0, x1, ty_Int) 52.83/30.44 new_gt15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_ltEs11(x0, x1) 52.83/30.44 new_compare0(:(x0, x1), :(x2, x3), x4) 52.83/30.44 new_splitGT30(x0, x1, x2, x3, x4, x5, x6, x7) 52.83/30.44 new_ltEs16(GT, EQ) 52.83/30.44 new_ltEs16(EQ, GT) 52.83/30.44 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 52.83/30.44 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 52.83/30.44 new_esEs39(x0, x1, ty_Int) 52.83/30.44 new_esEs29(x0, x1, app(ty_[], x2)) 52.83/30.44 new_ltEs24(x0, x1, app(ty_[], x2)) 52.83/30.44 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_ltEs21(x0, x1, ty_Char) 52.83/30.44 new_lt11(x0, x1) 52.83/30.44 new_esEs29(x0, x1, ty_Integer) 52.83/30.44 new_ltEs16(LT, LT) 52.83/30.44 new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 52.83/30.44 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 52.83/30.44 new_lt19(x0, x1, x2) 52.83/30.44 new_lt25(x0, x1, ty_Char) 52.83/30.44 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) 52.83/30.44 new_esEs8(x0, x1, ty_Char) 52.83/30.44 new_lt16(x0, x1, x2, x3) 52.83/30.44 new_gt15(x0, x1, ty_Int) 52.83/30.44 new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) 52.83/30.44 new_gt15(x0, x1, ty_@0) 52.83/30.44 new_esEs35(x0, x1, ty_Integer) 52.83/30.44 new_lt24(x0, x1, ty_Float) 52.83/30.44 new_ltEs20(x0, x1, ty_Char) 52.83/30.44 new_primPlusNat0(Zero, Succ(x0)) 52.83/30.44 new_compare30(x0, x1, ty_Double) 52.83/30.44 new_esEs20(Integer(x0), Integer(x1)) 52.83/30.44 new_esEs13(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 52.83/30.44 new_lt23(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_primEqInt(Pos(Zero), Neg(Zero)) 52.83/30.44 new_primEqInt(Neg(Zero), Pos(Zero)) 52.83/30.44 new_esEs25(Left(x0), Left(x1), ty_Float, x2) 52.83/30.44 new_esEs8(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_ltEs20(x0, x1, ty_Double) 52.83/30.44 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_esEs11(x0, x1, ty_Float) 52.83/30.44 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 52.83/30.44 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 52.83/30.44 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_ltEs15(Right(x0), Right(x1), x2, ty_@0) 52.83/30.44 new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) 52.83/30.44 new_esEs34(x0, x1, ty_Integer) 52.83/30.44 new_lt24(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_ltEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) 52.83/30.44 new_mkVBalBranch3MkVBalBranch10(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) 52.83/30.44 new_mkBranch0(x0, x1, x2, x3, x4, x5, x6) 52.83/30.44 new_splitGT0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) 52.83/30.44 new_gt(x0, x1, ty_Char) 52.83/30.44 new_gt(x0, x1, ty_Double) 52.83/30.44 new_compare18(GT, GT) 52.83/30.44 new_ltEs15(Right(x0), Right(x1), x2, ty_Float) 52.83/30.44 new_esEs25(Left(x0), Left(x1), ty_@0, x2) 52.83/30.44 new_lt23(x0, x1, ty_Char) 52.83/30.44 new_compare7(True, True) 52.83/30.44 new_esEs14(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_gt4(x0, x1) 52.83/30.44 new_primCmpNat0(Succ(x0), Zero) 52.83/30.44 new_esEs6(x0, x1, ty_Ordering) 52.83/30.44 new_esEs38(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_lt23(x0, x1, ty_Double) 52.83/30.44 new_lt23(x0, x1, app(ty_[], x2)) 52.83/30.44 new_esEs30(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 52.83/30.44 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 52.83/30.44 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_esEs23(False, False) 52.83/30.44 new_esEs29(x0, x1, ty_Float) 52.83/30.44 new_compare19(Char(x0), Char(x1)) 52.83/30.44 new_compare29(Nothing, Just(x0), x1) 52.83/30.44 new_mkVBalBranch3MkVBalBranch20(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) 52.83/30.44 new_esEs32(x0, x1, ty_Double) 52.83/30.44 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_gt14(x0, x1, ty_Bool) 52.83/30.44 new_primEqNat0(Succ(x0), Succ(x1)) 52.83/30.44 new_esEs31(x0, x1, ty_Float) 52.83/30.44 new_esEs24(Just(x0), Just(x1), ty_Float) 52.83/30.44 new_gt14(x0, x1, ty_Integer) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, ty_Int) 52.83/30.44 new_lt24(x0, x1, ty_Integer) 52.83/30.44 new_esEs31(x0, x1, ty_Char) 52.83/30.44 new_esEs12(GT) 52.83/30.44 new_lt20(x0, x1, ty_Ordering) 52.83/30.44 new_gt15(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_esEs26(LT, EQ) 52.83/30.44 new_esEs26(EQ, LT) 52.83/30.44 new_primCompAux0(x0, x1, x2, x3) 52.83/30.44 new_esEs25(Left(x0), Left(x1), ty_Bool, x2) 52.83/30.44 new_esEs5(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_ltEs19(x0, x1, ty_@0) 52.83/30.44 new_ltEs16(LT, EQ) 52.83/30.44 new_ltEs16(EQ, LT) 52.83/30.44 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_lt22(x0, x1, ty_Float) 52.83/30.44 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_compare26(x0, x1, x2, x3, False, x4, x5) 52.83/30.44 new_primPlusInt(Pos(x0), Neg(x1)) 52.83/30.44 new_primPlusInt(Neg(x0), Pos(x1)) 52.83/30.44 new_lt21(x0, x1, ty_Float) 52.83/30.44 new_esEs5(x0, x1, app(ty_[], x2)) 52.83/30.44 new_ltEs22(x0, x1, ty_Int) 52.83/30.44 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_esEs24(Just(x0), Just(x1), ty_Char) 52.83/30.44 new_esEs30(x0, x1, ty_Int) 52.83/30.44 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_lt22(x0, x1, ty_Integer) 52.83/30.44 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_compare110(x0, x1, x2, x3, False, x4, x5) 52.83/30.44 new_lt26(x0, x1, ty_Integer) 52.83/30.44 new_lt20(x0, x1, ty_Double) 52.83/30.44 new_ltEs23(x0, x1, ty_Char) 52.83/30.44 new_esEs18([], :(x0, x1), x2) 52.83/30.44 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_ltEs24(x0, x1, ty_Char) 52.83/30.44 new_lt7(x0, x1) 52.83/30.44 new_esEs37(x0, x1, app(ty_[], x2)) 52.83/30.44 new_ltEs15(Right(x0), Right(x1), x2, ty_Bool) 52.83/30.44 new_gt(x0, x1, ty_Ordering) 52.83/30.44 new_esEs40(x0, x1, ty_@0) 52.83/30.44 new_lt25(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_esEs7(x0, x1, ty_Double) 52.83/30.44 new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 52.83/30.44 new_lt25(x0, x1, app(ty_[], x2)) 52.83/30.44 new_lt22(x0, x1, ty_Int) 52.83/30.44 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, EmptyFM, x5, x6, False, x7, x8) 52.83/30.44 new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) 52.83/30.44 new_ltEs23(x0, x1, ty_Ordering) 52.83/30.44 new_lt24(x0, x1, ty_Ordering) 52.83/30.44 new_esEs37(x0, x1, ty_Int) 52.83/30.44 new_ltEs14(Just(x0), Just(x1), ty_Double) 52.83/30.44 new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 52.83/30.44 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_gt0(x0, x1) 52.83/30.44 new_esEs33(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_esEs39(x0, x1, ty_Integer) 52.83/30.44 new_compare14(Integer(x0), Integer(x1)) 52.83/30.44 new_esEs10(x0, x1, ty_@0) 52.83/30.44 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_esEs25(Left(x0), Left(x1), ty_Integer, x2) 52.83/30.44 new_esEs6(x0, x1, ty_Char) 52.83/30.44 new_esEs4(x0, x1, ty_Int) 52.83/30.44 new_compare0(:(x0, x1), [], x2) 52.83/30.44 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_lt18(x0, x1) 52.83/30.44 new_ltEs15(Right(x0), Right(x1), x2, ty_Integer) 52.83/30.44 new_compare15(x0, x1, True, x2) 52.83/30.44 new_esEs14(x0, x1, ty_Int) 52.83/30.44 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_lt22(x0, x1, ty_Bool) 52.83/30.44 new_lt5(x0, x1, ty_@0) 52.83/30.44 new_ltEs19(x0, x1, app(ty_[], x2)) 52.83/30.44 new_lt5(x0, x1, ty_Double) 52.83/30.44 new_esEs40(x0, x1, app(ty_[], x2)) 52.83/30.44 new_esEs32(x0, x1, ty_@0) 52.83/30.44 new_compare25(x0, x1, False, x2, x3) 52.83/30.44 new_gt(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_compare17(x0, x1, True, x2, x3) 52.83/30.44 new_ltEs21(x0, x1, app(ty_[], x2)) 52.83/30.44 new_splitLT10(x0, x1, x2, x3, x4, x5, False, x6, x7) 52.83/30.44 new_primPlusInt(Neg(x0), Neg(x1)) 52.83/30.44 new_esEs35(x0, x1, ty_Int) 52.83/30.44 new_esEs29(x0, x1, ty_Int) 52.83/30.44 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 52.83/30.44 new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 52.83/30.44 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_esEs26(EQ, EQ) 52.83/30.44 new_ltEs13(True, True) 52.83/30.44 new_ltEs6(x0, x1, ty_Double) 52.83/30.44 new_esEs5(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_lt24(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 52.83/30.44 new_mkBalBranch(x0, x1, x2, x3, x4, x5) 52.83/30.44 new_esEs37(x0, x1, ty_@0) 52.83/30.44 new_lt26(x0, x1, ty_Char) 52.83/30.44 new_esEs23(False, True) 52.83/30.44 new_esEs23(True, False) 52.83/30.44 new_sizeFM0(EmptyFM, x0, x1) 52.83/30.44 new_ltEs21(x0, x1, ty_Float) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, ty_Bool) 52.83/30.44 new_esEs9(x0, x1, ty_Ordering) 52.83/30.44 new_ltEs15(Right(x0), Left(x1), x2, x3) 52.83/30.44 new_ltEs15(Left(x0), Right(x1), x2, x3) 52.83/30.44 new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 52.83/30.44 new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.44 new_compare25(x0, x1, True, x2, x3) 52.83/30.44 new_compare18(GT, LT) 52.83/30.44 new_compare18(LT, GT) 52.83/30.44 new_lt22(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_esEs11(x0, x1, ty_Int) 52.83/30.44 new_primCompAux00(x0, EQ) 52.83/30.44 new_lt23(x0, x1, app(ty_Ratio, x2)) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, ty_@0) 52.83/30.44 new_lt25(x0, x1, ty_Float) 52.83/30.44 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.44 new_esEs5(x0, x1, ty_Int) 52.83/30.44 new_gt14(x0, x1, ty_Float) 52.83/30.44 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.83/30.44 new_addToFM_C0(EmptyFM, x0, x1, x2, x3) 52.83/30.44 new_pePe(True, x0) 52.83/30.44 new_esEs30(x0, x1, ty_Bool) 52.83/30.44 new_esEs11(x0, x1, ty_Char) 52.83/30.44 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs25(Right(x0), Right(x1), x2, ty_Integer) 52.83/30.44 new_gt15(x0, x1, app(ty_Maybe, x2)) 52.83/30.44 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_ltEs20(x0, x1, ty_Float) 52.83/30.44 new_lt26(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.44 new_esEs5(x0, x1, ty_Char) 52.83/30.44 new_lt24(x0, x1, app(ty_[], x2)) 52.83/30.44 new_gt10(x0, x1, x2) 52.83/30.44 new_ltEs24(x0, x1, ty_Ordering) 52.83/30.44 new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.45 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 52.83/30.45 new_lt26(x0, x1, ty_Int) 52.83/30.45 new_esEs32(x0, x1, ty_Bool) 52.83/30.45 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.45 new_mkBranchResult(x0, x1, x2, x3, x4, x5) 52.83/30.45 new_esEs37(x0, x1, ty_Bool) 52.83/30.45 new_gt(x0, x1, app(ty_Maybe, x2)) 52.83/30.45 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 52.83/30.45 new_compare28(x0, x1, False, x2, x3) 52.83/30.45 new_ltEs20(x0, x1, ty_Integer) 52.83/30.45 new_ltEs19(x0, x1, ty_Ordering) 52.83/30.45 new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 52.83/30.45 new_esEs13(x0, x1, ty_Bool) 52.83/30.45 new_lt6(x0, x1, app(ty_Maybe, x2)) 52.83/30.45 new_ltEs24(x0, x1, ty_Double) 52.83/30.45 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) 52.83/30.45 new_splitGT10(x0, x1, x2, x3, x4, x5, False, x6, x7) 52.83/30.45 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 52.83/30.45 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.45 new_esEs36(x0, x1, ty_Integer) 52.83/30.45 new_primPlusNat0(Zero, Zero) 52.83/30.45 new_lt21(x0, x1, ty_@0) 52.83/30.45 new_lt8(x0, x1) 52.83/30.45 new_esEs8(x0, x1, app(ty_Ratio, x2)) 52.83/30.45 new_not(True) 52.83/30.45 new_lt10(x0, x1, x2) 52.83/30.45 new_esEs4(x0, x1, ty_Ordering) 52.83/30.45 new_esEs32(x0, x1, ty_Integer) 52.83/30.45 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.45 new_lt26(x0, x1, ty_Double) 52.83/30.45 new_ltEs13(False, False) 52.83/30.45 new_lt21(x0, x1, ty_Int) 52.83/30.45 new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) 52.83/30.45 new_splitLT10(x0, x1, x2, x3, x4, x5, True, x6, x7) 52.83/30.45 new_esEs9(x0, x1, app(ty_Maybe, x2)) 52.83/30.45 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 52.83/30.45 new_lt21(x0, x1, app(ty_Maybe, x2)) 52.83/30.45 new_lt21(x0, x1, ty_Integer) 52.83/30.45 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 52.83/30.45 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.45 new_lt25(x0, x1, ty_Integer) 52.83/30.45 new_gt(x0, x1, ty_Float) 52.83/30.45 new_esEs18(:(x0, x1), [], x2) 52.83/30.45 new_esEs5(x0, x1, ty_@0) 52.83/30.45 new_esEs38(x0, x1, ty_Ordering) 52.83/30.45 new_lt21(x0, x1, ty_Char) 52.83/30.45 new_esEs36(x0, x1, app(ty_[], x2)) 52.83/30.45 new_ltEs6(x0, x1, ty_Ordering) 52.83/30.45 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.45 new_ltEs14(Nothing, Nothing, x0) 52.83/30.45 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 52.83/30.45 new_esEs36(x0, x1, ty_Bool) 52.83/30.45 new_esEs11(x0, x1, ty_@0) 52.83/30.45 new_esEs10(x0, x1, app(ty_Ratio, x2)) 52.83/30.45 new_lt5(x0, x1, ty_Ordering) 52.83/30.45 new_lt21(x0, x1, ty_Bool) 52.83/30.45 new_lt15(x0, x1, x2) 52.83/30.45 new_ltEs23(x0, x1, app(ty_[], x2)) 52.83/30.45 new_esEs39(x0, x1, ty_@0) 52.83/30.45 new_splitGT10(x0, x1, x2, x3, x4, x5, True, x6, x7) 52.83/30.45 new_lt24(x0, x1, ty_@0) 52.83/30.45 new_esEs24(Nothing, Nothing, x0) 52.83/30.45 new_esEs36(x0, x1, app(ty_Ratio, x2)) 52.83/30.45 new_gt15(x0, x1, ty_Float) 52.83/30.45 new_lt26(x0, x1, ty_Bool) 52.83/30.45 new_lt6(x0, x1, ty_@0) 52.83/30.45 new_esEs37(x0, x1, ty_Integer) 52.83/30.45 new_esEs13(x0, x1, ty_Integer) 52.83/30.45 new_ltEs20(x0, x1, ty_Bool) 52.83/30.45 new_esEs8(x0, x1, ty_Float) 52.83/30.45 new_esEs24(Just(x0), Just(x1), ty_Ordering) 52.83/30.45 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 52.83/30.45 new_lt6(x0, x1, app(ty_[], x2)) 52.83/30.45 new_lt25(x0, x1, ty_@0) 52.83/30.45 new_ltEs21(x0, x1, ty_@0) 52.83/30.45 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.45 new_ltEs21(x0, x1, ty_Bool) 52.83/30.45 new_esEs7(x0, x1, app(ty_[], x2)) 52.83/30.45 new_esEs40(x0, x1, ty_Integer) 52.83/30.45 new_esEs31(x0, x1, app(ty_Maybe, x2)) 52.83/30.45 new_esEs30(x0, x1, ty_Double) 52.83/30.45 new_esEs24(Just(x0), Just(x1), ty_Double) 52.83/30.45 new_gt8(x0, x1, x2, x3, x4) 52.83/30.45 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 52.83/30.45 new_esEs31(x0, x1, ty_Ordering) 52.83/30.45 new_esEs36(x0, x1, ty_Char) 52.83/30.45 new_ltEs14(Just(x0), Just(x1), ty_Char) 52.83/30.45 new_gt14(x0, x1, app(ty_Maybe, x2)) 52.83/30.45 new_lt20(x0, x1, ty_Float) 52.83/30.45 new_fsEs(x0) 52.83/30.45 new_lt24(x0, x1, app(ty_Ratio, x2)) 52.83/30.45 new_primMulInt(Neg(x0), Neg(x1)) 52.83/30.45 new_gt14(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.45 new_esEs36(x0, x1, ty_Int) 52.83/30.45 new_ltEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 52.83/30.45 new_esEs11(x0, x1, app(ty_Maybe, x2)) 52.83/30.45 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.45 new_esEs26(EQ, GT) 52.83/30.45 new_esEs26(GT, EQ) 52.83/30.45 new_splitLT30(x0, x1, x2, x3, x4, x5, x6, x7) 52.83/30.45 new_esEs15(Float(x0, x1), Float(x2, x3)) 52.83/30.45 new_primPlusInt(Pos(x0), Pos(x1)) 52.83/30.45 new_gt(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.45 new_esEs33(x0, x1, ty_Char) 52.83/30.45 new_esEs5(x0, x1, ty_Bool) 52.83/30.45 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 52.83/30.45 new_esEs31(x0, x1, ty_Double) 52.83/30.45 new_ltEs21(x0, x1, ty_Integer) 52.83/30.45 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 52.83/30.45 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 52.83/30.45 new_esEs11(x0, x1, ty_Bool) 52.83/30.45 new_esEs33(x0, x1, ty_Int) 52.83/30.45 new_ltEs20(x0, x1, app(ty_[], x2)) 52.83/30.45 new_lt20(x0, x1, app(ty_[], x2)) 52.83/30.45 new_addToFM(x0, x1, x2, x3, x4) 52.83/30.45 new_esEs36(x0, x1, ty_Float) 52.83/30.45 new_primMulInt(Pos(x0), Pos(x1)) 52.83/30.45 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.45 new_primEqNat0(Zero, Zero) 52.83/30.45 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), False, x12, x13) 52.83/30.45 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.45 new_esEs32(x0, x1, ty_Int) 52.83/30.45 new_ltEs4(x0, x1) 52.83/30.45 new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 52.83/30.45 new_lt20(x0, x1, ty_Int) 52.83/30.45 new_ltEs22(x0, x1, ty_Ordering) 52.83/30.45 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.45 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.83/30.45 new_not(False) 52.83/30.45 new_lt26(x0, x1, ty_Float) 52.83/30.45 new_mkBalBranch6MkBalBranch4(x0, x1, EmptyFM, x2, True, x3, x4) 52.83/30.45 new_ltEs14(Just(x0), Just(x1), ty_Bool) 52.83/30.45 new_gt15(x0, x1, ty_Bool) 52.83/30.45 new_compare16(Right(x0), Left(x1), x2, x3) 52.83/30.45 new_compare16(Left(x0), Right(x1), x2, x3) 52.83/30.45 new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) 52.83/30.45 new_esEs13(x0, x1, ty_Char) 52.83/30.45 new_esEs12(LT) 52.83/30.45 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.45 new_esEs13(x0, x1, ty_Int) 52.83/30.45 new_esEs32(x0, x1, ty_Char) 52.83/30.45 new_esEs40(x0, x1, ty_Bool) 52.83/30.45 new_ltEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 52.83/30.45 new_mkVBalBranch3MkVBalBranch10(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) 52.83/30.45 new_esEs33(x0, x1, ty_Integer) 52.83/30.45 new_esEs40(x0, x1, ty_Float) 52.83/30.45 new_ltEs14(Just(x0), Just(x1), ty_Float) 52.83/30.45 new_esEs14(x0, x1, ty_@0) 52.83/30.45 new_gt3(x0, x1) 52.83/30.45 new_esEs33(x0, x1, ty_Bool) 52.83/30.45 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 52.83/30.45 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) 52.83/30.45 new_ltEs9(x0, x1) 52.83/30.45 new_esEs32(x0, x1, ty_Float) 52.83/30.45 new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 52.83/30.45 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 52.83/30.45 new_gt14(x0, x1, app(ty_[], x2)) 52.83/30.45 new_esEs41(LT) 52.86/30.45 new_lt20(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_gt15(x0, x1, ty_Integer) 52.86/30.45 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_compare29(Just(x0), Just(x1), x2) 52.86/30.45 new_gt14(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 52.86/30.45 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 52.86/30.45 new_esEs40(x0, x1, ty_Int) 52.86/30.45 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_esEs5(x0, x1, ty_Integer) 52.86/30.45 new_esEs4(x0, x1, ty_Double) 52.86/30.45 new_esEs13(x0, x1, ty_Float) 52.86/30.45 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 52.86/30.45 new_esEs11(x0, x1, ty_Integer) 52.86/30.45 new_esEs29(x0, x1, ty_Double) 52.86/30.45 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_lt25(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_addToFM_C0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) 52.86/30.45 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_esEs40(x0, x1, ty_Char) 52.86/30.45 new_ltEs14(Just(x0), Just(x1), ty_Int) 52.86/30.45 new_esEs6(x0, x1, ty_@0) 52.86/30.45 new_compare30(x0, x1, ty_Ordering) 52.86/30.45 new_compare28(x0, x1, True, x2, x3) 52.86/30.45 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 52.86/30.45 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_primPlusNat0(Succ(x0), Zero) 52.86/30.45 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_ltEs15(Left(x0), Left(x1), ty_Int, x2) 52.86/30.45 new_lt23(x0, x1, ty_Bool) 52.86/30.45 new_esEs9(x0, x1, ty_Float) 52.86/30.45 new_compare30(x0, x1, ty_Int) 52.86/30.45 new_esEs31(x0, x1, app(ty_[], x2)) 52.86/30.45 new_gt15(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_gt(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_ltEs6(x0, x1, ty_Integer) 52.86/30.45 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_lt5(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_lt12(x0, x1, x2, x3) 52.86/30.45 new_mkVBalBranch3Size_l(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 52.86/30.45 new_esEs18([], [], x0) 52.86/30.45 new_lt20(x0, x1, ty_@0) 52.86/30.45 new_ltEs24(x0, x1, ty_Float) 52.86/30.45 new_sr(Integer(x0), Integer(x1)) 52.86/30.45 new_compare26(x0, x1, x2, x3, True, x4, x5) 52.86/30.45 new_lt23(x0, x1, ty_@0) 52.86/30.45 new_esEs8(x0, x1, ty_Int) 52.86/30.45 new_lt20(x0, x1, ty_Bool) 52.86/30.45 new_esEs10(x0, x1, ty_Ordering) 52.86/30.45 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 52.86/30.45 new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 52.86/30.45 new_gt15(x0, x1, app(ty_[], x2)) 52.86/30.45 new_primMinusNat0(Zero, Zero) 52.86/30.45 new_esEs7(x0, x1, ty_Int) 52.86/30.45 new_esEs6(x0, x1, ty_Bool) 52.86/30.45 new_emptyFM(x0, x1) 52.86/30.45 new_lt23(x0, x1, ty_Integer) 52.86/30.45 new_gt14(x0, x1, ty_Double) 52.86/30.45 new_gt12(x0, x1) 52.86/30.45 new_ltEs17(x0, x1) 52.86/30.45 new_esEs14(x0, x1, app(ty_[], x2)) 52.86/30.45 new_gt14(x0, x1, ty_Char) 52.86/30.45 new_gt6(x0, x1) 52.86/30.45 new_lt25(x0, x1, ty_Int) 52.86/30.45 new_primCmpNat0(Zero, Succ(x0)) 52.86/30.45 new_esEs26(LT, GT) 52.86/30.45 new_esEs26(GT, LT) 52.86/30.45 new_mkVBalBranch3MkVBalBranch20(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) 52.86/30.45 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_gt14(x0, x1, ty_Ordering) 52.86/30.45 new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 52.86/30.45 new_gt1(x0, x1, x2, x3) 52.86/30.45 new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) 52.86/30.45 new_gt15(x0, x1, ty_Char) 52.86/30.45 new_esEs31(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_primMulNat0(Succ(x0), Zero) 52.86/30.45 new_esEs9(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_sIZE_RATIO 52.86/30.45 new_esEs6(x0, x1, ty_Integer) 52.86/30.45 new_ltEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 52.86/30.45 new_ltEs23(x0, x1, ty_Float) 52.86/30.45 new_ltEs13(False, True) 52.86/30.45 new_ltEs13(True, False) 52.86/30.45 new_lt20(x0, x1, ty_Integer) 52.86/30.45 new_ltEs24(x0, x1, ty_Integer) 52.86/30.45 new_compare18(EQ, LT) 52.86/30.45 new_compare18(LT, EQ) 52.86/30.45 new_ltEs20(x0, x1, ty_Int) 52.86/30.45 new_esEs9(x0, x1, app(ty_[], x2)) 52.86/30.45 new_lt22(x0, x1, ty_Ordering) 52.86/30.45 new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) 52.86/30.45 new_ltEs23(x0, x1, ty_@0) 52.86/30.45 new_esEs33(x0, x1, ty_Float) 52.86/30.45 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_esEs9(x0, x1, ty_Integer) 52.86/30.45 new_lt6(x0, x1, ty_Float) 52.86/30.45 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_compare18(LT, LT) 52.86/30.45 new_gt(x0, x1, ty_Bool) 52.86/30.45 new_ltEs22(x0, x1, ty_Double) 52.86/30.45 new_ltEs21(x0, x1, ty_Int) 52.86/30.45 new_ltEs15(Left(x0), Left(x1), ty_Bool, x2) 52.86/30.45 new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 52.86/30.45 new_compare11(x0, x1, x2, x3, False, x4, x5, x6) 52.86/30.45 new_splitGT20(x0, x1, x2, x3, x4, x5, True, x6, x7) 52.86/30.45 new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) 52.86/30.45 new_ltEs14(Just(x0), Just(x1), ty_Integer) 52.86/30.45 new_esEs5(x0, x1, ty_Float) 52.86/30.45 new_esEs39(x0, x1, ty_Double) 52.86/30.45 new_lt21(x0, x1, app(ty_[], x2)) 52.86/30.45 new_esEs40(x0, x1, ty_Ordering) 52.86/30.45 new_esEs4(x0, x1, app(ty_[], x2)) 52.86/30.45 new_esEs29(x0, x1, ty_Ordering) 52.86/30.45 new_gt(x0, x1, ty_@0) 52.86/30.45 new_esEs8(x0, x1, ty_@0) 52.86/30.45 new_pePe(False, x0) 52.86/30.45 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_esEs36(x0, x1, ty_Double) 52.86/30.45 new_lt23(x0, x1, ty_Int) 52.86/30.45 new_lt17(x0, x1) 52.86/30.45 new_splitLT0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) 52.86/30.45 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 52.86/30.45 new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 52.86/30.45 new_esEs39(x0, x1, ty_Char) 52.86/30.45 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_gt(x0, x1, ty_Int) 52.86/30.45 new_gt15(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) 52.86/30.45 new_primEqNat0(Succ(x0), Zero) 52.86/30.45 new_compare110(x0, x1, x2, x3, True, x4, x5) 52.86/30.45 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 52.86/30.45 new_compare30(x0, x1, ty_@0) 52.86/30.45 new_lt23(x0, x1, ty_Float) 52.86/30.45 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_ltEs15(Left(x0), Left(x1), ty_Integer, x2) 52.86/30.45 new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 52.86/30.45 new_esEs41(GT) 52.86/30.45 new_esEs8(x0, x1, ty_Bool) 52.86/30.45 new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) 52.86/30.45 new_esEs23(True, True) 52.86/30.45 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_esEs13(x0, x1, ty_Double) 52.86/30.45 new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 52.86/30.45 new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.86/30.45 new_esEs6(x0, x1, app(ty_[], x2)) 52.86/30.45 new_lt25(x0, x1, ty_Bool) 52.86/30.45 new_esEs30(x0, x1, ty_Float) 52.86/30.45 new_esEs32(x0, x1, app(ty_[], x2)) 52.86/30.45 new_primPlusNat0(Succ(x0), Succ(x1)) 52.86/30.45 new_ltEs15(Right(x0), Right(x1), x2, ty_Char) 52.86/30.45 new_compare18(EQ, GT) 52.86/30.45 new_compare18(GT, EQ) 52.86/30.45 new_esEs30(x0, x1, app(ty_[], x2)) 52.86/30.45 new_ltEs10(x0, x1, x2) 52.86/30.45 new_ltEs16(GT, GT) 52.86/30.45 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 52.86/30.45 new_lt6(x0, x1, ty_Integer) 52.86/30.45 new_ltEs22(x0, x1, ty_Char) 52.86/30.45 new_ltEs24(x0, x1, ty_Bool) 52.86/30.45 new_compare30(x0, x1, app(ty_[], x2)) 52.86/30.45 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 52.86/30.45 new_mkBalBranch6MkBalBranch3(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) 52.86/30.45 new_esEs33(x0, x1, ty_@0) 52.86/30.45 new_gt(x0, x1, ty_Integer) 52.86/30.45 new_lt25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 52.86/30.45 new_lt26(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 52.86/30.45 new_ltEs23(x0, x1, ty_Int) 52.86/30.45 new_lt13(x0, x1, x2, x3, x4) 52.86/30.45 new_esEs26(GT, GT) 52.86/30.45 new_ltEs20(x0, x1, ty_@0) 52.86/30.45 new_compare27(x0, x1, False, x2) 52.86/30.45 new_esEs14(x0, x1, ty_Integer) 52.86/30.45 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_ltEs15(Left(x0), Left(x1), app(ty_[], x2), x3) 52.86/30.45 new_esEs30(x0, x1, ty_Ordering) 52.86/30.45 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_esEs36(x0, x1, ty_Ordering) 52.86/30.45 new_esEs30(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_gt15(x0, x1, ty_Double) 52.86/30.45 new_compare0([], [], x0) 52.86/30.45 new_sr1(Neg(x0)) 52.86/30.45 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_esEs9(x0, x1, ty_@0) 52.86/30.45 new_splitLT0(EmptyFM, x0, x1, x2) 52.86/30.45 new_esEs24(Just(x0), Just(x1), ty_Int) 52.86/30.45 new_ltEs6(x0, x1, app(ty_[], x2)) 52.86/30.45 new_esEs31(x0, x1, ty_Int) 52.86/30.45 new_esEs25(Right(x0), Right(x1), x2, ty_Float) 52.86/30.45 new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 52.86/30.45 new_esEs4(x0, x1, ty_Float) 52.86/30.45 new_esEs4(x0, x1, ty_Integer) 52.86/30.45 new_esEs14(x0, x1, ty_Float) 52.86/30.45 new_primCmpInt(Neg(Zero), Neg(Zero)) 52.86/30.45 new_lt6(x0, x1, ty_Ordering) 52.86/30.45 new_ltEs22(x0, x1, ty_Float) 52.86/30.45 new_esEs37(x0, x1, ty_Char) 52.86/30.45 new_lt25(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_esEs7(x0, x1, ty_@0) 52.86/30.45 new_esEs30(x0, x1, ty_Char) 52.86/30.45 new_esEs29(x0, x1, ty_Char) 52.86/30.45 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_primCmpInt(Pos(Zero), Neg(Zero)) 52.86/30.45 new_primCmpInt(Neg(Zero), Pos(Zero)) 52.86/30.45 new_ltEs15(Right(x0), Right(x1), x2, ty_Ordering) 52.86/30.45 new_esEs14(x0, x1, ty_Bool) 52.86/30.45 new_esEs25(Left(x0), Right(x1), x2, x3) 52.86/30.45 new_esEs25(Right(x0), Left(x1), x2, x3) 52.86/30.45 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) 52.86/30.45 new_esEs38(x0, x1, ty_@0) 52.86/30.45 new_ltEs15(Left(x0), Left(x1), ty_@0, x2) 52.86/30.45 new_ltEs19(x0, x1, ty_Double) 52.86/30.45 new_esEs30(x0, x1, ty_Integer) 52.86/30.45 new_esEs10(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_gt5(x0, x1, x2) 52.86/30.45 new_ltEs6(x0, x1, ty_@0) 52.86/30.45 new_ltEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 52.86/30.45 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_ltEs23(x0, x1, ty_Bool) 52.86/30.45 new_compare7(False, False) 52.86/30.45 new_esEs10(x0, x1, ty_Double) 52.86/30.45 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_lt22(x0, x1, ty_Char) 52.86/30.45 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_compare30(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_ltEs23(x0, x1, ty_Integer) 52.86/30.45 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_sr1(Pos(x0)) 52.86/30.45 new_ltEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 52.86/30.45 new_primMinusNat0(Succ(x0), Succ(x1)) 52.86/30.45 new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) 52.86/30.45 new_esEs39(x0, x1, ty_Ordering) 52.86/30.45 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 52.86/30.45 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) 52.86/30.45 new_esEs6(x0, x1, ty_Float) 52.86/30.45 new_esEs4(x0, x1, ty_Char) 52.86/30.45 new_compare0([], :(x0, x1), x2) 52.86/30.45 new_esEs25(Right(x0), Right(x1), x2, ty_Char) 52.86/30.45 new_lt22(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_esEs37(x0, x1, ty_Float) 52.86/30.45 new_esEs6(x0, x1, ty_Int) 52.86/30.45 new_ltEs14(Just(x0), Just(x1), ty_@0) 52.86/30.45 new_esEs40(x0, x1, ty_Double) 52.86/30.45 new_esEs4(x0, x1, ty_Bool) 52.86/30.45 new_gt(x0, x1, app(ty_[], x2)) 52.86/30.45 new_esEs24(Just(x0), Nothing, x1) 52.86/30.45 new_esEs14(x0, x1, ty_Char) 52.86/30.45 new_esEs38(x0, x1, ty_Double) 52.86/30.45 new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_esEs8(x0, x1, ty_Integer) 52.86/30.45 new_lt5(x0, x1, ty_Int) 52.86/30.45 new_esEs11(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13) 52.86/30.45 new_primMulNat0(Succ(x0), Succ(x1)) 52.86/30.45 new_esEs11(x0, x1, app(ty_[], x2)) 52.86/30.45 new_esEs26(LT, LT) 52.86/30.45 new_esEs30(x0, x1, ty_@0) 52.86/30.45 new_esEs13(x0, x1, ty_@0) 52.86/30.45 new_esEs14(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) 52.86/30.45 new_esEs9(x0, x1, ty_Double) 52.86/30.45 new_esEs24(Just(x0), Just(x1), ty_Bool) 52.86/30.45 new_esEs13(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_ltEs16(EQ, EQ) 52.86/30.45 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_primMulNat1(Succ(x0)) 52.86/30.45 new_ltEs18(x0, x1, x2) 52.86/30.45 new_primMinusNat0(Succ(x0), Zero) 52.86/30.45 new_gt14(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_lt6(x0, x1, ty_Char) 52.86/30.45 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_esEs5(x0, x1, ty_Ordering) 52.86/30.45 new_primMulNat0(Zero, Zero) 52.86/30.45 new_sizeFM(x0, x1, x2, x3, x4, x5, x6) 52.86/30.45 new_compare10(x0, x1, False, x2, x3) 52.86/30.45 new_esEs31(x0, x1, ty_Bool) 52.86/30.45 new_compare5(@0, @0) 52.86/30.45 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_compare30(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_esEs39(x0, x1, app(ty_[], x2)) 52.86/30.45 new_esEs31(x0, x1, ty_Integer) 52.86/30.45 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 52.86/30.45 new_esEs24(Just(x0), Just(x1), ty_Integer) 52.86/30.45 new_esEs39(x0, x1, ty_Float) 52.86/30.45 new_esEs10(x0, x1, ty_Float) 52.86/30.45 new_esEs5(x0, x1, ty_Double) 52.86/30.45 new_esEs9(x0, x1, ty_Int) 52.86/30.45 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 52.86/30.45 new_esEs11(x0, x1, ty_Double) 52.86/30.45 new_esEs40(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_ltEs14(Nothing, Just(x0), x1) 52.86/30.45 new_esEs33(x0, x1, ty_Double) 52.86/30.45 new_primCmpNat0(Succ(x0), Succ(x1)) 52.86/30.45 new_esEs4(x0, x1, ty_@0) 52.86/30.45 new_ltEs22(x0, x1, ty_Integer) 52.86/30.45 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_ltEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 52.86/30.45 new_esEs31(x0, x1, ty_@0) 52.86/30.45 new_compare7(False, True) 52.86/30.45 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_compare7(True, False) 52.86/30.45 new_compare29(Nothing, Nothing, x0) 52.86/30.45 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_esEs24(Just(x0), Just(x1), ty_@0) 52.86/30.45 new_ltEs24(x0, x1, ty_Int) 52.86/30.45 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_lt26(x0, x1, ty_Ordering) 52.86/30.45 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_gt9(x0, x1) 52.86/30.45 new_compare8(x0, x1) 52.86/30.45 new_esEs39(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_ltEs22(x0, x1, ty_Bool) 52.86/30.45 new_compare29(Just(x0), Nothing, x1) 52.86/30.45 new_esEs7(x0, x1, ty_Float) 52.86/30.45 new_mkBranch1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14) 52.86/30.45 new_lt6(x0, x1, ty_Bool) 52.86/30.45 new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_ltEs14(Just(x0), Just(x1), ty_Ordering) 52.86/30.45 new_lt26(x0, x1, ty_@0) 52.86/30.45 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_lt6(x0, x1, ty_Double) 52.86/30.45 new_ltEs15(Right(x0), Right(x1), x2, ty_Double) 52.86/30.45 new_esEs36(x0, x1, ty_@0) 52.86/30.45 new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 52.86/30.45 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_primMinusNat0(Zero, Succ(x0)) 52.86/30.45 new_esEs9(x0, x1, ty_Char) 52.86/30.45 new_ltEs15(Right(x0), Right(x1), x2, ty_Int) 52.86/30.45 new_compare17(x0, x1, False, x2, x3) 52.86/30.45 new_esEs7(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_esEs4(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_esEs14(x0, x1, ty_Ordering) 52.86/30.45 new_lt24(x0, x1, ty_Bool) 52.86/30.45 new_compare15(x0, x1, False, x2) 52.86/30.45 new_lt26(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_lt21(x0, x1, ty_Double) 52.86/30.45 new_esEs39(x0, x1, ty_Bool) 52.86/30.45 new_esEs25(Left(x0), Left(x1), ty_Double, x2) 52.86/30.45 new_esEs32(x0, x1, ty_Ordering) 52.86/30.45 new_gt7(x0, x1) 52.86/30.45 new_esEs33(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_esEs13(x0, x1, ty_Ordering) 52.86/30.45 new_compare30(x0, x1, ty_Float) 52.86/30.45 new_esEs13(x0, x1, app(ty_[], x2)) 52.86/30.45 new_esEs25(Left(x0), Left(x1), ty_Char, x2) 52.86/30.45 new_ltEs8(x0, x1) 52.86/30.45 new_mkBranch(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) 52.86/30.45 new_ltEs16(LT, GT) 52.86/30.45 new_ltEs16(GT, LT) 52.86/30.45 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_lt24(x0, x1, ty_Double) 52.86/30.45 new_lt24(x0, x1, ty_Char) 52.86/30.45 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_lt14(x0, x1) 52.86/30.45 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, EmptyFM, False, x7, x8) 52.86/30.45 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_lt24(x0, x1, ty_Int) 52.86/30.45 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_esEs29(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_lt6(x0, x1, ty_Int) 52.86/30.45 new_primCmpInt(Pos(Zero), Pos(Zero)) 52.86/30.45 new_esEs25(Left(x0), Left(x1), ty_Int, x2) 52.86/30.45 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_asAs(True, x0) 52.86/30.45 new_ltEs6(x0, x1, ty_Char) 52.86/30.45 new_esEs9(x0, x1, ty_Bool) 52.86/30.45 new_compare30(x0, x1, ty_Integer) 52.86/30.45 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_ltEs24(x0, x1, ty_@0) 52.86/30.45 new_lt26(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_esEs25(Right(x0), Right(x1), x2, ty_Double) 52.86/30.45 new_esEs10(x0, x1, ty_Integer) 52.86/30.45 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) 52.86/30.45 new_esEs6(x0, x1, ty_Double) 52.86/30.45 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_splitLT20(x0, x1, x2, x3, x4, x5, False, x6, x7) 52.86/30.45 new_esEs32(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, x11, False, x12, x13) 52.86/30.45 new_esEs17(x0, x1) 52.86/30.45 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_compare6(@2(x0, x1), @2(x2, x3), x4, x5) 52.86/30.45 new_lt23(x0, x1, ty_Ordering) 52.86/30.45 new_esEs37(x0, x1, ty_Ordering) 52.86/30.45 new_lt5(x0, x1, ty_Integer) 52.86/30.45 new_esEs28(:%(x0, x1), :%(x2, x3), x4) 52.86/30.45 new_compare18(EQ, EQ) 52.86/30.45 new_lt5(x0, x1, ty_Bool) 52.86/30.45 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_gt14(x0, x1, ty_@0) 52.86/30.45 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_esEs38(x0, x1, ty_Integer) 52.86/30.45 new_compare16(Left(x0), Left(x1), x2, x3) 52.86/30.45 new_gt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_compare30(x0, x1, ty_Bool) 52.86/30.45 new_esEs34(x0, x1, ty_Int) 52.86/30.45 new_lt24(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_esEs37(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_esEs6(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_esEs7(x0, x1, ty_Integer) 52.86/30.45 new_lt20(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_esEs32(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_esEs12(EQ) 52.86/30.45 new_esEs16(Char(x0), Char(x1)) 52.86/30.45 new_ltEs22(x0, x1, ty_@0) 52.86/30.45 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_esEs37(x0, x1, ty_Double) 52.86/30.45 new_lt4(x0, x1) 52.86/30.45 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_esEs41(EQ) 52.86/30.45 new_lt21(x0, x1, ty_Ordering) 52.86/30.45 new_gt2(x0, x1) 52.86/30.45 new_lt9(x0, x1) 52.86/30.45 new_esEs38(x0, x1, ty_Bool) 52.86/30.45 new_ltEs6(x0, x1, ty_Float) 52.86/30.45 new_esEs40(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_ltEs23(x0, x1, ty_Double) 52.86/30.45 new_esEs33(x0, x1, ty_Ordering) 52.86/30.45 new_esEs38(x0, x1, ty_Float) 52.86/30.45 new_lt21(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_ltEs19(x0, x1, ty_Int) 52.86/30.45 new_ltEs6(x0, x1, ty_Bool) 52.86/30.45 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.86/30.45 new_ltEs15(Left(x0), Left(x1), ty_Float, x2) 52.86/30.45 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) 52.86/30.45 new_primCompAux00(x0, LT) 52.86/30.45 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_gt15(x0, x1, ty_Ordering) 52.86/30.45 new_esEs38(x0, x1, ty_Int) 52.86/30.45 new_esEs39(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_primMulInt(Pos(x0), Neg(x1)) 52.86/30.45 new_primMulInt(Neg(x0), Pos(x1)) 52.86/30.45 new_compare11(x0, x1, x2, x3, True, x4, x5, x6) 52.86/30.45 new_esEs19(@0, @0) 52.86/30.45 new_ltEs19(x0, x1, ty_Char) 52.86/30.45 new_lt5(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_lt5(x0, x1, ty_Char) 52.86/30.45 new_ltEs6(x0, x1, ty_Int) 52.86/30.45 new_esEs10(x0, x1, ty_Bool) 52.86/30.45 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 52.86/30.45 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 52.86/30.45 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_esEs27(Double(x0, x1), Double(x2, x3)) 52.86/30.45 new_ltEs19(x0, x1, ty_Bool) 52.86/30.45 new_splitGT0(EmptyFM, x0, x1, x2) 52.86/30.45 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_gt13(x0, x1, x2) 52.86/30.45 new_gt11(x0, x1, x2, x3) 52.86/30.45 new_compare10(x0, x1, True, x2, x3) 52.86/30.45 new_esEs11(x0, x1, ty_Ordering) 52.86/30.45 new_esEs6(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_ltEs22(x0, x1, app(ty_[], x2)) 52.86/30.45 new_esEs7(x0, x1, ty_Bool) 52.86/30.45 new_esEs4(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_lt22(x0, x1, app(ty_[], x2)) 52.86/30.45 new_esEs10(x0, x1, ty_Char) 52.86/30.45 new_mkBalBranch6MkBalBranch4(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) 52.86/30.45 new_primEqNat0(Zero, Succ(x0)) 52.86/30.45 new_ltEs14(Just(x0), Nothing, x1) 52.86/30.45 new_primCmpNat0(Zero, Zero) 52.86/30.45 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 52.86/30.45 new_esEs14(x0, x1, ty_Double) 52.86/30.45 new_esEs10(x0, x1, app(ty_[], x2)) 52.86/30.45 new_lt22(x0, x1, ty_Double) 52.86/30.45 new_primMulNat1(Zero) 52.86/30.45 new_esEs38(x0, x1, ty_Char) 52.86/30.45 52.86/30.45 We have to consider all minimal (P,Q,R)-chains. 52.86/30.45 ---------------------------------------- 52.86/30.45 52.86/30.45 (36) TransformationProof (EQUIVALENT) 52.86/30.45 By rewriting [LPAR04] the rule 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) at position [0] we obtained the following new rules [LPAR04]: 52.86/30.45 52.86/30.45 (new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, h), h, ba), yvy43, h, ba),new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, h), h, ba), yvy43, h, ba)) 52.86/30.45 52.86/30.45 52.86/30.45 ---------------------------------------- 52.86/30.45 52.86/30.45 (37) 52.86/30.45 Obligation: 52.86/30.45 Q DP problem: 52.86/30.45 The TRS P consists of the following rules: 52.86/30.45 52.86/30.45 new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, h), h, ba), yvy44, h, ba) 52.86/30.45 new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, h), h, ba), yvy43, h, ba) 52.86/30.45 52.86/30.45 The TRS R consists of the following rules: 52.86/30.45 52.86/30.45 new_esEs14(yvy1650, yvy1660, ty_@0) -> new_esEs19(yvy1650, yvy1660) 52.86/30.45 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(ty_@2, egd), ege)) -> new_esEs21(yvy4000, yvy3000, egd, ege) 52.86/30.45 new_ltEs19(yvy179, yvy180, ty_Integer) -> new_ltEs11(yvy179, yvy180) 52.86/30.45 new_compare9(Double(yvy400, Pos(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.86/30.45 new_lt24(yvy40, yvy50, ty_Bool) -> new_lt14(yvy40, yvy50) 52.86/30.45 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 52.86/30.45 new_primPlusNat0(Zero, Zero) -> Zero 52.86/30.45 new_esEs14(yvy1650, yvy1660, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs22(yvy1650, yvy1660, dhg, dhh, eaa) 52.86/30.45 new_pePe(True, yvy280) -> True 52.86/30.45 new_lt12(yvy40, yvy30, bc, bd) -> new_esEs12(new_compare6(yvy40, yvy30, bc, bd)) 52.86/30.45 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_@0) -> new_ltEs4(yvy1650, yvy1660) 52.86/30.45 new_esEs26(LT, GT) -> False 52.86/30.45 new_esEs26(GT, LT) -> False 52.86/30.45 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(app(ty_@3, fee), fef), feg)) -> new_ltEs5(yvy1650, yvy1660, fee, fef, feg) 52.86/30.45 new_lt20(yvy190, yvy192, ty_Ordering) -> new_lt17(yvy190, yvy192) 52.86/30.45 new_compare13(Float(yvy400, Pos(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.86/30.45 new_compare13(Float(yvy400, Neg(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.86/30.45 new_esEs8(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.86/30.45 new_esEs30(yvy4000, yvy3000, app(app(ty_@2, ehf), ehg)) -> new_esEs21(yvy4000, yvy3000, ehf, ehg) 52.86/30.45 new_lt24(yvy40, yvy50, app(app(ty_Either, ca), cb)) -> new_lt16(yvy40, yvy50, ca, cb) 52.86/30.45 new_ltEs20(yvy191, yvy193, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs5(yvy191, yvy193, he, hf, hg) 52.86/30.45 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 52.86/30.45 new_addToFM_C20(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, True, fad, fae) -> new_mkBalBranch(yvy76, yvy77, new_addToFM_C0(yvy79, yvy81, yvy82, fad, fae), yvy80, fad, fae) 52.86/30.45 new_esEs26(LT, EQ) -> False 52.86/30.45 new_esEs26(EQ, LT) -> False 52.86/30.45 new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) 52.86/30.45 new_esEs29(yvy190, yvy192, ty_@0) -> new_esEs19(yvy190, yvy192) 52.86/30.45 new_lt6(yvy1651, yvy1661, ty_Char) -> new_lt8(yvy1651, yvy1661) 52.86/30.45 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(ty_Ratio, cgg)) -> new_ltEs18(yvy1650, yvy1660, cgg) 52.86/30.45 new_ltEs19(yvy179, yvy180, app(app(ty_@2, cg), da)) -> new_ltEs12(yvy179, yvy180, cg, da) 52.86/30.45 new_emptyFM(h, ba) -> EmptyFM 52.86/30.45 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(ty_Ratio, efd)) -> new_esEs28(yvy4000, yvy3000, efd) 52.86/30.45 new_lt23(yvy155, yvy158, app(ty_Maybe, dbc)) -> new_lt15(yvy155, yvy158, dbc) 52.86/30.45 new_compare18(LT, LT) -> EQ 52.86/30.45 new_lt24(yvy40, yvy50, app(app(ty_@2, bc), bd)) -> new_lt12(yvy40, yvy50, bc, bd) 52.86/30.45 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Bool) -> new_ltEs13(yvy1650, yvy1660) 52.86/30.45 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(ty_Either, egg), egh)) -> new_esEs25(yvy4000, yvy3000, egg, egh) 52.86/30.45 new_gt1(yvy40, yvy30, bc, bd) -> new_esEs41(new_compare6(yvy40, yvy30, bc, bd)) 52.86/30.45 new_ltEs20(yvy191, yvy193, ty_Float) -> new_ltEs7(yvy191, yvy193) 52.86/30.45 new_esEs30(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.45 new_esEs8(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.86/30.45 new_lt25(yvy40, yvy30, app(ty_Ratio, cc)) -> new_lt19(yvy40, yvy30, cc) 52.86/30.45 new_esEs6(yvy402, yvy302, ty_Int) -> new_esEs17(yvy402, yvy302) 52.86/30.45 new_ltEs21(yvy165, yvy166, ty_Ordering) -> new_ltEs16(yvy165, yvy166) 52.86/30.45 new_ltEs20(yvy191, yvy193, ty_@0) -> new_ltEs4(yvy191, yvy193) 52.86/30.45 new_esEs39(yvy155, yvy158, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs22(yvy155, yvy158, dah, dba, dbb) 52.86/30.45 new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, False, ccg, cch, cda) -> GT 52.86/30.45 new_esEs33(yvy1650, yvy1660, ty_Char) -> new_esEs16(yvy1650, yvy1660) 52.86/30.45 new_esEs36(yvy4002, yvy3002, app(ty_Ratio, bhg)) -> new_esEs28(yvy4002, yvy3002, bhg) 52.86/30.45 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 52.86/30.45 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Double) -> new_ltEs17(yvy1650, yvy1660) 52.86/30.45 new_esEs40(yvy154, yvy157, ty_Double) -> new_esEs27(yvy154, yvy157) 52.86/30.45 new_esEs31(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) 52.86/30.45 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.86/30.45 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.86/30.45 new_ltEs24(yvy156, yvy159, app(ty_[], dbg)) -> new_ltEs10(yvy156, yvy159, dbg) 52.86/30.45 new_esEs7(yvy401, yvy301, ty_Double) -> new_esEs27(yvy401, yvy301) 52.86/30.45 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(ty_Either, ffa), ffb)) -> new_ltEs15(yvy1650, yvy1660, ffa, ffb) 52.86/30.45 new_not(True) -> False 52.86/30.45 new_ltEs22(yvy172, yvy173, ty_Char) -> new_ltEs8(yvy172, yvy173) 52.86/30.45 new_lt23(yvy155, yvy158, ty_Int) -> new_lt9(yvy155, yvy158) 52.86/30.45 new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, Branch(yvy9040, yvy9041, yvy9042, yvy9043, yvy9044), False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), yvy9040, yvy9041, new_mkBranch0(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), yvy900, yvy901, yvy903, yvy9043, h, ba), Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), yvy50, yvy51, yvy9044, yvy54, h, ba) 52.86/30.45 new_esEs13(yvy1651, yvy1661, ty_Integer) -> new_esEs20(yvy1651, yvy1661) 52.86/30.45 new_gt3(yvy40, yvy30) -> new_esEs41(new_compare19(yvy40, yvy30)) 52.86/30.45 new_primCompAux00(yvy133, LT) -> LT 52.86/30.45 new_esEs39(yvy155, yvy158, ty_Ordering) -> new_esEs26(yvy155, yvy158) 52.86/30.45 new_compare17(yvy230, yvy231, False, ddc, ddd) -> GT 52.86/30.45 new_lt22(yvy154, yvy157, ty_Float) -> new_lt7(yvy154, yvy157) 52.86/30.45 new_lt22(yvy154, yvy157, app(ty_[], chc)) -> new_lt10(yvy154, yvy157, chc) 52.86/30.45 new_esEs39(yvy155, yvy158, app(ty_[], dae)) -> new_esEs18(yvy155, yvy158, dae) 52.86/30.45 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Char, bgg) -> new_esEs16(yvy4000, yvy3000) 52.86/30.45 new_esEs10(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.86/30.45 new_gt11(yvy40, yvy30, ca, cb) -> new_esEs41(new_compare16(yvy40, yvy30, ca, cb)) 52.86/30.45 new_lt24(yvy40, yvy50, ty_Integer) -> new_lt11(yvy40, yvy50) 52.86/30.45 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.86/30.45 new_primMulNat1(Succ(yvy9300)) -> new_primPlusNat1(new_primMulNat0(Zero, Succ(yvy9300)), yvy9300) 52.86/30.45 new_lt24(yvy40, yvy50, ty_Double) -> new_lt18(yvy40, yvy50) 52.86/30.45 new_gt15(yvy40, yvy30, ty_Char) -> new_gt3(yvy40, yvy30) 52.86/30.45 new_esEs38(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.86/30.45 new_esEs31(yvy4001, yvy3001, app(ty_Ratio, fgb)) -> new_esEs28(yvy4001, yvy3001, fgb) 52.86/30.45 new_primEqNat0(Succ(yvy40000), Zero) -> False 52.86/30.45 new_primEqNat0(Zero, Succ(yvy30000)) -> False 52.86/30.45 new_esEs39(yvy155, yvy158, app(ty_Maybe, dbc)) -> new_esEs24(yvy155, yvy158, dbc) 52.86/30.45 new_esEs10(yvy400, yvy300, app(app(ty_@2, bce), bcf)) -> new_esEs21(yvy400, yvy300, bce, bcf) 52.86/30.45 new_esEs36(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) 52.86/30.45 new_ltEs21(yvy165, yvy166, app(app(ty_@2, baf), bag)) -> new_ltEs12(yvy165, yvy166, baf, bag) 52.86/30.45 new_compare10(yvy237, yvy238, True, fcb, fcc) -> LT 52.86/30.45 new_lt6(yvy1651, yvy1661, app(app(ty_@2, eag), eah)) -> new_lt12(yvy1651, yvy1661, eag, eah) 52.86/30.45 new_gt7(yvy40, yvy30) -> new_esEs41(new_compare14(yvy40, yvy30)) 52.86/30.45 new_lt20(yvy190, yvy192, app(app(app(ty_@3, gc), gd), ge)) -> new_lt13(yvy190, yvy192, gc, gd, ge) 52.86/30.45 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(ty_@2, cee), cef), bbe) -> new_ltEs12(yvy1650, yvy1660, cee, cef) 52.86/30.45 new_compare7(True, True) -> EQ 52.86/30.45 new_gt(yvy81, yvy76, ty_Double) -> new_gt0(yvy81, yvy76) 52.86/30.45 new_ltEs20(yvy191, yvy193, ty_Bool) -> new_ltEs13(yvy191, yvy193) 52.86/30.45 new_primPlusInt(Pos(yvy9020), Pos(yvy2100)) -> Pos(new_primPlusNat0(yvy9020, yvy2100)) 52.86/30.45 new_compare210(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, True, cgh, cha, chb) -> EQ 52.86/30.45 new_esEs31(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) 52.86/30.45 new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT 52.86/30.45 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Integer, bgg) -> new_esEs20(yvy4000, yvy3000) 52.86/30.45 new_esEs40(yvy154, yvy157, app(app(ty_@2, chd), che)) -> new_esEs21(yvy154, yvy157, chd, che) 52.86/30.45 new_esEs5(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.86/30.45 new_esEs29(yvy190, yvy192, ty_Ordering) -> new_esEs26(yvy190, yvy192) 52.86/30.45 new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, True, h, ba) -> new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) 52.86/30.45 new_esEs29(yvy190, yvy192, ty_Float) -> new_esEs15(yvy190, yvy192) 52.86/30.45 new_esEs10(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.86/30.45 new_ltEs9(yvy165, yvy166) -> new_fsEs(new_compare8(yvy165, yvy166)) 52.86/30.45 new_ltEs6(yvy1652, yvy1662, ty_Double) -> new_ltEs17(yvy1652, yvy1662) 52.86/30.45 new_lt6(yvy1651, yvy1661, app(ty_[], eaf)) -> new_lt10(yvy1651, yvy1661, eaf) 52.86/30.45 new_esEs34(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.86/30.45 new_esEs7(yvy401, yvy301, ty_Integer) -> new_esEs20(yvy401, yvy301) 52.86/30.45 new_esEs4(yvy401, yvy301, app(app(ty_@2, bfb), bfc)) -> new_esEs21(yvy401, yvy301, bfb, bfc) 52.86/30.45 new_primCmpNat0(Zero, Succ(yvy3000)) -> LT 52.86/30.45 new_esEs30(yvy4000, yvy3000, app(app(ty_Either, faa), fab)) -> new_esEs25(yvy4000, yvy3000, faa, fab) 52.86/30.45 new_ltEs23(yvy1651, yvy1661, ty_Int) -> new_ltEs9(yvy1651, yvy1661) 52.86/30.45 new_ltEs20(yvy191, yvy193, ty_Double) -> new_ltEs17(yvy191, yvy193) 52.86/30.45 new_esEs38(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.86/30.45 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Float) -> new_ltEs7(yvy1650, yvy1660) 52.86/30.45 new_ltEs15(Right(yvy1650), Left(yvy1660), bbd, bbe) -> False 52.86/30.45 new_esEs8(yvy400, yvy300, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs22(yvy400, yvy300, dgb, dgc, dgd) 52.86/30.45 new_esEs11(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.86/30.45 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 52.86/30.45 new_esEs8(yvy400, yvy300, app(ty_[], dhc)) -> new_esEs18(yvy400, yvy300, dhc) 52.86/30.45 new_compare18(GT, GT) -> EQ 52.86/30.45 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Char) -> new_ltEs8(yvy1650, yvy1660) 52.86/30.45 new_esEs33(yvy1650, yvy1660, ty_Double) -> new_esEs27(yvy1650, yvy1660) 52.86/30.45 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.86/30.45 new_esEs8(yvy400, yvy300, app(ty_Maybe, dge)) -> new_esEs24(yvy400, yvy300, dge) 52.86/30.45 new_ltEs23(yvy1651, yvy1661, ty_Double) -> new_ltEs17(yvy1651, yvy1661) 52.86/30.45 new_esEs29(yvy190, yvy192, app(ty_Maybe, gf)) -> new_esEs24(yvy190, yvy192, gf) 52.86/30.45 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.45 new_esEs23(True, True) -> True 52.86/30.45 new_lt22(yvy154, yvy157, app(ty_Ratio, dad)) -> new_lt19(yvy154, yvy157, dad) 52.86/30.45 new_lt23(yvy155, yvy158, app(app(app(ty_@3, dah), dba), dbb)) -> new_lt13(yvy155, yvy158, dah, dba, dbb) 52.86/30.45 new_esEs39(yvy155, yvy158, ty_Int) -> new_esEs17(yvy155, yvy158) 52.86/30.45 new_ltEs19(yvy179, yvy180, app(ty_Maybe, de)) -> new_ltEs14(yvy179, yvy180, de) 52.86/30.45 new_ltEs5(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), bah, bba, bbb) -> new_pePe(new_lt5(yvy1650, yvy1660, bah), new_asAs(new_esEs14(yvy1650, yvy1660, bah), new_pePe(new_lt6(yvy1651, yvy1661, bba), new_asAs(new_esEs13(yvy1651, yvy1661, bba), new_ltEs6(yvy1652, yvy1662, bbb))))) 52.86/30.45 new_esEs29(yvy190, yvy192, app(ty_[], fh)) -> new_esEs18(yvy190, yvy192, fh) 52.86/30.45 new_lt6(yvy1651, yvy1661, ty_Bool) -> new_lt14(yvy1651, yvy1661) 52.86/30.45 new_splitGT10(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bbg, bbh) -> new_mkVBalBranch0(yvy45, yvy46, new_splitGT0(yvy48, yvy50, bbg, bbh), yvy49, bbg, bbh) 52.86/30.45 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_@0) -> new_ltEs4(yvy1650, yvy1660) 52.86/30.45 new_esEs7(yvy401, yvy301, ty_Char) -> new_esEs16(yvy401, yvy301) 52.86/30.45 new_esEs9(yvy400, yvy300, app(app(ty_Either, gfb), gfc)) -> new_esEs25(yvy400, yvy300, gfb, gfc) 52.86/30.45 new_compare30(yvy400, yvy300, ty_Int) -> new_compare8(yvy400, yvy300) 52.86/30.45 new_esEs40(yvy154, yvy157, ty_Char) -> new_esEs16(yvy154, yvy157) 52.86/30.45 new_esEs29(yvy190, yvy192, app(ty_Ratio, ha)) -> new_esEs28(yvy190, yvy192, ha) 52.86/30.45 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(app(ty_Either, efe), eff)) -> new_esEs25(yvy4000, yvy3000, efe, eff) 52.86/30.45 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(app(ty_Either, cge), cgf)) -> new_ltEs15(yvy1650, yvy1660, cge, cgf) 52.86/30.45 new_esEs6(yvy402, yvy302, app(ty_Maybe, dea)) -> new_esEs24(yvy402, yvy302, dea) 52.86/30.45 new_esEs39(yvy155, yvy158, app(ty_Ratio, dbf)) -> new_esEs28(yvy155, yvy158, dbf) 52.86/30.45 new_esEs4(yvy401, yvy301, ty_Bool) -> new_esEs23(yvy401, yvy301) 52.86/30.45 new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, EmptyFM, yvy544, yvy90, False, h, ba) -> error([]) 52.86/30.45 new_lt8(yvy40, yvy30) -> new_esEs12(new_compare19(yvy40, yvy30)) 52.86/30.45 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Bool, bgg) -> new_esEs23(yvy4000, yvy3000) 52.86/30.45 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 52.86/30.45 new_esEs19(@0, @0) -> True 52.86/30.45 new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT 52.86/30.45 new_primMulInt(Pos(yvy4000), Pos(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) 52.86/30.45 new_ltEs6(yvy1652, yvy1662, ty_Float) -> new_ltEs7(yvy1652, yvy1662) 52.86/30.45 new_ltEs15(Left(yvy1650), Right(yvy1660), bbd, bbe) -> True 52.86/30.45 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Double, bbe) -> new_ltEs17(yvy1650, yvy1660) 52.86/30.45 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(app(ty_@2, efb), efc)) -> new_esEs21(yvy4000, yvy3000, efb, efc) 52.86/30.45 new_lt22(yvy154, yvy157, ty_Integer) -> new_lt11(yvy154, yvy157) 52.86/30.45 new_esEs7(yvy401, yvy301, app(app(ty_Either, dfg), dfh)) -> new_esEs25(yvy401, yvy301, dfg, dfh) 52.86/30.45 new_gt14(yvy35, yvy30, ty_Int) -> new_gt4(yvy35, yvy30) 52.86/30.45 new_primMulNat0(Succ(yvy40000), Zero) -> Zero 52.86/30.45 new_primMulNat0(Zero, Succ(yvy30100)) -> Zero 52.86/30.45 new_lt21(yvy1650, yvy1660, ty_Bool) -> new_lt14(yvy1650, yvy1660) 52.86/30.45 new_esEs7(yvy401, yvy301, ty_Bool) -> new_esEs23(yvy401, yvy301) 52.86/30.45 new_lt15(yvy40, yvy30, bh) -> new_esEs12(new_compare29(yvy40, yvy30, bh)) 52.86/30.45 new_lt14(yvy40, yvy30) -> new_esEs12(new_compare7(yvy40, yvy30)) 52.86/30.45 new_esEs11(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.86/30.45 new_lt23(yvy155, yvy158, ty_Ordering) -> new_lt17(yvy155, yvy158) 52.86/30.45 new_lt20(yvy190, yvy192, app(ty_Ratio, ha)) -> new_lt19(yvy190, yvy192, ha) 52.86/30.45 new_esEs38(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.45 new_esEs31(yvy4001, yvy3001, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs22(yvy4001, yvy3001, ffd, ffe, fff) 52.86/30.45 new_esEs8(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.86/30.45 new_esEs40(yvy154, yvy157, ty_Bool) -> new_esEs23(yvy154, yvy157) 52.86/30.45 new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) 52.86/30.45 new_primPlusNat0(Zero, Succ(yvy21000)) -> Succ(yvy21000) 52.86/30.45 new_ltEs22(yvy172, yvy173, ty_Float) -> new_ltEs7(yvy172, yvy173) 52.86/30.45 new_esEs26(EQ, GT) -> False 52.86/30.45 new_esEs26(GT, EQ) -> False 52.86/30.45 new_lt6(yvy1651, yvy1661, ty_Float) -> new_lt7(yvy1651, yvy1661) 52.86/30.45 new_esEs30(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.86/30.45 new_esEs31(yvy4001, yvy3001, app(ty_Maybe, ffg)) -> new_esEs24(yvy4001, yvy3001, ffg) 52.86/30.45 new_esEs10(yvy400, yvy300, app(app(ty_Either, bch), bda)) -> new_esEs25(yvy400, yvy300, bch, bda) 52.86/30.45 new_esEs31(yvy4001, yvy3001, app(ty_[], fge)) -> new_esEs18(yvy4001, yvy3001, fge) 52.86/30.45 new_lt6(yvy1651, yvy1661, ty_Integer) -> new_lt11(yvy1651, yvy1661) 52.86/30.45 new_esEs5(yvy400, yvy300, app(ty_Ratio, bee)) -> new_esEs28(yvy400, yvy300, bee) 52.86/30.45 new_esEs33(yvy1650, yvy1660, app(app(ty_Either, gag), gah)) -> new_esEs25(yvy1650, yvy1660, gag, gah) 52.86/30.45 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Bool) -> new_ltEs13(yvy1650, yvy1660) 52.86/30.45 new_esEs7(yvy401, yvy301, app(app(ty_@2, dfd), dfe)) -> new_esEs21(yvy401, yvy301, dfd, dfe) 52.86/30.45 new_esEs31(yvy4001, yvy3001, ty_Ordering) -> new_esEs26(yvy4001, yvy3001) 52.86/30.45 new_esEs23(False, False) -> True 52.86/30.45 new_compare9(Double(yvy400, Pos(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.86/30.45 new_compare9(Double(yvy400, Neg(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.86/30.45 new_gt(yvy81, yvy76, ty_Int) -> new_gt4(yvy81, yvy76) 52.86/30.45 new_lt25(yvy40, yvy30, ty_@0) -> new_lt4(yvy40, yvy30) 52.86/30.45 new_splitGT10(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, False, bbg, bbh) -> yvy49 52.86/30.45 new_esEs17(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 52.86/30.45 new_esEs12(LT) -> True 52.86/30.45 new_esEs13(yvy1651, yvy1661, ty_Double) -> new_esEs27(yvy1651, yvy1661) 52.86/30.45 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.86/30.45 new_esEs6(yvy402, yvy302, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs22(yvy402, yvy302, ddf, ddg, ddh) 52.86/30.45 new_esEs32(yvy4000, yvy3000, app(app(ty_Either, fhe), fhf)) -> new_esEs25(yvy4000, yvy3000, fhe, fhf) 52.86/30.45 new_esEs32(yvy4000, yvy3000, app(ty_Maybe, fha)) -> new_esEs24(yvy4000, yvy3000, fha) 52.86/30.45 new_esEs11(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.86/30.45 new_lt25(yvy40, yvy30, ty_Ordering) -> new_lt17(yvy40, yvy30) 52.86/30.45 new_lt20(yvy190, yvy192, ty_Float) -> new_lt7(yvy190, yvy192) 52.86/30.45 new_lt25(yvy40, yvy30, ty_Int) -> new_lt9(yvy40, yvy30) 52.86/30.45 new_gt4(yvy40, yvy30) -> new_esEs41(new_compare8(yvy40, yvy30)) 52.86/30.45 new_ltEs12(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), baf, bag) -> new_pePe(new_lt21(yvy1650, yvy1660, baf), new_asAs(new_esEs33(yvy1650, yvy1660, baf), new_ltEs23(yvy1651, yvy1661, bag))) 52.86/30.45 new_esEs5(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.86/30.45 new_lt22(yvy154, yvy157, ty_Bool) -> new_lt14(yvy154, yvy157) 52.86/30.45 new_lt21(yvy1650, yvy1660, ty_Integer) -> new_lt11(yvy1650, yvy1660) 52.86/30.45 new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, ccg, cch, cda) -> LT 52.86/30.45 new_esEs33(yvy1650, yvy1660, ty_Float) -> new_esEs15(yvy1650, yvy1660) 52.86/30.45 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Float, bbe) -> new_ltEs7(yvy1650, yvy1660) 52.86/30.45 new_esEs6(yvy402, yvy302, app(ty_[], deg)) -> new_esEs18(yvy402, yvy302, deg) 52.86/30.45 new_esEs5(yvy400, yvy300, app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs22(yvy400, yvy300, bfh, bga, bgb) 52.86/30.45 new_ltEs19(yvy179, yvy180, ty_Ordering) -> new_ltEs16(yvy179, yvy180) 52.86/30.45 new_lt10(yvy40, yvy30, bb) -> new_esEs12(new_compare0(yvy40, yvy30, bb)) 52.86/30.45 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(app(ty_@3, ceg), ceh), cfa), bbe) -> new_ltEs5(yvy1650, yvy1660, ceg, ceh, cfa) 52.86/30.45 new_esEs37(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.86/30.45 new_ltEs6(yvy1652, yvy1662, app(app(ty_Either, ecg), ech)) -> new_ltEs15(yvy1652, yvy1662, ecg, ech) 52.86/30.45 new_esEs4(yvy401, yvy301, ty_Integer) -> new_esEs20(yvy401, yvy301) 52.86/30.45 new_esEs30(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.86/30.45 new_esEs29(yvy190, yvy192, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs22(yvy190, yvy192, gc, gd, ge) 52.86/30.45 new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, EmptyFM, False, h, ba) -> error([]) 52.86/30.45 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.45 new_compare16(Left(yvy400), Left(yvy300), ca, cb) -> new_compare28(yvy400, yvy300, new_esEs10(yvy400, yvy300, ca), ca, cb) 52.86/30.45 new_mkBalBranch(yvy50, yvy51, yvy90, yvy54, h, ba) -> new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, new_lt9(new_primPlusInt(new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba), new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba)), Pos(Succ(Succ(Zero)))), h, ba) 52.86/30.45 new_esEs40(yvy154, yvy157, ty_Integer) -> new_esEs20(yvy154, yvy157) 52.86/30.45 new_esEs14(yvy1650, yvy1660, ty_Int) -> new_esEs17(yvy1650, yvy1660) 52.86/30.45 new_ltEs20(yvy191, yvy193, app(app(ty_Either, baa), bab)) -> new_ltEs15(yvy191, yvy193, baa, bab) 52.86/30.45 new_esEs32(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.45 new_lt26(yvy20, yvy15, app(app(ty_@2, gch), gda)) -> new_lt12(yvy20, yvy15, gch, gda) 52.86/30.45 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Float, bgg) -> new_esEs15(yvy4000, yvy3000) 52.86/30.45 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(ty_[], cff)) -> new_ltEs10(yvy1650, yvy1660, cff) 52.86/30.45 new_esEs31(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.86/30.45 new_esEs13(yvy1651, yvy1661, app(ty_Ratio, ebg)) -> new_esEs28(yvy1651, yvy1661, ebg) 52.86/30.45 new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy35, ea, eb) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, yvy35, ea, eb) 52.86/30.45 new_lt6(yvy1651, yvy1661, app(ty_Ratio, ebg)) -> new_lt19(yvy1651, yvy1661, ebg) 52.86/30.45 new_esEs12(GT) -> False 52.86/30.45 new_gt(yvy81, yvy76, ty_@0) -> new_gt6(yvy81, yvy76) 52.86/30.45 new_esEs12(EQ) -> False 52.86/30.45 new_esEs37(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) 52.86/30.45 new_esEs37(yvy4001, yvy3001, app(app(ty_Either, cbb), cbc)) -> new_esEs25(yvy4001, yvy3001, cbb, cbc) 52.86/30.45 new_addToFM_C10(yvy106, yvy107, yvy108, yvy109, yvy110, yvy111, yvy112, True, dda, ddb) -> new_mkBalBranch(yvy106, yvy107, yvy109, new_addToFM_C0(yvy110, yvy111, yvy112, dda, ddb), dda, ddb) 52.86/30.45 new_esEs37(yvy4001, yvy3001, ty_Bool) -> new_esEs23(yvy4001, yvy3001) 52.86/30.45 new_esEs10(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.86/30.45 new_compare19(Char(yvy400), Char(yvy300)) -> new_primCmpNat0(yvy400, yvy300) 52.86/30.45 new_lt22(yvy154, yvy157, ty_Ordering) -> new_lt17(yvy154, yvy157) 52.86/30.45 new_gt15(yvy40, yvy30, ty_Ordering) -> new_gt12(yvy40, yvy30) 52.86/30.45 new_compare11(yvy247, yvy248, yvy249, yvy250, False, yvy252, gea, geb) -> new_compare110(yvy247, yvy248, yvy249, yvy250, yvy252, gea, geb) 52.86/30.45 new_lt6(yvy1651, yvy1661, ty_@0) -> new_lt4(yvy1651, yvy1661) 52.86/30.45 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.45 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Char) -> new_ltEs8(yvy1650, yvy1660) 52.86/30.45 new_esEs9(yvy400, yvy300, app(ty_[], gfd)) -> new_esEs18(yvy400, yvy300, gfd) 52.86/30.45 new_esEs36(yvy4002, yvy3002, app(ty_Maybe, bhd)) -> new_esEs24(yvy4002, yvy3002, bhd) 52.86/30.45 new_lt25(yvy40, yvy30, app(ty_[], bb)) -> new_lt10(yvy40, yvy30, bb) 52.86/30.45 new_primPlusInt(Neg(yvy9020), Neg(yvy2100)) -> Neg(new_primPlusNat0(yvy9020, yvy2100)) 52.86/30.45 new_esEs29(yvy190, yvy192, ty_Char) -> new_esEs16(yvy190, yvy192) 52.86/30.45 new_esEs38(yvy4000, yvy3000, app(ty_Ratio, ccc)) -> new_esEs28(yvy4000, yvy3000, ccc) 52.86/30.45 new_gt14(yvy35, yvy30, ty_@0) -> new_gt6(yvy35, yvy30) 52.86/30.45 new_esEs37(yvy4001, yvy3001, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs22(yvy4001, yvy3001, cac, cad, cae) 52.86/30.45 new_esEs32(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.86/30.45 new_lt5(yvy1650, yvy1660, app(app(ty_Either, eac), ead)) -> new_lt16(yvy1650, yvy1660, eac, ead) 52.86/30.45 new_lt5(yvy1650, yvy1660, ty_Bool) -> new_lt14(yvy1650, yvy1660) 52.86/30.45 new_compare18(GT, LT) -> GT 52.86/30.45 new_gt14(yvy35, yvy30, app(ty_Maybe, fa)) -> new_gt10(yvy35, yvy30, fa) 52.86/30.45 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Int) -> new_ltEs9(yvy1650, yvy1660) 52.86/30.45 new_mkBranch(yvy309, yvy310, yvy311, yvy312, yvy313, yvy314, yvy315, yvy316, yvy317, edb, edc) -> new_mkBranchResult(yvy310, yvy311, yvy312, new_mkBranch0(yvy313, yvy314, yvy315, yvy316, yvy317, edb, edc), edb, edc) 52.86/30.45 new_gt10(yvy40, yvy30, bh) -> new_esEs41(new_compare29(yvy40, yvy30, bh)) 52.86/30.45 new_compare18(EQ, LT) -> GT 52.86/30.45 new_esEs11(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.86/30.45 new_lt5(yvy1650, yvy1660, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_lt13(yvy1650, yvy1660, dhg, dhh, eaa) 52.86/30.45 new_esEs10(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.86/30.45 new_compare0([], :(yvy300, yvy301), bb) -> LT 52.86/30.45 new_compare10(yvy237, yvy238, False, fcb, fcc) -> GT 52.86/30.45 new_esEs6(yvy402, yvy302, ty_Ordering) -> new_esEs26(yvy402, yvy302) 52.86/30.45 new_compare30(yvy400, yvy300, ty_@0) -> new_compare5(yvy400, yvy300) 52.86/30.45 new_esEs33(yvy1650, yvy1660, ty_Ordering) -> new_esEs26(yvy1650, yvy1660) 52.86/30.45 new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkBranch1(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, yvy60, yvy61, yvy62, yvy63, yvy64, yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 52.86/30.45 new_esEs16(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 52.86/30.45 new_esEs5(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.86/30.45 new_compare30(yvy400, yvy300, ty_Ordering) -> new_compare18(yvy400, yvy300) 52.86/30.45 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 52.86/30.45 new_lt21(yvy1650, yvy1660, ty_Char) -> new_lt8(yvy1650, yvy1660) 52.86/30.45 new_ltEs23(yvy1651, yvy1661, app(app(ty_@2, gbc), gbd)) -> new_ltEs12(yvy1651, yvy1661, gbc, gbd) 52.86/30.45 new_gt15(yvy40, yvy30, ty_Float) -> new_gt2(yvy40, yvy30) 52.86/30.45 new_lt24(yvy40, yvy50, ty_Float) -> new_lt7(yvy40, yvy50) 52.86/30.45 new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) 52.86/30.45 new_gt6(yvy40, yvy30) -> new_esEs41(new_compare5(yvy40, yvy30)) 52.86/30.45 new_lt20(yvy190, yvy192, app(ty_[], fh)) -> new_lt10(yvy190, yvy192, fh) 52.86/30.45 new_esEs18(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bgh) -> new_asAs(new_esEs30(yvy4000, yvy3000, bgh), new_esEs18(yvy4001, yvy3001, bgh)) 52.86/30.45 new_primCompAux00(yvy133, EQ) -> yvy133 52.86/30.45 new_lt5(yvy1650, yvy1660, ty_Ordering) -> new_lt17(yvy1650, yvy1660) 52.86/30.45 new_mkBalBranch6MkBalBranch4(yvy50, yvy51, EmptyFM, yvy90, True, h, ba) -> error([]) 52.86/30.45 new_compare7(False, True) -> LT 52.86/30.45 new_addToFM(yvy5, yvy40, yvy41, h, ba) -> new_addToFM_C0(yvy5, yvy40, yvy41, h, ba) 52.86/30.45 new_esEs6(yvy402, yvy302, app(app(ty_Either, dee), def)) -> new_esEs25(yvy402, yvy302, dee, def) 52.86/30.45 new_esEs33(yvy1650, yvy1660, ty_Bool) -> new_esEs23(yvy1650, yvy1660) 52.86/30.45 new_esEs33(yvy1650, yvy1660, app(app(app(ty_@3, gac), gad), gae)) -> new_esEs22(yvy1650, yvy1660, gac, gad, gae) 52.86/30.45 new_gt(yvy81, yvy76, app(app(ty_Either, fbe), fbf)) -> new_gt11(yvy81, yvy76, fbe, fbf) 52.86/30.45 new_gt(yvy81, yvy76, app(app(app(ty_@3, fba), fbb), fbc)) -> new_gt8(yvy81, yvy76, fba, fbb, fbc) 52.86/30.45 new_gt14(yvy35, yvy30, ty_Bool) -> new_gt9(yvy35, yvy30) 52.86/30.45 new_esEs6(yvy402, yvy302, ty_@0) -> new_esEs19(yvy402, yvy302) 52.86/30.45 new_esEs35(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.45 new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) 52.86/30.45 new_lt26(yvy20, yvy15, ty_Char) -> new_lt8(yvy20, yvy15) 52.86/30.45 new_esEs29(yvy190, yvy192, ty_Int) -> new_esEs17(yvy190, yvy192) 52.86/30.45 new_compare30(yvy400, yvy300, ty_Integer) -> new_compare14(yvy400, yvy300) 52.86/30.45 new_lt23(yvy155, yvy158, ty_Float) -> new_lt7(yvy155, yvy158) 52.86/30.45 new_lt21(yvy1650, yvy1660, app(ty_[], fhh)) -> new_lt10(yvy1650, yvy1660, fhh) 52.86/30.45 new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) 52.86/30.45 new_esEs37(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.86/30.45 new_esEs9(yvy400, yvy300, app(app(ty_@2, geg), geh)) -> new_esEs21(yvy400, yvy300, geg, geh) 52.86/30.45 new_esEs4(yvy401, yvy301, app(ty_Maybe, bfa)) -> new_esEs24(yvy401, yvy301, bfa) 52.86/30.45 new_splitGT20(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, gce, gcf) -> new_splitGT0(yvy19, yvy20, gce, gcf) 52.86/30.45 new_gt15(yvy40, yvy30, app(app(app(ty_@3, be), bf), bg)) -> new_gt8(yvy40, yvy30, be, bf, bg) 52.86/30.45 new_gt15(yvy40, yvy30, app(app(ty_Either, ca), cb)) -> new_gt11(yvy40, yvy30, ca, cb) 52.86/30.45 new_gt14(yvy35, yvy30, ty_Integer) -> new_gt7(yvy35, yvy30) 52.86/30.45 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Ordering, bbe) -> new_ltEs16(yvy1650, yvy1660) 52.86/30.45 new_esEs27(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs17(new_sr0(yvy4000, yvy3001), new_sr0(yvy4001, yvy3000)) 52.86/30.45 new_esEs31(yvy4001, yvy3001, ty_Char) -> new_esEs16(yvy4001, yvy3001) 52.86/30.45 new_esEs32(yvy4000, yvy3000, app(app(app(ty_@3, fgf), fgg), fgh)) -> new_esEs22(yvy4000, yvy3000, fgf, fgg, fgh) 52.86/30.45 new_ltEs11(yvy165, yvy166) -> new_fsEs(new_compare14(yvy165, yvy166)) 52.86/30.45 new_esEs5(yvy400, yvy300, app(app(ty_Either, bgf), bgg)) -> new_esEs25(yvy400, yvy300, bgf, bgg) 52.86/30.45 new_ltEs13(False, True) -> True 52.86/30.45 new_ltEs13(False, False) -> True 52.86/30.45 new_gt(yvy81, yvy76, ty_Integer) -> new_gt7(yvy81, yvy76) 52.86/30.45 new_esEs32(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.86/30.45 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_Ratio, ffc)) -> new_ltEs18(yvy1650, yvy1660, ffc) 52.86/30.45 new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) 52.86/30.45 new_esEs36(yvy4002, yvy3002, ty_Integer) -> new_esEs20(yvy4002, yvy3002) 52.86/30.45 new_ltEs22(yvy172, yvy173, app(ty_[], fch)) -> new_ltEs10(yvy172, yvy173, fch) 52.86/30.45 new_esEs13(yvy1651, yvy1661, ty_Float) -> new_esEs15(yvy1651, yvy1661) 52.86/30.45 new_lt21(yvy1650, yvy1660, ty_Int) -> new_lt9(yvy1650, yvy1660) 52.86/30.45 new_gt14(yvy35, yvy30, app(app(app(ty_@3, ef), eg), eh)) -> new_gt8(yvy35, yvy30, ef, eg, eh) 52.86/30.45 new_esEs5(yvy400, yvy300, app(ty_Maybe, bgc)) -> new_esEs24(yvy400, yvy300, bgc) 52.86/30.45 new_gt15(yvy40, yvy30, ty_Integer) -> new_gt7(yvy40, yvy30) 52.86/30.45 new_compare30(yvy400, yvy300, ty_Bool) -> new_compare7(yvy400, yvy300) 52.86/30.45 new_esEs6(yvy402, yvy302, ty_Float) -> new_esEs15(yvy402, yvy302) 52.86/30.45 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) 52.86/30.45 new_gt14(yvy35, yvy30, ty_Float) -> new_gt2(yvy35, yvy30) 52.86/30.45 new_lt20(yvy190, yvy192, ty_Char) -> new_lt8(yvy190, yvy192) 52.86/30.45 new_ltEs22(yvy172, yvy173, app(app(ty_@2, fda), fdb)) -> new_ltEs12(yvy172, yvy173, fda, fdb) 52.86/30.45 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(app(ty_@2, cfg), cfh)) -> new_ltEs12(yvy1650, yvy1660, cfg, cfh) 52.86/30.45 new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, EmptyFM, True, h, ba) -> error([]) 52.86/30.45 new_compare13(Float(yvy400, Neg(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.86/30.45 new_lt6(yvy1651, yvy1661, ty_Ordering) -> new_lt17(yvy1651, yvy1661) 52.86/30.45 new_compare29(Just(yvy400), Nothing, bh) -> GT 52.86/30.45 new_lt22(yvy154, yvy157, app(app(ty_Either, dab), dac)) -> new_lt16(yvy154, yvy157, dab, dac) 52.86/30.45 new_esEs14(yvy1650, yvy1660, ty_Char) -> new_esEs16(yvy1650, yvy1660) 52.86/30.45 new_esEs11(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.86/30.45 new_esEs31(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.86/30.45 new_lt22(yvy154, yvy157, ty_Int) -> new_lt9(yvy154, yvy157) 52.86/30.45 new_lt23(yvy155, yvy158, ty_@0) -> new_lt4(yvy155, yvy158) 52.86/30.45 new_lt25(yvy40, yvy30, ty_Char) -> new_lt8(yvy40, yvy30) 52.86/30.45 new_ltEs14(Just(yvy1650), Nothing, bbc) -> False 52.86/30.45 new_ltEs14(Nothing, Nothing, bbc) -> True 52.86/30.45 new_gt15(yvy40, yvy30, ty_Bool) -> new_gt9(yvy40, yvy30) 52.86/30.45 new_esEs41(GT) -> True 52.86/30.45 new_esEs11(yvy400, yvy300, app(ty_Maybe, bdf)) -> new_esEs24(yvy400, yvy300, bdf) 52.86/30.45 new_mkBranch0(yvy313, yvy314, yvy315, yvy316, yvy317, edb, edc) -> new_mkBranchResult(yvy314, yvy315, yvy316, yvy317, edb, edc) 52.86/30.45 new_lt21(yvy1650, yvy1660, app(ty_Maybe, gaf)) -> new_lt15(yvy1650, yvy1660, gaf) 52.86/30.45 new_compare30(yvy400, yvy300, app(ty_[], cdb)) -> new_compare0(yvy400, yvy300, cdb) 52.86/30.45 new_esEs5(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.86/30.45 new_esEs36(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) 52.86/30.45 new_gt15(yvy40, yvy30, app(ty_Ratio, cc)) -> new_gt13(yvy40, yvy30, cc) 52.86/30.45 new_esEs38(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.86/30.45 new_gt(yvy81, yvy76, ty_Bool) -> new_gt9(yvy81, yvy76) 52.86/30.45 new_gt14(yvy35, yvy30, app(app(ty_Either, fb), fc)) -> new_gt11(yvy35, yvy30, fb, fc) 52.86/30.45 new_esEs11(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.86/30.45 new_lt5(yvy1650, yvy1660, ty_Char) -> new_lt8(yvy1650, yvy1660) 52.86/30.45 new_lt21(yvy1650, yvy1660, ty_Ordering) -> new_lt17(yvy1650, yvy1660) 52.86/30.45 new_lt5(yvy1650, yvy1660, app(ty_Maybe, eab)) -> new_lt15(yvy1650, yvy1660, eab) 52.86/30.45 new_lt5(yvy1650, yvy1660, ty_@0) -> new_lt4(yvy1650, yvy1660) 52.86/30.45 new_lt22(yvy154, yvy157, ty_@0) -> new_lt4(yvy154, yvy157) 52.86/30.45 new_ltEs24(yvy156, yvy159, app(app(ty_@2, dbh), dca)) -> new_ltEs12(yvy156, yvy159, dbh, dca) 52.86/30.45 new_sizeFM0(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 52.86/30.45 new_lt22(yvy154, yvy157, ty_Char) -> new_lt8(yvy154, yvy157) 52.86/30.45 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.86/30.45 new_compare18(EQ, EQ) -> EQ 52.86/30.45 new_esEs37(yvy4001, yvy3001, app(ty_Ratio, cba)) -> new_esEs28(yvy4001, yvy3001, cba) 52.86/30.45 new_lt26(yvy20, yvy15, app(ty_[], gcg)) -> new_lt10(yvy20, yvy15, gcg) 52.86/30.45 new_esEs39(yvy155, yvy158, ty_Float) -> new_esEs15(yvy155, yvy158) 52.86/30.45 new_gt15(yvy40, yvy30, ty_@0) -> new_gt6(yvy40, yvy30) 52.86/30.45 new_esEs14(yvy1650, yvy1660, app(ty_Ratio, eae)) -> new_esEs28(yvy1650, yvy1660, eae) 52.86/30.45 new_gt14(yvy35, yvy30, app(ty_Ratio, fd)) -> new_gt13(yvy35, yvy30, fd) 52.86/30.45 new_esEs13(yvy1651, yvy1661, ty_Bool) -> new_esEs23(yvy1651, yvy1661) 52.86/30.45 new_esEs32(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.45 new_esEs33(yvy1650, yvy1660, ty_Integer) -> new_esEs20(yvy1650, yvy1660) 52.86/30.45 new_ltEs8(yvy165, yvy166) -> new_fsEs(new_compare19(yvy165, yvy166)) 52.86/30.45 new_esEs13(yvy1651, yvy1661, app(app(ty_Either, ebe), ebf)) -> new_esEs25(yvy1651, yvy1661, ebe, ebf) 52.86/30.45 new_compare18(LT, EQ) -> LT 52.86/30.45 new_lt20(yvy190, yvy192, ty_@0) -> new_lt4(yvy190, yvy192) 52.86/30.45 new_esEs13(yvy1651, yvy1661, app(app(app(ty_@3, eba), ebb), ebc)) -> new_esEs22(yvy1651, yvy1661, eba, ebb, ebc) 52.86/30.45 new_esEs40(yvy154, yvy157, ty_Ordering) -> new_esEs26(yvy154, yvy157) 52.86/30.45 new_esEs38(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.86/30.45 new_compare0(:(yvy400, yvy401), [], bb) -> GT 52.86/30.45 new_esEs36(yvy4002, yvy3002, ty_Bool) -> new_esEs23(yvy4002, yvy3002) 52.86/30.45 new_esEs36(yvy4002, yvy3002, app(app(ty_Either, bhh), caa)) -> new_esEs25(yvy4002, yvy3002, bhh, caa) 52.86/30.45 new_esEs21(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bgd, bge) -> new_asAs(new_esEs32(yvy4000, yvy3000, bgd), new_esEs31(yvy4001, yvy3001, bge)) 52.86/30.45 new_lt17(yvy40, yvy30) -> new_esEs12(new_compare18(yvy40, yvy30)) 52.86/30.45 new_primPlusNat0(Succ(yvy90200), Succ(yvy21000)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21000))) 52.86/30.45 new_gt14(yvy35, yvy30, ty_Ordering) -> new_gt12(yvy35, yvy30) 52.86/30.45 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Bool, bbe) -> new_ltEs13(yvy1650, yvy1660) 52.86/30.45 new_mkBalBranch6MkBalBranch4(yvy50, yvy51, Branch(yvy540, yvy541, yvy542, yvy543, yvy544), yvy90, True, h, ba) -> new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, yvy90, new_lt9(new_sizeFM0(yvy543, h, ba), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM0(yvy544, h, ba))), h, ba) 52.86/30.45 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Int, bbe) -> new_ltEs9(yvy1650, yvy1660) 52.86/30.45 new_compare30(yvy400, yvy300, app(app(ty_Either, cea), ceb)) -> new_compare16(yvy400, yvy300, cea, ceb) 52.86/30.45 new_gt(yvy81, yvy76, ty_Float) -> new_gt2(yvy81, yvy76) 52.86/30.45 new_esEs4(yvy401, yvy301, app(app(ty_Either, bfe), bff)) -> new_esEs25(yvy401, yvy301, bfe, bff) 52.86/30.45 new_esEs37(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) 52.86/30.45 new_esEs40(yvy154, yvy157, ty_Float) -> new_esEs15(yvy154, yvy157) 52.86/30.45 new_lt24(yvy40, yvy50, ty_Char) -> new_lt8(yvy40, yvy50) 52.86/30.45 new_esEs13(yvy1651, yvy1661, ty_Ordering) -> new_esEs26(yvy1651, yvy1661) 52.86/30.45 new_compare25(yvy179, yvy180, False, cd, ce) -> new_compare10(yvy179, yvy180, new_ltEs19(yvy179, yvy180, ce), cd, ce) 52.86/30.45 new_lt20(yvy190, yvy192, ty_Int) -> new_lt9(yvy190, yvy192) 52.86/30.45 new_esEs35(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.45 new_compare110(yvy247, yvy248, yvy249, yvy250, False, gea, geb) -> GT 52.86/30.45 new_gt(yvy81, yvy76, ty_Ordering) -> new_gt12(yvy81, yvy76) 52.86/30.45 new_esEs36(yvy4002, yvy3002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs22(yvy4002, yvy3002, bha, bhb, bhc) 52.86/30.45 new_esEs14(yvy1650, yvy1660, ty_Float) -> new_esEs15(yvy1650, yvy1660) 52.86/30.45 new_compare29(Nothing, Just(yvy300), bh) -> LT 52.86/30.45 new_esEs31(yvy4001, yvy3001, ty_Double) -> new_esEs27(yvy4001, yvy3001) 52.86/30.45 new_esEs10(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.86/30.45 new_lt20(yvy190, yvy192, app(ty_Maybe, gf)) -> new_lt15(yvy190, yvy192, gf) 52.86/30.45 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Char, bbe) -> new_ltEs8(yvy1650, yvy1660) 52.86/30.45 new_lt6(yvy1651, yvy1661, app(app(ty_Either, ebe), ebf)) -> new_lt16(yvy1651, yvy1661, ebe, ebf) 52.86/30.45 new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, yvy90, True, h, ba) -> new_mkBranchResult(yvy540, yvy541, new_mkBranchResult(yvy50, yvy51, yvy90, yvy543, h, ba), yvy544, h, ba) 52.86/30.45 new_lt5(yvy1650, yvy1660, ty_Int) -> new_lt9(yvy1650, yvy1660) 52.86/30.45 new_esEs30(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.45 new_esEs11(yvy400, yvy300, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs22(yvy400, yvy300, bdc, bdd, bde) 52.86/30.45 new_esEs33(yvy1650, yvy1660, app(ty_Ratio, gba)) -> new_esEs28(yvy1650, yvy1660, gba) 52.86/30.45 new_compare0(:(yvy400, yvy401), :(yvy300, yvy301), bb) -> new_primCompAux0(yvy400, yvy300, new_compare0(yvy401, yvy301, bb), bb) 52.86/30.45 new_esEs10(yvy400, yvy300, app(ty_Ratio, bcg)) -> new_esEs28(yvy400, yvy300, bcg) 52.86/30.45 new_lt21(yvy1650, yvy1660, app(app(ty_Either, gag), gah)) -> new_lt16(yvy1650, yvy1660, gag, gah) 52.86/30.45 new_gt9(yvy40, yvy30) -> new_esEs41(new_compare7(yvy40, yvy30)) 52.86/30.45 new_ltEs13(True, False) -> False 52.86/30.45 new_esEs36(yvy4002, yvy3002, ty_Char) -> new_esEs16(yvy4002, yvy3002) 52.86/30.45 new_esEs36(yvy4002, yvy3002, ty_Ordering) -> new_esEs26(yvy4002, yvy3002) 52.86/30.45 new_esEs13(yvy1651, yvy1661, ty_Char) -> new_esEs16(yvy1651, yvy1661) 52.86/30.45 new_compare29(Just(yvy400), Just(yvy300), bh) -> new_compare27(yvy400, yvy300, new_esEs9(yvy400, yvy300, bh), bh) 52.86/30.45 new_compare16(Right(yvy400), Right(yvy300), ca, cb) -> new_compare25(yvy400, yvy300, new_esEs11(yvy400, yvy300, cb), ca, cb) 52.86/30.45 new_esEs11(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.86/30.45 new_esEs40(yvy154, yvy157, ty_@0) -> new_esEs19(yvy154, yvy157) 52.86/30.45 new_compare16(Right(yvy400), Left(yvy300), ca, cb) -> GT 52.86/30.45 new_esEs40(yvy154, yvy157, app(app(ty_Either, dab), dac)) -> new_esEs25(yvy154, yvy157, dab, dac) 52.86/30.45 new_ltEs20(yvy191, yvy193, app(ty_[], hb)) -> new_ltEs10(yvy191, yvy193, hb) 52.86/30.45 new_compare30(yvy400, yvy300, app(app(app(ty_@3, cde), cdf), cdg)) -> new_compare31(yvy400, yvy300, cde, cdf, cdg) 52.86/30.45 new_splitGT20(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, gce, gcf) -> new_splitGT10(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_lt26(yvy20, yvy15, gce), gce, gcf) 52.86/30.45 new_lt20(yvy190, yvy192, app(app(ty_Either, gg), gh)) -> new_lt16(yvy190, yvy192, gg, gh) 52.86/30.45 new_ltEs21(yvy165, yvy166, app(ty_[], bae)) -> new_ltEs10(yvy165, yvy166, bae) 52.86/30.45 new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) 52.86/30.45 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Float) -> new_ltEs7(yvy1650, yvy1660) 52.86/30.45 new_esEs29(yvy190, yvy192, ty_Double) -> new_esEs27(yvy190, yvy192) 52.86/30.45 new_compare30(yvy400, yvy300, ty_Float) -> new_compare13(yvy400, yvy300) 52.86/30.45 new_esEs38(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.86/30.45 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Integer, bbe) -> new_ltEs11(yvy1650, yvy1660) 52.86/30.45 new_gt13(yvy40, yvy30, cc) -> new_esEs41(new_compare12(yvy40, yvy30, cc)) 52.86/30.45 new_ltEs17(yvy165, yvy166) -> new_fsEs(new_compare9(yvy165, yvy166)) 52.86/30.45 new_compare110(yvy247, yvy248, yvy249, yvy250, True, gea, geb) -> LT 52.86/30.45 new_splitGT0(Branch(yvy190, yvy191, yvy192, yvy193, yvy194), yvy20, gce, gcf) -> new_splitGT30(yvy190, yvy191, yvy192, yvy193, yvy194, yvy20, gce, gcf) 52.86/30.45 new_primMinusNat0(Zero, Succ(yvy21000)) -> Neg(Succ(yvy21000)) 52.86/30.45 new_mkBranch1(yvy117, yvy118, yvy119, yvy120, yvy121, yvy122, yvy123, yvy124, yvy125, yvy126, yvy127, yvy128, yvy129, fbh, fca) -> Branch(yvy118, yvy119, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(Branch(yvy120, yvy121, yvy122, yvy123, yvy124), fbh, fca)), new_sizeFM0(Branch(yvy125, yvy126, yvy127, yvy128, yvy129), fbh, fca)), Branch(yvy120, yvy121, yvy122, yvy123, yvy124), Branch(yvy125, yvy126, yvy127, yvy128, yvy129)) 52.86/30.45 new_esEs14(yvy1650, yvy1660, app(ty_Maybe, eab)) -> new_esEs24(yvy1650, yvy1660, eab) 52.86/30.45 new_esEs30(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.86/30.45 new_lt24(yvy40, yvy50, app(ty_[], bb)) -> new_lt10(yvy40, yvy50, bb) 52.86/30.45 new_esEs37(yvy4001, yvy3001, ty_Ordering) -> new_esEs26(yvy4001, yvy3001) 52.86/30.45 new_esEs11(yvy400, yvy300, app(ty_Ratio, bea)) -> new_esEs28(yvy400, yvy300, bea) 52.86/30.45 new_lt25(yvy40, yvy30, ty_Float) -> new_lt7(yvy40, yvy30) 52.86/30.45 new_esEs4(yvy401, yvy301, ty_@0) -> new_esEs19(yvy401, yvy301) 52.86/30.45 new_gt(yvy81, yvy76, app(ty_Maybe, fbd)) -> new_gt10(yvy81, yvy76, fbd) 52.86/30.45 new_esEs14(yvy1650, yvy1660, ty_Ordering) -> new_esEs26(yvy1650, yvy1660) 52.86/30.45 new_esEs37(yvy4001, yvy3001, app(ty_Maybe, caf)) -> new_esEs24(yvy4001, yvy3001, caf) 52.86/30.45 new_gt15(yvy40, yvy30, app(ty_Maybe, bh)) -> new_gt10(yvy40, yvy30, bh) 52.86/30.45 new_compare30(yvy400, yvy300, ty_Char) -> new_compare19(yvy400, yvy300) 52.86/30.45 new_lt11(yvy40, yvy30) -> new_esEs12(new_compare14(yvy40, yvy30)) 52.86/30.45 new_esEs39(yvy155, yvy158, ty_@0) -> new_esEs19(yvy155, yvy158) 52.86/30.45 new_ltEs6(yvy1652, yvy1662, app(ty_[], ebh)) -> new_ltEs10(yvy1652, yvy1662, ebh) 52.86/30.45 new_ltEs19(yvy179, yvy180, app(ty_[], cf)) -> new_ltEs10(yvy179, yvy180, cf) 52.86/30.45 new_compare28(yvy172, yvy173, True, fcf, fcg) -> EQ 52.86/30.45 new_esEs38(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.86/30.45 new_sizeFM0(EmptyFM, h, ba) -> Pos(Zero) 52.86/30.45 new_esEs38(yvy4000, yvy3000, app(app(ty_Either, ccd), cce)) -> new_esEs25(yvy4000, yvy3000, ccd, cce) 52.86/30.45 new_esEs34(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.86/30.45 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_@0, bbe) -> new_ltEs4(yvy1650, yvy1660) 52.86/30.45 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_Maybe, edg), bgg) -> new_esEs24(yvy4000, yvy3000, edg) 52.86/30.45 new_compare14(Integer(yvy400), Integer(yvy300)) -> new_primCmpInt(yvy400, yvy300) 52.86/30.45 new_esEs11(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.86/30.45 new_esEs14(yvy1650, yvy1660, app(app(ty_Either, eac), ead)) -> new_esEs25(yvy1650, yvy1660, eac, ead) 52.86/30.45 new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT 52.86/30.45 new_lt21(yvy1650, yvy1660, ty_@0) -> new_lt4(yvy1650, yvy1660) 52.86/30.45 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Int, bgg) -> new_esEs17(yvy4000, yvy3000) 52.86/30.45 new_ltEs19(yvy179, yvy180, ty_Float) -> new_ltEs7(yvy179, yvy180) 52.86/30.45 new_esEs14(yvy1650, yvy1660, ty_Bool) -> new_esEs23(yvy1650, yvy1660) 52.86/30.45 new_lt7(yvy40, yvy30) -> new_esEs12(new_compare13(yvy40, yvy30)) 52.86/30.45 new_splitGT0(EmptyFM, yvy20, gce, gcf) -> new_emptyFM(gce, gcf) 52.86/30.45 new_ltEs19(yvy179, yvy180, app(app(ty_Either, df), dg)) -> new_ltEs15(yvy179, yvy180, df, dg) 52.86/30.45 new_lt23(yvy155, yvy158, ty_Char) -> new_lt8(yvy155, yvy158) 52.86/30.45 new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT 52.86/30.45 new_esEs10(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.86/30.45 new_esEs13(yvy1651, yvy1661, app(ty_Maybe, ebd)) -> new_esEs24(yvy1651, yvy1661, ebd) 52.86/30.45 new_lt26(yvy20, yvy15, ty_Float) -> new_lt7(yvy20, yvy15) 52.86/30.45 new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) 52.86/30.45 new_lt24(yvy40, yvy50, app(app(app(ty_@3, be), bf), bg)) -> new_lt13(yvy40, yvy50, be, bf, bg) 52.86/30.45 new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba) -> new_sizeFM0(yvy90, h, ba) 52.86/30.45 new_esEs38(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.45 new_esEs24(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.86/30.45 new_esEs33(yvy1650, yvy1660, ty_Int) -> new_esEs17(yvy1650, yvy1660) 52.86/30.45 new_esEs41(EQ) -> False 52.86/30.45 new_gt14(yvy35, yvy30, ty_Char) -> new_gt3(yvy35, yvy30) 52.86/30.45 new_esEs40(yvy154, yvy157, app(ty_[], chc)) -> new_esEs18(yvy154, yvy157, chc) 52.86/30.45 new_lt4(yvy40, yvy30) -> new_esEs12(new_compare5(yvy40, yvy30)) 52.86/30.45 new_primCompAux0(yvy400, yvy300, yvy115, bb) -> new_primCompAux00(yvy115, new_compare30(yvy400, yvy300, bb)) 52.86/30.45 new_splitLT0(EmptyFM, yvy35, ea, eb) -> new_emptyFM(ea, eb) 52.86/30.45 new_ltEs14(Nothing, Just(yvy1660), bbc) -> True 52.86/30.45 new_esEs39(yvy155, yvy158, ty_Double) -> new_esEs27(yvy155, yvy158) 52.86/30.45 new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, yvy904, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), yvy900, yvy901, yvy903, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), yvy50, yvy51, yvy904, yvy54, h, ba) 52.86/30.45 new_mkVBalBranch0(yvy40, yvy41, EmptyFM, yvy5, h, ba) -> new_addToFM(yvy5, yvy40, yvy41, h, ba) 52.86/30.45 new_esEs39(yvy155, yvy158, app(app(ty_Either, dbd), dbe)) -> new_esEs25(yvy155, yvy158, dbd, dbe) 52.86/30.45 new_gt15(yvy40, yvy30, app(ty_[], bb)) -> new_gt5(yvy40, yvy30, bb) 52.86/30.45 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 52.86/30.45 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 52.86/30.45 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, efh), ega), egb)) -> new_esEs22(yvy4000, yvy3000, efh, ega, egb) 52.86/30.45 new_compare30(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) 52.86/30.45 new_esEs39(yvy155, yvy158, ty_Bool) -> new_esEs23(yvy155, yvy158) 52.86/30.45 new_gt(yvy81, yvy76, ty_Char) -> new_gt3(yvy81, yvy76) 52.86/30.45 new_esEs29(yvy190, yvy192, app(app(ty_@2, ga), gb)) -> new_esEs21(yvy190, yvy192, ga, gb) 52.86/30.45 new_lt23(yvy155, yvy158, app(ty_[], dae)) -> new_lt10(yvy155, yvy158, dae) 52.86/30.45 new_esEs7(yvy401, yvy301, app(ty_[], dga)) -> new_esEs18(yvy401, yvy301, dga) 52.86/30.45 new_ltEs13(True, True) -> True 52.86/30.45 new_sr1(Neg(yvy930)) -> Neg(new_primMulNat1(yvy930)) 52.86/30.45 new_esEs9(yvy400, yvy300, app(ty_Ratio, gfa)) -> new_esEs28(yvy400, yvy300, gfa) 52.86/30.45 new_ltEs6(yvy1652, yvy1662, app(ty_Maybe, ecf)) -> new_ltEs14(yvy1652, yvy1662, ecf) 52.86/30.45 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(ty_Either, cfc), cfd), bbe) -> new_ltEs15(yvy1650, yvy1660, cfc, cfd) 52.86/30.45 new_esEs6(yvy402, yvy302, ty_Char) -> new_esEs16(yvy402, yvy302) 52.86/30.45 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(ty_Either, eec), eed), bgg) -> new_esEs25(yvy4000, yvy3000, eec, eed) 52.86/30.45 new_esEs4(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) 52.86/30.45 new_esEs38(yvy4000, yvy3000, app(ty_Maybe, cbh)) -> new_esEs24(yvy4000, yvy3000, cbh) 52.86/30.45 new_esEs18([], [], bgh) -> True 52.86/30.45 new_addToFM_C20(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, False, fad, fae) -> new_addToFM_C10(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, new_gt(yvy81, yvy76, fad), fad, fae) 52.86/30.45 new_compare16(Left(yvy400), Right(yvy300), ca, cb) -> LT 52.86/30.45 new_ltEs24(yvy156, yvy159, ty_Double) -> new_ltEs17(yvy156, yvy159) 52.86/30.45 new_ltEs19(yvy179, yvy180, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs5(yvy179, yvy180, db, dc, dd) 52.86/30.45 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_[], feb)) -> new_ltEs10(yvy1650, yvy1660, feb) 52.86/30.45 new_lt5(yvy1650, yvy1660, app(ty_[], dhd)) -> new_lt10(yvy1650, yvy1660, dhd) 52.86/30.45 new_lt23(yvy155, yvy158, ty_Integer) -> new_lt11(yvy155, yvy158) 52.86/30.45 new_esEs30(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.86/30.45 new_primCmpNat0(Zero, Zero) -> EQ 52.86/30.45 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_Maybe, egc)) -> new_esEs24(yvy4000, yvy3000, egc) 52.86/30.45 new_esEs32(yvy4000, yvy3000, app(ty_Ratio, fhd)) -> new_esEs28(yvy4000, yvy3000, fhd) 52.86/30.45 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_[], eha)) -> new_esEs18(yvy4000, yvy3000, eha) 52.86/30.45 new_esEs10(yvy400, yvy300, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs22(yvy400, yvy300, bca, bcb, bcc) 52.86/30.45 new_lt6(yvy1651, yvy1661, ty_Int) -> new_lt9(yvy1651, yvy1661) 52.86/30.45 new_esEs14(yvy1650, yvy1660, ty_Double) -> new_esEs27(yvy1650, yvy1660) 52.86/30.45 new_lt20(yvy190, yvy192, ty_Bool) -> new_lt14(yvy190, yvy192) 52.86/30.45 new_ltEs22(yvy172, yvy173, ty_Int) -> new_ltEs9(yvy172, yvy173) 52.86/30.45 new_compare26(yvy190, yvy191, yvy192, yvy193, False, ff, fg) -> new_compare11(yvy190, yvy191, yvy192, yvy193, new_lt20(yvy190, yvy192, ff), new_asAs(new_esEs29(yvy190, yvy192, ff), new_ltEs20(yvy191, yvy193, fg)), ff, fg) 52.86/30.45 new_ltEs16(GT, EQ) -> False 52.86/30.45 new_esEs14(yvy1650, yvy1660, ty_Integer) -> new_esEs20(yvy1650, yvy1660) 52.86/30.45 new_compare27(yvy165, yvy166, True, bad) -> EQ 52.86/30.45 new_esEs7(yvy401, yvy301, app(app(app(ty_@3, deh), dfa), dfb)) -> new_esEs22(yvy401, yvy301, deh, dfa, dfb) 52.86/30.45 new_ltEs19(yvy179, yvy180, ty_Double) -> new_ltEs17(yvy179, yvy180) 52.86/30.45 new_lt16(yvy40, yvy30, ca, cb) -> new_esEs12(new_compare16(yvy40, yvy30, ca, cb)) 52.86/30.45 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Integer) -> new_ltEs11(yvy1650, yvy1660) 52.86/30.45 new_esEs4(yvy401, yvy301, ty_Ordering) -> new_esEs26(yvy401, yvy301) 52.86/30.45 new_ltEs10(yvy165, yvy166, bae) -> new_fsEs(new_compare0(yvy165, yvy166, bae)) 52.86/30.45 new_esEs7(yvy401, yvy301, ty_@0) -> new_esEs19(yvy401, yvy301) 52.86/30.45 new_addToFM_C0(Branch(yvy50, yvy51, yvy52, yvy53, yvy54), yvy40, yvy41, h, ba) -> new_addToFM_C20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy40, yvy41, new_lt24(yvy40, yvy50, h), h, ba) 52.86/30.45 new_compare8(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) 52.86/30.45 new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, ea, eb) -> new_splitLT10(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt14(yvy35, yvy30, ea), ea, eb) 52.86/30.45 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.86/30.45 new_ltEs20(yvy191, yvy193, ty_Integer) -> new_ltEs11(yvy191, yvy193) 52.86/30.45 new_ltEs19(yvy179, yvy180, ty_@0) -> new_ltEs4(yvy179, yvy180) 52.86/30.45 new_lt20(yvy190, yvy192, app(app(ty_@2, ga), gb)) -> new_lt12(yvy190, yvy192, ga, gb) 52.86/30.45 new_primCompAux00(yvy133, GT) -> GT 52.86/30.45 new_primMinusNat0(Succ(yvy90200), Zero) -> Pos(Succ(yvy90200)) 52.86/30.45 new_esEs8(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.86/30.45 new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy54, yvy90, new_gt4(new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba))), h, ba) 52.86/30.45 new_esEs37(yvy4001, yvy3001, ty_Char) -> new_esEs16(yvy4001, yvy3001) 52.86/30.45 new_esEs40(yvy154, yvy157, app(ty_Maybe, daa)) -> new_esEs24(yvy154, yvy157, daa) 52.86/30.45 new_esEs40(yvy154, yvy157, ty_Int) -> new_esEs17(yvy154, yvy157) 52.86/30.45 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Ordering) -> new_ltEs16(yvy1650, yvy1660) 52.86/30.45 new_esEs32(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.86/30.45 new_esEs30(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.86/30.45 new_esEs8(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.86/30.45 new_ltEs24(yvy156, yvy159, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_ltEs5(yvy156, yvy159, dcb, dcc, dcd) 52.86/30.45 new_ltEs23(yvy1651, yvy1661, app(ty_[], gbb)) -> new_ltEs10(yvy1651, yvy1661, gbb) 52.86/30.45 new_ltEs24(yvy156, yvy159, ty_@0) -> new_ltEs4(yvy156, yvy159) 52.86/30.45 new_ltEs4(yvy165, yvy166) -> new_fsEs(new_compare5(yvy165, yvy166)) 52.86/30.45 new_esEs33(yvy1650, yvy1660, app(ty_[], fhh)) -> new_esEs18(yvy1650, yvy1660, fhh) 52.86/30.45 new_ltEs16(LT, LT) -> True 52.86/30.45 new_esEs29(yvy190, yvy192, app(app(ty_Either, gg), gh)) -> new_esEs25(yvy190, yvy192, gg, gh) 52.86/30.45 new_ltEs7(yvy165, yvy166) -> new_fsEs(new_compare13(yvy165, yvy166)) 52.86/30.45 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_Ratio, eeb), bgg) -> new_esEs28(yvy4000, yvy3000, eeb) 52.86/30.45 new_ltEs19(yvy179, yvy180, ty_Bool) -> new_ltEs13(yvy179, yvy180) 52.86/30.45 new_lt6(yvy1651, yvy1661, app(ty_Maybe, ebd)) -> new_lt15(yvy1651, yvy1661, ebd) 52.86/30.45 new_lt25(yvy40, yvy30, ty_Bool) -> new_lt14(yvy40, yvy30) 52.86/30.45 new_esEs38(yvy4000, yvy3000, app(ty_[], ccf)) -> new_esEs18(yvy4000, yvy3000, ccf) 52.86/30.45 new_esEs39(yvy155, yvy158, app(app(ty_@2, daf), dag)) -> new_esEs21(yvy155, yvy158, daf, dag) 52.86/30.45 new_gt(yvy81, yvy76, app(ty_Ratio, fbg)) -> new_gt13(yvy81, yvy76, fbg) 52.86/30.45 new_ltEs24(yvy156, yvy159, ty_Float) -> new_ltEs7(yvy156, yvy159) 52.86/30.45 new_esEs13(yvy1651, yvy1661, ty_@0) -> new_esEs19(yvy1651, yvy1661) 52.86/30.45 new_sr(Integer(yvy4000), Integer(yvy3010)) -> Integer(new_primMulInt(yvy4000, yvy3010)) 52.86/30.45 new_primCmpNat0(Succ(yvy4000), Zero) -> GT 52.86/30.45 new_esEs38(yvy4000, yvy3000, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs22(yvy4000, yvy3000, cbe, cbf, cbg) 52.86/30.45 new_addToFM_C10(yvy106, yvy107, yvy108, yvy109, yvy110, yvy111, yvy112, False, dda, ddb) -> Branch(yvy111, yvy112, yvy108, yvy109, yvy110) 52.86/30.45 new_esEs30(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.86/30.45 new_pePe(False, yvy280) -> yvy280 52.86/30.45 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.45 new_compare6(@2(yvy400, yvy401), @2(yvy300, yvy301), bc, bd) -> new_compare26(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs5(yvy400, yvy300, bc), new_esEs4(yvy401, yvy301, bd)), bc, bd) 52.86/30.45 new_compare25(yvy179, yvy180, True, cd, ce) -> EQ 52.86/30.45 new_compare18(LT, GT) -> LT 52.86/30.45 new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba) -> new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, h), h, ba) 52.86/30.45 new_lt22(yvy154, yvy157, app(ty_Maybe, daa)) -> new_lt15(yvy154, yvy157, daa) 52.86/30.45 new_ltEs16(LT, GT) -> True 52.86/30.45 new_ltEs21(yvy165, yvy166, ty_Double) -> new_ltEs17(yvy165, yvy166) 52.86/30.45 new_primMinusNat0(Succ(yvy90200), Succ(yvy21000)) -> new_primMinusNat0(yvy90200, yvy21000) 52.86/30.45 new_lt23(yvy155, yvy158, ty_Bool) -> new_lt14(yvy155, yvy158) 52.86/30.45 new_lt13(yvy40, yvy30, be, bf, bg) -> new_esEs12(new_compare31(yvy40, yvy30, be, bf, bg)) 52.86/30.45 new_ltEs16(LT, EQ) -> True 52.86/30.45 new_ltEs16(EQ, LT) -> False 52.86/30.45 new_lt20(yvy190, yvy192, ty_Integer) -> new_lt11(yvy190, yvy192) 52.86/30.45 new_esEs6(yvy402, yvy302, ty_Integer) -> new_esEs20(yvy402, yvy302) 52.86/30.45 new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, Branch(yvy900, yvy901, yvy902, yvy903, yvy904), True, h, ba) -> new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, yvy904, new_lt9(new_sizeFM0(yvy904, h, ba), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM0(yvy903, h, ba))), h, ba) 52.86/30.45 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 52.86/30.45 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 52.86/30.45 new_esEs7(yvy401, yvy301, ty_Ordering) -> new_esEs26(yvy401, yvy301) 52.86/30.45 new_lt6(yvy1651, yvy1661, app(app(app(ty_@3, eba), ebb), ebc)) -> new_lt13(yvy1651, yvy1661, eba, ebb, ebc) 52.86/30.45 new_lt23(yvy155, yvy158, app(app(ty_Either, dbd), dbe)) -> new_lt16(yvy155, yvy158, dbd, dbe) 52.86/30.45 new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) -> Branch(yvy50, yvy51, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(yvy90, h, ba)), new_sizeFM0(yvy54, h, ba)), yvy90, yvy54) 52.86/30.45 new_ltEs16(GT, LT) -> False 52.86/30.45 new_esEs4(yvy401, yvy301, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs22(yvy401, yvy301, bef, beg, beh) 52.86/30.45 new_compare30(yvy400, yvy300, app(ty_Maybe, cdh)) -> new_compare29(yvy400, yvy300, cdh) 52.86/30.45 new_lt24(yvy40, yvy50, ty_@0) -> new_lt4(yvy40, yvy50) 52.86/30.45 new_esEs31(yvy4001, yvy3001, ty_Bool) -> new_esEs23(yvy4001, yvy3001) 52.86/30.45 new_esEs25(Left(yvy4000), Left(yvy3000), ty_@0, bgg) -> new_esEs19(yvy4000, yvy3000) 52.86/30.45 new_esEs31(yvy4001, yvy3001, app(app(ty_Either, fgc), fgd)) -> new_esEs25(yvy4001, yvy3001, fgc, fgd) 52.86/30.45 new_ltEs21(yvy165, yvy166, app(app(ty_Either, bbd), bbe)) -> new_ltEs15(yvy165, yvy166, bbd, bbe) 52.86/30.45 new_esEs30(yvy4000, yvy3000, app(ty_Ratio, ehh)) -> new_esEs28(yvy4000, yvy3000, ehh) 52.86/30.45 new_lt21(yvy1650, yvy1660, app(app(app(ty_@3, gac), gad), gae)) -> new_lt13(yvy1650, yvy1660, gac, gad, gae) 52.86/30.45 new_esEs33(yvy1650, yvy1660, app(ty_Maybe, gaf)) -> new_esEs24(yvy1650, yvy1660, gaf) 52.86/30.45 new_esEs9(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.86/30.45 new_lt25(yvy40, yvy30, app(app(ty_@2, bc), bd)) -> new_lt12(yvy40, yvy30, bc, bd) 52.86/30.45 new_ltEs24(yvy156, yvy159, ty_Int) -> new_ltEs9(yvy156, yvy159) 52.86/30.45 new_esEs7(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) 52.86/30.45 new_lt5(yvy1650, yvy1660, app(ty_Ratio, eae)) -> new_lt19(yvy1650, yvy1660, eae) 52.86/30.45 new_esEs10(yvy400, yvy300, app(ty_Maybe, bcd)) -> new_esEs24(yvy400, yvy300, bcd) 52.86/30.45 new_esEs11(yvy400, yvy300, app(app(ty_Either, beb), bec)) -> new_esEs25(yvy400, yvy300, beb, bec) 52.86/30.45 new_esEs6(yvy402, yvy302, app(ty_Ratio, ded)) -> new_esEs28(yvy402, yvy302, ded) 52.86/30.45 new_compare12(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Integer) -> new_compare14(new_sr(yvy400, yvy301), new_sr(yvy300, yvy401)) 52.86/30.45 new_esEs8(yvy400, yvy300, app(app(ty_@2, dgf), dgg)) -> new_esEs21(yvy400, yvy300, dgf, dgg) 52.86/30.45 new_esEs30(yvy4000, yvy3000, app(ty_Maybe, ehe)) -> new_esEs24(yvy4000, yvy3000, ehe) 52.86/30.45 new_ltEs20(yvy191, yvy193, app(ty_Maybe, hh)) -> new_ltEs14(yvy191, yvy193, hh) 52.86/30.45 new_esEs20(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 52.86/30.45 new_esEs33(yvy1650, yvy1660, ty_@0) -> new_esEs19(yvy1650, yvy1660) 52.86/30.45 new_esEs30(yvy4000, yvy3000, app(ty_[], fac)) -> new_esEs18(yvy4000, yvy3000, fac) 52.86/30.45 new_esEs26(GT, GT) -> True 52.86/30.45 new_esEs40(yvy154, yvy157, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs22(yvy154, yvy157, chf, chg, chh) 52.86/30.45 new_ltEs16(EQ, GT) -> True 52.86/30.45 new_ltEs20(yvy191, yvy193, app(app(ty_@2, hc), hd)) -> new_ltEs12(yvy191, yvy193, hc, hd) 52.86/30.45 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_Maybe, feh)) -> new_ltEs14(yvy1650, yvy1660, feh) 52.86/30.45 new_compare18(EQ, GT) -> LT 52.86/30.45 new_ltEs16(EQ, EQ) -> True 52.86/30.45 new_esEs6(yvy402, yvy302, ty_Bool) -> new_esEs23(yvy402, yvy302) 52.86/30.45 new_esEs36(yvy4002, yvy3002, ty_Int) -> new_esEs17(yvy4002, yvy3002) 52.86/30.45 new_compare17(yvy230, yvy231, True, ddc, ddd) -> LT 52.86/30.45 new_esEs29(yvy190, yvy192, ty_Integer) -> new_esEs20(yvy190, yvy192) 52.86/30.45 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Ordering, bgg) -> new_esEs26(yvy4000, yvy3000) 52.86/30.45 new_esEs10(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.86/30.45 new_lt5(yvy1650, yvy1660, ty_Float) -> new_lt7(yvy1650, yvy1660) 52.86/30.45 new_ltEs6(yvy1652, yvy1662, app(app(ty_@2, eca), ecb)) -> new_ltEs12(yvy1652, yvy1662, eca, ecb) 52.86/30.45 new_esEs39(yvy155, yvy158, ty_Char) -> new_esEs16(yvy155, yvy158) 52.86/30.45 new_primMulNat1(Zero) -> Zero 52.86/30.45 new_esEs5(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.86/30.45 new_esEs36(yvy4002, yvy3002, ty_Double) -> new_esEs27(yvy4002, yvy3002) 52.86/30.45 new_lt24(yvy40, yvy50, ty_Int) -> new_lt9(yvy40, yvy50) 52.86/30.45 new_esEs10(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.86/30.45 new_lt5(yvy1650, yvy1660, ty_Integer) -> new_lt11(yvy1650, yvy1660) 52.86/30.45 new_esEs13(yvy1651, yvy1661, ty_Int) -> new_esEs17(yvy1651, yvy1661) 52.86/30.45 new_lt21(yvy1650, yvy1660, ty_Float) -> new_lt7(yvy1650, yvy1660) 52.86/30.45 new_esEs23(False, True) -> False 52.86/30.45 new_esEs23(True, False) -> False 52.86/30.45 new_esEs9(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.86/30.45 new_esEs4(yvy401, yvy301, ty_Char) -> new_esEs16(yvy401, yvy301) 52.86/30.45 new_ltEs6(yvy1652, yvy1662, ty_Ordering) -> new_ltEs16(yvy1652, yvy1662) 52.86/30.45 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_Ratio, egf)) -> new_esEs28(yvy4000, yvy3000, egf) 52.86/30.45 new_esEs40(yvy154, yvy157, app(ty_Ratio, dad)) -> new_esEs28(yvy154, yvy157, dad) 52.86/30.45 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(ty_@2, fec), fed)) -> new_ltEs12(yvy1650, yvy1660, fec, fed) 52.86/30.45 new_lt18(yvy40, yvy30) -> new_esEs12(new_compare9(yvy40, yvy30)) 52.86/30.45 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Ordering) -> new_ltEs16(yvy1650, yvy1660) 52.86/30.45 new_esEs6(yvy402, yvy302, app(app(ty_@2, deb), dec)) -> new_esEs21(yvy402, yvy302, deb, dec) 52.86/30.45 new_ltEs20(yvy191, yvy193, ty_Ordering) -> new_ltEs16(yvy191, yvy193) 52.86/30.45 new_esEs4(yvy401, yvy301, app(ty_Ratio, bfd)) -> new_esEs28(yvy401, yvy301, bfd) 52.86/30.45 new_esEs5(yvy400, yvy300, app(ty_[], bgh)) -> new_esEs18(yvy400, yvy300, bgh) 52.86/30.45 new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, Branch(yvy5430, yvy5431, yvy5432, yvy5433, yvy5434), yvy544, yvy90, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), yvy5430, yvy5431, new_mkBranchResult(yvy50, yvy51, yvy90, yvy5433, h, ba), Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), yvy540, yvy541, yvy5434, yvy544, h, ba) 52.86/30.45 new_compare7(False, False) -> EQ 52.86/30.45 new_gt15(yvy40, yvy30, ty_Int) -> new_gt4(yvy40, yvy30) 52.86/30.45 new_lt24(yvy40, yvy50, app(ty_Maybe, bh)) -> new_lt15(yvy40, yvy50, bh) 52.86/30.45 new_lt21(yvy1650, yvy1660, app(ty_Ratio, gba)) -> new_lt19(yvy1650, yvy1660, gba) 52.86/30.45 new_primMulInt(Neg(yvy4000), Neg(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) 52.86/30.45 new_esEs32(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.86/30.45 new_sr1(Pos(yvy930)) -> Pos(new_primMulNat1(yvy930)) 52.86/30.45 new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs17(new_sr0(yvy4000, yvy3001), new_sr0(yvy4001, yvy3000)) 52.86/30.45 new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) 52.86/30.45 new_lt19(yvy40, yvy30, cc) -> new_esEs12(new_compare12(yvy40, yvy30, cc)) 52.86/30.45 new_esEs8(yvy400, yvy300, app(app(ty_Either, dha), dhb)) -> new_esEs25(yvy400, yvy300, dha, dhb) 52.86/30.45 new_gt8(yvy40, yvy30, be, bf, bg) -> new_esEs41(new_compare31(yvy40, yvy30, be, bf, bg)) 52.86/30.45 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_Ratio, cfe), bbe) -> new_ltEs18(yvy1650, yvy1660, cfe) 52.86/30.45 new_lt23(yvy155, yvy158, app(app(ty_@2, daf), dag)) -> new_lt12(yvy155, yvy158, daf, dag) 52.86/30.45 new_esEs25(Left(yvy4000), Right(yvy3000), bgf, bgg) -> False 52.86/30.45 new_esEs25(Right(yvy4000), Left(yvy3000), bgf, bgg) -> False 52.86/30.45 new_esEs39(yvy155, yvy158, ty_Integer) -> new_esEs20(yvy155, yvy158) 52.86/30.45 new_esEs30(yvy4000, yvy3000, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs22(yvy4000, yvy3000, ehb, ehc, ehd) 52.86/30.45 new_lt24(yvy40, yvy50, ty_Ordering) -> new_lt17(yvy40, yvy50) 52.86/30.45 new_ltEs21(yvy165, yvy166, ty_Float) -> new_ltEs7(yvy165, yvy166) 52.86/30.45 new_gt12(yvy40, yvy30) -> new_esEs41(new_compare18(yvy40, yvy30)) 52.86/30.45 new_fsEs(yvy281) -> new_not(new_esEs26(yvy281, GT)) 52.86/30.45 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs22(yvy4000, yvy3000, eef, eeg, eeh) 52.86/30.45 new_esEs29(yvy190, yvy192, ty_Bool) -> new_esEs23(yvy190, yvy192) 52.86/30.45 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(ty_@2, edh), eea), bgg) -> new_esEs21(yvy4000, yvy3000, edh, eea) 52.86/30.45 new_esEs22(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bfh, bga, bgb) -> new_asAs(new_esEs38(yvy4000, yvy3000, bfh), new_asAs(new_esEs37(yvy4001, yvy3001, bga), new_esEs36(yvy4002, yvy3002, bgb))) 52.86/30.45 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Integer) -> new_ltEs11(yvy1650, yvy1660) 52.86/30.45 new_esEs9(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.86/30.45 new_compare7(True, False) -> GT 52.86/30.45 new_lt26(yvy20, yvy15, ty_@0) -> new_lt4(yvy20, yvy15) 52.86/30.45 new_gt2(yvy40, yvy30) -> new_esEs41(new_compare13(yvy40, yvy30)) 52.86/30.45 new_esEs28(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bee) -> new_asAs(new_esEs35(yvy4000, yvy3000, bee), new_esEs34(yvy4001, yvy3001, bee)) 52.86/30.45 new_lt22(yvy154, yvy157, app(app(app(ty_@3, chf), chg), chh)) -> new_lt13(yvy154, yvy157, chf, chg, chh) 52.86/30.45 new_esEs32(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.86/30.45 new_lt25(yvy40, yvy30, app(app(ty_Either, ca), cb)) -> new_lt16(yvy40, yvy30, ca, cb) 52.86/30.45 new_esEs7(yvy401, yvy301, app(ty_Maybe, dfc)) -> new_esEs24(yvy401, yvy301, dfc) 52.86/30.45 new_esEs31(yvy4001, yvy3001, app(app(ty_@2, ffh), fga)) -> new_esEs21(yvy4001, yvy3001, ffh, fga) 52.86/30.45 new_esEs4(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) 52.86/30.45 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(ty_[], efg)) -> new_esEs18(yvy4000, yvy3000, efg) 52.86/30.45 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(ty_Maybe, cgd)) -> new_ltEs14(yvy1650, yvy1660, cgd) 52.86/30.45 new_lt23(yvy155, yvy158, app(ty_Ratio, dbf)) -> new_lt19(yvy155, yvy158, dbf) 52.86/30.45 new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) 52.86/30.45 new_esEs11(yvy400, yvy300, app(ty_[], bed)) -> new_esEs18(yvy400, yvy300, bed) 52.86/30.45 new_esEs8(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.86/30.45 new_primMulInt(Pos(yvy4000), Neg(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) 52.86/30.45 new_primMulInt(Neg(yvy4000), Pos(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) 52.86/30.45 new_compare27(yvy165, yvy166, False, bad) -> new_compare15(yvy165, yvy166, new_ltEs21(yvy165, yvy166, bad), bad) 52.86/30.45 new_esEs5(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.86/30.45 new_compare30(yvy400, yvy300, app(app(ty_@2, cdc), cdd)) -> new_compare6(yvy400, yvy300, cdc, cdd) 52.86/30.45 new_compare5(@0, @0) -> EQ 52.86/30.45 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, app(ty_Maybe, efa)) -> new_esEs24(yvy4000, yvy3000, efa) 52.86/30.45 new_ltEs22(yvy172, yvy173, ty_@0) -> new_ltEs4(yvy172, yvy173) 52.86/30.45 new_ltEs22(yvy172, yvy173, app(app(app(ty_@3, fdc), fdd), fde)) -> new_ltEs5(yvy172, yvy173, fdc, fdd, fde) 52.86/30.45 new_ltEs19(yvy179, yvy180, ty_Int) -> new_ltEs9(yvy179, yvy180) 52.86/30.45 new_esEs36(yvy4002, yvy3002, app(ty_[], cab)) -> new_esEs18(yvy4002, yvy3002, cab) 52.86/30.45 new_ltEs23(yvy1651, yvy1661, ty_Ordering) -> new_ltEs16(yvy1651, yvy1661) 52.86/30.45 new_compare210(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, cgh, cha, chb) -> new_compare111(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, new_lt22(yvy154, yvy157, cgh), new_asAs(new_esEs40(yvy154, yvy157, cgh), new_pePe(new_lt23(yvy155, yvy158, cha), new_asAs(new_esEs39(yvy155, yvy158, cha), new_ltEs24(yvy156, yvy159, chb)))), cgh, cha, chb) 52.86/30.45 new_esEs9(yvy400, yvy300, app(ty_Maybe, gef)) -> new_esEs24(yvy400, yvy300, gef) 52.86/30.45 new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba) -> new_splitGT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, h), h, ba) 52.86/30.45 new_esEs5(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.86/30.45 new_ltEs20(yvy191, yvy193, ty_Char) -> new_ltEs8(yvy191, yvy193) 52.86/30.45 new_ltEs22(yvy172, yvy173, ty_Double) -> new_ltEs17(yvy172, yvy173) 52.86/30.45 new_asAs(True, yvy208) -> yvy208 52.86/30.45 new_gt15(yvy40, yvy30, app(app(ty_@2, bc), bd)) -> new_gt1(yvy40, yvy30, bc, bd) 52.86/30.45 new_esEs32(yvy4000, yvy3000, app(app(ty_@2, fhb), fhc)) -> new_esEs21(yvy4000, yvy3000, fhb, fhc) 52.86/30.45 new_ltEs6(yvy1652, yvy1662, app(ty_Ratio, eda)) -> new_ltEs18(yvy1652, yvy1662, eda) 52.86/30.45 new_ltEs23(yvy1651, yvy1661, ty_Integer) -> new_ltEs11(yvy1651, yvy1661) 52.86/30.45 new_lt26(yvy20, yvy15, ty_Bool) -> new_lt14(yvy20, yvy15) 52.86/30.45 new_lt26(yvy20, yvy15, app(app(ty_Either, gdf), gdg)) -> new_lt16(yvy20, yvy15, gdf, gdg) 52.86/30.45 new_esEs5(yvy400, yvy300, app(app(ty_@2, bgd), bge)) -> new_esEs21(yvy400, yvy300, bgd, bge) 52.86/30.45 new_lt26(yvy20, yvy15, ty_Double) -> new_lt18(yvy20, yvy15) 52.86/30.45 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs5(yvy1650, yvy1660, cga, cgb, cgc) 52.86/30.45 new_lt25(yvy40, yvy30, app(ty_Maybe, bh)) -> new_lt15(yvy40, yvy30, bh) 52.86/30.45 new_esEs32(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.86/30.45 new_compare26(yvy190, yvy191, yvy192, yvy193, True, ff, fg) -> EQ 52.86/30.45 new_primPlusInt(Pos(yvy9020), Neg(yvy2100)) -> new_primMinusNat0(yvy9020, yvy2100) 52.86/30.45 new_primPlusInt(Neg(yvy9020), Pos(yvy2100)) -> new_primMinusNat0(yvy2100, yvy9020) 52.86/30.45 new_lt26(yvy20, yvy15, ty_Int) -> new_lt9(yvy20, yvy15) 52.86/30.45 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_[], ced), bbe) -> new_ltEs10(yvy1650, yvy1660, ced) 52.86/30.45 new_lt26(yvy20, yvy15, app(app(app(ty_@3, gdb), gdc), gdd)) -> new_lt13(yvy20, yvy15, gdb, gdc, gdd) 52.86/30.45 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_[], eee), bgg) -> new_esEs18(yvy4000, yvy3000, eee) 52.86/30.45 new_compare15(yvy223, yvy224, False, dde) -> GT 52.86/30.45 new_compare28(yvy172, yvy173, False, fcf, fcg) -> new_compare17(yvy172, yvy173, new_ltEs22(yvy172, yvy173, fcf), fcf, fcg) 52.86/30.45 new_lt21(yvy1650, yvy1660, ty_Double) -> new_lt18(yvy1650, yvy1660) 52.86/30.45 new_compare0([], [], bb) -> EQ 52.86/30.45 new_lt22(yvy154, yvy157, app(app(ty_@2, chd), che)) -> new_lt12(yvy154, yvy157, chd, che) 52.86/30.45 new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba) -> new_sizeFM0(yvy54, h, ba) 52.86/30.45 new_ltEs16(GT, GT) -> True 52.86/30.45 new_compare13(Float(yvy400, Pos(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.86/30.45 new_esEs37(yvy4001, yvy3001, ty_Double) -> new_esEs27(yvy4001, yvy3001) 52.86/30.45 new_esEs9(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.86/30.45 new_lt26(yvy20, yvy15, app(ty_Maybe, gde)) -> new_lt15(yvy20, yvy15, gde) 52.86/30.45 new_primMulNat0(Zero, Zero) -> Zero 52.86/30.45 new_esEs11(yvy400, yvy300, app(app(ty_@2, bdg), bdh)) -> new_esEs21(yvy400, yvy300, bdg, bdh) 52.86/30.45 new_ltEs21(yvy165, yvy166, app(ty_Maybe, bbc)) -> new_ltEs14(yvy165, yvy166, bbc) 52.86/30.45 new_lt26(yvy20, yvy15, ty_Ordering) -> new_lt17(yvy20, yvy15) 52.86/30.45 new_lt5(yvy1650, yvy1660, app(app(ty_@2, dhe), dhf)) -> new_lt12(yvy1650, yvy1660, dhe, dhf) 52.86/30.45 new_ltEs19(yvy179, yvy180, ty_Char) -> new_ltEs8(yvy179, yvy180) 52.86/30.45 new_ltEs23(yvy1651, yvy1661, app(app(ty_Either, gca), gcb)) -> new_ltEs15(yvy1651, yvy1661, gca, gcb) 52.86/30.45 new_esEs4(yvy401, yvy301, app(ty_[], bfg)) -> new_esEs18(yvy401, yvy301, bfg) 52.86/30.45 new_lt21(yvy1650, yvy1660, app(app(ty_@2, gaa), gab)) -> new_lt12(yvy1650, yvy1660, gaa, gab) 52.86/30.45 new_ltEs23(yvy1651, yvy1661, ty_Float) -> new_ltEs7(yvy1651, yvy1661) 52.86/30.45 new_lt5(yvy1650, yvy1660, ty_Double) -> new_lt18(yvy1650, yvy1660) 52.86/30.45 new_ltEs22(yvy172, yvy173, app(ty_Maybe, fdf)) -> new_ltEs14(yvy172, yvy173, fdf) 52.86/30.45 new_esEs32(yvy4000, yvy3000, app(ty_[], fhg)) -> new_esEs18(yvy4000, yvy3000, fhg) 52.86/30.45 new_esEs33(yvy1650, yvy1660, app(app(ty_@2, gaa), gab)) -> new_esEs21(yvy1650, yvy1660, gaa, gab) 52.86/30.45 new_esEs9(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.86/30.45 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Int) -> new_ltEs9(yvy1650, yvy1660) 52.86/30.45 new_compare12(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Int) -> new_compare8(new_sr0(yvy400, yvy301), new_sr0(yvy300, yvy401)) 52.86/30.45 new_ltEs22(yvy172, yvy173, app(app(ty_Either, fdg), fdh)) -> new_ltEs15(yvy172, yvy173, fdg, fdh) 52.86/30.45 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.86/30.45 new_ltEs24(yvy156, yvy159, app(ty_Ratio, dch)) -> new_ltEs18(yvy156, yvy159, dch) 52.86/30.45 new_ltEs6(yvy1652, yvy1662, ty_Char) -> new_ltEs8(yvy1652, yvy1662) 52.86/30.45 new_esEs7(yvy401, yvy301, app(ty_Ratio, dff)) -> new_esEs28(yvy401, yvy301, dff) 52.86/30.45 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 52.86/30.45 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 52.86/30.45 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 52.86/30.45 new_primPlusNat1(yvy270, yvy9300) -> new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(yvy270, Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)), Succ(yvy9300)) 52.86/30.45 new_gt5(yvy40, yvy30, bb) -> new_esEs41(new_compare0(yvy40, yvy30, bb)) 52.86/30.45 new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 52.86/30.45 new_lt24(yvy40, yvy50, app(ty_Ratio, cc)) -> new_lt19(yvy40, yvy50, cc) 52.86/30.45 new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy53, h, ba), yvy54, h, ba) 52.86/30.45 new_esEs10(yvy400, yvy300, app(ty_[], bdb)) -> new_esEs18(yvy400, yvy300, bdb) 52.86/30.45 new_gt15(yvy40, yvy30, ty_Double) -> new_gt0(yvy40, yvy30) 52.86/30.45 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 52.86/30.45 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 52.86/30.45 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_Maybe, cfb), bbe) -> new_ltEs14(yvy1650, yvy1660, cfb) 52.86/30.45 new_compare31(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), be, bf, bg) -> new_compare210(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs8(yvy400, yvy300, be), new_asAs(new_esEs7(yvy401, yvy301, bf), new_esEs6(yvy402, yvy302, bg))), be, bf, bg) 52.86/30.45 new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) 52.86/30.45 new_lt25(yvy40, yvy30, ty_Double) -> new_lt18(yvy40, yvy30) 52.86/30.45 new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, 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) 52.86/30.45 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 52.86/30.45 new_ltEs22(yvy172, yvy173, ty_Ordering) -> new_ltEs16(yvy172, yvy173) 52.86/30.45 new_compare111(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, yvy269, ccg, cch, cda) -> new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, ccg, cch, cda) 52.86/30.45 new_ltEs15(Right(yvy1650), Right(yvy1660), bbd, ty_Double) -> new_ltEs17(yvy1650, yvy1660) 52.86/30.45 new_ltEs19(yvy179, yvy180, app(ty_Ratio, dh)) -> new_ltEs18(yvy179, yvy180, dh) 52.86/30.45 new_ltEs21(yvy165, yvy166, ty_Char) -> new_ltEs8(yvy165, yvy166) 52.86/30.45 new_lt25(yvy40, yvy30, app(app(app(ty_@3, be), bf), bg)) -> new_lt13(yvy40, yvy30, be, bf, bg) 52.86/30.45 new_esEs6(yvy402, yvy302, ty_Double) -> new_esEs27(yvy402, yvy302) 52.86/30.45 new_ltEs6(yvy1652, yvy1662, ty_Bool) -> new_ltEs13(yvy1652, yvy1662) 52.86/30.45 new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) 52.86/30.45 new_lt20(yvy190, yvy192, ty_Double) -> new_lt18(yvy190, yvy192) 52.86/30.45 new_not(False) -> True 52.86/30.45 new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, yvy90, new_gt4(new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba))), h, ba) 52.86/30.45 new_ltEs23(yvy1651, yvy1661, app(app(app(ty_@3, gbe), gbf), gbg)) -> new_ltEs5(yvy1651, yvy1661, gbe, gbf, gbg) 52.86/30.45 new_esEs8(yvy400, yvy300, app(ty_Ratio, dgh)) -> new_esEs28(yvy400, yvy300, dgh) 52.86/30.45 new_ltEs6(yvy1652, yvy1662, ty_Integer) -> new_ltEs11(yvy1652, yvy1662) 52.86/30.45 new_compare18(GT, EQ) -> GT 52.86/30.45 new_esEs5(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.86/30.45 new_ltEs24(yvy156, yvy159, ty_Ordering) -> new_ltEs16(yvy156, yvy159) 52.86/30.45 new_ltEs21(yvy165, yvy166, ty_@0) -> new_ltEs4(yvy165, yvy166) 52.86/30.45 new_ltEs6(yvy1652, yvy1662, app(app(app(ty_@3, ecc), ecd), ece)) -> new_ltEs5(yvy1652, yvy1662, ecc, ecd, ece) 52.86/30.45 new_ltEs6(yvy1652, yvy1662, ty_@0) -> new_ltEs4(yvy1652, yvy1662) 52.86/30.45 new_ltEs24(yvy156, yvy159, ty_Integer) -> new_ltEs11(yvy156, yvy159) 52.86/30.45 new_gt14(yvy35, yvy30, ty_Double) -> new_gt0(yvy35, yvy30) 52.86/30.45 new_esEs41(LT) -> False 52.86/30.45 new_gt(yvy81, yvy76, app(ty_[], faf)) -> new_gt5(yvy81, yvy76, faf) 52.86/30.45 new_esEs9(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.86/30.45 new_compare11(yvy247, yvy248, yvy249, yvy250, True, yvy252, gea, geb) -> new_compare110(yvy247, yvy248, yvy249, yvy250, True, gea, geb) 52.86/30.45 new_esEs37(yvy4001, yvy3001, app(ty_[], cbd)) -> new_esEs18(yvy4001, yvy3001, cbd) 52.86/30.45 new_lt26(yvy20, yvy15, app(ty_Ratio, gdh)) -> new_lt19(yvy20, yvy15, gdh) 52.86/30.45 new_ltEs20(yvy191, yvy193, app(ty_Ratio, bac)) -> new_ltEs18(yvy191, yvy193, bac) 52.86/30.45 new_ltEs21(yvy165, yvy166, ty_Bool) -> new_ltEs13(yvy165, yvy166) 52.86/30.45 new_esEs4(yvy401, yvy301, ty_Double) -> new_esEs27(yvy401, yvy301) 52.86/30.45 new_esEs38(yvy4000, yvy3000, app(app(ty_@2, cca), ccb)) -> new_esEs21(yvy4000, yvy3000, cca, ccb) 52.86/30.45 new_esEs8(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.86/30.45 new_ltEs23(yvy1651, yvy1661, app(ty_Maybe, gbh)) -> new_ltEs14(yvy1651, yvy1661, gbh) 52.86/30.45 new_compare29(Nothing, Nothing, bh) -> EQ 52.86/30.45 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Double, bgg) -> new_esEs27(yvy4000, yvy3000) 52.86/30.45 new_esEs9(yvy400, yvy300, app(app(app(ty_@3, gec), ged), gee)) -> new_esEs22(yvy400, yvy300, gec, ged, gee) 52.86/30.45 new_sr0(yvy400, yvy301) -> new_primMulInt(yvy400, yvy301) 52.86/30.45 new_ltEs23(yvy1651, yvy1661, app(ty_Ratio, gcc)) -> new_ltEs18(yvy1651, yvy1661, gcc) 52.86/30.45 new_ltEs24(yvy156, yvy159, ty_Bool) -> new_ltEs13(yvy156, yvy159) 52.86/30.45 new_gt(yvy81, yvy76, app(app(ty_@2, fag), fah)) -> new_gt1(yvy81, yvy76, fag, fah) 52.86/30.45 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 52.86/30.45 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 52.86/30.45 new_splitLT10(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, fcd, fce) -> new_mkVBalBranch0(yvy60, yvy61, yvy63, new_splitLT0(yvy64, yvy65, fcd, fce), fcd, fce) 52.86/30.45 new_esEs9(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.86/30.45 new_ltEs23(yvy1651, yvy1661, ty_@0) -> new_ltEs4(yvy1651, yvy1661) 52.86/30.45 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, edd), ede), edf), bgg) -> new_esEs22(yvy4000, yvy3000, edd, ede, edf) 52.86/30.45 new_lt25(yvy40, yvy30, ty_Integer) -> new_lt11(yvy40, yvy30) 52.86/30.45 new_esEs14(yvy1650, yvy1660, app(ty_[], dhd)) -> new_esEs18(yvy1650, yvy1660, dhd) 52.86/30.45 new_ltEs24(yvy156, yvy159, app(app(ty_Either, dcf), dcg)) -> new_ltEs15(yvy156, yvy159, dcf, dcg) 52.86/30.45 new_esEs18(:(yvy4000, yvy4001), [], bgh) -> False 52.86/30.45 new_esEs18([], :(yvy3000, yvy3001), bgh) -> False 52.86/30.45 new_ltEs23(yvy1651, yvy1661, ty_Bool) -> new_ltEs13(yvy1651, yvy1661) 52.86/30.45 new_lt9(yvy40, yvy30) -> new_esEs12(new_compare8(yvy40, yvy30)) 52.86/30.45 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 52.86/30.45 new_ltEs18(yvy165, yvy166, bbf) -> new_fsEs(new_compare12(yvy165, yvy166, bbf)) 52.86/30.45 new_ltEs22(yvy172, yvy173, app(ty_Ratio, fea)) -> new_ltEs18(yvy172, yvy173, fea) 52.86/30.45 new_esEs26(EQ, EQ) -> True 52.86/30.45 new_ltEs21(yvy165, yvy166, ty_Integer) -> new_ltEs11(yvy165, yvy166) 52.86/30.45 new_esEs8(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.86/30.45 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.86/30.45 new_lt6(yvy1651, yvy1661, ty_Double) -> new_lt18(yvy1651, yvy1661) 52.86/30.45 new_compare15(yvy223, yvy224, True, dde) -> LT 52.86/30.45 new_esEs26(LT, LT) -> True 52.86/30.45 new_esEs36(yvy4002, yvy3002, app(app(ty_@2, bhe), bhf)) -> new_esEs21(yvy4002, yvy3002, bhe, bhf) 52.86/30.45 new_esEs9(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.86/30.45 new_esEs24(Nothing, Nothing, bgc) -> True 52.86/30.45 new_addToFM_C0(EmptyFM, yvy40, yvy41, h, ba) -> Branch(yvy40, yvy41, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) 52.86/30.45 new_esEs13(yvy1651, yvy1661, app(app(ty_@2, eag), eah)) -> new_esEs21(yvy1651, yvy1661, eag, eah) 52.86/30.45 new_ltEs21(yvy165, yvy166, ty_Int) -> new_ltEs9(yvy165, yvy166) 52.86/30.45 new_ltEs21(yvy165, yvy166, app(ty_Ratio, bbf)) -> new_ltEs18(yvy165, yvy166, bbf) 52.86/30.45 new_ltEs22(yvy172, yvy173, ty_Bool) -> new_ltEs13(yvy172, yvy173) 52.86/30.45 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 52.86/30.45 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 52.86/30.45 new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, ea, eb) -> new_splitLT0(yvy33, yvy35, ea, eb) 52.86/30.45 new_ltEs24(yvy156, yvy159, ty_Char) -> new_ltEs8(yvy156, yvy159) 52.86/30.45 new_lt23(yvy155, yvy158, ty_Double) -> new_lt18(yvy155, yvy158) 52.86/30.45 new_gt14(yvy35, yvy30, app(ty_[], ec)) -> new_gt5(yvy35, yvy30, ec) 52.86/30.45 new_primEqNat0(Zero, Zero) -> True 52.86/30.45 new_esEs37(yvy4001, yvy3001, app(app(ty_@2, cag), cah)) -> new_esEs21(yvy4001, yvy3001, cag, cah) 52.86/30.45 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.86/30.45 new_esEs14(yvy1650, yvy1660, app(app(ty_@2, dhe), dhf)) -> new_esEs21(yvy1650, yvy1660, dhe, dhf) 52.86/30.45 new_ltEs20(yvy191, yvy193, ty_Int) -> new_ltEs9(yvy191, yvy193) 52.86/30.45 new_esEs24(Nothing, Just(yvy3000), bgc) -> False 52.86/30.45 new_esEs24(Just(yvy4000), Nothing, bgc) -> False 52.86/30.45 new_esEs13(yvy1651, yvy1661, app(ty_[], eaf)) -> new_esEs18(yvy1651, yvy1661, eaf) 52.86/30.45 new_esEs25(Right(yvy4000), Right(yvy3000), bgf, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.86/30.45 new_lt26(yvy20, yvy15, ty_Integer) -> new_lt11(yvy20, yvy15) 52.86/30.45 new_compare9(Double(yvy400, Neg(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.86/30.45 new_lt22(yvy154, yvy157, ty_Double) -> new_lt18(yvy154, yvy157) 52.86/30.45 new_asAs(False, yvy208) -> False 52.86/30.45 new_ltEs23(yvy1651, yvy1661, ty_Char) -> new_ltEs8(yvy1651, yvy1661) 52.86/30.45 new_ltEs6(yvy1652, yvy1662, ty_Int) -> new_ltEs9(yvy1652, yvy1662) 52.86/30.45 new_gt14(yvy35, yvy30, app(app(ty_@2, ed), ee)) -> new_gt1(yvy35, yvy30, ed, ee) 52.86/30.45 new_compare111(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, False, yvy269, ccg, cch, cda) -> new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, yvy269, ccg, cch, cda) 52.86/30.45 new_ltEs22(yvy172, yvy173, ty_Integer) -> new_ltEs11(yvy172, yvy173) 52.86/30.45 new_ltEs24(yvy156, yvy159, app(ty_Maybe, dce)) -> new_ltEs14(yvy156, yvy159, dce) 52.86/30.45 new_compare30(yvy400, yvy300, app(ty_Ratio, cec)) -> new_compare12(yvy400, yvy300, cec) 52.86/30.45 new_esEs7(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) 52.86/30.45 new_splitLT10(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, False, fcd, fce) -> yvy63 52.86/30.45 new_gt0(yvy40, yvy30) -> new_esEs41(new_compare9(yvy40, yvy30)) 52.86/30.45 new_ltEs21(yvy165, yvy166, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs5(yvy165, yvy166, bah, bba, bbb) 52.86/30.45 52.86/30.45 The set Q consists of the following terms: 52.86/30.45 52.86/30.45 new_esEs8(x0, x1, ty_Ordering) 52.86/30.45 new_esEs7(x0, x1, ty_Char) 52.86/30.45 new_esEs38(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_lt25(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 52.86/30.45 new_esEs10(x0, x1, ty_Int) 52.86/30.45 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 52.86/30.45 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 52.86/30.45 new_esEs38(x0, x1, app(ty_[], x2)) 52.86/30.45 new_ltEs21(x0, x1, ty_Double) 52.86/30.45 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 52.86/30.45 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 52.86/30.45 new_esEs29(x0, x1, ty_@0) 52.86/30.45 new_lt25(x0, x1, ty_Double) 52.86/30.45 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_esEs7(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_asAs(False, x0) 52.86/30.45 new_lt6(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_esEs8(x0, x1, ty_Double) 52.86/30.45 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_compare30(x0, x1, ty_Char) 52.86/30.45 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_ltEs21(x0, x1, ty_Ordering) 52.86/30.45 new_mkVBalBranch0(x0, x1, EmptyFM, x2, x3, x4) 52.86/30.45 new_compare16(Right(x0), Right(x1), x2, x3) 52.86/30.45 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_compare27(x0, x1, True, x2) 52.86/30.45 new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) 52.86/30.45 new_esEs29(x0, x1, ty_Bool) 52.86/30.45 new_esEs37(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_splitLT20(x0, x1, x2, x3, x4, x5, True, x6, x7) 52.86/30.45 new_lt22(x0, x1, ty_@0) 52.86/30.45 new_lt5(x0, x1, app(ty_[], x2)) 52.86/30.45 new_esEs8(x0, x1, app(ty_[], x2)) 52.86/30.45 new_splitGT20(x0, x1, x2, x3, x4, x5, False, x6, x7) 52.86/30.45 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 52.86/30.45 new_lt5(x0, x1, ty_Float) 52.86/30.45 new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 52.86/30.45 new_ltEs15(Left(x0), Left(x1), ty_Ordering, x2) 52.86/30.45 new_primEqInt(Pos(Zero), Pos(Zero)) 52.86/30.45 new_esEs29(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_primMulNat0(Zero, Succ(x0)) 52.86/30.45 new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), EmptyFM, x7, x8) 52.86/30.45 new_ltEs19(x0, x1, ty_Integer) 52.86/30.45 new_lt25(x0, x1, ty_Ordering) 52.86/30.45 new_primPlusNat1(x0, x1) 52.86/30.45 new_ltEs15(Left(x0), Left(x1), ty_Double, x2) 52.86/30.45 new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 52.86/30.45 new_esEs33(x0, x1, app(ty_[], x2)) 52.86/30.45 new_mkBalBranch6MkBalBranch3(x0, x1, x2, EmptyFM, True, x3, x4) 52.86/30.45 new_esEs36(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_lt20(x0, x1, ty_Char) 52.86/30.45 new_esEs24(Nothing, Just(x0), x1) 52.86/30.45 new_primCompAux00(x0, GT) 52.86/30.45 new_esEs18(:(x0, x1), :(x2, x3), x4) 52.86/30.45 new_lt26(x0, x1, app(ty_[], x2)) 52.86/30.45 new_ltEs20(x0, x1, ty_Ordering) 52.86/30.45 new_ltEs19(x0, x1, ty_Float) 52.86/30.45 new_sr0(x0, x1) 52.86/30.45 new_ltEs7(x0, x1) 52.86/30.45 new_esEs7(x0, x1, ty_Ordering) 52.86/30.45 new_ltEs15(Left(x0), Left(x1), ty_Char, x2) 52.86/30.45 new_lt26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_primEqInt(Neg(Zero), Neg(Zero)) 52.86/30.45 new_gt14(x0, x1, ty_Int) 52.86/30.45 new_gt15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_ltEs11(x0, x1) 52.86/30.45 new_compare0(:(x0, x1), :(x2, x3), x4) 52.86/30.45 new_splitGT30(x0, x1, x2, x3, x4, x5, x6, x7) 52.86/30.45 new_ltEs16(GT, EQ) 52.86/30.45 new_ltEs16(EQ, GT) 52.86/30.45 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 52.86/30.45 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 52.86/30.45 new_esEs39(x0, x1, ty_Int) 52.86/30.45 new_esEs29(x0, x1, app(ty_[], x2)) 52.86/30.45 new_ltEs24(x0, x1, app(ty_[], x2)) 52.86/30.45 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_ltEs21(x0, x1, ty_Char) 52.86/30.45 new_lt11(x0, x1) 52.86/30.45 new_esEs29(x0, x1, ty_Integer) 52.86/30.45 new_ltEs16(LT, LT) 52.86/30.45 new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 52.86/30.45 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 52.86/30.45 new_lt19(x0, x1, x2) 52.86/30.45 new_lt25(x0, x1, ty_Char) 52.86/30.45 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) 52.86/30.45 new_esEs8(x0, x1, ty_Char) 52.86/30.45 new_lt16(x0, x1, x2, x3) 52.86/30.45 new_gt15(x0, x1, ty_Int) 52.86/30.45 new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) 52.86/30.45 new_gt15(x0, x1, ty_@0) 52.86/30.45 new_esEs35(x0, x1, ty_Integer) 52.86/30.45 new_lt24(x0, x1, ty_Float) 52.86/30.45 new_ltEs20(x0, x1, ty_Char) 52.86/30.45 new_primPlusNat0(Zero, Succ(x0)) 52.86/30.45 new_compare30(x0, x1, ty_Double) 52.86/30.45 new_esEs20(Integer(x0), Integer(x1)) 52.86/30.45 new_esEs13(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 52.86/30.45 new_lt23(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_primEqInt(Pos(Zero), Neg(Zero)) 52.86/30.45 new_primEqInt(Neg(Zero), Pos(Zero)) 52.86/30.45 new_esEs25(Left(x0), Left(x1), ty_Float, x2) 52.86/30.45 new_esEs8(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_ltEs20(x0, x1, ty_Double) 52.86/30.45 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_esEs11(x0, x1, ty_Float) 52.86/30.45 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 52.86/30.45 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 52.86/30.45 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_ltEs15(Right(x0), Right(x1), x2, ty_@0) 52.86/30.45 new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) 52.86/30.45 new_esEs34(x0, x1, ty_Integer) 52.86/30.45 new_lt24(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_ltEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) 52.86/30.45 new_mkVBalBranch3MkVBalBranch10(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) 52.86/30.45 new_mkBranch0(x0, x1, x2, x3, x4, x5, x6) 52.86/30.45 new_splitGT0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) 52.86/30.45 new_gt(x0, x1, ty_Char) 52.86/30.45 new_gt(x0, x1, ty_Double) 52.86/30.45 new_compare18(GT, GT) 52.86/30.45 new_ltEs15(Right(x0), Right(x1), x2, ty_Float) 52.86/30.45 new_esEs25(Left(x0), Left(x1), ty_@0, x2) 52.86/30.45 new_lt23(x0, x1, ty_Char) 52.86/30.45 new_compare7(True, True) 52.86/30.45 new_esEs14(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_gt4(x0, x1) 52.86/30.45 new_primCmpNat0(Succ(x0), Zero) 52.86/30.45 new_esEs6(x0, x1, ty_Ordering) 52.86/30.45 new_esEs38(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_lt23(x0, x1, ty_Double) 52.86/30.45 new_lt23(x0, x1, app(ty_[], x2)) 52.86/30.45 new_esEs30(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 52.86/30.45 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 52.86/30.45 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_esEs23(False, False) 52.86/30.45 new_esEs29(x0, x1, ty_Float) 52.86/30.45 new_compare19(Char(x0), Char(x1)) 52.86/30.45 new_compare29(Nothing, Just(x0), x1) 52.86/30.45 new_mkVBalBranch3MkVBalBranch20(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) 52.86/30.45 new_esEs32(x0, x1, ty_Double) 52.86/30.45 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_gt14(x0, x1, ty_Bool) 52.86/30.45 new_primEqNat0(Succ(x0), Succ(x1)) 52.86/30.45 new_esEs31(x0, x1, ty_Float) 52.86/30.45 new_esEs24(Just(x0), Just(x1), ty_Float) 52.86/30.45 new_gt14(x0, x1, ty_Integer) 52.86/30.45 new_esEs25(Right(x0), Right(x1), x2, ty_Int) 52.86/30.45 new_lt24(x0, x1, ty_Integer) 52.86/30.45 new_esEs31(x0, x1, ty_Char) 52.86/30.45 new_esEs12(GT) 52.86/30.45 new_lt20(x0, x1, ty_Ordering) 52.86/30.45 new_gt15(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_esEs26(LT, EQ) 52.86/30.45 new_esEs26(EQ, LT) 52.86/30.45 new_primCompAux0(x0, x1, x2, x3) 52.86/30.45 new_esEs25(Left(x0), Left(x1), ty_Bool, x2) 52.86/30.45 new_esEs5(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_ltEs19(x0, x1, ty_@0) 52.86/30.45 new_ltEs16(LT, EQ) 52.86/30.45 new_ltEs16(EQ, LT) 52.86/30.45 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_lt22(x0, x1, ty_Float) 52.86/30.45 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_compare26(x0, x1, x2, x3, False, x4, x5) 52.86/30.45 new_primPlusInt(Pos(x0), Neg(x1)) 52.86/30.45 new_primPlusInt(Neg(x0), Pos(x1)) 52.86/30.45 new_lt21(x0, x1, ty_Float) 52.86/30.45 new_esEs5(x0, x1, app(ty_[], x2)) 52.86/30.45 new_ltEs22(x0, x1, ty_Int) 52.86/30.45 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_esEs24(Just(x0), Just(x1), ty_Char) 52.86/30.45 new_esEs30(x0, x1, ty_Int) 52.86/30.45 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_lt22(x0, x1, ty_Integer) 52.86/30.45 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_compare110(x0, x1, x2, x3, False, x4, x5) 52.86/30.45 new_lt26(x0, x1, ty_Integer) 52.86/30.45 new_lt20(x0, x1, ty_Double) 52.86/30.45 new_ltEs23(x0, x1, ty_Char) 52.86/30.45 new_esEs18([], :(x0, x1), x2) 52.86/30.45 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_ltEs24(x0, x1, ty_Char) 52.86/30.45 new_lt7(x0, x1) 52.86/30.45 new_esEs37(x0, x1, app(ty_[], x2)) 52.86/30.45 new_ltEs15(Right(x0), Right(x1), x2, ty_Bool) 52.86/30.45 new_gt(x0, x1, ty_Ordering) 52.86/30.45 new_esEs40(x0, x1, ty_@0) 52.86/30.45 new_lt25(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_esEs7(x0, x1, ty_Double) 52.86/30.45 new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 52.86/30.45 new_lt25(x0, x1, app(ty_[], x2)) 52.86/30.45 new_lt22(x0, x1, ty_Int) 52.86/30.45 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, EmptyFM, x5, x6, False, x7, x8) 52.86/30.45 new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) 52.86/30.45 new_ltEs23(x0, x1, ty_Ordering) 52.86/30.45 new_lt24(x0, x1, ty_Ordering) 52.86/30.45 new_esEs37(x0, x1, ty_Int) 52.86/30.45 new_ltEs14(Just(x0), Just(x1), ty_Double) 52.86/30.45 new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 52.86/30.45 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_gt0(x0, x1) 52.86/30.45 new_esEs33(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_esEs39(x0, x1, ty_Integer) 52.86/30.45 new_compare14(Integer(x0), Integer(x1)) 52.86/30.45 new_esEs10(x0, x1, ty_@0) 52.86/30.45 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_esEs25(Left(x0), Left(x1), ty_Integer, x2) 52.86/30.45 new_esEs6(x0, x1, ty_Char) 52.86/30.45 new_esEs4(x0, x1, ty_Int) 52.86/30.45 new_compare0(:(x0, x1), [], x2) 52.86/30.45 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_lt18(x0, x1) 52.86/30.45 new_ltEs15(Right(x0), Right(x1), x2, ty_Integer) 52.86/30.45 new_compare15(x0, x1, True, x2) 52.86/30.45 new_esEs14(x0, x1, ty_Int) 52.86/30.45 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_lt22(x0, x1, ty_Bool) 52.86/30.45 new_lt5(x0, x1, ty_@0) 52.86/30.45 new_ltEs19(x0, x1, app(ty_[], x2)) 52.86/30.45 new_lt5(x0, x1, ty_Double) 52.86/30.45 new_esEs40(x0, x1, app(ty_[], x2)) 52.86/30.45 new_esEs32(x0, x1, ty_@0) 52.86/30.45 new_compare25(x0, x1, False, x2, x3) 52.86/30.45 new_gt(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_compare17(x0, x1, True, x2, x3) 52.86/30.45 new_ltEs21(x0, x1, app(ty_[], x2)) 52.86/30.45 new_splitLT10(x0, x1, x2, x3, x4, x5, False, x6, x7) 52.86/30.45 new_primPlusInt(Neg(x0), Neg(x1)) 52.86/30.45 new_esEs35(x0, x1, ty_Int) 52.86/30.45 new_esEs29(x0, x1, ty_Int) 52.86/30.45 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 52.86/30.45 new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 52.86/30.45 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_esEs26(EQ, EQ) 52.86/30.45 new_ltEs13(True, True) 52.86/30.45 new_ltEs6(x0, x1, ty_Double) 52.86/30.45 new_esEs5(x0, x1, app(ty_Maybe, x2)) 52.86/30.45 new_lt24(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 52.86/30.45 new_mkBalBranch(x0, x1, x2, x3, x4, x5) 52.86/30.45 new_esEs37(x0, x1, ty_@0) 52.86/30.45 new_lt26(x0, x1, ty_Char) 52.86/30.45 new_esEs23(False, True) 52.86/30.45 new_esEs23(True, False) 52.86/30.45 new_sizeFM0(EmptyFM, x0, x1) 52.86/30.45 new_ltEs21(x0, x1, ty_Float) 52.86/30.45 new_esEs25(Right(x0), Right(x1), x2, ty_Bool) 52.86/30.45 new_esEs9(x0, x1, ty_Ordering) 52.86/30.45 new_ltEs15(Right(x0), Left(x1), x2, x3) 52.86/30.45 new_ltEs15(Left(x0), Right(x1), x2, x3) 52.86/30.45 new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 52.86/30.45 new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.45 new_compare25(x0, x1, True, x2, x3) 52.86/30.45 new_compare18(GT, LT) 52.86/30.45 new_compare18(LT, GT) 52.86/30.45 new_lt22(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_esEs11(x0, x1, ty_Int) 52.86/30.45 new_primCompAux00(x0, EQ) 52.86/30.45 new_lt23(x0, x1, app(ty_Ratio, x2)) 52.86/30.45 new_esEs25(Right(x0), Right(x1), x2, ty_@0) 52.86/30.45 new_lt25(x0, x1, ty_Float) 52.86/30.45 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.45 new_esEs5(x0, x1, ty_Int) 52.86/30.45 new_gt14(x0, x1, ty_Float) 52.86/30.45 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.45 new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.86/30.45 new_addToFM_C0(EmptyFM, x0, x1, x2, x3) 52.86/30.45 new_pePe(True, x0) 52.86/30.46 new_esEs30(x0, x1, ty_Bool) 52.86/30.46 new_esEs11(x0, x1, ty_Char) 52.86/30.46 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs25(Right(x0), Right(x1), x2, ty_Integer) 52.86/30.46 new_gt15(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_ltEs20(x0, x1, ty_Float) 52.86/30.46 new_lt26(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs5(x0, x1, ty_Char) 52.86/30.46 new_lt24(x0, x1, app(ty_[], x2)) 52.86/30.46 new_gt10(x0, x1, x2) 52.86/30.46 new_ltEs24(x0, x1, ty_Ordering) 52.86/30.46 new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 52.86/30.46 new_lt26(x0, x1, ty_Int) 52.86/30.46 new_esEs32(x0, x1, ty_Bool) 52.86/30.46 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_mkBranchResult(x0, x1, x2, x3, x4, x5) 52.86/30.46 new_esEs37(x0, x1, ty_Bool) 52.86/30.46 new_gt(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 52.86/30.46 new_compare28(x0, x1, False, x2, x3) 52.86/30.46 new_ltEs20(x0, x1, ty_Integer) 52.86/30.46 new_ltEs19(x0, x1, ty_Ordering) 52.86/30.46 new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 52.86/30.46 new_esEs13(x0, x1, ty_Bool) 52.86/30.46 new_lt6(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_ltEs24(x0, x1, ty_Double) 52.86/30.46 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) 52.86/30.46 new_splitGT10(x0, x1, x2, x3, x4, x5, False, x6, x7) 52.86/30.46 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs36(x0, x1, ty_Integer) 52.86/30.46 new_primPlusNat0(Zero, Zero) 52.86/30.46 new_lt21(x0, x1, ty_@0) 52.86/30.46 new_lt8(x0, x1) 52.86/30.46 new_esEs8(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_not(True) 52.86/30.46 new_lt10(x0, x1, x2) 52.86/30.46 new_esEs4(x0, x1, ty_Ordering) 52.86/30.46 new_esEs32(x0, x1, ty_Integer) 52.86/30.46 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_lt26(x0, x1, ty_Double) 52.86/30.46 new_ltEs13(False, False) 52.86/30.46 new_lt21(x0, x1, ty_Int) 52.86/30.46 new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) 52.86/30.46 new_splitLT10(x0, x1, x2, x3, x4, x5, True, x6, x7) 52.86/30.46 new_esEs9(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 52.86/30.46 new_lt21(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_lt21(x0, x1, ty_Integer) 52.86/30.46 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 52.86/30.46 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_lt25(x0, x1, ty_Integer) 52.86/30.46 new_gt(x0, x1, ty_Float) 52.86/30.46 new_esEs18(:(x0, x1), [], x2) 52.86/30.46 new_esEs5(x0, x1, ty_@0) 52.86/30.46 new_esEs38(x0, x1, ty_Ordering) 52.86/30.46 new_lt21(x0, x1, ty_Char) 52.86/30.46 new_esEs36(x0, x1, app(ty_[], x2)) 52.86/30.46 new_ltEs6(x0, x1, ty_Ordering) 52.86/30.46 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_ltEs14(Nothing, Nothing, x0) 52.86/30.46 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_esEs36(x0, x1, ty_Bool) 52.86/30.46 new_esEs11(x0, x1, ty_@0) 52.86/30.46 new_esEs10(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_lt5(x0, x1, ty_Ordering) 52.86/30.46 new_lt21(x0, x1, ty_Bool) 52.86/30.46 new_lt15(x0, x1, x2) 52.86/30.46 new_ltEs23(x0, x1, app(ty_[], x2)) 52.86/30.46 new_esEs39(x0, x1, ty_@0) 52.86/30.46 new_splitGT10(x0, x1, x2, x3, x4, x5, True, x6, x7) 52.86/30.46 new_lt24(x0, x1, ty_@0) 52.86/30.46 new_esEs24(Nothing, Nothing, x0) 52.86/30.46 new_esEs36(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_gt15(x0, x1, ty_Float) 52.86/30.46 new_lt26(x0, x1, ty_Bool) 52.86/30.46 new_lt6(x0, x1, ty_@0) 52.86/30.46 new_esEs37(x0, x1, ty_Integer) 52.86/30.46 new_esEs13(x0, x1, ty_Integer) 52.86/30.46 new_ltEs20(x0, x1, ty_Bool) 52.86/30.46 new_esEs8(x0, x1, ty_Float) 52.86/30.46 new_esEs24(Just(x0), Just(x1), ty_Ordering) 52.86/30.46 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 52.86/30.46 new_lt6(x0, x1, app(ty_[], x2)) 52.86/30.46 new_lt25(x0, x1, ty_@0) 52.86/30.46 new_ltEs21(x0, x1, ty_@0) 52.86/30.46 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_ltEs21(x0, x1, ty_Bool) 52.86/30.46 new_esEs7(x0, x1, app(ty_[], x2)) 52.86/30.46 new_esEs40(x0, x1, ty_Integer) 52.86/30.46 new_esEs31(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_esEs30(x0, x1, ty_Double) 52.86/30.46 new_esEs24(Just(x0), Just(x1), ty_Double) 52.86/30.46 new_gt8(x0, x1, x2, x3, x4) 52.86/30.46 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_esEs31(x0, x1, ty_Ordering) 52.86/30.46 new_esEs36(x0, x1, ty_Char) 52.86/30.46 new_ltEs14(Just(x0), Just(x1), ty_Char) 52.86/30.46 new_gt14(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_lt20(x0, x1, ty_Float) 52.86/30.46 new_fsEs(x0) 52.86/30.46 new_lt24(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_primMulInt(Neg(x0), Neg(x1)) 52.86/30.46 new_gt14(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs36(x0, x1, ty_Int) 52.86/30.46 new_ltEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 52.86/30.46 new_esEs11(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs26(EQ, GT) 52.86/30.46 new_esEs26(GT, EQ) 52.86/30.46 new_splitLT30(x0, x1, x2, x3, x4, x5, x6, x7) 52.86/30.46 new_esEs15(Float(x0, x1), Float(x2, x3)) 52.86/30.46 new_primPlusInt(Pos(x0), Pos(x1)) 52.86/30.46 new_gt(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs33(x0, x1, ty_Char) 52.86/30.46 new_esEs5(x0, x1, ty_Bool) 52.86/30.46 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 52.86/30.46 new_esEs31(x0, x1, ty_Double) 52.86/30.46 new_ltEs21(x0, x1, ty_Integer) 52.86/30.46 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 52.86/30.46 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 52.86/30.46 new_esEs11(x0, x1, ty_Bool) 52.86/30.46 new_esEs33(x0, x1, ty_Int) 52.86/30.46 new_ltEs20(x0, x1, app(ty_[], x2)) 52.86/30.46 new_lt20(x0, x1, app(ty_[], x2)) 52.86/30.46 new_addToFM(x0, x1, x2, x3, x4) 52.86/30.46 new_esEs36(x0, x1, ty_Float) 52.86/30.46 new_primMulInt(Pos(x0), Pos(x1)) 52.86/30.46 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_primEqNat0(Zero, Zero) 52.86/30.46 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), False, x12, x13) 52.86/30.46 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_esEs32(x0, x1, ty_Int) 52.86/30.46 new_ltEs4(x0, x1) 52.86/30.46 new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 52.86/30.46 new_lt20(x0, x1, ty_Int) 52.86/30.46 new_ltEs22(x0, x1, ty_Ordering) 52.86/30.46 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_not(False) 52.86/30.46 new_lt26(x0, x1, ty_Float) 52.86/30.46 new_mkBalBranch6MkBalBranch4(x0, x1, EmptyFM, x2, True, x3, x4) 52.86/30.46 new_ltEs14(Just(x0), Just(x1), ty_Bool) 52.86/30.46 new_gt15(x0, x1, ty_Bool) 52.86/30.46 new_compare16(Right(x0), Left(x1), x2, x3) 52.86/30.46 new_compare16(Left(x0), Right(x1), x2, x3) 52.86/30.46 new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) 52.86/30.46 new_esEs13(x0, x1, ty_Char) 52.86/30.46 new_esEs12(LT) 52.86/30.46 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs13(x0, x1, ty_Int) 52.86/30.46 new_esEs32(x0, x1, ty_Char) 52.86/30.46 new_esEs40(x0, x1, ty_Bool) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 52.86/30.46 new_mkVBalBranch3MkVBalBranch10(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) 52.86/30.46 new_esEs33(x0, x1, ty_Integer) 52.86/30.46 new_esEs40(x0, x1, ty_Float) 52.86/30.46 new_ltEs14(Just(x0), Just(x1), ty_Float) 52.86/30.46 new_esEs14(x0, x1, ty_@0) 52.86/30.46 new_gt3(x0, x1) 52.86/30.46 new_esEs33(x0, x1, ty_Bool) 52.86/30.46 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) 52.86/30.46 new_ltEs9(x0, x1) 52.86/30.46 new_esEs32(x0, x1, ty_Float) 52.86/30.46 new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_gt14(x0, x1, app(ty_[], x2)) 52.86/30.46 new_esEs41(LT) 52.86/30.46 new_lt20(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_gt15(x0, x1, ty_Integer) 52.86/30.46 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_compare29(Just(x0), Just(x1), x2) 52.86/30.46 new_gt14(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 52.86/30.46 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 52.86/30.46 new_esEs40(x0, x1, ty_Int) 52.86/30.46 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_esEs5(x0, x1, ty_Integer) 52.86/30.46 new_esEs4(x0, x1, ty_Double) 52.86/30.46 new_esEs13(x0, x1, ty_Float) 52.86/30.46 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 52.86/30.46 new_esEs11(x0, x1, ty_Integer) 52.86/30.46 new_esEs29(x0, x1, ty_Double) 52.86/30.46 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_lt25(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_addToFM_C0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) 52.86/30.46 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs40(x0, x1, ty_Char) 52.86/30.46 new_ltEs14(Just(x0), Just(x1), ty_Int) 52.86/30.46 new_esEs6(x0, x1, ty_@0) 52.86/30.46 new_compare30(x0, x1, ty_Ordering) 52.86/30.46 new_compare28(x0, x1, True, x2, x3) 52.86/30.46 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 52.86/30.46 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_primPlusNat0(Succ(x0), Zero) 52.86/30.46 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), ty_Int, x2) 52.86/30.46 new_lt23(x0, x1, ty_Bool) 52.86/30.46 new_esEs9(x0, x1, ty_Float) 52.86/30.46 new_compare30(x0, x1, ty_Int) 52.86/30.46 new_esEs31(x0, x1, app(ty_[], x2)) 52.86/30.46 new_gt15(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_gt(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_ltEs6(x0, x1, ty_Integer) 52.86/30.46 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_lt5(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_lt12(x0, x1, x2, x3) 52.86/30.46 new_mkVBalBranch3Size_l(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) 52.86/30.46 new_esEs18([], [], x0) 52.86/30.46 new_lt20(x0, x1, ty_@0) 52.86/30.46 new_ltEs24(x0, x1, ty_Float) 52.86/30.46 new_sr(Integer(x0), Integer(x1)) 52.86/30.46 new_compare26(x0, x1, x2, x3, True, x4, x5) 52.86/30.46 new_lt23(x0, x1, ty_@0) 52.86/30.46 new_esEs8(x0, x1, ty_Int) 52.86/30.46 new_lt20(x0, x1, ty_Bool) 52.86/30.46 new_esEs10(x0, x1, ty_Ordering) 52.86/30.46 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 52.86/30.46 new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 52.86/30.46 new_gt15(x0, x1, app(ty_[], x2)) 52.86/30.46 new_primMinusNat0(Zero, Zero) 52.86/30.46 new_esEs7(x0, x1, ty_Int) 52.86/30.46 new_esEs6(x0, x1, ty_Bool) 52.86/30.46 new_emptyFM(x0, x1) 52.86/30.46 new_lt23(x0, x1, ty_Integer) 52.86/30.46 new_gt14(x0, x1, ty_Double) 52.86/30.46 new_gt12(x0, x1) 52.86/30.46 new_ltEs17(x0, x1) 52.86/30.46 new_esEs14(x0, x1, app(ty_[], x2)) 52.86/30.46 new_gt14(x0, x1, ty_Char) 52.86/30.46 new_gt6(x0, x1) 52.86/30.46 new_lt25(x0, x1, ty_Int) 52.86/30.46 new_primCmpNat0(Zero, Succ(x0)) 52.86/30.46 new_esEs26(LT, GT) 52.86/30.46 new_esEs26(GT, LT) 52.86/30.46 new_mkVBalBranch3MkVBalBranch20(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) 52.86/30.46 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_gt14(x0, x1, ty_Ordering) 52.86/30.46 new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 52.86/30.46 new_gt1(x0, x1, x2, x3) 52.86/30.46 new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) 52.86/30.46 new_gt15(x0, x1, ty_Char) 52.86/30.46 new_esEs31(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_primMulNat0(Succ(x0), Zero) 52.86/30.46 new_esEs9(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_sIZE_RATIO 52.86/30.46 new_esEs6(x0, x1, ty_Integer) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 52.86/30.46 new_ltEs23(x0, x1, ty_Float) 52.86/30.46 new_ltEs13(False, True) 52.86/30.46 new_ltEs13(True, False) 52.86/30.46 new_lt20(x0, x1, ty_Integer) 52.86/30.46 new_ltEs24(x0, x1, ty_Integer) 52.86/30.46 new_compare18(EQ, LT) 52.86/30.46 new_compare18(LT, EQ) 52.86/30.46 new_ltEs20(x0, x1, ty_Int) 52.86/30.46 new_esEs9(x0, x1, app(ty_[], x2)) 52.86/30.46 new_lt22(x0, x1, ty_Ordering) 52.86/30.46 new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) 52.86/30.46 new_ltEs23(x0, x1, ty_@0) 52.86/30.46 new_esEs33(x0, x1, ty_Float) 52.86/30.46 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs9(x0, x1, ty_Integer) 52.86/30.46 new_lt6(x0, x1, ty_Float) 52.86/30.46 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_compare18(LT, LT) 52.86/30.46 new_gt(x0, x1, ty_Bool) 52.86/30.46 new_ltEs22(x0, x1, ty_Double) 52.86/30.46 new_ltEs21(x0, x1, ty_Int) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), ty_Bool, x2) 52.86/30.46 new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 52.86/30.46 new_compare11(x0, x1, x2, x3, False, x4, x5, x6) 52.86/30.46 new_splitGT20(x0, x1, x2, x3, x4, x5, True, x6, x7) 52.86/30.46 new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) 52.86/30.46 new_ltEs14(Just(x0), Just(x1), ty_Integer) 52.86/30.46 new_esEs5(x0, x1, ty_Float) 52.86/30.46 new_esEs39(x0, x1, ty_Double) 52.86/30.46 new_lt21(x0, x1, app(ty_[], x2)) 52.86/30.46 new_esEs40(x0, x1, ty_Ordering) 52.86/30.46 new_esEs4(x0, x1, app(ty_[], x2)) 52.86/30.46 new_esEs29(x0, x1, ty_Ordering) 52.86/30.46 new_gt(x0, x1, ty_@0) 52.86/30.46 new_esEs8(x0, x1, ty_@0) 52.86/30.46 new_pePe(False, x0) 52.86/30.46 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_esEs36(x0, x1, ty_Double) 52.86/30.46 new_lt23(x0, x1, ty_Int) 52.86/30.46 new_lt17(x0, x1) 52.86/30.46 new_splitLT0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) 52.86/30.46 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 52.86/30.46 new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs39(x0, x1, ty_Char) 52.86/30.46 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_gt(x0, x1, ty_Int) 52.86/30.46 new_gt15(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) 52.86/30.46 new_primEqNat0(Succ(x0), Zero) 52.86/30.46 new_compare110(x0, x1, x2, x3, True, x4, x5) 52.86/30.46 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 52.86/30.46 new_compare30(x0, x1, ty_@0) 52.86/30.46 new_lt23(x0, x1, ty_Float) 52.86/30.46 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), ty_Integer, x2) 52.86/30.46 new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs41(GT) 52.86/30.46 new_esEs8(x0, x1, ty_Bool) 52.86/30.46 new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) 52.86/30.46 new_esEs23(True, True) 52.86/30.46 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs13(x0, x1, ty_Double) 52.86/30.46 new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 52.86/30.46 new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.86/30.46 new_esEs6(x0, x1, app(ty_[], x2)) 52.86/30.46 new_lt25(x0, x1, ty_Bool) 52.86/30.46 new_esEs30(x0, x1, ty_Float) 52.86/30.46 new_esEs32(x0, x1, app(ty_[], x2)) 52.86/30.46 new_primPlusNat0(Succ(x0), Succ(x1)) 52.86/30.46 new_ltEs15(Right(x0), Right(x1), x2, ty_Char) 52.86/30.46 new_compare18(EQ, GT) 52.86/30.46 new_compare18(GT, EQ) 52.86/30.46 new_esEs30(x0, x1, app(ty_[], x2)) 52.86/30.46 new_ltEs10(x0, x1, x2) 52.86/30.46 new_ltEs16(GT, GT) 52.86/30.46 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 52.86/30.46 new_lt6(x0, x1, ty_Integer) 52.86/30.46 new_ltEs22(x0, x1, ty_Char) 52.86/30.46 new_ltEs24(x0, x1, ty_Bool) 52.86/30.46 new_compare30(x0, x1, app(ty_[], x2)) 52.86/30.46 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 52.86/30.46 new_mkBalBranch6MkBalBranch3(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) 52.86/30.46 new_esEs33(x0, x1, ty_@0) 52.86/30.46 new_gt(x0, x1, ty_Integer) 52.86/30.46 new_lt25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 52.86/30.46 new_lt26(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 52.86/30.46 new_ltEs23(x0, x1, ty_Int) 52.86/30.46 new_lt13(x0, x1, x2, x3, x4) 52.86/30.46 new_esEs26(GT, GT) 52.86/30.46 new_ltEs20(x0, x1, ty_@0) 52.86/30.46 new_compare27(x0, x1, False, x2) 52.86/30.46 new_esEs14(x0, x1, ty_Integer) 52.86/30.46 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), app(ty_[], x2), x3) 52.86/30.46 new_esEs30(x0, x1, ty_Ordering) 52.86/30.46 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_esEs36(x0, x1, ty_Ordering) 52.86/30.46 new_esEs30(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_gt15(x0, x1, ty_Double) 52.86/30.46 new_compare0([], [], x0) 52.86/30.46 new_sr1(Neg(x0)) 52.86/30.46 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs9(x0, x1, ty_@0) 52.86/30.46 new_splitLT0(EmptyFM, x0, x1, x2) 52.86/30.46 new_esEs24(Just(x0), Just(x1), ty_Int) 52.86/30.46 new_ltEs6(x0, x1, app(ty_[], x2)) 52.86/30.46 new_esEs31(x0, x1, ty_Int) 52.86/30.46 new_esEs25(Right(x0), Right(x1), x2, ty_Float) 52.86/30.46 new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs4(x0, x1, ty_Float) 52.86/30.46 new_esEs4(x0, x1, ty_Integer) 52.86/30.46 new_esEs14(x0, x1, ty_Float) 52.86/30.46 new_primCmpInt(Neg(Zero), Neg(Zero)) 52.86/30.46 new_lt6(x0, x1, ty_Ordering) 52.86/30.46 new_ltEs22(x0, x1, ty_Float) 52.86/30.46 new_esEs37(x0, x1, ty_Char) 52.86/30.46 new_lt25(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs7(x0, x1, ty_@0) 52.86/30.46 new_esEs30(x0, x1, ty_Char) 52.86/30.46 new_esEs29(x0, x1, ty_Char) 52.86/30.46 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_primCmpInt(Pos(Zero), Neg(Zero)) 52.86/30.46 new_primCmpInt(Neg(Zero), Pos(Zero)) 52.86/30.46 new_ltEs15(Right(x0), Right(x1), x2, ty_Ordering) 52.86/30.46 new_esEs14(x0, x1, ty_Bool) 52.86/30.46 new_esEs25(Left(x0), Right(x1), x2, x3) 52.86/30.46 new_esEs25(Right(x0), Left(x1), x2, x3) 52.86/30.46 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) 52.86/30.46 new_esEs38(x0, x1, ty_@0) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), ty_@0, x2) 52.86/30.46 new_ltEs19(x0, x1, ty_Double) 52.86/30.46 new_esEs30(x0, x1, ty_Integer) 52.86/30.46 new_esEs10(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_gt5(x0, x1, x2) 52.86/30.46 new_ltEs6(x0, x1, ty_@0) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 52.86/30.46 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_ltEs23(x0, x1, ty_Bool) 52.86/30.46 new_compare7(False, False) 52.86/30.46 new_esEs10(x0, x1, ty_Double) 52.86/30.46 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_lt22(x0, x1, ty_Char) 52.86/30.46 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_compare30(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_ltEs23(x0, x1, ty_Integer) 52.86/30.46 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_sr1(Pos(x0)) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 52.86/30.46 new_primMinusNat0(Succ(x0), Succ(x1)) 52.86/30.46 new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) 52.86/30.46 new_esEs39(x0, x1, ty_Ordering) 52.86/30.46 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 52.86/30.46 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) 52.86/30.46 new_esEs6(x0, x1, ty_Float) 52.86/30.46 new_esEs4(x0, x1, ty_Char) 52.86/30.46 new_compare0([], :(x0, x1), x2) 52.86/30.46 new_esEs25(Right(x0), Right(x1), x2, ty_Char) 52.86/30.46 new_lt22(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_esEs37(x0, x1, ty_Float) 52.86/30.46 new_esEs6(x0, x1, ty_Int) 52.86/30.46 new_ltEs14(Just(x0), Just(x1), ty_@0) 52.86/30.46 new_esEs40(x0, x1, ty_Double) 52.86/30.46 new_esEs4(x0, x1, ty_Bool) 52.86/30.46 new_gt(x0, x1, app(ty_[], x2)) 52.86/30.46 new_esEs24(Just(x0), Nothing, x1) 52.86/30.46 new_esEs14(x0, x1, ty_Char) 52.86/30.46 new_esEs38(x0, x1, ty_Double) 52.86/30.46 new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_esEs8(x0, x1, ty_Integer) 52.86/30.46 new_lt5(x0, x1, ty_Int) 52.86/30.46 new_esEs11(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13) 52.86/30.46 new_primMulNat0(Succ(x0), Succ(x1)) 52.86/30.46 new_esEs11(x0, x1, app(ty_[], x2)) 52.86/30.46 new_esEs26(LT, LT) 52.86/30.46 new_esEs30(x0, x1, ty_@0) 52.86/30.46 new_esEs13(x0, x1, ty_@0) 52.86/30.46 new_esEs14(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) 52.86/30.46 new_esEs9(x0, x1, ty_Double) 52.86/30.46 new_esEs24(Just(x0), Just(x1), ty_Bool) 52.86/30.46 new_esEs13(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_ltEs16(EQ, EQ) 52.86/30.46 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_primMulNat1(Succ(x0)) 52.86/30.46 new_ltEs18(x0, x1, x2) 52.86/30.46 new_primMinusNat0(Succ(x0), Zero) 52.86/30.46 new_gt14(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_lt6(x0, x1, ty_Char) 52.86/30.46 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_esEs5(x0, x1, ty_Ordering) 52.86/30.46 new_primMulNat0(Zero, Zero) 52.86/30.46 new_sizeFM(x0, x1, x2, x3, x4, x5, x6) 52.86/30.46 new_compare10(x0, x1, False, x2, x3) 52.86/30.46 new_esEs31(x0, x1, ty_Bool) 52.86/30.46 new_compare5(@0, @0) 52.86/30.46 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_compare30(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_esEs39(x0, x1, app(ty_[], x2)) 52.86/30.46 new_esEs31(x0, x1, ty_Integer) 52.86/30.46 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 52.86/30.46 new_esEs24(Just(x0), Just(x1), ty_Integer) 52.86/30.46 new_esEs39(x0, x1, ty_Float) 52.86/30.46 new_esEs10(x0, x1, ty_Float) 52.86/30.46 new_esEs5(x0, x1, ty_Double) 52.86/30.46 new_esEs9(x0, x1, ty_Int) 52.86/30.46 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 52.86/30.46 new_esEs11(x0, x1, ty_Double) 52.86/30.46 new_esEs40(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_ltEs14(Nothing, Just(x0), x1) 52.86/30.46 new_esEs33(x0, x1, ty_Double) 52.86/30.46 new_primCmpNat0(Succ(x0), Succ(x1)) 52.86/30.46 new_esEs4(x0, x1, ty_@0) 52.86/30.46 new_ltEs22(x0, x1, ty_Integer) 52.86/30.46 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 52.86/30.46 new_esEs31(x0, x1, ty_@0) 52.86/30.46 new_compare7(False, True) 52.86/30.46 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_compare7(True, False) 52.86/30.46 new_compare29(Nothing, Nothing, x0) 52.86/30.46 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs24(Just(x0), Just(x1), ty_@0) 52.86/30.46 new_ltEs24(x0, x1, ty_Int) 52.86/30.46 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_lt26(x0, x1, ty_Ordering) 52.86/30.46 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_gt9(x0, x1) 52.86/30.46 new_compare8(x0, x1) 52.86/30.46 new_esEs39(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_ltEs22(x0, x1, ty_Bool) 52.86/30.46 new_compare29(Just(x0), Nothing, x1) 52.86/30.46 new_esEs7(x0, x1, ty_Float) 52.86/30.46 new_mkBranch1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14) 52.86/30.46 new_lt6(x0, x1, ty_Bool) 52.86/30.46 new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_ltEs14(Just(x0), Just(x1), ty_Ordering) 52.86/30.46 new_lt26(x0, x1, ty_@0) 52.86/30.46 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_lt6(x0, x1, ty_Double) 52.86/30.46 new_ltEs15(Right(x0), Right(x1), x2, ty_Double) 52.86/30.46 new_esEs36(x0, x1, ty_@0) 52.86/30.46 new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 52.86/30.46 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_primMinusNat0(Zero, Succ(x0)) 52.86/30.46 new_esEs9(x0, x1, ty_Char) 52.86/30.46 new_ltEs15(Right(x0), Right(x1), x2, ty_Int) 52.86/30.46 new_compare17(x0, x1, False, x2, x3) 52.86/30.46 new_esEs7(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_esEs4(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_esEs14(x0, x1, ty_Ordering) 52.86/30.46 new_lt24(x0, x1, ty_Bool) 52.86/30.46 new_compare15(x0, x1, False, x2) 52.86/30.46 new_lt26(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_lt21(x0, x1, ty_Double) 52.86/30.46 new_esEs39(x0, x1, ty_Bool) 52.86/30.46 new_esEs25(Left(x0), Left(x1), ty_Double, x2) 52.86/30.46 new_esEs32(x0, x1, ty_Ordering) 52.86/30.46 new_gt7(x0, x1) 52.86/30.46 new_esEs33(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_esEs13(x0, x1, ty_Ordering) 52.86/30.46 new_compare30(x0, x1, ty_Float) 52.86/30.46 new_esEs13(x0, x1, app(ty_[], x2)) 52.86/30.46 new_esEs25(Left(x0), Left(x1), ty_Char, x2) 52.86/30.46 new_ltEs8(x0, x1) 52.86/30.46 new_mkBranch(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) 52.86/30.46 new_ltEs16(LT, GT) 52.86/30.46 new_ltEs16(GT, LT) 52.86/30.46 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_lt24(x0, x1, ty_Double) 52.86/30.46 new_lt24(x0, x1, ty_Char) 52.86/30.46 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_lt14(x0, x1) 52.86/30.46 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, EmptyFM, False, x7, x8) 52.86/30.46 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_lt24(x0, x1, ty_Int) 52.86/30.46 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs29(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_lt6(x0, x1, ty_Int) 52.86/30.46 new_primCmpInt(Pos(Zero), Pos(Zero)) 52.86/30.46 new_esEs25(Left(x0), Left(x1), ty_Int, x2) 52.86/30.46 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_asAs(True, x0) 52.86/30.46 new_ltEs6(x0, x1, ty_Char) 52.86/30.46 new_esEs9(x0, x1, ty_Bool) 52.86/30.46 new_compare30(x0, x1, ty_Integer) 52.86/30.46 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_ltEs24(x0, x1, ty_@0) 52.86/30.46 new_lt26(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_esEs25(Right(x0), Right(x1), x2, ty_Double) 52.86/30.46 new_esEs10(x0, x1, ty_Integer) 52.86/30.46 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) 52.86/30.46 new_esEs6(x0, x1, ty_Double) 52.86/30.46 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_splitLT20(x0, x1, x2, x3, x4, x5, False, x6, x7) 52.86/30.46 new_esEs32(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, x11, False, x12, x13) 52.86/30.46 new_esEs17(x0, x1) 52.86/30.46 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_compare6(@2(x0, x1), @2(x2, x3), x4, x5) 52.86/30.46 new_lt23(x0, x1, ty_Ordering) 52.86/30.46 new_esEs37(x0, x1, ty_Ordering) 52.86/30.46 new_lt5(x0, x1, ty_Integer) 52.86/30.46 new_esEs28(:%(x0, x1), :%(x2, x3), x4) 52.86/30.46 new_compare18(EQ, EQ) 52.86/30.46 new_lt5(x0, x1, ty_Bool) 52.86/30.46 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_gt14(x0, x1, ty_@0) 52.86/30.46 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_esEs38(x0, x1, ty_Integer) 52.86/30.46 new_compare16(Left(x0), Left(x1), x2, x3) 52.86/30.46 new_gt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_compare30(x0, x1, ty_Bool) 52.86/30.46 new_esEs34(x0, x1, ty_Int) 52.86/30.46 new_lt24(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs37(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_esEs6(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs7(x0, x1, ty_Integer) 52.86/30.46 new_lt20(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_esEs32(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_esEs12(EQ) 52.86/30.46 new_esEs16(Char(x0), Char(x1)) 52.86/30.46 new_ltEs22(x0, x1, ty_@0) 52.86/30.46 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs37(x0, x1, ty_Double) 52.86/30.46 new_lt4(x0, x1) 52.86/30.46 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_esEs41(EQ) 52.86/30.46 new_lt21(x0, x1, ty_Ordering) 52.86/30.46 new_gt2(x0, x1) 52.86/30.46 new_lt9(x0, x1) 52.86/30.46 new_esEs38(x0, x1, ty_Bool) 52.86/30.46 new_ltEs6(x0, x1, ty_Float) 52.86/30.46 new_esEs40(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_ltEs23(x0, x1, ty_Double) 52.86/30.46 new_esEs33(x0, x1, ty_Ordering) 52.86/30.46 new_esEs38(x0, x1, ty_Float) 52.86/30.46 new_lt21(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_ltEs19(x0, x1, ty_Int) 52.86/30.46 new_ltEs6(x0, x1, ty_Bool) 52.86/30.46 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), ty_Float, x2) 52.86/30.46 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) 52.86/30.46 new_primCompAux00(x0, LT) 52.86/30.46 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_gt15(x0, x1, ty_Ordering) 52.86/30.46 new_esEs38(x0, x1, ty_Int) 52.86/30.46 new_esEs39(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_primMulInt(Pos(x0), Neg(x1)) 52.86/30.46 new_primMulInt(Neg(x0), Pos(x1)) 52.86/30.46 new_compare11(x0, x1, x2, x3, True, x4, x5, x6) 52.86/30.46 new_esEs19(@0, @0) 52.86/30.46 new_ltEs19(x0, x1, ty_Char) 52.86/30.46 new_lt5(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_lt5(x0, x1, ty_Char) 52.86/30.46 new_ltEs6(x0, x1, ty_Int) 52.86/30.46 new_esEs10(x0, x1, ty_Bool) 52.86/30.46 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 52.86/30.46 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 52.86/30.46 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs27(Double(x0, x1), Double(x2, x3)) 52.86/30.46 new_ltEs19(x0, x1, ty_Bool) 52.86/30.46 new_splitGT0(EmptyFM, x0, x1, x2) 52.86/30.46 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_gt13(x0, x1, x2) 52.86/30.46 new_gt11(x0, x1, x2, x3) 52.86/30.46 new_compare10(x0, x1, True, x2, x3) 52.86/30.46 new_esEs11(x0, x1, ty_Ordering) 52.86/30.46 new_esEs6(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_ltEs22(x0, x1, app(ty_[], x2)) 52.86/30.46 new_esEs7(x0, x1, ty_Bool) 52.86/30.46 new_esEs4(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_lt22(x0, x1, app(ty_[], x2)) 52.86/30.46 new_esEs10(x0, x1, ty_Char) 52.86/30.46 new_mkBalBranch6MkBalBranch4(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) 52.86/30.46 new_primEqNat0(Zero, Succ(x0)) 52.86/30.46 new_ltEs14(Just(x0), Nothing, x1) 52.86/30.46 new_primCmpNat0(Zero, Zero) 52.86/30.46 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 52.86/30.46 new_esEs14(x0, x1, ty_Double) 52.86/30.46 new_esEs10(x0, x1, app(ty_[], x2)) 52.86/30.46 new_lt22(x0, x1, ty_Double) 52.86/30.46 new_primMulNat1(Zero) 52.86/30.46 new_esEs38(x0, x1, ty_Char) 52.86/30.46 52.86/30.46 We have to consider all minimal (P,Q,R)-chains. 52.86/30.46 ---------------------------------------- 52.86/30.46 52.86/30.46 (38) QDPSizeChangeProof (EQUIVALENT) 52.86/30.46 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 52.86/30.46 52.86/30.46 From the DPs we obtained the following set of size-change graphs: 52.86/30.46 *new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, h), h, ba), yvy44, h, ba) 52.86/30.46 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, h), h, ba), yvy43, h, ba) 52.86/30.46 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 52.86/30.46 52.86/30.46 52.86/30.46 ---------------------------------------- 52.86/30.46 52.86/30.46 (39) 52.86/30.46 YES 52.86/30.46 52.86/30.46 ---------------------------------------- 52.86/30.46 52.86/30.46 (40) 52.86/30.46 Obligation: 52.86/30.46 Q DP problem: 52.86/30.46 The TRS P consists of the following rules: 52.86/30.46 52.86/30.46 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_@2, eb), ec), ba, cf) -> new_esEs1(yvy4000, yvy3000, eb, ec) 52.86/30.46 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs(yvy4001, yvy3001, gb, gc, gd) 52.86/30.46 new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_Either, bdh), bea)) -> new_esEs2(yvy4000, yvy3000, bdh, bea) 52.86/30.46 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) 52.86/30.46 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(app(ty_@2, bf), bg)) -> new_esEs1(yvy4002, yvy3002, bf, bg) 52.86/30.46 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(ty_[], cb)) -> new_esEs3(yvy4002, yvy3002, cb) 52.86/30.46 new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_Either, bcf), bcg)) -> new_esEs2(yvy4000, yvy3000, bcf, bcg) 52.86/30.46 new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs(yvy4000, yvy3000, bbh, bca, bcb) 52.86/30.46 new_esEs0(Just(yvy4000), Just(yvy3000), app(app(ty_Either, ff), fg)) -> new_esEs2(yvy4000, yvy3000, ff, fg) 52.86/30.46 new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_[], beb)) -> new_esEs3(yvy4000, yvy3000, beb) 52.86/30.46 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(ty_[], de), cf) -> new_esEs3(yvy4001, yvy3001, de) 52.86/30.46 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_Either, bab), bac), hf) -> new_esEs2(yvy4000, yvy3000, bab, bac) 52.86/30.46 new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bba), bah) -> new_esEs0(yvy4000, yvy3000, bba) 52.86/30.46 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_Maybe, ea), ba, cf) -> new_esEs0(yvy4000, yvy3000, ea) 52.86/30.46 new_esEs0(Just(yvy4000), Just(yvy3000), app(ty_[], fh)) -> new_esEs3(yvy4000, yvy3000, fh) 52.86/30.46 new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(ty_[], bch)) -> new_esEs3(yvy4000, yvy3000, bch) 52.86/30.46 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_[], ef), ba, cf) -> new_esEs3(yvy4000, yvy3000, ef) 52.86/30.46 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(ty_Maybe, cg), cf) -> new_esEs0(yvy4001, yvy3001, cg) 52.86/30.46 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_[], bad), hf) -> new_esEs3(yvy4000, yvy3000, bad) 52.86/30.46 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) 52.86/30.46 new_esEs0(Just(yvy4000), Just(yvy3000), app(app(ty_@2, fc), fd)) -> new_esEs1(yvy4000, yvy3000, fc, fd) 52.86/30.46 new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_@2, bdf), bdg)) -> new_esEs1(yvy4000, yvy3000, bdf, bdg) 52.86/30.46 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(ty_Maybe, be)) -> new_esEs0(yvy4002, yvy3002, be) 52.86/30.46 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(ty_[], hb)) -> new_esEs3(yvy4001, yvy3001, hb) 52.86/30.46 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(app(ty_Either, bh), ca)) -> new_esEs2(yvy4002, yvy3002, bh, ca) 52.86/30.46 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(app(ty_@2, da), db), cf) -> new_esEs1(yvy4001, yvy3001, da, db) 52.86/30.46 new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bbd), bbe), bah) -> new_esEs2(yvy4000, yvy3000, bbd, bbe) 52.86/30.46 new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bda) -> new_esEs3(yvy4001, yvy3001, bda) 52.86/30.46 new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_[], bbf), bah) -> new_esEs3(yvy4000, yvy3000, bbf) 52.86/30.46 new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(yvy4000, yvy3000, bdb, bdc, bdd) 52.86/30.46 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(app(ty_Either, dc), dd), cf) -> new_esEs2(yvy4001, yvy3001, dc, dd) 52.86/30.46 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) 52.86/30.46 new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_Maybe, bde)) -> new_esEs0(yvy4000, yvy3000, bde) 52.86/30.46 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(app(ty_@3, hc), hd), he), hf) -> new_esEs(yvy4000, yvy3000, hc, hd, he) 52.86/30.46 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_@2, hh), baa), hf) -> new_esEs1(yvy4000, yvy3000, hh, baa) 52.86/30.46 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(ty_Either, gh), ha)) -> new_esEs2(yvy4001, yvy3001, gh, ha) 52.86/30.46 new_esEs2(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bae), baf), bag), bah) -> new_esEs(yvy4000, yvy3000, bae, baf, bag) 52.86/30.46 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(ty_Maybe, ge)) -> new_esEs0(yvy4001, yvy3001, ge) 52.86/30.46 new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_@2, bcd), bce)) -> new_esEs1(yvy4000, yvy3000, bcd, bce) 52.86/30.46 new_esEs0(Just(yvy4000), Just(yvy3000), app(ty_Maybe, fb)) -> new_esEs0(yvy4000, yvy3000, fb) 52.86/30.46 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_Maybe, hg), hf) -> new_esEs0(yvy4000, yvy3000, hg) 52.86/30.46 new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_Either, ed), ee), ba, cf) -> new_esEs2(yvy4000, yvy3000, ed, ee) 52.86/30.46 new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(ty_Maybe, bcc)) -> new_esEs0(yvy4000, yvy3000, bcc) 52.86/30.46 new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(ty_@2, gf), gg)) -> new_esEs1(yvy4001, yvy3001, gf, gg) 52.86/30.46 new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bbb), bbc), bah) -> new_esEs1(yvy4000, yvy3000, bbb, bbc) 52.86/30.46 new_esEs0(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(yvy4000, yvy3000, eg, eh, fa) 52.86/30.46 52.86/30.46 R is empty. 52.86/30.46 Q is empty. 52.86/30.46 We have to consider all minimal (P,Q,R)-chains. 52.86/30.46 ---------------------------------------- 52.86/30.46 52.86/30.46 (41) QDPSizeChangeProof (EQUIVALENT) 52.86/30.46 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 52.86/30.46 52.86/30.46 From the DPs we obtained the following set of size-change graphs: 52.86/30.46 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(yvy4000, yvy3000, bdb, bdc, bdd) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs0(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(yvy4000, yvy3000, eg, eh, fa) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_@2, bdf), bdg)) -> new_esEs1(yvy4000, yvy3000, bdf, bdg) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs0(Just(yvy4000), Just(yvy3000), app(app(ty_@2, fc), fd)) -> new_esEs1(yvy4000, yvy3000, fc, fd) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs0(Just(yvy4000), Just(yvy3000), app(ty_[], fh)) -> new_esEs3(yvy4000, yvy3000, fh) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_Either, bdh), bea)) -> new_esEs2(yvy4000, yvy3000, bdh, bea) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_Maybe, bde)) -> new_esEs0(yvy4000, yvy3000, bde) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs0(Just(yvy4000), Just(yvy3000), app(app(ty_Either, ff), fg)) -> new_esEs2(yvy4000, yvy3000, ff, fg) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs0(Just(yvy4000), Just(yvy3000), app(ty_Maybe, fb)) -> new_esEs0(yvy4000, yvy3000, fb) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs(yvy4001, yvy3001, gb, gc, gd) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(app(ty_@3, hc), hd), he), hf) -> new_esEs(yvy4000, yvy3000, hc, hd, he) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_@2, hh), baa), hf) -> new_esEs1(yvy4000, yvy3000, hh, baa) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(ty_@2, gf), gg)) -> new_esEs1(yvy4001, yvy3001, gf, gg) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_[], bad), hf) -> new_esEs3(yvy4000, yvy3000, bad) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(ty_[], hb)) -> new_esEs3(yvy4001, yvy3001, hb) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_Either, bab), bac), hf) -> new_esEs2(yvy4000, yvy3000, bab, bac) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(app(ty_Either, gh), ha)) -> new_esEs2(yvy4001, yvy3001, gh, ha) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), ga, app(ty_Maybe, ge)) -> new_esEs0(yvy4001, yvy3001, ge) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_Maybe, hg), hf) -> new_esEs0(yvy4000, yvy3000, hg) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *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) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 52.86/30.46 52.86/30.46 52.86/30.46 *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) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 52.86/30.46 52.86/30.46 52.86/30.46 *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) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs(yvy4000, yvy3000, bbh, bca, bcb) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs2(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bae), baf), bag), bah) -> new_esEs(yvy4000, yvy3000, bae, baf, bag) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_@2, eb), ec), ba, cf) -> new_esEs1(yvy4000, yvy3000, eb, ec) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(app(ty_@2, bf), bg)) -> new_esEs1(yvy4002, yvy3002, bf, bg) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(app(ty_@2, da), db), cf) -> new_esEs1(yvy4001, yvy3001, da, db) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(ty_[], cb)) -> new_esEs3(yvy4002, yvy3002, cb) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(ty_[], de), cf) -> new_esEs3(yvy4001, yvy3001, de) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_[], ef), ba, cf) -> new_esEs3(yvy4000, yvy3000, ef) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(app(ty_Either, bh), ca)) -> new_esEs2(yvy4002, yvy3002, bh, ca) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(app(ty_Either, dc), dd), cf) -> new_esEs2(yvy4001, yvy3001, dc, dd) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_Either, ed), ee), ba, cf) -> new_esEs2(yvy4000, yvy3000, ed, ee) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_Maybe, ea), ba, cf) -> new_esEs0(yvy4000, yvy3000, ea) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, app(ty_Maybe, cg), cf) -> new_esEs0(yvy4001, yvy3001, cg) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), h, ba, app(ty_Maybe, be)) -> new_esEs0(yvy4002, yvy3002, be) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_@2, bcd), bce)) -> new_esEs1(yvy4000, yvy3000, bcd, bce) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bbb), bbc), bah) -> new_esEs1(yvy4000, yvy3000, bbb, bbc) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(ty_[], bch)) -> new_esEs3(yvy4000, yvy3000, bch) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_[], bbf), bah) -> new_esEs3(yvy4000, yvy3000, bbf) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(app(ty_Either, bcf), bcg)) -> new_esEs2(yvy4000, yvy3000, bcf, bcg) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bbd), bbe), bah) -> new_esEs2(yvy4000, yvy3000, bbd, bbe) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bba), bah) -> new_esEs0(yvy4000, yvy3000, bba) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs2(Right(yvy4000), Right(yvy3000), bbg, app(ty_Maybe, bcc)) -> new_esEs0(yvy4000, yvy3000, bcc) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_[], beb)) -> new_esEs3(yvy4000, yvy3000, beb) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 52.86/30.46 52.86/30.46 52.86/30.46 *new_esEs3(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bda) -> new_esEs3(yvy4001, yvy3001, bda) 52.86/30.46 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 52.86/30.46 52.86/30.46 52.86/30.46 ---------------------------------------- 52.86/30.46 52.86/30.46 (42) 52.86/30.46 YES 52.86/30.46 52.86/30.46 ---------------------------------------- 52.86/30.46 52.86/30.46 (43) 52.86/30.46 Obligation: 52.86/30.46 Q DP problem: 52.86/30.46 The TRS P consists of the following rules: 52.86/30.46 52.86/30.46 new_splitGT2(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, h, ba) -> new_splitGT1(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_lt26(yvy20, yvy15, h), h, ba) 52.86/30.46 new_splitGT1(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bd, be) -> new_splitGT(yvy48, yvy50, bd, be) 52.86/30.46 new_splitGT3(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, bb, bc) -> new_splitGT2(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, bb), bb, bc) 52.86/30.46 new_splitGT2(yvy15, yvy16, yvy17, yvy18, Branch(yvy190, yvy191, yvy192, yvy193, yvy194), yvy20, True, h, ba) -> new_splitGT3(yvy190, yvy191, yvy192, yvy193, yvy194, yvy20, h, ba) 52.86/30.46 new_splitGT(Branch(yvy190, yvy191, yvy192, yvy193, yvy194), yvy20, h, ba) -> new_splitGT3(yvy190, yvy191, yvy192, yvy193, yvy194, yvy20, h, ba) 52.86/30.46 52.86/30.46 The TRS R consists of the following rules: 52.86/30.46 52.86/30.46 new_esEs14(yvy1650, yvy1660, ty_@0) -> new_esEs19(yvy1650, yvy1660) 52.86/30.46 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(ty_@2, eef), eeg)) -> new_esEs21(yvy4000, yvy3000, eef, eeg) 52.86/30.46 new_ltEs19(yvy179, yvy180, ty_Integer) -> new_ltEs11(yvy179, yvy180) 52.86/30.46 new_compare9(Double(yvy400, Pos(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.86/30.46 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 52.86/30.46 new_primPlusNat0(Zero, Zero) -> Zero 52.86/30.46 new_esEs14(yvy1650, yvy1660, app(app(app(ty_@3, dgc), dgd), dge)) -> new_esEs22(yvy1650, yvy1660, dgc, dgd, dge) 52.86/30.46 new_pePe(True, yvy280) -> True 52.86/30.46 new_lt12(yvy40, yvy30, bf, bg) -> new_esEs12(new_compare6(yvy40, yvy30, bf, bg)) 52.86/30.46 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_@0) -> new_ltEs4(yvy1650, yvy1660) 52.86/30.46 new_esEs26(LT, GT) -> False 52.86/30.46 new_esEs26(GT, LT) -> False 52.86/30.46 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(app(ty_@3, fca), fcb), fcc)) -> new_ltEs5(yvy1650, yvy1660, fca, fcb, fcc) 52.86/30.46 new_lt20(yvy190, yvy192, ty_Ordering) -> new_lt17(yvy190, yvy192) 52.86/30.46 new_compare13(Float(yvy400, Pos(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.86/30.46 new_compare13(Float(yvy400, Neg(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.86/30.46 new_esEs8(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.86/30.46 new_esEs30(yvy4000, yvy3000, app(app(ty_@2, efh), ega)) -> new_esEs21(yvy4000, yvy3000, efh, ega) 52.86/30.46 new_ltEs20(yvy191, yvy193, app(app(app(ty_@3, ge), gf), gg)) -> new_ltEs5(yvy191, yvy193, ge, gf, gg) 52.86/30.46 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 52.86/30.46 new_esEs26(LT, EQ) -> False 52.86/30.46 new_esEs26(EQ, LT) -> False 52.86/30.46 new_esEs29(yvy190, yvy192, ty_@0) -> new_esEs19(yvy190, yvy192) 52.86/30.46 new_lt6(yvy1651, yvy1661, ty_Char) -> new_lt8(yvy1651, yvy1661) 52.86/30.46 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, app(ty_Ratio, cfe)) -> new_ltEs18(yvy1650, yvy1660, cfe) 52.86/30.46 new_ltEs19(yvy179, yvy180, app(app(ty_@2, dd), de)) -> new_ltEs12(yvy179, yvy180, dd, de) 52.86/30.46 new_esEs25(Right(yvy4000), Right(yvy3000), bfd, app(ty_Ratio, edf)) -> new_esEs28(yvy4000, yvy3000, edf) 52.86/30.46 new_lt23(yvy155, yvy158, app(ty_Maybe, daa)) -> new_lt15(yvy155, yvy158, daa) 52.86/30.46 new_compare18(LT, LT) -> EQ 52.86/30.46 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Bool) -> new_ltEs13(yvy1650, yvy1660) 52.86/30.46 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(ty_Either, efa), efb)) -> new_esEs25(yvy4000, yvy3000, efa, efb) 52.86/30.46 new_gt1(yvy40, yvy30, bf, bg) -> new_esEs41(new_compare6(yvy40, yvy30, bf, bg)) 52.86/30.46 new_ltEs20(yvy191, yvy193, ty_Float) -> new_ltEs7(yvy191, yvy193) 52.86/30.46 new_esEs30(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.46 new_esEs8(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.86/30.46 new_esEs6(yvy402, yvy302, ty_Int) -> new_esEs17(yvy402, yvy302) 52.86/30.46 new_ltEs21(yvy165, yvy166, ty_Ordering) -> new_ltEs16(yvy165, yvy166) 52.86/30.46 new_ltEs20(yvy191, yvy193, ty_@0) -> new_ltEs4(yvy191, yvy193) 52.86/30.46 new_esEs39(yvy155, yvy158, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs22(yvy155, yvy158, chf, chg, chh) 52.86/30.46 new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, False, cbe, cbf, cbg) -> GT 52.86/30.46 new_esEs33(yvy1650, yvy1660, ty_Char) -> new_esEs16(yvy1650, yvy1660) 52.86/30.46 new_esEs36(yvy4002, yvy3002, app(ty_Ratio, bge)) -> new_esEs28(yvy4002, yvy3002, bge) 52.86/30.46 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 52.86/30.46 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Double) -> new_ltEs17(yvy1650, yvy1660) 52.86/30.46 new_esEs40(yvy154, yvy157, ty_Double) -> new_esEs27(yvy154, yvy157) 52.86/30.46 new_esEs31(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) 52.86/30.46 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.86/30.46 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.86/30.46 new_ltEs24(yvy156, yvy159, app(ty_[], dae)) -> new_ltEs10(yvy156, yvy159, dae) 52.86/30.46 new_esEs7(yvy401, yvy301, ty_Double) -> new_esEs27(yvy401, yvy301) 52.86/30.46 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(ty_Either, fce), fcf)) -> new_ltEs15(yvy1650, yvy1660, fce, fcf) 52.86/30.46 new_not(True) -> False 52.86/30.46 new_ltEs22(yvy172, yvy173, ty_Char) -> new_ltEs8(yvy172, yvy173) 52.86/30.46 new_lt23(yvy155, yvy158, ty_Int) -> new_lt9(yvy155, yvy158) 52.86/30.46 new_esEs13(yvy1651, yvy1661, ty_Integer) -> new_esEs20(yvy1651, yvy1661) 52.86/30.46 new_gt3(yvy40, yvy30) -> new_esEs41(new_compare19(yvy40, yvy30)) 52.86/30.46 new_primCompAux00(yvy133, LT) -> LT 52.86/30.46 new_esEs39(yvy155, yvy158, ty_Ordering) -> new_esEs26(yvy155, yvy158) 52.86/30.46 new_compare17(yvy230, yvy231, False, dbg, dbh) -> GT 52.86/30.46 new_lt22(yvy154, yvy157, ty_Float) -> new_lt7(yvy154, yvy157) 52.86/30.46 new_lt22(yvy154, yvy157, app(ty_[], cga)) -> new_lt10(yvy154, yvy157, cga) 52.86/30.46 new_esEs39(yvy155, yvy158, app(ty_[], chc)) -> new_esEs18(yvy155, yvy158, chc) 52.86/30.46 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Char, bfe) -> new_esEs16(yvy4000, yvy3000) 52.86/30.46 new_esEs10(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.86/30.46 new_gt11(yvy40, yvy30, ce, cf) -> new_esEs41(new_compare16(yvy40, yvy30, ce, cf)) 52.86/30.46 new_esEs25(Right(yvy4000), Right(yvy3000), bfd, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.86/30.46 new_gt15(yvy40, yvy30, ty_Char) -> new_gt3(yvy40, yvy30) 52.86/30.46 new_esEs38(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.86/30.46 new_esEs31(yvy4001, yvy3001, app(ty_Ratio, fdf)) -> new_esEs28(yvy4001, yvy3001, fdf) 52.86/30.46 new_primEqNat0(Succ(yvy40000), Zero) -> False 52.86/30.46 new_primEqNat0(Zero, Succ(yvy30000)) -> False 52.86/30.46 new_esEs39(yvy155, yvy158, app(ty_Maybe, daa)) -> new_esEs24(yvy155, yvy158, daa) 52.86/30.46 new_esEs10(yvy400, yvy300, app(app(ty_@2, bbc), bbd)) -> new_esEs21(yvy400, yvy300, bbc, bbd) 52.86/30.46 new_esEs36(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) 52.86/30.46 new_ltEs21(yvy165, yvy166, app(app(ty_@2, hf), hg)) -> new_ltEs12(yvy165, yvy166, hf, hg) 52.86/30.46 new_compare10(yvy237, yvy238, True, ehh, faa) -> LT 52.86/30.46 new_lt6(yvy1651, yvy1661, app(app(ty_@2, dhc), dhd)) -> new_lt12(yvy1651, yvy1661, dhc, dhd) 52.86/30.46 new_gt7(yvy40, yvy30) -> new_esEs41(new_compare14(yvy40, yvy30)) 52.86/30.46 new_lt20(yvy190, yvy192, app(app(app(ty_@3, fb), fc), fd)) -> new_lt13(yvy190, yvy192, fb, fc, fd) 52.86/30.46 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(ty_@2, cdc), cdd), bae) -> new_ltEs12(yvy1650, yvy1660, cdc, cdd) 52.86/30.46 new_compare7(True, True) -> EQ 52.86/30.46 new_ltEs20(yvy191, yvy193, ty_Bool) -> new_ltEs13(yvy191, yvy193) 52.86/30.46 new_compare210(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, True, cff, cfg, cfh) -> EQ 52.86/30.46 new_esEs31(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) 52.86/30.46 new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT 52.86/30.46 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Integer, bfe) -> new_esEs20(yvy4000, yvy3000) 52.86/30.46 new_esEs40(yvy154, yvy157, app(app(ty_@2, cgb), cgc)) -> new_esEs21(yvy154, yvy157, cgb, cgc) 52.86/30.46 new_esEs5(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.86/30.46 new_esEs29(yvy190, yvy192, ty_Ordering) -> new_esEs26(yvy190, yvy192) 52.86/30.46 new_esEs29(yvy190, yvy192, ty_Float) -> new_esEs15(yvy190, yvy192) 52.86/30.46 new_esEs10(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.86/30.46 new_ltEs9(yvy165, yvy166) -> new_fsEs(new_compare8(yvy165, yvy166)) 52.86/30.46 new_ltEs6(yvy1652, yvy1662, ty_Double) -> new_ltEs17(yvy1652, yvy1662) 52.86/30.46 new_lt6(yvy1651, yvy1661, app(ty_[], dhb)) -> new_lt10(yvy1651, yvy1661, dhb) 52.86/30.46 new_esEs34(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.86/30.46 new_esEs7(yvy401, yvy301, ty_Integer) -> new_esEs20(yvy401, yvy301) 52.86/30.46 new_esEs4(yvy401, yvy301, app(app(ty_@2, bdh), bea)) -> new_esEs21(yvy401, yvy301, bdh, bea) 52.86/30.46 new_primCmpNat0(Zero, Succ(yvy3000)) -> LT 52.86/30.46 new_esEs30(yvy4000, yvy3000, app(app(ty_Either, egc), egd)) -> new_esEs25(yvy4000, yvy3000, egc, egd) 52.86/30.46 new_ltEs23(yvy1651, yvy1661, ty_Int) -> new_ltEs9(yvy1651, yvy1661) 52.86/30.46 new_ltEs20(yvy191, yvy193, ty_Double) -> new_ltEs17(yvy191, yvy193) 52.86/30.46 new_esEs38(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.86/30.46 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Float) -> new_ltEs7(yvy1650, yvy1660) 52.86/30.46 new_ltEs15(Right(yvy1650), Left(yvy1660), bad, bae) -> False 52.86/30.46 new_esEs8(yvy400, yvy300, app(app(app(ty_@3, def), deg), deh)) -> new_esEs22(yvy400, yvy300, def, deg, deh) 52.86/30.46 new_esEs11(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.86/30.46 new_esEs8(yvy400, yvy300, app(ty_[], dfg)) -> new_esEs18(yvy400, yvy300, dfg) 52.86/30.46 new_compare18(GT, GT) -> EQ 52.86/30.46 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, ty_Char) -> new_ltEs8(yvy1650, yvy1660) 52.86/30.46 new_esEs33(yvy1650, yvy1660, ty_Double) -> new_esEs27(yvy1650, yvy1660) 52.86/30.46 new_esEs25(Right(yvy4000), Right(yvy3000), bfd, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.86/30.46 new_esEs8(yvy400, yvy300, app(ty_Maybe, dfa)) -> new_esEs24(yvy400, yvy300, dfa) 52.86/30.46 new_ltEs23(yvy1651, yvy1661, ty_Double) -> new_ltEs17(yvy1651, yvy1661) 52.86/30.46 new_esEs29(yvy190, yvy192, app(ty_Maybe, ff)) -> new_esEs24(yvy190, yvy192, ff) 52.86/30.46 new_esEs25(Right(yvy4000), Right(yvy3000), bfd, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.46 new_esEs23(True, True) -> True 52.86/30.46 new_lt22(yvy154, yvy157, app(ty_Ratio, chb)) -> new_lt19(yvy154, yvy157, chb) 52.86/30.46 new_lt23(yvy155, yvy158, app(app(app(ty_@3, chf), chg), chh)) -> new_lt13(yvy155, yvy158, chf, chg, chh) 52.86/30.46 new_esEs39(yvy155, yvy158, ty_Int) -> new_esEs17(yvy155, yvy158) 52.86/30.46 new_ltEs19(yvy179, yvy180, app(ty_Maybe, ea)) -> new_ltEs14(yvy179, yvy180, ea) 52.86/30.46 new_ltEs5(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), hh, baa, bab) -> new_pePe(new_lt5(yvy1650, yvy1660, hh), new_asAs(new_esEs14(yvy1650, yvy1660, hh), new_pePe(new_lt6(yvy1651, yvy1661, baa), new_asAs(new_esEs13(yvy1651, yvy1661, baa), new_ltEs6(yvy1652, yvy1662, bab))))) 52.86/30.46 new_esEs29(yvy190, yvy192, app(ty_[], eg)) -> new_esEs18(yvy190, yvy192, eg) 52.86/30.46 new_lt6(yvy1651, yvy1661, ty_Bool) -> new_lt14(yvy1651, yvy1661) 52.86/30.46 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, ty_@0) -> new_ltEs4(yvy1650, yvy1660) 52.86/30.46 new_esEs7(yvy401, yvy301, ty_Char) -> new_esEs16(yvy401, yvy301) 52.86/30.46 new_esEs9(yvy400, yvy300, app(app(ty_Either, gba), gbb)) -> new_esEs25(yvy400, yvy300, gba, gbb) 52.86/30.46 new_compare30(yvy400, yvy300, ty_Int) -> new_compare8(yvy400, yvy300) 52.86/30.46 new_esEs40(yvy154, yvy157, ty_Char) -> new_esEs16(yvy154, yvy157) 52.86/30.46 new_esEs29(yvy190, yvy192, app(ty_Ratio, ga)) -> new_esEs28(yvy190, yvy192, ga) 52.86/30.46 new_esEs25(Right(yvy4000), Right(yvy3000), bfd, app(app(ty_Either, edg), edh)) -> new_esEs25(yvy4000, yvy3000, edg, edh) 52.86/30.46 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, app(app(ty_Either, cfc), cfd)) -> new_ltEs15(yvy1650, yvy1660, cfc, cfd) 52.86/30.46 new_esEs6(yvy402, yvy302, app(ty_Maybe, dce)) -> new_esEs24(yvy402, yvy302, dce) 52.86/30.46 new_esEs39(yvy155, yvy158, app(ty_Ratio, dad)) -> new_esEs28(yvy155, yvy158, dad) 52.86/30.46 new_esEs4(yvy401, yvy301, ty_Bool) -> new_esEs23(yvy401, yvy301) 52.86/30.46 new_lt8(yvy40, yvy30) -> new_esEs12(new_compare19(yvy40, yvy30)) 52.86/30.46 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Bool, bfe) -> new_esEs23(yvy4000, yvy3000) 52.86/30.46 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 52.86/30.46 new_esEs19(@0, @0) -> True 52.86/30.46 new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT 52.86/30.46 new_primMulInt(Pos(yvy4000), Pos(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) 52.86/30.46 new_ltEs6(yvy1652, yvy1662, ty_Float) -> new_ltEs7(yvy1652, yvy1662) 52.86/30.46 new_ltEs15(Left(yvy1650), Right(yvy1660), bad, bae) -> True 52.86/30.46 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Double, bae) -> new_ltEs17(yvy1650, yvy1660) 52.86/30.46 new_esEs25(Right(yvy4000), Right(yvy3000), bfd, app(app(ty_@2, edd), ede)) -> new_esEs21(yvy4000, yvy3000, edd, ede) 52.86/30.46 new_lt22(yvy154, yvy157, ty_Integer) -> new_lt11(yvy154, yvy157) 52.86/30.46 new_esEs7(yvy401, yvy301, app(app(ty_Either, dec), ded)) -> new_esEs25(yvy401, yvy301, dec, ded) 52.86/30.46 new_primMulNat0(Succ(yvy40000), Zero) -> Zero 52.86/30.46 new_primMulNat0(Zero, Succ(yvy30100)) -> Zero 52.86/30.46 new_lt21(yvy1650, yvy1660, ty_Bool) -> new_lt14(yvy1650, yvy1660) 52.86/30.46 new_esEs7(yvy401, yvy301, ty_Bool) -> new_esEs23(yvy401, yvy301) 52.86/30.46 new_lt15(yvy40, yvy30, cd) -> new_esEs12(new_compare29(yvy40, yvy30, cd)) 52.86/30.46 new_lt14(yvy40, yvy30) -> new_esEs12(new_compare7(yvy40, yvy30)) 52.86/30.46 new_esEs11(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.86/30.46 new_lt23(yvy155, yvy158, ty_Ordering) -> new_lt17(yvy155, yvy158) 52.86/30.46 new_lt20(yvy190, yvy192, app(ty_Ratio, ga)) -> new_lt19(yvy190, yvy192, ga) 52.86/30.46 new_esEs38(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.46 new_esEs31(yvy4001, yvy3001, app(app(app(ty_@3, fch), fda), fdb)) -> new_esEs22(yvy4001, yvy3001, fch, fda, fdb) 52.86/30.46 new_esEs8(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.86/30.46 new_esEs40(yvy154, yvy157, ty_Bool) -> new_esEs23(yvy154, yvy157) 52.86/30.46 new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) 52.86/30.46 new_primPlusNat0(Zero, Succ(yvy21000)) -> Succ(yvy21000) 52.86/30.46 new_ltEs22(yvy172, yvy173, ty_Float) -> new_ltEs7(yvy172, yvy173) 52.86/30.46 new_esEs26(EQ, GT) -> False 52.86/30.46 new_esEs26(GT, EQ) -> False 52.86/30.46 new_lt6(yvy1651, yvy1661, ty_Float) -> new_lt7(yvy1651, yvy1661) 52.86/30.46 new_esEs30(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.86/30.46 new_esEs31(yvy4001, yvy3001, app(ty_Maybe, fdc)) -> new_esEs24(yvy4001, yvy3001, fdc) 52.86/30.46 new_esEs10(yvy400, yvy300, app(app(ty_Either, bbf), bbg)) -> new_esEs25(yvy400, yvy300, bbf, bbg) 52.86/30.46 new_esEs31(yvy4001, yvy3001, app(ty_[], fea)) -> new_esEs18(yvy4001, yvy3001, fea) 52.86/30.46 new_lt6(yvy1651, yvy1661, ty_Integer) -> new_lt11(yvy1651, yvy1661) 52.86/30.46 new_esEs5(yvy400, yvy300, app(ty_Ratio, bdc)) -> new_esEs28(yvy400, yvy300, bdc) 52.86/30.46 new_esEs33(yvy1650, yvy1660, app(app(ty_Either, fgc), fgd)) -> new_esEs25(yvy1650, yvy1660, fgc, fgd) 52.86/30.46 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, ty_Bool) -> new_ltEs13(yvy1650, yvy1660) 52.86/30.46 new_esEs7(yvy401, yvy301, app(app(ty_@2, ddh), dea)) -> new_esEs21(yvy401, yvy301, ddh, dea) 52.86/30.46 new_esEs31(yvy4001, yvy3001, ty_Ordering) -> new_esEs26(yvy4001, yvy3001) 52.86/30.46 new_esEs23(False, False) -> True 52.86/30.46 new_compare9(Double(yvy400, Pos(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.86/30.46 new_compare9(Double(yvy400, Neg(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.86/30.46 new_esEs17(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 52.86/30.46 new_esEs12(LT) -> True 52.86/30.46 new_esEs13(yvy1651, yvy1661, ty_Double) -> new_esEs27(yvy1651, yvy1661) 52.86/30.46 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.86/30.46 new_esEs6(yvy402, yvy302, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs22(yvy402, yvy302, dcb, dcc, dcd) 52.86/30.46 new_esEs32(yvy4000, yvy3000, app(app(ty_Either, ffa), ffb)) -> new_esEs25(yvy4000, yvy3000, ffa, ffb) 52.86/30.46 new_esEs32(yvy4000, yvy3000, app(ty_Maybe, fee)) -> new_esEs24(yvy4000, yvy3000, fee) 52.86/30.46 new_esEs11(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.86/30.46 new_lt20(yvy190, yvy192, ty_Float) -> new_lt7(yvy190, yvy192) 52.86/30.46 new_gt4(yvy40, yvy30) -> new_esEs41(new_compare8(yvy40, yvy30)) 52.86/30.46 new_ltEs12(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), hf, hg) -> new_pePe(new_lt21(yvy1650, yvy1660, hf), new_asAs(new_esEs33(yvy1650, yvy1660, hf), new_ltEs23(yvy1651, yvy1661, hg))) 52.86/30.46 new_esEs5(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.86/30.46 new_lt22(yvy154, yvy157, ty_Bool) -> new_lt14(yvy154, yvy157) 52.86/30.46 new_lt21(yvy1650, yvy1660, ty_Integer) -> new_lt11(yvy1650, yvy1660) 52.86/30.46 new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, cbe, cbf, cbg) -> LT 52.86/30.46 new_esEs33(yvy1650, yvy1660, ty_Float) -> new_esEs15(yvy1650, yvy1660) 52.86/30.46 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Float, bae) -> new_ltEs7(yvy1650, yvy1660) 52.86/30.46 new_esEs6(yvy402, yvy302, app(ty_[], ddc)) -> new_esEs18(yvy402, yvy302, ddc) 52.86/30.46 new_esEs5(yvy400, yvy300, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs22(yvy400, yvy300, bef, beg, beh) 52.86/30.46 new_ltEs19(yvy179, yvy180, ty_Ordering) -> new_ltEs16(yvy179, yvy180) 52.86/30.46 new_lt10(yvy40, yvy30, bh) -> new_esEs12(new_compare0(yvy40, yvy30, bh)) 52.86/30.46 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(app(ty_@3, cde), cdf), cdg), bae) -> new_ltEs5(yvy1650, yvy1660, cde, cdf, cdg) 52.86/30.46 new_esEs37(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.86/30.46 new_ltEs6(yvy1652, yvy1662, app(app(ty_Either, ebc), ebd)) -> new_ltEs15(yvy1652, yvy1662, ebc, ebd) 52.86/30.46 new_esEs4(yvy401, yvy301, ty_Integer) -> new_esEs20(yvy401, yvy301) 52.86/30.46 new_esEs30(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.86/30.46 new_esEs29(yvy190, yvy192, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs22(yvy190, yvy192, fb, fc, fd) 52.86/30.46 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.46 new_compare16(Left(yvy400), Left(yvy300), ce, cf) -> new_compare28(yvy400, yvy300, new_esEs10(yvy400, yvy300, ce), ce, cf) 52.86/30.46 new_esEs40(yvy154, yvy157, ty_Integer) -> new_esEs20(yvy154, yvy157) 52.86/30.46 new_esEs14(yvy1650, yvy1660, ty_Int) -> new_esEs17(yvy1650, yvy1660) 52.86/30.46 new_ltEs20(yvy191, yvy193, app(app(ty_Either, ha), hb)) -> new_ltEs15(yvy191, yvy193, ha, hb) 52.86/30.46 new_lt26(yvy20, yvy15, app(app(ty_@2, egg), egh)) -> new_lt12(yvy20, yvy15, egg, egh) 52.86/30.46 new_esEs32(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.46 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Float, bfe) -> new_esEs15(yvy4000, yvy3000) 52.86/30.46 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, app(ty_[], ced)) -> new_ltEs10(yvy1650, yvy1660, ced) 52.86/30.46 new_esEs31(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.86/30.46 new_esEs13(yvy1651, yvy1661, app(ty_Ratio, eac)) -> new_esEs28(yvy1651, yvy1661, eac) 52.86/30.46 new_lt6(yvy1651, yvy1661, app(ty_Ratio, eac)) -> new_lt19(yvy1651, yvy1661, eac) 52.86/30.46 new_esEs12(GT) -> False 52.86/30.46 new_esEs12(EQ) -> False 52.86/30.46 new_esEs37(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) 52.86/30.46 new_esEs37(yvy4001, yvy3001, app(app(ty_Either, bhh), caa)) -> new_esEs25(yvy4001, yvy3001, bhh, caa) 52.86/30.46 new_esEs37(yvy4001, yvy3001, ty_Bool) -> new_esEs23(yvy4001, yvy3001) 52.86/30.46 new_esEs10(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.86/30.46 new_compare19(Char(yvy400), Char(yvy300)) -> new_primCmpNat0(yvy400, yvy300) 52.86/30.46 new_lt22(yvy154, yvy157, ty_Ordering) -> new_lt17(yvy154, yvy157) 52.86/30.46 new_gt15(yvy40, yvy30, ty_Ordering) -> new_gt12(yvy40, yvy30) 52.86/30.46 new_compare11(yvy247, yvy248, yvy249, yvy250, False, yvy252, fhh, gaa) -> new_compare110(yvy247, yvy248, yvy249, yvy250, yvy252, fhh, gaa) 52.86/30.46 new_lt6(yvy1651, yvy1661, ty_@0) -> new_lt4(yvy1651, yvy1661) 52.86/30.46 new_esEs25(Right(yvy4000), Right(yvy3000), bfd, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.46 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Char) -> new_ltEs8(yvy1650, yvy1660) 52.86/30.46 new_esEs9(yvy400, yvy300, app(ty_[], gbc)) -> new_esEs18(yvy400, yvy300, gbc) 52.86/30.46 new_esEs36(yvy4002, yvy3002, app(ty_Maybe, bgb)) -> new_esEs24(yvy4002, yvy3002, bgb) 52.86/30.46 new_esEs29(yvy190, yvy192, ty_Char) -> new_esEs16(yvy190, yvy192) 52.86/30.46 new_esEs38(yvy4000, yvy3000, app(ty_Ratio, cba)) -> new_esEs28(yvy4000, yvy3000, cba) 52.86/30.46 new_esEs37(yvy4001, yvy3001, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs22(yvy4001, yvy3001, bha, bhb, bhc) 52.86/30.46 new_esEs32(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.86/30.46 new_lt5(yvy1650, yvy1660, app(app(ty_Either, dgg), dgh)) -> new_lt16(yvy1650, yvy1660, dgg, dgh) 52.86/30.46 new_lt5(yvy1650, yvy1660, ty_Bool) -> new_lt14(yvy1650, yvy1660) 52.86/30.46 new_compare18(GT, LT) -> GT 52.86/30.46 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Int) -> new_ltEs9(yvy1650, yvy1660) 52.86/30.46 new_gt10(yvy40, yvy30, cd) -> new_esEs41(new_compare29(yvy40, yvy30, cd)) 52.86/30.46 new_compare18(EQ, LT) -> GT 52.86/30.46 new_esEs11(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.86/30.46 new_lt5(yvy1650, yvy1660, app(app(app(ty_@3, dgc), dgd), dge)) -> new_lt13(yvy1650, yvy1660, dgc, dgd, dge) 52.86/30.46 new_esEs10(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.86/30.46 new_compare0([], :(yvy300, yvy301), bh) -> LT 52.86/30.46 new_compare10(yvy237, yvy238, False, ehh, faa) -> GT 52.86/30.46 new_esEs6(yvy402, yvy302, ty_Ordering) -> new_esEs26(yvy402, yvy302) 52.86/30.46 new_compare30(yvy400, yvy300, ty_@0) -> new_compare5(yvy400, yvy300) 52.86/30.46 new_esEs33(yvy1650, yvy1660, ty_Ordering) -> new_esEs26(yvy1650, yvy1660) 52.86/30.46 new_esEs16(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 52.86/30.46 new_esEs5(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.86/30.46 new_compare30(yvy400, yvy300, ty_Ordering) -> new_compare18(yvy400, yvy300) 52.86/30.46 new_lt21(yvy1650, yvy1660, ty_Char) -> new_lt8(yvy1650, yvy1660) 52.86/30.46 new_ltEs23(yvy1651, yvy1661, app(app(ty_@2, fgg), fgh)) -> new_ltEs12(yvy1651, yvy1661, fgg, fgh) 52.86/30.46 new_gt15(yvy40, yvy30, ty_Float) -> new_gt2(yvy40, yvy30) 52.86/30.46 new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) 52.86/30.46 new_gt6(yvy40, yvy30) -> new_esEs41(new_compare5(yvy40, yvy30)) 52.86/30.46 new_lt20(yvy190, yvy192, app(ty_[], eg)) -> new_lt10(yvy190, yvy192, eg) 52.86/30.46 new_esEs18(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bff) -> new_asAs(new_esEs30(yvy4000, yvy3000, bff), new_esEs18(yvy4001, yvy3001, bff)) 52.86/30.46 new_primCompAux00(yvy133, EQ) -> yvy133 52.86/30.46 new_lt5(yvy1650, yvy1660, ty_Ordering) -> new_lt17(yvy1650, yvy1660) 52.86/30.46 new_compare7(False, True) -> LT 52.86/30.46 new_esEs6(yvy402, yvy302, app(app(ty_Either, dda), ddb)) -> new_esEs25(yvy402, yvy302, dda, ddb) 52.86/30.46 new_esEs33(yvy1650, yvy1660, ty_Bool) -> new_esEs23(yvy1650, yvy1660) 52.86/30.46 new_esEs33(yvy1650, yvy1660, app(app(app(ty_@3, ffg), ffh), fga)) -> new_esEs22(yvy1650, yvy1660, ffg, ffh, fga) 52.86/30.46 new_esEs6(yvy402, yvy302, ty_@0) -> new_esEs19(yvy402, yvy302) 52.86/30.46 new_esEs35(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.46 new_lt26(yvy20, yvy15, ty_Char) -> new_lt8(yvy20, yvy15) 52.86/30.46 new_esEs29(yvy190, yvy192, ty_Int) -> new_esEs17(yvy190, yvy192) 52.86/30.46 new_compare30(yvy400, yvy300, ty_Integer) -> new_compare14(yvy400, yvy300) 52.86/30.46 new_lt23(yvy155, yvy158, ty_Float) -> new_lt7(yvy155, yvy158) 52.86/30.46 new_lt21(yvy1650, yvy1660, app(ty_[], ffd)) -> new_lt10(yvy1650, yvy1660, ffd) 52.86/30.46 new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) 52.86/30.46 new_esEs37(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.86/30.46 new_esEs9(yvy400, yvy300, app(app(ty_@2, gaf), gag)) -> new_esEs21(yvy400, yvy300, gaf, gag) 52.86/30.46 new_esEs4(yvy401, yvy301, app(ty_Maybe, bdg)) -> new_esEs24(yvy401, yvy301, bdg) 52.86/30.46 new_gt15(yvy40, yvy30, app(app(app(ty_@3, ca), cb), cc)) -> new_gt8(yvy40, yvy30, ca, cb, cc) 52.86/30.46 new_gt15(yvy40, yvy30, app(app(ty_Either, ce), cf)) -> new_gt11(yvy40, yvy30, ce, cf) 52.86/30.46 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Ordering, bae) -> new_ltEs16(yvy1650, yvy1660) 52.86/30.46 new_esEs27(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs17(new_sr0(yvy4000, yvy3001), new_sr0(yvy4001, yvy3000)) 52.86/30.46 new_esEs31(yvy4001, yvy3001, ty_Char) -> new_esEs16(yvy4001, yvy3001) 52.86/30.46 new_esEs32(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs22(yvy4000, yvy3000, feb, fec, fed) 52.86/30.46 new_ltEs11(yvy165, yvy166) -> new_fsEs(new_compare14(yvy165, yvy166)) 52.86/30.46 new_esEs5(yvy400, yvy300, app(app(ty_Either, bfd), bfe)) -> new_esEs25(yvy400, yvy300, bfd, bfe) 52.86/30.46 new_ltEs13(False, True) -> True 52.86/30.46 new_ltEs13(False, False) -> True 52.86/30.46 new_esEs32(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.86/30.46 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_Ratio, fcg)) -> new_ltEs18(yvy1650, yvy1660, fcg) 52.86/30.46 new_esEs36(yvy4002, yvy3002, ty_Integer) -> new_esEs20(yvy4002, yvy3002) 52.86/30.46 new_ltEs22(yvy172, yvy173, app(ty_[], fad)) -> new_ltEs10(yvy172, yvy173, fad) 52.86/30.46 new_esEs13(yvy1651, yvy1661, ty_Float) -> new_esEs15(yvy1651, yvy1661) 52.86/30.46 new_lt21(yvy1650, yvy1660, ty_Int) -> new_lt9(yvy1650, yvy1660) 52.86/30.46 new_esEs5(yvy400, yvy300, app(ty_Maybe, bfa)) -> new_esEs24(yvy400, yvy300, bfa) 52.86/30.46 new_gt15(yvy40, yvy30, ty_Integer) -> new_gt7(yvy40, yvy30) 52.86/30.46 new_compare30(yvy400, yvy300, ty_Bool) -> new_compare7(yvy400, yvy300) 52.86/30.46 new_esEs6(yvy402, yvy302, ty_Float) -> new_esEs15(yvy402, yvy302) 52.86/30.46 new_lt20(yvy190, yvy192, ty_Char) -> new_lt8(yvy190, yvy192) 52.86/30.46 new_ltEs22(yvy172, yvy173, app(app(ty_@2, fae), faf)) -> new_ltEs12(yvy172, yvy173, fae, faf) 52.86/30.46 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, app(app(ty_@2, cee), cef)) -> new_ltEs12(yvy1650, yvy1660, cee, cef) 52.86/30.46 new_compare13(Float(yvy400, Neg(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.86/30.46 new_lt6(yvy1651, yvy1661, ty_Ordering) -> new_lt17(yvy1651, yvy1661) 52.86/30.46 new_compare29(Just(yvy400), Nothing, cd) -> GT 52.86/30.46 new_lt22(yvy154, yvy157, app(app(ty_Either, cgh), cha)) -> new_lt16(yvy154, yvy157, cgh, cha) 52.86/30.46 new_esEs14(yvy1650, yvy1660, ty_Char) -> new_esEs16(yvy1650, yvy1660) 52.86/30.46 new_esEs11(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.86/30.46 new_esEs31(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.86/30.46 new_lt22(yvy154, yvy157, ty_Int) -> new_lt9(yvy154, yvy157) 52.86/30.46 new_lt23(yvy155, yvy158, ty_@0) -> new_lt4(yvy155, yvy158) 52.86/30.46 new_ltEs14(Just(yvy1650), Nothing, bac) -> False 52.86/30.46 new_ltEs14(Nothing, Nothing, bac) -> True 52.86/30.46 new_gt15(yvy40, yvy30, ty_Bool) -> new_gt9(yvy40, yvy30) 52.86/30.46 new_esEs41(GT) -> True 52.86/30.46 new_esEs11(yvy400, yvy300, app(ty_Maybe, bcd)) -> new_esEs24(yvy400, yvy300, bcd) 52.86/30.46 new_lt21(yvy1650, yvy1660, app(ty_Maybe, fgb)) -> new_lt15(yvy1650, yvy1660, fgb) 52.86/30.46 new_compare30(yvy400, yvy300, app(ty_[], cbh)) -> new_compare0(yvy400, yvy300, cbh) 52.86/30.46 new_esEs5(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.86/30.46 new_esEs36(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) 52.86/30.46 new_gt15(yvy40, yvy30, app(ty_Ratio, cg)) -> new_gt13(yvy40, yvy30, cg) 52.86/30.46 new_esEs38(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.86/30.46 new_esEs11(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.86/30.46 new_lt5(yvy1650, yvy1660, ty_Char) -> new_lt8(yvy1650, yvy1660) 52.86/30.46 new_lt21(yvy1650, yvy1660, ty_Ordering) -> new_lt17(yvy1650, yvy1660) 52.86/30.46 new_lt5(yvy1650, yvy1660, app(ty_Maybe, dgf)) -> new_lt15(yvy1650, yvy1660, dgf) 52.86/30.46 new_lt5(yvy1650, yvy1660, ty_@0) -> new_lt4(yvy1650, yvy1660) 52.86/30.46 new_lt22(yvy154, yvy157, ty_@0) -> new_lt4(yvy154, yvy157) 52.86/30.46 new_ltEs24(yvy156, yvy159, app(app(ty_@2, daf), dag)) -> new_ltEs12(yvy156, yvy159, daf, dag) 52.86/30.46 new_lt22(yvy154, yvy157, ty_Char) -> new_lt8(yvy154, yvy157) 52.86/30.46 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.86/30.46 new_compare18(EQ, EQ) -> EQ 52.86/30.46 new_esEs37(yvy4001, yvy3001, app(ty_Ratio, bhg)) -> new_esEs28(yvy4001, yvy3001, bhg) 52.86/30.46 new_lt26(yvy20, yvy15, app(ty_[], egf)) -> new_lt10(yvy20, yvy15, egf) 52.86/30.46 new_esEs39(yvy155, yvy158, ty_Float) -> new_esEs15(yvy155, yvy158) 52.86/30.46 new_gt15(yvy40, yvy30, ty_@0) -> new_gt6(yvy40, yvy30) 52.86/30.46 new_esEs14(yvy1650, yvy1660, app(ty_Ratio, dha)) -> new_esEs28(yvy1650, yvy1660, dha) 52.86/30.46 new_esEs13(yvy1651, yvy1661, ty_Bool) -> new_esEs23(yvy1651, yvy1661) 52.86/30.46 new_esEs32(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.46 new_esEs33(yvy1650, yvy1660, ty_Integer) -> new_esEs20(yvy1650, yvy1660) 52.86/30.46 new_ltEs8(yvy165, yvy166) -> new_fsEs(new_compare19(yvy165, yvy166)) 52.86/30.46 new_esEs13(yvy1651, yvy1661, app(app(ty_Either, eaa), eab)) -> new_esEs25(yvy1651, yvy1661, eaa, eab) 52.86/30.46 new_compare18(LT, EQ) -> LT 52.86/30.46 new_lt20(yvy190, yvy192, ty_@0) -> new_lt4(yvy190, yvy192) 52.86/30.46 new_esEs13(yvy1651, yvy1661, app(app(app(ty_@3, dhe), dhf), dhg)) -> new_esEs22(yvy1651, yvy1661, dhe, dhf, dhg) 52.86/30.46 new_esEs40(yvy154, yvy157, ty_Ordering) -> new_esEs26(yvy154, yvy157) 52.86/30.46 new_esEs38(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.86/30.46 new_compare0(:(yvy400, yvy401), [], bh) -> GT 52.86/30.46 new_esEs36(yvy4002, yvy3002, ty_Bool) -> new_esEs23(yvy4002, yvy3002) 52.86/30.46 new_esEs36(yvy4002, yvy3002, app(app(ty_Either, bgf), bgg)) -> new_esEs25(yvy4002, yvy3002, bgf, bgg) 52.86/30.46 new_esEs21(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bfb, bfc) -> new_asAs(new_esEs32(yvy4000, yvy3000, bfb), new_esEs31(yvy4001, yvy3001, bfc)) 52.86/30.46 new_lt17(yvy40, yvy30) -> new_esEs12(new_compare18(yvy40, yvy30)) 52.86/30.46 new_primPlusNat0(Succ(yvy90200), Succ(yvy21000)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21000))) 52.86/30.46 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Bool, bae) -> new_ltEs13(yvy1650, yvy1660) 52.86/30.46 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Int, bae) -> new_ltEs9(yvy1650, yvy1660) 52.86/30.46 new_compare30(yvy400, yvy300, app(app(ty_Either, ccg), cch)) -> new_compare16(yvy400, yvy300, ccg, cch) 52.86/30.46 new_esEs4(yvy401, yvy301, app(app(ty_Either, bec), bed)) -> new_esEs25(yvy401, yvy301, bec, bed) 52.86/30.46 new_esEs37(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) 52.86/30.46 new_esEs40(yvy154, yvy157, ty_Float) -> new_esEs15(yvy154, yvy157) 52.86/30.46 new_esEs13(yvy1651, yvy1661, ty_Ordering) -> new_esEs26(yvy1651, yvy1661) 52.86/30.46 new_compare25(yvy179, yvy180, False, da, db) -> new_compare10(yvy179, yvy180, new_ltEs19(yvy179, yvy180, db), da, db) 52.86/30.46 new_lt20(yvy190, yvy192, ty_Int) -> new_lt9(yvy190, yvy192) 52.86/30.46 new_esEs35(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.46 new_compare110(yvy247, yvy248, yvy249, yvy250, False, fhh, gaa) -> GT 52.86/30.46 new_esEs36(yvy4002, yvy3002, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs22(yvy4002, yvy3002, bfg, bfh, bga) 52.86/30.46 new_esEs14(yvy1650, yvy1660, ty_Float) -> new_esEs15(yvy1650, yvy1660) 52.86/30.46 new_compare29(Nothing, Just(yvy300), cd) -> LT 52.86/30.46 new_esEs31(yvy4001, yvy3001, ty_Double) -> new_esEs27(yvy4001, yvy3001) 52.86/30.46 new_esEs10(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.86/30.46 new_lt20(yvy190, yvy192, app(ty_Maybe, ff)) -> new_lt15(yvy190, yvy192, ff) 52.86/30.46 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Char, bae) -> new_ltEs8(yvy1650, yvy1660) 52.86/30.46 new_lt6(yvy1651, yvy1661, app(app(ty_Either, eaa), eab)) -> new_lt16(yvy1651, yvy1661, eaa, eab) 52.86/30.46 new_lt5(yvy1650, yvy1660, ty_Int) -> new_lt9(yvy1650, yvy1660) 52.86/30.46 new_esEs30(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.46 new_esEs11(yvy400, yvy300, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs22(yvy400, yvy300, bca, bcb, bcc) 52.86/30.46 new_esEs33(yvy1650, yvy1660, app(ty_Ratio, fge)) -> new_esEs28(yvy1650, yvy1660, fge) 52.86/30.46 new_compare0(:(yvy400, yvy401), :(yvy300, yvy301), bh) -> new_primCompAux0(yvy400, yvy300, new_compare0(yvy401, yvy301, bh), bh) 52.86/30.46 new_esEs10(yvy400, yvy300, app(ty_Ratio, bbe)) -> new_esEs28(yvy400, yvy300, bbe) 52.86/30.46 new_lt21(yvy1650, yvy1660, app(app(ty_Either, fgc), fgd)) -> new_lt16(yvy1650, yvy1660, fgc, fgd) 52.86/30.46 new_gt9(yvy40, yvy30) -> new_esEs41(new_compare7(yvy40, yvy30)) 52.86/30.46 new_ltEs13(True, False) -> False 52.86/30.46 new_esEs36(yvy4002, yvy3002, ty_Char) -> new_esEs16(yvy4002, yvy3002) 52.86/30.46 new_esEs36(yvy4002, yvy3002, ty_Ordering) -> new_esEs26(yvy4002, yvy3002) 52.86/30.46 new_esEs13(yvy1651, yvy1661, ty_Char) -> new_esEs16(yvy1651, yvy1661) 52.86/30.46 new_compare29(Just(yvy400), Just(yvy300), cd) -> new_compare27(yvy400, yvy300, new_esEs9(yvy400, yvy300, cd), cd) 52.86/30.46 new_compare16(Right(yvy400), Right(yvy300), ce, cf) -> new_compare25(yvy400, yvy300, new_esEs11(yvy400, yvy300, cf), ce, cf) 52.86/30.46 new_esEs11(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.86/30.46 new_esEs40(yvy154, yvy157, ty_@0) -> new_esEs19(yvy154, yvy157) 52.86/30.46 new_compare16(Right(yvy400), Left(yvy300), ce, cf) -> GT 52.86/30.46 new_esEs40(yvy154, yvy157, app(app(ty_Either, cgh), cha)) -> new_esEs25(yvy154, yvy157, cgh, cha) 52.86/30.46 new_ltEs20(yvy191, yvy193, app(ty_[], gb)) -> new_ltEs10(yvy191, yvy193, gb) 52.86/30.46 new_compare30(yvy400, yvy300, app(app(app(ty_@3, ccc), ccd), cce)) -> new_compare31(yvy400, yvy300, ccc, ccd, cce) 52.86/30.46 new_lt20(yvy190, yvy192, app(app(ty_Either, fg), fh)) -> new_lt16(yvy190, yvy192, fg, fh) 52.86/30.46 new_ltEs21(yvy165, yvy166, app(ty_[], he)) -> new_ltEs10(yvy165, yvy166, he) 52.86/30.46 new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) 52.86/30.46 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, ty_Float) -> new_ltEs7(yvy1650, yvy1660) 52.86/30.46 new_esEs29(yvy190, yvy192, ty_Double) -> new_esEs27(yvy190, yvy192) 52.86/30.46 new_compare30(yvy400, yvy300, ty_Float) -> new_compare13(yvy400, yvy300) 52.86/30.46 new_esEs38(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.86/30.46 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Integer, bae) -> new_ltEs11(yvy1650, yvy1660) 52.86/30.46 new_gt13(yvy40, yvy30, cg) -> new_esEs41(new_compare12(yvy40, yvy30, cg)) 52.86/30.46 new_ltEs17(yvy165, yvy166) -> new_fsEs(new_compare9(yvy165, yvy166)) 52.86/30.46 new_compare110(yvy247, yvy248, yvy249, yvy250, True, fhh, gaa) -> LT 52.86/30.46 new_esEs14(yvy1650, yvy1660, app(ty_Maybe, dgf)) -> new_esEs24(yvy1650, yvy1660, dgf) 52.86/30.46 new_esEs30(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.86/30.46 new_esEs37(yvy4001, yvy3001, ty_Ordering) -> new_esEs26(yvy4001, yvy3001) 52.86/30.46 new_esEs11(yvy400, yvy300, app(ty_Ratio, bcg)) -> new_esEs28(yvy400, yvy300, bcg) 52.86/30.46 new_esEs4(yvy401, yvy301, ty_@0) -> new_esEs19(yvy401, yvy301) 52.86/30.46 new_esEs14(yvy1650, yvy1660, ty_Ordering) -> new_esEs26(yvy1650, yvy1660) 52.86/30.46 new_esEs37(yvy4001, yvy3001, app(ty_Maybe, bhd)) -> new_esEs24(yvy4001, yvy3001, bhd) 52.86/30.46 new_gt15(yvy40, yvy30, app(ty_Maybe, cd)) -> new_gt10(yvy40, yvy30, cd) 52.86/30.46 new_compare30(yvy400, yvy300, ty_Char) -> new_compare19(yvy400, yvy300) 52.86/30.46 new_lt11(yvy40, yvy30) -> new_esEs12(new_compare14(yvy40, yvy30)) 52.86/30.46 new_esEs39(yvy155, yvy158, ty_@0) -> new_esEs19(yvy155, yvy158) 52.86/30.46 new_ltEs6(yvy1652, yvy1662, app(ty_[], ead)) -> new_ltEs10(yvy1652, yvy1662, ead) 52.86/30.46 new_ltEs19(yvy179, yvy180, app(ty_[], dc)) -> new_ltEs10(yvy179, yvy180, dc) 52.86/30.46 new_compare28(yvy172, yvy173, True, fab, fac) -> EQ 52.86/30.46 new_esEs38(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.86/30.46 new_esEs38(yvy4000, yvy3000, app(app(ty_Either, cbb), cbc)) -> new_esEs25(yvy4000, yvy3000, cbb, cbc) 52.86/30.46 new_esEs34(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.86/30.46 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_@0, bae) -> new_ltEs4(yvy1650, yvy1660) 52.86/30.46 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_Maybe, eca), bfe) -> new_esEs24(yvy4000, yvy3000, eca) 52.86/30.46 new_compare14(Integer(yvy400), Integer(yvy300)) -> new_primCmpInt(yvy400, yvy300) 52.86/30.46 new_esEs11(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.86/30.46 new_esEs14(yvy1650, yvy1660, app(app(ty_Either, dgg), dgh)) -> new_esEs25(yvy1650, yvy1660, dgg, dgh) 52.86/30.46 new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT 52.86/30.46 new_lt21(yvy1650, yvy1660, ty_@0) -> new_lt4(yvy1650, yvy1660) 52.86/30.46 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Int, bfe) -> new_esEs17(yvy4000, yvy3000) 52.86/30.46 new_ltEs19(yvy179, yvy180, ty_Float) -> new_ltEs7(yvy179, yvy180) 52.86/30.46 new_esEs14(yvy1650, yvy1660, ty_Bool) -> new_esEs23(yvy1650, yvy1660) 52.86/30.46 new_lt7(yvy40, yvy30) -> new_esEs12(new_compare13(yvy40, yvy30)) 52.86/30.46 new_ltEs19(yvy179, yvy180, app(app(ty_Either, eb), ec)) -> new_ltEs15(yvy179, yvy180, eb, ec) 52.86/30.46 new_lt23(yvy155, yvy158, ty_Char) -> new_lt8(yvy155, yvy158) 52.86/30.46 new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT 52.86/30.46 new_esEs10(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.86/30.46 new_esEs13(yvy1651, yvy1661, app(ty_Maybe, dhh)) -> new_esEs24(yvy1651, yvy1661, dhh) 52.86/30.46 new_lt26(yvy20, yvy15, ty_Float) -> new_lt7(yvy20, yvy15) 52.86/30.46 new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) 52.86/30.46 new_esEs38(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.46 new_esEs24(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.86/30.46 new_esEs33(yvy1650, yvy1660, ty_Int) -> new_esEs17(yvy1650, yvy1660) 52.86/30.46 new_esEs41(EQ) -> False 52.86/30.46 new_esEs40(yvy154, yvy157, app(ty_[], cga)) -> new_esEs18(yvy154, yvy157, cga) 52.86/30.46 new_lt4(yvy40, yvy30) -> new_esEs12(new_compare5(yvy40, yvy30)) 52.86/30.46 new_primCompAux0(yvy400, yvy300, yvy115, bh) -> new_primCompAux00(yvy115, new_compare30(yvy400, yvy300, bh)) 52.86/30.46 new_ltEs14(Nothing, Just(yvy1660), bac) -> True 52.86/30.46 new_esEs39(yvy155, yvy158, ty_Double) -> new_esEs27(yvy155, yvy158) 52.86/30.46 new_esEs39(yvy155, yvy158, app(app(ty_Either, dab), dac)) -> new_esEs25(yvy155, yvy158, dab, dac) 52.86/30.46 new_gt15(yvy40, yvy30, app(ty_[], bh)) -> new_gt5(yvy40, yvy30, bh) 52.86/30.46 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 52.86/30.46 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 52.86/30.46 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, eeb), eec), eed)) -> new_esEs22(yvy4000, yvy3000, eeb, eec, eed) 52.86/30.46 new_compare30(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) 52.86/30.46 new_esEs39(yvy155, yvy158, ty_Bool) -> new_esEs23(yvy155, yvy158) 52.86/30.46 new_esEs29(yvy190, yvy192, app(app(ty_@2, eh), fa)) -> new_esEs21(yvy190, yvy192, eh, fa) 52.86/30.46 new_lt23(yvy155, yvy158, app(ty_[], chc)) -> new_lt10(yvy155, yvy158, chc) 52.86/30.46 new_esEs7(yvy401, yvy301, app(ty_[], dee)) -> new_esEs18(yvy401, yvy301, dee) 52.86/30.46 new_ltEs13(True, True) -> True 52.86/30.46 new_esEs9(yvy400, yvy300, app(ty_Ratio, gah)) -> new_esEs28(yvy400, yvy300, gah) 52.86/30.46 new_ltEs6(yvy1652, yvy1662, app(ty_Maybe, ebb)) -> new_ltEs14(yvy1652, yvy1662, ebb) 52.86/30.46 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(ty_Either, cea), ceb), bae) -> new_ltEs15(yvy1650, yvy1660, cea, ceb) 52.86/30.46 new_esEs6(yvy402, yvy302, ty_Char) -> new_esEs16(yvy402, yvy302) 52.86/30.46 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(ty_Either, ece), ecf), bfe) -> new_esEs25(yvy4000, yvy3000, ece, ecf) 52.86/30.46 new_esEs4(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) 52.86/30.46 new_esEs38(yvy4000, yvy3000, app(ty_Maybe, caf)) -> new_esEs24(yvy4000, yvy3000, caf) 52.86/30.46 new_esEs18([], [], bff) -> True 52.86/30.46 new_compare16(Left(yvy400), Right(yvy300), ce, cf) -> LT 52.86/30.46 new_ltEs24(yvy156, yvy159, ty_Double) -> new_ltEs17(yvy156, yvy159) 52.86/30.46 new_ltEs19(yvy179, yvy180, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs5(yvy179, yvy180, df, dg, dh) 52.86/30.46 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_[], fbf)) -> new_ltEs10(yvy1650, yvy1660, fbf) 52.86/30.46 new_lt5(yvy1650, yvy1660, app(ty_[], dfh)) -> new_lt10(yvy1650, yvy1660, dfh) 52.86/30.46 new_lt23(yvy155, yvy158, ty_Integer) -> new_lt11(yvy155, yvy158) 52.86/30.46 new_esEs30(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.86/30.46 new_primCmpNat0(Zero, Zero) -> EQ 52.86/30.46 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_Maybe, eee)) -> new_esEs24(yvy4000, yvy3000, eee) 52.86/30.46 new_esEs32(yvy4000, yvy3000, app(ty_Ratio, feh)) -> new_esEs28(yvy4000, yvy3000, feh) 52.86/30.46 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_[], efc)) -> new_esEs18(yvy4000, yvy3000, efc) 52.86/30.46 new_esEs10(yvy400, yvy300, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs22(yvy400, yvy300, bag, bah, bba) 52.86/30.46 new_lt6(yvy1651, yvy1661, ty_Int) -> new_lt9(yvy1651, yvy1661) 52.86/30.46 new_esEs14(yvy1650, yvy1660, ty_Double) -> new_esEs27(yvy1650, yvy1660) 52.86/30.46 new_lt20(yvy190, yvy192, ty_Bool) -> new_lt14(yvy190, yvy192) 52.86/30.46 new_ltEs22(yvy172, yvy173, ty_Int) -> new_ltEs9(yvy172, yvy173) 52.86/30.46 new_compare26(yvy190, yvy191, yvy192, yvy193, False, ee, ef) -> new_compare11(yvy190, yvy191, yvy192, yvy193, new_lt20(yvy190, yvy192, ee), new_asAs(new_esEs29(yvy190, yvy192, ee), new_ltEs20(yvy191, yvy193, ef)), ee, ef) 52.86/30.46 new_ltEs16(GT, EQ) -> False 52.86/30.46 new_esEs14(yvy1650, yvy1660, ty_Integer) -> new_esEs20(yvy1650, yvy1660) 52.86/30.46 new_compare27(yvy165, yvy166, True, hd) -> EQ 52.86/30.46 new_esEs7(yvy401, yvy301, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs22(yvy401, yvy301, ddd, dde, ddf) 52.86/30.46 new_ltEs19(yvy179, yvy180, ty_Double) -> new_ltEs17(yvy179, yvy180) 52.86/30.46 new_lt16(yvy40, yvy30, ce, cf) -> new_esEs12(new_compare16(yvy40, yvy30, ce, cf)) 52.86/30.46 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Integer) -> new_ltEs11(yvy1650, yvy1660) 52.86/30.46 new_esEs4(yvy401, yvy301, ty_Ordering) -> new_esEs26(yvy401, yvy301) 52.86/30.46 new_ltEs10(yvy165, yvy166, he) -> new_fsEs(new_compare0(yvy165, yvy166, he)) 52.86/30.46 new_esEs7(yvy401, yvy301, ty_@0) -> new_esEs19(yvy401, yvy301) 52.86/30.46 new_compare8(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) 52.86/30.46 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.86/30.46 new_ltEs20(yvy191, yvy193, ty_Integer) -> new_ltEs11(yvy191, yvy193) 52.86/30.46 new_ltEs19(yvy179, yvy180, ty_@0) -> new_ltEs4(yvy179, yvy180) 52.86/30.46 new_lt20(yvy190, yvy192, app(app(ty_@2, eh), fa)) -> new_lt12(yvy190, yvy192, eh, fa) 52.86/30.46 new_primCompAux00(yvy133, GT) -> GT 52.86/30.46 new_esEs8(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.86/30.46 new_esEs37(yvy4001, yvy3001, ty_Char) -> new_esEs16(yvy4001, yvy3001) 52.86/30.46 new_esEs40(yvy154, yvy157, app(ty_Maybe, cgg)) -> new_esEs24(yvy154, yvy157, cgg) 52.86/30.46 new_esEs40(yvy154, yvy157, ty_Int) -> new_esEs17(yvy154, yvy157) 52.86/30.46 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, ty_Ordering) -> new_ltEs16(yvy1650, yvy1660) 52.86/30.46 new_esEs32(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.86/30.46 new_esEs30(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.86/30.46 new_esEs8(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.86/30.46 new_ltEs24(yvy156, yvy159, app(app(app(ty_@3, dah), dba), dbb)) -> new_ltEs5(yvy156, yvy159, dah, dba, dbb) 52.86/30.46 new_ltEs23(yvy1651, yvy1661, app(ty_[], fgf)) -> new_ltEs10(yvy1651, yvy1661, fgf) 52.86/30.46 new_ltEs24(yvy156, yvy159, ty_@0) -> new_ltEs4(yvy156, yvy159) 52.86/30.46 new_ltEs4(yvy165, yvy166) -> new_fsEs(new_compare5(yvy165, yvy166)) 52.86/30.46 new_esEs33(yvy1650, yvy1660, app(ty_[], ffd)) -> new_esEs18(yvy1650, yvy1660, ffd) 52.86/30.46 new_ltEs16(LT, LT) -> True 52.86/30.46 new_esEs29(yvy190, yvy192, app(app(ty_Either, fg), fh)) -> new_esEs25(yvy190, yvy192, fg, fh) 52.86/30.46 new_ltEs7(yvy165, yvy166) -> new_fsEs(new_compare13(yvy165, yvy166)) 52.86/30.46 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_Ratio, ecd), bfe) -> new_esEs28(yvy4000, yvy3000, ecd) 52.86/30.46 new_ltEs19(yvy179, yvy180, ty_Bool) -> new_ltEs13(yvy179, yvy180) 52.86/30.46 new_lt6(yvy1651, yvy1661, app(ty_Maybe, dhh)) -> new_lt15(yvy1651, yvy1661, dhh) 52.86/30.46 new_esEs38(yvy4000, yvy3000, app(ty_[], cbd)) -> new_esEs18(yvy4000, yvy3000, cbd) 52.86/30.46 new_esEs39(yvy155, yvy158, app(app(ty_@2, chd), che)) -> new_esEs21(yvy155, yvy158, chd, che) 52.86/30.46 new_ltEs24(yvy156, yvy159, ty_Float) -> new_ltEs7(yvy156, yvy159) 52.86/30.46 new_esEs13(yvy1651, yvy1661, ty_@0) -> new_esEs19(yvy1651, yvy1661) 52.86/30.46 new_sr(Integer(yvy4000), Integer(yvy3010)) -> Integer(new_primMulInt(yvy4000, yvy3010)) 52.86/30.46 new_primCmpNat0(Succ(yvy4000), Zero) -> GT 52.86/30.46 new_esEs38(yvy4000, yvy3000, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs22(yvy4000, yvy3000, cac, cad, cae) 52.86/30.46 new_esEs30(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.86/30.46 new_pePe(False, yvy280) -> yvy280 52.86/30.46 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.46 new_compare6(@2(yvy400, yvy401), @2(yvy300, yvy301), bf, bg) -> new_compare26(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs5(yvy400, yvy300, bf), new_esEs4(yvy401, yvy301, bg)), bf, bg) 52.86/30.46 new_compare25(yvy179, yvy180, True, da, db) -> EQ 52.86/30.46 new_compare18(LT, GT) -> LT 52.86/30.46 new_lt22(yvy154, yvy157, app(ty_Maybe, cgg)) -> new_lt15(yvy154, yvy157, cgg) 52.86/30.46 new_ltEs16(LT, GT) -> True 52.86/30.46 new_ltEs21(yvy165, yvy166, ty_Double) -> new_ltEs17(yvy165, yvy166) 52.86/30.46 new_lt23(yvy155, yvy158, ty_Bool) -> new_lt14(yvy155, yvy158) 52.86/30.46 new_lt13(yvy40, yvy30, ca, cb, cc) -> new_esEs12(new_compare31(yvy40, yvy30, ca, cb, cc)) 52.86/30.46 new_ltEs16(LT, EQ) -> True 52.86/30.46 new_ltEs16(EQ, LT) -> False 52.86/30.46 new_lt20(yvy190, yvy192, ty_Integer) -> new_lt11(yvy190, yvy192) 52.86/30.46 new_esEs6(yvy402, yvy302, ty_Integer) -> new_esEs20(yvy402, yvy302) 52.86/30.46 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 52.86/30.46 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 52.86/30.46 new_esEs7(yvy401, yvy301, ty_Ordering) -> new_esEs26(yvy401, yvy301) 52.86/30.46 new_lt6(yvy1651, yvy1661, app(app(app(ty_@3, dhe), dhf), dhg)) -> new_lt13(yvy1651, yvy1661, dhe, dhf, dhg) 52.86/30.46 new_lt23(yvy155, yvy158, app(app(ty_Either, dab), dac)) -> new_lt16(yvy155, yvy158, dab, dac) 52.86/30.46 new_ltEs16(GT, LT) -> False 52.86/30.46 new_esEs4(yvy401, yvy301, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs22(yvy401, yvy301, bdd, bde, bdf) 52.86/30.46 new_compare30(yvy400, yvy300, app(ty_Maybe, ccf)) -> new_compare29(yvy400, yvy300, ccf) 52.86/30.46 new_esEs31(yvy4001, yvy3001, ty_Bool) -> new_esEs23(yvy4001, yvy3001) 52.86/30.46 new_esEs25(Left(yvy4000), Left(yvy3000), ty_@0, bfe) -> new_esEs19(yvy4000, yvy3000) 52.86/30.46 new_esEs31(yvy4001, yvy3001, app(app(ty_Either, fdg), fdh)) -> new_esEs25(yvy4001, yvy3001, fdg, fdh) 52.86/30.46 new_ltEs21(yvy165, yvy166, app(app(ty_Either, bad), bae)) -> new_ltEs15(yvy165, yvy166, bad, bae) 52.86/30.46 new_esEs30(yvy4000, yvy3000, app(ty_Ratio, egb)) -> new_esEs28(yvy4000, yvy3000, egb) 52.86/30.46 new_lt21(yvy1650, yvy1660, app(app(app(ty_@3, ffg), ffh), fga)) -> new_lt13(yvy1650, yvy1660, ffg, ffh, fga) 52.86/30.46 new_esEs33(yvy1650, yvy1660, app(ty_Maybe, fgb)) -> new_esEs24(yvy1650, yvy1660, fgb) 52.86/30.46 new_esEs9(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.86/30.46 new_ltEs24(yvy156, yvy159, ty_Int) -> new_ltEs9(yvy156, yvy159) 52.86/30.46 new_esEs7(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) 52.86/30.46 new_lt5(yvy1650, yvy1660, app(ty_Ratio, dha)) -> new_lt19(yvy1650, yvy1660, dha) 52.86/30.46 new_esEs10(yvy400, yvy300, app(ty_Maybe, bbb)) -> new_esEs24(yvy400, yvy300, bbb) 52.86/30.46 new_esEs11(yvy400, yvy300, app(app(ty_Either, bch), bda)) -> new_esEs25(yvy400, yvy300, bch, bda) 52.86/30.46 new_esEs6(yvy402, yvy302, app(ty_Ratio, dch)) -> new_esEs28(yvy402, yvy302, dch) 52.86/30.46 new_compare12(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Integer) -> new_compare14(new_sr(yvy400, yvy301), new_sr(yvy300, yvy401)) 52.86/30.46 new_esEs8(yvy400, yvy300, app(app(ty_@2, dfb), dfc)) -> new_esEs21(yvy400, yvy300, dfb, dfc) 52.86/30.46 new_esEs30(yvy4000, yvy3000, app(ty_Maybe, efg)) -> new_esEs24(yvy4000, yvy3000, efg) 52.86/30.46 new_ltEs20(yvy191, yvy193, app(ty_Maybe, gh)) -> new_ltEs14(yvy191, yvy193, gh) 52.86/30.46 new_esEs20(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 52.86/30.46 new_esEs33(yvy1650, yvy1660, ty_@0) -> new_esEs19(yvy1650, yvy1660) 52.86/30.46 new_esEs30(yvy4000, yvy3000, app(ty_[], ege)) -> new_esEs18(yvy4000, yvy3000, ege) 52.86/30.46 new_esEs26(GT, GT) -> True 52.86/30.46 new_esEs40(yvy154, yvy157, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs22(yvy154, yvy157, cgd, cge, cgf) 52.86/30.46 new_ltEs16(EQ, GT) -> True 52.86/30.46 new_ltEs20(yvy191, yvy193, app(app(ty_@2, gc), gd)) -> new_ltEs12(yvy191, yvy193, gc, gd) 52.86/30.46 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_Maybe, fcd)) -> new_ltEs14(yvy1650, yvy1660, fcd) 52.86/30.46 new_compare18(EQ, GT) -> LT 52.86/30.46 new_ltEs16(EQ, EQ) -> True 52.86/30.46 new_esEs6(yvy402, yvy302, ty_Bool) -> new_esEs23(yvy402, yvy302) 52.86/30.46 new_esEs36(yvy4002, yvy3002, ty_Int) -> new_esEs17(yvy4002, yvy3002) 52.86/30.46 new_compare17(yvy230, yvy231, True, dbg, dbh) -> LT 52.86/30.46 new_esEs29(yvy190, yvy192, ty_Integer) -> new_esEs20(yvy190, yvy192) 52.86/30.46 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Ordering, bfe) -> new_esEs26(yvy4000, yvy3000) 52.86/30.46 new_esEs10(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.86/30.46 new_lt5(yvy1650, yvy1660, ty_Float) -> new_lt7(yvy1650, yvy1660) 52.86/30.46 new_ltEs6(yvy1652, yvy1662, app(app(ty_@2, eae), eaf)) -> new_ltEs12(yvy1652, yvy1662, eae, eaf) 52.86/30.46 new_esEs39(yvy155, yvy158, ty_Char) -> new_esEs16(yvy155, yvy158) 52.86/30.46 new_esEs5(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.86/30.46 new_esEs36(yvy4002, yvy3002, ty_Double) -> new_esEs27(yvy4002, yvy3002) 52.86/30.46 new_esEs10(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.86/30.46 new_lt5(yvy1650, yvy1660, ty_Integer) -> new_lt11(yvy1650, yvy1660) 52.86/30.46 new_esEs13(yvy1651, yvy1661, ty_Int) -> new_esEs17(yvy1651, yvy1661) 52.86/30.46 new_lt21(yvy1650, yvy1660, ty_Float) -> new_lt7(yvy1650, yvy1660) 52.86/30.46 new_esEs23(False, True) -> False 52.86/30.46 new_esEs23(True, False) -> False 52.86/30.46 new_esEs9(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.86/30.46 new_esEs4(yvy401, yvy301, ty_Char) -> new_esEs16(yvy401, yvy301) 52.86/30.46 new_ltEs6(yvy1652, yvy1662, ty_Ordering) -> new_ltEs16(yvy1652, yvy1662) 52.86/30.46 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_Ratio, eeh)) -> new_esEs28(yvy4000, yvy3000, eeh) 52.86/30.46 new_esEs40(yvy154, yvy157, app(ty_Ratio, chb)) -> new_esEs28(yvy154, yvy157, chb) 52.86/30.46 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(ty_@2, fbg), fbh)) -> new_ltEs12(yvy1650, yvy1660, fbg, fbh) 52.86/30.46 new_lt18(yvy40, yvy30) -> new_esEs12(new_compare9(yvy40, yvy30)) 52.86/30.46 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Ordering) -> new_ltEs16(yvy1650, yvy1660) 52.86/30.46 new_esEs6(yvy402, yvy302, app(app(ty_@2, dcf), dcg)) -> new_esEs21(yvy402, yvy302, dcf, dcg) 52.86/30.46 new_ltEs20(yvy191, yvy193, ty_Ordering) -> new_ltEs16(yvy191, yvy193) 52.86/30.46 new_esEs4(yvy401, yvy301, app(ty_Ratio, beb)) -> new_esEs28(yvy401, yvy301, beb) 52.86/30.46 new_esEs5(yvy400, yvy300, app(ty_[], bff)) -> new_esEs18(yvy400, yvy300, bff) 52.86/30.46 new_compare7(False, False) -> EQ 52.86/30.46 new_gt15(yvy40, yvy30, ty_Int) -> new_gt4(yvy40, yvy30) 52.86/30.46 new_lt21(yvy1650, yvy1660, app(ty_Ratio, fge)) -> new_lt19(yvy1650, yvy1660, fge) 52.86/30.46 new_primMulInt(Neg(yvy4000), Neg(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) 52.86/30.46 new_esEs32(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.86/30.46 new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs17(new_sr0(yvy4000, yvy3001), new_sr0(yvy4001, yvy3000)) 52.86/30.46 new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) 52.86/30.46 new_lt19(yvy40, yvy30, cg) -> new_esEs12(new_compare12(yvy40, yvy30, cg)) 52.86/30.46 new_esEs8(yvy400, yvy300, app(app(ty_Either, dfe), dff)) -> new_esEs25(yvy400, yvy300, dfe, dff) 52.86/30.46 new_gt8(yvy40, yvy30, ca, cb, cc) -> new_esEs41(new_compare31(yvy40, yvy30, ca, cb, cc)) 52.86/30.46 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_Ratio, cec), bae) -> new_ltEs18(yvy1650, yvy1660, cec) 52.86/30.46 new_lt23(yvy155, yvy158, app(app(ty_@2, chd), che)) -> new_lt12(yvy155, yvy158, chd, che) 52.86/30.46 new_esEs25(Left(yvy4000), Right(yvy3000), bfd, bfe) -> False 52.86/30.46 new_esEs25(Right(yvy4000), Left(yvy3000), bfd, bfe) -> False 52.86/30.46 new_esEs39(yvy155, yvy158, ty_Integer) -> new_esEs20(yvy155, yvy158) 52.86/30.46 new_esEs30(yvy4000, yvy3000, app(app(app(ty_@3, efd), efe), eff)) -> new_esEs22(yvy4000, yvy3000, efd, efe, eff) 52.86/30.46 new_ltEs21(yvy165, yvy166, ty_Float) -> new_ltEs7(yvy165, yvy166) 52.86/30.46 new_gt12(yvy40, yvy30) -> new_esEs41(new_compare18(yvy40, yvy30)) 52.86/30.46 new_fsEs(yvy281) -> new_not(new_esEs26(yvy281, GT)) 52.86/30.46 new_esEs25(Right(yvy4000), Right(yvy3000), bfd, app(app(app(ty_@3, ech), eda), edb)) -> new_esEs22(yvy4000, yvy3000, ech, eda, edb) 52.86/30.46 new_esEs29(yvy190, yvy192, ty_Bool) -> new_esEs23(yvy190, yvy192) 52.86/30.46 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(ty_@2, ecb), ecc), bfe) -> new_esEs21(yvy4000, yvy3000, ecb, ecc) 52.86/30.46 new_esEs22(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bef, beg, beh) -> new_asAs(new_esEs38(yvy4000, yvy3000, bef), new_asAs(new_esEs37(yvy4001, yvy3001, beg), new_esEs36(yvy4002, yvy3002, beh))) 52.86/30.46 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, ty_Integer) -> new_ltEs11(yvy1650, yvy1660) 52.86/30.46 new_esEs9(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.86/30.46 new_compare7(True, False) -> GT 52.86/30.46 new_lt26(yvy20, yvy15, ty_@0) -> new_lt4(yvy20, yvy15) 52.86/30.46 new_gt2(yvy40, yvy30) -> new_esEs41(new_compare13(yvy40, yvy30)) 52.86/30.46 new_esEs28(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bdc) -> new_asAs(new_esEs35(yvy4000, yvy3000, bdc), new_esEs34(yvy4001, yvy3001, bdc)) 52.86/30.46 new_lt22(yvy154, yvy157, app(app(app(ty_@3, cgd), cge), cgf)) -> new_lt13(yvy154, yvy157, cgd, cge, cgf) 52.86/30.46 new_esEs32(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.86/30.46 new_esEs7(yvy401, yvy301, app(ty_Maybe, ddg)) -> new_esEs24(yvy401, yvy301, ddg) 52.86/30.46 new_esEs31(yvy4001, yvy3001, app(app(ty_@2, fdd), fde)) -> new_esEs21(yvy4001, yvy3001, fdd, fde) 52.86/30.46 new_esEs4(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) 52.86/30.46 new_esEs25(Right(yvy4000), Right(yvy3000), bfd, app(ty_[], eea)) -> new_esEs18(yvy4000, yvy3000, eea) 52.86/30.46 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, app(ty_Maybe, cfb)) -> new_ltEs14(yvy1650, yvy1660, cfb) 52.86/30.46 new_lt23(yvy155, yvy158, app(ty_Ratio, dad)) -> new_lt19(yvy155, yvy158, dad) 52.86/30.46 new_esEs11(yvy400, yvy300, app(ty_[], bdb)) -> new_esEs18(yvy400, yvy300, bdb) 52.86/30.46 new_esEs8(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.86/30.46 new_primMulInt(Pos(yvy4000), Neg(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) 52.86/30.46 new_primMulInt(Neg(yvy4000), Pos(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) 52.86/30.46 new_compare27(yvy165, yvy166, False, hd) -> new_compare15(yvy165, yvy166, new_ltEs21(yvy165, yvy166, hd), hd) 52.86/30.46 new_esEs5(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.86/30.46 new_compare30(yvy400, yvy300, app(app(ty_@2, cca), ccb)) -> new_compare6(yvy400, yvy300, cca, ccb) 52.86/30.46 new_compare5(@0, @0) -> EQ 52.86/30.46 new_esEs25(Right(yvy4000), Right(yvy3000), bfd, app(ty_Maybe, edc)) -> new_esEs24(yvy4000, yvy3000, edc) 52.86/30.46 new_ltEs22(yvy172, yvy173, ty_@0) -> new_ltEs4(yvy172, yvy173) 52.86/30.46 new_ltEs22(yvy172, yvy173, app(app(app(ty_@3, fag), fah), fba)) -> new_ltEs5(yvy172, yvy173, fag, fah, fba) 52.86/30.46 new_ltEs19(yvy179, yvy180, ty_Int) -> new_ltEs9(yvy179, yvy180) 52.86/30.46 new_esEs36(yvy4002, yvy3002, app(ty_[], bgh)) -> new_esEs18(yvy4002, yvy3002, bgh) 52.86/30.46 new_ltEs23(yvy1651, yvy1661, ty_Ordering) -> new_ltEs16(yvy1651, yvy1661) 52.86/30.46 new_compare210(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, cff, cfg, cfh) -> new_compare111(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, new_lt22(yvy154, yvy157, cff), new_asAs(new_esEs40(yvy154, yvy157, cff), new_pePe(new_lt23(yvy155, yvy158, cfg), new_asAs(new_esEs39(yvy155, yvy158, cfg), new_ltEs24(yvy156, yvy159, cfh)))), cff, cfg, cfh) 52.86/30.46 new_esEs9(yvy400, yvy300, app(ty_Maybe, gae)) -> new_esEs24(yvy400, yvy300, gae) 52.86/30.46 new_esEs5(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.86/30.46 new_ltEs20(yvy191, yvy193, ty_Char) -> new_ltEs8(yvy191, yvy193) 52.86/30.46 new_ltEs22(yvy172, yvy173, ty_Double) -> new_ltEs17(yvy172, yvy173) 52.86/30.46 new_asAs(True, yvy208) -> yvy208 52.86/30.46 new_gt15(yvy40, yvy30, app(app(ty_@2, bf), bg)) -> new_gt1(yvy40, yvy30, bf, bg) 52.86/30.46 new_esEs32(yvy4000, yvy3000, app(app(ty_@2, fef), feg)) -> new_esEs21(yvy4000, yvy3000, fef, feg) 52.86/30.46 new_ltEs6(yvy1652, yvy1662, app(ty_Ratio, ebe)) -> new_ltEs18(yvy1652, yvy1662, ebe) 52.86/30.46 new_lt26(yvy20, yvy15, ty_Bool) -> new_lt14(yvy20, yvy15) 52.86/30.46 new_ltEs23(yvy1651, yvy1661, ty_Integer) -> new_ltEs11(yvy1651, yvy1661) 52.86/30.46 new_lt26(yvy20, yvy15, app(app(ty_Either, ehe), ehf)) -> new_lt16(yvy20, yvy15, ehe, ehf) 52.86/30.46 new_esEs5(yvy400, yvy300, app(app(ty_@2, bfb), bfc)) -> new_esEs21(yvy400, yvy300, bfb, bfc) 52.86/30.46 new_lt26(yvy20, yvy15, ty_Double) -> new_lt18(yvy20, yvy15) 52.86/30.46 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs5(yvy1650, yvy1660, ceg, ceh, cfa) 52.86/30.46 new_esEs32(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.86/30.46 new_compare26(yvy190, yvy191, yvy192, yvy193, True, ee, ef) -> EQ 52.86/30.46 new_lt26(yvy20, yvy15, ty_Int) -> new_lt9(yvy20, yvy15) 52.86/30.46 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_[], cdb), bae) -> new_ltEs10(yvy1650, yvy1660, cdb) 52.86/30.46 new_lt26(yvy20, yvy15, app(app(app(ty_@3, eha), ehb), ehc)) -> new_lt13(yvy20, yvy15, eha, ehb, ehc) 52.86/30.46 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_[], ecg), bfe) -> new_esEs18(yvy4000, yvy3000, ecg) 52.86/30.46 new_compare15(yvy223, yvy224, False, dca) -> GT 52.86/30.46 new_compare28(yvy172, yvy173, False, fab, fac) -> new_compare17(yvy172, yvy173, new_ltEs22(yvy172, yvy173, fab), fab, fac) 52.86/30.46 new_lt21(yvy1650, yvy1660, ty_Double) -> new_lt18(yvy1650, yvy1660) 52.86/30.46 new_compare0([], [], bh) -> EQ 52.86/30.46 new_lt22(yvy154, yvy157, app(app(ty_@2, cgb), cgc)) -> new_lt12(yvy154, yvy157, cgb, cgc) 52.86/30.46 new_ltEs16(GT, GT) -> True 52.86/30.46 new_compare13(Float(yvy400, Pos(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.86/30.46 new_esEs37(yvy4001, yvy3001, ty_Double) -> new_esEs27(yvy4001, yvy3001) 52.86/30.46 new_esEs9(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.86/30.46 new_lt26(yvy20, yvy15, app(ty_Maybe, ehd)) -> new_lt15(yvy20, yvy15, ehd) 52.86/30.46 new_primMulNat0(Zero, Zero) -> Zero 52.86/30.46 new_esEs11(yvy400, yvy300, app(app(ty_@2, bce), bcf)) -> new_esEs21(yvy400, yvy300, bce, bcf) 52.86/30.46 new_ltEs21(yvy165, yvy166, app(ty_Maybe, bac)) -> new_ltEs14(yvy165, yvy166, bac) 52.86/30.46 new_lt26(yvy20, yvy15, ty_Ordering) -> new_lt17(yvy20, yvy15) 52.86/30.46 new_lt5(yvy1650, yvy1660, app(app(ty_@2, dga), dgb)) -> new_lt12(yvy1650, yvy1660, dga, dgb) 52.86/30.46 new_ltEs19(yvy179, yvy180, ty_Char) -> new_ltEs8(yvy179, yvy180) 52.86/30.46 new_ltEs23(yvy1651, yvy1661, app(app(ty_Either, fhe), fhf)) -> new_ltEs15(yvy1651, yvy1661, fhe, fhf) 52.86/30.46 new_esEs4(yvy401, yvy301, app(ty_[], bee)) -> new_esEs18(yvy401, yvy301, bee) 52.86/30.46 new_lt21(yvy1650, yvy1660, app(app(ty_@2, ffe), fff)) -> new_lt12(yvy1650, yvy1660, ffe, fff) 52.86/30.46 new_ltEs23(yvy1651, yvy1661, ty_Float) -> new_ltEs7(yvy1651, yvy1661) 52.86/30.46 new_lt5(yvy1650, yvy1660, ty_Double) -> new_lt18(yvy1650, yvy1660) 52.86/30.46 new_ltEs22(yvy172, yvy173, app(ty_Maybe, fbb)) -> new_ltEs14(yvy172, yvy173, fbb) 52.86/30.46 new_esEs32(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs18(yvy4000, yvy3000, ffc) 52.86/30.46 new_esEs33(yvy1650, yvy1660, app(app(ty_@2, ffe), fff)) -> new_esEs21(yvy1650, yvy1660, ffe, fff) 52.86/30.46 new_esEs9(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.86/30.46 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, ty_Int) -> new_ltEs9(yvy1650, yvy1660) 52.86/30.46 new_compare12(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Int) -> new_compare8(new_sr0(yvy400, yvy301), new_sr0(yvy300, yvy401)) 52.86/30.46 new_ltEs22(yvy172, yvy173, app(app(ty_Either, fbc), fbd)) -> new_ltEs15(yvy172, yvy173, fbc, fbd) 52.86/30.46 new_esEs25(Right(yvy4000), Right(yvy3000), bfd, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.86/30.46 new_ltEs24(yvy156, yvy159, app(ty_Ratio, dbf)) -> new_ltEs18(yvy156, yvy159, dbf) 52.86/30.46 new_ltEs6(yvy1652, yvy1662, ty_Char) -> new_ltEs8(yvy1652, yvy1662) 52.86/30.46 new_esEs7(yvy401, yvy301, app(ty_Ratio, deb)) -> new_esEs28(yvy401, yvy301, deb) 52.86/30.46 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 52.86/30.46 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 52.86/30.46 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 52.86/30.46 new_gt5(yvy40, yvy30, bh) -> new_esEs41(new_compare0(yvy40, yvy30, bh)) 52.86/30.46 new_esEs10(yvy400, yvy300, app(ty_[], bbh)) -> new_esEs18(yvy400, yvy300, bbh) 52.86/30.46 new_gt15(yvy40, yvy30, ty_Double) -> new_gt0(yvy40, yvy30) 52.86/30.46 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 52.86/30.46 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 52.86/30.46 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_Maybe, cdh), bae) -> new_ltEs14(yvy1650, yvy1660, cdh) 52.86/30.46 new_compare31(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), ca, cb, cc) -> new_compare210(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs8(yvy400, yvy300, ca), new_asAs(new_esEs7(yvy401, yvy301, cb), new_esEs6(yvy402, yvy302, cc))), ca, cb, cc) 52.86/30.46 new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) 52.86/30.46 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 52.86/30.46 new_ltEs22(yvy172, yvy173, ty_Ordering) -> new_ltEs16(yvy172, yvy173) 52.86/30.46 new_compare111(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, yvy269, cbe, cbf, cbg) -> new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, cbe, cbf, cbg) 52.86/30.46 new_ltEs15(Right(yvy1650), Right(yvy1660), bad, ty_Double) -> new_ltEs17(yvy1650, yvy1660) 52.86/30.46 new_ltEs19(yvy179, yvy180, app(ty_Ratio, ed)) -> new_ltEs18(yvy179, yvy180, ed) 52.86/30.46 new_ltEs21(yvy165, yvy166, ty_Char) -> new_ltEs8(yvy165, yvy166) 52.86/30.46 new_esEs6(yvy402, yvy302, ty_Double) -> new_esEs27(yvy402, yvy302) 52.86/30.46 new_ltEs6(yvy1652, yvy1662, ty_Bool) -> new_ltEs13(yvy1652, yvy1662) 52.86/30.46 new_lt20(yvy190, yvy192, ty_Double) -> new_lt18(yvy190, yvy192) 52.86/30.46 new_not(False) -> True 52.86/30.46 new_ltEs23(yvy1651, yvy1661, app(app(app(ty_@3, fha), fhb), fhc)) -> new_ltEs5(yvy1651, yvy1661, fha, fhb, fhc) 52.86/30.46 new_esEs8(yvy400, yvy300, app(ty_Ratio, dfd)) -> new_esEs28(yvy400, yvy300, dfd) 52.86/30.46 new_ltEs6(yvy1652, yvy1662, ty_Integer) -> new_ltEs11(yvy1652, yvy1662) 52.86/30.46 new_compare18(GT, EQ) -> GT 52.86/30.46 new_esEs5(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.86/30.46 new_ltEs24(yvy156, yvy159, ty_Ordering) -> new_ltEs16(yvy156, yvy159) 52.86/30.46 new_ltEs21(yvy165, yvy166, ty_@0) -> new_ltEs4(yvy165, yvy166) 52.86/30.46 new_ltEs6(yvy1652, yvy1662, app(app(app(ty_@3, eag), eah), eba)) -> new_ltEs5(yvy1652, yvy1662, eag, eah, eba) 52.86/30.46 new_ltEs6(yvy1652, yvy1662, ty_@0) -> new_ltEs4(yvy1652, yvy1662) 52.86/30.46 new_ltEs24(yvy156, yvy159, ty_Integer) -> new_ltEs11(yvy156, yvy159) 52.86/30.46 new_esEs41(LT) -> False 52.86/30.46 new_esEs9(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.86/30.46 new_compare11(yvy247, yvy248, yvy249, yvy250, True, yvy252, fhh, gaa) -> new_compare110(yvy247, yvy248, yvy249, yvy250, True, fhh, gaa) 52.86/30.46 new_esEs37(yvy4001, yvy3001, app(ty_[], cab)) -> new_esEs18(yvy4001, yvy3001, cab) 52.86/30.46 new_lt26(yvy20, yvy15, app(ty_Ratio, ehg)) -> new_lt19(yvy20, yvy15, ehg) 52.86/30.46 new_ltEs20(yvy191, yvy193, app(ty_Ratio, hc)) -> new_ltEs18(yvy191, yvy193, hc) 52.86/30.46 new_ltEs21(yvy165, yvy166, ty_Bool) -> new_ltEs13(yvy165, yvy166) 52.86/30.46 new_esEs4(yvy401, yvy301, ty_Double) -> new_esEs27(yvy401, yvy301) 52.86/30.46 new_esEs38(yvy4000, yvy3000, app(app(ty_@2, cag), cah)) -> new_esEs21(yvy4000, yvy3000, cag, cah) 52.86/30.46 new_esEs8(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.86/30.46 new_ltEs23(yvy1651, yvy1661, app(ty_Maybe, fhd)) -> new_ltEs14(yvy1651, yvy1661, fhd) 52.86/30.46 new_compare29(Nothing, Nothing, cd) -> EQ 52.86/30.46 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Double, bfe) -> new_esEs27(yvy4000, yvy3000) 52.86/30.46 new_esEs9(yvy400, yvy300, app(app(app(ty_@3, gab), gac), gad)) -> new_esEs22(yvy400, yvy300, gab, gac, gad) 52.86/30.46 new_sr0(yvy400, yvy301) -> new_primMulInt(yvy400, yvy301) 52.86/30.46 new_ltEs23(yvy1651, yvy1661, app(ty_Ratio, fhg)) -> new_ltEs18(yvy1651, yvy1661, fhg) 52.86/30.46 new_ltEs24(yvy156, yvy159, ty_Bool) -> new_ltEs13(yvy156, yvy159) 52.86/30.46 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 52.86/30.46 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 52.86/30.46 new_esEs9(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.86/30.46 new_ltEs23(yvy1651, yvy1661, ty_@0) -> new_ltEs4(yvy1651, yvy1661) 52.86/30.46 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, ebf), ebg), ebh), bfe) -> new_esEs22(yvy4000, yvy3000, ebf, ebg, ebh) 52.86/30.46 new_esEs14(yvy1650, yvy1660, app(ty_[], dfh)) -> new_esEs18(yvy1650, yvy1660, dfh) 52.86/30.46 new_ltEs24(yvy156, yvy159, app(app(ty_Either, dbd), dbe)) -> new_ltEs15(yvy156, yvy159, dbd, dbe) 52.86/30.46 new_esEs18(:(yvy4000, yvy4001), [], bff) -> False 52.86/30.46 new_esEs18([], :(yvy3000, yvy3001), bff) -> False 52.86/30.46 new_ltEs23(yvy1651, yvy1661, ty_Bool) -> new_ltEs13(yvy1651, yvy1661) 52.86/30.46 new_lt9(yvy40, yvy30) -> new_esEs12(new_compare8(yvy40, yvy30)) 52.86/30.46 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 52.86/30.46 new_ltEs18(yvy165, yvy166, baf) -> new_fsEs(new_compare12(yvy165, yvy166, baf)) 52.86/30.46 new_ltEs22(yvy172, yvy173, app(ty_Ratio, fbe)) -> new_ltEs18(yvy172, yvy173, fbe) 52.86/30.46 new_esEs26(EQ, EQ) -> True 52.86/30.46 new_ltEs21(yvy165, yvy166, ty_Integer) -> new_ltEs11(yvy165, yvy166) 52.86/30.46 new_esEs8(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.86/30.46 new_esEs25(Right(yvy4000), Right(yvy3000), bfd, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.86/30.46 new_lt6(yvy1651, yvy1661, ty_Double) -> new_lt18(yvy1651, yvy1661) 52.86/30.46 new_compare15(yvy223, yvy224, True, dca) -> LT 52.86/30.46 new_esEs26(LT, LT) -> True 52.86/30.46 new_esEs36(yvy4002, yvy3002, app(app(ty_@2, bgc), bgd)) -> new_esEs21(yvy4002, yvy3002, bgc, bgd) 52.86/30.46 new_esEs9(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.86/30.46 new_esEs24(Nothing, Nothing, bfa) -> True 52.86/30.46 new_esEs13(yvy1651, yvy1661, app(app(ty_@2, dhc), dhd)) -> new_esEs21(yvy1651, yvy1661, dhc, dhd) 52.86/30.46 new_ltEs21(yvy165, yvy166, ty_Int) -> new_ltEs9(yvy165, yvy166) 52.86/30.46 new_ltEs21(yvy165, yvy166, app(ty_Ratio, baf)) -> new_ltEs18(yvy165, yvy166, baf) 52.86/30.46 new_ltEs22(yvy172, yvy173, ty_Bool) -> new_ltEs13(yvy172, yvy173) 52.86/30.46 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 52.86/30.46 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 52.86/30.46 new_ltEs24(yvy156, yvy159, ty_Char) -> new_ltEs8(yvy156, yvy159) 52.86/30.46 new_lt23(yvy155, yvy158, ty_Double) -> new_lt18(yvy155, yvy158) 52.86/30.46 new_primEqNat0(Zero, Zero) -> True 52.86/30.46 new_esEs37(yvy4001, yvy3001, app(app(ty_@2, bhe), bhf)) -> new_esEs21(yvy4001, yvy3001, bhe, bhf) 52.86/30.46 new_esEs25(Right(yvy4000), Right(yvy3000), bfd, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.86/30.46 new_esEs14(yvy1650, yvy1660, app(app(ty_@2, dga), dgb)) -> new_esEs21(yvy1650, yvy1660, dga, dgb) 52.86/30.46 new_ltEs20(yvy191, yvy193, ty_Int) -> new_ltEs9(yvy191, yvy193) 52.86/30.46 new_esEs24(Nothing, Just(yvy3000), bfa) -> False 52.86/30.46 new_esEs24(Just(yvy4000), Nothing, bfa) -> False 52.86/30.46 new_esEs13(yvy1651, yvy1661, app(ty_[], dhb)) -> new_esEs18(yvy1651, yvy1661, dhb) 52.86/30.46 new_esEs25(Right(yvy4000), Right(yvy3000), bfd, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.86/30.46 new_lt26(yvy20, yvy15, ty_Integer) -> new_lt11(yvy20, yvy15) 52.86/30.46 new_compare9(Double(yvy400, Neg(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.86/30.46 new_lt22(yvy154, yvy157, ty_Double) -> new_lt18(yvy154, yvy157) 52.86/30.46 new_asAs(False, yvy208) -> False 52.86/30.46 new_ltEs23(yvy1651, yvy1661, ty_Char) -> new_ltEs8(yvy1651, yvy1661) 52.86/30.46 new_ltEs6(yvy1652, yvy1662, ty_Int) -> new_ltEs9(yvy1652, yvy1662) 52.86/30.46 new_compare111(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, False, yvy269, cbe, cbf, cbg) -> new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, yvy269, cbe, cbf, cbg) 52.86/30.46 new_ltEs22(yvy172, yvy173, ty_Integer) -> new_ltEs11(yvy172, yvy173) 52.86/30.46 new_ltEs24(yvy156, yvy159, app(ty_Maybe, dbc)) -> new_ltEs14(yvy156, yvy159, dbc) 52.86/30.46 new_compare30(yvy400, yvy300, app(ty_Ratio, cda)) -> new_compare12(yvy400, yvy300, cda) 52.86/30.46 new_esEs7(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) 52.86/30.46 new_gt0(yvy40, yvy30) -> new_esEs41(new_compare9(yvy40, yvy30)) 52.86/30.46 new_ltEs21(yvy165, yvy166, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs5(yvy165, yvy166, hh, baa, bab) 52.86/30.46 52.86/30.46 The set Q consists of the following terms: 52.86/30.46 52.86/30.46 new_esEs8(x0, x1, ty_Ordering) 52.86/30.46 new_esEs9(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_esEs7(x0, x1, ty_Char) 52.86/30.46 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 52.86/30.46 new_esEs10(x0, x1, ty_Int) 52.86/30.46 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 52.86/30.46 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 52.86/30.46 new_ltEs23(x0, x1, app(ty_[], x2)) 52.86/30.46 new_ltEs21(x0, x1, ty_Double) 52.86/30.46 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_lt20(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 52.86/30.46 new_esEs29(x0, x1, ty_@0) 52.86/30.46 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs36(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_asAs(False, x0) 52.86/30.46 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_esEs8(x0, x1, ty_Double) 52.86/30.46 new_esEs25(Right(x0), Right(x1), x2, ty_Int) 52.86/30.46 new_lt5(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_compare30(x0, x1, ty_Char) 52.86/30.46 new_lt26(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_ltEs24(x0, x1, app(ty_[], x2)) 52.86/30.46 new_esEs18([], :(x0, x1), x2) 52.86/30.46 new_ltEs21(x0, x1, ty_Ordering) 52.86/30.46 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_primCompAux0(x0, x1, x2, x3) 52.86/30.46 new_compare0(:(x0, x1), [], x2) 52.86/30.46 new_esEs29(x0, x1, ty_Bool) 52.86/30.46 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_lt22(x0, x1, ty_@0) 52.86/30.46 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 52.86/30.46 new_lt5(x0, x1, ty_Float) 52.86/30.46 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_primEqInt(Pos(Zero), Pos(Zero)) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), ty_Int, x2) 52.86/30.46 new_compare15(x0, x1, False, x2) 52.86/30.46 new_primMulNat0(Zero, Succ(x0)) 52.86/30.46 new_ltEs19(x0, x1, ty_Integer) 52.86/30.46 new_compare6(@2(x0, x1), @2(x2, x3), x4, x5) 52.86/30.46 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_esEs11(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 52.86/30.46 new_lt20(x0, x1, ty_Char) 52.86/30.46 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_primCompAux00(x0, GT) 52.86/30.46 new_ltEs20(x0, x1, ty_Ordering) 52.86/30.46 new_ltEs19(x0, x1, ty_Float) 52.86/30.46 new_sr0(x0, x1) 52.86/30.46 new_ltEs7(x0, x1) 52.86/30.46 new_esEs7(x0, x1, ty_Ordering) 52.86/30.46 new_lt26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_primEqInt(Neg(Zero), Neg(Zero)) 52.86/30.46 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_ltEs11(x0, x1) 52.86/30.46 new_ltEs16(GT, EQ) 52.86/30.46 new_ltEs16(EQ, GT) 52.86/30.46 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 52.86/30.46 new_esEs39(x0, x1, ty_Int) 52.86/30.46 new_lt21(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_ltEs21(x0, x1, ty_Char) 52.86/30.46 new_lt11(x0, x1) 52.86/30.46 new_esEs29(x0, x1, ty_Integer) 52.86/30.46 new_ltEs16(LT, LT) 52.86/30.46 new_esEs25(Right(x0), Right(x1), x2, ty_@0) 52.86/30.46 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 52.86/30.46 new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) 52.86/30.46 new_lt26(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs8(x0, x1, ty_Char) 52.86/30.46 new_esEs7(x0, x1, app(ty_[], x2)) 52.86/30.46 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_gt15(x0, x1, ty_Int) 52.86/30.46 new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 52.86/30.46 new_esEs38(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_gt15(x0, x1, ty_@0) 52.86/30.46 new_esEs35(x0, x1, ty_Integer) 52.86/30.46 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_ltEs20(x0, x1, ty_Char) 52.86/30.46 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_primPlusNat0(Zero, Succ(x0)) 52.86/30.46 new_compare30(x0, x1, ty_Double) 52.86/30.46 new_esEs20(Integer(x0), Integer(x1)) 52.86/30.46 new_primEqInt(Pos(Zero), Neg(Zero)) 52.86/30.46 new_primEqInt(Neg(Zero), Pos(Zero)) 52.86/30.46 new_ltEs20(x0, x1, ty_Double) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 52.86/30.46 new_esEs11(x0, x1, ty_Float) 52.86/30.46 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 52.86/30.46 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 52.86/30.46 new_esEs34(x0, x1, ty_Integer) 52.86/30.46 new_esEs37(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_compare18(GT, GT) 52.86/30.46 new_lt23(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_lt20(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_lt23(x0, x1, ty_Char) 52.86/30.46 new_compare7(True, True) 52.86/30.46 new_gt11(x0, x1, x2, x3) 52.86/30.46 new_gt4(x0, x1) 52.86/30.46 new_primCmpNat0(Succ(x0), Zero) 52.86/30.46 new_esEs6(x0, x1, ty_Ordering) 52.86/30.46 new_lt23(x0, x1, ty_Double) 52.86/30.46 new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 52.86/30.46 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 52.86/30.46 new_esEs23(False, False) 52.86/30.46 new_esEs29(x0, x1, ty_Float) 52.86/30.46 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_compare19(Char(x0), Char(x1)) 52.86/30.46 new_esEs25(Left(x0), Left(x1), ty_Float, x2) 52.86/30.46 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs32(x0, x1, ty_Double) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), app(ty_[], x2), x3) 52.86/30.46 new_primEqNat0(Succ(x0), Succ(x1)) 52.86/30.46 new_esEs31(x0, x1, ty_Float) 52.86/30.46 new_esEs5(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_esEs24(Just(x0), Just(x1), ty_Float) 52.86/30.46 new_esEs37(x0, x1, app(ty_[], x2)) 52.86/30.46 new_ltEs15(Right(x0), Right(x1), x2, ty_Ordering) 52.86/30.46 new_esEs6(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_esEs31(x0, x1, ty_Char) 52.86/30.46 new_esEs12(GT) 52.86/30.46 new_lt20(x0, x1, ty_Ordering) 52.86/30.46 new_esEs26(LT, EQ) 52.86/30.46 new_esEs26(EQ, LT) 52.86/30.46 new_ltEs19(x0, x1, ty_@0) 52.86/30.46 new_ltEs16(LT, EQ) 52.86/30.46 new_ltEs16(EQ, LT) 52.86/30.46 new_lt22(x0, x1, ty_Float) 52.86/30.46 new_lt21(x0, x1, ty_Float) 52.86/30.46 new_ltEs22(x0, x1, ty_Int) 52.86/30.46 new_esEs24(Just(x0), Just(x1), ty_Char) 52.86/30.46 new_esEs7(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_esEs30(x0, x1, ty_Int) 52.86/30.46 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 52.86/30.46 new_lt22(x0, x1, ty_Integer) 52.86/30.46 new_compare30(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_esEs25(Left(x0), Left(x1), ty_Char, x2) 52.86/30.46 new_lt26(x0, x1, ty_Integer) 52.86/30.46 new_lt20(x0, x1, ty_Double) 52.86/30.46 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_ltEs23(x0, x1, ty_Char) 52.86/30.46 new_ltEs15(Right(x0), Right(x1), x2, ty_Double) 52.86/30.46 new_ltEs24(x0, x1, ty_Char) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), ty_@0, x2) 52.86/30.46 new_lt7(x0, x1) 52.86/30.46 new_ltEs10(x0, x1, x2) 52.86/30.46 new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 52.86/30.46 new_compare17(x0, x1, True, x2, x3) 52.86/30.46 new_esEs40(x0, x1, ty_@0) 52.86/30.46 new_esEs37(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_esEs7(x0, x1, ty_Double) 52.86/30.46 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_lt22(x0, x1, ty_Int) 52.86/30.46 new_gt15(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_ltEs23(x0, x1, ty_Ordering) 52.86/30.46 new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 52.86/30.46 new_esEs37(x0, x1, ty_Int) 52.86/30.46 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_ltEs14(Just(x0), Just(x1), ty_Double) 52.86/30.46 new_esEs38(x0, x1, app(ty_Maybe, x2)) 52.86/30.46 new_gt0(x0, x1) 52.86/30.46 new_esEs39(x0, x1, ty_Integer) 52.86/30.46 new_compare14(Integer(x0), Integer(x1)) 52.86/30.46 new_esEs10(x0, x1, ty_@0) 52.86/30.46 new_esEs6(x0, x1, ty_Char) 52.86/30.46 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs4(x0, x1, ty_Int) 52.86/30.46 new_ltEs19(x0, x1, app(ty_[], x2)) 52.86/30.46 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 52.86/30.46 new_compare29(Nothing, Nothing, x0) 52.86/30.46 new_lt18(x0, x1) 52.86/30.46 new_esEs14(x0, x1, ty_Int) 52.86/30.46 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 52.86/30.46 new_lt22(x0, x1, ty_Bool) 52.86/30.46 new_lt5(x0, x1, ty_@0) 52.86/30.46 new_lt5(x0, x1, ty_Double) 52.86/30.46 new_esEs32(x0, x1, ty_@0) 52.86/30.46 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs35(x0, x1, ty_Int) 52.86/30.46 new_esEs29(x0, x1, ty_Int) 52.86/30.46 new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 52.86/30.46 new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 52.86/30.46 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_esEs26(EQ, EQ) 52.86/30.46 new_ltEs13(True, True) 52.86/30.46 new_ltEs6(x0, x1, ty_Double) 52.86/30.46 new_esEs37(x0, x1, ty_@0) 52.86/30.46 new_esEs31(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_lt26(x0, x1, ty_Char) 52.86/30.46 new_esEs23(False, True) 52.86/30.46 new_esEs23(True, False) 52.86/30.46 new_gt15(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_ltEs21(x0, x1, ty_Float) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), ty_Float, x2) 52.86/30.46 new_esEs9(x0, x1, ty_Ordering) 52.86/30.46 new_compare16(Right(x0), Left(x1), x2, x3) 52.86/30.46 new_compare16(Left(x0), Right(x1), x2, x3) 52.86/30.46 new_compare18(GT, LT) 52.86/30.46 new_compare18(LT, GT) 52.86/30.46 new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_esEs11(x0, x1, ty_Int) 52.86/30.46 new_primCompAux00(x0, EQ) 52.86/30.46 new_ltEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 52.86/30.46 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs5(x0, x1, ty_Int) 52.86/30.46 new_pePe(True, x0) 52.86/30.46 new_ltEs14(Nothing, Just(x0), x1) 52.86/30.46 new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs30(x0, x1, ty_Bool) 52.86/30.46 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_esEs11(x0, x1, ty_Char) 52.86/30.46 new_ltEs20(x0, x1, ty_Float) 52.86/30.46 new_esEs5(x0, x1, ty_Char) 52.86/30.46 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 52.86/30.46 new_ltEs24(x0, x1, ty_Ordering) 52.86/30.46 new_gt15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 52.86/30.46 new_lt26(x0, x1, ty_Int) 52.86/30.46 new_esEs32(x0, x1, ty_Bool) 52.86/30.46 new_compare29(Just(x0), Just(x1), x2) 52.86/30.46 new_esEs37(x0, x1, ty_Bool) 52.86/30.46 new_esEs25(Left(x0), Right(x1), x2, x3) 52.86/30.46 new_esEs25(Right(x0), Left(x1), x2, x3) 52.86/30.46 new_ltEs20(x0, x1, ty_Integer) 52.86/30.46 new_ltEs19(x0, x1, ty_Ordering) 52.86/30.46 new_esEs13(x0, x1, ty_Bool) 52.86/30.46 new_ltEs24(x0, x1, ty_Double) 52.86/30.46 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_lt13(x0, x1, x2, x3, x4) 52.86/30.46 new_esEs36(x0, x1, ty_Integer) 52.86/30.46 new_primPlusNat0(Zero, Zero) 52.86/30.46 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.46 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_lt21(x0, x1, ty_@0) 52.86/30.46 new_lt8(x0, x1) 52.86/30.46 new_not(True) 52.86/30.46 new_esEs4(x0, x1, ty_Ordering) 52.86/30.46 new_esEs32(x0, x1, ty_Integer) 52.86/30.46 new_esEs18(:(x0, x1), :(x2, x3), x4) 52.86/30.46 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_gt10(x0, x1, x2) 52.86/30.46 new_lt26(x0, x1, ty_Double) 52.86/30.46 new_esEs8(x0, x1, app(ty_[], x2)) 52.86/30.46 new_ltEs13(False, False) 52.86/30.46 new_lt21(x0, x1, ty_Int) 52.86/30.46 new_compare0([], :(x0, x1), x2) 52.86/30.46 new_esEs29(x0, x1, app(ty_[], x2)) 52.86/30.46 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 52.86/30.46 new_lt21(x0, x1, ty_Integer) 52.86/30.46 new_ltEs14(Just(x0), Nothing, x1) 52.86/30.46 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.46 new_esEs11(x0, x1, app(ty_[], x2)) 52.86/30.46 new_esEs5(x0, x1, ty_@0) 52.86/30.46 new_esEs38(x0, x1, ty_Ordering) 52.86/30.46 new_lt21(x0, x1, ty_Char) 52.86/30.46 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 52.86/30.46 new_ltEs6(x0, x1, ty_Ordering) 52.86/30.46 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.46 new_esEs36(x0, x1, ty_Bool) 52.86/30.46 new_esEs11(x0, x1, ty_@0) 52.86/30.46 new_lt5(x0, x1, ty_Ordering) 52.86/30.46 new_lt21(x0, x1, ty_Bool) 52.86/30.46 new_esEs5(x0, x1, app(ty_Ratio, x2)) 52.86/30.46 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs39(x0, x1, ty_@0) 52.86/30.47 new_lt26(x0, x1, app(ty_[], x2)) 52.86/30.47 new_esEs5(x0, x1, app(ty_[], x2)) 52.86/30.47 new_gt15(x0, x1, ty_Float) 52.86/30.47 new_lt26(x0, x1, ty_Bool) 52.86/30.47 new_esEs13(x0, x1, app(ty_[], x2)) 52.86/30.47 new_lt6(x0, x1, ty_@0) 52.86/30.47 new_esEs37(x0, x1, ty_Integer) 52.86/30.47 new_esEs13(x0, x1, ty_Integer) 52.86/30.47 new_compare10(x0, x1, True, x2, x3) 52.86/30.47 new_esEs6(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_ltEs20(x0, x1, ty_Bool) 52.86/30.47 new_lt26(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_ltEs18(x0, x1, x2) 52.86/30.47 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs8(x0, x1, ty_Float) 52.86/30.47 new_esEs32(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs24(Just(x0), Just(x1), ty_Ordering) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 52.86/30.47 new_gt15(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 52.86/30.47 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, ty_Int) 52.86/30.47 new_ltEs21(x0, x1, ty_@0) 52.86/30.47 new_ltEs21(x0, x1, ty_Bool) 52.86/30.47 new_esEs40(x0, x1, ty_Integer) 52.86/30.47 new_esEs30(x0, x1, ty_Double) 52.86/30.47 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs24(Just(x0), Just(x1), ty_Double) 52.86/30.47 new_esEs30(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), ty_Bool, x2) 52.86/30.47 new_esEs31(x0, x1, ty_Ordering) 52.86/30.47 new_esEs36(x0, x1, ty_Char) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 52.86/30.47 new_compare110(x0, x1, x2, x3, True, x4, x5) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), ty_Char) 52.86/30.47 new_lt26(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_lt20(x0, x1, ty_Float) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 52.86/30.47 new_fsEs(x0) 52.86/30.47 new_primMulInt(Neg(x0), Neg(x1)) 52.86/30.47 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs36(x0, x1, ty_Int) 52.86/30.47 new_esEs26(EQ, GT) 52.86/30.47 new_esEs26(GT, EQ) 52.86/30.47 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_lt6(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs15(Float(x0, x1), Float(x2, x3)) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) 52.86/30.47 new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) 52.86/30.47 new_esEs33(x0, x1, ty_Char) 52.86/30.47 new_esEs32(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs5(x0, x1, ty_Bool) 52.86/30.47 new_esEs31(x0, x1, ty_Double) 52.86/30.47 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs25(Left(x0), Left(x1), ty_Double, x2) 52.86/30.47 new_ltEs21(x0, x1, ty_Integer) 52.86/30.47 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 52.86/30.47 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 52.86/30.47 new_esEs39(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs11(x0, x1, ty_Bool) 52.86/30.47 new_esEs33(x0, x1, ty_Int) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, ty_Char) 52.86/30.47 new_gt13(x0, x1, x2) 52.86/30.47 new_esEs36(x0, x1, ty_Float) 52.86/30.47 new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_primMulInt(Pos(x0), Pos(x1)) 52.86/30.47 new_esEs9(x0, x1, app(ty_[], x2)) 52.86/30.47 new_primEqNat0(Zero, Zero) 52.86/30.47 new_esEs32(x0, x1, ty_Int) 52.86/30.47 new_ltEs4(x0, x1) 52.86/30.47 new_lt20(x0, x1, ty_Int) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), ty_Char, x2) 52.86/30.47 new_ltEs22(x0, x1, ty_Ordering) 52.86/30.47 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs18([], [], x0) 52.86/30.47 new_not(False) 52.86/30.47 new_lt10(x0, x1, x2) 52.86/30.47 new_lt26(x0, x1, ty_Float) 52.86/30.47 new_esEs8(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), ty_Bool) 52.86/30.47 new_gt15(x0, x1, ty_Bool) 52.86/30.47 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs13(x0, x1, ty_Char) 52.86/30.47 new_compare17(x0, x1, False, x2, x3) 52.86/30.47 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs12(LT) 52.86/30.47 new_esEs13(x0, x1, ty_Int) 52.86/30.47 new_esEs32(x0, x1, ty_Char) 52.86/30.47 new_esEs40(x0, x1, ty_Bool) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), ty_Integer, x2) 52.86/30.47 new_esEs33(x0, x1, ty_Integer) 52.86/30.47 new_esEs40(x0, x1, ty_Float) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), ty_Float) 52.86/30.47 new_compare0(:(x0, x1), :(x2, x3), x4) 52.86/30.47 new_esEs14(x0, x1, ty_@0) 52.86/30.47 new_lt22(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_gt3(x0, x1) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 52.86/30.47 new_lt22(x0, x1, app(ty_[], x2)) 52.86/30.47 new_esEs33(x0, x1, ty_Bool) 52.86/30.47 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, ty_Float) 52.86/30.47 new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 52.86/30.47 new_ltEs9(x0, x1) 52.86/30.47 new_esEs32(x0, x1, ty_Float) 52.86/30.47 new_compare25(x0, x1, True, x2, x3) 52.86/30.47 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs41(LT) 52.86/30.47 new_gt15(x0, x1, ty_Integer) 52.86/30.47 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 52.86/30.47 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 52.86/30.47 new_esEs40(x0, x1, ty_Int) 52.86/30.47 new_esEs5(x0, x1, ty_Integer) 52.86/30.47 new_esEs4(x0, x1, ty_Double) 52.86/30.47 new_esEs13(x0, x1, ty_Float) 52.86/30.47 new_esEs38(x0, x1, app(ty_[], x2)) 52.86/30.47 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 52.86/30.47 new_esEs11(x0, x1, ty_Integer) 52.86/30.47 new_esEs29(x0, x1, ty_Double) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) 52.86/30.47 new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) 52.86/30.47 new_compare11(x0, x1, x2, x3, False, x4, x5, x6) 52.86/30.47 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs40(x0, x1, ty_Char) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), ty_Int) 52.86/30.47 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs6(x0, x1, ty_@0) 52.86/30.47 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_compare30(x0, x1, ty_Ordering) 52.86/30.47 new_esEs29(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), ty_Double, x2) 52.86/30.47 new_primPlusNat0(Succ(x0), Zero) 52.86/30.47 new_lt23(x0, x1, ty_Bool) 52.86/30.47 new_esEs9(x0, x1, ty_Float) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, ty_Integer) 52.86/30.47 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_compare30(x0, x1, ty_Int) 52.86/30.47 new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.86/30.47 new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.86/30.47 new_ltEs6(x0, x1, ty_Integer) 52.86/30.47 new_lt20(x0, x1, ty_@0) 52.86/30.47 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs4(x0, x1, app(ty_[], x2)) 52.86/30.47 new_compare110(x0, x1, x2, x3, False, x4, x5) 52.86/30.47 new_esEs4(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_ltEs24(x0, x1, ty_Float) 52.86/30.47 new_sr(Integer(x0), Integer(x1)) 52.86/30.47 new_esEs32(x0, x1, app(ty_[], x2)) 52.86/30.47 new_lt23(x0, x1, ty_@0) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) 52.86/30.47 new_esEs8(x0, x1, ty_Int) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, ty_Char) 52.86/30.47 new_lt20(x0, x1, ty_Bool) 52.86/30.47 new_esEs10(x0, x1, ty_Ordering) 52.86/30.47 new_esEs31(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_gt15(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 52.86/30.47 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 52.86/30.47 new_esEs7(x0, x1, ty_Int) 52.86/30.47 new_esEs6(x0, x1, ty_Bool) 52.86/30.47 new_esEs28(:%(x0, x1), :%(x2, x3), x4) 52.86/30.47 new_esEs8(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_lt23(x0, x1, ty_Integer) 52.86/30.47 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_gt12(x0, x1) 52.86/30.47 new_ltEs17(x0, x1) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, ty_Bool) 52.86/30.47 new_gt6(x0, x1) 52.86/30.47 new_primCmpNat0(Zero, Succ(x0)) 52.86/30.47 new_esEs26(LT, GT) 52.86/30.47 new_esEs26(GT, LT) 52.86/30.47 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 52.86/30.47 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_gt15(x0, x1, ty_Char) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), ty_Ordering, x2) 52.86/30.47 new_primMulNat0(Succ(x0), Zero) 52.86/30.47 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs6(x0, x1, ty_Integer) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 52.86/30.47 new_ltEs23(x0, x1, ty_Float) 52.86/30.47 new_ltEs20(x0, x1, app(ty_[], x2)) 52.86/30.47 new_ltEs13(False, True) 52.86/30.47 new_ltEs13(True, False) 52.86/30.47 new_lt20(x0, x1, ty_Integer) 52.86/30.47 new_ltEs24(x0, x1, ty_Integer) 52.86/30.47 new_lt22(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_compare18(EQ, LT) 52.86/30.47 new_compare18(LT, EQ) 52.86/30.47 new_ltEs20(x0, x1, ty_Int) 52.86/30.47 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_lt22(x0, x1, ty_Ordering) 52.86/30.47 new_esEs14(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 52.86/30.47 new_esEs14(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_compare0([], [], x0) 52.86/30.47 new_ltEs23(x0, x1, ty_@0) 52.86/30.47 new_esEs33(x0, x1, ty_Float) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, ty_Double) 52.86/30.47 new_esEs9(x0, x1, ty_Integer) 52.86/30.47 new_lt6(x0, x1, ty_Float) 52.86/30.47 new_compare18(LT, LT) 52.86/30.47 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_ltEs22(x0, x1, ty_Double) 52.86/30.47 new_ltEs21(x0, x1, ty_Int) 52.86/30.47 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs40(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), ty_Integer) 52.86/30.47 new_esEs5(x0, x1, ty_Float) 52.86/30.47 new_esEs39(x0, x1, ty_Double) 52.86/30.47 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs40(x0, x1, ty_Ordering) 52.86/30.47 new_esEs29(x0, x1, ty_Ordering) 52.86/30.47 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs8(x0, x1, ty_@0) 52.86/30.47 new_pePe(False, x0) 52.86/30.47 new_esEs36(x0, x1, ty_Double) 52.86/30.47 new_lt23(x0, x1, ty_Int) 52.86/30.47 new_lt17(x0, x1) 52.86/30.47 new_compare26(x0, x1, x2, x3, False, x4, x5) 52.86/30.47 new_gt5(x0, x1, x2) 52.86/30.47 new_esEs39(x0, x1, ty_Char) 52.86/30.47 new_esEs4(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_lt6(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) 52.86/30.47 new_primEqNat0(Succ(x0), Zero) 52.86/30.47 new_compare30(x0, x1, ty_@0) 52.86/30.47 new_lt23(x0, x1, ty_Float) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs41(GT) 52.86/30.47 new_esEs8(x0, x1, ty_Bool) 52.86/30.47 new_esEs23(True, True) 52.86/30.47 new_esEs13(x0, x1, ty_Double) 52.86/30.47 new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_compare11(x0, x1, x2, x3, True, x4, x5, x6) 52.86/30.47 new_esEs39(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs30(x0, x1, ty_Float) 52.86/30.47 new_primPlusNat0(Succ(x0), Succ(x1)) 52.86/30.47 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_compare18(EQ, GT) 52.86/30.47 new_compare18(GT, EQ) 52.86/30.47 new_esEs30(x0, x1, app(ty_[], x2)) 52.86/30.47 new_ltEs16(GT, GT) 52.86/30.47 new_gt1(x0, x1, x2, x3) 52.86/30.47 new_lt6(x0, x1, ty_Integer) 52.86/30.47 new_ltEs22(x0, x1, ty_Char) 52.86/30.47 new_ltEs24(x0, x1, ty_Bool) 52.86/30.47 new_esEs40(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs33(x0, x1, ty_@0) 52.86/30.47 new_compare28(x0, x1, True, x2, x3) 52.86/30.47 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 52.86/30.47 new_ltEs23(x0, x1, ty_Int) 52.86/30.47 new_esEs26(GT, GT) 52.86/30.47 new_ltEs20(x0, x1, ty_@0) 52.86/30.47 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs14(x0, x1, ty_Integer) 52.86/30.47 new_esEs25(Left(x0), Left(x1), ty_Int, x2) 52.86/30.47 new_esEs30(x0, x1, ty_Ordering) 52.86/30.47 new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) 52.86/30.47 new_esEs36(x0, x1, ty_Ordering) 52.86/30.47 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) 52.86/30.47 new_gt15(x0, x1, ty_Double) 52.86/30.47 new_compare30(x0, x1, app(ty_[], x2)) 52.86/30.47 new_esEs9(x0, x1, ty_@0) 52.86/30.47 new_esEs24(Just(x0), Just(x1), ty_Int) 52.86/30.47 new_esEs31(x0, x1, ty_Int) 52.86/30.47 new_esEs4(x0, x1, ty_Float) 52.86/30.47 new_esEs4(x0, x1, ty_Integer) 52.86/30.47 new_compare25(x0, x1, False, x2, x3) 52.86/30.47 new_esEs14(x0, x1, ty_Float) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 52.86/30.47 new_primCmpInt(Neg(Zero), Neg(Zero)) 52.86/30.47 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_lt6(x0, x1, ty_Ordering) 52.86/30.47 new_ltEs22(x0, x1, ty_Float) 52.86/30.47 new_esEs37(x0, x1, ty_Char) 52.86/30.47 new_esEs7(x0, x1, ty_@0) 52.86/30.47 new_esEs30(x0, x1, ty_Char) 52.86/30.47 new_esEs29(x0, x1, ty_Char) 52.86/30.47 new_compare10(x0, x1, False, x2, x3) 52.86/30.47 new_primCmpInt(Pos(Zero), Neg(Zero)) 52.86/30.47 new_primCmpInt(Neg(Zero), Pos(Zero)) 52.86/30.47 new_esEs14(x0, x1, ty_Bool) 52.86/30.47 new_compare30(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, ty_@0) 52.86/30.47 new_esEs38(x0, x1, ty_@0) 52.86/30.47 new_ltEs19(x0, x1, ty_Double) 52.86/30.47 new_esEs30(x0, x1, ty_Integer) 52.86/30.47 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs24(Nothing, Nothing, x0) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 52.86/30.47 new_ltEs6(x0, x1, ty_@0) 52.86/30.47 new_ltEs23(x0, x1, ty_Bool) 52.86/30.47 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_compare7(False, False) 52.86/30.47 new_esEs10(x0, x1, ty_Double) 52.86/30.47 new_compare15(x0, x1, True, x2) 52.86/30.47 new_esEs31(x0, x1, app(ty_[], x2)) 52.86/30.47 new_lt22(x0, x1, ty_Char) 52.86/30.47 new_ltEs23(x0, x1, ty_Integer) 52.86/30.47 new_esEs39(x0, x1, ty_Ordering) 52.86/30.47 new_esEs6(x0, x1, ty_Float) 52.86/30.47 new_esEs4(x0, x1, ty_Char) 52.86/30.47 new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs10(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs37(x0, x1, ty_Float) 52.86/30.47 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs6(x0, x1, ty_Int) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), ty_@0) 52.86/30.47 new_esEs40(x0, x1, ty_Double) 52.86/30.47 new_esEs4(x0, x1, ty_Bool) 52.86/30.47 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs14(x0, x1, ty_Char) 52.86/30.47 new_esEs38(x0, x1, ty_Double) 52.86/30.47 new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs8(x0, x1, ty_Integer) 52.86/30.47 new_lt5(x0, x1, ty_Int) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 52.86/30.47 new_ltEs21(x0, x1, app(ty_[], x2)) 52.86/30.47 new_primMulNat0(Succ(x0), Succ(x1)) 52.86/30.47 new_esEs26(LT, LT) 52.86/30.47 new_esEs30(x0, x1, ty_@0) 52.86/30.47 new_esEs13(x0, x1, ty_@0) 52.86/30.47 new_esEs9(x0, x1, ty_Double) 52.86/30.47 new_esEs24(Just(x0), Just(x1), ty_Bool) 52.86/30.47 new_ltEs16(EQ, EQ) 52.86/30.47 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_gt8(x0, x1, x2, x3, x4) 52.86/30.47 new_lt6(x0, x1, ty_Char) 52.86/30.47 new_esEs5(x0, x1, ty_Ordering) 52.86/30.47 new_esEs10(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_primMulNat0(Zero, Zero) 52.86/30.47 new_esEs31(x0, x1, ty_Bool) 52.86/30.47 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_compare5(@0, @0) 52.86/30.47 new_esEs25(Left(x0), Left(x1), ty_@0, x2) 52.86/30.47 new_esEs25(Left(x0), Left(x1), ty_Bool, x2) 52.86/30.47 new_lt15(x0, x1, x2) 52.86/30.47 new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 52.86/30.47 new_esEs31(x0, x1, ty_Integer) 52.86/30.47 new_esEs10(x0, x1, app(ty_[], x2)) 52.86/30.47 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs9(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs24(Just(x0), Just(x1), ty_Integer) 52.86/30.47 new_esEs39(x0, x1, ty_Float) 52.86/30.47 new_esEs10(x0, x1, ty_Float) 52.86/30.47 new_esEs5(x0, x1, ty_Double) 52.86/30.47 new_esEs9(x0, x1, ty_Int) 52.86/30.47 new_esEs11(x0, x1, ty_Double) 52.86/30.47 new_compare27(x0, x1, True, x2) 52.86/30.47 new_esEs33(x0, x1, ty_Double) 52.86/30.47 new_primCmpNat0(Succ(x0), Succ(x1)) 52.86/30.47 new_esEs4(x0, x1, ty_@0) 52.86/30.47 new_esEs40(x0, x1, app(ty_[], x2)) 52.86/30.47 new_ltEs22(x0, x1, ty_Integer) 52.86/30.47 new_esEs31(x0, x1, ty_@0) 52.86/30.47 new_compare7(False, True) 52.86/30.47 new_compare7(True, False) 52.86/30.47 new_lt23(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs24(Just(x0), Just(x1), ty_@0) 52.86/30.47 new_ltEs24(x0, x1, ty_Int) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 52.86/30.47 new_lt26(x0, x1, ty_Ordering) 52.86/30.47 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_gt9(x0, x1) 52.86/30.47 new_compare8(x0, x1) 52.86/30.47 new_ltEs22(x0, x1, ty_Bool) 52.86/30.47 new_lt23(x0, x1, app(ty_[], x2)) 52.86/30.47 new_esEs7(x0, x1, ty_Float) 52.86/30.47 new_lt6(x0, x1, ty_Bool) 52.86/30.47 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), ty_Ordering) 52.86/30.47 new_lt26(x0, x1, ty_@0) 52.86/30.47 new_lt5(x0, x1, app(ty_[], x2)) 52.86/30.47 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_lt21(x0, x1, app(ty_[], x2)) 52.86/30.47 new_compare29(Nothing, Just(x0), x1) 52.86/30.47 new_lt6(x0, x1, ty_Double) 52.86/30.47 new_lt20(x0, x1, app(ty_[], x2)) 52.86/30.47 new_esEs36(x0, x1, ty_@0) 52.86/30.47 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 52.86/30.47 new_esEs9(x0, x1, ty_Char) 52.86/30.47 new_ltEs15(Right(x0), Left(x1), x2, x3) 52.86/30.47 new_ltEs15(Left(x0), Right(x1), x2, x3) 52.86/30.47 new_esEs14(x0, x1, ty_Ordering) 52.86/30.47 new_esEs14(x0, x1, app(ty_[], x2)) 52.86/30.47 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_lt21(x0, x1, ty_Double) 52.86/30.47 new_esEs39(x0, x1, ty_Bool) 52.86/30.47 new_esEs39(x0, x1, app(ty_[], x2)) 52.86/30.47 new_esEs25(Left(x0), Left(x1), ty_Integer, x2) 52.86/30.47 new_compare27(x0, x1, False, x2) 52.86/30.47 new_esEs32(x0, x1, ty_Ordering) 52.86/30.47 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 52.86/30.47 new_gt7(x0, x1) 52.86/30.47 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs33(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs13(x0, x1, ty_Ordering) 52.86/30.47 new_compare16(Right(x0), Right(x1), x2, x3) 52.86/30.47 new_compare30(x0, x1, ty_Float) 52.86/30.47 new_esEs36(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_ltEs8(x0, x1) 52.86/30.47 new_ltEs16(LT, GT) 52.86/30.47 new_ltEs16(GT, LT) 52.86/30.47 new_esEs7(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_lt14(x0, x1) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, ty_Float) 52.86/30.47 new_esEs11(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_lt12(x0, x1, x2, x3) 52.86/30.47 new_esEs24(Nothing, Just(x0), x1) 52.86/30.47 new_lt6(x0, x1, ty_Int) 52.86/30.47 new_primCmpInt(Pos(Zero), Pos(Zero)) 52.86/30.47 new_asAs(True, x0) 52.86/30.47 new_ltEs6(x0, x1, ty_Char) 52.86/30.47 new_esEs9(x0, x1, ty_Bool) 52.86/30.47 new_esEs29(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_lt16(x0, x1, x2, x3) 52.86/30.47 new_compare30(x0, x1, ty_Integer) 52.86/30.47 new_esEs18(:(x0, x1), [], x2) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, ty_Integer) 52.86/30.47 new_ltEs14(Nothing, Nothing, x0) 52.86/30.47 new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.86/30.47 new_ltEs24(x0, x1, ty_@0) 52.86/30.47 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_lt6(x0, x1, app(ty_[], x2)) 52.86/30.47 new_esEs10(x0, x1, ty_Integer) 52.86/30.47 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs6(x0, x1, ty_Double) 52.86/30.47 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs17(x0, x1) 52.86/30.47 new_compare29(Just(x0), Nothing, x1) 52.86/30.47 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_lt23(x0, x1, ty_Ordering) 52.86/30.47 new_esEs37(x0, x1, ty_Ordering) 52.86/30.47 new_lt5(x0, x1, ty_Integer) 52.86/30.47 new_compare26(x0, x1, x2, x3, True, x4, x5) 52.86/30.47 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_compare18(EQ, EQ) 52.86/30.47 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 52.86/30.47 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_lt5(x0, x1, ty_Bool) 52.86/30.47 new_esEs38(x0, x1, ty_Integer) 52.86/30.47 new_compare30(x0, x1, ty_Bool) 52.86/30.47 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 52.86/30.47 new_esEs34(x0, x1, ty_Int) 52.86/30.47 new_esEs24(Just(x0), Nothing, x1) 52.86/30.47 new_lt5(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs7(x0, x1, ty_Integer) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, ty_Bool) 52.86/30.47 new_esEs12(EQ) 52.86/30.47 new_esEs16(Char(x0), Char(x1)) 52.86/30.47 new_ltEs22(x0, x1, ty_@0) 52.86/30.47 new_esEs37(x0, x1, ty_Double) 52.86/30.47 new_lt4(x0, x1) 52.86/30.47 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_compare16(Left(x0), Left(x1), x2, x3) 52.86/30.47 new_esEs41(EQ) 52.86/30.47 new_ltEs22(x0, x1, app(ty_[], x2)) 52.86/30.47 new_lt21(x0, x1, ty_Ordering) 52.86/30.47 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs13(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs33(x0, x1, app(ty_[], x2)) 52.86/30.47 new_gt2(x0, x1) 52.86/30.47 new_lt9(x0, x1) 52.86/30.47 new_esEs38(x0, x1, ty_Bool) 52.86/30.47 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_ltEs6(x0, x1, ty_Float) 52.86/30.47 new_esEs33(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_ltEs23(x0, x1, ty_Double) 52.86/30.47 new_esEs33(x0, x1, ty_Ordering) 52.86/30.47 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs38(x0, x1, ty_Float) 52.86/30.47 new_ltEs6(x0, x1, app(ty_[], x2)) 52.86/30.47 new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) 52.86/30.47 new_ltEs19(x0, x1, ty_Int) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 52.86/30.47 new_ltEs6(x0, x1, ty_Bool) 52.86/30.47 new_esEs13(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) 52.86/30.47 new_primCompAux00(x0, LT) 52.86/30.47 new_gt15(x0, x1, ty_Ordering) 52.86/30.47 new_esEs38(x0, x1, ty_Int) 52.86/30.47 new_primMulInt(Pos(x0), Neg(x1)) 52.86/30.47 new_primMulInt(Neg(x0), Pos(x1)) 52.86/30.47 new_lt21(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_compare28(x0, x1, False, x2, x3) 52.86/30.47 new_esEs19(@0, @0) 52.86/30.47 new_ltEs19(x0, x1, ty_Char) 52.86/30.47 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs36(x0, x1, app(ty_[], x2)) 52.86/30.47 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_lt5(x0, x1, ty_Char) 52.86/30.47 new_ltEs6(x0, x1, ty_Int) 52.86/30.47 new_esEs10(x0, x1, ty_Bool) 52.86/30.47 new_lt19(x0, x1, x2) 52.86/30.47 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 52.86/30.47 new_esEs27(Double(x0, x1), Double(x2, x3)) 52.86/30.47 new_ltEs19(x0, x1, ty_Bool) 52.86/30.47 new_gt15(x0, x1, app(ty_[], x2)) 52.86/30.47 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs11(x0, x1, ty_Ordering) 52.86/30.47 new_esEs7(x0, x1, ty_Bool) 52.86/30.47 new_esEs10(x0, x1, ty_Char) 52.86/30.47 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs30(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_primEqNat0(Zero, Succ(x0)) 52.86/30.47 new_primCmpNat0(Zero, Zero) 52.86/30.47 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 52.86/30.47 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs14(x0, x1, ty_Double) 52.86/30.47 new_esEs6(x0, x1, app(ty_[], x2)) 52.86/30.47 new_lt22(x0, x1, ty_Double) 52.86/30.47 new_esEs38(x0, x1, ty_Char) 52.86/30.47 52.86/30.47 We have to consider all minimal (P,Q,R)-chains. 52.86/30.47 ---------------------------------------- 52.86/30.47 52.86/30.47 (44) QDPSizeChangeProof (EQUIVALENT) 52.86/30.47 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 52.86/30.47 52.86/30.47 From the DPs we obtained the following set of size-change graphs: 52.86/30.47 *new_splitGT1(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bd, be) -> new_splitGT(yvy48, yvy50, bd, be) 52.86/30.47 The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 52.86/30.47 52.86/30.47 52.86/30.47 *new_splitGT3(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, bb, bc) -> new_splitGT2(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, bb), bb, bc) 52.86/30.47 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 8, 8 >= 9 52.86/30.47 52.86/30.47 52.86/30.47 *new_splitGT(Branch(yvy190, yvy191, yvy192, yvy193, yvy194), yvy20, h, ba) -> new_splitGT3(yvy190, yvy191, yvy192, yvy193, yvy194, yvy20, h, ba) 52.86/30.47 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 7, 4 >= 8 52.86/30.47 52.86/30.47 52.86/30.47 *new_splitGT2(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, h, ba) -> new_splitGT1(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_lt26(yvy20, yvy15, h), h, ba) 52.86/30.47 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 52.86/30.47 52.86/30.47 52.86/30.47 *new_splitGT2(yvy15, yvy16, yvy17, yvy18, Branch(yvy190, yvy191, yvy192, yvy193, yvy194), yvy20, True, h, ba) -> new_splitGT3(yvy190, yvy191, yvy192, yvy193, yvy194, yvy20, h, ba) 52.86/30.47 The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 6 >= 6, 8 >= 7, 9 >= 8 52.86/30.47 52.86/30.47 52.86/30.47 ---------------------------------------- 52.86/30.47 52.86/30.47 (45) 52.86/30.47 YES 52.86/30.47 52.86/30.47 ---------------------------------------- 52.86/30.47 52.86/30.47 (46) 52.86/30.47 Obligation: 52.86/30.47 Q DP problem: 52.86/30.47 The TRS P consists of the following rules: 52.86/30.47 52.86/30.47 new_primMulNat(Succ(yvy40000), Succ(yvy30100)) -> new_primMulNat(yvy40000, Succ(yvy30100)) 52.86/30.47 52.86/30.47 R is empty. 52.86/30.47 Q is empty. 52.86/30.47 We have to consider all minimal (P,Q,R)-chains. 52.86/30.47 ---------------------------------------- 52.86/30.47 52.86/30.47 (47) QDPSizeChangeProof (EQUIVALENT) 52.86/30.47 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 52.86/30.47 52.86/30.47 From the DPs we obtained the following set of size-change graphs: 52.86/30.47 *new_primMulNat(Succ(yvy40000), Succ(yvy30100)) -> new_primMulNat(yvy40000, Succ(yvy30100)) 52.86/30.47 The graph contains the following edges 1 > 1, 2 >= 2 52.86/30.47 52.86/30.47 52.86/30.47 ---------------------------------------- 52.86/30.47 52.86/30.47 (48) 52.86/30.47 YES 52.86/30.47 52.86/30.47 ---------------------------------------- 52.86/30.47 52.86/30.47 (49) 52.86/30.47 Obligation: 52.86/30.47 Q DP problem: 52.86/30.47 The TRS P consists of the following rules: 52.86/30.47 52.86/30.47 new_splitLT1(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bd, be) -> new_splitLT(yvy64, yvy65, bd, be) 52.86/30.47 new_splitLT3(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, bb, bc) -> new_splitLT2(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, bb), bb, bc) 52.86/30.47 new_splitLT2(yvy30, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy35, True, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, yvy35, h, ba) 52.86/30.47 new_splitLT2(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, h, ba) -> new_splitLT1(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt14(yvy35, yvy30, h), h, ba) 52.86/30.47 new_splitLT(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy35, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, yvy35, h, ba) 52.86/30.47 52.86/30.47 The TRS R consists of the following rules: 52.86/30.47 52.86/30.47 new_esEs14(yvy1650, yvy1660, ty_@0) -> new_esEs19(yvy1650, yvy1660) 52.86/30.47 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(ty_@2, efh), ega)) -> new_esEs21(yvy4000, yvy3000, efh, ega) 52.86/30.47 new_ltEs19(yvy179, yvy180, ty_Integer) -> new_ltEs11(yvy179, yvy180) 52.86/30.47 new_compare9(Double(yvy400, Pos(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.86/30.47 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 52.86/30.47 new_primPlusNat0(Zero, Zero) -> Zero 52.86/30.47 new_esEs14(yvy1650, yvy1660, app(app(app(ty_@3, dhe), dhf), dhg)) -> new_esEs22(yvy1650, yvy1660, dhe, dhf, dhg) 52.86/30.47 new_pePe(True, yvy280) -> True 52.86/30.47 new_lt12(yvy40, yvy30, bf, bg) -> new_esEs12(new_compare6(yvy40, yvy30, bf, bg)) 52.86/30.47 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_@0) -> new_ltEs4(yvy1650, yvy1660) 52.86/30.47 new_esEs26(LT, GT) -> False 52.86/30.47 new_esEs26(GT, LT) -> False 52.86/30.47 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(app(ty_@3, fca), fcb), fcc)) -> new_ltEs5(yvy1650, yvy1660, fca, fcb, fcc) 52.86/30.47 new_lt20(yvy190, yvy192, ty_Ordering) -> new_lt17(yvy190, yvy192) 52.86/30.47 new_compare13(Float(yvy400, Pos(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.86/30.47 new_compare13(Float(yvy400, Neg(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.86/30.47 new_esEs8(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.86/30.47 new_esEs30(yvy4000, yvy3000, app(app(ty_@2, ehb), ehc)) -> new_esEs21(yvy4000, yvy3000, ehb, ehc) 52.86/30.47 new_ltEs20(yvy191, yvy193, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs5(yvy191, yvy193, fd, ff, fg) 52.86/30.47 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 52.86/30.47 new_esEs26(LT, EQ) -> False 52.86/30.47 new_esEs26(EQ, LT) -> False 52.86/30.47 new_esEs29(yvy190, yvy192, ty_@0) -> new_esEs19(yvy190, yvy192) 52.86/30.47 new_lt6(yvy1651, yvy1661, ty_Char) -> new_lt8(yvy1651, yvy1661) 52.86/30.47 new_ltEs15(Right(yvy1650), Right(yvy1660), he, app(ty_Ratio, cfb)) -> new_ltEs18(yvy1650, yvy1660, cfb) 52.86/30.47 new_ltEs19(yvy179, yvy180, app(app(ty_@2, cc), cd)) -> new_ltEs12(yvy179, yvy180, cc, cd) 52.86/30.47 new_esEs25(Right(yvy4000), Right(yvy3000), bfa, app(ty_Ratio, eeh)) -> new_esEs28(yvy4000, yvy3000, eeh) 52.86/30.47 new_lt23(yvy155, yvy158, app(ty_Maybe, daa)) -> new_lt15(yvy155, yvy158, daa) 52.86/30.47 new_compare18(LT, LT) -> EQ 52.86/30.47 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Bool) -> new_ltEs13(yvy1650, yvy1660) 52.86/30.47 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(ty_Either, egc), egd)) -> new_esEs25(yvy4000, yvy3000, egc, egd) 52.86/30.47 new_gt1(yvy40, yvy30, bf, bg) -> new_esEs41(new_compare6(yvy40, yvy30, bf, bg)) 52.86/30.47 new_ltEs20(yvy191, yvy193, ty_Float) -> new_ltEs7(yvy191, yvy193) 52.86/30.47 new_esEs30(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.47 new_esEs8(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.86/30.47 new_lt25(yvy40, yvy30, app(ty_Ratio, gd)) -> new_lt19(yvy40, yvy30, gd) 52.86/30.47 new_esEs6(yvy402, yvy302, ty_Int) -> new_esEs17(yvy402, yvy302) 52.86/30.47 new_ltEs21(yvy165, yvy166, ty_Ordering) -> new_ltEs16(yvy165, yvy166) 52.86/30.47 new_ltEs20(yvy191, yvy193, ty_@0) -> new_ltEs4(yvy191, yvy193) 52.86/30.47 new_esEs39(yvy155, yvy158, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs22(yvy155, yvy158, chf, chg, chh) 52.86/30.47 new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, False, cbb, cbc, cbd) -> GT 52.86/30.47 new_esEs33(yvy1650, yvy1660, ty_Char) -> new_esEs16(yvy1650, yvy1660) 52.86/30.47 new_esEs36(yvy4002, yvy3002, app(ty_Ratio, bgb)) -> new_esEs28(yvy4002, yvy3002, bgb) 52.86/30.47 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 52.86/30.47 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Double) -> new_ltEs17(yvy1650, yvy1660) 52.86/30.47 new_esEs40(yvy154, yvy157, ty_Double) -> new_esEs27(yvy154, yvy157) 52.86/30.47 new_esEs31(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) 52.86/30.47 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.86/30.47 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.86/30.47 new_ltEs24(yvy156, yvy159, app(ty_[], dae)) -> new_ltEs10(yvy156, yvy159, dae) 52.86/30.47 new_esEs7(yvy401, yvy301, ty_Double) -> new_esEs27(yvy401, yvy301) 52.86/30.47 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(ty_Either, fce), fcf)) -> new_ltEs15(yvy1650, yvy1660, fce, fcf) 52.86/30.47 new_not(True) -> False 52.86/30.47 new_ltEs22(yvy172, yvy173, ty_Char) -> new_ltEs8(yvy172, yvy173) 52.86/30.47 new_lt23(yvy155, yvy158, ty_Int) -> new_lt9(yvy155, yvy158) 52.86/30.47 new_esEs13(yvy1651, yvy1661, ty_Integer) -> new_esEs20(yvy1651, yvy1661) 52.86/30.47 new_gt3(yvy40, yvy30) -> new_esEs41(new_compare19(yvy40, yvy30)) 52.86/30.47 new_primCompAux00(yvy133, LT) -> LT 52.86/30.47 new_esEs39(yvy155, yvy158, ty_Ordering) -> new_esEs26(yvy155, yvy158) 52.86/30.47 new_compare17(yvy230, yvy231, False, dbg, dbh) -> GT 52.86/30.47 new_lt22(yvy154, yvy157, ty_Float) -> new_lt7(yvy154, yvy157) 52.86/30.47 new_lt22(yvy154, yvy157, app(ty_[], cga)) -> new_lt10(yvy154, yvy157, cga) 52.86/30.47 new_esEs39(yvy155, yvy158, app(ty_[], chc)) -> new_esEs18(yvy155, yvy158, chc) 52.86/30.47 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Char, bfb) -> new_esEs16(yvy4000, yvy3000) 52.86/30.47 new_esEs10(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.86/30.47 new_gt11(yvy40, yvy30, hh, baa) -> new_esEs41(new_compare16(yvy40, yvy30, hh, baa)) 52.86/30.47 new_esEs25(Right(yvy4000), Right(yvy3000), bfa, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.86/30.47 new_esEs38(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.86/30.47 new_esEs31(yvy4001, yvy3001, app(ty_Ratio, fdf)) -> new_esEs28(yvy4001, yvy3001, fdf) 52.86/30.47 new_primEqNat0(Succ(yvy40000), Zero) -> False 52.86/30.47 new_primEqNat0(Zero, Succ(yvy30000)) -> False 52.86/30.47 new_esEs39(yvy155, yvy158, app(ty_Maybe, daa)) -> new_esEs24(yvy155, yvy158, daa) 52.86/30.47 new_esEs10(yvy400, yvy300, app(app(ty_@2, bag), bah)) -> new_esEs21(yvy400, yvy300, bag, bah) 52.86/30.47 new_esEs36(yvy4002, yvy3002, ty_Float) -> new_esEs15(yvy4002, yvy3002) 52.86/30.47 new_ltEs21(yvy165, yvy166, app(app(ty_@2, gg), gh)) -> new_ltEs12(yvy165, yvy166, gg, gh) 52.86/30.47 new_compare10(yvy237, yvy238, True, ehh, faa) -> LT 52.86/30.47 new_lt6(yvy1651, yvy1661, app(app(ty_@2, eae), eaf)) -> new_lt12(yvy1651, yvy1661, eae, eaf) 52.86/30.47 new_gt7(yvy40, yvy30) -> new_esEs41(new_compare14(yvy40, yvy30)) 52.86/30.47 new_lt20(yvy190, yvy192, app(app(app(ty_@3, eb), ec), ed)) -> new_lt13(yvy190, yvy192, eb, ec, ed) 52.86/30.47 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(ty_@2, cch), cda), hf) -> new_ltEs12(yvy1650, yvy1660, cch, cda) 52.86/30.47 new_compare7(True, True) -> EQ 52.86/30.47 new_ltEs20(yvy191, yvy193, ty_Bool) -> new_ltEs13(yvy191, yvy193) 52.86/30.47 new_compare210(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, True, cff, cfg, cfh) -> EQ 52.86/30.47 new_esEs31(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) 52.86/30.47 new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT 52.86/30.47 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Integer, bfb) -> new_esEs20(yvy4000, yvy3000) 52.86/30.47 new_esEs40(yvy154, yvy157, app(app(ty_@2, cgb), cgc)) -> new_esEs21(yvy154, yvy157, cgb, cgc) 52.86/30.47 new_esEs5(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.86/30.47 new_esEs29(yvy190, yvy192, ty_Ordering) -> new_esEs26(yvy190, yvy192) 52.86/30.47 new_esEs29(yvy190, yvy192, ty_Float) -> new_esEs15(yvy190, yvy192) 52.86/30.47 new_esEs10(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.86/30.47 new_ltEs9(yvy165, yvy166) -> new_fsEs(new_compare8(yvy165, yvy166)) 52.86/30.47 new_ltEs6(yvy1652, yvy1662, ty_Double) -> new_ltEs17(yvy1652, yvy1662) 52.86/30.47 new_lt6(yvy1651, yvy1661, app(ty_[], ead)) -> new_lt10(yvy1651, yvy1661, ead) 52.86/30.47 new_esEs34(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.86/30.47 new_esEs7(yvy401, yvy301, ty_Integer) -> new_esEs20(yvy401, yvy301) 52.86/30.47 new_esEs4(yvy401, yvy301, app(app(ty_@2, bde), bdf)) -> new_esEs21(yvy401, yvy301, bde, bdf) 52.86/30.47 new_primCmpNat0(Zero, Succ(yvy3000)) -> LT 52.86/30.47 new_esEs30(yvy4000, yvy3000, app(app(ty_Either, ehe), ehf)) -> new_esEs25(yvy4000, yvy3000, ehe, ehf) 52.86/30.47 new_ltEs23(yvy1651, yvy1661, ty_Int) -> new_ltEs9(yvy1651, yvy1661) 52.86/30.47 new_ltEs20(yvy191, yvy193, ty_Double) -> new_ltEs17(yvy191, yvy193) 52.86/30.47 new_esEs38(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.86/30.47 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Float) -> new_ltEs7(yvy1650, yvy1660) 52.86/30.47 new_ltEs15(Right(yvy1650), Left(yvy1660), he, hf) -> False 52.86/30.47 new_esEs8(yvy400, yvy300, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs22(yvy400, yvy300, dfh, dga, dgb) 52.86/30.47 new_esEs11(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.86/30.47 new_esEs8(yvy400, yvy300, app(ty_[], dha)) -> new_esEs18(yvy400, yvy300, dha) 52.86/30.47 new_compare18(GT, GT) -> EQ 52.86/30.47 new_ltEs15(Right(yvy1650), Right(yvy1660), he, ty_Char) -> new_ltEs8(yvy1650, yvy1660) 52.86/30.47 new_esEs33(yvy1650, yvy1660, ty_Double) -> new_esEs27(yvy1650, yvy1660) 52.86/30.47 new_esEs25(Right(yvy4000), Right(yvy3000), bfa, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.86/30.47 new_esEs8(yvy400, yvy300, app(ty_Maybe, dgc)) -> new_esEs24(yvy400, yvy300, dgc) 52.86/30.47 new_ltEs23(yvy1651, yvy1661, ty_Double) -> new_ltEs17(yvy1651, yvy1661) 52.86/30.47 new_esEs29(yvy190, yvy192, app(ty_Maybe, ee)) -> new_esEs24(yvy190, yvy192, ee) 52.86/30.47 new_esEs25(Right(yvy4000), Right(yvy3000), bfa, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.47 new_esEs23(True, True) -> True 52.86/30.47 new_lt22(yvy154, yvy157, app(ty_Ratio, chb)) -> new_lt19(yvy154, yvy157, chb) 52.86/30.47 new_lt23(yvy155, yvy158, app(app(app(ty_@3, chf), chg), chh)) -> new_lt13(yvy155, yvy158, chf, chg, chh) 52.86/30.47 new_esEs39(yvy155, yvy158, ty_Int) -> new_esEs17(yvy155, yvy158) 52.86/30.47 new_ltEs19(yvy179, yvy180, app(ty_Maybe, da)) -> new_ltEs14(yvy179, yvy180, da) 52.86/30.47 new_ltEs5(@3(yvy1650, yvy1651, yvy1652), @3(yvy1660, yvy1661, yvy1662), ha, hb, hc) -> new_pePe(new_lt5(yvy1650, yvy1660, ha), new_asAs(new_esEs14(yvy1650, yvy1660, ha), new_pePe(new_lt6(yvy1651, yvy1661, hb), new_asAs(new_esEs13(yvy1651, yvy1661, hb), new_ltEs6(yvy1652, yvy1662, hc))))) 52.86/30.47 new_esEs29(yvy190, yvy192, app(ty_[], dg)) -> new_esEs18(yvy190, yvy192, dg) 52.86/30.47 new_lt6(yvy1651, yvy1661, ty_Bool) -> new_lt14(yvy1651, yvy1661) 52.86/30.47 new_ltEs15(Right(yvy1650), Right(yvy1660), he, ty_@0) -> new_ltEs4(yvy1650, yvy1660) 52.86/30.47 new_esEs7(yvy401, yvy301, ty_Char) -> new_esEs16(yvy401, yvy301) 52.86/30.47 new_esEs9(yvy400, yvy300, app(app(ty_Either, gba), gbb)) -> new_esEs25(yvy400, yvy300, gba, gbb) 52.86/30.47 new_compare30(yvy400, yvy300, ty_Int) -> new_compare8(yvy400, yvy300) 52.86/30.47 new_esEs40(yvy154, yvy157, ty_Char) -> new_esEs16(yvy154, yvy157) 52.86/30.47 new_esEs29(yvy190, yvy192, app(ty_Ratio, eh)) -> new_esEs28(yvy190, yvy192, eh) 52.86/30.47 new_esEs25(Right(yvy4000), Right(yvy3000), bfa, app(app(ty_Either, efa), efb)) -> new_esEs25(yvy4000, yvy3000, efa, efb) 52.86/30.47 new_ltEs15(Right(yvy1650), Right(yvy1660), he, app(app(ty_Either, ceh), cfa)) -> new_ltEs15(yvy1650, yvy1660, ceh, cfa) 52.86/30.47 new_esEs6(yvy402, yvy302, app(ty_Maybe, ddg)) -> new_esEs24(yvy402, yvy302, ddg) 52.86/30.47 new_esEs39(yvy155, yvy158, app(ty_Ratio, dad)) -> new_esEs28(yvy155, yvy158, dad) 52.86/30.47 new_esEs4(yvy401, yvy301, ty_Bool) -> new_esEs23(yvy401, yvy301) 52.86/30.47 new_lt8(yvy40, yvy30) -> new_esEs12(new_compare19(yvy40, yvy30)) 52.86/30.47 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Bool, bfb) -> new_esEs23(yvy4000, yvy3000) 52.86/30.47 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 52.86/30.47 new_esEs19(@0, @0) -> True 52.86/30.47 new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT 52.86/30.47 new_primMulInt(Pos(yvy4000), Pos(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) 52.86/30.47 new_ltEs6(yvy1652, yvy1662, ty_Float) -> new_ltEs7(yvy1652, yvy1662) 52.86/30.47 new_ltEs15(Left(yvy1650), Right(yvy1660), he, hf) -> True 52.86/30.47 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Double, hf) -> new_ltEs17(yvy1650, yvy1660) 52.86/30.47 new_esEs25(Right(yvy4000), Right(yvy3000), bfa, app(app(ty_@2, eef), eeg)) -> new_esEs21(yvy4000, yvy3000, eef, eeg) 52.86/30.47 new_lt22(yvy154, yvy157, ty_Integer) -> new_lt11(yvy154, yvy157) 52.86/30.47 new_esEs7(yvy401, yvy301, app(app(ty_Either, dfe), dff)) -> new_esEs25(yvy401, yvy301, dfe, dff) 52.86/30.47 new_gt14(yvy35, yvy30, ty_Int) -> new_gt4(yvy35, yvy30) 52.86/30.47 new_primMulNat0(Succ(yvy40000), Zero) -> Zero 52.86/30.47 new_primMulNat0(Zero, Succ(yvy30100)) -> Zero 52.86/30.47 new_lt21(yvy1650, yvy1660, ty_Bool) -> new_lt14(yvy1650, yvy1660) 52.86/30.47 new_esEs7(yvy401, yvy301, ty_Bool) -> new_esEs23(yvy401, yvy301) 52.86/30.47 new_lt15(yvy40, yvy30, bch) -> new_esEs12(new_compare29(yvy40, yvy30, bch)) 52.86/30.47 new_lt14(yvy40, yvy30) -> new_esEs12(new_compare7(yvy40, yvy30)) 52.86/30.47 new_esEs11(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.86/30.47 new_lt23(yvy155, yvy158, ty_Ordering) -> new_lt17(yvy155, yvy158) 52.86/30.47 new_lt20(yvy190, yvy192, app(ty_Ratio, eh)) -> new_lt19(yvy190, yvy192, eh) 52.86/30.47 new_esEs38(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.47 new_esEs31(yvy4001, yvy3001, app(app(app(ty_@3, fch), fda), fdb)) -> new_esEs22(yvy4001, yvy3001, fch, fda, fdb) 52.86/30.47 new_esEs8(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.86/30.47 new_esEs40(yvy154, yvy157, ty_Bool) -> new_esEs23(yvy154, yvy157) 52.86/30.47 new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) 52.86/30.47 new_primPlusNat0(Zero, Succ(yvy21000)) -> Succ(yvy21000) 52.86/30.47 new_ltEs22(yvy172, yvy173, ty_Float) -> new_ltEs7(yvy172, yvy173) 52.86/30.47 new_esEs26(EQ, GT) -> False 52.86/30.47 new_esEs26(GT, EQ) -> False 52.86/30.47 new_lt6(yvy1651, yvy1661, ty_Float) -> new_lt7(yvy1651, yvy1661) 52.86/30.47 new_esEs30(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.86/30.47 new_esEs31(yvy4001, yvy3001, app(ty_Maybe, fdc)) -> new_esEs24(yvy4001, yvy3001, fdc) 52.86/30.47 new_esEs10(yvy400, yvy300, app(app(ty_Either, bbb), bbc)) -> new_esEs25(yvy400, yvy300, bbb, bbc) 52.86/30.47 new_esEs31(yvy4001, yvy3001, app(ty_[], fea)) -> new_esEs18(yvy4001, yvy3001, fea) 52.86/30.47 new_lt6(yvy1651, yvy1661, ty_Integer) -> new_lt11(yvy1651, yvy1661) 52.86/30.47 new_esEs5(yvy400, yvy300, app(ty_Ratio, bcg)) -> new_esEs28(yvy400, yvy300, bcg) 52.86/30.47 new_esEs33(yvy1650, yvy1660, app(app(ty_Either, fgc), fgd)) -> new_esEs25(yvy1650, yvy1660, fgc, fgd) 52.86/30.47 new_ltEs15(Right(yvy1650), Right(yvy1660), he, ty_Bool) -> new_ltEs13(yvy1650, yvy1660) 52.86/30.47 new_esEs7(yvy401, yvy301, app(app(ty_@2, dfb), dfc)) -> new_esEs21(yvy401, yvy301, dfb, dfc) 52.86/30.47 new_esEs31(yvy4001, yvy3001, ty_Ordering) -> new_esEs26(yvy4001, yvy3001) 52.86/30.47 new_esEs23(False, False) -> True 52.86/30.47 new_compare9(Double(yvy400, Pos(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.86/30.47 new_compare9(Double(yvy400, Neg(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.86/30.47 new_lt25(yvy40, yvy30, ty_@0) -> new_lt4(yvy40, yvy30) 52.86/30.47 new_esEs17(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 52.86/30.47 new_esEs12(LT) -> True 52.86/30.47 new_esEs13(yvy1651, yvy1661, ty_Double) -> new_esEs27(yvy1651, yvy1661) 52.86/30.47 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.86/30.47 new_esEs6(yvy402, yvy302, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs22(yvy402, yvy302, ddd, dde, ddf) 52.86/30.47 new_esEs32(yvy4000, yvy3000, app(app(ty_Either, ffa), ffb)) -> new_esEs25(yvy4000, yvy3000, ffa, ffb) 52.86/30.47 new_esEs32(yvy4000, yvy3000, app(ty_Maybe, fee)) -> new_esEs24(yvy4000, yvy3000, fee) 52.86/30.47 new_esEs11(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.86/30.47 new_lt25(yvy40, yvy30, ty_Ordering) -> new_lt17(yvy40, yvy30) 52.86/30.47 new_lt20(yvy190, yvy192, ty_Float) -> new_lt7(yvy190, yvy192) 52.86/30.47 new_lt25(yvy40, yvy30, ty_Int) -> new_lt9(yvy40, yvy30) 52.86/30.47 new_gt4(yvy40, yvy30) -> new_esEs41(new_compare8(yvy40, yvy30)) 52.86/30.47 new_ltEs12(@2(yvy1650, yvy1651), @2(yvy1660, yvy1661), gg, gh) -> new_pePe(new_lt21(yvy1650, yvy1660, gg), new_asAs(new_esEs33(yvy1650, yvy1660, gg), new_ltEs23(yvy1651, yvy1661, gh))) 52.86/30.47 new_esEs5(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.86/30.47 new_lt22(yvy154, yvy157, ty_Bool) -> new_lt14(yvy154, yvy157) 52.86/30.47 new_lt21(yvy1650, yvy1660, ty_Integer) -> new_lt11(yvy1650, yvy1660) 52.86/30.47 new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, cbb, cbc, cbd) -> LT 52.86/30.47 new_esEs33(yvy1650, yvy1660, ty_Float) -> new_esEs15(yvy1650, yvy1660) 52.86/30.47 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Float, hf) -> new_ltEs7(yvy1650, yvy1660) 52.86/30.47 new_esEs6(yvy402, yvy302, app(ty_[], dee)) -> new_esEs18(yvy402, yvy302, dee) 52.86/30.47 new_esEs5(yvy400, yvy300, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs22(yvy400, yvy300, bec, bed, bee) 52.86/30.47 new_ltEs19(yvy179, yvy180, ty_Ordering) -> new_ltEs16(yvy179, yvy180) 52.86/30.47 new_lt10(yvy40, yvy30, bab) -> new_esEs12(new_compare0(yvy40, yvy30, bab)) 52.86/30.47 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(app(ty_@3, cdb), cdc), cdd), hf) -> new_ltEs5(yvy1650, yvy1660, cdb, cdc, cdd) 52.86/30.47 new_esEs37(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.86/30.47 new_ltEs6(yvy1652, yvy1662, app(app(ty_Either, ece), ecf)) -> new_ltEs15(yvy1652, yvy1662, ece, ecf) 52.86/30.47 new_esEs4(yvy401, yvy301, ty_Integer) -> new_esEs20(yvy401, yvy301) 52.86/30.47 new_esEs30(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.86/30.47 new_esEs29(yvy190, yvy192, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs22(yvy190, yvy192, eb, ec, ed) 52.86/30.47 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.47 new_compare16(Left(yvy400), Left(yvy300), hh, baa) -> new_compare28(yvy400, yvy300, new_esEs10(yvy400, yvy300, hh), hh, baa) 52.86/30.47 new_esEs40(yvy154, yvy157, ty_Integer) -> new_esEs20(yvy154, yvy157) 52.86/30.47 new_esEs14(yvy1650, yvy1660, ty_Int) -> new_esEs17(yvy1650, yvy1660) 52.86/30.47 new_ltEs20(yvy191, yvy193, app(app(ty_Either, ga), gb)) -> new_ltEs15(yvy191, yvy193, ga, gb) 52.86/30.47 new_esEs32(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.47 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Float, bfb) -> new_esEs15(yvy4000, yvy3000) 52.86/30.47 new_ltEs15(Right(yvy1650), Right(yvy1660), he, app(ty_[], cea)) -> new_ltEs10(yvy1650, yvy1660, cea) 52.86/30.47 new_esEs31(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) 52.86/30.47 new_esEs13(yvy1651, yvy1661, app(ty_Ratio, ebe)) -> new_esEs28(yvy1651, yvy1661, ebe) 52.86/30.47 new_lt6(yvy1651, yvy1661, app(ty_Ratio, ebe)) -> new_lt19(yvy1651, yvy1661, ebe) 52.86/30.47 new_esEs12(GT) -> False 52.86/30.47 new_esEs12(EQ) -> False 52.86/30.47 new_esEs37(yvy4001, yvy3001, ty_@0) -> new_esEs19(yvy4001, yvy3001) 52.86/30.47 new_esEs37(yvy4001, yvy3001, app(app(ty_Either, bhe), bhf)) -> new_esEs25(yvy4001, yvy3001, bhe, bhf) 52.86/30.47 new_esEs37(yvy4001, yvy3001, ty_Bool) -> new_esEs23(yvy4001, yvy3001) 52.86/30.47 new_esEs10(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.86/30.47 new_compare19(Char(yvy400), Char(yvy300)) -> new_primCmpNat0(yvy400, yvy300) 52.86/30.47 new_lt22(yvy154, yvy157, ty_Ordering) -> new_lt17(yvy154, yvy157) 52.86/30.47 new_compare11(yvy247, yvy248, yvy249, yvy250, False, yvy252, fhh, gaa) -> new_compare110(yvy247, yvy248, yvy249, yvy250, yvy252, fhh, gaa) 52.86/30.47 new_lt6(yvy1651, yvy1661, ty_@0) -> new_lt4(yvy1651, yvy1661) 52.86/30.47 new_esEs25(Right(yvy4000), Right(yvy3000), bfa, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.47 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Char) -> new_ltEs8(yvy1650, yvy1660) 52.86/30.47 new_esEs9(yvy400, yvy300, app(ty_[], gbc)) -> new_esEs18(yvy400, yvy300, gbc) 52.86/30.47 new_esEs36(yvy4002, yvy3002, app(ty_Maybe, bfg)) -> new_esEs24(yvy4002, yvy3002, bfg) 52.86/30.47 new_lt25(yvy40, yvy30, app(ty_[], bab)) -> new_lt10(yvy40, yvy30, bab) 52.86/30.47 new_esEs29(yvy190, yvy192, ty_Char) -> new_esEs16(yvy190, yvy192) 52.86/30.47 new_esEs38(yvy4000, yvy3000, app(ty_Ratio, caf)) -> new_esEs28(yvy4000, yvy3000, caf) 52.86/30.47 new_gt14(yvy35, yvy30, ty_@0) -> new_gt6(yvy35, yvy30) 52.86/30.47 new_esEs37(yvy4001, yvy3001, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs22(yvy4001, yvy3001, bgf, bgg, bgh) 52.86/30.47 new_esEs32(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.86/30.47 new_lt5(yvy1650, yvy1660, app(app(ty_Either, eaa), eab)) -> new_lt16(yvy1650, yvy1660, eaa, eab) 52.86/30.47 new_lt5(yvy1650, yvy1660, ty_Bool) -> new_lt14(yvy1650, yvy1660) 52.86/30.47 new_compare18(GT, LT) -> GT 52.86/30.47 new_gt14(yvy35, yvy30, app(ty_Maybe, dcg)) -> new_gt10(yvy35, yvy30, dcg) 52.86/30.47 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Int) -> new_ltEs9(yvy1650, yvy1660) 52.86/30.47 new_gt10(yvy40, yvy30, bch) -> new_esEs41(new_compare29(yvy40, yvy30, bch)) 52.86/30.47 new_compare18(EQ, LT) -> GT 52.86/30.47 new_esEs11(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.86/30.47 new_lt5(yvy1650, yvy1660, app(app(app(ty_@3, dhe), dhf), dhg)) -> new_lt13(yvy1650, yvy1660, dhe, dhf, dhg) 52.86/30.47 new_esEs10(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.86/30.47 new_compare0([], :(yvy300, yvy301), bab) -> LT 52.86/30.47 new_compare10(yvy237, yvy238, False, ehh, faa) -> GT 52.86/30.47 new_esEs6(yvy402, yvy302, ty_Ordering) -> new_esEs26(yvy402, yvy302) 52.86/30.47 new_compare30(yvy400, yvy300, ty_@0) -> new_compare5(yvy400, yvy300) 52.86/30.47 new_esEs33(yvy1650, yvy1660, ty_Ordering) -> new_esEs26(yvy1650, yvy1660) 52.86/30.47 new_esEs16(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 52.86/30.47 new_esEs5(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.86/30.47 new_compare30(yvy400, yvy300, ty_Ordering) -> new_compare18(yvy400, yvy300) 52.86/30.47 new_lt21(yvy1650, yvy1660, ty_Char) -> new_lt8(yvy1650, yvy1660) 52.86/30.47 new_ltEs23(yvy1651, yvy1661, app(app(ty_@2, fgg), fgh)) -> new_ltEs12(yvy1651, yvy1661, fgg, fgh) 52.86/30.47 new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) 52.86/30.47 new_gt6(yvy40, yvy30) -> new_esEs41(new_compare5(yvy40, yvy30)) 52.86/30.47 new_lt20(yvy190, yvy192, app(ty_[], dg)) -> new_lt10(yvy190, yvy192, dg) 52.86/30.47 new_esEs18(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bfc) -> new_asAs(new_esEs30(yvy4000, yvy3000, bfc), new_esEs18(yvy4001, yvy3001, bfc)) 52.86/30.47 new_primCompAux00(yvy133, EQ) -> yvy133 52.86/30.47 new_lt5(yvy1650, yvy1660, ty_Ordering) -> new_lt17(yvy1650, yvy1660) 52.86/30.47 new_compare7(False, True) -> LT 52.86/30.47 new_esEs6(yvy402, yvy302, app(app(ty_Either, dec), ded)) -> new_esEs25(yvy402, yvy302, dec, ded) 52.86/30.47 new_esEs33(yvy1650, yvy1660, ty_Bool) -> new_esEs23(yvy1650, yvy1660) 52.86/30.47 new_esEs33(yvy1650, yvy1660, app(app(app(ty_@3, ffg), ffh), fga)) -> new_esEs22(yvy1650, yvy1660, ffg, ffh, fga) 52.86/30.47 new_gt14(yvy35, yvy30, ty_Bool) -> new_gt9(yvy35, yvy30) 52.86/30.47 new_esEs6(yvy402, yvy302, ty_@0) -> new_esEs19(yvy402, yvy302) 52.86/30.47 new_esEs35(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.47 new_esEs29(yvy190, yvy192, ty_Int) -> new_esEs17(yvy190, yvy192) 52.86/30.47 new_compare30(yvy400, yvy300, ty_Integer) -> new_compare14(yvy400, yvy300) 52.86/30.47 new_lt23(yvy155, yvy158, ty_Float) -> new_lt7(yvy155, yvy158) 52.86/30.47 new_lt21(yvy1650, yvy1660, app(ty_[], ffd)) -> new_lt10(yvy1650, yvy1660, ffd) 52.86/30.47 new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) 52.86/30.47 new_esEs37(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.86/30.47 new_esEs9(yvy400, yvy300, app(app(ty_@2, gaf), gag)) -> new_esEs21(yvy400, yvy300, gaf, gag) 52.86/30.47 new_esEs4(yvy401, yvy301, app(ty_Maybe, bdd)) -> new_esEs24(yvy401, yvy301, bdd) 52.86/30.47 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Ordering, hf) -> new_ltEs16(yvy1650, yvy1660) 52.86/30.47 new_gt14(yvy35, yvy30, ty_Integer) -> new_gt7(yvy35, yvy30) 52.86/30.47 new_esEs27(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs17(new_sr0(yvy4000, yvy3001), new_sr0(yvy4001, yvy3000)) 52.86/30.47 new_esEs31(yvy4001, yvy3001, ty_Char) -> new_esEs16(yvy4001, yvy3001) 52.86/30.47 new_esEs32(yvy4000, yvy3000, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs22(yvy4000, yvy3000, feb, fec, fed) 52.86/30.47 new_ltEs11(yvy165, yvy166) -> new_fsEs(new_compare14(yvy165, yvy166)) 52.86/30.47 new_esEs5(yvy400, yvy300, app(app(ty_Either, bfa), bfb)) -> new_esEs25(yvy400, yvy300, bfa, bfb) 52.86/30.47 new_ltEs13(False, True) -> True 52.86/30.47 new_ltEs13(False, False) -> True 52.86/30.47 new_esEs32(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.86/30.47 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_Ratio, fcg)) -> new_ltEs18(yvy1650, yvy1660, fcg) 52.86/30.47 new_esEs36(yvy4002, yvy3002, ty_Integer) -> new_esEs20(yvy4002, yvy3002) 52.86/30.47 new_ltEs22(yvy172, yvy173, app(ty_[], fad)) -> new_ltEs10(yvy172, yvy173, fad) 52.86/30.47 new_esEs13(yvy1651, yvy1661, ty_Float) -> new_esEs15(yvy1651, yvy1661) 52.86/30.47 new_lt21(yvy1650, yvy1660, ty_Int) -> new_lt9(yvy1650, yvy1660) 52.86/30.47 new_gt14(yvy35, yvy30, app(app(app(ty_@3, dcd), dce), dcf)) -> new_gt8(yvy35, yvy30, dcd, dce, dcf) 52.86/30.47 new_esEs5(yvy400, yvy300, app(ty_Maybe, bef)) -> new_esEs24(yvy400, yvy300, bef) 52.86/30.47 new_compare30(yvy400, yvy300, ty_Bool) -> new_compare7(yvy400, yvy300) 52.86/30.47 new_esEs6(yvy402, yvy302, ty_Float) -> new_esEs15(yvy402, yvy302) 52.86/30.47 new_gt14(yvy35, yvy30, ty_Float) -> new_gt2(yvy35, yvy30) 52.86/30.47 new_lt20(yvy190, yvy192, ty_Char) -> new_lt8(yvy190, yvy192) 52.86/30.47 new_ltEs22(yvy172, yvy173, app(app(ty_@2, fae), faf)) -> new_ltEs12(yvy172, yvy173, fae, faf) 52.86/30.47 new_ltEs15(Right(yvy1650), Right(yvy1660), he, app(app(ty_@2, ceb), cec)) -> new_ltEs12(yvy1650, yvy1660, ceb, cec) 52.86/30.47 new_compare13(Float(yvy400, Neg(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.86/30.47 new_lt6(yvy1651, yvy1661, ty_Ordering) -> new_lt17(yvy1651, yvy1661) 52.86/30.47 new_compare29(Just(yvy400), Nothing, bch) -> GT 52.86/30.47 new_lt22(yvy154, yvy157, app(app(ty_Either, cgh), cha)) -> new_lt16(yvy154, yvy157, cgh, cha) 52.86/30.47 new_esEs14(yvy1650, yvy1660, ty_Char) -> new_esEs16(yvy1650, yvy1660) 52.86/30.47 new_esEs11(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.86/30.47 new_esEs31(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.86/30.47 new_lt22(yvy154, yvy157, ty_Int) -> new_lt9(yvy154, yvy157) 52.86/30.47 new_lt23(yvy155, yvy158, ty_@0) -> new_lt4(yvy155, yvy158) 52.86/30.47 new_lt25(yvy40, yvy30, ty_Char) -> new_lt8(yvy40, yvy30) 52.86/30.47 new_ltEs14(Just(yvy1650), Nothing, hd) -> False 52.86/30.47 new_ltEs14(Nothing, Nothing, hd) -> True 52.86/30.47 new_esEs41(GT) -> True 52.86/30.47 new_esEs11(yvy400, yvy300, app(ty_Maybe, bbh)) -> new_esEs24(yvy400, yvy300, bbh) 52.86/30.47 new_lt21(yvy1650, yvy1660, app(ty_Maybe, fgb)) -> new_lt15(yvy1650, yvy1660, fgb) 52.86/30.47 new_compare30(yvy400, yvy300, app(ty_[], cbe)) -> new_compare0(yvy400, yvy300, cbe) 52.86/30.47 new_esEs5(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.86/30.47 new_esEs36(yvy4002, yvy3002, ty_@0) -> new_esEs19(yvy4002, yvy3002) 52.86/30.47 new_esEs38(yvy4000, yvy3000, ty_Bool) -> new_esEs23(yvy4000, yvy3000) 52.86/30.47 new_gt14(yvy35, yvy30, app(app(ty_Either, dch), dda)) -> new_gt11(yvy35, yvy30, dch, dda) 52.86/30.47 new_esEs11(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.86/30.47 new_lt5(yvy1650, yvy1660, ty_Char) -> new_lt8(yvy1650, yvy1660) 52.86/30.47 new_lt21(yvy1650, yvy1660, ty_Ordering) -> new_lt17(yvy1650, yvy1660) 52.86/30.47 new_lt5(yvy1650, yvy1660, app(ty_Maybe, dhh)) -> new_lt15(yvy1650, yvy1660, dhh) 52.86/30.47 new_lt5(yvy1650, yvy1660, ty_@0) -> new_lt4(yvy1650, yvy1660) 52.86/30.47 new_lt22(yvy154, yvy157, ty_@0) -> new_lt4(yvy154, yvy157) 52.86/30.47 new_ltEs24(yvy156, yvy159, app(app(ty_@2, daf), dag)) -> new_ltEs12(yvy156, yvy159, daf, dag) 52.86/30.47 new_lt22(yvy154, yvy157, ty_Char) -> new_lt8(yvy154, yvy157) 52.86/30.47 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.86/30.47 new_compare18(EQ, EQ) -> EQ 52.86/30.47 new_esEs37(yvy4001, yvy3001, app(ty_Ratio, bhd)) -> new_esEs28(yvy4001, yvy3001, bhd) 52.86/30.47 new_esEs39(yvy155, yvy158, ty_Float) -> new_esEs15(yvy155, yvy158) 52.86/30.47 new_esEs14(yvy1650, yvy1660, app(ty_Ratio, eac)) -> new_esEs28(yvy1650, yvy1660, eac) 52.86/30.47 new_gt14(yvy35, yvy30, app(ty_Ratio, ddb)) -> new_gt13(yvy35, yvy30, ddb) 52.86/30.47 new_esEs13(yvy1651, yvy1661, ty_Bool) -> new_esEs23(yvy1651, yvy1661) 52.86/30.47 new_esEs32(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.47 new_esEs33(yvy1650, yvy1660, ty_Integer) -> new_esEs20(yvy1650, yvy1660) 52.86/30.47 new_ltEs8(yvy165, yvy166) -> new_fsEs(new_compare19(yvy165, yvy166)) 52.86/30.47 new_esEs13(yvy1651, yvy1661, app(app(ty_Either, ebc), ebd)) -> new_esEs25(yvy1651, yvy1661, ebc, ebd) 52.86/30.47 new_compare18(LT, EQ) -> LT 52.86/30.47 new_lt20(yvy190, yvy192, ty_@0) -> new_lt4(yvy190, yvy192) 52.86/30.47 new_esEs13(yvy1651, yvy1661, app(app(app(ty_@3, eag), eah), eba)) -> new_esEs22(yvy1651, yvy1661, eag, eah, eba) 52.86/30.47 new_esEs40(yvy154, yvy157, ty_Ordering) -> new_esEs26(yvy154, yvy157) 52.86/30.47 new_esEs38(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.86/30.47 new_compare0(:(yvy400, yvy401), [], bab) -> GT 52.86/30.47 new_esEs36(yvy4002, yvy3002, ty_Bool) -> new_esEs23(yvy4002, yvy3002) 52.86/30.47 new_esEs36(yvy4002, yvy3002, app(app(ty_Either, bgc), bgd)) -> new_esEs25(yvy4002, yvy3002, bgc, bgd) 52.86/30.47 new_esEs21(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), beg, beh) -> new_asAs(new_esEs32(yvy4000, yvy3000, beg), new_esEs31(yvy4001, yvy3001, beh)) 52.86/30.47 new_lt17(yvy40, yvy30) -> new_esEs12(new_compare18(yvy40, yvy30)) 52.86/30.47 new_primPlusNat0(Succ(yvy90200), Succ(yvy21000)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21000))) 52.86/30.47 new_gt14(yvy35, yvy30, ty_Ordering) -> new_gt12(yvy35, yvy30) 52.86/30.47 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Bool, hf) -> new_ltEs13(yvy1650, yvy1660) 52.86/30.47 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Int, hf) -> new_ltEs9(yvy1650, yvy1660) 52.86/30.47 new_compare30(yvy400, yvy300, app(app(ty_Either, ccd), cce)) -> new_compare16(yvy400, yvy300, ccd, cce) 52.86/30.47 new_esEs4(yvy401, yvy301, app(app(ty_Either, bdh), bea)) -> new_esEs25(yvy401, yvy301, bdh, bea) 52.86/30.47 new_esEs37(yvy4001, yvy3001, ty_Float) -> new_esEs15(yvy4001, yvy3001) 52.86/30.47 new_esEs40(yvy154, yvy157, ty_Float) -> new_esEs15(yvy154, yvy157) 52.86/30.47 new_esEs13(yvy1651, yvy1661, ty_Ordering) -> new_esEs26(yvy1651, yvy1661) 52.86/30.47 new_compare25(yvy179, yvy180, False, bh, ca) -> new_compare10(yvy179, yvy180, new_ltEs19(yvy179, yvy180, ca), bh, ca) 52.86/30.47 new_lt20(yvy190, yvy192, ty_Int) -> new_lt9(yvy190, yvy192) 52.86/30.47 new_esEs35(yvy4000, yvy3000, ty_Integer) -> new_esEs20(yvy4000, yvy3000) 52.86/30.47 new_compare110(yvy247, yvy248, yvy249, yvy250, False, fhh, gaa) -> GT 52.86/30.47 new_esEs36(yvy4002, yvy3002, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs22(yvy4002, yvy3002, bfd, bfe, bff) 52.86/30.47 new_esEs14(yvy1650, yvy1660, ty_Float) -> new_esEs15(yvy1650, yvy1660) 52.86/30.47 new_compare29(Nothing, Just(yvy300), bch) -> LT 52.86/30.47 new_esEs31(yvy4001, yvy3001, ty_Double) -> new_esEs27(yvy4001, yvy3001) 52.86/30.47 new_esEs10(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.86/30.47 new_lt20(yvy190, yvy192, app(ty_Maybe, ee)) -> new_lt15(yvy190, yvy192, ee) 52.86/30.47 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Char, hf) -> new_ltEs8(yvy1650, yvy1660) 52.86/30.47 new_lt6(yvy1651, yvy1661, app(app(ty_Either, ebc), ebd)) -> new_lt16(yvy1651, yvy1661, ebc, ebd) 52.86/30.47 new_lt5(yvy1650, yvy1660, ty_Int) -> new_lt9(yvy1650, yvy1660) 52.86/30.47 new_esEs30(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.47 new_esEs11(yvy400, yvy300, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs22(yvy400, yvy300, bbe, bbf, bbg) 52.86/30.47 new_esEs33(yvy1650, yvy1660, app(ty_Ratio, fge)) -> new_esEs28(yvy1650, yvy1660, fge) 52.86/30.47 new_compare0(:(yvy400, yvy401), :(yvy300, yvy301), bab) -> new_primCompAux0(yvy400, yvy300, new_compare0(yvy401, yvy301, bab), bab) 52.86/30.47 new_esEs10(yvy400, yvy300, app(ty_Ratio, bba)) -> new_esEs28(yvy400, yvy300, bba) 52.86/30.47 new_lt21(yvy1650, yvy1660, app(app(ty_Either, fgc), fgd)) -> new_lt16(yvy1650, yvy1660, fgc, fgd) 52.86/30.47 new_gt9(yvy40, yvy30) -> new_esEs41(new_compare7(yvy40, yvy30)) 52.86/30.47 new_ltEs13(True, False) -> False 52.86/30.47 new_esEs36(yvy4002, yvy3002, ty_Char) -> new_esEs16(yvy4002, yvy3002) 52.86/30.47 new_esEs36(yvy4002, yvy3002, ty_Ordering) -> new_esEs26(yvy4002, yvy3002) 52.86/30.47 new_esEs13(yvy1651, yvy1661, ty_Char) -> new_esEs16(yvy1651, yvy1661) 52.86/30.47 new_compare29(Just(yvy400), Just(yvy300), bch) -> new_compare27(yvy400, yvy300, new_esEs9(yvy400, yvy300, bch), bch) 52.86/30.47 new_compare16(Right(yvy400), Right(yvy300), hh, baa) -> new_compare25(yvy400, yvy300, new_esEs11(yvy400, yvy300, baa), hh, baa) 52.86/30.47 new_esEs11(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.86/30.47 new_esEs40(yvy154, yvy157, ty_@0) -> new_esEs19(yvy154, yvy157) 52.86/30.47 new_compare16(Right(yvy400), Left(yvy300), hh, baa) -> GT 52.86/30.47 new_esEs40(yvy154, yvy157, app(app(ty_Either, cgh), cha)) -> new_esEs25(yvy154, yvy157, cgh, cha) 52.86/30.47 new_ltEs20(yvy191, yvy193, app(ty_[], fa)) -> new_ltEs10(yvy191, yvy193, fa) 52.86/30.47 new_compare30(yvy400, yvy300, app(app(app(ty_@3, cbh), cca), ccb)) -> new_compare31(yvy400, yvy300, cbh, cca, ccb) 52.86/30.47 new_lt20(yvy190, yvy192, app(app(ty_Either, ef), eg)) -> new_lt16(yvy190, yvy192, ef, eg) 52.86/30.47 new_ltEs21(yvy165, yvy166, app(ty_[], gf)) -> new_ltEs10(yvy165, yvy166, gf) 52.86/30.47 new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) 52.86/30.47 new_ltEs15(Right(yvy1650), Right(yvy1660), he, ty_Float) -> new_ltEs7(yvy1650, yvy1660) 52.86/30.47 new_esEs29(yvy190, yvy192, ty_Double) -> new_esEs27(yvy190, yvy192) 52.86/30.47 new_compare30(yvy400, yvy300, ty_Float) -> new_compare13(yvy400, yvy300) 52.86/30.47 new_esEs38(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.86/30.47 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_Integer, hf) -> new_ltEs11(yvy1650, yvy1660) 52.86/30.47 new_gt13(yvy40, yvy30, gd) -> new_esEs41(new_compare12(yvy40, yvy30, gd)) 52.86/30.47 new_ltEs17(yvy165, yvy166) -> new_fsEs(new_compare9(yvy165, yvy166)) 52.86/30.47 new_compare110(yvy247, yvy248, yvy249, yvy250, True, fhh, gaa) -> LT 52.86/30.47 new_esEs14(yvy1650, yvy1660, app(ty_Maybe, dhh)) -> new_esEs24(yvy1650, yvy1660, dhh) 52.86/30.47 new_esEs30(yvy4000, yvy3000, ty_Double) -> new_esEs27(yvy4000, yvy3000) 52.86/30.47 new_esEs37(yvy4001, yvy3001, ty_Ordering) -> new_esEs26(yvy4001, yvy3001) 52.86/30.47 new_esEs11(yvy400, yvy300, app(ty_Ratio, bcc)) -> new_esEs28(yvy400, yvy300, bcc) 52.86/30.47 new_lt25(yvy40, yvy30, ty_Float) -> new_lt7(yvy40, yvy30) 52.86/30.47 new_esEs4(yvy401, yvy301, ty_@0) -> new_esEs19(yvy401, yvy301) 52.86/30.47 new_esEs14(yvy1650, yvy1660, ty_Ordering) -> new_esEs26(yvy1650, yvy1660) 52.86/30.47 new_esEs37(yvy4001, yvy3001, app(ty_Maybe, bha)) -> new_esEs24(yvy4001, yvy3001, bha) 52.86/30.47 new_compare30(yvy400, yvy300, ty_Char) -> new_compare19(yvy400, yvy300) 52.86/30.47 new_lt11(yvy40, yvy30) -> new_esEs12(new_compare14(yvy40, yvy30)) 52.86/30.47 new_esEs39(yvy155, yvy158, ty_@0) -> new_esEs19(yvy155, yvy158) 52.86/30.47 new_ltEs6(yvy1652, yvy1662, app(ty_[], ebf)) -> new_ltEs10(yvy1652, yvy1662, ebf) 52.86/30.47 new_ltEs19(yvy179, yvy180, app(ty_[], cb)) -> new_ltEs10(yvy179, yvy180, cb) 52.86/30.47 new_compare28(yvy172, yvy173, True, fab, fac) -> EQ 52.86/30.47 new_esEs38(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.86/30.47 new_esEs38(yvy4000, yvy3000, app(app(ty_Either, cag), cah)) -> new_esEs25(yvy4000, yvy3000, cag, cah) 52.86/30.47 new_esEs34(yvy4001, yvy3001, ty_Integer) -> new_esEs20(yvy4001, yvy3001) 52.86/30.47 new_ltEs15(Left(yvy1650), Left(yvy1660), ty_@0, hf) -> new_ltEs4(yvy1650, yvy1660) 52.86/30.47 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_Maybe, edc), bfb) -> new_esEs24(yvy4000, yvy3000, edc) 52.86/30.47 new_compare14(Integer(yvy400), Integer(yvy300)) -> new_primCmpInt(yvy400, yvy300) 52.86/30.47 new_esEs11(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.86/30.47 new_esEs14(yvy1650, yvy1660, app(app(ty_Either, eaa), eab)) -> new_esEs25(yvy1650, yvy1660, eaa, eab) 52.86/30.47 new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT 52.86/30.47 new_lt21(yvy1650, yvy1660, ty_@0) -> new_lt4(yvy1650, yvy1660) 52.86/30.47 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Int, bfb) -> new_esEs17(yvy4000, yvy3000) 52.86/30.47 new_ltEs19(yvy179, yvy180, ty_Float) -> new_ltEs7(yvy179, yvy180) 52.86/30.47 new_esEs14(yvy1650, yvy1660, ty_Bool) -> new_esEs23(yvy1650, yvy1660) 52.86/30.47 new_lt7(yvy40, yvy30) -> new_esEs12(new_compare13(yvy40, yvy30)) 52.86/30.47 new_ltEs19(yvy179, yvy180, app(app(ty_Either, db), dc)) -> new_ltEs15(yvy179, yvy180, db, dc) 52.86/30.47 new_lt23(yvy155, yvy158, ty_Char) -> new_lt8(yvy155, yvy158) 52.86/30.47 new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT 52.86/30.47 new_esEs10(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.86/30.47 new_esEs13(yvy1651, yvy1661, app(ty_Maybe, ebb)) -> new_esEs24(yvy1651, yvy1661, ebb) 52.86/30.47 new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) 52.86/30.47 new_esEs38(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.47 new_esEs24(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.86/30.47 new_esEs33(yvy1650, yvy1660, ty_Int) -> new_esEs17(yvy1650, yvy1660) 52.86/30.47 new_esEs41(EQ) -> False 52.86/30.47 new_esEs40(yvy154, yvy157, app(ty_[], cga)) -> new_esEs18(yvy154, yvy157, cga) 52.86/30.47 new_gt14(yvy35, yvy30, ty_Char) -> new_gt3(yvy35, yvy30) 52.86/30.47 new_lt4(yvy40, yvy30) -> new_esEs12(new_compare5(yvy40, yvy30)) 52.86/30.47 new_primCompAux0(yvy400, yvy300, yvy115, bab) -> new_primCompAux00(yvy115, new_compare30(yvy400, yvy300, bab)) 52.86/30.47 new_ltEs14(Nothing, Just(yvy1660), hd) -> True 52.86/30.47 new_esEs39(yvy155, yvy158, ty_Double) -> new_esEs27(yvy155, yvy158) 52.86/30.47 new_esEs39(yvy155, yvy158, app(app(ty_Either, dab), dac)) -> new_esEs25(yvy155, yvy158, dab, dac) 52.86/30.47 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 52.86/30.47 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 52.86/30.47 new_esEs24(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, efd), efe), eff)) -> new_esEs22(yvy4000, yvy3000, efd, efe, eff) 52.86/30.47 new_compare30(yvy400, yvy300, ty_Double) -> new_compare9(yvy400, yvy300) 52.86/30.47 new_esEs39(yvy155, yvy158, ty_Bool) -> new_esEs23(yvy155, yvy158) 52.86/30.47 new_esEs29(yvy190, yvy192, app(app(ty_@2, dh), ea)) -> new_esEs21(yvy190, yvy192, dh, ea) 52.86/30.47 new_lt23(yvy155, yvy158, app(ty_[], chc)) -> new_lt10(yvy155, yvy158, chc) 52.86/30.47 new_esEs7(yvy401, yvy301, app(ty_[], dfg)) -> new_esEs18(yvy401, yvy301, dfg) 52.86/30.47 new_ltEs13(True, True) -> True 52.86/30.47 new_esEs9(yvy400, yvy300, app(ty_Ratio, gah)) -> new_esEs28(yvy400, yvy300, gah) 52.86/30.47 new_ltEs6(yvy1652, yvy1662, app(ty_Maybe, ecd)) -> new_ltEs14(yvy1652, yvy1662, ecd) 52.86/30.47 new_ltEs15(Left(yvy1650), Left(yvy1660), app(app(ty_Either, cdf), cdg), hf) -> new_ltEs15(yvy1650, yvy1660, cdf, cdg) 52.86/30.47 new_esEs6(yvy402, yvy302, ty_Char) -> new_esEs16(yvy402, yvy302) 52.86/30.47 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(ty_Either, edg), edh), bfb) -> new_esEs25(yvy4000, yvy3000, edg, edh) 52.86/30.47 new_esEs4(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) 52.86/30.47 new_esEs38(yvy4000, yvy3000, app(ty_Maybe, cac)) -> new_esEs24(yvy4000, yvy3000, cac) 52.86/30.47 new_esEs18([], [], bfc) -> True 52.86/30.47 new_compare16(Left(yvy400), Right(yvy300), hh, baa) -> LT 52.86/30.47 new_ltEs24(yvy156, yvy159, ty_Double) -> new_ltEs17(yvy156, yvy159) 52.86/30.47 new_ltEs19(yvy179, yvy180, app(app(app(ty_@3, ce), cf), cg)) -> new_ltEs5(yvy179, yvy180, ce, cf, cg) 52.86/30.47 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_[], fbf)) -> new_ltEs10(yvy1650, yvy1660, fbf) 52.86/30.47 new_lt5(yvy1650, yvy1660, app(ty_[], dhb)) -> new_lt10(yvy1650, yvy1660, dhb) 52.86/30.47 new_lt23(yvy155, yvy158, ty_Integer) -> new_lt11(yvy155, yvy158) 52.86/30.47 new_esEs30(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.86/30.47 new_primCmpNat0(Zero, Zero) -> EQ 52.86/30.47 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_Maybe, efg)) -> new_esEs24(yvy4000, yvy3000, efg) 52.86/30.47 new_esEs32(yvy4000, yvy3000, app(ty_Ratio, feh)) -> new_esEs28(yvy4000, yvy3000, feh) 52.86/30.47 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_[], ege)) -> new_esEs18(yvy4000, yvy3000, ege) 52.86/30.47 new_esEs10(yvy400, yvy300, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs22(yvy400, yvy300, bac, bad, bae) 52.86/30.47 new_lt6(yvy1651, yvy1661, ty_Int) -> new_lt9(yvy1651, yvy1661) 52.86/30.47 new_esEs14(yvy1650, yvy1660, ty_Double) -> new_esEs27(yvy1650, yvy1660) 52.86/30.47 new_lt20(yvy190, yvy192, ty_Bool) -> new_lt14(yvy190, yvy192) 52.86/30.47 new_ltEs22(yvy172, yvy173, ty_Int) -> new_ltEs9(yvy172, yvy173) 52.86/30.47 new_compare26(yvy190, yvy191, yvy192, yvy193, False, de, df) -> new_compare11(yvy190, yvy191, yvy192, yvy193, new_lt20(yvy190, yvy192, de), new_asAs(new_esEs29(yvy190, yvy192, de), new_ltEs20(yvy191, yvy193, df)), de, df) 52.86/30.47 new_ltEs16(GT, EQ) -> False 52.86/30.47 new_esEs14(yvy1650, yvy1660, ty_Integer) -> new_esEs20(yvy1650, yvy1660) 52.86/30.47 new_compare27(yvy165, yvy166, True, ge) -> EQ 52.86/30.47 new_esEs7(yvy401, yvy301, app(app(app(ty_@3, def), deg), deh)) -> new_esEs22(yvy401, yvy301, def, deg, deh) 52.86/30.47 new_ltEs19(yvy179, yvy180, ty_Double) -> new_ltEs17(yvy179, yvy180) 52.86/30.47 new_lt16(yvy40, yvy30, hh, baa) -> new_esEs12(new_compare16(yvy40, yvy30, hh, baa)) 52.86/30.47 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Integer) -> new_ltEs11(yvy1650, yvy1660) 52.86/30.47 new_esEs4(yvy401, yvy301, ty_Ordering) -> new_esEs26(yvy401, yvy301) 52.86/30.47 new_ltEs10(yvy165, yvy166, gf) -> new_fsEs(new_compare0(yvy165, yvy166, gf)) 52.86/30.47 new_esEs7(yvy401, yvy301, ty_@0) -> new_esEs19(yvy401, yvy301) 52.86/30.47 new_compare8(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) 52.86/30.47 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.86/30.47 new_ltEs20(yvy191, yvy193, ty_Integer) -> new_ltEs11(yvy191, yvy193) 52.86/30.47 new_ltEs19(yvy179, yvy180, ty_@0) -> new_ltEs4(yvy179, yvy180) 52.86/30.47 new_lt20(yvy190, yvy192, app(app(ty_@2, dh), ea)) -> new_lt12(yvy190, yvy192, dh, ea) 52.86/30.47 new_primCompAux00(yvy133, GT) -> GT 52.86/30.47 new_esEs8(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.86/30.47 new_esEs37(yvy4001, yvy3001, ty_Char) -> new_esEs16(yvy4001, yvy3001) 52.86/30.47 new_esEs40(yvy154, yvy157, app(ty_Maybe, cgg)) -> new_esEs24(yvy154, yvy157, cgg) 52.86/30.47 new_esEs40(yvy154, yvy157, ty_Int) -> new_esEs17(yvy154, yvy157) 52.86/30.47 new_ltEs15(Right(yvy1650), Right(yvy1660), he, ty_Ordering) -> new_ltEs16(yvy1650, yvy1660) 52.86/30.47 new_esEs32(yvy4000, yvy3000, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.86/30.47 new_esEs30(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.86/30.47 new_esEs8(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.86/30.47 new_ltEs24(yvy156, yvy159, app(app(app(ty_@3, dah), dba), dbb)) -> new_ltEs5(yvy156, yvy159, dah, dba, dbb) 52.86/30.47 new_ltEs23(yvy1651, yvy1661, app(ty_[], fgf)) -> new_ltEs10(yvy1651, yvy1661, fgf) 52.86/30.47 new_ltEs24(yvy156, yvy159, ty_@0) -> new_ltEs4(yvy156, yvy159) 52.86/30.47 new_ltEs4(yvy165, yvy166) -> new_fsEs(new_compare5(yvy165, yvy166)) 52.86/30.47 new_esEs33(yvy1650, yvy1660, app(ty_[], ffd)) -> new_esEs18(yvy1650, yvy1660, ffd) 52.86/30.47 new_ltEs16(LT, LT) -> True 52.86/30.47 new_esEs29(yvy190, yvy192, app(app(ty_Either, ef), eg)) -> new_esEs25(yvy190, yvy192, ef, eg) 52.86/30.47 new_ltEs7(yvy165, yvy166) -> new_fsEs(new_compare13(yvy165, yvy166)) 52.86/30.47 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_Ratio, edf), bfb) -> new_esEs28(yvy4000, yvy3000, edf) 52.86/30.47 new_ltEs19(yvy179, yvy180, ty_Bool) -> new_ltEs13(yvy179, yvy180) 52.86/30.47 new_lt6(yvy1651, yvy1661, app(ty_Maybe, ebb)) -> new_lt15(yvy1651, yvy1661, ebb) 52.86/30.47 new_lt25(yvy40, yvy30, ty_Bool) -> new_lt14(yvy40, yvy30) 52.86/30.47 new_esEs38(yvy4000, yvy3000, app(ty_[], cba)) -> new_esEs18(yvy4000, yvy3000, cba) 52.86/30.47 new_esEs39(yvy155, yvy158, app(app(ty_@2, chd), che)) -> new_esEs21(yvy155, yvy158, chd, che) 52.86/30.47 new_ltEs24(yvy156, yvy159, ty_Float) -> new_ltEs7(yvy156, yvy159) 52.86/30.47 new_esEs13(yvy1651, yvy1661, ty_@0) -> new_esEs19(yvy1651, yvy1661) 52.86/30.47 new_sr(Integer(yvy4000), Integer(yvy3010)) -> Integer(new_primMulInt(yvy4000, yvy3010)) 52.86/30.47 new_primCmpNat0(Succ(yvy4000), Zero) -> GT 52.86/30.47 new_esEs38(yvy4000, yvy3000, app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs22(yvy4000, yvy3000, bhh, caa, cab) 52.86/30.47 new_esEs30(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.86/30.47 new_pePe(False, yvy280) -> yvy280 52.86/30.47 new_esEs24(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs17(yvy4000, yvy3000) 52.86/30.47 new_compare6(@2(yvy400, yvy401), @2(yvy300, yvy301), bf, bg) -> new_compare26(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs5(yvy400, yvy300, bf), new_esEs4(yvy401, yvy301, bg)), bf, bg) 52.86/30.47 new_compare25(yvy179, yvy180, True, bh, ca) -> EQ 52.86/30.47 new_compare18(LT, GT) -> LT 52.86/30.47 new_lt22(yvy154, yvy157, app(ty_Maybe, cgg)) -> new_lt15(yvy154, yvy157, cgg) 52.86/30.47 new_ltEs16(LT, GT) -> True 52.86/30.47 new_ltEs21(yvy165, yvy166, ty_Double) -> new_ltEs17(yvy165, yvy166) 52.86/30.47 new_lt23(yvy155, yvy158, ty_Bool) -> new_lt14(yvy155, yvy158) 52.86/30.47 new_lt13(yvy40, yvy30, cfc, cfd, cfe) -> new_esEs12(new_compare31(yvy40, yvy30, cfc, cfd, cfe)) 52.86/30.47 new_ltEs16(LT, EQ) -> True 52.86/30.47 new_ltEs16(EQ, LT) -> False 52.86/30.47 new_lt20(yvy190, yvy192, ty_Integer) -> new_lt11(yvy190, yvy192) 52.86/30.47 new_esEs6(yvy402, yvy302, ty_Integer) -> new_esEs20(yvy402, yvy302) 52.86/30.47 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 52.86/30.47 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 52.86/30.47 new_esEs7(yvy401, yvy301, ty_Ordering) -> new_esEs26(yvy401, yvy301) 52.86/30.47 new_lt6(yvy1651, yvy1661, app(app(app(ty_@3, eag), eah), eba)) -> new_lt13(yvy1651, yvy1661, eag, eah, eba) 52.86/30.47 new_lt23(yvy155, yvy158, app(app(ty_Either, dab), dac)) -> new_lt16(yvy155, yvy158, dab, dac) 52.86/30.47 new_ltEs16(GT, LT) -> False 52.86/30.47 new_esEs4(yvy401, yvy301, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs22(yvy401, yvy301, bda, bdb, bdc) 52.86/30.47 new_compare30(yvy400, yvy300, app(ty_Maybe, ccc)) -> new_compare29(yvy400, yvy300, ccc) 52.86/30.47 new_esEs31(yvy4001, yvy3001, ty_Bool) -> new_esEs23(yvy4001, yvy3001) 52.86/30.47 new_esEs25(Left(yvy4000), Left(yvy3000), ty_@0, bfb) -> new_esEs19(yvy4000, yvy3000) 52.86/30.47 new_esEs31(yvy4001, yvy3001, app(app(ty_Either, fdg), fdh)) -> new_esEs25(yvy4001, yvy3001, fdg, fdh) 52.86/30.47 new_ltEs21(yvy165, yvy166, app(app(ty_Either, he), hf)) -> new_ltEs15(yvy165, yvy166, he, hf) 52.86/30.47 new_esEs30(yvy4000, yvy3000, app(ty_Ratio, ehd)) -> new_esEs28(yvy4000, yvy3000, ehd) 52.86/30.47 new_lt21(yvy1650, yvy1660, app(app(app(ty_@3, ffg), ffh), fga)) -> new_lt13(yvy1650, yvy1660, ffg, ffh, fga) 52.86/30.47 new_esEs33(yvy1650, yvy1660, app(ty_Maybe, fgb)) -> new_esEs24(yvy1650, yvy1660, fgb) 52.86/30.47 new_esEs9(yvy400, yvy300, ty_Ordering) -> new_esEs26(yvy400, yvy300) 52.86/30.47 new_lt25(yvy40, yvy30, app(app(ty_@2, bf), bg)) -> new_lt12(yvy40, yvy30, bf, bg) 52.86/30.47 new_ltEs24(yvy156, yvy159, ty_Int) -> new_ltEs9(yvy156, yvy159) 52.86/30.47 new_esEs7(yvy401, yvy301, ty_Float) -> new_esEs15(yvy401, yvy301) 52.86/30.47 new_lt5(yvy1650, yvy1660, app(ty_Ratio, eac)) -> new_lt19(yvy1650, yvy1660, eac) 52.86/30.47 new_esEs10(yvy400, yvy300, app(ty_Maybe, baf)) -> new_esEs24(yvy400, yvy300, baf) 52.86/30.47 new_esEs11(yvy400, yvy300, app(app(ty_Either, bcd), bce)) -> new_esEs25(yvy400, yvy300, bcd, bce) 52.86/30.47 new_esEs6(yvy402, yvy302, app(ty_Ratio, deb)) -> new_esEs28(yvy402, yvy302, deb) 52.86/30.47 new_compare12(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Integer) -> new_compare14(new_sr(yvy400, yvy301), new_sr(yvy300, yvy401)) 52.86/30.47 new_esEs8(yvy400, yvy300, app(app(ty_@2, dgd), dge)) -> new_esEs21(yvy400, yvy300, dgd, dge) 52.86/30.47 new_esEs30(yvy4000, yvy3000, app(ty_Maybe, eha)) -> new_esEs24(yvy4000, yvy3000, eha) 52.86/30.47 new_ltEs20(yvy191, yvy193, app(ty_Maybe, fh)) -> new_ltEs14(yvy191, yvy193, fh) 52.86/30.47 new_esEs20(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 52.86/30.47 new_esEs33(yvy1650, yvy1660, ty_@0) -> new_esEs19(yvy1650, yvy1660) 52.86/30.47 new_esEs30(yvy4000, yvy3000, app(ty_[], ehg)) -> new_esEs18(yvy4000, yvy3000, ehg) 52.86/30.47 new_esEs26(GT, GT) -> True 52.86/30.47 new_esEs40(yvy154, yvy157, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs22(yvy154, yvy157, cgd, cge, cgf) 52.86/30.47 new_ltEs16(EQ, GT) -> True 52.86/30.47 new_ltEs20(yvy191, yvy193, app(app(ty_@2, fb), fc)) -> new_ltEs12(yvy191, yvy193, fb, fc) 52.86/30.47 new_ltEs14(Just(yvy1650), Just(yvy1660), app(ty_Maybe, fcd)) -> new_ltEs14(yvy1650, yvy1660, fcd) 52.86/30.47 new_compare18(EQ, GT) -> LT 52.86/30.47 new_ltEs16(EQ, EQ) -> True 52.86/30.47 new_esEs6(yvy402, yvy302, ty_Bool) -> new_esEs23(yvy402, yvy302) 52.86/30.47 new_esEs36(yvy4002, yvy3002, ty_Int) -> new_esEs17(yvy4002, yvy3002) 52.86/30.47 new_compare17(yvy230, yvy231, True, dbg, dbh) -> LT 52.86/30.47 new_esEs29(yvy190, yvy192, ty_Integer) -> new_esEs20(yvy190, yvy192) 52.86/30.47 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Ordering, bfb) -> new_esEs26(yvy4000, yvy3000) 52.86/30.47 new_esEs10(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.86/30.47 new_lt5(yvy1650, yvy1660, ty_Float) -> new_lt7(yvy1650, yvy1660) 52.86/30.47 new_ltEs6(yvy1652, yvy1662, app(app(ty_@2, ebg), ebh)) -> new_ltEs12(yvy1652, yvy1662, ebg, ebh) 52.86/30.47 new_esEs39(yvy155, yvy158, ty_Char) -> new_esEs16(yvy155, yvy158) 52.86/30.47 new_esEs5(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.86/30.47 new_esEs36(yvy4002, yvy3002, ty_Double) -> new_esEs27(yvy4002, yvy3002) 52.86/30.47 new_esEs10(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.86/30.47 new_lt5(yvy1650, yvy1660, ty_Integer) -> new_lt11(yvy1650, yvy1660) 52.86/30.47 new_esEs13(yvy1651, yvy1661, ty_Int) -> new_esEs17(yvy1651, yvy1661) 52.86/30.47 new_lt21(yvy1650, yvy1660, ty_Float) -> new_lt7(yvy1650, yvy1660) 52.86/30.47 new_esEs23(False, True) -> False 52.86/30.47 new_esEs23(True, False) -> False 52.86/30.47 new_esEs9(yvy400, yvy300, ty_Float) -> new_esEs15(yvy400, yvy300) 52.86/30.47 new_esEs4(yvy401, yvy301, ty_Char) -> new_esEs16(yvy401, yvy301) 52.86/30.47 new_ltEs6(yvy1652, yvy1662, ty_Ordering) -> new_ltEs16(yvy1652, yvy1662) 52.86/30.47 new_esEs24(Just(yvy4000), Just(yvy3000), app(ty_Ratio, egb)) -> new_esEs28(yvy4000, yvy3000, egb) 52.86/30.47 new_esEs40(yvy154, yvy157, app(ty_Ratio, chb)) -> new_esEs28(yvy154, yvy157, chb) 52.86/30.47 new_ltEs14(Just(yvy1650), Just(yvy1660), app(app(ty_@2, fbg), fbh)) -> new_ltEs12(yvy1650, yvy1660, fbg, fbh) 52.86/30.47 new_lt18(yvy40, yvy30) -> new_esEs12(new_compare9(yvy40, yvy30)) 52.86/30.47 new_ltEs14(Just(yvy1650), Just(yvy1660), ty_Ordering) -> new_ltEs16(yvy1650, yvy1660) 52.86/30.47 new_esEs6(yvy402, yvy302, app(app(ty_@2, ddh), dea)) -> new_esEs21(yvy402, yvy302, ddh, dea) 52.86/30.47 new_ltEs20(yvy191, yvy193, ty_Ordering) -> new_ltEs16(yvy191, yvy193) 52.86/30.47 new_esEs4(yvy401, yvy301, app(ty_Ratio, bdg)) -> new_esEs28(yvy401, yvy301, bdg) 52.86/30.47 new_esEs5(yvy400, yvy300, app(ty_[], bfc)) -> new_esEs18(yvy400, yvy300, bfc) 52.86/30.47 new_compare7(False, False) -> EQ 52.86/30.47 new_lt21(yvy1650, yvy1660, app(ty_Ratio, fge)) -> new_lt19(yvy1650, yvy1660, fge) 52.86/30.47 new_primMulInt(Neg(yvy4000), Neg(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) 52.86/30.47 new_esEs32(yvy4000, yvy3000, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.86/30.47 new_esEs15(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs17(new_sr0(yvy4000, yvy3001), new_sr0(yvy4001, yvy3000)) 52.86/30.47 new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) 52.86/30.47 new_lt19(yvy40, yvy30, gd) -> new_esEs12(new_compare12(yvy40, yvy30, gd)) 52.86/30.47 new_esEs8(yvy400, yvy300, app(app(ty_Either, dgg), dgh)) -> new_esEs25(yvy400, yvy300, dgg, dgh) 52.86/30.47 new_gt8(yvy40, yvy30, cfc, cfd, cfe) -> new_esEs41(new_compare31(yvy40, yvy30, cfc, cfd, cfe)) 52.86/30.47 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_Ratio, cdh), hf) -> new_ltEs18(yvy1650, yvy1660, cdh) 52.86/30.47 new_lt23(yvy155, yvy158, app(app(ty_@2, chd), che)) -> new_lt12(yvy155, yvy158, chd, che) 52.86/30.47 new_esEs25(Left(yvy4000), Right(yvy3000), bfa, bfb) -> False 52.86/30.47 new_esEs25(Right(yvy4000), Left(yvy3000), bfa, bfb) -> False 52.86/30.47 new_esEs39(yvy155, yvy158, ty_Integer) -> new_esEs20(yvy155, yvy158) 52.86/30.47 new_esEs30(yvy4000, yvy3000, app(app(app(ty_@3, egf), egg), egh)) -> new_esEs22(yvy4000, yvy3000, egf, egg, egh) 52.86/30.47 new_ltEs21(yvy165, yvy166, ty_Float) -> new_ltEs7(yvy165, yvy166) 52.86/30.47 new_gt12(yvy40, yvy30) -> new_esEs41(new_compare18(yvy40, yvy30)) 52.86/30.47 new_fsEs(yvy281) -> new_not(new_esEs26(yvy281, GT)) 52.86/30.47 new_esEs25(Right(yvy4000), Right(yvy3000), bfa, app(app(app(ty_@3, eeb), eec), eed)) -> new_esEs22(yvy4000, yvy3000, eeb, eec, eed) 52.86/30.47 new_esEs29(yvy190, yvy192, ty_Bool) -> new_esEs23(yvy190, yvy192) 52.86/30.47 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(ty_@2, edd), ede), bfb) -> new_esEs21(yvy4000, yvy3000, edd, ede) 52.86/30.47 new_esEs22(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bec, bed, bee) -> new_asAs(new_esEs38(yvy4000, yvy3000, bec), new_asAs(new_esEs37(yvy4001, yvy3001, bed), new_esEs36(yvy4002, yvy3002, bee))) 52.86/30.47 new_ltEs15(Right(yvy1650), Right(yvy1660), he, ty_Integer) -> new_ltEs11(yvy1650, yvy1660) 52.86/30.47 new_esEs9(yvy400, yvy300, ty_@0) -> new_esEs19(yvy400, yvy300) 52.86/30.47 new_compare7(True, False) -> GT 52.86/30.47 new_gt2(yvy40, yvy30) -> new_esEs41(new_compare13(yvy40, yvy30)) 52.86/30.47 new_esEs28(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bcg) -> new_asAs(new_esEs35(yvy4000, yvy3000, bcg), new_esEs34(yvy4001, yvy3001, bcg)) 52.86/30.47 new_lt22(yvy154, yvy157, app(app(app(ty_@3, cgd), cge), cgf)) -> new_lt13(yvy154, yvy157, cgd, cge, cgf) 52.86/30.47 new_esEs32(yvy4000, yvy3000, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.86/30.47 new_lt25(yvy40, yvy30, app(app(ty_Either, hh), baa)) -> new_lt16(yvy40, yvy30, hh, baa) 52.86/30.47 new_esEs7(yvy401, yvy301, app(ty_Maybe, dfa)) -> new_esEs24(yvy401, yvy301, dfa) 52.86/30.47 new_esEs31(yvy4001, yvy3001, app(app(ty_@2, fdd), fde)) -> new_esEs21(yvy4001, yvy3001, fdd, fde) 52.86/30.47 new_esEs4(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) 52.86/30.47 new_esEs25(Right(yvy4000), Right(yvy3000), bfa, app(ty_[], efc)) -> new_esEs18(yvy4000, yvy3000, efc) 52.86/30.47 new_ltEs15(Right(yvy1650), Right(yvy1660), he, app(ty_Maybe, ceg)) -> new_ltEs14(yvy1650, yvy1660, ceg) 52.86/30.47 new_lt23(yvy155, yvy158, app(ty_Ratio, dad)) -> new_lt19(yvy155, yvy158, dad) 52.86/30.47 new_esEs11(yvy400, yvy300, app(ty_[], bcf)) -> new_esEs18(yvy400, yvy300, bcf) 52.86/30.47 new_esEs8(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.86/30.47 new_primMulInt(Pos(yvy4000), Neg(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) 52.86/30.47 new_primMulInt(Neg(yvy4000), Pos(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) 52.86/30.47 new_compare27(yvy165, yvy166, False, ge) -> new_compare15(yvy165, yvy166, new_ltEs21(yvy165, yvy166, ge), ge) 52.86/30.47 new_esEs5(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.86/30.47 new_compare30(yvy400, yvy300, app(app(ty_@2, cbf), cbg)) -> new_compare6(yvy400, yvy300, cbf, cbg) 52.86/30.47 new_compare5(@0, @0) -> EQ 52.86/30.47 new_esEs25(Right(yvy4000), Right(yvy3000), bfa, app(ty_Maybe, eee)) -> new_esEs24(yvy4000, yvy3000, eee) 52.86/30.47 new_ltEs22(yvy172, yvy173, ty_@0) -> new_ltEs4(yvy172, yvy173) 52.86/30.47 new_ltEs22(yvy172, yvy173, app(app(app(ty_@3, fag), fah), fba)) -> new_ltEs5(yvy172, yvy173, fag, fah, fba) 52.86/30.47 new_ltEs19(yvy179, yvy180, ty_Int) -> new_ltEs9(yvy179, yvy180) 52.86/30.47 new_esEs36(yvy4002, yvy3002, app(ty_[], bge)) -> new_esEs18(yvy4002, yvy3002, bge) 52.86/30.47 new_ltEs23(yvy1651, yvy1661, ty_Ordering) -> new_ltEs16(yvy1651, yvy1661) 52.86/30.47 new_compare210(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, False, cff, cfg, cfh) -> new_compare111(yvy154, yvy155, yvy156, yvy157, yvy158, yvy159, new_lt22(yvy154, yvy157, cff), new_asAs(new_esEs40(yvy154, yvy157, cff), new_pePe(new_lt23(yvy155, yvy158, cfg), new_asAs(new_esEs39(yvy155, yvy158, cfg), new_ltEs24(yvy156, yvy159, cfh)))), cff, cfg, cfh) 52.86/30.47 new_esEs9(yvy400, yvy300, app(ty_Maybe, gae)) -> new_esEs24(yvy400, yvy300, gae) 52.86/30.47 new_esEs5(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.86/30.47 new_ltEs20(yvy191, yvy193, ty_Char) -> new_ltEs8(yvy191, yvy193) 52.86/30.47 new_ltEs22(yvy172, yvy173, ty_Double) -> new_ltEs17(yvy172, yvy173) 52.86/30.47 new_asAs(True, yvy208) -> yvy208 52.86/30.47 new_esEs32(yvy4000, yvy3000, app(app(ty_@2, fef), feg)) -> new_esEs21(yvy4000, yvy3000, fef, feg) 52.86/30.47 new_ltEs6(yvy1652, yvy1662, app(ty_Ratio, ecg)) -> new_ltEs18(yvy1652, yvy1662, ecg) 52.86/30.47 new_ltEs23(yvy1651, yvy1661, ty_Integer) -> new_ltEs11(yvy1651, yvy1661) 52.86/30.47 new_esEs5(yvy400, yvy300, app(app(ty_@2, beg), beh)) -> new_esEs21(yvy400, yvy300, beg, beh) 52.86/30.47 new_ltEs15(Right(yvy1650), Right(yvy1660), he, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs5(yvy1650, yvy1660, ced, cee, cef) 52.86/30.47 new_lt25(yvy40, yvy30, app(ty_Maybe, bch)) -> new_lt15(yvy40, yvy30, bch) 52.86/30.47 new_esEs32(yvy4000, yvy3000, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.86/30.47 new_compare26(yvy190, yvy191, yvy192, yvy193, True, de, df) -> EQ 52.86/30.47 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_[], ccg), hf) -> new_ltEs10(yvy1650, yvy1660, ccg) 52.86/30.47 new_esEs25(Left(yvy4000), Left(yvy3000), app(ty_[], eea), bfb) -> new_esEs18(yvy4000, yvy3000, eea) 52.86/30.47 new_compare15(yvy223, yvy224, False, ddc) -> GT 52.86/30.47 new_compare28(yvy172, yvy173, False, fab, fac) -> new_compare17(yvy172, yvy173, new_ltEs22(yvy172, yvy173, fab), fab, fac) 52.86/30.47 new_lt21(yvy1650, yvy1660, ty_Double) -> new_lt18(yvy1650, yvy1660) 52.86/30.47 new_compare0([], [], bab) -> EQ 52.86/30.47 new_lt22(yvy154, yvy157, app(app(ty_@2, cgb), cgc)) -> new_lt12(yvy154, yvy157, cgb, cgc) 52.86/30.47 new_ltEs16(GT, GT) -> True 52.86/30.47 new_compare13(Float(yvy400, Pos(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare8(new_sr0(yvy400, Pos(yvy3010)), new_sr0(Pos(yvy4010), yvy300)) 52.86/30.47 new_esEs37(yvy4001, yvy3001, ty_Double) -> new_esEs27(yvy4001, yvy3001) 52.86/30.47 new_esEs9(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.86/30.47 new_primMulNat0(Zero, Zero) -> Zero 52.86/30.47 new_esEs11(yvy400, yvy300, app(app(ty_@2, bca), bcb)) -> new_esEs21(yvy400, yvy300, bca, bcb) 52.86/30.47 new_ltEs21(yvy165, yvy166, app(ty_Maybe, hd)) -> new_ltEs14(yvy165, yvy166, hd) 52.86/30.47 new_lt5(yvy1650, yvy1660, app(app(ty_@2, dhc), dhd)) -> new_lt12(yvy1650, yvy1660, dhc, dhd) 52.86/30.47 new_ltEs19(yvy179, yvy180, ty_Char) -> new_ltEs8(yvy179, yvy180) 52.86/30.47 new_ltEs23(yvy1651, yvy1661, app(app(ty_Either, fhe), fhf)) -> new_ltEs15(yvy1651, yvy1661, fhe, fhf) 52.86/30.47 new_esEs4(yvy401, yvy301, app(ty_[], beb)) -> new_esEs18(yvy401, yvy301, beb) 52.86/30.47 new_lt21(yvy1650, yvy1660, app(app(ty_@2, ffe), fff)) -> new_lt12(yvy1650, yvy1660, ffe, fff) 52.86/30.47 new_ltEs23(yvy1651, yvy1661, ty_Float) -> new_ltEs7(yvy1651, yvy1661) 52.86/30.47 new_lt5(yvy1650, yvy1660, ty_Double) -> new_lt18(yvy1650, yvy1660) 52.86/30.47 new_ltEs22(yvy172, yvy173, app(ty_Maybe, fbb)) -> new_ltEs14(yvy172, yvy173, fbb) 52.86/30.47 new_esEs32(yvy4000, yvy3000, app(ty_[], ffc)) -> new_esEs18(yvy4000, yvy3000, ffc) 52.86/30.47 new_esEs33(yvy1650, yvy1660, app(app(ty_@2, ffe), fff)) -> new_esEs21(yvy1650, yvy1660, ffe, fff) 52.86/30.47 new_esEs9(yvy400, yvy300, ty_Double) -> new_esEs27(yvy400, yvy300) 52.86/30.47 new_ltEs15(Right(yvy1650), Right(yvy1660), he, ty_Int) -> new_ltEs9(yvy1650, yvy1660) 52.86/30.47 new_compare12(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Int) -> new_compare8(new_sr0(yvy400, yvy301), new_sr0(yvy300, yvy401)) 52.86/30.47 new_ltEs22(yvy172, yvy173, app(app(ty_Either, fbc), fbd)) -> new_ltEs15(yvy172, yvy173, fbc, fbd) 52.86/30.47 new_esEs25(Right(yvy4000), Right(yvy3000), bfa, ty_Char) -> new_esEs16(yvy4000, yvy3000) 52.86/30.47 new_ltEs24(yvy156, yvy159, app(ty_Ratio, dbf)) -> new_ltEs18(yvy156, yvy159, dbf) 52.86/30.47 new_ltEs6(yvy1652, yvy1662, ty_Char) -> new_ltEs8(yvy1652, yvy1662) 52.86/30.47 new_esEs7(yvy401, yvy301, app(ty_Ratio, dfd)) -> new_esEs28(yvy401, yvy301, dfd) 52.86/30.47 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 52.86/30.47 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 52.86/30.47 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 52.86/30.47 new_gt5(yvy40, yvy30, bab) -> new_esEs41(new_compare0(yvy40, yvy30, bab)) 52.86/30.47 new_esEs10(yvy400, yvy300, app(ty_[], bbd)) -> new_esEs18(yvy400, yvy300, bbd) 52.86/30.47 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 52.86/30.47 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 52.86/30.47 new_ltEs15(Left(yvy1650), Left(yvy1660), app(ty_Maybe, cde), hf) -> new_ltEs14(yvy1650, yvy1660, cde) 52.86/30.47 new_compare31(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), cfc, cfd, cfe) -> new_compare210(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs8(yvy400, yvy300, cfc), new_asAs(new_esEs7(yvy401, yvy301, cfd), new_esEs6(yvy402, yvy302, cfe))), cfc, cfd, cfe) 52.86/30.47 new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) 52.86/30.47 new_lt25(yvy40, yvy30, ty_Double) -> new_lt18(yvy40, yvy30) 52.86/30.47 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 52.86/30.47 new_ltEs22(yvy172, yvy173, ty_Ordering) -> new_ltEs16(yvy172, yvy173) 52.86/30.47 new_compare111(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, yvy269, cbb, cbc, cbd) -> new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, True, cbb, cbc, cbd) 52.86/30.47 new_ltEs15(Right(yvy1650), Right(yvy1660), he, ty_Double) -> new_ltEs17(yvy1650, yvy1660) 52.86/30.47 new_ltEs19(yvy179, yvy180, app(ty_Ratio, dd)) -> new_ltEs18(yvy179, yvy180, dd) 52.86/30.47 new_ltEs21(yvy165, yvy166, ty_Char) -> new_ltEs8(yvy165, yvy166) 52.86/30.47 new_lt25(yvy40, yvy30, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_lt13(yvy40, yvy30, cfc, cfd, cfe) 52.86/30.47 new_esEs6(yvy402, yvy302, ty_Double) -> new_esEs27(yvy402, yvy302) 52.86/30.47 new_ltEs6(yvy1652, yvy1662, ty_Bool) -> new_ltEs13(yvy1652, yvy1662) 52.86/30.47 new_lt20(yvy190, yvy192, ty_Double) -> new_lt18(yvy190, yvy192) 52.86/30.47 new_not(False) -> True 52.86/30.47 new_ltEs23(yvy1651, yvy1661, app(app(app(ty_@3, fha), fhb), fhc)) -> new_ltEs5(yvy1651, yvy1661, fha, fhb, fhc) 52.86/30.47 new_esEs8(yvy400, yvy300, app(ty_Ratio, dgf)) -> new_esEs28(yvy400, yvy300, dgf) 52.86/30.47 new_ltEs6(yvy1652, yvy1662, ty_Integer) -> new_ltEs11(yvy1652, yvy1662) 52.86/30.47 new_compare18(GT, EQ) -> GT 52.86/30.47 new_esEs5(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.86/30.47 new_ltEs24(yvy156, yvy159, ty_Ordering) -> new_ltEs16(yvy156, yvy159) 52.86/30.47 new_ltEs21(yvy165, yvy166, ty_@0) -> new_ltEs4(yvy165, yvy166) 52.86/30.47 new_ltEs6(yvy1652, yvy1662, app(app(app(ty_@3, eca), ecb), ecc)) -> new_ltEs5(yvy1652, yvy1662, eca, ecb, ecc) 52.86/30.47 new_ltEs6(yvy1652, yvy1662, ty_@0) -> new_ltEs4(yvy1652, yvy1662) 52.86/30.47 new_ltEs24(yvy156, yvy159, ty_Integer) -> new_ltEs11(yvy156, yvy159) 52.86/30.47 new_gt14(yvy35, yvy30, ty_Double) -> new_gt0(yvy35, yvy30) 52.86/30.47 new_esEs41(LT) -> False 52.86/30.47 new_esEs9(yvy400, yvy300, ty_Bool) -> new_esEs23(yvy400, yvy300) 52.86/30.47 new_compare11(yvy247, yvy248, yvy249, yvy250, True, yvy252, fhh, gaa) -> new_compare110(yvy247, yvy248, yvy249, yvy250, True, fhh, gaa) 52.86/30.47 new_esEs37(yvy4001, yvy3001, app(ty_[], bhg)) -> new_esEs18(yvy4001, yvy3001, bhg) 52.86/30.47 new_ltEs20(yvy191, yvy193, app(ty_Ratio, gc)) -> new_ltEs18(yvy191, yvy193, gc) 52.86/30.47 new_ltEs21(yvy165, yvy166, ty_Bool) -> new_ltEs13(yvy165, yvy166) 52.86/30.47 new_esEs4(yvy401, yvy301, ty_Double) -> new_esEs27(yvy401, yvy301) 52.86/30.47 new_esEs38(yvy4000, yvy3000, app(app(ty_@2, cad), cae)) -> new_esEs21(yvy4000, yvy3000, cad, cae) 52.86/30.47 new_esEs8(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.86/30.47 new_ltEs23(yvy1651, yvy1661, app(ty_Maybe, fhd)) -> new_ltEs14(yvy1651, yvy1661, fhd) 52.86/30.47 new_compare29(Nothing, Nothing, bch) -> EQ 52.86/30.47 new_esEs25(Left(yvy4000), Left(yvy3000), ty_Double, bfb) -> new_esEs27(yvy4000, yvy3000) 52.86/30.47 new_esEs9(yvy400, yvy300, app(app(app(ty_@3, gab), gac), gad)) -> new_esEs22(yvy400, yvy300, gab, gac, gad) 52.86/30.47 new_sr0(yvy400, yvy301) -> new_primMulInt(yvy400, yvy301) 52.86/30.47 new_ltEs23(yvy1651, yvy1661, app(ty_Ratio, fhg)) -> new_ltEs18(yvy1651, yvy1661, fhg) 52.86/30.47 new_ltEs24(yvy156, yvy159, ty_Bool) -> new_ltEs13(yvy156, yvy159) 52.86/30.47 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 52.86/30.47 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 52.86/30.47 new_esEs9(yvy400, yvy300, ty_Char) -> new_esEs16(yvy400, yvy300) 52.86/30.47 new_ltEs23(yvy1651, yvy1661, ty_@0) -> new_ltEs4(yvy1651, yvy1661) 52.86/30.47 new_esEs25(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, ech), eda), edb), bfb) -> new_esEs22(yvy4000, yvy3000, ech, eda, edb) 52.86/30.47 new_lt25(yvy40, yvy30, ty_Integer) -> new_lt11(yvy40, yvy30) 52.86/30.47 new_esEs14(yvy1650, yvy1660, app(ty_[], dhb)) -> new_esEs18(yvy1650, yvy1660, dhb) 52.86/30.47 new_ltEs24(yvy156, yvy159, app(app(ty_Either, dbd), dbe)) -> new_ltEs15(yvy156, yvy159, dbd, dbe) 52.86/30.47 new_esEs18(:(yvy4000, yvy4001), [], bfc) -> False 52.86/30.47 new_esEs18([], :(yvy3000, yvy3001), bfc) -> False 52.86/30.47 new_ltEs23(yvy1651, yvy1661, ty_Bool) -> new_ltEs13(yvy1651, yvy1661) 52.86/30.47 new_lt9(yvy40, yvy30) -> new_esEs12(new_compare8(yvy40, yvy30)) 52.86/30.47 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 52.86/30.47 new_ltEs18(yvy165, yvy166, hg) -> new_fsEs(new_compare12(yvy165, yvy166, hg)) 52.86/30.47 new_ltEs22(yvy172, yvy173, app(ty_Ratio, fbe)) -> new_ltEs18(yvy172, yvy173, fbe) 52.86/30.47 new_esEs26(EQ, EQ) -> True 52.86/30.47 new_ltEs21(yvy165, yvy166, ty_Integer) -> new_ltEs11(yvy165, yvy166) 52.86/30.47 new_esEs8(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) 52.86/30.47 new_esEs25(Right(yvy4000), Right(yvy3000), bfa, ty_@0) -> new_esEs19(yvy4000, yvy3000) 52.86/30.47 new_lt6(yvy1651, yvy1661, ty_Double) -> new_lt18(yvy1651, yvy1661) 52.86/30.47 new_compare15(yvy223, yvy224, True, ddc) -> LT 52.86/30.47 new_esEs26(LT, LT) -> True 52.86/30.47 new_esEs36(yvy4002, yvy3002, app(app(ty_@2, bfh), bga)) -> new_esEs21(yvy4002, yvy3002, bfh, bga) 52.86/30.47 new_esEs9(yvy400, yvy300, ty_Integer) -> new_esEs20(yvy400, yvy300) 52.86/30.47 new_esEs24(Nothing, Nothing, bef) -> True 52.86/30.47 new_esEs13(yvy1651, yvy1661, app(app(ty_@2, eae), eaf)) -> new_esEs21(yvy1651, yvy1661, eae, eaf) 52.86/30.47 new_ltEs21(yvy165, yvy166, ty_Int) -> new_ltEs9(yvy165, yvy166) 52.86/30.47 new_ltEs21(yvy165, yvy166, app(ty_Ratio, hg)) -> new_ltEs18(yvy165, yvy166, hg) 52.86/30.47 new_ltEs22(yvy172, yvy173, ty_Bool) -> new_ltEs13(yvy172, yvy173) 52.86/30.47 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 52.86/30.47 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 52.86/30.47 new_ltEs24(yvy156, yvy159, ty_Char) -> new_ltEs8(yvy156, yvy159) 52.86/30.47 new_lt23(yvy155, yvy158, ty_Double) -> new_lt18(yvy155, yvy158) 52.86/30.47 new_gt14(yvy35, yvy30, app(ty_[], dca)) -> new_gt5(yvy35, yvy30, dca) 52.86/30.47 new_primEqNat0(Zero, Zero) -> True 52.86/30.47 new_esEs37(yvy4001, yvy3001, app(app(ty_@2, bhb), bhc)) -> new_esEs21(yvy4001, yvy3001, bhb, bhc) 52.86/30.47 new_esEs25(Right(yvy4000), Right(yvy3000), bfa, ty_Ordering) -> new_esEs26(yvy4000, yvy3000) 52.86/30.47 new_esEs14(yvy1650, yvy1660, app(app(ty_@2, dhc), dhd)) -> new_esEs21(yvy1650, yvy1660, dhc, dhd) 52.86/30.47 new_ltEs20(yvy191, yvy193, ty_Int) -> new_ltEs9(yvy191, yvy193) 52.86/30.47 new_esEs24(Nothing, Just(yvy3000), bef) -> False 52.86/30.47 new_esEs24(Just(yvy4000), Nothing, bef) -> False 52.86/30.47 new_esEs13(yvy1651, yvy1661, app(ty_[], ead)) -> new_esEs18(yvy1651, yvy1661, ead) 52.86/30.47 new_esEs25(Right(yvy4000), Right(yvy3000), bfa, ty_Float) -> new_esEs15(yvy4000, yvy3000) 52.86/30.47 new_compare9(Double(yvy400, Neg(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare8(new_sr0(yvy400, Neg(yvy3010)), new_sr0(Neg(yvy4010), yvy300)) 52.86/30.47 new_lt22(yvy154, yvy157, ty_Double) -> new_lt18(yvy154, yvy157) 52.86/30.47 new_asAs(False, yvy208) -> False 52.86/30.47 new_ltEs23(yvy1651, yvy1661, ty_Char) -> new_ltEs8(yvy1651, yvy1661) 52.86/30.47 new_ltEs6(yvy1652, yvy1662, ty_Int) -> new_ltEs9(yvy1652, yvy1662) 52.86/30.47 new_gt14(yvy35, yvy30, app(app(ty_@2, dcb), dcc)) -> new_gt1(yvy35, yvy30, dcb, dcc) 52.86/30.47 new_compare111(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, False, yvy269, cbb, cbc, cbd) -> new_compare112(yvy262, yvy263, yvy264, yvy265, yvy266, yvy267, yvy269, cbb, cbc, cbd) 52.86/30.47 new_ltEs22(yvy172, yvy173, ty_Integer) -> new_ltEs11(yvy172, yvy173) 52.86/30.47 new_ltEs24(yvy156, yvy159, app(ty_Maybe, dbc)) -> new_ltEs14(yvy156, yvy159, dbc) 52.86/30.47 new_compare30(yvy400, yvy300, app(ty_Ratio, ccf)) -> new_compare12(yvy400, yvy300, ccf) 52.86/30.47 new_esEs7(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) 52.86/30.47 new_gt0(yvy40, yvy30) -> new_esEs41(new_compare9(yvy40, yvy30)) 52.86/30.47 new_ltEs21(yvy165, yvy166, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs5(yvy165, yvy166, ha, hb, hc) 52.86/30.47 52.86/30.47 The set Q consists of the following terms: 52.86/30.47 52.86/30.47 new_esEs8(x0, x1, ty_Ordering) 52.86/30.47 new_esEs9(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs7(x0, x1, ty_Char) 52.86/30.47 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 52.86/30.47 new_esEs10(x0, x1, ty_Int) 52.86/30.47 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 52.86/30.47 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 52.86/30.47 new_ltEs23(x0, x1, app(ty_[], x2)) 52.86/30.47 new_ltEs21(x0, x1, ty_Double) 52.86/30.47 new_ltEs6(x0, x1, app(ty_[], x2)) 52.86/30.47 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 52.86/30.47 new_esEs29(x0, x1, ty_@0) 52.86/30.47 new_lt25(x0, x1, ty_Double) 52.86/30.47 new_asAs(False, x0) 52.86/30.47 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs8(x0, x1, ty_Double) 52.86/30.47 new_compare16(Right(x0), Right(x1), x2, x3) 52.86/30.47 new_compare30(x0, x1, app(ty_[], x2)) 52.86/30.47 new_compare30(x0, x1, ty_Char) 52.86/30.47 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 52.86/30.47 new_ltEs24(x0, x1, app(ty_[], x2)) 52.86/30.47 new_ltEs21(x0, x1, ty_Ordering) 52.86/30.47 new_esEs29(x0, x1, ty_Bool) 52.86/30.47 new_esEs11(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_lt22(x0, x1, ty_@0) 52.86/30.47 new_esEs6(x0, x1, app(ty_[], x2)) 52.86/30.47 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 52.86/30.47 new_lt5(x0, x1, ty_Float) 52.86/30.47 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_primEqInt(Pos(Zero), Pos(Zero)) 52.86/30.47 new_primMulNat0(Zero, Succ(x0)) 52.86/30.47 new_ltEs19(x0, x1, ty_Integer) 52.86/30.47 new_lt25(x0, x1, ty_Ordering) 52.86/30.47 new_compare6(@2(x0, x1), @2(x2, x3), x4, x5) 52.86/30.47 new_lt20(x0, x1, ty_Char) 52.86/30.47 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_primCompAux00(x0, GT) 52.86/30.47 new_ltEs20(x0, x1, ty_Ordering) 52.86/30.47 new_ltEs19(x0, x1, ty_Float) 52.86/30.47 new_sr0(x0, x1) 52.86/30.47 new_ltEs14(Nothing, Nothing, x0) 52.86/30.47 new_lt16(x0, x1, x2, x3) 52.86/30.47 new_ltEs7(x0, x1) 52.86/30.47 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs7(x0, x1, ty_Ordering) 52.86/30.47 new_esEs4(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_primEqInt(Neg(Zero), Neg(Zero)) 52.86/30.47 new_gt14(x0, x1, ty_Int) 52.86/30.47 new_ltEs11(x0, x1) 52.86/30.47 new_compare26(x0, x1, x2, x3, True, x4, x5) 52.86/30.47 new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) 52.86/30.47 new_ltEs16(GT, EQ) 52.86/30.47 new_ltEs16(EQ, GT) 52.86/30.47 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 52.86/30.47 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs39(x0, x1, ty_Int) 52.86/30.47 new_lt21(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_ltEs21(x0, x1, ty_Char) 52.86/30.47 new_lt11(x0, x1) 52.86/30.47 new_esEs29(x0, x1, ty_Integer) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, ty_Char) 52.86/30.47 new_ltEs16(LT, LT) 52.86/30.47 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 52.86/30.47 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_lt25(x0, x1, ty_Char) 52.86/30.47 new_esEs8(x0, x1, ty_Char) 52.86/30.47 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_gt11(x0, x1, x2, x3) 52.86/30.47 new_esEs35(x0, x1, ty_Integer) 52.86/30.47 new_ltEs20(x0, x1, ty_Char) 52.86/30.47 new_primPlusNat0(Zero, Succ(x0)) 52.86/30.47 new_compare30(x0, x1, ty_Double) 52.86/30.47 new_esEs20(Integer(x0), Integer(x1)) 52.86/30.47 new_esEs6(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_primEqInt(Pos(Zero), Neg(Zero)) 52.86/30.47 new_primEqInt(Neg(Zero), Pos(Zero)) 52.86/30.47 new_ltEs20(x0, x1, ty_Double) 52.86/30.47 new_esEs11(x0, x1, ty_Float) 52.86/30.47 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 52.86/30.47 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 52.86/30.47 new_esEs34(x0, x1, ty_Integer) 52.86/30.47 new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) 52.86/30.47 new_compare18(GT, GT) 52.86/30.47 new_compare0(:(x0, x1), :(x2, x3), x4) 52.86/30.47 new_esEs10(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_lt23(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_lt23(x0, x1, ty_Char) 52.86/30.47 new_compare7(True, True) 52.86/30.47 new_gt4(x0, x1) 52.86/30.47 new_primCmpNat0(Succ(x0), Zero) 52.86/30.47 new_esEs6(x0, x1, ty_Ordering) 52.86/30.47 new_esEs11(x0, x1, app(ty_[], x2)) 52.86/30.47 new_lt23(x0, x1, ty_Double) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs11(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 52.86/30.47 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 52.86/30.47 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 52.86/30.47 new_esEs7(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs23(False, False) 52.86/30.47 new_esEs29(x0, x1, ty_Float) 52.86/30.47 new_compare19(Char(x0), Char(x1)) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 52.86/30.47 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs32(x0, x1, ty_Double) 52.86/30.47 new_gt14(x0, x1, ty_Bool) 52.86/30.47 new_primEqNat0(Succ(x0), Succ(x1)) 52.86/30.47 new_esEs31(x0, x1, ty_Float) 52.86/30.47 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs24(Just(x0), Just(x1), ty_Float) 52.86/30.47 new_gt14(x0, x1, ty_Integer) 52.86/30.47 new_esEs31(x0, x1, ty_Char) 52.86/30.47 new_esEs12(GT) 52.86/30.47 new_compare29(Just(x0), Just(x1), x2) 52.86/30.47 new_lt20(x0, x1, ty_Ordering) 52.86/30.47 new_esEs26(LT, EQ) 52.86/30.47 new_esEs26(EQ, LT) 52.86/30.47 new_ltEs19(x0, x1, ty_@0) 52.86/30.47 new_compare16(Right(x0), Left(x1), x2, x3) 52.86/30.47 new_compare16(Left(x0), Right(x1), x2, x3) 52.86/30.47 new_esEs6(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_ltEs16(LT, EQ) 52.86/30.47 new_ltEs16(EQ, LT) 52.86/30.47 new_lt22(x0, x1, ty_Float) 52.86/30.47 new_ltEs18(x0, x1, x2) 52.86/30.47 new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), ty_Double, x2) 52.86/30.47 new_lt21(x0, x1, ty_Float) 52.86/30.47 new_ltEs22(x0, x1, ty_Int) 52.86/30.47 new_esEs24(Just(x0), Just(x1), ty_Char) 52.86/30.47 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs30(x0, x1, ty_Int) 52.86/30.47 new_lt22(x0, x1, ty_Integer) 52.86/30.47 new_gt13(x0, x1, x2) 52.86/30.47 new_lt20(x0, x1, ty_Double) 52.86/30.47 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_compare0(:(x0, x1), [], x2) 52.86/30.47 new_ltEs23(x0, x1, ty_Char) 52.86/30.47 new_compare27(x0, x1, True, x2) 52.86/30.47 new_ltEs24(x0, x1, ty_Char) 52.86/30.47 new_lt7(x0, x1) 52.86/30.47 new_compare30(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs4(x0, x1, app(ty_[], x2)) 52.86/30.47 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_compare17(x0, x1, True, x2, x3) 52.86/30.47 new_esEs40(x0, x1, ty_@0) 52.86/30.47 new_esEs7(x0, x1, ty_Double) 52.86/30.47 new_lt22(x0, x1, ty_Int) 52.86/30.47 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_ltEs23(x0, x1, ty_Ordering) 52.86/30.47 new_compare30(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs25(Left(x0), Left(x1), ty_Bool, x2) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, ty_@0) 52.86/30.47 new_esEs37(x0, x1, ty_Int) 52.86/30.47 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), ty_Double) 52.86/30.47 new_gt0(x0, x1) 52.86/30.47 new_esEs39(x0, x1, ty_Integer) 52.86/30.47 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_compare14(Integer(x0), Integer(x1)) 52.86/30.47 new_esEs10(x0, x1, ty_@0) 52.86/30.47 new_esEs25(Left(x0), Left(x1), ty_Int, x2) 52.86/30.47 new_esEs6(x0, x1, ty_Char) 52.86/30.47 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs4(x0, x1, ty_Int) 52.86/30.47 new_compare16(Left(x0), Left(x1), x2, x3) 52.86/30.47 new_esEs29(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_lt18(x0, x1) 52.86/30.47 new_esEs14(x0, x1, ty_Int) 52.86/30.47 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_lt22(x0, x1, ty_Bool) 52.86/30.47 new_lt5(x0, x1, ty_@0) 52.86/30.47 new_lt5(x0, x1, ty_Double) 52.86/30.47 new_esEs32(x0, x1, ty_@0) 52.86/30.47 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 52.86/30.47 new_esEs35(x0, x1, ty_Int) 52.86/30.47 new_esEs29(x0, x1, ty_Int) 52.86/30.47 new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 52.86/30.47 new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 52.86/30.47 new_esEs26(EQ, EQ) 52.86/30.47 new_ltEs13(True, True) 52.86/30.47 new_ltEs6(x0, x1, ty_Double) 52.86/30.47 new_esEs10(x0, x1, app(ty_[], x2)) 52.86/30.47 new_primCompAux0(x0, x1, x2, x3) 52.86/30.47 new_esEs37(x0, x1, ty_@0) 52.86/30.47 new_esEs31(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs23(False, True) 52.86/30.47 new_esEs23(True, False) 52.86/30.47 new_ltEs21(x0, x1, ty_Float) 52.86/30.47 new_esEs9(x0, x1, ty_Ordering) 52.86/30.47 new_compare18(GT, LT) 52.86/30.47 new_compare18(LT, GT) 52.86/30.47 new_esEs11(x0, x1, ty_Int) 52.86/30.47 new_primCompAux00(x0, EQ) 52.86/30.47 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_lt25(x0, x1, ty_Float) 52.86/30.47 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs5(x0, x1, ty_Int) 52.86/30.47 new_gt14(x0, x1, ty_Float) 52.86/30.47 new_esEs4(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, app(ty_[], x3)) 52.86/30.47 new_pePe(True, x0) 52.86/30.47 new_gt14(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs30(x0, x1, ty_Bool) 52.86/30.47 new_esEs25(Left(x0), Left(x1), ty_Integer, x2) 52.86/30.47 new_esEs11(x0, x1, ty_Char) 52.86/30.47 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 52.86/30.47 new_ltEs20(x0, x1, ty_Float) 52.86/30.47 new_esEs5(x0, x1, ty_Char) 52.86/30.47 new_ltEs24(x0, x1, ty_Ordering) 52.86/30.47 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 52.86/30.47 new_esEs32(x0, x1, ty_Bool) 52.86/30.47 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs37(x0, x1, ty_Bool) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 52.86/30.47 new_ltEs20(x0, x1, ty_Integer) 52.86/30.47 new_ltEs19(x0, x1, ty_Ordering) 52.86/30.47 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 52.86/30.47 new_esEs13(x0, x1, ty_Bool) 52.86/30.47 new_ltEs24(x0, x1, ty_Double) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), ty_Bool, x2) 52.86/30.47 new_esEs36(x0, x1, ty_Integer) 52.86/30.47 new_primPlusNat0(Zero, Zero) 52.86/30.47 new_lt21(x0, x1, ty_@0) 52.86/30.47 new_compare29(Just(x0), Nothing, x1) 52.86/30.47 new_lt8(x0, x1) 52.86/30.47 new_not(True) 52.86/30.47 new_esEs4(x0, x1, ty_Ordering) 52.86/30.47 new_esEs32(x0, x1, ty_Integer) 52.86/30.47 new_ltEs13(False, False) 52.86/30.47 new_lt21(x0, x1, ty_Int) 52.86/30.47 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 52.86/30.47 new_lt21(x0, x1, ty_Integer) 52.86/30.47 new_esEs13(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_lt25(x0, x1, ty_Integer) 52.86/30.47 new_esEs5(x0, x1, ty_@0) 52.86/30.47 new_esEs38(x0, x1, ty_Ordering) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), app(ty_[], x2), x3) 52.86/30.47 new_lt21(x0, x1, ty_Char) 52.86/30.47 new_ltEs6(x0, x1, ty_Ordering) 52.86/30.47 new_lt5(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs36(x0, x1, ty_Bool) 52.86/30.47 new_esEs11(x0, x1, ty_@0) 52.86/30.47 new_lt5(x0, x1, ty_Ordering) 52.86/30.47 new_esEs24(Just(x0), Nothing, x1) 52.86/30.47 new_lt21(x0, x1, ty_Bool) 52.86/30.47 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_compare30(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs39(x0, x1, ty_@0) 52.86/30.47 new_lt15(x0, x1, x2) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), ty_@0, x2) 52.86/30.47 new_esEs38(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_lt6(x0, x1, ty_@0) 52.86/30.47 new_esEs37(x0, x1, ty_Integer) 52.86/30.47 new_esEs29(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 52.86/30.47 new_esEs7(x0, x1, app(ty_[], x2)) 52.86/30.47 new_esEs13(x0, x1, ty_Integer) 52.86/30.47 new_compare10(x0, x1, True, x2, x3) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), ty_Float, x2) 52.86/30.47 new_ltEs20(x0, x1, ty_Bool) 52.86/30.47 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs8(x0, x1, ty_Float) 52.86/30.47 new_esEs32(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs24(Just(x0), Just(x1), ty_Ordering) 52.86/30.47 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 52.86/30.47 new_lt25(x0, x1, ty_@0) 52.86/30.47 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_compare15(x0, x1, False, x2) 52.86/30.47 new_ltEs21(x0, x1, ty_@0) 52.86/30.47 new_ltEs21(x0, x1, ty_Bool) 52.86/30.47 new_esEs40(x0, x1, ty_Integer) 52.86/30.47 new_esEs30(x0, x1, ty_Double) 52.86/30.47 new_ltEs14(Nothing, Just(x0), x1) 52.86/30.47 new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) 52.86/30.47 new_esEs24(Just(x0), Just(x1), ty_Double) 52.86/30.47 new_esEs31(x0, x1, ty_Ordering) 52.86/30.47 new_esEs36(x0, x1, ty_Char) 52.86/30.47 new_compare110(x0, x1, x2, x3, True, x4, x5) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), ty_Char) 52.86/30.47 new_lt20(x0, x1, ty_Float) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), ty_Int, x2) 52.86/30.47 new_esEs25(Left(x0), Right(x1), x2, x3) 52.86/30.47 new_esEs25(Right(x0), Left(x1), x2, x3) 52.86/30.47 new_fsEs(x0) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, ty_Integer) 52.86/30.47 new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 52.86/30.47 new_primMulInt(Neg(x0), Neg(x1)) 52.86/30.47 new_esEs36(x0, x1, ty_Int) 52.86/30.47 new_esEs26(EQ, GT) 52.86/30.47 new_esEs26(GT, EQ) 52.86/30.47 new_esEs15(Float(x0, x1), Float(x2, x3)) 52.86/30.47 new_esEs36(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs36(x0, x1, app(ty_[], x2)) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), ty_Char, x2) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 52.86/30.47 new_esEs33(x0, x1, ty_Char) 52.86/30.47 new_esEs24(Nothing, Just(x0), x1) 52.86/30.47 new_lt25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs32(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs5(x0, x1, ty_Bool) 52.86/30.47 new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 52.86/30.47 new_esEs31(x0, x1, ty_Double) 52.86/30.47 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_ltEs21(x0, x1, ty_Integer) 52.86/30.47 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 52.86/30.47 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 52.86/30.47 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs39(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs38(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) 52.86/30.47 new_esEs11(x0, x1, ty_Bool) 52.86/30.47 new_compare29(Nothing, Just(x0), x1) 52.86/30.47 new_esEs33(x0, x1, ty_Int) 52.86/30.47 new_esEs36(x0, x1, ty_Float) 52.86/30.47 new_primMulInt(Pos(x0), Pos(x1)) 52.86/30.47 new_esEs9(x0, x1, app(ty_[], x2)) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, ty_Float) 52.86/30.47 new_primEqNat0(Zero, Zero) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, ty_Bool) 52.86/30.47 new_esEs32(x0, x1, ty_Int) 52.86/30.47 new_ltEs4(x0, x1) 52.86/30.47 new_lt20(x0, x1, ty_Int) 52.86/30.47 new_ltEs22(x0, x1, ty_Ordering) 52.86/30.47 new_not(False) 52.86/30.47 new_esEs18(:(x0, x1), [], x2) 52.86/30.47 new_ltEs19(x0, x1, app(ty_[], x2)) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), ty_Bool) 52.86/30.47 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs13(x0, x1, ty_Char) 52.86/30.47 new_compare17(x0, x1, False, x2, x3) 52.86/30.47 new_esEs12(LT) 52.86/30.47 new_esEs13(x0, x1, ty_Int) 52.86/30.47 new_esEs32(x0, x1, ty_Char) 52.86/30.47 new_esEs40(x0, x1, ty_Bool) 52.86/30.47 new_esEs25(Left(x0), Left(x1), ty_@0, x2) 52.86/30.47 new_esEs33(x0, x1, ty_Integer) 52.86/30.47 new_esEs40(x0, x1, ty_Float) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) 52.86/30.47 new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), ty_Float) 52.86/30.47 new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 52.86/30.47 new_esEs14(x0, x1, ty_@0) 52.86/30.47 new_lt22(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_gt3(x0, x1) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 52.86/30.47 new_lt22(x0, x1, app(ty_[], x2)) 52.86/30.47 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs33(x0, x1, ty_Bool) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, ty_Int) 52.86/30.47 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_compare30(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_ltEs9(x0, x1) 52.86/30.47 new_esEs32(x0, x1, ty_Float) 52.86/30.47 new_esEs41(LT) 52.86/30.47 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 52.86/30.47 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 52.86/30.47 new_esEs40(x0, x1, ty_Int) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), ty_Integer, x2) 52.86/30.47 new_esEs5(x0, x1, ty_Integer) 52.86/30.47 new_esEs4(x0, x1, ty_Double) 52.86/30.47 new_esEs13(x0, x1, ty_Float) 52.86/30.47 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 52.86/30.47 new_esEs11(x0, x1, ty_Integer) 52.86/30.47 new_esEs29(x0, x1, ty_Double) 52.86/30.47 new_esEs13(x0, x1, app(ty_[], x2)) 52.86/30.47 new_compare11(x0, x1, x2, x3, False, x4, x5, x6) 52.86/30.47 new_esEs40(x0, x1, ty_Char) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), ty_Int) 52.86/30.47 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_lt5(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_ltEs15(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 52.86/30.47 new_esEs6(x0, x1, ty_@0) 52.86/30.47 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs13(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_compare30(x0, x1, ty_Ordering) 52.86/30.47 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 52.86/30.47 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_primPlusNat0(Succ(x0), Zero) 52.86/30.47 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_lt23(x0, x1, ty_Bool) 52.86/30.47 new_esEs9(x0, x1, ty_Float) 52.86/30.47 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 52.86/30.47 new_compare30(x0, x1, ty_Int) 52.86/30.47 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_gt14(x0, x1, app(ty_[], x2)) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, ty_Char) 52.86/30.47 new_ltEs6(x0, x1, ty_Integer) 52.86/30.47 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_lt20(x0, x1, ty_@0) 52.86/30.47 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 52.86/30.47 new_compare110(x0, x1, x2, x3, False, x4, x5) 52.86/30.47 new_ltEs24(x0, x1, ty_Float) 52.86/30.47 new_sr(Integer(x0), Integer(x1)) 52.86/30.47 new_esEs32(x0, x1, app(ty_[], x2)) 52.86/30.47 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_lt23(x0, x1, ty_@0) 52.86/30.47 new_esEs8(x0, x1, ty_Int) 52.86/30.47 new_lt20(x0, x1, ty_Bool) 52.86/30.47 new_esEs24(Nothing, Nothing, x0) 52.86/30.47 new_esEs10(x0, x1, ty_Ordering) 52.86/30.47 new_esEs31(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 52.86/30.47 new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 52.86/30.47 new_esEs5(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 52.86/30.47 new_lt25(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs7(x0, x1, ty_Int) 52.86/30.47 new_esEs6(x0, x1, ty_Bool) 52.86/30.47 new_lt23(x0, x1, ty_Integer) 52.86/30.47 new_gt14(x0, x1, ty_Double) 52.86/30.47 new_gt12(x0, x1) 52.86/30.47 new_ltEs17(x0, x1) 52.86/30.47 new_gt14(x0, x1, ty_Char) 52.86/30.47 new_gt6(x0, x1) 52.86/30.47 new_lt25(x0, x1, ty_Int) 52.86/30.47 new_primCmpNat0(Zero, Succ(x0)) 52.86/30.47 new_esEs26(LT, GT) 52.86/30.47 new_esEs26(GT, LT) 52.86/30.47 new_gt14(x0, x1, ty_Ordering) 52.86/30.47 new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 52.86/30.47 new_ltEs10(x0, x1, x2) 52.86/30.47 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, ty_@0) 52.86/30.47 new_compare15(x0, x1, True, x2) 52.86/30.47 new_primMulNat0(Succ(x0), Zero) 52.86/30.47 new_ltEs15(Right(x0), Left(x1), x2, x3) 52.86/30.47 new_ltEs15(Left(x0), Right(x1), x2, x3) 52.86/30.47 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs30(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) 52.86/30.47 new_esEs6(x0, x1, ty_Integer) 52.86/30.47 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_ltEs23(x0, x1, ty_Float) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, ty_Integer) 52.86/30.47 new_lt25(x0, x1, app(ty_[], x2)) 52.86/30.47 new_ltEs21(x0, x1, app(ty_[], x2)) 52.86/30.47 new_ltEs13(False, True) 52.86/30.47 new_ltEs13(True, False) 52.86/30.47 new_lt20(x0, x1, ty_Integer) 52.86/30.47 new_ltEs24(x0, x1, ty_Integer) 52.86/30.47 new_gt14(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_lt22(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs37(x0, x1, app(ty_[], x2)) 52.86/30.47 new_compare18(EQ, LT) 52.86/30.47 new_compare18(LT, EQ) 52.86/30.47 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_ltEs20(x0, x1, ty_Int) 52.86/30.47 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, ty_Ordering) 52.86/30.47 new_lt22(x0, x1, ty_Ordering) 52.86/30.47 new_esEs18([], :(x0, x1), x2) 52.86/30.47 new_ltEs23(x0, x1, ty_@0) 52.86/30.47 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs33(x0, x1, ty_Float) 52.86/30.47 new_esEs7(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs9(x0, x1, ty_Integer) 52.86/30.47 new_lt6(x0, x1, ty_Float) 52.86/30.47 new_compare18(LT, LT) 52.86/30.47 new_ltEs22(x0, x1, ty_Double) 52.86/30.47 new_ltEs21(x0, x1, ty_Int) 52.86/30.47 new_lt20(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs28(:%(x0, x1), :%(x2, x3), x4) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 52.86/30.47 new_lt6(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs36(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs40(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), ty_Integer) 52.86/30.47 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs5(x0, x1, ty_Float) 52.86/30.47 new_compare25(x0, x1, False, x2, x3) 52.86/30.47 new_esEs39(x0, x1, ty_Double) 52.86/30.47 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs40(x0, x1, ty_Ordering) 52.86/30.47 new_esEs29(x0, x1, ty_Ordering) 52.86/30.47 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.47 new_esEs8(x0, x1, ty_@0) 52.86/30.47 new_pePe(False, x0) 52.86/30.47 new_esEs36(x0, x1, ty_Double) 52.86/30.47 new_lt23(x0, x1, ty_Int) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, ty_Bool) 52.86/30.47 new_lt17(x0, x1) 52.86/30.47 new_compare26(x0, x1, x2, x3, False, x4, x5) 52.86/30.47 new_esEs39(x0, x1, ty_Char) 52.86/30.47 new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) 52.86/30.47 new_primEqNat0(Succ(x0), Zero) 52.86/30.47 new_lt19(x0, x1, x2) 52.86/30.47 new_compare30(x0, x1, ty_@0) 52.86/30.47 new_lt23(x0, x1, ty_Float) 52.86/30.47 new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs14(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs41(GT) 52.86/30.47 new_esEs8(x0, x1, ty_Bool) 52.86/30.47 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_esEs23(True, True) 52.86/30.47 new_esEs13(x0, x1, ty_Double) 52.86/30.47 new_compare11(x0, x1, x2, x3, True, x4, x5, x6) 52.86/30.47 new_esEs14(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs39(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs8(x0, x1, app(ty_[], x2)) 52.86/30.47 new_esEs25(Right(x0), Right(x1), x2, ty_Float) 52.86/30.47 new_lt25(x0, x1, ty_Bool) 52.86/30.47 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.47 new_esEs30(x0, x1, ty_Float) 52.86/30.47 new_gt5(x0, x1, x2) 52.86/30.47 new_primPlusNat0(Succ(x0), Succ(x1)) 52.86/30.47 new_ltEs15(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 52.86/30.47 new_ltEs14(Just(x0), Nothing, x1) 52.86/30.47 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_lt25(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.47 new_compare18(EQ, GT) 52.86/30.47 new_compare18(GT, EQ) 52.86/30.47 new_ltEs16(GT, GT) 52.86/30.47 new_gt1(x0, x1, x2, x3) 52.86/30.47 new_lt6(x0, x1, ty_Integer) 52.86/30.47 new_ltEs22(x0, x1, ty_Char) 52.86/30.47 new_ltEs24(x0, x1, ty_Bool) 52.86/30.47 new_compare0([], :(x0, x1), x2) 52.86/30.47 new_lt5(x0, x1, app(ty_[], x2)) 52.86/30.47 new_esEs40(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_esEs5(x0, x1, app(ty_Maybe, x2)) 52.86/30.47 new_esEs33(x0, x1, ty_@0) 52.86/30.47 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 52.86/30.47 new_compare28(x0, x1, True, x2, x3) 52.86/30.48 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 52.86/30.48 new_ltEs23(x0, x1, ty_Int) 52.86/30.48 new_esEs26(GT, GT) 52.86/30.48 new_ltEs20(x0, x1, ty_@0) 52.86/30.48 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.48 new_esEs14(x0, x1, ty_Integer) 52.86/30.48 new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.86/30.48 new_esEs30(x0, x1, ty_Ordering) 52.86/30.48 new_esEs36(x0, x1, ty_Ordering) 52.86/30.48 new_esEs25(Right(x0), Right(x1), x2, ty_Int) 52.86/30.48 new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) 52.86/30.48 new_compare29(Nothing, Nothing, x0) 52.86/30.48 new_esEs9(x0, x1, ty_@0) 52.86/30.48 new_esEs24(Just(x0), Just(x1), ty_Int) 52.86/30.48 new_esEs31(x0, x1, ty_Int) 52.86/30.48 new_esEs4(x0, x1, ty_Float) 52.86/30.48 new_esEs4(x0, x1, ty_Integer) 52.86/30.48 new_esEs14(x0, x1, ty_Float) 52.86/30.48 new_esEs30(x0, x1, app(ty_[], x2)) 52.86/30.48 new_primCmpInt(Neg(Zero), Neg(Zero)) 52.86/30.48 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.48 new_lt6(x0, x1, ty_Ordering) 52.86/30.48 new_compare0([], [], x0) 52.86/30.48 new_ltEs22(x0, x1, ty_Float) 52.86/30.48 new_esEs37(x0, x1, ty_Char) 52.86/30.48 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.48 new_esEs7(x0, x1, ty_@0) 52.86/30.48 new_esEs30(x0, x1, ty_Char) 52.86/30.48 new_esEs29(x0, x1, ty_Char) 52.86/30.48 new_compare10(x0, x1, False, x2, x3) 52.86/30.48 new_primCmpInt(Pos(Zero), Neg(Zero)) 52.86/30.48 new_primCmpInt(Neg(Zero), Pos(Zero)) 52.86/30.48 new_ltEs15(Right(x0), Right(x1), x2, ty_Double) 52.86/30.48 new_esEs14(x0, x1, ty_Bool) 52.86/30.48 new_esEs38(x0, x1, ty_@0) 52.86/30.48 new_esEs29(x0, x1, app(ty_[], x2)) 52.86/30.48 new_ltEs19(x0, x1, ty_Double) 52.86/30.48 new_esEs30(x0, x1, ty_Integer) 52.86/30.48 new_esEs5(x0, x1, app(ty_[], x2)) 52.86/30.48 new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 52.86/30.48 new_ltEs6(x0, x1, ty_@0) 52.86/30.48 new_ltEs23(x0, x1, ty_Bool) 52.86/30.48 new_esEs37(x0, x1, app(ty_Ratio, x2)) 52.86/30.48 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.48 new_compare7(False, False) 52.86/30.48 new_esEs10(x0, x1, ty_Double) 52.86/30.48 new_esEs31(x0, x1, app(ty_[], x2)) 52.86/30.48 new_lt22(x0, x1, ty_Char) 52.86/30.48 new_ltEs23(x0, x1, ty_Integer) 52.86/30.48 new_gt10(x0, x1, x2) 52.86/30.48 new_esEs39(x0, x1, ty_Ordering) 52.86/30.48 new_esEs6(x0, x1, ty_Float) 52.86/30.48 new_esEs4(x0, x1, ty_Char) 52.86/30.48 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 52.86/30.48 new_esEs37(x0, x1, ty_Float) 52.86/30.48 new_esEs6(x0, x1, ty_Int) 52.86/30.48 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.48 new_ltEs14(Just(x0), Just(x1), ty_@0) 52.86/30.48 new_esEs25(Left(x0), Left(x1), ty_Char, x2) 52.86/30.48 new_esEs40(x0, x1, ty_Double) 52.86/30.48 new_esEs4(x0, x1, ty_Bool) 52.86/30.48 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.48 new_gt14(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.48 new_esEs14(x0, x1, ty_Char) 52.86/30.48 new_esEs38(x0, x1, ty_Double) 52.86/30.48 new_esEs8(x0, x1, ty_Integer) 52.86/30.48 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.48 new_lt5(x0, x1, ty_Int) 52.86/30.48 new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 52.86/30.48 new_primMulNat0(Succ(x0), Succ(x1)) 52.86/30.48 new_esEs26(LT, LT) 52.86/30.48 new_esEs30(x0, x1, ty_@0) 52.86/30.48 new_esEs13(x0, x1, ty_@0) 52.86/30.48 new_lt20(x0, x1, app(ty_Maybe, x2)) 52.86/30.48 new_esEs18(:(x0, x1), :(x2, x3), x4) 52.86/30.48 new_esEs9(x0, x1, ty_Double) 52.86/30.48 new_esEs24(Just(x0), Just(x1), ty_Bool) 52.86/30.48 new_ltEs16(EQ, EQ) 52.86/30.48 new_esEs18([], [], x0) 52.86/30.48 new_compare27(x0, x1, False, x2) 52.86/30.48 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 52.86/30.48 new_lt6(x0, x1, ty_Char) 52.86/30.48 new_esEs5(x0, x1, ty_Ordering) 52.86/30.48 new_primMulNat0(Zero, Zero) 52.86/30.48 new_esEs31(x0, x1, ty_Bool) 52.86/30.48 new_compare5(@0, @0) 52.86/30.48 new_lt25(x0, x1, app(ty_Maybe, x2)) 52.86/30.48 new_esEs31(x0, x1, ty_Integer) 52.86/30.48 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.48 new_esEs9(x0, x1, app(ty_Ratio, x2)) 52.86/30.48 new_esEs24(Just(x0), Just(x1), ty_Integer) 52.86/30.48 new_esEs39(x0, x1, ty_Float) 52.86/30.48 new_gt8(x0, x1, x2, x3, x4) 52.86/30.48 new_esEs10(x0, x1, ty_Float) 52.86/30.48 new_esEs5(x0, x1, ty_Double) 52.86/30.48 new_esEs9(x0, x1, ty_Int) 52.86/30.48 new_esEs11(x0, x1, ty_Double) 52.86/30.48 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.48 new_esEs37(x0, x1, app(ty_Maybe, x2)) 52.86/30.48 new_esEs33(x0, x1, ty_Double) 52.86/30.48 new_lt6(x0, x1, app(ty_Maybe, x2)) 52.86/30.48 new_primCmpNat0(Succ(x0), Succ(x1)) 52.86/30.48 new_esEs4(x0, x1, ty_@0) 52.86/30.48 new_esEs40(x0, x1, app(ty_[], x2)) 52.86/30.48 new_ltEs22(x0, x1, ty_Integer) 52.86/30.48 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.48 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.48 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 52.86/30.48 new_esEs31(x0, x1, ty_@0) 52.86/30.48 new_esEs8(x0, x1, app(ty_Ratio, x2)) 52.86/30.48 new_compare7(False, True) 52.86/30.48 new_compare7(True, False) 52.86/30.48 new_lt23(x0, x1, app(ty_Ratio, x2)) 52.86/30.48 new_esEs24(Just(x0), Just(x1), ty_@0) 52.86/30.48 new_ltEs24(x0, x1, ty_Int) 52.86/30.48 new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 52.86/30.48 new_esEs25(Left(x0), Left(x1), ty_Float, x2) 52.86/30.48 new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 52.86/30.48 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.48 new_gt9(x0, x1) 52.86/30.48 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.48 new_compare8(x0, x1) 52.86/30.48 new_compare25(x0, x1, True, x2, x3) 52.86/30.48 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.48 new_ltEs15(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 52.86/30.48 new_ltEs22(x0, x1, ty_Bool) 52.86/30.48 new_lt23(x0, x1, app(ty_[], x2)) 52.86/30.48 new_lt13(x0, x1, x2, x3, x4) 52.86/30.48 new_esEs7(x0, x1, ty_Float) 52.86/30.48 new_lt6(x0, x1, ty_Bool) 52.86/30.48 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.48 new_ltEs14(Just(x0), Just(x1), ty_Ordering) 52.86/30.48 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.48 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.48 new_lt21(x0, x1, app(ty_[], x2)) 52.86/30.48 new_lt6(x0, x1, ty_Double) 52.86/30.48 new_esEs36(x0, x1, ty_@0) 52.86/30.48 new_lt6(x0, x1, app(ty_[], x2)) 52.86/30.48 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 52.86/30.48 new_esEs9(x0, x1, ty_Char) 52.86/30.48 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.48 new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) 52.86/30.48 new_esEs14(x0, x1, ty_Ordering) 52.86/30.48 new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 52.86/30.48 new_lt20(x0, x1, app(ty_[], x2)) 52.86/30.48 new_ltEs20(x0, x1, app(ty_[], x2)) 52.86/30.48 new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.86/30.48 new_lt21(x0, x1, ty_Double) 52.86/30.48 new_esEs39(x0, x1, ty_Bool) 52.86/30.48 new_esEs39(x0, x1, app(ty_[], x2)) 52.86/30.48 new_esEs32(x0, x1, ty_Ordering) 52.86/30.48 new_gt7(x0, x1) 52.86/30.48 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 52.86/30.48 new_esEs33(x0, x1, app(ty_Maybe, x2)) 52.86/30.48 new_esEs13(x0, x1, ty_Ordering) 52.86/30.48 new_compare30(x0, x1, ty_Float) 52.86/30.48 new_ltEs8(x0, x1) 52.86/30.48 new_ltEs16(LT, GT) 52.86/30.48 new_ltEs16(GT, LT) 52.86/30.48 new_lt14(x0, x1) 52.86/30.48 new_lt12(x0, x1, x2, x3) 52.86/30.48 new_lt6(x0, x1, ty_Int) 52.86/30.48 new_primCmpInt(Pos(Zero), Pos(Zero)) 52.86/30.48 new_asAs(True, x0) 52.86/30.48 new_ltEs6(x0, x1, ty_Char) 52.86/30.48 new_esEs9(x0, x1, ty_Bool) 52.86/30.48 new_esEs14(x0, x1, app(ty_[], x2)) 52.86/30.48 new_compare30(x0, x1, ty_Integer) 52.86/30.48 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.48 new_ltEs24(x0, x1, ty_@0) 52.86/30.48 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.48 new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.48 new_esEs10(x0, x1, ty_Integer) 52.86/30.48 new_ltEs15(Left(x0), Left(x1), ty_Ordering, x2) 52.86/30.48 new_gt14(x0, x1, app(ty_Ratio, x2)) 52.86/30.48 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.48 new_esEs6(x0, x1, ty_Double) 52.86/30.48 new_lt25(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.48 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.48 new_esEs25(Right(x0), Right(x1), x2, ty_Double) 52.86/30.48 new_esEs17(x0, x1) 52.86/30.48 new_lt23(x0, x1, ty_Ordering) 52.86/30.48 new_esEs37(x0, x1, ty_Ordering) 52.86/30.48 new_lt5(x0, x1, ty_Integer) 52.86/30.48 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.48 new_compare18(EQ, EQ) 52.86/30.48 new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 52.86/30.48 new_lt5(x0, x1, ty_Bool) 52.86/30.48 new_gt14(x0, x1, ty_@0) 52.86/30.48 new_esEs38(x0, x1, ty_Integer) 52.86/30.48 new_compare30(x0, x1, ty_Bool) 52.86/30.48 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.48 new_esEs34(x0, x1, ty_Int) 52.86/30.48 new_esEs38(x0, x1, app(ty_[], x2)) 52.86/30.48 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.48 new_esEs7(x0, x1, ty_Integer) 52.86/30.48 new_esEs12(EQ) 52.86/30.48 new_esEs16(Char(x0), Char(x1)) 52.86/30.48 new_ltEs22(x0, x1, ty_@0) 52.86/30.48 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.48 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 52.86/30.48 new_gt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.48 new_esEs37(x0, x1, ty_Double) 52.86/30.48 new_lt4(x0, x1) 52.86/30.48 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.48 new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) 52.86/30.48 new_esEs41(EQ) 52.86/30.48 new_ltEs22(x0, x1, app(ty_[], x2)) 52.86/30.48 new_lt21(x0, x1, ty_Ordering) 52.86/30.48 new_esEs33(x0, x1, app(ty_[], x2)) 52.86/30.48 new_gt2(x0, x1) 52.86/30.48 new_lt9(x0, x1) 52.86/30.48 new_esEs38(x0, x1, ty_Bool) 52.86/30.48 new_ltEs6(x0, x1, ty_Float) 52.86/30.48 new_esEs33(x0, x1, app(ty_Ratio, x2)) 52.86/30.48 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.48 new_ltEs23(x0, x1, ty_Double) 52.86/30.48 new_esEs33(x0, x1, ty_Ordering) 52.86/30.48 new_esEs38(x0, x1, ty_Float) 52.86/30.48 new_lt10(x0, x1, x2) 52.86/30.48 new_ltEs19(x0, x1, ty_Int) 52.86/30.48 new_ltEs6(x0, x1, ty_Bool) 52.86/30.48 new_esEs10(x0, x1, app(ty_Maybe, x2)) 52.86/30.48 new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) 52.86/30.48 new_primCompAux00(x0, LT) 52.86/30.48 new_esEs38(x0, x1, ty_Int) 52.86/30.48 new_esEs30(x0, x1, app(ty_Maybe, x2)) 52.86/30.48 new_primMulInt(Pos(x0), Neg(x1)) 52.86/30.48 new_primMulInt(Neg(x0), Pos(x1)) 52.86/30.48 new_lt21(x0, x1, app(ty_Maybe, x2)) 52.86/30.48 new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.48 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 52.86/30.48 new_compare28(x0, x1, False, x2, x3) 52.86/30.48 new_esEs19(@0, @0) 52.86/30.48 new_ltEs19(x0, x1, ty_Char) 52.86/30.48 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.48 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.48 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 52.86/30.48 new_lt5(x0, x1, ty_Char) 52.86/30.48 new_ltEs6(x0, x1, ty_Int) 52.86/30.48 new_esEs10(x0, x1, ty_Bool) 52.86/30.48 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 52.86/30.48 new_esEs27(Double(x0, x1), Double(x2, x3)) 52.86/30.48 new_ltEs19(x0, x1, ty_Bool) 52.86/30.48 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 52.86/30.48 new_esEs25(Left(x0), Left(x1), ty_Double, x2) 52.86/30.48 new_esEs8(x0, x1, app(ty_Maybe, x2)) 52.86/30.48 new_esEs11(x0, x1, ty_Ordering) 52.86/30.48 new_esEs7(x0, x1, ty_Bool) 52.86/30.48 new_esEs10(x0, x1, ty_Char) 52.86/30.48 new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 52.86/30.48 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 52.86/30.48 new_primEqNat0(Zero, Succ(x0)) 52.86/30.48 new_primCmpNat0(Zero, Zero) 52.86/30.48 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 52.86/30.48 new_esEs14(x0, x1, ty_Double) 52.86/30.48 new_lt22(x0, x1, ty_Double) 52.86/30.48 new_esEs38(x0, x1, ty_Char) 52.86/30.48 52.86/30.48 We have to consider all minimal (P,Q,R)-chains. 52.86/30.48 ---------------------------------------- 52.86/30.48 52.86/30.48 (50) QDPSizeChangeProof (EQUIVALENT) 52.86/30.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 52.86/30.48 52.86/30.48 From the DPs we obtained the following set of size-change graphs: 52.86/30.48 *new_splitLT(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy35, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, yvy35, h, ba) 52.86/30.48 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 7, 4 >= 8 52.86/30.48 52.86/30.48 52.86/30.48 *new_splitLT2(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, h, ba) -> new_splitLT1(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt14(yvy35, yvy30, h), h, ba) 52.86/30.48 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 52.86/30.48 52.86/30.48 52.86/30.48 *new_splitLT2(yvy30, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy35, True, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, yvy35, h, ba) 52.86/30.48 The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 6 >= 6, 8 >= 7, 9 >= 8 52.86/30.48 52.86/30.48 52.86/30.48 *new_splitLT3(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, bb, bc) -> new_splitLT2(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, bb), bb, bc) 52.86/30.48 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 8, 8 >= 9 52.86/30.48 52.86/30.48 52.86/30.48 *new_splitLT1(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bd, be) -> new_splitLT(yvy64, yvy65, bd, be) 52.86/30.48 The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 52.86/30.48 52.86/30.48 52.86/30.48 ---------------------------------------- 52.86/30.48 52.86/30.48 (51) 52.86/30.48 YES 52.86/30.48 52.86/30.48 ---------------------------------------- 52.86/30.48 52.86/30.48 (52) 52.86/30.48 Obligation: 52.86/30.48 Q DP problem: 52.86/30.48 The TRS P consists of the following rules: 52.86/30.48 52.86/30.48 new_primEqNat(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat(yvy40000, yvy30000) 52.86/30.48 52.86/30.48 R is empty. 52.86/30.48 Q is empty. 52.86/30.48 We have to consider all minimal (P,Q,R)-chains. 52.86/30.48 ---------------------------------------- 52.86/30.48 52.86/30.48 (53) QDPSizeChangeProof (EQUIVALENT) 52.86/30.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 52.86/30.48 52.86/30.48 From the DPs we obtained the following set of size-change graphs: 52.86/30.48 *new_primEqNat(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat(yvy40000, yvy30000) 52.86/30.48 The graph contains the following edges 1 > 1, 2 > 2 52.86/30.48 52.86/30.48 52.86/30.48 ---------------------------------------- 52.86/30.48 52.86/30.48 (54) 52.86/30.48 YES 52.86/30.48 52.86/30.48 ---------------------------------------- 52.86/30.48 52.86/30.48 (55) 52.86/30.48 Obligation: 52.86/30.48 Q DP problem: 52.86/30.48 The TRS P consists of the following rules: 52.86/30.48 52.86/30.48 new_primMinusNat(Succ(yvy90200), Succ(yvy21000)) -> new_primMinusNat(yvy90200, yvy21000) 52.86/30.48 52.86/30.48 R is empty. 52.86/30.48 Q is empty. 52.86/30.48 We have to consider all minimal (P,Q,R)-chains. 52.86/30.48 ---------------------------------------- 52.86/30.48 52.86/30.48 (56) QDPSizeChangeProof (EQUIVALENT) 52.86/30.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 52.86/30.48 52.86/30.48 From the DPs we obtained the following set of size-change graphs: 52.86/30.48 *new_primMinusNat(Succ(yvy90200), Succ(yvy21000)) -> new_primMinusNat(yvy90200, yvy21000) 52.86/30.48 The graph contains the following edges 1 > 1, 2 > 2 52.86/30.48 52.86/30.48 52.86/30.48 ---------------------------------------- 52.86/30.48 52.86/30.48 (57) 52.86/30.48 YES 52.86/30.48 52.86/30.48 ---------------------------------------- 52.86/30.48 52.86/30.48 (58) 52.86/30.48 Obligation: 52.86/30.48 Q DP problem: 52.86/30.48 The TRS P consists of the following rules: 52.86/30.48 52.86/30.48 new_primPlusNat(Succ(yvy90200), Succ(yvy21000)) -> new_primPlusNat(yvy90200, yvy21000) 52.86/30.48 52.86/30.48 R is empty. 52.86/30.48 Q is empty. 52.86/30.48 We have to consider all minimal (P,Q,R)-chains. 52.86/30.48 ---------------------------------------- 52.86/30.48 52.86/30.48 (59) QDPSizeChangeProof (EQUIVALENT) 52.86/30.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 52.86/30.48 52.86/30.48 From the DPs we obtained the following set of size-change graphs: 52.86/30.48 *new_primPlusNat(Succ(yvy90200), Succ(yvy21000)) -> new_primPlusNat(yvy90200, yvy21000) 52.86/30.48 The graph contains the following edges 1 > 1, 2 > 2 52.86/30.48 52.86/30.48 52.86/30.48 ---------------------------------------- 52.86/30.48 52.86/30.48 (60) 52.86/30.48 YES 52.86/30.51 EOF