37.21/17.76 YES 39.73/18.41 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 39.73/18.41 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 39.73/18.41 39.73/18.41 39.73/18.41 H-Termination with start terms of the given HASKELL could be proven: 39.73/18.41 39.73/18.41 (0) HASKELL 39.73/18.41 (1) LR [EQUIVALENT, 0 ms] 39.73/18.41 (2) HASKELL 39.73/18.41 (3) CR [EQUIVALENT, 0 ms] 39.73/18.41 (4) HASKELL 39.73/18.41 (5) IFR [EQUIVALENT, 0 ms] 39.73/18.41 (6) HASKELL 39.73/18.41 (7) BR [EQUIVALENT, 5 ms] 39.73/18.41 (8) HASKELL 39.73/18.41 (9) COR [EQUIVALENT, 0 ms] 39.73/18.41 (10) HASKELL 39.73/18.41 (11) LetRed [EQUIVALENT, 0 ms] 39.73/18.41 (12) HASKELL 39.73/18.41 (13) NumRed [SOUND, 0 ms] 39.73/18.41 (14) HASKELL 39.73/18.41 (15) Narrow [SOUND, 0 ms] 39.73/18.41 (16) AND 39.73/18.41 (17) QDP 39.73/18.41 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 39.73/18.41 (19) YES 39.73/18.41 (20) QDP 39.73/18.41 (21) DependencyGraphProof [EQUIVALENT, 0 ms] 39.73/18.41 (22) AND 39.73/18.41 (23) QDP 39.73/18.41 (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] 39.73/18.41 (25) YES 39.73/18.41 (26) QDP 39.73/18.41 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 39.73/18.41 (28) YES 39.73/18.41 (29) QDP 39.73/18.41 (30) QDPOrderProof [EQUIVALENT, 97 ms] 39.73/18.41 (31) QDP 39.73/18.41 (32) DependencyGraphProof [EQUIVALENT, 0 ms] 39.73/18.41 (33) TRUE 39.73/18.41 (34) QDP 39.73/18.41 (35) QDPSizeChangeProof [EQUIVALENT, 0 ms] 39.73/18.41 (36) YES 39.73/18.41 (37) QDP 39.73/18.41 (38) DependencyGraphProof [EQUIVALENT, 0 ms] 39.73/18.41 (39) AND 39.73/18.41 (40) QDP 39.73/18.41 (41) QDPSizeChangeProof [EQUIVALENT, 0 ms] 39.73/18.41 (42) YES 39.73/18.41 (43) QDP 39.73/18.41 (44) QDPSizeChangeProof [EQUIVALENT, 0 ms] 39.73/18.41 (45) YES 39.73/18.41 (46) QDP 39.73/18.41 (47) DependencyGraphProof [EQUIVALENT, 0 ms] 39.73/18.41 (48) AND 39.73/18.41 (49) QDP 39.73/18.41 (50) QDPSizeChangeProof [EQUIVALENT, 0 ms] 39.73/18.41 (51) YES 39.73/18.41 (52) QDP 39.73/18.41 (53) QDPSizeChangeProof [EQUIVALENT, 0 ms] 39.73/18.41 (54) YES 39.73/18.41 (55) QDP 39.73/18.41 (56) QDPSizeChangeProof [EQUIVALENT, 0 ms] 39.73/18.41 (57) YES 39.73/18.41 (58) QDP 39.73/18.41 (59) QDPSizeChangeProof [EQUIVALENT, 0 ms] 39.73/18.41 (60) YES 39.73/18.41 (61) QDP 39.73/18.41 (62) QDPSizeChangeProof [EQUIVALENT, 0 ms] 39.73/18.41 (63) YES 39.73/18.41 (64) QDP 39.73/18.41 (65) QDPSizeChangeProof [EQUIVALENT, 0 ms] 39.73/18.41 (66) YES 39.73/18.41 (67) QDP 39.73/18.41 (68) QDPSizeChangeProof [EQUIVALENT, 0 ms] 39.73/18.41 (69) YES 39.73/18.41 (70) QDP 39.73/18.41 (71) QDPSizeChangeProof [EQUIVALENT, 0 ms] 39.73/18.41 (72) YES 39.73/18.41 39.73/18.41 39.73/18.41 ---------------------------------------- 39.73/18.41 39.73/18.41 (0) 39.73/18.41 Obligation: 39.73/18.41 mainModule Main 39.73/18.41 module FiniteMap where { 39.73/18.41 import qualified Main; 39.73/18.41 import qualified Maybe; 39.73/18.41 import qualified Prelude; 39.73/18.41 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 39.73/18.41 39.73/18.41 instance (Eq a, Eq b) => Eq FiniteMap a b where { 39.73/18.41 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 39.73/18.41 } 39.73/18.41 addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; 39.73/18.41 addToFM fm key elt = addToFM_C (\old new ->new) fm key elt; 39.73/18.41 39.73/18.41 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 39.73/18.41 addToFM_C combiner EmptyFM key elt = unitFM key elt; 39.73/18.41 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 39.73/18.41 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 39.73/18.41 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 39.73/18.41 39.73/18.41 emptyFM :: FiniteMap b a; 39.73/18.41 emptyFM = EmptyFM; 39.73/18.41 39.73/18.41 findMax :: FiniteMap b a -> (b,a); 39.73/18.41 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 39.73/18.41 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 39.73/18.41 39.73/18.41 findMin :: FiniteMap a b -> (a,b); 39.73/18.41 findMin (Branch key elt _ EmptyFM _) = (key,elt); 39.73/18.41 findMin (Branch key elt _ fm_l _) = findMin fm_l; 39.73/18.41 39.73/18.41 fmToList :: FiniteMap a b -> [(a,b)]; 39.73/18.41 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 39.73/18.41 39.73/18.41 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 39.73/18.41 foldFM k z EmptyFM = z; 39.73/18.41 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 39.73/18.41 39.73/18.41 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 39.73/18.41 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 39.73/18.41 | size_r > sIZE_RATIO * size_l = case fm_R of { 39.73/18.41 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 39.73/18.41 | otherwise -> double_L fm_L fm_R; 39.73/18.41 } 39.73/18.41 | size_l > sIZE_RATIO * size_r = case fm_L of { 39.73/18.41 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 39.73/18.41 | otherwise -> double_R fm_L fm_R; 39.73/18.41 } 39.73/18.41 | otherwise = mkBranch 2 key elt fm_L fm_R where { 39.73/18.41 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); 39.73/18.41 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); 39.73/18.41 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; 39.73/18.41 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); 39.73/18.41 size_l = sizeFM fm_L; 39.73/18.41 size_r = sizeFM fm_R; 39.73/18.41 }; 39.73/18.41 39.73/18.41 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 39.73/18.41 mkBranch which key elt fm_l fm_r = let { 39.73/18.41 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 39.73/18.41 } in result where { 39.73/18.41 balance_ok = True; 39.73/18.41 left_ok = case fm_l of { 39.73/18.41 EmptyFM-> True; 39.73/18.41 Branch left_key _ _ _ _-> let { 39.73/18.41 biggest_left_key = fst (findMax fm_l); 39.73/18.41 } in biggest_left_key < key; 39.73/18.41 } ; 39.73/18.41 left_size = sizeFM fm_l; 39.73/18.41 right_ok = case fm_r of { 39.73/18.41 EmptyFM-> True; 39.73/18.41 Branch right_key _ _ _ _-> let { 39.73/18.41 smallest_right_key = fst (findMin fm_r); 39.73/18.41 } in key < smallest_right_key; 39.73/18.41 } ; 39.73/18.41 right_size = sizeFM fm_r; 39.73/18.41 unbox :: Int -> Int; 39.73/18.41 unbox x = x; 39.73/18.41 }; 39.73/18.41 39.73/18.41 mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 39.73/18.41 mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 39.73/18.41 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 39.73/18.41 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 39.73/18.41 | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) 39.73/18.41 | otherwise = mkBranch 13 key elt fm_l fm_r where { 39.73/18.41 size_l = sizeFM fm_l; 39.73/18.41 size_r = sizeFM fm_r; 39.73/18.41 }; 39.73/18.41 39.73/18.41 plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 39.73/18.41 plusFM EmptyFM fm2 = fm2; 39.73/18.41 plusFM fm1 EmptyFM = fm1; 39.73/18.41 plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 39.73/18.41 gts = splitGT fm1 split_key; 39.73/18.41 lts = splitLT fm1 split_key; 39.73/18.41 }; 39.73/18.41 39.73/18.41 sIZE_RATIO :: Int; 39.73/18.41 sIZE_RATIO = 5; 39.73/18.41 39.73/18.41 sizeFM :: FiniteMap a b -> Int; 39.73/18.41 sizeFM EmptyFM = 0; 39.73/18.41 sizeFM (Branch _ _ size _ _) = size; 39.73/18.41 39.73/18.41 splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 39.73/18.41 splitGT EmptyFM split_key = emptyFM; 39.73/18.41 splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key 39.73/18.41 | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r 39.73/18.41 | otherwise = fm_r; 39.73/18.41 39.73/18.41 splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 39.73/18.41 splitLT EmptyFM split_key = emptyFM; 39.73/18.41 splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key 39.73/18.41 | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) 39.73/18.41 | otherwise = fm_l; 39.73/18.41 39.73/18.41 unitFM :: b -> a -> FiniteMap b a; 39.73/18.41 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 39.73/18.41 39.73/18.41 } 39.73/18.41 module Maybe where { 39.73/18.41 import qualified FiniteMap; 39.73/18.41 import qualified Main; 39.73/18.41 import qualified Prelude; 39.73/18.41 } 39.73/18.41 module Main where { 39.73/18.41 import qualified FiniteMap; 39.73/18.41 import qualified Maybe; 39.73/18.41 import qualified Prelude; 39.73/18.41 } 39.73/18.41 39.73/18.41 ---------------------------------------- 39.73/18.41 39.73/18.41 (1) LR (EQUIVALENT) 39.73/18.41 Lambda Reductions: 39.73/18.41 The following Lambda expression 39.73/18.41 "\oldnew->new" 39.73/18.41 is transformed to 39.73/18.41 "addToFM0 old new = new; 39.73/18.41 " 39.73/18.41 The following Lambda expression 39.73/18.41 "\keyeltrest->(key,elt) : rest" 39.73/18.41 is transformed to 39.73/18.41 "fmToList0 key elt rest = (key,elt) : rest; 39.73/18.41 " 39.73/18.41 39.73/18.41 ---------------------------------------- 39.73/18.41 39.73/18.41 (2) 39.73/18.41 Obligation: 39.73/18.41 mainModule Main 39.73/18.41 module FiniteMap where { 39.73/18.41 import qualified Main; 39.73/18.41 import qualified Maybe; 39.73/18.41 import qualified Prelude; 39.73/18.41 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 39.73/18.41 39.73/18.41 instance (Eq a, Eq b) => Eq FiniteMap a b where { 39.73/18.41 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 39.83/18.47 } 39.83/18.47 addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; 39.83/18.47 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 39.83/18.47 39.83/18.47 addToFM0 old new = new; 39.83/18.47 39.83/18.47 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 39.83/18.47 addToFM_C combiner EmptyFM key elt = unitFM key elt; 39.83/18.47 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 39.83/18.47 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 39.83/18.47 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 39.83/18.47 39.83/18.47 emptyFM :: FiniteMap b a; 39.83/18.47 emptyFM = EmptyFM; 39.83/18.47 39.83/18.47 findMax :: FiniteMap b a -> (b,a); 39.83/18.47 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 39.83/18.47 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 39.83/18.47 39.83/18.47 findMin :: FiniteMap b a -> (b,a); 39.83/18.47 findMin (Branch key elt _ EmptyFM _) = (key,elt); 39.83/18.47 findMin (Branch key elt _ fm_l _) = findMin fm_l; 39.83/18.47 39.83/18.47 fmToList :: FiniteMap b a -> [(b,a)]; 39.83/18.47 fmToList fm = foldFM fmToList0 [] fm; 39.83/18.47 39.83/18.47 fmToList0 key elt rest = (key,elt) : rest; 39.83/18.47 39.83/18.47 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 39.83/18.47 foldFM k z EmptyFM = z; 39.83/18.47 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 39.83/18.47 39.83/18.47 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 39.83/18.47 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 39.83/18.47 | size_r > sIZE_RATIO * size_l = case fm_R of { 39.83/18.47 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 39.83/18.47 | otherwise -> double_L fm_L fm_R; 39.83/18.47 } 39.83/18.47 | size_l > sIZE_RATIO * size_r = case fm_L of { 39.83/18.47 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 39.83/18.47 | otherwise -> double_R fm_L fm_R; 39.83/18.47 } 39.83/18.47 | otherwise = mkBranch 2 key elt fm_L fm_R where { 39.83/18.47 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); 39.83/18.47 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); 39.83/18.47 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; 39.83/18.47 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); 39.83/18.47 size_l = sizeFM fm_L; 39.83/18.47 size_r = sizeFM fm_R; 39.83/18.47 }; 39.83/18.47 39.83/18.47 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 39.83/18.47 mkBranch which key elt fm_l fm_r = let { 39.83/18.47 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 39.83/18.47 } in result where { 39.83/18.47 balance_ok = True; 39.83/18.47 left_ok = case fm_l of { 39.83/18.47 EmptyFM-> True; 39.83/18.47 Branch left_key _ _ _ _-> let { 39.83/18.47 biggest_left_key = fst (findMax fm_l); 39.83/18.47 } in biggest_left_key < key; 39.83/18.47 } ; 39.83/18.47 left_size = sizeFM fm_l; 39.83/18.47 right_ok = case fm_r of { 39.83/18.47 EmptyFM-> True; 39.83/18.47 Branch right_key _ _ _ _-> let { 39.83/18.47 smallest_right_key = fst (findMin fm_r); 39.83/18.47 } in key < smallest_right_key; 39.83/18.47 } ; 39.83/18.47 right_size = sizeFM fm_r; 39.83/18.47 unbox :: Int -> Int; 39.83/18.47 unbox x = x; 39.83/18.47 }; 39.83/18.47 39.83/18.47 mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 39.83/18.47 mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 39.83/18.47 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 39.83/18.47 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 39.83/18.47 | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) 39.83/18.47 | otherwise = mkBranch 13 key elt fm_l fm_r where { 39.83/18.47 size_l = sizeFM fm_l; 39.83/18.47 size_r = sizeFM fm_r; 39.83/18.47 }; 39.83/18.47 39.83/18.47 plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 39.83/18.47 plusFM EmptyFM fm2 = fm2; 39.83/18.47 plusFM fm1 EmptyFM = fm1; 39.83/18.47 plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 39.83/18.47 gts = splitGT fm1 split_key; 39.83/18.47 lts = splitLT fm1 split_key; 39.83/18.47 }; 39.83/18.47 39.83/18.47 sIZE_RATIO :: Int; 39.83/18.47 sIZE_RATIO = 5; 39.83/18.47 39.83/18.47 sizeFM :: FiniteMap b a -> Int; 39.83/18.47 sizeFM EmptyFM = 0; 39.83/18.47 sizeFM (Branch _ _ size _ _) = size; 39.83/18.47 39.83/18.47 splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 39.83/18.47 splitGT EmptyFM split_key = emptyFM; 39.83/18.47 splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key 39.83/18.47 | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r 39.83/18.47 | otherwise = fm_r; 39.83/18.47 39.83/18.47 splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 39.83/18.47 splitLT EmptyFM split_key = emptyFM; 39.83/18.47 splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key 39.83/18.47 | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) 39.83/18.47 | otherwise = fm_l; 39.83/18.47 39.83/18.47 unitFM :: b -> a -> FiniteMap b a; 39.83/18.47 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 39.83/18.47 39.83/18.47 } 39.83/18.47 module Maybe where { 39.83/18.47 import qualified FiniteMap; 39.83/18.47 import qualified Main; 39.83/18.47 import qualified Prelude; 39.83/18.47 } 39.83/18.47 module Main where { 39.83/18.47 import qualified FiniteMap; 39.83/18.47 import qualified Maybe; 39.83/18.47 import qualified Prelude; 39.83/18.47 } 39.83/18.47 39.83/18.47 ---------------------------------------- 39.83/18.47 39.83/18.47 (3) CR (EQUIVALENT) 39.83/18.47 Case Reductions: 39.83/18.47 The following Case expression 39.83/18.47 "case compare x y of { 39.83/18.47 EQ -> o; 39.83/18.47 LT -> LT; 39.83/18.47 GT -> GT} 39.83/18.47 " 39.83/18.47 is transformed to 39.83/18.47 "primCompAux0 o EQ = o; 39.83/18.47 primCompAux0 o LT = LT; 39.83/18.47 primCompAux0 o GT = GT; 39.83/18.47 " 39.83/18.47 The following Case expression 39.83/18.47 "case fm_r of { 39.83/18.47 EmptyFM -> True; 39.83/18.47 Branch right_key _ _ _ _ -> let { 39.83/18.47 smallest_right_key = fst (findMin fm_r); 39.83/18.47 } in key < smallest_right_key} 39.83/18.47 " 39.83/18.47 is transformed to 39.83/18.47 "right_ok0 fm_r key EmptyFM = True; 39.83/18.47 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 39.83/18.47 smallest_right_key = fst (findMin fm_r); 39.83/18.47 } in key < smallest_right_key; 39.83/18.47 " 39.83/18.47 The following Case expression 39.83/18.47 "case fm_l of { 39.83/18.47 EmptyFM -> True; 39.83/18.47 Branch left_key _ _ _ _ -> let { 39.83/18.47 biggest_left_key = fst (findMax fm_l); 39.83/18.47 } in biggest_left_key < key} 39.83/18.47 " 39.83/18.47 is transformed to 39.83/18.47 "left_ok0 fm_l key EmptyFM = True; 39.83/18.47 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 39.83/18.47 biggest_left_key = fst (findMax fm_l); 39.83/18.47 } in biggest_left_key < key; 39.83/18.47 " 39.83/18.47 The following Case expression 39.83/18.47 "case fm_R of { 39.83/18.47 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 39.83/18.47 " 39.83/18.47 is transformed to 39.83/18.47 "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; 39.83/18.47 " 39.83/18.47 The following Case expression 39.83/18.47 "case fm_L of { 39.83/18.47 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 39.83/18.47 " 39.83/18.47 is transformed to 39.83/18.47 "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; 39.83/18.47 " 39.83/18.47 39.83/18.47 ---------------------------------------- 39.83/18.47 39.83/18.47 (4) 39.83/18.47 Obligation: 39.83/18.47 mainModule Main 39.83/18.47 module FiniteMap where { 39.83/18.47 import qualified Main; 39.83/18.47 import qualified Maybe; 39.83/18.47 import qualified Prelude; 39.83/18.47 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 39.83/18.47 39.83/18.47 instance (Eq a, Eq b) => Eq FiniteMap b a where { 39.83/18.47 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 39.83/18.47 } 39.83/18.47 addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; 39.83/18.47 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 39.83/18.47 39.83/18.47 addToFM0 old new = new; 39.83/18.47 39.83/18.47 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 39.83/18.47 addToFM_C combiner EmptyFM key elt = unitFM key elt; 39.83/18.47 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 39.83/18.47 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 39.83/18.47 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 39.83/18.47 39.83/18.47 emptyFM :: FiniteMap a b; 39.83/18.47 emptyFM = EmptyFM; 39.83/18.47 39.83/18.47 findMax :: FiniteMap a b -> (a,b); 39.83/18.47 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 39.83/18.47 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 39.83/18.47 39.83/18.47 findMin :: FiniteMap a b -> (a,b); 39.83/18.47 findMin (Branch key elt _ EmptyFM _) = (key,elt); 39.83/18.47 findMin (Branch key elt _ fm_l _) = findMin fm_l; 39.83/18.47 39.83/18.47 fmToList :: FiniteMap b a -> [(b,a)]; 39.83/18.47 fmToList fm = foldFM fmToList0 [] fm; 39.83/18.47 39.83/18.47 fmToList0 key elt rest = (key,elt) : rest; 39.83/18.47 39.83/18.47 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 39.83/18.47 foldFM k z EmptyFM = z; 39.83/18.47 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 40.52/18.63 40.52/18.63 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 40.52/18.63 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 40.52/18.63 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 40.52/18.63 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 40.52/18.63 | otherwise = mkBranch 2 key elt fm_L fm_R where { 40.52/18.63 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); 40.52/18.63 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); 40.52/18.63 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 40.52/18.63 | otherwise = double_L fm_L fm_R; 40.52/18.63 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 40.52/18.63 | otherwise = double_R fm_L fm_R; 40.52/18.63 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; 40.52/18.63 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); 40.52/18.63 size_l = sizeFM fm_L; 40.52/18.63 size_r = sizeFM fm_R; 40.52/18.63 }; 40.52/18.63 40.52/18.63 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 40.52/18.63 mkBranch which key elt fm_l fm_r = let { 40.52/18.63 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 40.52/18.63 } in result where { 40.52/18.63 balance_ok = True; 40.52/18.63 left_ok = left_ok0 fm_l key fm_l; 40.52/18.63 left_ok0 fm_l key EmptyFM = True; 40.52/18.63 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 40.52/18.63 biggest_left_key = fst (findMax fm_l); 40.52/18.63 } in biggest_left_key < key; 40.52/18.63 left_size = sizeFM fm_l; 40.52/18.63 right_ok = right_ok0 fm_r key fm_r; 40.52/18.63 right_ok0 fm_r key EmptyFM = True; 40.52/18.63 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 40.52/18.63 smallest_right_key = fst (findMin fm_r); 40.52/18.63 } in key < smallest_right_key; 40.52/18.63 right_size = sizeFM fm_r; 40.52/18.63 unbox :: Int -> Int; 40.52/18.63 unbox x = x; 40.52/18.63 }; 40.52/18.63 40.52/18.63 mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 40.52/18.63 mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 40.52/18.63 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 40.52/18.63 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 40.52/18.63 | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) 40.52/18.63 | otherwise = mkBranch 13 key elt fm_l fm_r where { 40.52/18.63 size_l = sizeFM fm_l; 40.52/18.63 size_r = sizeFM fm_r; 40.52/18.63 }; 40.52/18.63 40.52/18.63 plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 40.52/18.63 plusFM EmptyFM fm2 = fm2; 40.52/18.63 plusFM fm1 EmptyFM = fm1; 40.52/18.63 plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 40.52/18.63 gts = splitGT fm1 split_key; 40.52/18.63 lts = splitLT fm1 split_key; 40.52/18.63 }; 40.52/18.63 40.52/18.63 sIZE_RATIO :: Int; 40.52/18.63 sIZE_RATIO = 5; 40.52/18.63 40.52/18.63 sizeFM :: FiniteMap b a -> Int; 40.52/18.63 sizeFM EmptyFM = 0; 40.52/18.63 sizeFM (Branch _ _ size _ _) = size; 40.52/18.63 40.52/18.63 splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 40.52/18.63 splitGT EmptyFM split_key = emptyFM; 40.52/18.63 splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key 40.52/18.63 | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r 40.52/18.63 | otherwise = fm_r; 40.52/18.63 40.52/18.63 splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 40.52/18.63 splitLT EmptyFM split_key = emptyFM; 40.52/18.63 splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key 40.52/18.63 | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) 40.52/18.63 | otherwise = fm_l; 40.52/18.63 40.52/18.63 unitFM :: b -> a -> FiniteMap b a; 40.52/18.63 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 40.52/18.63 40.52/18.63 } 40.52/18.63 module Maybe where { 40.52/18.63 import qualified FiniteMap; 40.52/18.63 import qualified Main; 40.52/18.63 import qualified Prelude; 40.52/18.63 } 40.52/18.63 module Main where { 40.52/18.63 import qualified FiniteMap; 40.52/18.63 import qualified Maybe; 40.52/18.63 import qualified Prelude; 40.52/18.63 } 40.52/18.63 40.52/18.63 ---------------------------------------- 40.52/18.63 40.52/18.63 (5) IFR (EQUIVALENT) 40.52/18.63 If Reductions: 40.52/18.63 The following If expression 40.52/18.63 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 40.52/18.63 is transformed to 40.52/18.63 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 40.52/18.63 primDivNatS0 x y False = Zero; 40.52/18.63 " 40.52/18.63 The following If expression 40.52/18.63 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 40.52/18.63 is transformed to 40.52/18.63 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 40.52/18.63 primModNatS0 x y False = Succ x; 40.52/18.63 " 40.52/18.63 40.52/18.63 ---------------------------------------- 40.52/18.63 40.52/18.63 (6) 40.52/18.63 Obligation: 40.52/18.63 mainModule Main 40.52/18.63 module FiniteMap where { 40.52/18.63 import qualified Main; 40.52/18.63 import qualified Maybe; 40.52/18.63 import qualified Prelude; 40.52/18.63 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 40.52/18.63 40.52/18.63 instance (Eq a, Eq b) => Eq FiniteMap a b where { 40.52/18.63 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 40.52/18.63 } 40.52/18.63 addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; 40.52/18.63 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 40.52/18.63 40.52/18.63 addToFM0 old new = new; 40.52/18.63 40.52/18.63 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 40.52/18.63 addToFM_C combiner EmptyFM key elt = unitFM key elt; 40.52/18.63 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 40.52/18.63 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 40.52/18.63 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 40.52/18.63 40.52/18.63 emptyFM :: FiniteMap b a; 40.52/18.63 emptyFM = EmptyFM; 40.52/18.63 40.52/18.63 findMax :: FiniteMap a b -> (a,b); 40.52/18.63 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 40.52/18.63 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 40.52/18.63 40.52/18.63 findMin :: FiniteMap a b -> (a,b); 40.52/18.63 findMin (Branch key elt _ EmptyFM _) = (key,elt); 40.52/18.63 findMin (Branch key elt _ fm_l _) = findMin fm_l; 40.52/18.63 40.52/18.63 fmToList :: FiniteMap a b -> [(a,b)]; 40.52/18.63 fmToList fm = foldFM fmToList0 [] fm; 40.52/18.63 40.52/18.63 fmToList0 key elt rest = (key,elt) : rest; 40.52/18.63 40.52/18.63 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 40.52/18.63 foldFM k z EmptyFM = z; 40.52/18.63 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 40.52/18.63 40.52/18.63 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 40.52/18.63 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 40.52/18.63 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 40.52/18.63 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 40.52/18.63 | otherwise = mkBranch 2 key elt fm_L fm_R where { 40.52/18.63 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); 40.52/18.63 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); 40.52/18.63 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 40.52/18.63 | otherwise = double_L fm_L fm_R; 40.52/18.63 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 40.52/18.63 | otherwise = double_R fm_L fm_R; 40.52/18.63 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; 40.52/18.63 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); 40.52/18.63 size_l = sizeFM fm_L; 40.52/18.63 size_r = sizeFM fm_R; 40.52/18.63 }; 40.52/18.63 40.52/18.63 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 40.52/18.63 mkBranch which key elt fm_l fm_r = let { 40.52/18.63 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 40.52/18.63 } in result where { 40.52/18.63 balance_ok = True; 40.52/18.63 left_ok = left_ok0 fm_l key fm_l; 40.52/18.63 left_ok0 fm_l key EmptyFM = True; 40.52/18.63 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 40.52/18.63 biggest_left_key = fst (findMax fm_l); 40.52/18.63 } in biggest_left_key < key; 40.52/18.63 left_size = sizeFM fm_l; 40.52/18.63 right_ok = right_ok0 fm_r key fm_r; 40.52/18.63 right_ok0 fm_r key EmptyFM = True; 40.52/18.63 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 40.52/18.63 smallest_right_key = fst (findMin fm_r); 40.52/18.63 } in key < smallest_right_key; 40.52/18.63 right_size = sizeFM fm_r; 40.52/18.63 unbox :: Int -> Int; 40.52/18.63 unbox x = x; 40.52/18.63 }; 40.52/18.63 40.52/18.63 mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 40.52/18.63 mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 40.52/18.63 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 40.52/18.63 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 40.52/18.63 | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) 40.52/18.63 | otherwise = mkBranch 13 key elt fm_l fm_r where { 40.52/18.63 size_l = sizeFM fm_l; 40.52/18.63 size_r = sizeFM fm_r; 40.52/18.63 }; 40.52/18.63 40.52/18.63 plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 40.52/18.63 plusFM EmptyFM fm2 = fm2; 40.52/18.63 plusFM fm1 EmptyFM = fm1; 40.52/18.63 plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 40.52/18.63 gts = splitGT fm1 split_key; 40.52/18.63 lts = splitLT fm1 split_key; 40.52/18.63 }; 40.52/18.63 40.52/18.63 sIZE_RATIO :: Int; 40.52/18.63 sIZE_RATIO = 5; 40.52/18.63 40.52/18.63 sizeFM :: FiniteMap b a -> Int; 40.52/18.63 sizeFM EmptyFM = 0; 40.52/18.63 sizeFM (Branch _ _ size _ _) = size; 40.52/18.63 40.52/18.63 splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 40.52/18.63 splitGT EmptyFM split_key = emptyFM; 40.52/18.63 splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key 40.52/18.63 | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r 40.52/18.63 | otherwise = fm_r; 40.52/18.63 40.52/18.63 splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 40.52/18.63 splitLT EmptyFM split_key = emptyFM; 40.52/18.63 splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key 40.52/18.63 | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) 40.52/18.63 | otherwise = fm_l; 40.52/18.63 40.52/18.63 unitFM :: b -> a -> FiniteMap b a; 40.52/18.63 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 40.52/18.63 40.52/18.63 } 40.52/18.63 module Maybe where { 40.52/18.63 import qualified FiniteMap; 40.52/18.63 import qualified Main; 40.52/18.63 import qualified Prelude; 40.52/18.63 } 40.52/18.63 module Main where { 40.52/18.63 import qualified FiniteMap; 40.52/18.63 import qualified Maybe; 40.52/18.63 import qualified Prelude; 40.52/18.63 } 40.52/18.63 40.52/18.63 ---------------------------------------- 40.52/18.63 40.52/18.63 (7) BR (EQUIVALENT) 40.52/18.63 Replaced joker patterns by fresh variables and removed binding patterns. 40.52/18.63 40.52/18.63 Binding Reductions: 40.52/18.63 The bind variable of the following binding Pattern 40.52/18.63 "fm_l@(Branch vuv vuw vux vuy vuz)" 40.52/18.63 is replaced by the following term 40.52/18.63 "Branch vuv vuw vux vuy vuz" 40.52/18.63 The bind variable of the following binding Pattern 40.52/18.63 "fm_r@(Branch vvv vvw vvx vvy vvz)" 40.52/18.63 is replaced by the following term 40.52/18.63 "Branch vvv vvw vvx vvy vvz" 40.52/18.63 40.52/18.63 ---------------------------------------- 40.52/18.63 40.52/18.63 (8) 40.52/18.63 Obligation: 40.52/18.63 mainModule Main 40.52/18.63 module FiniteMap where { 40.52/18.63 import qualified Main; 40.52/18.63 import qualified Maybe; 40.52/18.63 import qualified Prelude; 40.52/18.63 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 40.52/18.63 40.52/18.63 instance (Eq a, Eq b) => Eq FiniteMap a b where { 40.52/18.63 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 40.52/18.63 } 40.52/18.63 addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; 40.52/18.63 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 40.52/18.63 40.52/18.63 addToFM0 old new = new; 40.52/18.63 40.52/18.63 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 40.52/18.63 addToFM_C combiner EmptyFM key elt = unitFM key elt; 40.52/18.63 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 40.52/18.63 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 40.52/18.63 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 40.52/18.63 40.52/18.63 emptyFM :: FiniteMap a b; 40.52/18.63 emptyFM = EmptyFM; 40.52/18.63 40.52/18.63 findMax :: FiniteMap b a -> (b,a); 40.52/18.63 findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); 40.52/18.63 findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; 40.52/18.63 40.52/18.63 findMin :: FiniteMap a b -> (a,b); 40.52/18.63 findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); 40.52/18.63 findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; 40.52/18.63 40.52/18.63 fmToList :: FiniteMap a b -> [(a,b)]; 40.52/18.63 fmToList fm = foldFM fmToList0 [] fm; 40.52/18.63 40.52/18.63 fmToList0 key elt rest = (key,elt) : rest; 40.52/18.63 40.52/18.63 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 40.52/18.63 foldFM k z EmptyFM = z; 40.52/18.63 foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 40.52/18.63 40.52/18.63 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 40.52/18.63 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 40.52/18.63 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 40.52/18.63 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 40.52/18.63 | otherwise = mkBranch 2 key elt fm_L fm_R where { 40.52/18.63 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); 40.52/18.63 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); 40.52/18.63 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 40.52/18.63 | otherwise = double_L fm_L fm_R; 40.52/18.63 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 40.52/18.63 | otherwise = double_R fm_L fm_R; 40.52/18.63 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; 40.52/18.63 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); 40.52/18.63 size_l = sizeFM fm_L; 40.52/18.63 size_r = sizeFM fm_R; 40.52/18.63 }; 40.52/18.63 40.52/18.63 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 40.52/18.63 mkBranch which key elt fm_l fm_r = let { 40.52/18.63 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 40.52/18.63 } in result where { 40.52/18.63 balance_ok = True; 40.52/18.63 left_ok = left_ok0 fm_l key fm_l; 40.52/18.63 left_ok0 fm_l key EmptyFM = True; 40.52/18.63 left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { 40.52/18.63 biggest_left_key = fst (findMax fm_l); 40.52/18.63 } in biggest_left_key < key; 40.52/18.63 left_size = sizeFM fm_l; 40.52/18.63 right_ok = right_ok0 fm_r key fm_r; 40.52/18.63 right_ok0 fm_r key EmptyFM = True; 40.52/18.63 right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { 40.52/18.63 smallest_right_key = fst (findMin fm_r); 40.52/18.63 } in key < smallest_right_key; 40.52/18.63 right_size = sizeFM fm_r; 40.52/18.63 unbox :: Int -> Int; 40.52/18.63 unbox x = x; 40.52/18.63 }; 40.52/18.63 40.52/18.63 mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 40.52/18.63 mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 40.52/18.63 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 40.52/18.63 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 40.52/18.63 | sIZE_RATIO * size_r < size_l = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)) 40.52/18.63 | otherwise = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) where { 40.52/18.63 size_l = sizeFM (Branch vuv vuw vux vuy vuz); 40.52/18.63 size_r = sizeFM (Branch vvv vvw vvx vvy vvz); 40.52/18.63 }; 40.52/18.63 40.52/18.63 plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 40.52/18.63 plusFM EmptyFM fm2 = fm2; 40.52/18.63 plusFM fm1 EmptyFM = fm1; 40.52/18.63 plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 40.52/18.63 gts = splitGT fm1 split_key; 40.52/18.63 lts = splitLT fm1 split_key; 40.52/18.63 }; 40.52/18.63 40.52/18.63 sIZE_RATIO :: Int; 40.52/18.63 sIZE_RATIO = 5; 40.52/18.63 40.52/18.63 sizeFM :: FiniteMap a b -> Int; 40.52/18.63 sizeFM EmptyFM = 0; 40.52/18.63 sizeFM (Branch wux wuy size wuz wvu) = size; 40.52/18.63 40.52/18.63 splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 40.52/18.63 splitGT EmptyFM split_key = emptyFM; 40.52/18.63 splitGT (Branch key elt vwu fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key 40.52/18.63 | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r 40.52/18.63 | otherwise = fm_r; 40.52/18.63 40.52/18.63 splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 40.52/18.63 splitLT EmptyFM split_key = emptyFM; 40.52/18.63 splitLT (Branch key elt vwv fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key 40.52/18.63 | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) 40.52/18.63 | otherwise = fm_l; 40.52/18.63 40.52/18.63 unitFM :: b -> a -> FiniteMap b a; 40.52/18.63 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 40.52/18.63 40.52/18.63 } 40.52/18.63 module Maybe where { 40.52/18.63 import qualified FiniteMap; 40.52/18.63 import qualified Main; 40.52/18.63 import qualified Prelude; 40.52/18.63 } 40.52/18.63 module Main where { 40.52/18.63 import qualified FiniteMap; 40.52/18.63 import qualified Maybe; 40.52/18.63 import qualified Prelude; 40.52/18.63 } 40.52/18.63 40.52/18.63 ---------------------------------------- 40.52/18.63 40.52/18.63 (9) COR (EQUIVALENT) 40.52/18.63 Cond Reductions: 40.52/18.63 The following Function with conditions 40.52/18.63 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 40.52/18.63 " 40.52/18.63 is transformed to 40.52/18.63 "compare x y = compare3 x y; 40.52/18.66 " 40.52/18.66 "compare1 x y True = LT; 40.52/18.66 compare1 x y False = compare0 x y otherwise; 40.52/18.66 " 40.52/18.66 "compare0 x y True = GT; 40.52/18.66 " 40.52/18.66 "compare2 x y True = EQ; 40.52/18.66 compare2 x y False = compare1 x y (x <= y); 40.52/18.66 " 40.52/18.66 "compare3 x y = compare2 x y (x == y); 40.52/18.66 " 40.52/18.66 The following Function with conditions 40.52/18.66 "absReal x|x >= 0x|otherwise`negate` x; 40.52/18.66 " 40.52/18.66 is transformed to 40.52/18.66 "absReal x = absReal2 x; 40.52/18.66 " 40.52/18.66 "absReal1 x True = x; 40.52/18.66 absReal1 x False = absReal0 x otherwise; 40.52/18.66 " 40.52/18.66 "absReal0 x True = `negate` x; 40.52/18.66 " 40.52/18.66 "absReal2 x = absReal1 x (x >= 0); 40.52/18.66 " 40.52/18.66 The following Function with conditions 40.52/18.66 "gcd' x 0 = x; 40.52/18.66 gcd' x y = gcd' y (x `rem` y); 40.52/18.66 " 40.52/18.66 is transformed to 40.52/18.66 "gcd' x wvz = gcd'2 x wvz; 40.52/18.66 gcd' x y = gcd'0 x y; 40.52/18.66 " 40.52/18.66 "gcd'0 x y = gcd' y (x `rem` y); 40.52/18.66 " 40.52/18.66 "gcd'1 True x wvz = x; 40.52/18.66 gcd'1 wwu wwv www = gcd'0 wwv www; 40.52/18.66 " 40.52/18.66 "gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; 40.52/18.66 gcd'2 wwx wwy = gcd'0 wwx wwy; 40.52/18.66 " 40.52/18.66 The following Function with conditions 40.52/18.66 "gcd 0 0 = error []; 40.52/18.66 gcd x y = gcd' (abs x) (abs y) where { 40.52/18.66 gcd' x 0 = x; 40.52/18.66 gcd' x y = gcd' y (x `rem` y); 40.52/18.66 } 40.52/18.66 ; 40.52/18.66 " 40.52/18.66 is transformed to 40.52/18.66 "gcd wwz wxu = gcd3 wwz wxu; 40.52/18.66 gcd x y = gcd0 x y; 40.52/18.66 " 40.52/18.66 "gcd0 x y = gcd' (abs x) (abs y) where { 40.52/18.66 gcd' x wvz = gcd'2 x wvz; 40.52/18.66 gcd' x y = gcd'0 x y; 40.52/18.66 ; 40.52/18.66 gcd'0 x y = gcd' y (x `rem` y); 40.52/18.66 ; 40.52/18.66 gcd'1 True x wvz = x; 40.52/18.66 gcd'1 wwu wwv www = gcd'0 wwv www; 40.52/18.66 ; 40.52/18.66 gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; 40.52/18.66 gcd'2 wwx wwy = gcd'0 wwx wwy; 40.52/18.66 } 40.52/18.66 ; 40.52/18.66 " 40.52/18.66 "gcd1 True wwz wxu = error []; 40.52/18.66 gcd1 wxv wxw wxx = gcd0 wxw wxx; 40.52/18.66 " 40.52/18.66 "gcd2 True wwz wxu = gcd1 (wxu == 0) wwz wxu; 40.52/18.66 gcd2 wxy wxz wyu = gcd0 wxz wyu; 40.52/18.66 " 40.52/18.66 "gcd3 wwz wxu = gcd2 (wwz == 0) wwz wxu; 40.52/18.66 gcd3 wyv wyw = gcd0 wyv wyw; 40.52/18.66 " 40.52/18.66 The following Function with conditions 40.52/18.66 "undefined |Falseundefined; 40.52/18.66 " 40.52/18.66 is transformed to 40.52/18.66 "undefined = undefined1; 40.52/18.66 " 40.52/18.66 "undefined0 True = undefined; 40.52/18.66 " 40.52/18.66 "undefined1 = undefined0 False; 40.52/18.66 " 40.52/18.66 The following Function with conditions 40.52/18.66 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 40.52/18.66 d = gcd x y; 40.52/18.66 } 40.52/18.66 ; 40.52/18.66 " 40.52/18.66 is transformed to 40.52/18.66 "reduce x y = reduce2 x y; 40.52/18.66 " 40.52/18.66 "reduce2 x y = reduce1 x y (y == 0) where { 40.52/18.66 d = gcd x y; 40.52/18.66 ; 40.52/18.66 reduce0 x y True = x `quot` d :% (y `quot` d); 40.52/18.66 ; 40.52/18.66 reduce1 x y True = error []; 40.52/18.66 reduce1 x y False = reduce0 x y otherwise; 40.52/18.66 } 40.52/18.66 ; 40.52/18.66 " 40.52/18.66 The following Function with conditions 40.52/18.66 "addToFM_C combiner EmptyFM key elt = unitFM key elt; 40.52/18.66 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; 40.52/18.66 " 40.52/18.66 is transformed to 40.52/18.66 "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 40.52/18.66 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; 40.52/18.66 " 40.52/18.66 "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); 40.52/18.66 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; 40.52/18.66 " 40.52/18.66 "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; 40.52/18.66 " 40.52/18.66 "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; 40.52/18.66 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); 40.52/18.66 " 40.52/18.66 "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); 40.52/18.66 " 40.52/18.66 "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 40.52/18.66 addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; 40.52/18.66 " 40.52/18.66 The following Function with conditions 40.52/18.66 "mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; 40.52/18.66 mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; 40.52/18.66 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 { 40.52/18.66 size_l = sizeFM (Branch vuv vuw vux vuy vuz); 40.52/18.66 ; 40.52/18.66 size_r = sizeFM (Branch vvv vvw vvx vvy vvz); 40.52/18.66 } 40.52/18.66 ; 40.52/18.66 " 40.52/18.66 is transformed to 40.52/18.66 "mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; 40.52/18.66 mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; 40.52/18.66 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); 40.52/18.66 " 40.52/18.66 "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 { 40.52/18.66 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); 40.52/18.66 ; 40.52/18.66 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)); 40.52/18.66 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; 40.52/18.66 ; 40.52/18.66 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; 40.52/18.66 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); 40.52/18.66 ; 40.52/18.66 size_l = sizeFM (Branch vuv vuw vux vuy vuz); 40.52/18.66 ; 40.52/18.66 size_r = sizeFM (Branch vvv vvw vvx vvy vvz); 40.52/18.66 } 40.52/18.66 ; 40.52/18.66 " 40.52/18.66 "mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; 40.52/18.66 mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; 40.52/18.66 " 40.52/18.66 "mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; 40.52/18.66 mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; 40.52/18.66 " 40.52/18.66 The following Function with conditions 40.52/18.66 "splitGT EmptyFM split_key = emptyFM; 40.52/18.66 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; 40.52/18.66 " 40.52/18.66 is transformed to 40.52/18.66 "splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; 40.52/18.66 splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; 40.52/18.66 " 40.52/18.66 "splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; 40.52/18.66 " 40.52/18.66 "splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; 40.52/18.66 splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; 40.52/18.66 " 40.52/18.66 "splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; 40.52/18.66 splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); 40.52/18.66 " 40.52/18.66 "splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); 40.52/18.66 " 40.52/18.66 "splitGT4 EmptyFM split_key = emptyFM; 40.52/18.66 splitGT4 xvz xwu = splitGT3 xvz xwu; 40.52/18.66 " 40.52/18.66 The following Function with conditions 40.52/18.66 "splitLT EmptyFM split_key = emptyFM; 40.52/18.66 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; 40.52/18.66 " 40.52/18.66 is transformed to 40.52/18.66 "splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; 40.52/18.66 splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; 40.52/18.66 " 40.52/18.66 "splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; 40.52/18.66 " 40.52/18.66 "splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); 40.52/18.66 splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; 40.52/18.66 " 40.52/18.66 "splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; 40.52/18.66 splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); 40.52/18.66 " 40.52/18.66 "splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); 40.52/18.66 " 40.52/18.66 "splitLT4 EmptyFM split_key = emptyFM; 40.52/18.66 splitLT4 xwx xwy = splitLT3 xwx xwy; 40.52/18.66 " 40.52/18.66 The following Function with conditions 40.52/18.66 "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; 40.52/18.66 " 40.52/18.66 is transformed to 40.52/18.66 "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); 40.52/18.66 " 40.52/18.66 "mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; 40.52/18.66 " 40.52/18.66 "mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; 40.52/18.66 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; 40.52/18.66 " 40.52/18.66 "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); 40.52/18.66 " 40.52/18.66 The following Function with conditions 40.52/18.66 "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; 40.52/18.66 " 40.52/18.66 is transformed to 40.52/18.66 "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); 40.52/18.66 " 40.52/18.66 "mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; 40.52/18.66 " 40.52/18.66 "mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; 40.52/18.66 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; 40.52/18.66 " 40.52/18.66 "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); 40.52/18.66 " 40.52/18.66 The following Function with conditions 40.52/18.66 "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 { 40.52/18.66 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); 40.52/18.66 ; 40.52/18.66 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); 40.52/18.66 ; 40.52/18.66 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; 40.52/18.66 ; 40.52/18.66 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; 40.52/18.66 ; 40.52/18.66 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; 40.52/18.66 ; 40.52/18.66 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); 40.52/18.66 ; 40.52/18.66 size_l = sizeFM fm_L; 40.52/18.66 ; 40.52/18.66 size_r = sizeFM fm_R; 40.52/18.66 } 40.52/18.66 ; 40.52/18.66 " 40.52/18.66 is transformed to 40.52/18.66 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 40.52/18.66 " 40.52/18.66 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 40.52/18.66 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); 40.52/18.66 ; 40.52/18.66 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); 40.52/18.66 ; 40.52/18.66 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); 40.52/18.66 ; 40.52/18.66 mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; 40.52/18.66 ; 40.52/18.66 mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; 40.52/18.66 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; 40.52/18.66 ; 40.52/18.66 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); 40.52/18.66 ; 40.52/18.66 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); 40.52/18.66 ; 40.52/18.66 mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; 40.52/18.66 ; 40.52/18.66 mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; 40.52/18.66 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; 40.52/18.66 ; 40.52/18.66 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); 40.52/18.66 ; 40.52/18.66 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 40.52/18.66 ; 40.52/18.66 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 40.52/18.66 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 40.52/18.66 ; 40.52/18.66 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 40.52/18.66 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 40.52/18.66 ; 40.52/18.66 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 40.52/18.66 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 40.52/18.66 ; 40.52/18.66 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; 40.52/18.66 ; 40.52/18.66 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); 40.52/18.66 ; 40.52/18.66 size_l = sizeFM fm_L; 40.52/18.66 ; 40.52/18.66 size_r = sizeFM fm_R; 40.52/18.66 } 40.52/18.66 ; 40.52/18.66 " 40.52/18.66 40.52/18.66 ---------------------------------------- 40.52/18.66 40.52/18.66 (10) 40.52/18.66 Obligation: 40.52/18.66 mainModule Main 40.52/18.66 module FiniteMap where { 40.52/18.66 import qualified Main; 40.52/18.66 import qualified Maybe; 40.52/18.66 import qualified Prelude; 40.52/18.66 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 40.52/18.66 40.52/18.66 instance (Eq a, Eq b) => Eq FiniteMap b a where { 40.52/18.66 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 40.52/18.66 } 40.52/18.66 addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; 40.52/18.66 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 40.52/18.66 40.52/18.66 addToFM0 old new = new; 40.52/18.66 40.52/18.66 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 40.52/18.66 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 40.52/18.66 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; 40.52/18.66 40.52/18.66 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; 40.52/18.66 40.52/18.66 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); 40.52/18.66 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; 40.52/18.66 40.52/18.66 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; 40.52/18.66 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); 40.52/18.66 40.52/18.66 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); 40.52/18.66 40.52/18.66 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 40.52/18.66 addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; 40.52/18.66 40.52/18.66 emptyFM :: FiniteMap b a; 40.52/18.66 emptyFM = EmptyFM; 40.52/18.66 40.52/18.66 findMax :: FiniteMap b a -> (b,a); 40.52/18.66 findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); 40.52/18.66 findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; 40.52/18.66 40.52/18.66 findMin :: FiniteMap a b -> (a,b); 40.52/18.66 findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); 40.52/18.66 findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; 40.52/18.66 40.52/18.66 fmToList :: FiniteMap b a -> [(b,a)]; 40.52/18.66 fmToList fm = foldFM fmToList0 [] fm; 40.52/18.66 40.52/18.66 fmToList0 key elt rest = (key,elt) : rest; 40.52/18.66 40.52/18.66 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 40.52/18.66 foldFM k z EmptyFM = z; 40.52/18.66 foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 40.52/18.66 40.52/18.66 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 40.52/18.66 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 40.52/18.66 40.52/18.66 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 40.52/18.66 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); 40.52/18.66 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); 40.52/18.66 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); 40.52/18.66 mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; 40.52/18.66 mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; 40.52/18.66 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; 40.52/18.66 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); 40.52/18.66 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); 40.52/18.66 mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; 40.52/18.66 mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; 40.52/18.66 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; 40.52/18.66 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); 40.52/18.66 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 40.52/18.66 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 40.52/18.66 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 40.52/18.66 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 40.52/18.66 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 40.52/18.66 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 40.52/18.66 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 40.52/18.66 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; 40.52/18.66 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); 40.52/18.66 size_l = sizeFM fm_L; 40.52/18.66 size_r = sizeFM fm_R; 40.52/18.66 }; 40.52/18.66 40.52/18.66 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 40.52/18.66 mkBranch which key elt fm_l fm_r = let { 40.52/18.66 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 40.52/18.66 } in result where { 40.52/18.66 balance_ok = True; 40.52/18.66 left_ok = left_ok0 fm_l key fm_l; 40.52/18.66 left_ok0 fm_l key EmptyFM = True; 40.52/18.66 left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { 40.52/18.66 biggest_left_key = fst (findMax fm_l); 40.52/18.66 } in biggest_left_key < key; 40.52/18.66 left_size = sizeFM fm_l; 40.52/18.66 right_ok = right_ok0 fm_r key fm_r; 40.52/18.66 right_ok0 fm_r key EmptyFM = True; 40.52/18.66 right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { 40.52/18.66 smallest_right_key = fst (findMin fm_r); 40.52/18.66 } in key < smallest_right_key; 40.52/18.66 right_size = sizeFM fm_r; 40.52/18.66 unbox :: Int -> Int; 40.52/18.66 unbox x = x; 40.52/18.66 }; 40.52/18.66 40.52/18.66 mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 40.52/18.66 mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; 40.52/18.66 mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; 40.52/18.66 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); 40.52/18.66 40.52/18.66 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 { 40.52/18.66 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); 40.52/18.66 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)); 40.52/18.66 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; 40.52/18.66 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; 40.52/18.66 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); 40.52/18.66 size_l = sizeFM (Branch vuv vuw vux vuy vuz); 40.52/18.66 size_r = sizeFM (Branch vvv vvw vvx vvy vvz); 40.52/18.66 }; 40.52/18.66 40.52/18.66 mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; 40.52/18.66 mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; 40.52/18.66 40.52/18.66 mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; 40.52/18.66 mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; 40.52/18.67 40.52/18.67 plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 40.52/18.67 plusFM EmptyFM fm2 = fm2; 40.52/18.67 plusFM fm1 EmptyFM = fm1; 40.52/18.67 plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 40.52/18.67 gts = splitGT fm1 split_key; 40.52/18.67 lts = splitLT fm1 split_key; 40.52/18.67 }; 40.52/18.67 40.52/18.67 sIZE_RATIO :: Int; 40.52/18.67 sIZE_RATIO = 5; 40.52/18.67 40.52/18.67 sizeFM :: FiniteMap a b -> Int; 40.52/18.67 sizeFM EmptyFM = 0; 40.52/18.67 sizeFM (Branch wux wuy size wuz wvu) = size; 40.52/18.67 40.52/18.67 splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 40.52/18.67 splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; 40.52/18.67 splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; 40.52/18.67 40.52/18.67 splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; 40.52/18.67 40.52/18.67 splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; 40.52/18.67 splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; 40.52/18.67 40.52/18.67 splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; 40.52/18.67 splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); 40.52/18.67 40.52/18.67 splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); 40.52/18.67 40.52/18.67 splitGT4 EmptyFM split_key = emptyFM; 40.52/18.67 splitGT4 xvz xwu = splitGT3 xvz xwu; 40.52/18.67 40.52/18.67 splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 40.52/18.67 splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; 40.52/18.67 splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; 40.52/18.67 40.52/18.67 splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; 40.52/18.67 40.52/18.67 splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); 40.52/18.67 splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; 40.52/18.67 40.52/18.67 splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; 40.52/18.67 splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); 40.52/18.67 40.52/18.67 splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); 40.52/18.67 40.52/18.67 splitLT4 EmptyFM split_key = emptyFM; 40.52/18.67 splitLT4 xwx xwy = splitLT3 xwx xwy; 40.52/18.67 40.52/18.67 unitFM :: a -> b -> FiniteMap a b; 40.52/18.67 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 40.52/18.67 40.52/18.67 } 40.52/18.67 module Maybe where { 40.52/18.67 import qualified FiniteMap; 40.52/18.67 import qualified Main; 40.52/18.67 import qualified Prelude; 40.52/18.67 } 40.52/18.67 module Main where { 40.52/18.67 import qualified FiniteMap; 40.52/18.67 import qualified Maybe; 40.52/18.67 import qualified Prelude; 40.52/18.67 } 40.52/18.67 40.52/18.67 ---------------------------------------- 40.52/18.67 40.52/18.67 (11) LetRed (EQUIVALENT) 40.52/18.67 Let/Where Reductions: 40.52/18.67 The bindings of the following Let/Where expression 40.52/18.67 "gcd' (abs x) (abs y) where { 40.52/18.67 gcd' x wvz = gcd'2 x wvz; 40.52/18.67 gcd' x y = gcd'0 x y; 40.52/18.67 ; 40.52/18.67 gcd'0 x y = gcd' y (x `rem` y); 40.52/18.67 ; 40.52/18.67 gcd'1 True x wvz = x; 40.52/18.67 gcd'1 wwu wwv www = gcd'0 wwv www; 40.52/18.67 ; 40.52/18.67 gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; 40.52/18.67 gcd'2 wwx wwy = gcd'0 wwx wwy; 40.52/18.67 } 40.52/18.67 " 40.52/18.67 are unpacked to the following functions on top level 40.52/18.67 "gcd0Gcd'2 x wvz = gcd0Gcd'1 (wvz == 0) x wvz; 40.52/18.67 gcd0Gcd'2 wwx wwy = gcd0Gcd'0 wwx wwy; 40.52/18.67 " 40.52/18.67 "gcd0Gcd'1 True x wvz = x; 40.52/18.67 gcd0Gcd'1 wwu wwv www = gcd0Gcd'0 wwv www; 40.52/18.67 " 40.52/18.67 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 40.52/18.67 " 40.52/18.67 "gcd0Gcd' x wvz = gcd0Gcd'2 x wvz; 40.52/18.67 gcd0Gcd' x y = gcd0Gcd'0 x y; 40.52/18.67 " 40.52/18.67 The bindings of the following Let/Where expression 40.52/18.67 "reduce1 x y (y == 0) where { 40.52/18.67 d = gcd x y; 40.52/18.67 ; 40.52/18.67 reduce0 x y True = x `quot` d :% (y `quot` d); 40.52/18.67 ; 40.52/18.67 reduce1 x y True = error []; 40.52/18.67 reduce1 x y False = reduce0 x y otherwise; 40.52/18.67 } 40.52/18.67 " 40.52/18.67 are unpacked to the following functions on top level 40.52/18.67 "reduce2Reduce1 xxv xxw x y True = error []; 40.52/18.67 reduce2Reduce1 xxv xxw x y False = reduce2Reduce0 xxv xxw x y otherwise; 40.52/18.67 " 40.52/18.67 "reduce2D xxv xxw = gcd xxv xxw; 40.52/18.67 " 40.52/18.67 "reduce2Reduce0 xxv xxw x y True = x `quot` reduce2D xxv xxw :% (y `quot` reduce2D xxv xxw); 40.52/18.67 " 40.52/18.67 The bindings of the following Let/Where expression 40.52/18.67 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 40.52/18.67 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); 40.52/18.67 ; 40.52/18.67 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); 40.99/18.78 ; 40.99/18.78 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); 40.99/18.78 ; 40.99/18.78 mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; 40.99/18.78 ; 40.99/18.78 mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; 40.99/18.78 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; 40.99/18.78 ; 40.99/18.78 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); 40.99/18.78 ; 40.99/18.78 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); 40.99/18.78 ; 40.99/18.78 mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; 40.99/18.78 ; 40.99/18.78 mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; 40.99/18.78 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; 40.99/18.78 ; 40.99/18.78 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); 40.99/18.78 ; 40.99/18.78 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 40.99/18.78 ; 40.99/18.78 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 40.99/18.78 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 40.99/18.78 ; 40.99/18.78 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 40.99/18.78 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 40.99/18.78 ; 40.99/18.78 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 40.99/18.78 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 40.99/18.78 ; 40.99/18.78 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; 40.99/18.78 ; 40.99/18.78 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); 40.99/18.78 ; 40.99/18.78 size_l = sizeFM fm_L; 40.99/18.78 ; 40.99/18.78 size_r = sizeFM fm_R; 40.99/18.78 } 40.99/18.78 " 40.99/18.78 are unpacked to the following functions on top level 40.99/18.78 "mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 40.99/18.78 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); 40.99/18.78 " 40.99/18.78 "mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; 40.99/18.78 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); 40.99/18.78 " 40.99/18.78 "mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 40.99/18.78 " 40.99/18.78 "mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxx; 40.99/18.78 " 40.99/18.78 "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; 40.99/18.78 " 40.99/18.78 "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); 40.99/18.78 " 40.99/18.78 "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); 40.99/18.78 " 40.99/18.78 "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; 40.99/18.78 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; 40.99/18.78 " 40.99/18.78 "mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; 40.99/18.78 mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; 40.99/18.78 " 40.99/18.78 "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 xxy xxz fm_lr fm_r); 40.99/18.78 " 40.99/18.78 "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 xxy xxz fm_lrr fm_r); 40.99/18.78 " 40.99/18.78 "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 xxy xxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 40.99/18.78 " 40.99/18.78 "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; 40.99/18.78 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; 40.99/18.78 " 40.99/18.78 "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 xxy xxz fm_l fm_rl) fm_rr; 40.99/18.78 " 40.99/18.78 "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); 40.99/18.78 " 40.99/18.78 "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); 40.99/18.78 " 40.99/18.78 "mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xyu; 40.99/18.78 " 40.99/18.78 "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; 40.99/18.78 " 40.99/18.78 The bindings of the following Let/Where expression 40.99/18.78 "let { 40.99/18.78 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 40.99/18.78 } in result where { 40.99/18.78 balance_ok = True; 40.99/18.78 ; 40.99/18.78 left_ok = left_ok0 fm_l key fm_l; 40.99/18.78 ; 40.99/18.78 left_ok0 fm_l key EmptyFM = True; 40.99/18.78 left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { 40.99/18.78 biggest_left_key = fst (findMax fm_l); 40.99/18.78 } in biggest_left_key < key; 40.99/18.78 ; 40.99/18.78 left_size = sizeFM fm_l; 40.99/18.78 ; 40.99/18.78 right_ok = right_ok0 fm_r key fm_r; 40.99/18.78 ; 40.99/18.78 right_ok0 fm_r key EmptyFM = True; 40.99/18.78 right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { 40.99/18.78 smallest_right_key = fst (findMin fm_r); 40.99/18.78 } in key < smallest_right_key; 40.99/18.78 ; 40.99/18.78 right_size = sizeFM fm_r; 40.99/18.78 ; 40.99/18.78 unbox x = x; 40.99/18.78 } 40.99/18.78 " 40.99/18.78 are unpacked to the following functions on top level 40.99/18.78 "mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyv xyw xyv; 40.99/18.78 " 40.99/18.78 "mkBranchBalance_ok xyv xyw xyx = True; 40.99/18.78 " 40.99/18.78 "mkBranchLeft_size xyv xyw xyx = sizeFM xyx; 40.99/18.78 " 40.99/18.78 "mkBranchUnbox xyv xyw xyx x = x; 40.99/18.78 " 40.99/18.78 "mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyx xyw xyx; 40.99/18.78 " 40.99/18.78 "mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; 40.99/18.78 mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; 40.99/18.78 " 40.99/18.78 "mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; 40.99/18.78 mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 40.99/18.78 " 40.99/18.78 "mkBranchRight_size xyv xyw xyx = sizeFM xyv; 40.99/18.78 " 40.99/18.78 The bindings of the following Let/Where expression 40.99/18.78 "let { 40.99/18.78 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 40.99/18.78 } in result" 40.99/18.78 are unpacked to the following functions on top level 40.99/18.78 "mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (1 + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzv xzu; 40.99/18.78 " 40.99/18.78 The bindings of the following Let/Where expression 40.99/18.78 "mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { 40.99/18.78 gts = splitGT fm1 split_key; 40.99/18.78 ; 40.99/18.78 lts = splitLT fm1 split_key; 40.99/18.78 } 40.99/18.78 " 40.99/18.78 are unpacked to the following functions on top level 40.99/18.78 "plusFMLts xzw xzx = splitLT xzw xzx; 40.99/18.78 " 40.99/18.78 "plusFMGts xzw xzx = splitGT xzw xzx; 40.99/18.78 " 40.99/18.78 The bindings of the following Let/Where expression 40.99/18.78 "mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { 40.99/18.78 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); 40.99/18.78 ; 40.99/18.78 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)); 40.99/18.78 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; 40.99/18.78 ; 40.99/18.78 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; 40.99/18.78 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); 40.99/18.78 ; 40.99/18.78 size_l = sizeFM (Branch vuv vuw vux vuy vuz); 40.99/18.78 ; 40.99/18.78 size_r = sizeFM (Branch vvv vvw vvx vvy vvz); 40.99/18.78 } 40.99/18.78 " 40.99/18.78 are unpacked to the following functions on top level 40.99/18.78 "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; 40.99/18.78 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); 40.99/18.78 " 40.99/18.78 "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); 40.99/18.78 " 40.99/18.78 "mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); 40.99/18.78 " 40.99/18.78 "mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); 40.99/18.78 " 40.99/18.78 "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)); 40.99/18.78 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; 40.99/18.78 " 40.99/18.78 The bindings of the following Let/Where expression 40.99/18.78 "let { 40.99/18.78 smallest_right_key = fst (findMin fm_r); 40.99/18.78 } in key < smallest_right_key" 40.99/18.78 are unpacked to the following functions on top level 40.99/18.78 "mkBranchRight_ok0Smallest_right_key yvw = fst (findMin yvw); 40.99/18.78 " 40.99/18.78 The bindings of the following Let/Where expression 40.99/18.78 "let { 40.99/18.78 biggest_left_key = fst (findMax fm_l); 40.99/18.78 } in biggest_left_key < key" 40.99/18.78 are unpacked to the following functions on top level 40.99/18.78 "mkBranchLeft_ok0Biggest_left_key yvx = fst (findMax yvx); 40.99/18.78 " 40.99/18.78 40.99/18.78 ---------------------------------------- 40.99/18.78 40.99/18.78 (12) 40.99/18.78 Obligation: 40.99/18.78 mainModule Main 40.99/18.78 module FiniteMap where { 40.99/18.78 import qualified Main; 40.99/18.78 import qualified Maybe; 40.99/18.78 import qualified Prelude; 40.99/18.78 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 40.99/18.78 40.99/18.78 instance (Eq a, Eq b) => Eq FiniteMap a b where { 40.99/18.78 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 40.99/18.78 } 40.99/18.78 addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; 40.99/18.78 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 40.99/18.78 40.99/18.78 addToFM0 old new = new; 40.99/18.78 40.99/18.78 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 40.99/18.78 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 40.99/18.78 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; 40.99/18.78 40.99/18.78 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; 40.99/18.78 40.99/18.78 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); 40.99/18.78 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; 40.99/18.78 40.99/18.78 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; 40.99/18.78 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); 40.99/18.78 40.99/18.78 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); 40.99/18.78 40.99/18.78 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 40.99/18.78 addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; 40.99/18.78 40.99/18.78 emptyFM :: FiniteMap b a; 40.99/18.78 emptyFM = EmptyFM; 40.99/18.78 40.99/18.78 findMax :: FiniteMap b a -> (b,a); 40.99/18.78 findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); 40.99/18.78 findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; 40.99/18.78 40.99/18.78 findMin :: FiniteMap b a -> (b,a); 40.99/18.78 findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); 40.99/18.78 findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; 40.99/18.78 40.99/18.78 fmToList :: FiniteMap b a -> [(b,a)]; 40.99/18.78 fmToList fm = foldFM fmToList0 [] fm; 40.99/18.78 40.99/18.78 fmToList0 key elt rest = (key,elt) : rest; 40.99/18.78 40.99/18.78 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 40.99/18.78 foldFM k z EmptyFM = z; 40.99/18.78 foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 40.99/18.78 40.99/18.78 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 40.99/18.78 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 40.99/18.78 40.99/18.78 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt fm_R < 2); 40.99/18.78 40.99/18.78 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 xxy xxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 40.99/18.78 40.99/18.78 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 xxy xxz fm_lrr fm_r); 40.99/18.78 40.99/18.78 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); 40.99/18.78 40.99/18.78 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; 40.99/18.78 40.99/18.78 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; 40.99/18.78 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; 40.99/18.78 40.99/18.78 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); 40.99/18.78 40.99/18.78 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); 40.99/18.78 40.99/18.78 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; 40.99/18.78 40.99/18.78 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; 40.99/18.78 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; 40.99/18.78 40.99/18.78 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); 40.99/18.78 40.99/18.78 mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 40.99/18.78 40.99/18.78 mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; 40.99/18.78 mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; 40.99/18.78 40.99/18.78 mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; 40.99/18.78 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); 40.99/18.78 40.99/18.78 mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 40.99/18.78 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); 40.99/18.78 40.99/18.78 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 xxy xxz fm_l fm_rl) fm_rr; 40.99/18.78 40.99/18.78 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 xxy xxz fm_lr fm_r); 40.99/18.78 40.99/18.78 mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxx; 40.99/18.78 40.99/18.78 mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xyu; 40.99/18.78 40.99/18.78 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 40.99/18.78 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 40.99/18.78 40.99/18.78 mkBranchBalance_ok xyv xyw xyx = True; 40.99/18.78 40.99/18.78 mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyx xyw xyx; 40.99/18.78 40.99/18.78 mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; 40.99/18.78 mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 40.99/18.78 40.99/18.78 mkBranchLeft_ok0Biggest_left_key yvx = fst (findMax yvx); 40.99/18.78 40.99/18.78 mkBranchLeft_size xyv xyw xyx = sizeFM xyx; 40.99/18.78 40.99/18.78 mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (1 + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzv xzu; 40.99/18.78 40.99/18.78 mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyv xyw xyv; 40.99/18.78 40.99/18.78 mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; 40.99/18.78 mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; 40.99/18.78 40.99/18.78 mkBranchRight_ok0Smallest_right_key yvw = fst (findMin yvw); 40.99/18.78 40.99/18.78 mkBranchRight_size xyv xyw xyx = sizeFM xyv; 40.99/18.78 40.99/18.78 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 40.99/18.78 mkBranchUnbox xyv xyw xyx x = x; 40.99/18.78 40.99/18.78 mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 40.99/18.78 mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; 40.99/18.78 mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; 40.99/18.78 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); 40.99/18.78 40.99/18.78 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); 40.99/18.78 40.99/18.78 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); 40.99/18.78 40.99/18.78 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)); 40.99/18.78 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; 40.99/18.78 40.99/18.78 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; 40.99/18.78 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); 40.99/18.78 40.99/18.78 mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); 40.99/18.78 40.99/18.78 mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); 40.99/18.78 40.99/18.78 mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; 40.99/18.78 mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; 40.99/18.78 40.99/18.78 mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; 40.99/18.78 mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; 40.99/18.78 40.99/18.78 plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 40.99/18.78 plusFM EmptyFM fm2 = fm2; 40.99/18.78 plusFM fm1 EmptyFM = fm1; 40.99/18.78 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); 40.99/18.78 40.99/18.78 plusFMGts xzw xzx = splitGT xzw xzx; 40.99/18.78 40.99/18.78 plusFMLts xzw xzx = splitLT xzw xzx; 40.99/18.78 40.99/18.78 sIZE_RATIO :: Int; 40.99/18.78 sIZE_RATIO = 5; 40.99/18.78 40.99/18.78 sizeFM :: FiniteMap a b -> Int; 40.99/18.78 sizeFM EmptyFM = 0; 40.99/18.78 sizeFM (Branch wux wuy size wuz wvu) = size; 40.99/18.78 40.99/18.78 splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 40.99/18.78 splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; 40.99/18.78 splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; 40.99/18.78 40.99/18.78 splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; 40.99/18.78 40.99/18.78 splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; 40.99/18.78 splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; 40.99/18.78 40.99/18.78 splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; 40.99/18.78 splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); 40.99/18.78 40.99/18.78 splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); 40.99/18.78 40.99/18.78 splitGT4 EmptyFM split_key = emptyFM; 40.99/18.78 splitGT4 xvz xwu = splitGT3 xvz xwu; 40.99/18.78 40.99/18.78 splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 40.99/18.78 splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; 40.99/18.78 splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; 40.99/18.78 40.99/18.78 splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; 40.99/18.78 40.99/18.78 splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); 40.99/18.78 splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; 40.99/18.78 40.99/18.78 splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; 40.99/18.78 splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); 40.99/18.78 40.99/18.78 splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); 40.99/18.78 40.99/18.78 splitLT4 EmptyFM split_key = emptyFM; 40.99/18.78 splitLT4 xwx xwy = splitLT3 xwx xwy; 40.99/18.78 40.99/18.78 unitFM :: b -> a -> FiniteMap b a; 40.99/18.78 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 40.99/18.78 40.99/18.78 } 40.99/18.78 module Maybe where { 40.99/18.78 import qualified FiniteMap; 40.99/18.78 import qualified Main; 40.99/18.78 import qualified Prelude; 40.99/18.78 } 40.99/18.78 module Main where { 40.99/18.78 import qualified FiniteMap; 40.99/18.78 import qualified Maybe; 40.99/18.78 import qualified Prelude; 40.99/18.78 } 40.99/18.78 40.99/18.78 ---------------------------------------- 40.99/18.78 40.99/18.78 (13) NumRed (SOUND) 40.99/18.78 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 40.99/18.78 ---------------------------------------- 40.99/18.78 40.99/18.78 (14) 40.99/18.78 Obligation: 40.99/18.78 mainModule Main 40.99/18.78 module FiniteMap where { 40.99/18.78 import qualified Main; 40.99/18.78 import qualified Maybe; 40.99/18.78 import qualified Prelude; 40.99/18.78 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 40.99/18.78 40.99/18.78 instance (Eq a, Eq b) => Eq FiniteMap b a where { 40.99/18.78 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 40.99/18.78 } 40.99/18.78 addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; 40.99/18.78 addToFM fm key elt = addToFM_C addToFM0 fm key elt; 40.99/18.78 40.99/18.78 addToFM0 old new = new; 40.99/18.78 40.99/18.78 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 40.99/18.78 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 40.99/18.78 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; 40.99/18.78 40.99/18.78 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; 40.99/18.78 40.99/18.78 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); 40.99/18.78 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; 40.99/18.78 40.99/18.78 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; 40.99/18.78 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); 40.99/18.78 40.99/18.78 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); 40.99/18.78 40.99/18.78 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 40.99/18.78 addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; 40.99/18.78 40.99/18.78 emptyFM :: FiniteMap a b; 40.99/18.78 emptyFM = EmptyFM; 40.99/18.78 40.99/18.78 findMax :: FiniteMap a b -> (a,b); 40.99/18.78 findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); 40.99/18.78 findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; 40.99/18.78 40.99/18.78 findMin :: FiniteMap a b -> (a,b); 40.99/18.78 findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); 40.99/18.78 findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; 40.99/18.78 40.99/18.78 fmToList :: FiniteMap b a -> [(b,a)]; 40.99/18.78 fmToList fm = foldFM fmToList0 [] fm; 40.99/18.78 40.99/18.78 fmToList0 key elt rest = (key,elt) : rest; 40.99/18.78 40.99/18.78 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 40.99/18.78 foldFM k z EmptyFM = z; 40.99/18.78 foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 40.99/18.78 40.99/18.78 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 40.99/18.78 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 40.99/18.78 40.99/18.78 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt fm_R < Pos (Succ (Succ Zero))); 40.99/18.78 40.99/18.78 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))))))) xxy xxz fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); 40.99/18.78 40.99/18.78 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))))))))))))) xxy xxz fm_lrr fm_r); 40.99/18.78 40.99/18.78 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); 40.99/18.78 40.99/18.78 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; 40.99/18.78 40.99/18.78 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; 40.99/18.78 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; 40.99/18.78 40.99/18.78 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); 40.99/18.78 40.99/18.78 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); 40.99/18.78 40.99/18.78 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; 40.99/18.78 40.99/18.78 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; 40.99/18.78 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; 40.99/18.78 40.99/18.78 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); 40.99/18.78 40.99/18.78 mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 40.99/18.78 40.99/18.78 mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; 40.99/18.78 mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; 40.99/18.78 40.99/18.78 mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; 40.99/18.78 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); 40.99/18.78 40.99/18.78 mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 40.99/18.78 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); 40.99/18.78 40.99/18.78 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))))) xxy xxz fm_l fm_rl) fm_rr; 40.99/18.78 40.99/18.78 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)))))))))) xxy xxz fm_lr fm_r); 40.99/18.78 40.99/18.78 mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xxx; 40.99/18.78 40.99/18.78 mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xyu; 40.99/18.78 40.99/18.78 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 40.99/18.78 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 40.99/18.78 40.99/18.78 mkBranchBalance_ok xyv xyw xyx = True; 40.99/18.78 40.99/18.78 mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyx xyw xyx; 40.99/18.78 40.99/18.78 mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; 40.99/18.78 mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 40.99/18.78 40.99/18.78 mkBranchLeft_ok0Biggest_left_key yvx = fst (findMax yvx); 40.99/18.78 40.99/18.78 mkBranchLeft_size xyv xyw xyx = sizeFM xyx; 40.99/18.78 40.99/18.78 mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (Pos (Succ Zero) + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzv xzu; 40.99/18.78 40.99/18.78 mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyv xyw xyv; 40.99/18.78 40.99/18.78 mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; 40.99/18.78 mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; 40.99/18.78 40.99/18.78 mkBranchRight_ok0Smallest_right_key yvw = fst (findMin yvw); 40.99/18.78 40.99/18.78 mkBranchRight_size xyv xyw xyx = sizeFM xyv; 40.99/18.78 40.99/18.78 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 40.99/18.78 mkBranchUnbox xyv xyw xyx x = x; 40.99/18.78 40.99/18.78 mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 40.99/18.78 mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; 40.99/18.78 mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; 40.99/18.78 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); 40.99/18.78 40.99/18.78 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); 40.99/18.78 40.99/18.78 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); 40.99/18.78 40.99/18.78 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)); 40.99/18.78 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; 40.99/18.78 40.99/18.78 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; 40.99/18.78 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); 40.99/18.78 40.99/18.78 mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); 40.99/18.78 40.99/18.78 mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); 40.99/18.78 40.99/18.78 mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; 40.99/18.78 mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; 40.99/18.78 40.99/18.78 mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; 40.99/18.78 mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; 40.99/18.78 40.99/18.78 plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 40.99/18.78 plusFM EmptyFM fm2 = fm2; 40.99/18.78 plusFM fm1 EmptyFM = fm1; 40.99/18.78 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); 40.99/18.78 40.99/18.78 plusFMGts xzw xzx = splitGT xzw xzx; 40.99/18.78 40.99/18.78 plusFMLts xzw xzx = splitLT xzw xzx; 40.99/18.78 40.99/18.78 sIZE_RATIO :: Int; 40.99/18.78 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 40.99/18.78 40.99/18.78 sizeFM :: FiniteMap b a -> Int; 40.99/18.78 sizeFM EmptyFM = Pos Zero; 40.99/18.78 sizeFM (Branch wux wuy size wuz wvu) = size; 40.99/18.78 40.99/18.78 splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 40.99/18.78 splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; 40.99/18.78 splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; 40.99/18.78 40.99/18.78 splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; 40.99/18.78 40.99/18.78 splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; 40.99/18.78 splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; 40.99/18.78 40.99/18.78 splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; 40.99/18.78 splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); 40.99/18.78 40.99/18.78 splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); 40.99/18.78 40.99/18.78 splitGT4 EmptyFM split_key = emptyFM; 40.99/18.78 splitGT4 xvz xwu = splitGT3 xvz xwu; 40.99/18.78 40.99/18.78 splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 40.99/18.78 splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; 40.99/18.78 splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; 40.99/18.78 40.99/18.78 splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; 40.99/18.78 40.99/18.78 splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); 40.99/18.78 splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; 40.99/18.78 40.99/18.78 splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; 40.99/18.78 splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); 40.99/18.78 40.99/18.78 splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); 40.99/18.78 40.99/18.78 splitLT4 EmptyFM split_key = emptyFM; 40.99/18.78 splitLT4 xwx xwy = splitLT3 xwx xwy; 40.99/18.78 40.99/18.78 unitFM :: a -> b -> FiniteMap a b; 40.99/18.78 unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; 40.99/18.78 40.99/18.78 } 40.99/18.78 module Maybe where { 40.99/18.78 import qualified FiniteMap; 40.99/18.78 import qualified Main; 40.99/18.78 import qualified Prelude; 40.99/18.78 } 40.99/18.78 module Main where { 40.99/18.78 import qualified FiniteMap; 40.99/18.78 import qualified Maybe; 40.99/18.78 import qualified Prelude; 40.99/18.78 } 40.99/18.78 40.99/18.78 ---------------------------------------- 40.99/18.78 40.99/18.78 (15) Narrow (SOUND) 40.99/18.78 Haskell To QDPs 40.99/18.78 40.99/18.78 digraph dp_graph { 40.99/18.78 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.plusFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 40.99/18.78 3[label="FiniteMap.plusFM yvy3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 40.99/18.78 4[label="FiniteMap.plusFM yvy3 yvy4",fontsize=16,color="burlywood",shape="triangle"];5112[label="yvy3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 5112[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5112 -> 5[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 5113[label="yvy3/FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=10,color="white",style="solid",shape="box"];4 -> 5113[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5113 -> 6[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 5[label="FiniteMap.plusFM FiniteMap.EmptyFM yvy4",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 40.99/18.78 6[label="FiniteMap.plusFM (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy4",fontsize=16,color="burlywood",shape="box"];5114[label="yvy4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 5114[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5114 -> 8[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 5115[label="yvy4/FiniteMap.Branch yvy40 yvy41 yvy42 yvy43 yvy44",fontsize=10,color="white",style="solid",shape="box"];6 -> 5115[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5115 -> 9[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 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]; 40.99/18.78 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]; 40.99/18.78 10[label="FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=16,color="green",shape="box"];11 -> 12[label="",style="dashed", color="red", weight=0]; 40.99/18.78 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]; 40.99/18.78 11 -> 14[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 13 -> 4[label="",style="dashed", color="red", weight=0]; 40.99/18.78 13[label="FiniteMap.plusFM (FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy43",fontsize=16,color="magenta"];13 -> 15[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 13 -> 16[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 14 -> 4[label="",style="dashed", color="red", weight=0]; 40.99/18.78 14[label="FiniteMap.plusFM (FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy44",fontsize=16,color="magenta"];14 -> 17[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 14 -> 18[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 12[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy6 yvy5",fontsize=16,color="burlywood",shape="triangle"];5116[label="yvy6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];12 -> 5116[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5116 -> 19[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 5117[label="yvy6/FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=10,color="white",style="solid",shape="box"];12 -> 5117[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5117 -> 20[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 15[label="FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];15 -> 21[label="",style="solid", color="black", weight=3]; 40.99/18.78 16[label="yvy43",fontsize=16,color="green",shape="box"];17[label="FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];17 -> 22[label="",style="solid", color="black", weight=3]; 40.99/18.78 18[label="yvy44",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]; 40.99/18.78 20[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy5",fontsize=16,color="burlywood",shape="box"];5118[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];20 -> 5118[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5118 -> 24[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 5119[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];20 -> 5119[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5119 -> 25[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 21[label="FiniteMap.splitLT (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];21 -> 26[label="",style="solid", color="black", weight=3]; 40.99/18.78 22[label="FiniteMap.splitGT (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];22 -> 27[label="",style="solid", color="black", weight=3]; 40.99/18.78 23[label="FiniteMap.mkVBalBranch5 yvy40 yvy41 FiniteMap.EmptyFM yvy5",fontsize=16,color="black",shape="box"];23 -> 28[label="",style="solid", color="black", weight=3]; 40.99/18.78 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]; 40.99/18.78 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]; 40.99/18.78 26[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="triangle"];26 -> 31[label="",style="solid", color="black", weight=3]; 40.99/18.78 27[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="triangle"];27 -> 32[label="",style="solid", color="black", weight=3]; 40.99/18.78 28[label="FiniteMap.addToFM yvy5 yvy40 yvy41",fontsize=16,color="black",shape="triangle"];28 -> 33[label="",style="solid", color="black", weight=3]; 40.99/18.78 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]; 40.99/18.78 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]; 40.99/18.78 31[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (yvy40 < yvy30)",fontsize=16,color="black",shape="box"];31 -> 36[label="",style="solid", color="black", weight=3]; 40.99/18.78 32[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (yvy40 > yvy30)",fontsize=16,color="black",shape="box"];32 -> 37[label="",style="solid", color="black", weight=3]; 40.99/18.78 33[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy5 yvy40 yvy41",fontsize=16,color="burlywood",shape="triangle"];5120[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];33 -> 5120[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5120 -> 38[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 5121[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];33 -> 5121[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5121 -> 39[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 34 -> 28[label="",style="dashed", color="red", weight=0]; 40.99/18.78 34[label="FiniteMap.addToFM (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy40 yvy41",fontsize=16,color="magenta"];34 -> 40[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 35[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64)",fontsize=16,color="black",shape="box"];35 -> 41[label="",style="solid", color="black", weight=3]; 40.99/18.78 36[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare yvy40 yvy30 == LT)",fontsize=16,color="black",shape="box"];36 -> 42[label="",style="solid", color="black", weight=3]; 40.99/18.78 37[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare yvy40 yvy30 == GT)",fontsize=16,color="black",shape="box"];37 -> 43[label="",style="solid", color="black", weight=3]; 40.99/18.78 38[label="FiniteMap.addToFM_C FiniteMap.addToFM0 FiniteMap.EmptyFM yvy40 yvy41",fontsize=16,color="black",shape="box"];38 -> 44[label="",style="solid", color="black", weight=3]; 40.99/18.78 39[label="FiniteMap.addToFM_C FiniteMap.addToFM0 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54) yvy40 yvy41",fontsize=16,color="black",shape="box"];39 -> 45[label="",style="solid", color="black", weight=3]; 40.99/18.78 40[label="FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="green",shape="box"];41[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (compare (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];41 -> 46[label="",style="solid", color="black", weight=3]; 40.99/18.78 42[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare3 yvy40 yvy30 == LT)",fontsize=16,color="black",shape="box"];42 -> 47[label="",style="solid", color="black", weight=3]; 40.99/18.78 43[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare3 yvy40 yvy30 == GT)",fontsize=16,color="black",shape="box"];43 -> 48[label="",style="solid", color="black", weight=3]; 40.99/18.78 44[label="FiniteMap.addToFM_C4 FiniteMap.addToFM0 FiniteMap.EmptyFM yvy40 yvy41",fontsize=16,color="black",shape="box"];44 -> 49[label="",style="solid", color="black", weight=3]; 40.99/18.78 45[label="FiniteMap.addToFM_C3 FiniteMap.addToFM0 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54) yvy40 yvy41",fontsize=16,color="black",shape="box"];45 -> 50[label="",style="solid", color="black", weight=3]; 40.99/18.78 46[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];46 -> 51[label="",style="solid", color="black", weight=3]; 40.99/18.78 47[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare2 yvy40 yvy30 (yvy40 == yvy30) == LT)",fontsize=16,color="burlywood",shape="box"];5122[label="yvy40/Left yvy400",fontsize=10,color="white",style="solid",shape="box"];47 -> 5122[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5122 -> 52[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 5123[label="yvy40/Right yvy400",fontsize=10,color="white",style="solid",shape="box"];47 -> 5123[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5123 -> 53[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 48[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (compare2 yvy40 yvy30 (yvy40 == yvy30) == GT)",fontsize=16,color="burlywood",shape="box"];5124[label="yvy40/Left yvy400",fontsize=10,color="white",style="solid",shape="box"];48 -> 5124[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5124 -> 54[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 5125[label="yvy40/Right yvy400",fontsize=10,color="white",style="solid",shape="box"];48 -> 5125[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5125 -> 55[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 49[label="FiniteMap.unitFM yvy40 yvy41",fontsize=16,color="black",shape="box"];49 -> 56[label="",style="solid", color="black", weight=3]; 40.99/18.78 50[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (yvy40 < yvy50)",fontsize=16,color="black",shape="box"];50 -> 57[label="",style="solid", color="black", weight=3]; 40.99/18.78 51[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt FiniteMap.sIZE_RATIO (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];51 -> 58[label="",style="solid", color="black", weight=3]; 40.99/18.78 52[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) yvy30 (Left yvy400 == yvy30) == LT)",fontsize=16,color="burlywood",shape="box"];5126[label="yvy30/Left yvy300",fontsize=10,color="white",style="solid",shape="box"];52 -> 5126[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5126 -> 59[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 5127[label="yvy30/Right yvy300",fontsize=10,color="white",style="solid",shape="box"];52 -> 5127[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5127 -> 60[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 53[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) yvy30 (Right yvy400 == yvy30) == LT)",fontsize=16,color="burlywood",shape="box"];5128[label="yvy30/Left yvy300",fontsize=10,color="white",style="solid",shape="box"];53 -> 5128[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5128 -> 61[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 5129[label="yvy30/Right yvy300",fontsize=10,color="white",style="solid",shape="box"];53 -> 5129[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5129 -> 62[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 54[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) yvy30 (Left yvy400 == yvy30) == GT)",fontsize=16,color="burlywood",shape="box"];5130[label="yvy30/Left yvy300",fontsize=10,color="white",style="solid",shape="box"];54 -> 5130[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5130 -> 63[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 5131[label="yvy30/Right yvy300",fontsize=10,color="white",style="solid",shape="box"];54 -> 5131[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5131 -> 64[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 55[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) yvy30 (Right yvy400 == yvy30) == GT)",fontsize=16,color="burlywood",shape="box"];5132[label="yvy30/Left yvy300",fontsize=10,color="white",style="solid",shape="box"];55 -> 5132[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5132 -> 65[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 5133[label="yvy30/Right yvy300",fontsize=10,color="white",style="solid",shape="box"];55 -> 5133[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5133 -> 66[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 56[label="FiniteMap.Branch yvy40 yvy41 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];56 -> 67[label="",style="dashed", color="green", weight=3]; 40.99/18.78 56 -> 68[label="",style="dashed", color="green", weight=3]; 40.99/18.78 57[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (compare yvy40 yvy50 == LT)",fontsize=16,color="black",shape="box"];57 -> 69[label="",style="solid", color="black", weight=3]; 40.99/18.78 58[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];58 -> 70[label="",style="solid", color="black", weight=3]; 40.99/18.78 59[label="FiniteMap.splitLT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) (Left yvy300) (Left yvy400 == Left yvy300) == LT)",fontsize=16,color="black",shape="box"];59 -> 71[label="",style="solid", color="black", weight=3]; 40.99/18.78 60[label="FiniteMap.splitLT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) (Right yvy300) (Left yvy400 == Right yvy300) == LT)",fontsize=16,color="black",shape="box"];60 -> 72[label="",style="solid", color="black", weight=3]; 40.99/18.78 61[label="FiniteMap.splitLT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) (Left yvy300) (Right yvy400 == Left yvy300) == LT)",fontsize=16,color="black",shape="box"];61 -> 73[label="",style="solid", color="black", weight=3]; 40.99/18.78 62[label="FiniteMap.splitLT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) (Right yvy300) (Right yvy400 == Right yvy300) == LT)",fontsize=16,color="black",shape="box"];62 -> 74[label="",style="solid", color="black", weight=3]; 40.99/18.78 63[label="FiniteMap.splitGT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) (Left yvy300) (Left yvy400 == Left yvy300) == GT)",fontsize=16,color="black",shape="box"];63 -> 75[label="",style="solid", color="black", weight=3]; 40.99/18.78 64[label="FiniteMap.splitGT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) (Right yvy300) (Left yvy400 == Right yvy300) == GT)",fontsize=16,color="black",shape="box"];64 -> 76[label="",style="solid", color="black", weight=3]; 40.99/18.78 65[label="FiniteMap.splitGT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) (Left yvy300) (Right yvy400 == Left yvy300) == GT)",fontsize=16,color="black",shape="box"];65 -> 77[label="",style="solid", color="black", weight=3]; 40.99/18.78 66[label="FiniteMap.splitGT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) (Right yvy300) (Right yvy400 == Right yvy300) == GT)",fontsize=16,color="black",shape="box"];66 -> 78[label="",style="solid", color="black", weight=3]; 40.99/18.78 67[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];67 -> 79[label="",style="solid", color="black", weight=3]; 40.99/18.78 68 -> 67[label="",style="dashed", color="red", weight=0]; 40.99/18.78 68[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];69[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (compare3 yvy40 yvy50 == LT)",fontsize=16,color="black",shape="box"];69 -> 80[label="",style="solid", color="black", weight=3]; 40.99/18.78 70[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];70 -> 81[label="",style="solid", color="black", weight=3]; 40.99/18.78 71 -> 365[label="",style="dashed", color="red", weight=0]; 40.99/18.78 71[label="FiniteMap.splitLT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) (Left yvy300) (yvy400 == yvy300) == LT)",fontsize=16,color="magenta"];71 -> 366[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 71 -> 367[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 71 -> 368[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 71 -> 369[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 71 -> 370[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 71 -> 371[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 71 -> 372[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 72 -> 218[label="",style="dashed", color="red", weight=0]; 40.99/18.78 72[label="FiniteMap.splitLT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) (Right yvy300) False == LT)",fontsize=16,color="magenta"];72 -> 219[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 73 -> 226[label="",style="dashed", color="red", weight=0]; 40.99/18.78 73[label="FiniteMap.splitLT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) (Left yvy300) False == LT)",fontsize=16,color="magenta"];73 -> 227[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 74 -> 388[label="",style="dashed", color="red", weight=0]; 40.99/18.78 74[label="FiniteMap.splitLT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) (Right yvy300) (yvy400 == yvy300) == LT)",fontsize=16,color="magenta"];74 -> 389[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 74 -> 390[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 74 -> 391[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 74 -> 392[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 74 -> 393[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 74 -> 394[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 74 -> 395[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 75 -> 450[label="",style="dashed", color="red", weight=0]; 40.99/18.78 75[label="FiniteMap.splitGT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) (Left yvy300) (yvy400 == yvy300) == GT)",fontsize=16,color="magenta"];75 -> 451[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 75 -> 452[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 75 -> 453[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 75 -> 454[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 75 -> 455[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 75 -> 456[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 75 -> 457[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 76 -> 269[label="",style="dashed", color="red", weight=0]; 40.99/18.78 76[label="FiniteMap.splitGT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (compare2 (Left yvy400) (Right yvy300) False == GT)",fontsize=16,color="magenta"];76 -> 270[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 77 -> 280[label="",style="dashed", color="red", weight=0]; 40.99/18.78 77[label="FiniteMap.splitGT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) (Left yvy300) False == GT)",fontsize=16,color="magenta"];77 -> 281[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 78 -> 474[label="",style="dashed", color="red", weight=0]; 40.99/18.78 78[label="FiniteMap.splitGT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (compare2 (Right yvy400) (Right yvy300) (yvy400 == yvy300) == GT)",fontsize=16,color="magenta"];78 -> 475[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 78 -> 476[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 78 -> 477[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 78 -> 478[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 78 -> 479[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 78 -> 480[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 78 -> 481[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 79[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];80[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (compare2 yvy40 yvy50 (yvy40 == yvy50) == LT)",fontsize=16,color="burlywood",shape="box"];5134[label="yvy40/Left yvy400",fontsize=10,color="white",style="solid",shape="box"];80 -> 5134[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5134 -> 118[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 5135[label="yvy40/Right yvy400",fontsize=10,color="white",style="solid",shape="box"];80 -> 5135[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5135 -> 119[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 81[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) yvy62) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64) == LT)",fontsize=16,color="burlywood",shape="box"];5136[label="yvy62/Pos yvy620",fontsize=10,color="white",style="solid",shape="box"];81 -> 5136[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5136 -> 120[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 5137[label="yvy62/Neg yvy620",fontsize=10,color="white",style="solid",shape="box"];81 -> 5137[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5137 -> 121[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 366[label="yvy300",fontsize=16,color="green",shape="box"];367[label="yvy33",fontsize=16,color="green",shape="box"];368[label="yvy32",fontsize=16,color="green",shape="box"];369[label="yvy34",fontsize=16,color="green",shape="box"];370[label="yvy400",fontsize=16,color="green",shape="box"];371 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.78 371[label="compare2 (Left yvy400) (Left yvy300) (yvy400 == yvy300) == LT",fontsize=16,color="magenta"];371 -> 376[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 371 -> 377[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 372[label="yvy31",fontsize=16,color="green",shape="box"];365[label="FiniteMap.splitLT2 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) yvy73",fontsize=16,color="burlywood",shape="triangle"];5138[label="yvy73/False",fontsize=10,color="white",style="solid",shape="box"];365 -> 5138[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5138 -> 378[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 5139[label="yvy73/True",fontsize=10,color="white",style="solid",shape="box"];365 -> 5139[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5139 -> 379[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 219 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.78 219[label="compare2 (Left yvy400) (Right yvy300) False == LT",fontsize=16,color="magenta"];219 -> 222[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 219 -> 223[label="",style="dashed", color="magenta", weight=3]; 40.99/18.78 218[label="FiniteMap.splitLT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) yvy67",fontsize=16,color="burlywood",shape="triangle"];5140[label="yvy67/False",fontsize=10,color="white",style="solid",shape="box"];218 -> 5140[label="",style="solid", color="burlywood", weight=9]; 40.99/18.78 5140 -> 224[label="",style="solid", color="burlywood", weight=3]; 40.99/18.78 5141[label="yvy67/True",fontsize=10,color="white",style="solid",shape="box"];218 -> 5141[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5141 -> 225[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 227 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 227[label="compare2 (Right yvy400) (Left yvy300) False == LT",fontsize=16,color="magenta"];227 -> 230[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 227 -> 231[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 226[label="FiniteMap.splitLT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) yvy68",fontsize=16,color="burlywood",shape="triangle"];5142[label="yvy68/False",fontsize=10,color="white",style="solid",shape="box"];226 -> 5142[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5142 -> 232[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5143[label="yvy68/True",fontsize=10,color="white",style="solid",shape="box"];226 -> 5143[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5143 -> 233[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 389[label="yvy31",fontsize=16,color="green",shape="box"];390 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 390[label="compare2 (Right yvy400) (Right yvy300) (yvy400 == yvy300) == LT",fontsize=16,color="magenta"];390 -> 399[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 390 -> 400[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 391[label="yvy300",fontsize=16,color="green",shape="box"];392[label="yvy34",fontsize=16,color="green",shape="box"];393[label="yvy33",fontsize=16,color="green",shape="box"];394[label="yvy32",fontsize=16,color="green",shape="box"];395[label="yvy400",fontsize=16,color="green",shape="box"];388[label="FiniteMap.splitLT2 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) yvy74",fontsize=16,color="burlywood",shape="triangle"];5144[label="yvy74/False",fontsize=10,color="white",style="solid",shape="box"];388 -> 5144[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5144 -> 401[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5145[label="yvy74/True",fontsize=10,color="white",style="solid",shape="box"];388 -> 5145[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5145 -> 402[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 451[label="yvy300",fontsize=16,color="green",shape="box"];452[label="yvy32",fontsize=16,color="green",shape="box"];453 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 453[label="compare2 (Left yvy400) (Left yvy300) (yvy400 == yvy300) == GT",fontsize=16,color="magenta"];453 -> 461[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 453 -> 462[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 454[label="yvy33",fontsize=16,color="green",shape="box"];455[label="yvy400",fontsize=16,color="green",shape="box"];456[label="yvy34",fontsize=16,color="green",shape="box"];457[label="yvy31",fontsize=16,color="green",shape="box"];450[label="FiniteMap.splitGT2 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) yvy89",fontsize=16,color="burlywood",shape="triangle"];5146[label="yvy89/False",fontsize=10,color="white",style="solid",shape="box"];450 -> 5146[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5146 -> 463[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5147[label="yvy89/True",fontsize=10,color="white",style="solid",shape="box"];450 -> 5147[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5147 -> 464[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 270 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 270[label="compare2 (Left yvy400) (Right yvy300) False == GT",fontsize=16,color="magenta"];270 -> 273[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 270 -> 274[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 269[label="FiniteMap.splitGT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) yvy69",fontsize=16,color="burlywood",shape="triangle"];5148[label="yvy69/False",fontsize=10,color="white",style="solid",shape="box"];269 -> 5148[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5148 -> 275[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5149[label="yvy69/True",fontsize=10,color="white",style="solid",shape="box"];269 -> 5149[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5149 -> 276[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 281 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 281[label="compare2 (Right yvy400) (Left yvy300) False == GT",fontsize=16,color="magenta"];281 -> 284[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 281 -> 285[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 280[label="FiniteMap.splitGT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) yvy70",fontsize=16,color="burlywood",shape="triangle"];5150[label="yvy70/False",fontsize=10,color="white",style="solid",shape="box"];280 -> 5150[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5150 -> 286[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5151[label="yvy70/True",fontsize=10,color="white",style="solid",shape="box"];280 -> 5151[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5151 -> 287[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 475[label="yvy33",fontsize=16,color="green",shape="box"];476[label="yvy34",fontsize=16,color="green",shape="box"];477[label="yvy400",fontsize=16,color="green",shape="box"];478[label="yvy300",fontsize=16,color="green",shape="box"];479[label="yvy31",fontsize=16,color="green",shape="box"];480[label="yvy32",fontsize=16,color="green",shape="box"];481 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 481[label="compare2 (Right yvy400) (Right yvy300) (yvy400 == yvy300) == GT",fontsize=16,color="magenta"];481 -> 485[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 481 -> 486[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 474[label="FiniteMap.splitGT2 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) yvy90",fontsize=16,color="burlywood",shape="triangle"];5152[label="yvy90/False",fontsize=10,color="white",style="solid",shape="box"];474 -> 5152[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5152 -> 487[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5153[label="yvy90/True",fontsize=10,color="white",style="solid",shape="box"];474 -> 5153[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5153 -> 488[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 118[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 (compare2 (Left yvy400) yvy50 (Left yvy400 == yvy50) == LT)",fontsize=16,color="burlywood",shape="box"];5154[label="yvy50/Left yvy500",fontsize=10,color="white",style="solid",shape="box"];118 -> 5154[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5154 -> 190[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5155[label="yvy50/Right yvy500",fontsize=10,color="white",style="solid",shape="box"];118 -> 5155[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5155 -> 191[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 119[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 (compare2 (Right yvy400) yvy50 (Right yvy400 == yvy50) == LT)",fontsize=16,color="burlywood",shape="box"];5156[label="yvy50/Left yvy500",fontsize=10,color="white",style="solid",shape="box"];119 -> 5156[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5156 -> 192[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5157[label="yvy50/Right yvy500",fontsize=10,color="white",style="solid",shape="box"];119 -> 5157[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5157 -> 193[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 120[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (Pos yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];120 -> 194[label="",style="solid", color="black", weight=3]; 40.99/18.79 121[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (Neg yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64) == LT)",fontsize=16,color="black",shape="box"];121 -> 195[label="",style="solid", color="black", weight=3]; 40.99/18.79 376[label="LT",fontsize=16,color="green",shape="box"];377 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.79 377[label="compare2 (Left yvy400) (Left yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];377 -> 2823[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 377 -> 2824[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 377 -> 2825[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 122[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5158[label="yvy400/LT",fontsize=10,color="white",style="solid",shape="box"];122 -> 5158[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5158 -> 196[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5159[label="yvy400/EQ",fontsize=10,color="white",style="solid",shape="box"];122 -> 5159[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5159 -> 197[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5160[label="yvy400/GT",fontsize=10,color="white",style="solid",shape="box"];122 -> 5160[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5160 -> 198[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 378[label="FiniteMap.splitLT2 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) False",fontsize=16,color="black",shape="box"];378 -> 407[label="",style="solid", color="black", weight=3]; 40.99/18.79 379[label="FiniteMap.splitLT2 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) True",fontsize=16,color="black",shape="box"];379 -> 408[label="",style="solid", color="black", weight=3]; 40.99/18.79 222[label="LT",fontsize=16,color="green",shape="box"];223 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.79 223[label="compare2 (Left yvy400) (Right yvy300) False",fontsize=16,color="magenta"];223 -> 2826[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 223 -> 2827[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 223 -> 2828[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 224[label="FiniteMap.splitLT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) False",fontsize=16,color="black",shape="box"];224 -> 235[label="",style="solid", color="black", weight=3]; 40.99/18.79 225[label="FiniteMap.splitLT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) True",fontsize=16,color="black",shape="box"];225 -> 236[label="",style="solid", color="black", weight=3]; 40.99/18.79 230[label="LT",fontsize=16,color="green",shape="box"];231 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.79 231[label="compare2 (Right yvy400) (Left yvy300) False",fontsize=16,color="magenta"];231 -> 2829[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 231 -> 2830[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 231 -> 2831[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 232[label="FiniteMap.splitLT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) False",fontsize=16,color="black",shape="box"];232 -> 278[label="",style="solid", color="black", weight=3]; 40.99/18.79 233[label="FiniteMap.splitLT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) True",fontsize=16,color="black",shape="box"];233 -> 279[label="",style="solid", color="black", weight=3]; 40.99/18.79 399[label="LT",fontsize=16,color="green",shape="box"];400 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.79 400[label="compare2 (Right yvy400) (Right yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];400 -> 2832[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 400 -> 2833[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 400 -> 2834[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 401[label="FiniteMap.splitLT2 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) False",fontsize=16,color="black",shape="box"];401 -> 413[label="",style="solid", color="black", weight=3]; 40.99/18.79 402[label="FiniteMap.splitLT2 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) True",fontsize=16,color="black",shape="box"];402 -> 414[label="",style="solid", color="black", weight=3]; 40.99/18.79 461[label="GT",fontsize=16,color="green",shape="box"];462 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.79 462[label="compare2 (Left yvy400) (Left yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];462 -> 2835[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 462 -> 2836[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 462 -> 2837[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 463[label="FiniteMap.splitGT2 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) False",fontsize=16,color="black",shape="box"];463 -> 492[label="",style="solid", color="black", weight=3]; 40.99/18.79 464[label="FiniteMap.splitGT2 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) True",fontsize=16,color="black",shape="box"];464 -> 493[label="",style="solid", color="black", weight=3]; 40.99/18.79 273[label="GT",fontsize=16,color="green",shape="box"];274 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.79 274[label="compare2 (Left yvy400) (Right yvy300) False",fontsize=16,color="magenta"];274 -> 2838[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 274 -> 2839[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 274 -> 2840[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 275[label="FiniteMap.splitGT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) False",fontsize=16,color="black",shape="box"];275 -> 288[label="",style="solid", color="black", weight=3]; 40.99/18.79 276[label="FiniteMap.splitGT2 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) True",fontsize=16,color="black",shape="box"];276 -> 289[label="",style="solid", color="black", weight=3]; 40.99/18.79 284[label="GT",fontsize=16,color="green",shape="box"];285 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.79 285[label="compare2 (Right yvy400) (Left yvy300) False",fontsize=16,color="magenta"];285 -> 2841[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 285 -> 2842[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 285 -> 2843[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 286[label="FiniteMap.splitGT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) False",fontsize=16,color="black",shape="box"];286 -> 326[label="",style="solid", color="black", weight=3]; 40.99/18.79 287[label="FiniteMap.splitGT2 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) True",fontsize=16,color="black",shape="box"];287 -> 327[label="",style="solid", color="black", weight=3]; 40.99/18.79 485[label="GT",fontsize=16,color="green",shape="box"];486 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.79 486[label="compare2 (Right yvy400) (Right yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];486 -> 2844[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 486 -> 2845[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 486 -> 2846[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 487[label="FiniteMap.splitGT2 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) False",fontsize=16,color="black",shape="box"];487 -> 499[label="",style="solid", color="black", weight=3]; 40.99/18.79 488[label="FiniteMap.splitGT2 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) True",fontsize=16,color="black",shape="box"];488 -> 500[label="",style="solid", color="black", weight=3]; 40.99/18.79 190[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 (compare2 (Left yvy400) (Left yvy500) (Left yvy400 == Left yvy500) == LT)",fontsize=16,color="black",shape="box"];190 -> 320[label="",style="solid", color="black", weight=3]; 40.99/18.79 191[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 (compare2 (Left yvy400) (Right yvy500) (Left yvy400 == Right yvy500) == LT)",fontsize=16,color="black",shape="box"];191 -> 321[label="",style="solid", color="black", weight=3]; 40.99/18.79 192[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 (compare2 (Right yvy400) (Left yvy500) (Right yvy400 == Left yvy500) == LT)",fontsize=16,color="black",shape="box"];192 -> 322[label="",style="solid", color="black", weight=3]; 40.99/18.79 193[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 (compare2 (Right yvy400) (Right yvy500) (Right yvy400 == Right yvy500) == LT)",fontsize=16,color="black",shape="box"];193 -> 323[label="",style="solid", color="black", weight=3]; 40.99/18.79 194 -> 324[label="",style="dashed", color="red", weight=0]; 40.99/18.79 194[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64) == LT)",fontsize=16,color="magenta"];194 -> 325[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 195 -> 328[label="",style="dashed", color="red", weight=0]; 40.99/18.79 195[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (primCmpInt (Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64) == LT)",fontsize=16,color="magenta"];195 -> 329[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2823[label="Left yvy400",fontsize=16,color="green",shape="box"];2824[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];5161[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 5161[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5161 -> 2884[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5162[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 5162[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5162 -> 2885[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5163[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 5163[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5163 -> 2886[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5164[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 5164[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5164 -> 2887[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5165[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 5165[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5165 -> 2888[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5166[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 5166[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5166 -> 2889[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5167[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 5167[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5167 -> 2890[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5168[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 5168[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5168 -> 2891[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5169[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 5169[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5169 -> 2892[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5170[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 5170[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5170 -> 2893[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5171[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 5171[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5171 -> 2894[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5172[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 5172[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5172 -> 2895[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5173[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 5173[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5173 -> 2896[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5174[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2824 -> 5174[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5174 -> 2897[label="",style="solid", color="blue", weight=3]; 40.99/18.79 2825[label="Left yvy300",fontsize=16,color="green",shape="box"];2822[label="compare2 yvy790 yvy800 yvy204",fontsize=16,color="burlywood",shape="triangle"];5175[label="yvy204/False",fontsize=10,color="white",style="solid",shape="box"];2822 -> 5175[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5175 -> 2898[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5176[label="yvy204/True",fontsize=10,color="white",style="solid",shape="box"];2822 -> 5176[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5176 -> 2899[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 196[label="LT == yvy300",fontsize=16,color="burlywood",shape="box"];5177[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];196 -> 5177[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5177 -> 330[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5178[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];196 -> 5178[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5178 -> 331[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5179[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];196 -> 5179[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5179 -> 332[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 197[label="EQ == yvy300",fontsize=16,color="burlywood",shape="box"];5180[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];197 -> 5180[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5180 -> 333[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5181[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];197 -> 5181[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5181 -> 334[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5182[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];197 -> 5182[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5182 -> 335[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 198[label="GT == yvy300",fontsize=16,color="burlywood",shape="box"];5183[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];198 -> 5183[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5183 -> 336[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5184[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];198 -> 5184[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5184 -> 337[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5185[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];198 -> 5185[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5185 -> 338[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 407 -> 577[label="",style="dashed", color="red", weight=0]; 40.99/18.79 407[label="FiniteMap.splitLT1 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) (Left yvy20 > Left yvy15)",fontsize=16,color="magenta"];407 -> 578[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 408 -> 236[label="",style="dashed", color="red", weight=0]; 40.99/18.79 408[label="FiniteMap.splitLT yvy18 (Left yvy20)",fontsize=16,color="magenta"];408 -> 432[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 408 -> 433[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2826[label="Left yvy400",fontsize=16,color="green",shape="box"];2827[label="False",fontsize=16,color="green",shape="box"];2828[label="Right yvy300",fontsize=16,color="green",shape="box"];235 -> 584[label="",style="dashed", color="red", weight=0]; 40.99/18.79 235[label="FiniteMap.splitLT1 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (Left yvy400 > Right yvy300)",fontsize=16,color="magenta"];235 -> 585[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 236[label="FiniteMap.splitLT yvy33 (Left yvy400)",fontsize=16,color="burlywood",shape="triangle"];5186[label="yvy33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];236 -> 5186[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5186 -> 382[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5187[label="yvy33/FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334",fontsize=10,color="white",style="solid",shape="box"];236 -> 5187[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5187 -> 383[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2829[label="Right yvy400",fontsize=16,color="green",shape="box"];2830[label="False",fontsize=16,color="green",shape="box"];2831[label="Left yvy300",fontsize=16,color="green",shape="box"];278 -> 593[label="",style="dashed", color="red", weight=0]; 40.99/18.79 278[label="FiniteMap.splitLT1 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (Right yvy400 > Left yvy300)",fontsize=16,color="magenta"];278 -> 594[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 279[label="FiniteMap.splitLT yvy33 (Right yvy400)",fontsize=16,color="burlywood",shape="triangle"];5188[label="yvy33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];279 -> 5188[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5188 -> 386[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5189[label="yvy33/FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334",fontsize=10,color="white",style="solid",shape="box"];279 -> 5189[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5189 -> 387[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2832[label="Right yvy400",fontsize=16,color="green",shape="box"];2833[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];5190[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2833 -> 5190[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5190 -> 2900[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5191[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2833 -> 5191[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5191 -> 2901[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5192[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2833 -> 5192[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5192 -> 2902[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5193[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2833 -> 5193[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5193 -> 2903[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5194[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2833 -> 5194[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5194 -> 2904[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5195[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2833 -> 5195[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5195 -> 2905[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5196[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2833 -> 5196[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5196 -> 2906[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5197[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2833 -> 5197[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5197 -> 2907[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5198[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2833 -> 5198[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5198 -> 2908[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5199[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2833 -> 5199[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5199 -> 2909[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5200[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2833 -> 5200[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5200 -> 2910[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5201[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2833 -> 5201[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5201 -> 2911[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5202[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2833 -> 5202[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5202 -> 2912[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5203[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2833 -> 5203[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5203 -> 2913[label="",style="solid", color="blue", weight=3]; 40.99/18.79 2834[label="Right yvy300",fontsize=16,color="green",shape="box"];413 -> 631[label="",style="dashed", color="red", weight=0]; 40.99/18.79 413[label="FiniteMap.splitLT1 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) (Right yvy35 > Right yvy30)",fontsize=16,color="magenta"];413 -> 632[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 414 -> 279[label="",style="dashed", color="red", weight=0]; 40.99/18.79 414[label="FiniteMap.splitLT yvy33 (Right yvy35)",fontsize=16,color="magenta"];414 -> 466[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 414 -> 467[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2835[label="Left yvy400",fontsize=16,color="green",shape="box"];2836[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];5204[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2836 -> 5204[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5204 -> 2914[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5205[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2836 -> 5205[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5205 -> 2915[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5206[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2836 -> 5206[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5206 -> 2916[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5207[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2836 -> 5207[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5207 -> 2917[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5208[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2836 -> 5208[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5208 -> 2918[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5209[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2836 -> 5209[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5209 -> 2919[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5210[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2836 -> 5210[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5210 -> 2920[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5211[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2836 -> 5211[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5211 -> 2921[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5212[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2836 -> 5212[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5212 -> 2922[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5213[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2836 -> 5213[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5213 -> 2923[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5214[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2836 -> 5214[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5214 -> 2924[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5215[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2836 -> 5215[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5215 -> 2925[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5216[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2836 -> 5216[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5216 -> 2926[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5217[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2836 -> 5217[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5217 -> 2927[label="",style="solid", color="blue", weight=3]; 40.99/18.79 2837[label="Left yvy300",fontsize=16,color="green",shape="box"];492 -> 637[label="",style="dashed", color="red", weight=0]; 40.99/18.79 492[label="FiniteMap.splitGT1 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) (Left yvy50 < Left yvy45)",fontsize=16,color="magenta"];492 -> 638[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 493 -> 289[label="",style="dashed", color="red", weight=0]; 40.99/18.79 493[label="FiniteMap.splitGT yvy49 (Left yvy50)",fontsize=16,color="magenta"];493 -> 516[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 493 -> 517[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2838[label="Left yvy400",fontsize=16,color="green",shape="box"];2839[label="False",fontsize=16,color="green",shape="box"];2840[label="Right yvy300",fontsize=16,color="green",shape="box"];288 -> 643[label="",style="dashed", color="red", weight=0]; 40.99/18.79 288[label="FiniteMap.splitGT1 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) (Left yvy400 < Right yvy300)",fontsize=16,color="magenta"];288 -> 644[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 289[label="FiniteMap.splitGT yvy34 (Left yvy400)",fontsize=16,color="burlywood",shape="triangle"];5218[label="yvy34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];289 -> 5218[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5218 -> 469[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5219[label="yvy34/FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344",fontsize=10,color="white",style="solid",shape="box"];289 -> 5219[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5219 -> 470[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2841[label="Right yvy400",fontsize=16,color="green",shape="box"];2842[label="False",fontsize=16,color="green",shape="box"];2843[label="Left yvy300",fontsize=16,color="green",shape="box"];326 -> 651[label="",style="dashed", color="red", weight=0]; 40.99/18.79 326[label="FiniteMap.splitGT1 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) (Right yvy400 < Left yvy300)",fontsize=16,color="magenta"];326 -> 652[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 327[label="FiniteMap.splitGT yvy34 (Right yvy400)",fontsize=16,color="burlywood",shape="triangle"];5220[label="yvy34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];327 -> 5220[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5220 -> 472[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5221[label="yvy34/FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344",fontsize=10,color="white",style="solid",shape="box"];327 -> 5221[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5221 -> 473[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2844[label="Right yvy400",fontsize=16,color="green",shape="box"];2845[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];5222[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2845 -> 5222[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5222 -> 2928[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5223[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2845 -> 5223[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5223 -> 2929[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5224[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2845 -> 5224[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5224 -> 2930[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5225[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2845 -> 5225[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5225 -> 2931[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5226[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2845 -> 5226[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5226 -> 2932[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5227[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2845 -> 5227[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5227 -> 2933[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5228[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2845 -> 5228[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5228 -> 2934[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5229[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2845 -> 5229[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5229 -> 2935[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5230[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2845 -> 5230[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5230 -> 2936[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5231[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2845 -> 5231[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5231 -> 2937[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5232[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2845 -> 5232[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5232 -> 2938[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5233[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2845 -> 5233[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5233 -> 2939[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5234[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2845 -> 5234[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5234 -> 2940[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5235[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2845 -> 5235[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5235 -> 2941[label="",style="solid", color="blue", weight=3]; 40.99/18.79 2846[label="Right yvy300",fontsize=16,color="green",shape="box"];499 -> 687[label="",style="dashed", color="red", weight=0]; 40.99/18.79 499[label="FiniteMap.splitGT1 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) (Right yvy65 < Right yvy60)",fontsize=16,color="magenta"];499 -> 688[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 500 -> 327[label="",style="dashed", color="red", weight=0]; 40.99/18.79 500[label="FiniteMap.splitGT yvy64 (Right yvy65)",fontsize=16,color="magenta"];500 -> 535[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 500 -> 536[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 320 -> 494[label="",style="dashed", color="red", weight=0]; 40.99/18.79 320[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 (compare2 (Left yvy400) (Left yvy500) (yvy400 == yvy500) == LT)",fontsize=16,color="magenta"];320 -> 495[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 321 -> 518[label="",style="dashed", color="red", weight=0]; 40.99/18.79 321[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 (compare2 (Left yvy400) (Right yvy500) False == LT)",fontsize=16,color="magenta"];321 -> 519[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 322 -> 537[label="",style="dashed", color="red", weight=0]; 40.99/18.79 322[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 (compare2 (Right yvy400) (Left yvy500) False == LT)",fontsize=16,color="magenta"];322 -> 538[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 323 -> 539[label="",style="dashed", color="red", weight=0]; 40.99/18.79 323[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 (compare2 (Right yvy400) (Right yvy500) (yvy400 == yvy500) == LT)",fontsize=16,color="magenta"];323 -> 540[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 325 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 325[label="primCmpInt (Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64) == LT",fontsize=16,color="magenta"];325 -> 541[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 325 -> 542[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 324[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 yvy71",fontsize=16,color="burlywood",shape="triangle"];5236[label="yvy71/False",fontsize=10,color="white",style="solid",shape="box"];324 -> 5236[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5236 -> 543[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5237[label="yvy71/True",fontsize=10,color="white",style="solid",shape="box"];324 -> 5237[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5237 -> 544[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 329 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 329[label="primCmpInt (Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64) == LT",fontsize=16,color="magenta"];329 -> 545[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 329 -> 546[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 328[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 yvy72",fontsize=16,color="burlywood",shape="triangle"];5238[label="yvy72/False",fontsize=10,color="white",style="solid",shape="box"];328 -> 5238[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5238 -> 547[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5239[label="yvy72/True",fontsize=10,color="white",style="solid",shape="box"];328 -> 5239[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5239 -> 548[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2884 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2884[label="yvy400 == yvy300",fontsize=16,color="magenta"];2885[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2885 -> 2981[label="",style="solid", color="black", weight=3]; 40.99/18.79 2886[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5240[label="yvy400/Integer yvy4000",fontsize=10,color="white",style="solid",shape="box"];2886 -> 5240[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5240 -> 2982[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2887[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2887 -> 2983[label="",style="solid", color="black", weight=3]; 40.99/18.79 2888[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5241[label="yvy400/False",fontsize=10,color="white",style="solid",shape="box"];2888 -> 5241[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5241 -> 2984[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5242[label="yvy400/True",fontsize=10,color="white",style="solid",shape="box"];2888 -> 5242[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5242 -> 2985[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2889[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5243[label="yvy400/(yvy4000,yvy4001)",fontsize=10,color="white",style="solid",shape="box"];2889 -> 5243[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5243 -> 2986[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2890[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2890 -> 2987[label="",style="solid", color="black", weight=3]; 40.99/18.79 2891[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5244[label="yvy400/()",fontsize=10,color="white",style="solid",shape="box"];2891 -> 5244[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5244 -> 2988[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2892[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5245[label="yvy400/yvy4000 : yvy4001",fontsize=10,color="white",style="solid",shape="box"];2892 -> 5245[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5245 -> 2989[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5246[label="yvy400/[]",fontsize=10,color="white",style="solid",shape="box"];2892 -> 5246[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5246 -> 2990[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2893[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5247[label="yvy400/Left yvy4000",fontsize=10,color="white",style="solid",shape="box"];2893 -> 5247[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5247 -> 2991[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5248[label="yvy400/Right yvy4000",fontsize=10,color="white",style="solid",shape="box"];2893 -> 5248[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5248 -> 2992[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2894[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];2894 -> 2993[label="",style="solid", color="black", weight=3]; 40.99/18.79 2895[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5249[label="yvy400/(yvy4000,yvy4001,yvy4002)",fontsize=10,color="white",style="solid",shape="box"];2895 -> 5249[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5249 -> 2994[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2896[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5250[label="yvy400/yvy4000 :% yvy4001",fontsize=10,color="white",style="solid",shape="box"];2896 -> 5250[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5250 -> 2995[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2897[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];5251[label="yvy400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2897 -> 5251[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5251 -> 2996[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5252[label="yvy400/Just yvy4000",fontsize=10,color="white",style="solid",shape="box"];2897 -> 5252[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5252 -> 2997[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2898[label="compare2 yvy790 yvy800 False",fontsize=16,color="black",shape="box"];2898 -> 2998[label="",style="solid", color="black", weight=3]; 40.99/18.79 2899[label="compare2 yvy790 yvy800 True",fontsize=16,color="black",shape="box"];2899 -> 2999[label="",style="solid", color="black", weight=3]; 40.99/18.79 330[label="LT == LT",fontsize=16,color="black",shape="box"];330 -> 568[label="",style="solid", color="black", weight=3]; 40.99/18.79 331[label="LT == EQ",fontsize=16,color="black",shape="box"];331 -> 569[label="",style="solid", color="black", weight=3]; 40.99/18.79 332[label="LT == GT",fontsize=16,color="black",shape="box"];332 -> 570[label="",style="solid", color="black", weight=3]; 40.99/18.79 333[label="EQ == LT",fontsize=16,color="black",shape="box"];333 -> 571[label="",style="solid", color="black", weight=3]; 40.99/18.79 334[label="EQ == EQ",fontsize=16,color="black",shape="box"];334 -> 572[label="",style="solid", color="black", weight=3]; 40.99/18.79 335[label="EQ == GT",fontsize=16,color="black",shape="box"];335 -> 573[label="",style="solid", color="black", weight=3]; 40.99/18.79 336[label="GT == LT",fontsize=16,color="black",shape="box"];336 -> 574[label="",style="solid", color="black", weight=3]; 40.99/18.79 337[label="GT == EQ",fontsize=16,color="black",shape="box"];337 -> 575[label="",style="solid", color="black", weight=3]; 40.99/18.79 338[label="GT == GT",fontsize=16,color="black",shape="box"];338 -> 576[label="",style="solid", color="black", weight=3]; 40.99/18.79 578[label="Left yvy20 > Left yvy15",fontsize=16,color="black",shape="triangle"];578 -> 580[label="",style="solid", color="black", weight=3]; 40.99/18.79 577[label="FiniteMap.splitLT1 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) yvy99",fontsize=16,color="burlywood",shape="triangle"];5253[label="yvy99/False",fontsize=10,color="white",style="solid",shape="box"];577 -> 5253[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5253 -> 581[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5254[label="yvy99/True",fontsize=10,color="white",style="solid",shape="box"];577 -> 5254[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5254 -> 582[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 432[label="yvy18",fontsize=16,color="green",shape="box"];433[label="yvy20",fontsize=16,color="green",shape="box"];585[label="Left yvy400 > Right yvy300",fontsize=16,color="black",shape="triangle"];585 -> 587[label="",style="solid", color="black", weight=3]; 40.99/18.79 584[label="FiniteMap.splitLT1 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) yvy100",fontsize=16,color="burlywood",shape="triangle"];5255[label="yvy100/False",fontsize=10,color="white",style="solid",shape="box"];584 -> 5255[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5255 -> 588[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5256[label="yvy100/True",fontsize=10,color="white",style="solid",shape="box"];584 -> 5256[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5256 -> 589[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 382[label="FiniteMap.splitLT FiniteMap.EmptyFM (Left yvy400)",fontsize=16,color="black",shape="box"];382 -> 590[label="",style="solid", color="black", weight=3]; 40.99/18.79 383[label="FiniteMap.splitLT (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) (Left yvy400)",fontsize=16,color="black",shape="box"];383 -> 591[label="",style="solid", color="black", weight=3]; 40.99/18.79 594[label="Right yvy400 > Left yvy300",fontsize=16,color="black",shape="triangle"];594 -> 596[label="",style="solid", color="black", weight=3]; 40.99/18.79 593[label="FiniteMap.splitLT1 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) yvy101",fontsize=16,color="burlywood",shape="triangle"];5257[label="yvy101/False",fontsize=10,color="white",style="solid",shape="box"];593 -> 5257[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5257 -> 597[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5258[label="yvy101/True",fontsize=10,color="white",style="solid",shape="box"];593 -> 5258[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5258 -> 598[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 386[label="FiniteMap.splitLT FiniteMap.EmptyFM (Right yvy400)",fontsize=16,color="black",shape="box"];386 -> 599[label="",style="solid", color="black", weight=3]; 40.99/18.79 387[label="FiniteMap.splitLT (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) (Right yvy400)",fontsize=16,color="black",shape="box"];387 -> 600[label="",style="solid", color="black", weight=3]; 40.99/18.79 2900 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2900[label="yvy400 == yvy300",fontsize=16,color="magenta"];2900 -> 3000[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2900 -> 3001[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2901 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2901[label="yvy400 == yvy300",fontsize=16,color="magenta"];2901 -> 3002[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2901 -> 3003[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2902 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2902[label="yvy400 == yvy300",fontsize=16,color="magenta"];2902 -> 3004[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2902 -> 3005[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2903 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2903[label="yvy400 == yvy300",fontsize=16,color="magenta"];2903 -> 3006[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2903 -> 3007[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2904 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2904[label="yvy400 == yvy300",fontsize=16,color="magenta"];2904 -> 3008[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2904 -> 3009[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2905 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2905[label="yvy400 == yvy300",fontsize=16,color="magenta"];2905 -> 3010[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2905 -> 3011[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2906 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2906[label="yvy400 == yvy300",fontsize=16,color="magenta"];2906 -> 3012[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2906 -> 3013[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2907 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2907[label="yvy400 == yvy300",fontsize=16,color="magenta"];2907 -> 3014[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2907 -> 3015[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2908 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2908[label="yvy400 == yvy300",fontsize=16,color="magenta"];2908 -> 3016[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2908 -> 3017[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2909 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2909[label="yvy400 == yvy300",fontsize=16,color="magenta"];2909 -> 3018[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2909 -> 3019[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2910 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2910[label="yvy400 == yvy300",fontsize=16,color="magenta"];2910 -> 3020[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2910 -> 3021[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2911 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2911[label="yvy400 == yvy300",fontsize=16,color="magenta"];2911 -> 3022[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2911 -> 3023[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2912 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2912[label="yvy400 == yvy300",fontsize=16,color="magenta"];2912 -> 3024[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2912 -> 3025[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2913 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2913[label="yvy400 == yvy300",fontsize=16,color="magenta"];2913 -> 3026[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2913 -> 3027[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 632[label="Right yvy35 > Right yvy30",fontsize=16,color="black",shape="triangle"];632 -> 634[label="",style="solid", color="black", weight=3]; 40.99/18.79 631[label="FiniteMap.splitLT1 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) yvy102",fontsize=16,color="burlywood",shape="triangle"];5259[label="yvy102/False",fontsize=10,color="white",style="solid",shape="box"];631 -> 5259[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5259 -> 635[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5260[label="yvy102/True",fontsize=10,color="white",style="solid",shape="box"];631 -> 5260[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5260 -> 636[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 466[label="yvy33",fontsize=16,color="green",shape="box"];467[label="yvy35",fontsize=16,color="green",shape="box"];2914 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2914[label="yvy400 == yvy300",fontsize=16,color="magenta"];2915 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2915[label="yvy400 == yvy300",fontsize=16,color="magenta"];2916 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2916[label="yvy400 == yvy300",fontsize=16,color="magenta"];2917 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2917[label="yvy400 == yvy300",fontsize=16,color="magenta"];2918 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2918[label="yvy400 == yvy300",fontsize=16,color="magenta"];2919 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2919[label="yvy400 == yvy300",fontsize=16,color="magenta"];2920 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2920[label="yvy400 == yvy300",fontsize=16,color="magenta"];2921 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2921[label="yvy400 == yvy300",fontsize=16,color="magenta"];2922 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2922[label="yvy400 == yvy300",fontsize=16,color="magenta"];2923 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2923[label="yvy400 == yvy300",fontsize=16,color="magenta"];2924 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2924[label="yvy400 == yvy300",fontsize=16,color="magenta"];2925 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2925[label="yvy400 == yvy300",fontsize=16,color="magenta"];2926 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2926[label="yvy400 == yvy300",fontsize=16,color="magenta"];2927 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2927[label="yvy400 == yvy300",fontsize=16,color="magenta"];638[label="Left yvy50 < Left yvy45",fontsize=16,color="black",shape="box"];638 -> 640[label="",style="solid", color="black", weight=3]; 40.99/18.79 637[label="FiniteMap.splitGT1 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) yvy103",fontsize=16,color="burlywood",shape="triangle"];5261[label="yvy103/False",fontsize=10,color="white",style="solid",shape="box"];637 -> 5261[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5261 -> 641[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5262[label="yvy103/True",fontsize=10,color="white",style="solid",shape="box"];637 -> 5262[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5262 -> 642[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 516[label="yvy49",fontsize=16,color="green",shape="box"];517[label="yvy50",fontsize=16,color="green",shape="box"];644[label="Left yvy400 < Right yvy300",fontsize=16,color="black",shape="box"];644 -> 646[label="",style="solid", color="black", weight=3]; 40.99/18.79 643[label="FiniteMap.splitGT1 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) yvy104",fontsize=16,color="burlywood",shape="triangle"];5263[label="yvy104/False",fontsize=10,color="white",style="solid",shape="box"];643 -> 5263[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5263 -> 647[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5264[label="yvy104/True",fontsize=10,color="white",style="solid",shape="box"];643 -> 5264[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5264 -> 648[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 469[label="FiniteMap.splitGT FiniteMap.EmptyFM (Left yvy400)",fontsize=16,color="black",shape="box"];469 -> 649[label="",style="solid", color="black", weight=3]; 40.99/18.79 470[label="FiniteMap.splitGT (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) (Left yvy400)",fontsize=16,color="black",shape="box"];470 -> 650[label="",style="solid", color="black", weight=3]; 40.99/18.79 652[label="Right yvy400 < Left yvy300",fontsize=16,color="black",shape="box"];652 -> 654[label="",style="solid", color="black", weight=3]; 40.99/18.79 651[label="FiniteMap.splitGT1 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) yvy105",fontsize=16,color="burlywood",shape="triangle"];5265[label="yvy105/False",fontsize=10,color="white",style="solid",shape="box"];651 -> 5265[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5265 -> 655[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5266[label="yvy105/True",fontsize=10,color="white",style="solid",shape="box"];651 -> 5266[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5266 -> 656[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 472[label="FiniteMap.splitGT FiniteMap.EmptyFM (Right yvy400)",fontsize=16,color="black",shape="box"];472 -> 657[label="",style="solid", color="black", weight=3]; 40.99/18.79 473[label="FiniteMap.splitGT (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) (Right yvy400)",fontsize=16,color="black",shape="box"];473 -> 658[label="",style="solid", color="black", weight=3]; 40.99/18.79 2928 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2928[label="yvy400 == yvy300",fontsize=16,color="magenta"];2928 -> 3028[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2928 -> 3029[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2929 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2929[label="yvy400 == yvy300",fontsize=16,color="magenta"];2929 -> 3030[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2929 -> 3031[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2930 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2930[label="yvy400 == yvy300",fontsize=16,color="magenta"];2930 -> 3032[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2930 -> 3033[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2931 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2931[label="yvy400 == yvy300",fontsize=16,color="magenta"];2931 -> 3034[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2931 -> 3035[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2932 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2932[label="yvy400 == yvy300",fontsize=16,color="magenta"];2932 -> 3036[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2932 -> 3037[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2933 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2933[label="yvy400 == yvy300",fontsize=16,color="magenta"];2933 -> 3038[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2933 -> 3039[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2934 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2934[label="yvy400 == yvy300",fontsize=16,color="magenta"];2934 -> 3040[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2934 -> 3041[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2935 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2935[label="yvy400 == yvy300",fontsize=16,color="magenta"];2935 -> 3042[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2935 -> 3043[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2936 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2936[label="yvy400 == yvy300",fontsize=16,color="magenta"];2936 -> 3044[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2936 -> 3045[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2937 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2937[label="yvy400 == yvy300",fontsize=16,color="magenta"];2937 -> 3046[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2937 -> 3047[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2938 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2938[label="yvy400 == yvy300",fontsize=16,color="magenta"];2938 -> 3048[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2938 -> 3049[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2939 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2939[label="yvy400 == yvy300",fontsize=16,color="magenta"];2939 -> 3050[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2939 -> 3051[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2940 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2940[label="yvy400 == yvy300",fontsize=16,color="magenta"];2940 -> 3052[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2940 -> 3053[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2941 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2941[label="yvy400 == yvy300",fontsize=16,color="magenta"];2941 -> 3054[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2941 -> 3055[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 688[label="Right yvy65 < Right yvy60",fontsize=16,color="black",shape="box"];688 -> 690[label="",style="solid", color="black", weight=3]; 40.99/18.79 687[label="FiniteMap.splitGT1 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) yvy106",fontsize=16,color="burlywood",shape="triangle"];5267[label="yvy106/False",fontsize=10,color="white",style="solid",shape="box"];687 -> 5267[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5267 -> 691[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5268[label="yvy106/True",fontsize=10,color="white",style="solid",shape="box"];687 -> 5268[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5268 -> 692[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 535[label="yvy64",fontsize=16,color="green",shape="box"];536[label="yvy65",fontsize=16,color="green",shape="box"];495 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 495[label="compare2 (Left yvy400) (Left yvy500) (yvy400 == yvy500) == LT",fontsize=16,color="magenta"];495 -> 693[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 495 -> 694[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 494[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 yvy91",fontsize=16,color="burlywood",shape="triangle"];5269[label="yvy91/False",fontsize=10,color="white",style="solid",shape="box"];494 -> 5269[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5269 -> 695[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5270[label="yvy91/True",fontsize=10,color="white",style="solid",shape="box"];494 -> 5270[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5270 -> 696[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 519 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 519[label="compare2 (Left yvy400) (Right yvy500) False == LT",fontsize=16,color="magenta"];519 -> 697[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 519 -> 698[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 518[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 yvy93",fontsize=16,color="burlywood",shape="triangle"];5271[label="yvy93/False",fontsize=10,color="white",style="solid",shape="box"];518 -> 5271[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5271 -> 699[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5272[label="yvy93/True",fontsize=10,color="white",style="solid",shape="box"];518 -> 5272[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5272 -> 700[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 538 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 538[label="compare2 (Right yvy400) (Left yvy500) False == LT",fontsize=16,color="magenta"];538 -> 701[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 538 -> 702[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 537[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 yvy95",fontsize=16,color="burlywood",shape="triangle"];5273[label="yvy95/False",fontsize=10,color="white",style="solid",shape="box"];537 -> 5273[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5273 -> 703[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5274[label="yvy95/True",fontsize=10,color="white",style="solid",shape="box"];537 -> 5274[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5274 -> 704[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 540 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 540[label="compare2 (Right yvy400) (Right yvy500) (yvy400 == yvy500) == LT",fontsize=16,color="magenta"];540 -> 705[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 540 -> 706[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 539[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 yvy97",fontsize=16,color="burlywood",shape="triangle"];5275[label="yvy97/False",fontsize=10,color="white",style="solid",shape="box"];539 -> 5275[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5275 -> 707[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5276[label="yvy97/True",fontsize=10,color="white",style="solid",shape="box"];539 -> 5276[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5276 -> 708[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 541[label="LT",fontsize=16,color="green",shape="box"];542[label="primCmpInt (Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="burlywood",shape="box"];5277[label="yvy620/Succ yvy6200",fontsize=10,color="white",style="solid",shape="box"];542 -> 5277[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5277 -> 709[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5278[label="yvy620/Zero",fontsize=10,color="white",style="solid",shape="box"];542 -> 5278[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5278 -> 710[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 543[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="box"];543 -> 711[label="",style="solid", color="black", weight=3]; 40.99/18.79 544[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];544 -> 712[label="",style="solid", color="black", weight=3]; 40.99/18.79 545[label="LT",fontsize=16,color="green",shape="box"];546[label="primCmpInt (Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy620)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="burlywood",shape="box"];5279[label="yvy620/Succ yvy6200",fontsize=10,color="white",style="solid",shape="box"];546 -> 5279[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5279 -> 713[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5280[label="yvy620/Zero",fontsize=10,color="white",style="solid",shape="box"];546 -> 5280[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5280 -> 714[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 547[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="box"];547 -> 715[label="",style="solid", color="black", weight=3]; 40.99/18.79 548[label="FiniteMap.mkVBalBranch3MkVBalBranch2 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];548 -> 716[label="",style="solid", color="black", weight=3]; 40.99/18.79 2981[label="primEqInt yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];5281[label="yvy400/Pos yvy4000",fontsize=10,color="white",style="solid",shape="box"];2981 -> 5281[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5281 -> 3150[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5282[label="yvy400/Neg yvy4000",fontsize=10,color="white",style="solid",shape="box"];2981 -> 5282[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5282 -> 3151[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2982[label="Integer yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];5283[label="yvy300/Integer yvy3000",fontsize=10,color="white",style="solid",shape="box"];2982 -> 5283[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5283 -> 3152[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2983[label="primEqChar yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];5284[label="yvy400/Char yvy4000",fontsize=10,color="white",style="solid",shape="box"];2983 -> 5284[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5284 -> 3153[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2984[label="False == yvy300",fontsize=16,color="burlywood",shape="box"];5285[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];2984 -> 5285[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5285 -> 3154[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5286[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];2984 -> 5286[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5286 -> 3155[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2985[label="True == yvy300",fontsize=16,color="burlywood",shape="box"];5287[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];2985 -> 5287[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5287 -> 3156[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5288[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];2985 -> 5288[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5288 -> 3157[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2986[label="(yvy4000,yvy4001) == yvy300",fontsize=16,color="burlywood",shape="box"];5289[label="yvy300/(yvy3000,yvy3001)",fontsize=10,color="white",style="solid",shape="box"];2986 -> 5289[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5289 -> 3158[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2987[label="primEqDouble yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];5290[label="yvy400/Double yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];2987 -> 5290[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5290 -> 3159[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2988[label="() == yvy300",fontsize=16,color="burlywood",shape="box"];5291[label="yvy300/()",fontsize=10,color="white",style="solid",shape="box"];2988 -> 5291[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5291 -> 3160[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2989[label="yvy4000 : yvy4001 == yvy300",fontsize=16,color="burlywood",shape="box"];5292[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];2989 -> 5292[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5292 -> 3161[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5293[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];2989 -> 5293[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5293 -> 3162[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2990[label="[] == yvy300",fontsize=16,color="burlywood",shape="box"];5294[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];2990 -> 5294[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5294 -> 3163[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5295[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];2990 -> 5295[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5295 -> 3164[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2991[label="Left yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];5296[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];2991 -> 5296[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5296 -> 3165[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5297[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];2991 -> 5297[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5297 -> 3166[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2992[label="Right yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];5298[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];2992 -> 5298[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5298 -> 3167[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5299[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];2992 -> 5299[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5299 -> 3168[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2993[label="primEqFloat yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];5300[label="yvy400/Float yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];2993 -> 5300[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5300 -> 3169[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2994[label="(yvy4000,yvy4001,yvy4002) == yvy300",fontsize=16,color="burlywood",shape="box"];5301[label="yvy300/(yvy3000,yvy3001,yvy3002)",fontsize=10,color="white",style="solid",shape="box"];2994 -> 5301[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5301 -> 3170[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2995[label="yvy4000 :% yvy4001 == yvy300",fontsize=16,color="burlywood",shape="box"];5302[label="yvy300/yvy3000 :% yvy3001",fontsize=10,color="white",style="solid",shape="box"];2995 -> 5302[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5302 -> 3171[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2996[label="Nothing == yvy300",fontsize=16,color="burlywood",shape="box"];5303[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2996 -> 5303[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5303 -> 3172[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5304[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];2996 -> 5304[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5304 -> 3173[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2997[label="Just yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];5305[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2997 -> 5305[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5305 -> 3174[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5306[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];2997 -> 5306[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5306 -> 3175[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2998[label="compare1 yvy790 yvy800 (yvy790 <= yvy800)",fontsize=16,color="burlywood",shape="box"];5307[label="yvy790/Left yvy7900",fontsize=10,color="white",style="solid",shape="box"];2998 -> 5307[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5307 -> 3176[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5308[label="yvy790/Right yvy7900",fontsize=10,color="white",style="solid",shape="box"];2998 -> 5308[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5308 -> 3177[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 2999[label="EQ",fontsize=16,color="green",shape="box"];568[label="True",fontsize=16,color="green",shape="box"];569[label="False",fontsize=16,color="green",shape="box"];570[label="False",fontsize=16,color="green",shape="box"];571[label="False",fontsize=16,color="green",shape="box"];572[label="True",fontsize=16,color="green",shape="box"];573[label="False",fontsize=16,color="green",shape="box"];574[label="False",fontsize=16,color="green",shape="box"];575[label="False",fontsize=16,color="green",shape="box"];576[label="True",fontsize=16,color="green",shape="box"];580 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 580[label="compare (Left yvy20) (Left yvy15) == GT",fontsize=16,color="magenta"];580 -> 744[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 580 -> 745[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 581[label="FiniteMap.splitLT1 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) False",fontsize=16,color="black",shape="box"];581 -> 746[label="",style="solid", color="black", weight=3]; 40.99/18.79 582[label="FiniteMap.splitLT1 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) True",fontsize=16,color="black",shape="box"];582 -> 747[label="",style="solid", color="black", weight=3]; 40.99/18.79 587 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 587[label="compare (Left yvy400) (Right yvy300) == GT",fontsize=16,color="magenta"];587 -> 748[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 587 -> 749[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 588[label="FiniteMap.splitLT1 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) False",fontsize=16,color="black",shape="box"];588 -> 750[label="",style="solid", color="black", weight=3]; 40.99/18.79 589[label="FiniteMap.splitLT1 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) True",fontsize=16,color="black",shape="box"];589 -> 751[label="",style="solid", color="black", weight=3]; 40.99/18.79 590[label="FiniteMap.splitLT4 FiniteMap.EmptyFM (Left yvy400)",fontsize=16,color="black",shape="box"];590 -> 752[label="",style="solid", color="black", weight=3]; 40.99/18.79 591 -> 26[label="",style="dashed", color="red", weight=0]; 40.99/18.79 591[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) (Left yvy400)",fontsize=16,color="magenta"];591 -> 753[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 591 -> 754[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 591 -> 755[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 591 -> 756[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 591 -> 757[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 591 -> 758[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 596 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 596[label="compare (Right yvy400) (Left yvy300) == GT",fontsize=16,color="magenta"];596 -> 760[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 596 -> 761[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 597[label="FiniteMap.splitLT1 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) False",fontsize=16,color="black",shape="box"];597 -> 762[label="",style="solid", color="black", weight=3]; 40.99/18.79 598[label="FiniteMap.splitLT1 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) True",fontsize=16,color="black",shape="box"];598 -> 763[label="",style="solid", color="black", weight=3]; 40.99/18.79 599[label="FiniteMap.splitLT4 FiniteMap.EmptyFM (Right yvy400)",fontsize=16,color="black",shape="box"];599 -> 764[label="",style="solid", color="black", weight=3]; 40.99/18.79 600 -> 26[label="",style="dashed", color="red", weight=0]; 40.99/18.79 600[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) (Right yvy400)",fontsize=16,color="magenta"];600 -> 765[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 600 -> 766[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 600 -> 767[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 600 -> 768[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 600 -> 769[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 600 -> 770[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3000[label="yvy300",fontsize=16,color="green",shape="box"];3001[label="yvy400",fontsize=16,color="green",shape="box"];3002[label="yvy300",fontsize=16,color="green",shape="box"];3003[label="yvy400",fontsize=16,color="green",shape="box"];3004[label="yvy300",fontsize=16,color="green",shape="box"];3005[label="yvy400",fontsize=16,color="green",shape="box"];3006[label="yvy300",fontsize=16,color="green",shape="box"];3007[label="yvy400",fontsize=16,color="green",shape="box"];3008[label="yvy300",fontsize=16,color="green",shape="box"];3009[label="yvy400",fontsize=16,color="green",shape="box"];3010[label="yvy300",fontsize=16,color="green",shape="box"];3011[label="yvy400",fontsize=16,color="green",shape="box"];3012[label="yvy300",fontsize=16,color="green",shape="box"];3013[label="yvy400",fontsize=16,color="green",shape="box"];3014[label="yvy300",fontsize=16,color="green",shape="box"];3015[label="yvy400",fontsize=16,color="green",shape="box"];3016[label="yvy300",fontsize=16,color="green",shape="box"];3017[label="yvy400",fontsize=16,color="green",shape="box"];3018[label="yvy300",fontsize=16,color="green",shape="box"];3019[label="yvy400",fontsize=16,color="green",shape="box"];3020[label="yvy300",fontsize=16,color="green",shape="box"];3021[label="yvy400",fontsize=16,color="green",shape="box"];3022[label="yvy300",fontsize=16,color="green",shape="box"];3023[label="yvy400",fontsize=16,color="green",shape="box"];3024[label="yvy300",fontsize=16,color="green",shape="box"];3025[label="yvy400",fontsize=16,color="green",shape="box"];3026[label="yvy300",fontsize=16,color="green",shape="box"];3027[label="yvy400",fontsize=16,color="green",shape="box"];634 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 634[label="compare (Right yvy35) (Right yvy30) == GT",fontsize=16,color="magenta"];634 -> 772[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 634 -> 773[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 635[label="FiniteMap.splitLT1 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) False",fontsize=16,color="black",shape="box"];635 -> 774[label="",style="solid", color="black", weight=3]; 40.99/18.79 636[label="FiniteMap.splitLT1 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) True",fontsize=16,color="black",shape="box"];636 -> 775[label="",style="solid", color="black", weight=3]; 40.99/18.79 640 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 640[label="compare (Left yvy50) (Left yvy45) == LT",fontsize=16,color="magenta"];640 -> 776[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 640 -> 777[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 641[label="FiniteMap.splitGT1 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) False",fontsize=16,color="black",shape="box"];641 -> 778[label="",style="solid", color="black", weight=3]; 40.99/18.79 642[label="FiniteMap.splitGT1 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) True",fontsize=16,color="black",shape="box"];642 -> 779[label="",style="solid", color="black", weight=3]; 40.99/18.79 646 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 646[label="compare (Left yvy400) (Right yvy300) == LT",fontsize=16,color="magenta"];646 -> 780[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 646 -> 781[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 647[label="FiniteMap.splitGT1 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) False",fontsize=16,color="black",shape="box"];647 -> 782[label="",style="solid", color="black", weight=3]; 40.99/18.79 648[label="FiniteMap.splitGT1 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) True",fontsize=16,color="black",shape="box"];648 -> 783[label="",style="solid", color="black", weight=3]; 40.99/18.79 649[label="FiniteMap.splitGT4 FiniteMap.EmptyFM (Left yvy400)",fontsize=16,color="black",shape="box"];649 -> 784[label="",style="solid", color="black", weight=3]; 40.99/18.79 650 -> 27[label="",style="dashed", color="red", weight=0]; 40.99/18.79 650[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) (Left yvy400)",fontsize=16,color="magenta"];650 -> 785[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 650 -> 786[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 650 -> 787[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 650 -> 788[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 650 -> 789[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 650 -> 790[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 654 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 654[label="compare (Right yvy400) (Left yvy300) == LT",fontsize=16,color="magenta"];654 -> 791[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 654 -> 792[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 655[label="FiniteMap.splitGT1 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) False",fontsize=16,color="black",shape="box"];655 -> 793[label="",style="solid", color="black", weight=3]; 40.99/18.79 656[label="FiniteMap.splitGT1 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) True",fontsize=16,color="black",shape="box"];656 -> 794[label="",style="solid", color="black", weight=3]; 40.99/18.79 657[label="FiniteMap.splitGT4 FiniteMap.EmptyFM (Right yvy400)",fontsize=16,color="black",shape="box"];657 -> 795[label="",style="solid", color="black", weight=3]; 40.99/18.79 658 -> 27[label="",style="dashed", color="red", weight=0]; 40.99/18.79 658[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy340 yvy341 yvy342 yvy343 yvy344) (Right yvy400)",fontsize=16,color="magenta"];658 -> 796[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 658 -> 797[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 658 -> 798[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 658 -> 799[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 658 -> 800[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 658 -> 801[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3028[label="yvy300",fontsize=16,color="green",shape="box"];3029[label="yvy400",fontsize=16,color="green",shape="box"];3030[label="yvy300",fontsize=16,color="green",shape="box"];3031[label="yvy400",fontsize=16,color="green",shape="box"];3032[label="yvy300",fontsize=16,color="green",shape="box"];3033[label="yvy400",fontsize=16,color="green",shape="box"];3034[label="yvy300",fontsize=16,color="green",shape="box"];3035[label="yvy400",fontsize=16,color="green",shape="box"];3036[label="yvy300",fontsize=16,color="green",shape="box"];3037[label="yvy400",fontsize=16,color="green",shape="box"];3038[label="yvy300",fontsize=16,color="green",shape="box"];3039[label="yvy400",fontsize=16,color="green",shape="box"];3040[label="yvy300",fontsize=16,color="green",shape="box"];3041[label="yvy400",fontsize=16,color="green",shape="box"];3042[label="yvy300",fontsize=16,color="green",shape="box"];3043[label="yvy400",fontsize=16,color="green",shape="box"];3044[label="yvy300",fontsize=16,color="green",shape="box"];3045[label="yvy400",fontsize=16,color="green",shape="box"];3046[label="yvy300",fontsize=16,color="green",shape="box"];3047[label="yvy400",fontsize=16,color="green",shape="box"];3048[label="yvy300",fontsize=16,color="green",shape="box"];3049[label="yvy400",fontsize=16,color="green",shape="box"];3050[label="yvy300",fontsize=16,color="green",shape="box"];3051[label="yvy400",fontsize=16,color="green",shape="box"];3052[label="yvy300",fontsize=16,color="green",shape="box"];3053[label="yvy400",fontsize=16,color="green",shape="box"];3054[label="yvy300",fontsize=16,color="green",shape="box"];3055[label="yvy400",fontsize=16,color="green",shape="box"];690 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 690[label="compare (Right yvy65) (Right yvy60) == LT",fontsize=16,color="magenta"];690 -> 802[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 690 -> 803[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 691[label="FiniteMap.splitGT1 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) False",fontsize=16,color="black",shape="box"];691 -> 804[label="",style="solid", color="black", weight=3]; 40.99/18.79 692[label="FiniteMap.splitGT1 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) True",fontsize=16,color="black",shape="box"];692 -> 805[label="",style="solid", color="black", weight=3]; 40.99/18.79 693[label="LT",fontsize=16,color="green",shape="box"];694 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.79 694[label="compare2 (Left yvy400) (Left yvy500) (yvy400 == yvy500)",fontsize=16,color="magenta"];694 -> 2859[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 694 -> 2860[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 694 -> 2861[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 695[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 False",fontsize=16,color="black",shape="box"];695 -> 809[label="",style="solid", color="black", weight=3]; 40.99/18.79 696[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 True",fontsize=16,color="black",shape="box"];696 -> 810[label="",style="solid", color="black", weight=3]; 40.99/18.79 697[label="LT",fontsize=16,color="green",shape="box"];698 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.79 698[label="compare2 (Left yvy400) (Right yvy500) False",fontsize=16,color="magenta"];698 -> 2862[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 698 -> 2863[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 698 -> 2864[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 699[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 False",fontsize=16,color="black",shape="box"];699 -> 812[label="",style="solid", color="black", weight=3]; 40.99/18.79 700[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 True",fontsize=16,color="black",shape="box"];700 -> 813[label="",style="solid", color="black", weight=3]; 40.99/18.79 701[label="LT",fontsize=16,color="green",shape="box"];702 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.79 702[label="compare2 (Right yvy400) (Left yvy500) False",fontsize=16,color="magenta"];702 -> 2865[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 702 -> 2866[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 702 -> 2867[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 703[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 False",fontsize=16,color="black",shape="box"];703 -> 815[label="",style="solid", color="black", weight=3]; 40.99/18.79 704[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 True",fontsize=16,color="black",shape="box"];704 -> 816[label="",style="solid", color="black", weight=3]; 40.99/18.79 705[label="LT",fontsize=16,color="green",shape="box"];706 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.79 706[label="compare2 (Right yvy400) (Right yvy500) (yvy400 == yvy500)",fontsize=16,color="magenta"];706 -> 2868[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 706 -> 2869[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 706 -> 2870[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 707[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 False",fontsize=16,color="black",shape="box"];707 -> 820[label="",style="solid", color="black", weight=3]; 40.99/18.79 708[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 True",fontsize=16,color="black",shape="box"];708 -> 821[label="",style="solid", color="black", weight=3]; 40.99/18.79 709[label="primCmpInt (Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];709 -> 822[label="",style="solid", color="black", weight=3]; 40.99/18.79 710[label="primCmpInt (Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) Zero)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64)",fontsize=16,color="black",shape="box"];710 -> 823[label="",style="solid", color="black", weight=3]; 40.99/18.79 711 -> 974[label="",style="dashed", color="red", weight=0]; 40.99/18.79 711[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];711 -> 975[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 712 -> 825[label="",style="dashed", color="red", weight=0]; 40.99/18.79 712[label="FiniteMap.mkBalBranch yvy50 yvy51 (FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64) yvy53) yvy54",fontsize=16,color="magenta"];712 -> 826[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 713[label="primCmpInt (Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];713 -> 836[label="",style="solid", color="black", weight=3]; 40.99/18.79 714[label="primCmpInt (Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) Zero)) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64)",fontsize=16,color="black",shape="box"];714 -> 837[label="",style="solid", color="black", weight=3]; 40.99/18.79 715 -> 985[label="",style="dashed", color="red", weight=0]; 40.99/18.79 715[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 (FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];715 -> 986[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 716 -> 825[label="",style="dashed", color="red", weight=0]; 40.99/18.79 716[label="FiniteMap.mkBalBranch yvy50 yvy51 (FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64) yvy53) yvy54",fontsize=16,color="magenta"];716 -> 827[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3150[label="primEqInt (Pos yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];5309[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];3150 -> 5309[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5309 -> 3244[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5310[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3150 -> 5310[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5310 -> 3245[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3151[label="primEqInt (Neg yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];5311[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];3151 -> 5311[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5311 -> 3246[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5312[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3151 -> 5312[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5312 -> 3247[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3152[label="Integer yvy4000 == Integer yvy3000",fontsize=16,color="black",shape="box"];3152 -> 3248[label="",style="solid", color="black", weight=3]; 40.99/18.79 3153[label="primEqChar (Char yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];5313[label="yvy300/Char yvy3000",fontsize=10,color="white",style="solid",shape="box"];3153 -> 5313[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5313 -> 3249[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3154[label="False == False",fontsize=16,color="black",shape="box"];3154 -> 3250[label="",style="solid", color="black", weight=3]; 40.99/18.79 3155[label="False == True",fontsize=16,color="black",shape="box"];3155 -> 3251[label="",style="solid", color="black", weight=3]; 40.99/18.79 3156[label="True == False",fontsize=16,color="black",shape="box"];3156 -> 3252[label="",style="solid", color="black", weight=3]; 40.99/18.79 3157[label="True == True",fontsize=16,color="black",shape="box"];3157 -> 3253[label="",style="solid", color="black", weight=3]; 40.99/18.79 3158[label="(yvy4000,yvy4001) == (yvy3000,yvy3001)",fontsize=16,color="black",shape="box"];3158 -> 3254[label="",style="solid", color="black", weight=3]; 40.99/18.79 3159[label="primEqDouble (Double yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];5314[label="yvy300/Double yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];3159 -> 5314[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5314 -> 3255[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3160[label="() == ()",fontsize=16,color="black",shape="box"];3160 -> 3256[label="",style="solid", color="black", weight=3]; 40.99/18.79 3161[label="yvy4000 : yvy4001 == yvy3000 : yvy3001",fontsize=16,color="black",shape="box"];3161 -> 3257[label="",style="solid", color="black", weight=3]; 40.99/18.79 3162[label="yvy4000 : yvy4001 == []",fontsize=16,color="black",shape="box"];3162 -> 3258[label="",style="solid", color="black", weight=3]; 40.99/18.79 3163[label="[] == yvy3000 : yvy3001",fontsize=16,color="black",shape="box"];3163 -> 3259[label="",style="solid", color="black", weight=3]; 40.99/18.79 3164[label="[] == []",fontsize=16,color="black",shape="box"];3164 -> 3260[label="",style="solid", color="black", weight=3]; 40.99/18.79 3165[label="Left yvy4000 == Left yvy3000",fontsize=16,color="black",shape="box"];3165 -> 3261[label="",style="solid", color="black", weight=3]; 40.99/18.79 3166[label="Left yvy4000 == Right yvy3000",fontsize=16,color="black",shape="box"];3166 -> 3262[label="",style="solid", color="black", weight=3]; 40.99/18.79 3167[label="Right yvy4000 == Left yvy3000",fontsize=16,color="black",shape="box"];3167 -> 3263[label="",style="solid", color="black", weight=3]; 40.99/18.79 3168[label="Right yvy4000 == Right yvy3000",fontsize=16,color="black",shape="box"];3168 -> 3264[label="",style="solid", color="black", weight=3]; 40.99/18.79 3169[label="primEqFloat (Float yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];5315[label="yvy300/Float yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];3169 -> 5315[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5315 -> 3265[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3170[label="(yvy4000,yvy4001,yvy4002) == (yvy3000,yvy3001,yvy3002)",fontsize=16,color="black",shape="box"];3170 -> 3266[label="",style="solid", color="black", weight=3]; 40.99/18.79 3171[label="yvy4000 :% yvy4001 == yvy3000 :% yvy3001",fontsize=16,color="black",shape="box"];3171 -> 3267[label="",style="solid", color="black", weight=3]; 40.99/18.79 3172[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];3172 -> 3268[label="",style="solid", color="black", weight=3]; 40.99/18.79 3173[label="Nothing == Just yvy3000",fontsize=16,color="black",shape="box"];3173 -> 3269[label="",style="solid", color="black", weight=3]; 40.99/18.79 3174[label="Just yvy4000 == Nothing",fontsize=16,color="black",shape="box"];3174 -> 3270[label="",style="solid", color="black", weight=3]; 40.99/18.79 3175[label="Just yvy4000 == Just yvy3000",fontsize=16,color="black",shape="box"];3175 -> 3271[label="",style="solid", color="black", weight=3]; 40.99/18.79 3176[label="compare1 (Left yvy7900) yvy800 (Left yvy7900 <= yvy800)",fontsize=16,color="burlywood",shape="box"];5316[label="yvy800/Left yvy8000",fontsize=10,color="white",style="solid",shape="box"];3176 -> 5316[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5316 -> 3272[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5317[label="yvy800/Right yvy8000",fontsize=10,color="white",style="solid",shape="box"];3176 -> 5317[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5317 -> 3273[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3177[label="compare1 (Right yvy7900) yvy800 (Right yvy7900 <= yvy800)",fontsize=16,color="burlywood",shape="box"];5318[label="yvy800/Left yvy8000",fontsize=10,color="white",style="solid",shape="box"];3177 -> 5318[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5318 -> 3274[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5319[label="yvy800/Right yvy8000",fontsize=10,color="white",style="solid",shape="box"];3177 -> 5319[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5319 -> 3275[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 744[label="GT",fontsize=16,color="green",shape="box"];745[label="compare (Left yvy20) (Left yvy15)",fontsize=16,color="black",shape="triangle"];745 -> 877[label="",style="solid", color="black", weight=3]; 40.99/18.79 746[label="FiniteMap.splitLT0 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) otherwise",fontsize=16,color="black",shape="box"];746 -> 878[label="",style="solid", color="black", weight=3]; 40.99/18.79 747 -> 12[label="",style="dashed", color="red", weight=0]; 40.99/18.79 747[label="FiniteMap.mkVBalBranch (Left yvy15) yvy16 yvy18 (FiniteMap.splitLT yvy19 (Left yvy20))",fontsize=16,color="magenta"];747 -> 879[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 747 -> 880[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 747 -> 881[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 747 -> 882[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 748[label="GT",fontsize=16,color="green",shape="box"];749[label="compare (Left yvy400) (Right yvy300)",fontsize=16,color="black",shape="triangle"];749 -> 883[label="",style="solid", color="black", weight=3]; 40.99/18.79 750[label="FiniteMap.splitLT0 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) otherwise",fontsize=16,color="black",shape="box"];750 -> 884[label="",style="solid", color="black", weight=3]; 40.99/18.79 751 -> 12[label="",style="dashed", color="red", weight=0]; 40.99/18.79 751[label="FiniteMap.mkVBalBranch (Right yvy300) yvy31 yvy33 (FiniteMap.splitLT yvy34 (Left yvy400))",fontsize=16,color="magenta"];751 -> 885[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 751 -> 886[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 751 -> 887[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 751 -> 888[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 752 -> 67[label="",style="dashed", color="red", weight=0]; 40.99/18.79 752[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];753[label="yvy330",fontsize=16,color="green",shape="box"];754[label="yvy332",fontsize=16,color="green",shape="box"];755[label="Left yvy400",fontsize=16,color="green",shape="box"];756[label="yvy334",fontsize=16,color="green",shape="box"];757[label="yvy333",fontsize=16,color="green",shape="box"];758[label="yvy331",fontsize=16,color="green",shape="box"];760[label="GT",fontsize=16,color="green",shape="box"];761[label="compare (Right yvy400) (Left yvy300)",fontsize=16,color="black",shape="triangle"];761 -> 890[label="",style="solid", color="black", weight=3]; 40.99/18.79 762[label="FiniteMap.splitLT0 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) otherwise",fontsize=16,color="black",shape="box"];762 -> 891[label="",style="solid", color="black", weight=3]; 40.99/18.79 763 -> 12[label="",style="dashed", color="red", weight=0]; 40.99/18.79 763[label="FiniteMap.mkVBalBranch (Left yvy300) yvy31 yvy33 (FiniteMap.splitLT yvy34 (Right yvy400))",fontsize=16,color="magenta"];763 -> 892[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 763 -> 893[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 763 -> 894[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 763 -> 895[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 764 -> 67[label="",style="dashed", color="red", weight=0]; 40.99/18.79 764[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];765[label="yvy330",fontsize=16,color="green",shape="box"];766[label="yvy332",fontsize=16,color="green",shape="box"];767[label="Right yvy400",fontsize=16,color="green",shape="box"];768[label="yvy334",fontsize=16,color="green",shape="box"];769[label="yvy333",fontsize=16,color="green",shape="box"];770[label="yvy331",fontsize=16,color="green",shape="box"];772[label="GT",fontsize=16,color="green",shape="box"];773[label="compare (Right yvy35) (Right yvy30)",fontsize=16,color="black",shape="triangle"];773 -> 906[label="",style="solid", color="black", weight=3]; 40.99/18.79 774[label="FiniteMap.splitLT0 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) otherwise",fontsize=16,color="black",shape="box"];774 -> 907[label="",style="solid", color="black", weight=3]; 40.99/18.79 775 -> 12[label="",style="dashed", color="red", weight=0]; 40.99/18.79 775[label="FiniteMap.mkVBalBranch (Right yvy30) yvy31 yvy33 (FiniteMap.splitLT yvy34 (Right yvy35))",fontsize=16,color="magenta"];775 -> 908[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 775 -> 909[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 775 -> 910[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 775 -> 911[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 776[label="LT",fontsize=16,color="green",shape="box"];777 -> 745[label="",style="dashed", color="red", weight=0]; 40.99/18.79 777[label="compare (Left yvy50) (Left yvy45)",fontsize=16,color="magenta"];777 -> 912[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 777 -> 913[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 778[label="FiniteMap.splitGT0 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) otherwise",fontsize=16,color="black",shape="box"];778 -> 914[label="",style="solid", color="black", weight=3]; 40.99/18.79 779 -> 12[label="",style="dashed", color="red", weight=0]; 40.99/18.79 779[label="FiniteMap.mkVBalBranch (Left yvy45) yvy46 (FiniteMap.splitGT yvy48 (Left yvy50)) yvy49",fontsize=16,color="magenta"];779 -> 915[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 779 -> 916[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 779 -> 917[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 779 -> 918[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 780[label="LT",fontsize=16,color="green",shape="box"];781 -> 749[label="",style="dashed", color="red", weight=0]; 40.99/18.79 781[label="compare (Left yvy400) (Right yvy300)",fontsize=16,color="magenta"];782[label="FiniteMap.splitGT0 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) otherwise",fontsize=16,color="black",shape="box"];782 -> 919[label="",style="solid", color="black", weight=3]; 40.99/18.79 783 -> 12[label="",style="dashed", color="red", weight=0]; 40.99/18.79 783[label="FiniteMap.mkVBalBranch (Right yvy300) yvy31 (FiniteMap.splitGT yvy33 (Left yvy400)) yvy34",fontsize=16,color="magenta"];783 -> 920[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 783 -> 921[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 783 -> 922[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 783 -> 923[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 784 -> 67[label="",style="dashed", color="red", weight=0]; 40.99/18.79 784[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];785[label="yvy340",fontsize=16,color="green",shape="box"];786[label="yvy342",fontsize=16,color="green",shape="box"];787[label="Left yvy400",fontsize=16,color="green",shape="box"];788[label="yvy344",fontsize=16,color="green",shape="box"];789[label="yvy343",fontsize=16,color="green",shape="box"];790[label="yvy341",fontsize=16,color="green",shape="box"];791[label="LT",fontsize=16,color="green",shape="box"];792 -> 761[label="",style="dashed", color="red", weight=0]; 40.99/18.79 792[label="compare (Right yvy400) (Left yvy300)",fontsize=16,color="magenta"];793[label="FiniteMap.splitGT0 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) otherwise",fontsize=16,color="black",shape="box"];793 -> 924[label="",style="solid", color="black", weight=3]; 40.99/18.79 794 -> 12[label="",style="dashed", color="red", weight=0]; 40.99/18.79 794[label="FiniteMap.mkVBalBranch (Left yvy300) yvy31 (FiniteMap.splitGT yvy33 (Right yvy400)) yvy34",fontsize=16,color="magenta"];794 -> 925[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 794 -> 926[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 794 -> 927[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 794 -> 928[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 795 -> 67[label="",style="dashed", color="red", weight=0]; 40.99/18.79 795[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];796[label="yvy340",fontsize=16,color="green",shape="box"];797[label="yvy342",fontsize=16,color="green",shape="box"];798[label="Right yvy400",fontsize=16,color="green",shape="box"];799[label="yvy344",fontsize=16,color="green",shape="box"];800[label="yvy343",fontsize=16,color="green",shape="box"];801[label="yvy341",fontsize=16,color="green",shape="box"];802[label="LT",fontsize=16,color="green",shape="box"];803 -> 773[label="",style="dashed", color="red", weight=0]; 40.99/18.79 803[label="compare (Right yvy65) (Right yvy60)",fontsize=16,color="magenta"];803 -> 929[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 803 -> 930[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 804[label="FiniteMap.splitGT0 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) otherwise",fontsize=16,color="black",shape="box"];804 -> 931[label="",style="solid", color="black", weight=3]; 40.99/18.79 805 -> 12[label="",style="dashed", color="red", weight=0]; 40.99/18.79 805[label="FiniteMap.mkVBalBranch (Right yvy60) yvy61 (FiniteMap.splitGT yvy63 (Right yvy65)) yvy64",fontsize=16,color="magenta"];805 -> 932[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 805 -> 933[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 805 -> 934[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 805 -> 935[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2859[label="Left yvy400",fontsize=16,color="green",shape="box"];2860[label="yvy400 == yvy500",fontsize=16,color="blue",shape="box"];5320[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2860 -> 5320[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5320 -> 2942[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5321[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2860 -> 5321[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5321 -> 2943[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5322[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2860 -> 5322[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5322 -> 2944[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5323[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2860 -> 5323[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5323 -> 2945[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5324[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2860 -> 5324[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5324 -> 2946[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5325[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2860 -> 5325[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5325 -> 2947[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5326[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2860 -> 5326[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5326 -> 2948[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5327[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2860 -> 5327[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5327 -> 2949[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5328[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2860 -> 5328[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5328 -> 2950[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5329[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2860 -> 5329[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5329 -> 2951[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5330[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2860 -> 5330[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5330 -> 2952[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5331[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2860 -> 5331[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5331 -> 2953[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5332[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2860 -> 5332[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5332 -> 2954[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5333[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2860 -> 5333[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5333 -> 2955[label="",style="solid", color="blue", weight=3]; 40.99/18.79 2861[label="Left yvy500",fontsize=16,color="green",shape="box"];809 -> 950[label="",style="dashed", color="red", weight=0]; 40.99/18.79 809[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 (Left yvy400 > Left yvy500)",fontsize=16,color="magenta"];809 -> 951[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 810 -> 825[label="",style="dashed", color="red", weight=0]; 40.99/18.79 810[label="FiniteMap.mkBalBranch (Left yvy500) yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Left yvy400) yvy41) yvy54",fontsize=16,color="magenta"];810 -> 828[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 810 -> 829[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2862[label="Left yvy400",fontsize=16,color="green",shape="box"];2863[label="False",fontsize=16,color="green",shape="box"];2864[label="Right yvy500",fontsize=16,color="green",shape="box"];812 -> 952[label="",style="dashed", color="red", weight=0]; 40.99/18.79 812[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 (Left yvy400 > Right yvy500)",fontsize=16,color="magenta"];812 -> 953[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 813 -> 825[label="",style="dashed", color="red", weight=0]; 40.99/18.79 813[label="FiniteMap.mkBalBranch (Right yvy500) yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Left yvy400) yvy41) yvy54",fontsize=16,color="magenta"];813 -> 830[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 813 -> 831[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2865[label="Right yvy400",fontsize=16,color="green",shape="box"];2866[label="False",fontsize=16,color="green",shape="box"];2867[label="Left yvy500",fontsize=16,color="green",shape="box"];815 -> 954[label="",style="dashed", color="red", weight=0]; 40.99/18.79 815[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 (Right yvy400 > Left yvy500)",fontsize=16,color="magenta"];815 -> 955[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 816 -> 825[label="",style="dashed", color="red", weight=0]; 40.99/18.79 816[label="FiniteMap.mkBalBranch (Left yvy500) yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Right yvy400) yvy41) yvy54",fontsize=16,color="magenta"];816 -> 832[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 816 -> 833[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2868[label="Right yvy400",fontsize=16,color="green",shape="box"];2869[label="yvy400 == yvy500",fontsize=16,color="blue",shape="box"];5334[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2869 -> 5334[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5334 -> 2956[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5335[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2869 -> 5335[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5335 -> 2957[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5336[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2869 -> 5336[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5336 -> 2958[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5337[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2869 -> 5337[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5337 -> 2959[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5338[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2869 -> 5338[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5338 -> 2960[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5339[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2869 -> 5339[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5339 -> 2961[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5340[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2869 -> 5340[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5340 -> 2962[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5341[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2869 -> 5341[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5341 -> 2963[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5342[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2869 -> 5342[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5342 -> 2964[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5343[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2869 -> 5343[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5343 -> 2965[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5344[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2869 -> 5344[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5344 -> 2966[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5345[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2869 -> 5345[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5345 -> 2967[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5346[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2869 -> 5346[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5346 -> 2968[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5347[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2869 -> 5347[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5347 -> 2969[label="",style="solid", color="blue", weight=3]; 40.99/18.79 2870[label="Right yvy500",fontsize=16,color="green",shape="box"];820 -> 970[label="",style="dashed", color="red", weight=0]; 40.99/18.79 820[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 (Right yvy400 > Right yvy500)",fontsize=16,color="magenta"];820 -> 971[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 821 -> 825[label="",style="dashed", color="red", weight=0]; 40.99/18.79 821[label="FiniteMap.mkBalBranch (Right yvy500) yvy51 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Right yvy400) yvy41) yvy54",fontsize=16,color="magenta"];821 -> 834[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 821 -> 835[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 822[label="primCmpInt (Pos (primPlusNat (primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];822 -> 972[label="",style="solid", color="black", weight=3]; 40.99/18.79 823[label="primCmpInt (Pos Zero) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos Zero) yvy63 yvy64)",fontsize=16,color="black",shape="box"];823 -> 973[label="",style="solid", color="black", weight=3]; 40.99/18.79 975 -> 3960[label="",style="dashed", color="red", weight=0]; 40.99/18.79 975[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="magenta"];975 -> 3961[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 975 -> 3962[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 974[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 yvy126",fontsize=16,color="burlywood",shape="triangle"];5348[label="yvy126/False",fontsize=10,color="white",style="solid",shape="box"];974 -> 5348[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5348 -> 978[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5349[label="yvy126/True",fontsize=10,color="white",style="solid",shape="box"];974 -> 5349[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5349 -> 979[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 826 -> 12[label="",style="dashed", color="red", weight=0]; 40.99/18.79 826[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64) yvy53",fontsize=16,color="magenta"];826 -> 980[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 826 -> 981[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 825[label="FiniteMap.mkBalBranch yvy50 yvy51 yvy107 yvy54",fontsize=16,color="black",shape="triangle"];825 -> 982[label="",style="solid", color="black", weight=3]; 40.99/18.79 836[label="primCmpInt (Neg (primPlusNat (primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];836 -> 983[label="",style="solid", color="black", weight=3]; 40.99/18.79 837[label="primCmpInt (Neg Zero) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg Zero) yvy63 yvy64)",fontsize=16,color="black",shape="box"];837 -> 984[label="",style="solid", color="black", weight=3]; 40.99/18.79 986 -> 3960[label="",style="dashed", color="red", weight=0]; 40.99/18.79 986[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="magenta"];986 -> 3963[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 986 -> 3964[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 985[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 yvy127",fontsize=16,color="burlywood",shape="triangle"];5350[label="yvy127/False",fontsize=10,color="white",style="solid",shape="box"];985 -> 5350[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5350 -> 989[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5351[label="yvy127/True",fontsize=10,color="white",style="solid",shape="box"];985 -> 5351[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5351 -> 990[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 827 -> 12[label="",style="dashed", color="red", weight=0]; 40.99/18.79 827[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64) yvy53",fontsize=16,color="magenta"];827 -> 991[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 827 -> 992[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3244[label="primEqInt (Pos (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];5352[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];3244 -> 5352[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5352 -> 3313[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5353[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];3244 -> 5353[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5353 -> 3314[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3245[label="primEqInt (Pos Zero) yvy300",fontsize=16,color="burlywood",shape="box"];5354[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];3245 -> 5354[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5354 -> 3315[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5355[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];3245 -> 5355[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5355 -> 3316[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3246[label="primEqInt (Neg (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];5356[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];3246 -> 5356[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5356 -> 3317[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5357[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];3246 -> 5357[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5357 -> 3318[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3247[label="primEqInt (Neg Zero) yvy300",fontsize=16,color="burlywood",shape="box"];5358[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];3247 -> 5358[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5358 -> 3319[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5359[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];3247 -> 5359[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5359 -> 3320[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3248 -> 2981[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3248[label="primEqInt yvy4000 yvy3000",fontsize=16,color="magenta"];3248 -> 3321[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3248 -> 3322[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3249[label="primEqChar (Char yvy4000) (Char yvy3000)",fontsize=16,color="black",shape="box"];3249 -> 3323[label="",style="solid", color="black", weight=3]; 40.99/18.79 3250[label="True",fontsize=16,color="green",shape="box"];3251[label="False",fontsize=16,color="green",shape="box"];3252[label="False",fontsize=16,color="green",shape="box"];3253[label="True",fontsize=16,color="green",shape="box"];3254 -> 3423[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3254[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];3254 -> 3424[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3254 -> 3425[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3255[label="primEqDouble (Double yvy4000 yvy4001) (Double yvy3000 yvy3001)",fontsize=16,color="black",shape="box"];3255 -> 3334[label="",style="solid", color="black", weight=3]; 40.99/18.79 3256[label="True",fontsize=16,color="green",shape="box"];3257 -> 3423[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3257[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];3257 -> 3426[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3257 -> 3427[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3258[label="False",fontsize=16,color="green",shape="box"];3259[label="False",fontsize=16,color="green",shape="box"];3260[label="True",fontsize=16,color="green",shape="box"];3261[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5360[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3261 -> 5360[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5360 -> 3335[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5361[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3261 -> 5361[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5361 -> 3336[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5362[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3261 -> 5362[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5362 -> 3337[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5363[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3261 -> 5363[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5363 -> 3338[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5364[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3261 -> 5364[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5364 -> 3339[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5365[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3261 -> 5365[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5365 -> 3340[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5366[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3261 -> 5366[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5366 -> 3341[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5367[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3261 -> 5367[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5367 -> 3342[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5368[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3261 -> 5368[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5368 -> 3343[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5369[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3261 -> 5369[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5369 -> 3344[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5370[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3261 -> 5370[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5370 -> 3345[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5371[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3261 -> 5371[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5371 -> 3346[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5372[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3261 -> 5372[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5372 -> 3347[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5373[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3261 -> 5373[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5373 -> 3348[label="",style="solid", color="blue", weight=3]; 40.99/18.79 3262[label="False",fontsize=16,color="green",shape="box"];3263[label="False",fontsize=16,color="green",shape="box"];3264[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5374[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3264 -> 5374[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5374 -> 3349[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5375[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3264 -> 5375[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5375 -> 3350[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5376[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3264 -> 5376[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5376 -> 3351[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5377[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3264 -> 5377[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5377 -> 3352[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5378[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3264 -> 5378[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5378 -> 3353[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5379[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3264 -> 5379[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5379 -> 3354[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5380[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3264 -> 5380[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5380 -> 3355[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5381[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3264 -> 5381[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5381 -> 3356[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5382[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3264 -> 5382[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5382 -> 3357[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5383[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3264 -> 5383[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5383 -> 3358[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5384[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3264 -> 5384[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5384 -> 3359[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5385[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3264 -> 5385[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5385 -> 3360[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5386[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3264 -> 5386[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5386 -> 3361[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5387[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3264 -> 5387[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5387 -> 3362[label="",style="solid", color="blue", weight=3]; 40.99/18.79 3265[label="primEqFloat (Float yvy4000 yvy4001) (Float yvy3000 yvy3001)",fontsize=16,color="black",shape="box"];3265 -> 3363[label="",style="solid", color="black", weight=3]; 40.99/18.79 3266 -> 3423[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3266[label="yvy4000 == yvy3000 && yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];3266 -> 3428[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3266 -> 3429[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3267 -> 3423[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3267[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];3267 -> 3430[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3267 -> 3431[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3268[label="True",fontsize=16,color="green",shape="box"];3269[label="False",fontsize=16,color="green",shape="box"];3270[label="False",fontsize=16,color="green",shape="box"];3271[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5388[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3271 -> 5388[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5388 -> 3375[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5389[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3271 -> 5389[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5389 -> 3376[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5390[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3271 -> 5390[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5390 -> 3377[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5391[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3271 -> 5391[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5391 -> 3378[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5392[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3271 -> 5392[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5392 -> 3379[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5393[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3271 -> 5393[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5393 -> 3380[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5394[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3271 -> 5394[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5394 -> 3381[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5395[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3271 -> 5395[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5395 -> 3382[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5396[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3271 -> 5396[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5396 -> 3383[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5397[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3271 -> 5397[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5397 -> 3384[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5398[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3271 -> 5398[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5398 -> 3385[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5399[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3271 -> 5399[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5399 -> 3386[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5400[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3271 -> 5400[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5400 -> 3387[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5401[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3271 -> 5401[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5401 -> 3388[label="",style="solid", color="blue", weight=3]; 40.99/18.79 3272[label="compare1 (Left yvy7900) (Left yvy8000) (Left yvy7900 <= Left yvy8000)",fontsize=16,color="black",shape="box"];3272 -> 3389[label="",style="solid", color="black", weight=3]; 40.99/18.79 3273[label="compare1 (Left yvy7900) (Right yvy8000) (Left yvy7900 <= Right yvy8000)",fontsize=16,color="black",shape="box"];3273 -> 3390[label="",style="solid", color="black", weight=3]; 40.99/18.79 3274[label="compare1 (Right yvy7900) (Left yvy8000) (Right yvy7900 <= Left yvy8000)",fontsize=16,color="black",shape="box"];3274 -> 3391[label="",style="solid", color="black", weight=3]; 40.99/18.79 3275[label="compare1 (Right yvy7900) (Right yvy8000) (Right yvy7900 <= Right yvy8000)",fontsize=16,color="black",shape="box"];3275 -> 3392[label="",style="solid", color="black", weight=3]; 40.99/18.79 877[label="compare3 (Left yvy20) (Left yvy15)",fontsize=16,color="black",shape="box"];877 -> 1085[label="",style="solid", color="black", weight=3]; 40.99/18.79 878[label="FiniteMap.splitLT0 (Left yvy15) yvy16 yvy17 yvy18 yvy19 (Left yvy20) True",fontsize=16,color="black",shape="box"];878 -> 1086[label="",style="solid", color="black", weight=3]; 40.99/18.79 879[label="yvy18",fontsize=16,color="green",shape="box"];880[label="Left yvy15",fontsize=16,color="green",shape="box"];881[label="yvy16",fontsize=16,color="green",shape="box"];882 -> 236[label="",style="dashed", color="red", weight=0]; 40.99/18.79 882[label="FiniteMap.splitLT yvy19 (Left yvy20)",fontsize=16,color="magenta"];882 -> 1087[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 882 -> 1088[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 883[label="compare3 (Left yvy400) (Right yvy300)",fontsize=16,color="black",shape="box"];883 -> 1089[label="",style="solid", color="black", weight=3]; 40.99/18.79 884[label="FiniteMap.splitLT0 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) True",fontsize=16,color="black",shape="box"];884 -> 1090[label="",style="solid", color="black", weight=3]; 40.99/18.79 885[label="yvy33",fontsize=16,color="green",shape="box"];886[label="Right yvy300",fontsize=16,color="green",shape="box"];887[label="yvy31",fontsize=16,color="green",shape="box"];888 -> 236[label="",style="dashed", color="red", weight=0]; 40.99/18.79 888[label="FiniteMap.splitLT yvy34 (Left yvy400)",fontsize=16,color="magenta"];888 -> 1091[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 890[label="compare3 (Right yvy400) (Left yvy300)",fontsize=16,color="black",shape="box"];890 -> 1092[label="",style="solid", color="black", weight=3]; 40.99/18.79 891[label="FiniteMap.splitLT0 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) True",fontsize=16,color="black",shape="box"];891 -> 1093[label="",style="solid", color="black", weight=3]; 40.99/18.79 892[label="yvy33",fontsize=16,color="green",shape="box"];893[label="Left yvy300",fontsize=16,color="green",shape="box"];894[label="yvy31",fontsize=16,color="green",shape="box"];895 -> 279[label="",style="dashed", color="red", weight=0]; 40.99/18.79 895[label="FiniteMap.splitLT yvy34 (Right yvy400)",fontsize=16,color="magenta"];895 -> 1094[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 906[label="compare3 (Right yvy35) (Right yvy30)",fontsize=16,color="black",shape="box"];906 -> 1111[label="",style="solid", color="black", weight=3]; 40.99/18.79 907[label="FiniteMap.splitLT0 (Right yvy30) yvy31 yvy32 yvy33 yvy34 (Right yvy35) True",fontsize=16,color="black",shape="box"];907 -> 1112[label="",style="solid", color="black", weight=3]; 40.99/18.79 908[label="yvy33",fontsize=16,color="green",shape="box"];909[label="Right yvy30",fontsize=16,color="green",shape="box"];910[label="yvy31",fontsize=16,color="green",shape="box"];911 -> 279[label="",style="dashed", color="red", weight=0]; 40.99/18.79 911[label="FiniteMap.splitLT yvy34 (Right yvy35)",fontsize=16,color="magenta"];911 -> 1113[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 911 -> 1114[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 912[label="yvy45",fontsize=16,color="green",shape="box"];913[label="yvy50",fontsize=16,color="green",shape="box"];914[label="FiniteMap.splitGT0 (Left yvy45) yvy46 yvy47 yvy48 yvy49 (Left yvy50) True",fontsize=16,color="black",shape="box"];914 -> 1115[label="",style="solid", color="black", weight=3]; 40.99/18.79 915 -> 289[label="",style="dashed", color="red", weight=0]; 40.99/18.79 915[label="FiniteMap.splitGT yvy48 (Left yvy50)",fontsize=16,color="magenta"];915 -> 1116[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 915 -> 1117[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 916[label="Left yvy45",fontsize=16,color="green",shape="box"];917[label="yvy46",fontsize=16,color="green",shape="box"];918[label="yvy49",fontsize=16,color="green",shape="box"];919[label="FiniteMap.splitGT0 (Right yvy300) yvy31 yvy32 yvy33 yvy34 (Left yvy400) True",fontsize=16,color="black",shape="box"];919 -> 1118[label="",style="solid", color="black", weight=3]; 40.99/18.79 920 -> 289[label="",style="dashed", color="red", weight=0]; 40.99/18.79 920[label="FiniteMap.splitGT yvy33 (Left yvy400)",fontsize=16,color="magenta"];920 -> 1119[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 921[label="Right yvy300",fontsize=16,color="green",shape="box"];922[label="yvy31",fontsize=16,color="green",shape="box"];923[label="yvy34",fontsize=16,color="green",shape="box"];924[label="FiniteMap.splitGT0 (Left yvy300) yvy31 yvy32 yvy33 yvy34 (Right yvy400) True",fontsize=16,color="black",shape="box"];924 -> 1120[label="",style="solid", color="black", weight=3]; 40.99/18.79 925 -> 327[label="",style="dashed", color="red", weight=0]; 40.99/18.79 925[label="FiniteMap.splitGT yvy33 (Right yvy400)",fontsize=16,color="magenta"];925 -> 1121[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 926[label="Left yvy300",fontsize=16,color="green",shape="box"];927[label="yvy31",fontsize=16,color="green",shape="box"];928[label="yvy34",fontsize=16,color="green",shape="box"];929[label="yvy60",fontsize=16,color="green",shape="box"];930[label="yvy65",fontsize=16,color="green",shape="box"];931[label="FiniteMap.splitGT0 (Right yvy60) yvy61 yvy62 yvy63 yvy64 (Right yvy65) True",fontsize=16,color="black",shape="box"];931 -> 1122[label="",style="solid", color="black", weight=3]; 40.99/18.79 932 -> 327[label="",style="dashed", color="red", weight=0]; 40.99/18.79 932[label="FiniteMap.splitGT yvy63 (Right yvy65)",fontsize=16,color="magenta"];932 -> 1123[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 932 -> 1124[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 933[label="Right yvy60",fontsize=16,color="green",shape="box"];934[label="yvy61",fontsize=16,color="green",shape="box"];935[label="yvy64",fontsize=16,color="green",shape="box"];2942 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2942[label="yvy400 == yvy500",fontsize=16,color="magenta"];2942 -> 3056[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2943 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2943[label="yvy400 == yvy500",fontsize=16,color="magenta"];2943 -> 3057[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2944 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2944[label="yvy400 == yvy500",fontsize=16,color="magenta"];2944 -> 3058[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2945 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2945[label="yvy400 == yvy500",fontsize=16,color="magenta"];2945 -> 3059[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2946 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2946[label="yvy400 == yvy500",fontsize=16,color="magenta"];2946 -> 3060[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2947 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2947[label="yvy400 == yvy500",fontsize=16,color="magenta"];2947 -> 3061[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2948 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2948[label="yvy400 == yvy500",fontsize=16,color="magenta"];2948 -> 3062[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2949 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2949[label="yvy400 == yvy500",fontsize=16,color="magenta"];2949 -> 3063[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2950 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2950[label="yvy400 == yvy500",fontsize=16,color="magenta"];2950 -> 3064[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2951 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2951[label="yvy400 == yvy500",fontsize=16,color="magenta"];2951 -> 3065[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2952 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2952[label="yvy400 == yvy500",fontsize=16,color="magenta"];2952 -> 3066[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2953 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2953[label="yvy400 == yvy500",fontsize=16,color="magenta"];2953 -> 3067[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2954 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2954[label="yvy400 == yvy500",fontsize=16,color="magenta"];2954 -> 3068[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2955 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2955[label="yvy400 == yvy500",fontsize=16,color="magenta"];2955 -> 3069[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 951 -> 578[label="",style="dashed", color="red", weight=0]; 40.99/18.79 951[label="Left yvy400 > Left yvy500",fontsize=16,color="magenta"];951 -> 1139[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 951 -> 1140[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 950[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 yvy122",fontsize=16,color="burlywood",shape="triangle"];5402[label="yvy122/False",fontsize=10,color="white",style="solid",shape="box"];950 -> 5402[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5402 -> 1141[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5403[label="yvy122/True",fontsize=10,color="white",style="solid",shape="box"];950 -> 5403[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5403 -> 1142[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 828[label="Left yvy500",fontsize=16,color="green",shape="box"];829 -> 33[label="",style="dashed", color="red", weight=0]; 40.99/18.79 829[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Left yvy400) yvy41",fontsize=16,color="magenta"];829 -> 1143[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 829 -> 1144[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 953 -> 585[label="",style="dashed", color="red", weight=0]; 40.99/18.79 953[label="Left yvy400 > Right yvy500",fontsize=16,color="magenta"];953 -> 1145[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 952[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 yvy123",fontsize=16,color="burlywood",shape="triangle"];5404[label="yvy123/False",fontsize=10,color="white",style="solid",shape="box"];952 -> 5404[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5404 -> 1146[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5405[label="yvy123/True",fontsize=10,color="white",style="solid",shape="box"];952 -> 5405[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5405 -> 1147[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 830[label="Right yvy500",fontsize=16,color="green",shape="box"];831 -> 33[label="",style="dashed", color="red", weight=0]; 40.99/18.79 831[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Left yvy400) yvy41",fontsize=16,color="magenta"];831 -> 1148[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 831 -> 1149[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 955 -> 594[label="",style="dashed", color="red", weight=0]; 40.99/18.79 955[label="Right yvy400 > Left yvy500",fontsize=16,color="magenta"];955 -> 1150[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 954[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 yvy124",fontsize=16,color="burlywood",shape="triangle"];5406[label="yvy124/False",fontsize=10,color="white",style="solid",shape="box"];954 -> 5406[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5406 -> 1151[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5407[label="yvy124/True",fontsize=10,color="white",style="solid",shape="box"];954 -> 5407[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5407 -> 1152[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 832[label="Left yvy500",fontsize=16,color="green",shape="box"];833 -> 33[label="",style="dashed", color="red", weight=0]; 40.99/18.79 833[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Right yvy400) yvy41",fontsize=16,color="magenta"];833 -> 1153[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 833 -> 1154[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2956 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2956[label="yvy400 == yvy500",fontsize=16,color="magenta"];2956 -> 3070[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2956 -> 3071[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2957 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2957[label="yvy400 == yvy500",fontsize=16,color="magenta"];2957 -> 3072[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2957 -> 3073[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2958 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2958[label="yvy400 == yvy500",fontsize=16,color="magenta"];2958 -> 3074[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2958 -> 3075[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2959 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2959[label="yvy400 == yvy500",fontsize=16,color="magenta"];2959 -> 3076[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2959 -> 3077[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2960 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2960[label="yvy400 == yvy500",fontsize=16,color="magenta"];2960 -> 3078[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2960 -> 3079[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2961 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2961[label="yvy400 == yvy500",fontsize=16,color="magenta"];2961 -> 3080[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2961 -> 3081[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2962 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2962[label="yvy400 == yvy500",fontsize=16,color="magenta"];2962 -> 3082[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2962 -> 3083[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2963 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2963[label="yvy400 == yvy500",fontsize=16,color="magenta"];2963 -> 3084[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2963 -> 3085[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2964 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2964[label="yvy400 == yvy500",fontsize=16,color="magenta"];2964 -> 3086[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2964 -> 3087[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2965 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2965[label="yvy400 == yvy500",fontsize=16,color="magenta"];2965 -> 3088[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2965 -> 3089[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2966 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2966[label="yvy400 == yvy500",fontsize=16,color="magenta"];2966 -> 3090[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2966 -> 3091[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2967 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2967[label="yvy400 == yvy500",fontsize=16,color="magenta"];2967 -> 3092[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2967 -> 3093[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2968 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2968[label="yvy400 == yvy500",fontsize=16,color="magenta"];2968 -> 3094[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2968 -> 3095[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2969 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.79 2969[label="yvy400 == yvy500",fontsize=16,color="magenta"];2969 -> 3096[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 2969 -> 3097[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 971 -> 632[label="",style="dashed", color="red", weight=0]; 40.99/18.79 971[label="Right yvy400 > Right yvy500",fontsize=16,color="magenta"];971 -> 1183[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 971 -> 1184[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 970[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 yvy125",fontsize=16,color="burlywood",shape="triangle"];5408[label="yvy125/False",fontsize=10,color="white",style="solid",shape="box"];970 -> 5408[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5408 -> 1185[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5409[label="yvy125/True",fontsize=10,color="white",style="solid",shape="box"];970 -> 5409[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5409 -> 1186[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 834[label="Right yvy500",fontsize=16,color="green",shape="box"];835 -> 33[label="",style="dashed", color="red", weight=0]; 40.99/18.79 835[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy53 (Right yvy400) yvy41",fontsize=16,color="magenta"];835 -> 1187[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 835 -> 1188[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 972[label="primCmpInt (Pos (primPlusNat (primPlusNat (primMulNat (Succ (Succ (Succ Zero))) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];972 -> 1189[label="",style="solid", color="black", weight=3]; 40.99/18.79 973[label="primCmpInt (Pos Zero) (FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="black",shape="box"];973 -> 1190[label="",style="solid", color="black", weight=3]; 40.99/18.79 3961 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3961[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="magenta"];3961 -> 3969[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3961 -> 3970[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3962[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="black",shape="box"];3962 -> 3971[label="",style="solid", color="black", weight=3]; 40.99/18.79 3960[label="yvy240 < yvy239",fontsize=16,color="black",shape="triangle"];3960 -> 3972[label="",style="solid", color="black", weight=3]; 40.99/18.79 978[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="box"];978 -> 1193[label="",style="solid", color="black", weight=3]; 40.99/18.79 979[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];979 -> 1194[label="",style="solid", color="black", weight=3]; 40.99/18.79 980[label="FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];981[label="yvy53",fontsize=16,color="green",shape="box"];982[label="FiniteMap.mkBalBranch6 yvy50 yvy51 yvy107 yvy54",fontsize=16,color="black",shape="box"];982 -> 1195[label="",style="solid", color="black", weight=3]; 40.99/18.79 983[label="primCmpInt (Neg (primPlusNat (primPlusNat (primMulNat (Succ (Succ (Succ Zero))) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];983 -> 1196[label="",style="solid", color="black", weight=3]; 40.99/18.79 984[label="primCmpInt (Neg Zero) (FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="black",shape="box"];984 -> 1197[label="",style="solid", color="black", weight=3]; 40.99/18.79 3963 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3963[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="magenta"];3963 -> 3973[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3963 -> 3974[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3964[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="black",shape="box"];3964 -> 3975[label="",style="solid", color="black", weight=3]; 40.99/18.79 989[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="box"];989 -> 1200[label="",style="solid", color="black", weight=3]; 40.99/18.79 990[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];990 -> 1201[label="",style="solid", color="black", weight=3]; 40.99/18.79 991[label="FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];992[label="yvy53",fontsize=16,color="green",shape="box"];3313[label="primEqInt (Pos (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];5410[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3313 -> 5410[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5410 -> 3393[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5411[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3313 -> 5411[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5411 -> 3394[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3314[label="primEqInt (Pos (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="black",shape="box"];3314 -> 3395[label="",style="solid", color="black", weight=3]; 40.99/18.79 3315[label="primEqInt (Pos Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];5412[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3315 -> 5412[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5412 -> 3396[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5413[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3315 -> 5413[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5413 -> 3397[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3316[label="primEqInt (Pos Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];5414[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3316 -> 5414[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5414 -> 3398[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5415[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3316 -> 5415[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5415 -> 3399[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3317[label="primEqInt (Neg (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="black",shape="box"];3317 -> 3400[label="",style="solid", color="black", weight=3]; 40.99/18.79 3318[label="primEqInt (Neg (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];5416[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3318 -> 5416[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5416 -> 3401[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5417[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3318 -> 5417[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5417 -> 3402[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3319[label="primEqInt (Neg Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];5418[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3319 -> 5418[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5418 -> 3403[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5419[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3319 -> 5419[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5419 -> 3404[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3320[label="primEqInt (Neg Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];5420[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3320 -> 5420[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5420 -> 3405[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5421[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3320 -> 5421[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5421 -> 3406[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3321[label="yvy3000",fontsize=16,color="green",shape="box"];3322[label="yvy4000",fontsize=16,color="green",shape="box"];3323[label="primEqNat yvy4000 yvy3000",fontsize=16,color="burlywood",shape="triangle"];5422[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];3323 -> 5422[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5422 -> 3407[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5423[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3323 -> 5423[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5423 -> 3408[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3424[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5424[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3424 -> 5424[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5424 -> 3436[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5425[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3424 -> 5425[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5425 -> 3437[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5426[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3424 -> 5426[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5426 -> 3438[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5427[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3424 -> 5427[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5427 -> 3439[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5428[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3424 -> 5428[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5428 -> 3440[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5429[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3424 -> 5429[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5429 -> 3441[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5430[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3424 -> 5430[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5430 -> 3442[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5431[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3424 -> 5431[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5431 -> 3443[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5432[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3424 -> 5432[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5432 -> 3444[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5433[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3424 -> 5433[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5433 -> 3445[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5434[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3424 -> 5434[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5434 -> 3446[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5435[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3424 -> 5435[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5435 -> 3447[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5436[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3424 -> 5436[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5436 -> 3448[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5437[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3424 -> 5437[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5437 -> 3449[label="",style="solid", color="blue", weight=3]; 40.99/18.79 3425[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];5438[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5438[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5438 -> 3450[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5439[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5439[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5439 -> 3451[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5440[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5440[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5440 -> 3452[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5441[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5441[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5441 -> 3453[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5442[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5442[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5442 -> 3454[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5443[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5443[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5443 -> 3455[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5444[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5444[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5444 -> 3456[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5445[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5445[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5445 -> 3457[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5446[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5446[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5446 -> 3458[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5447[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5447[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5447 -> 3459[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5448[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5448[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5448 -> 3460[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5449[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5449[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5449 -> 3461[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5450[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5450[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5450 -> 3462[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5451[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3425 -> 5451[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5451 -> 3463[label="",style="solid", color="blue", weight=3]; 40.99/18.79 3423[label="yvy221 && yvy222",fontsize=16,color="burlywood",shape="triangle"];5452[label="yvy221/False",fontsize=10,color="white",style="solid",shape="box"];3423 -> 5452[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5452 -> 3464[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5453[label="yvy221/True",fontsize=10,color="white",style="solid",shape="box"];3423 -> 5453[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5453 -> 3465[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3334 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3334[label="yvy4000 * yvy3001 == yvy4001 * yvy3000",fontsize=16,color="magenta"];3334 -> 3466[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3334 -> 3467[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3426[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5454[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5454[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5454 -> 3468[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5455[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5455[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5455 -> 3469[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5456[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5456[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5456 -> 3470[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5457[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5457[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5457 -> 3471[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5458[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5458[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5458 -> 3472[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5459[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5459[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5459 -> 3473[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5460[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5460[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5460 -> 3474[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5461[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5461[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5461 -> 3475[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5462[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5462[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5462 -> 3476[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5463[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5463[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5463 -> 3477[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5464[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5464[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5464 -> 3478[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5465[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5465[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5465 -> 3479[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5466[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5466[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5466 -> 3480[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5467[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3426 -> 5467[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5467 -> 3481[label="",style="solid", color="blue", weight=3]; 40.99/18.79 3427 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3427[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3427 -> 3482[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3427 -> 3483[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3335 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3335[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3335 -> 3484[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3335 -> 3485[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3336 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3336[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3336 -> 3486[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3336 -> 3487[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3337 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3337[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3337 -> 3488[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3337 -> 3489[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3338 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3338[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3338 -> 3490[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3338 -> 3491[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3339 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3339[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3339 -> 3492[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3339 -> 3493[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3340 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3340[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3340 -> 3494[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3340 -> 3495[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3341 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3341[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3341 -> 3496[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3341 -> 3497[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3342 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3342[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3342 -> 3498[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3342 -> 3499[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3343 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3343[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3343 -> 3500[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3343 -> 3501[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3344 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3344[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3344 -> 3502[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3344 -> 3503[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3345 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3345[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3345 -> 3504[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3345 -> 3505[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3346 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3346[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3346 -> 3506[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3346 -> 3507[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3347 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3347[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3347 -> 3508[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3347 -> 3509[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3348 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3348[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3348 -> 3510[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3348 -> 3511[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3349 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3349[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3349 -> 3512[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3349 -> 3513[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3350 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3350[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3350 -> 3514[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3350 -> 3515[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3351 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3351[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3351 -> 3516[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3351 -> 3517[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3352 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3352[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3352 -> 3518[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3352 -> 3519[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3353 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3353[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3353 -> 3520[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3353 -> 3521[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3354 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3354[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3354 -> 3522[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3354 -> 3523[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3355 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3355[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3355 -> 3524[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3355 -> 3525[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3356 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3356[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3356 -> 3526[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3356 -> 3527[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3357 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3357[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3357 -> 3528[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3357 -> 3529[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3358 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3358[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3358 -> 3530[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3358 -> 3531[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3359 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3359[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3359 -> 3532[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3359 -> 3533[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3360 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3360[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3360 -> 3534[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3360 -> 3535[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3361 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3361[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3361 -> 3536[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3361 -> 3537[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3362 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3362[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3362 -> 3538[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3362 -> 3539[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3363 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3363[label="yvy4000 * yvy3001 == yvy4001 * yvy3000",fontsize=16,color="magenta"];3363 -> 3540[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3363 -> 3541[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3428[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5468[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3428 -> 5468[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5468 -> 3542[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5469[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3428 -> 5469[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5469 -> 3543[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5470[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3428 -> 5470[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5470 -> 3544[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5471[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3428 -> 5471[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5471 -> 3545[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5472[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3428 -> 5472[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5472 -> 3546[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5473[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3428 -> 5473[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5473 -> 3547[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5474[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3428 -> 5474[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5474 -> 3548[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5475[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3428 -> 5475[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5475 -> 3549[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5476[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3428 -> 5476[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5476 -> 3550[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5477[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3428 -> 5477[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5477 -> 3551[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5478[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3428 -> 5478[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5478 -> 3552[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5479[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3428 -> 5479[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5479 -> 3553[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5480[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3428 -> 5480[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5480 -> 3554[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5481[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3428 -> 5481[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5481 -> 3555[label="",style="solid", color="blue", weight=3]; 40.99/18.79 3429 -> 3423[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3429[label="yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];3429 -> 3556[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3429 -> 3557[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3430[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];5482[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3430 -> 5482[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5482 -> 3558[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5483[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3430 -> 5483[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5483 -> 3559[label="",style="solid", color="blue", weight=3]; 40.99/18.79 3431[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];5484[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3431 -> 5484[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5484 -> 3560[label="",style="solid", color="blue", weight=3]; 40.99/18.79 5485[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3431 -> 5485[label="",style="solid", color="blue", weight=9]; 40.99/18.79 5485 -> 3561[label="",style="solid", color="blue", weight=3]; 40.99/18.79 3375 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3375[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3375 -> 3562[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3375 -> 3563[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3376 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3376[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3376 -> 3564[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3376 -> 3565[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3377 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3377[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3377 -> 3566[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3377 -> 3567[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3378 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3378[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3378 -> 3568[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3378 -> 3569[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3379 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3379[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3379 -> 3570[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3379 -> 3571[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3380 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3380[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3380 -> 3572[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3380 -> 3573[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3381 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3381[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3381 -> 3574[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3381 -> 3575[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3382 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3382[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3382 -> 3576[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3382 -> 3577[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3383 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3383[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3383 -> 3578[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3383 -> 3579[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3384 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3384[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3384 -> 3580[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3384 -> 3581[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3385 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3385[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3385 -> 3582[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3385 -> 3583[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3386 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3386[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3386 -> 3584[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3386 -> 3585[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3387 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3387[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3387 -> 3586[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3387 -> 3587[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3388 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3388[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3388 -> 3588[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3388 -> 3589[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3389 -> 3590[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3389[label="compare1 (Left yvy7900) (Left yvy8000) (yvy7900 <= yvy8000)",fontsize=16,color="magenta"];3389 -> 3591[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3389 -> 3592[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3389 -> 3593[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3390[label="compare1 (Left yvy7900) (Right yvy8000) True",fontsize=16,color="black",shape="box"];3390 -> 3594[label="",style="solid", color="black", weight=3]; 40.99/18.79 3391[label="compare1 (Right yvy7900) (Left yvy8000) False",fontsize=16,color="black",shape="box"];3391 -> 3595[label="",style="solid", color="black", weight=3]; 40.99/18.79 3392 -> 3596[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3392[label="compare1 (Right yvy7900) (Right yvy8000) (yvy7900 <= yvy8000)",fontsize=16,color="magenta"];3392 -> 3597[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3392 -> 3598[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3392 -> 3599[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1085 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.79 1085[label="compare2 (Left yvy20) (Left yvy15) (Left yvy20 == Left yvy15)",fontsize=16,color="magenta"];1085 -> 2871[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1085 -> 2872[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1085 -> 2873[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1086[label="yvy18",fontsize=16,color="green",shape="box"];1087[label="yvy19",fontsize=16,color="green",shape="box"];1088[label="yvy20",fontsize=16,color="green",shape="box"];1089 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.79 1089[label="compare2 (Left yvy400) (Right yvy300) (Left yvy400 == Right yvy300)",fontsize=16,color="magenta"];1089 -> 2874[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1089 -> 2875[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1089 -> 2876[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1090[label="yvy33",fontsize=16,color="green",shape="box"];1091[label="yvy34",fontsize=16,color="green",shape="box"];1092 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.79 1092[label="compare2 (Right yvy400) (Left yvy300) (Right yvy400 == Left yvy300)",fontsize=16,color="magenta"];1092 -> 2877[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1092 -> 2878[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1092 -> 2879[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1093[label="yvy33",fontsize=16,color="green",shape="box"];1094[label="yvy34",fontsize=16,color="green",shape="box"];1111 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.79 1111[label="compare2 (Right yvy35) (Right yvy30) (Right yvy35 == Right yvy30)",fontsize=16,color="magenta"];1111 -> 2880[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1111 -> 2881[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1111 -> 2882[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1112[label="yvy33",fontsize=16,color="green",shape="box"];1113[label="yvy34",fontsize=16,color="green",shape="box"];1114[label="yvy35",fontsize=16,color="green",shape="box"];1115[label="yvy49",fontsize=16,color="green",shape="box"];1116[label="yvy48",fontsize=16,color="green",shape="box"];1117[label="yvy50",fontsize=16,color="green",shape="box"];1118[label="yvy34",fontsize=16,color="green",shape="box"];1119[label="yvy33",fontsize=16,color="green",shape="box"];1120[label="yvy34",fontsize=16,color="green",shape="box"];1121[label="yvy33",fontsize=16,color="green",shape="box"];1122[label="yvy64",fontsize=16,color="green",shape="box"];1123[label="yvy63",fontsize=16,color="green",shape="box"];1124[label="yvy65",fontsize=16,color="green",shape="box"];3056[label="yvy500",fontsize=16,color="green",shape="box"];3057[label="yvy500",fontsize=16,color="green",shape="box"];3058[label="yvy500",fontsize=16,color="green",shape="box"];3059[label="yvy500",fontsize=16,color="green",shape="box"];3060[label="yvy500",fontsize=16,color="green",shape="box"];3061[label="yvy500",fontsize=16,color="green",shape="box"];3062[label="yvy500",fontsize=16,color="green",shape="box"];3063[label="yvy500",fontsize=16,color="green",shape="box"];3064[label="yvy500",fontsize=16,color="green",shape="box"];3065[label="yvy500",fontsize=16,color="green",shape="box"];3066[label="yvy500",fontsize=16,color="green",shape="box"];3067[label="yvy500",fontsize=16,color="green",shape="box"];3068[label="yvy500",fontsize=16,color="green",shape="box"];3069[label="yvy500",fontsize=16,color="green",shape="box"];1139[label="yvy500",fontsize=16,color="green",shape="box"];1140[label="yvy400",fontsize=16,color="green",shape="box"];1141[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 False",fontsize=16,color="black",shape="box"];1141 -> 1472[label="",style="solid", color="black", weight=3]; 40.99/18.79 1142[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1142 -> 1473[label="",style="solid", color="black", weight=3]; 40.99/18.79 1143[label="Left yvy400",fontsize=16,color="green",shape="box"];1144[label="yvy53",fontsize=16,color="green",shape="box"];1145[label="yvy500",fontsize=16,color="green",shape="box"];1146[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 False",fontsize=16,color="black",shape="box"];1146 -> 1474[label="",style="solid", color="black", weight=3]; 40.99/18.79 1147[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1147 -> 1475[label="",style="solid", color="black", weight=3]; 40.99/18.79 1148[label="Left yvy400",fontsize=16,color="green",shape="box"];1149[label="yvy53",fontsize=16,color="green",shape="box"];1150[label="yvy500",fontsize=16,color="green",shape="box"];1151[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 False",fontsize=16,color="black",shape="box"];1151 -> 1476[label="",style="solid", color="black", weight=3]; 40.99/18.79 1152[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1152 -> 1477[label="",style="solid", color="black", weight=3]; 40.99/18.79 1153[label="Right yvy400",fontsize=16,color="green",shape="box"];1154[label="yvy53",fontsize=16,color="green",shape="box"];3070[label="yvy500",fontsize=16,color="green",shape="box"];3071[label="yvy400",fontsize=16,color="green",shape="box"];3072[label="yvy500",fontsize=16,color="green",shape="box"];3073[label="yvy400",fontsize=16,color="green",shape="box"];3074[label="yvy500",fontsize=16,color="green",shape="box"];3075[label="yvy400",fontsize=16,color="green",shape="box"];3076[label="yvy500",fontsize=16,color="green",shape="box"];3077[label="yvy400",fontsize=16,color="green",shape="box"];3078[label="yvy500",fontsize=16,color="green",shape="box"];3079[label="yvy400",fontsize=16,color="green",shape="box"];3080[label="yvy500",fontsize=16,color="green",shape="box"];3081[label="yvy400",fontsize=16,color="green",shape="box"];3082[label="yvy500",fontsize=16,color="green",shape="box"];3083[label="yvy400",fontsize=16,color="green",shape="box"];3084[label="yvy500",fontsize=16,color="green",shape="box"];3085[label="yvy400",fontsize=16,color="green",shape="box"];3086[label="yvy500",fontsize=16,color="green",shape="box"];3087[label="yvy400",fontsize=16,color="green",shape="box"];3088[label="yvy500",fontsize=16,color="green",shape="box"];3089[label="yvy400",fontsize=16,color="green",shape="box"];3090[label="yvy500",fontsize=16,color="green",shape="box"];3091[label="yvy400",fontsize=16,color="green",shape="box"];3092[label="yvy500",fontsize=16,color="green",shape="box"];3093[label="yvy400",fontsize=16,color="green",shape="box"];3094[label="yvy500",fontsize=16,color="green",shape="box"];3095[label="yvy400",fontsize=16,color="green",shape="box"];3096[label="yvy500",fontsize=16,color="green",shape="box"];3097[label="yvy400",fontsize=16,color="green",shape="box"];1183[label="yvy500",fontsize=16,color="green",shape="box"];1184[label="yvy400",fontsize=16,color="green",shape="box"];1185[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 False",fontsize=16,color="black",shape="box"];1185 -> 1478[label="",style="solid", color="black", weight=3]; 40.99/18.79 1186[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1186 -> 1479[label="",style="solid", color="black", weight=3]; 40.99/18.79 1187[label="Right yvy400",fontsize=16,color="green",shape="box"];1188[label="yvy53",fontsize=16,color="green",shape="box"];1189[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primMulNat (Succ (Succ Zero)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1189 -> 1480[label="",style="solid", color="black", weight=3]; 40.99/18.79 1190[label="primCmpInt (Pos Zero) yvy52",fontsize=16,color="burlywood",shape="box"];5486[label="yvy52/Pos yvy520",fontsize=10,color="white",style="solid",shape="box"];1190 -> 5486[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5486 -> 1481[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5487[label="yvy52/Neg yvy520",fontsize=10,color="white",style="solid",shape="box"];1190 -> 5487[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5487 -> 1482[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3969 -> 1920[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3969[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3970 -> 1921[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3970[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="magenta"];1275[label="yvy4001 * yvy3000",fontsize=16,color="black",shape="triangle"];1275 -> 1573[label="",style="solid", color="black", weight=3]; 40.99/18.79 3971 -> 2775[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3971[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];3971 -> 3991[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3972 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3972[label="compare yvy240 yvy239 == LT",fontsize=16,color="magenta"];3972 -> 3992[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3972 -> 3993[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1193[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 otherwise",fontsize=16,color="black",shape="box"];1193 -> 1484[label="",style="solid", color="black", weight=3]; 40.99/18.79 1194 -> 825[label="",style="dashed", color="red", weight=0]; 40.99/18.79 1194[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];1194 -> 1485[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1194 -> 1486[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1194 -> 1487[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1194 -> 1488[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1195 -> 1761[label="",style="dashed", color="red", weight=0]; 40.99/18.79 1195[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 (FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54 + FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1195 -> 1762[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1196[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primMulNat (Succ (Succ Zero)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1196 -> 1490[label="",style="solid", color="black", weight=3]; 40.99/18.79 1197[label="primCmpInt (Neg Zero) yvy52",fontsize=16,color="burlywood",shape="box"];5488[label="yvy52/Pos yvy520",fontsize=10,color="white",style="solid",shape="box"];1197 -> 5488[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5488 -> 1491[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5489[label="yvy52/Neg yvy520",fontsize=10,color="white",style="solid",shape="box"];1197 -> 5489[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5489 -> 1492[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3973 -> 1920[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3973[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3974 -> 1948[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3974[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="magenta"];3975 -> 2775[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3975[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64)",fontsize=16,color="magenta"];3975 -> 3994[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1200[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 otherwise",fontsize=16,color="black",shape="box"];1200 -> 1494[label="",style="solid", color="black", weight=3]; 40.99/18.79 1201 -> 825[label="",style="dashed", color="red", weight=0]; 40.99/18.79 1201[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];1201 -> 1495[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1201 -> 1496[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1201 -> 1497[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 1201 -> 1498[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3393[label="primEqInt (Pos (Succ yvy40000)) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3393 -> 3600[label="",style="solid", color="black", weight=3]; 40.99/18.79 3394[label="primEqInt (Pos (Succ yvy40000)) (Pos Zero)",fontsize=16,color="black",shape="box"];3394 -> 3601[label="",style="solid", color="black", weight=3]; 40.99/18.79 3395[label="False",fontsize=16,color="green",shape="box"];3396[label="primEqInt (Pos Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3396 -> 3602[label="",style="solid", color="black", weight=3]; 40.99/18.79 3397[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3397 -> 3603[label="",style="solid", color="black", weight=3]; 40.99/18.79 3398[label="primEqInt (Pos Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3398 -> 3604[label="",style="solid", color="black", weight=3]; 40.99/18.79 3399[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3399 -> 3605[label="",style="solid", color="black", weight=3]; 40.99/18.79 3400[label="False",fontsize=16,color="green",shape="box"];3401[label="primEqInt (Neg (Succ yvy40000)) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3401 -> 3606[label="",style="solid", color="black", weight=3]; 40.99/18.79 3402[label="primEqInt (Neg (Succ yvy40000)) (Neg Zero)",fontsize=16,color="black",shape="box"];3402 -> 3607[label="",style="solid", color="black", weight=3]; 40.99/18.79 3403[label="primEqInt (Neg Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];3403 -> 3608[label="",style="solid", color="black", weight=3]; 40.99/18.79 3404[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3404 -> 3609[label="",style="solid", color="black", weight=3]; 40.99/18.79 3405[label="primEqInt (Neg Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];3405 -> 3610[label="",style="solid", color="black", weight=3]; 40.99/18.79 3406[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3406 -> 3611[label="",style="solid", color="black", weight=3]; 40.99/18.79 3407[label="primEqNat (Succ yvy40000) yvy3000",fontsize=16,color="burlywood",shape="box"];5490[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3407 -> 5490[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5490 -> 3612[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5491[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3407 -> 5491[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5491 -> 3613[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3408[label="primEqNat Zero yvy3000",fontsize=16,color="burlywood",shape="box"];5492[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];3408 -> 5492[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5492 -> 3614[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 5493[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3408 -> 5493[label="",style="solid", color="burlywood", weight=9]; 40.99/18.79 5493 -> 3615[label="",style="solid", color="burlywood", weight=3]; 40.99/18.79 3436 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3436[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3436 -> 3616[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3436 -> 3617[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3437 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3437[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3437 -> 3618[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3437 -> 3619[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3438 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3438[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3438 -> 3620[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3438 -> 3621[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3439 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3439[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3439 -> 3622[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3439 -> 3623[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3440 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3440[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3440 -> 3624[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3440 -> 3625[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3441 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3441[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3441 -> 3626[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3441 -> 3627[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3442 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3442[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3442 -> 3628[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3442 -> 3629[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3443 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3443[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3443 -> 3630[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3443 -> 3631[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3444 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3444[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3444 -> 3632[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3444 -> 3633[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3445 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3445[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3445 -> 3634[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3445 -> 3635[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3446 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3446[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3446 -> 3636[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3446 -> 3637[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3447 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3447[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3447 -> 3638[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3447 -> 3639[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3448 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3448[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3448 -> 3640[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3448 -> 3641[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3449 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3449[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3449 -> 3642[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3449 -> 3643[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3450 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3450[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3450 -> 3644[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3450 -> 3645[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3451 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3451[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3451 -> 3646[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3451 -> 3647[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3452 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3452[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3452 -> 3648[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3452 -> 3649[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3453 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3453[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3453 -> 3650[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3453 -> 3651[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3454 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3454[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3454 -> 3652[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3454 -> 3653[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3455 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3455[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3455 -> 3654[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3455 -> 3655[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3456 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3456[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3456 -> 3656[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3456 -> 3657[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3457 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3457[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3457 -> 3658[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3457 -> 3659[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3458 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3458[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3458 -> 3660[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3458 -> 3661[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3459 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3459[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3459 -> 3662[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3459 -> 3663[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3460 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3460[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3460 -> 3664[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3460 -> 3665[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3461 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3461[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3461 -> 3666[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3461 -> 3667[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3462 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3462[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3462 -> 3668[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3462 -> 3669[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3463 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3463[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3463 -> 3670[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3463 -> 3671[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3464[label="False && yvy222",fontsize=16,color="black",shape="box"];3464 -> 3672[label="",style="solid", color="black", weight=3]; 40.99/18.79 3465[label="True && yvy222",fontsize=16,color="black",shape="box"];3465 -> 3673[label="",style="solid", color="black", weight=3]; 40.99/18.79 3466 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3466[label="yvy4001 * yvy3000",fontsize=16,color="magenta"];3467 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3467[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];3467 -> 3674[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3467 -> 3675[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3468 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3468[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3468 -> 3676[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3468 -> 3677[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3469 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3469[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3469 -> 3678[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3469 -> 3679[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3470 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3470[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3470 -> 3680[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3470 -> 3681[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3471 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3471[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3471 -> 3682[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3471 -> 3683[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3472 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3472[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3472 -> 3684[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3472 -> 3685[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3473 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3473[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3473 -> 3686[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3473 -> 3687[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3474 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3474[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3474 -> 3688[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3474 -> 3689[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3475 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3475[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3475 -> 3690[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3475 -> 3691[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3476 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3476[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3476 -> 3692[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3476 -> 3693[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3477 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3477[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3477 -> 3694[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3477 -> 3695[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3478 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3478[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3478 -> 3696[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3478 -> 3697[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3479 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3479[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3479 -> 3698[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3479 -> 3699[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3480 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3480[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3480 -> 3700[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3480 -> 3701[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3481 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3481[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3481 -> 3702[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3481 -> 3703[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3482[label="yvy3001",fontsize=16,color="green",shape="box"];3483[label="yvy4001",fontsize=16,color="green",shape="box"];3484[label="yvy3000",fontsize=16,color="green",shape="box"];3485[label="yvy4000",fontsize=16,color="green",shape="box"];3486[label="yvy3000",fontsize=16,color="green",shape="box"];3487[label="yvy4000",fontsize=16,color="green",shape="box"];3488[label="yvy3000",fontsize=16,color="green",shape="box"];3489[label="yvy4000",fontsize=16,color="green",shape="box"];3490[label="yvy3000",fontsize=16,color="green",shape="box"];3491[label="yvy4000",fontsize=16,color="green",shape="box"];3492[label="yvy3000",fontsize=16,color="green",shape="box"];3493[label="yvy4000",fontsize=16,color="green",shape="box"];3494[label="yvy3000",fontsize=16,color="green",shape="box"];3495[label="yvy4000",fontsize=16,color="green",shape="box"];3496[label="yvy3000",fontsize=16,color="green",shape="box"];3497[label="yvy4000",fontsize=16,color="green",shape="box"];3498[label="yvy3000",fontsize=16,color="green",shape="box"];3499[label="yvy4000",fontsize=16,color="green",shape="box"];3500[label="yvy3000",fontsize=16,color="green",shape="box"];3501[label="yvy4000",fontsize=16,color="green",shape="box"];3502[label="yvy3000",fontsize=16,color="green",shape="box"];3503[label="yvy4000",fontsize=16,color="green",shape="box"];3504[label="yvy3000",fontsize=16,color="green",shape="box"];3505[label="yvy4000",fontsize=16,color="green",shape="box"];3506[label="yvy3000",fontsize=16,color="green",shape="box"];3507[label="yvy4000",fontsize=16,color="green",shape="box"];3508[label="yvy3000",fontsize=16,color="green",shape="box"];3509[label="yvy4000",fontsize=16,color="green",shape="box"];3510[label="yvy3000",fontsize=16,color="green",shape="box"];3511[label="yvy4000",fontsize=16,color="green",shape="box"];3512[label="yvy3000",fontsize=16,color="green",shape="box"];3513[label="yvy4000",fontsize=16,color="green",shape="box"];3514[label="yvy3000",fontsize=16,color="green",shape="box"];3515[label="yvy4000",fontsize=16,color="green",shape="box"];3516[label="yvy3000",fontsize=16,color="green",shape="box"];3517[label="yvy4000",fontsize=16,color="green",shape="box"];3518[label="yvy3000",fontsize=16,color="green",shape="box"];3519[label="yvy4000",fontsize=16,color="green",shape="box"];3520[label="yvy3000",fontsize=16,color="green",shape="box"];3521[label="yvy4000",fontsize=16,color="green",shape="box"];3522[label="yvy3000",fontsize=16,color="green",shape="box"];3523[label="yvy4000",fontsize=16,color="green",shape="box"];3524[label="yvy3000",fontsize=16,color="green",shape="box"];3525[label="yvy4000",fontsize=16,color="green",shape="box"];3526[label="yvy3000",fontsize=16,color="green",shape="box"];3527[label="yvy4000",fontsize=16,color="green",shape="box"];3528[label="yvy3000",fontsize=16,color="green",shape="box"];3529[label="yvy4000",fontsize=16,color="green",shape="box"];3530[label="yvy3000",fontsize=16,color="green",shape="box"];3531[label="yvy4000",fontsize=16,color="green",shape="box"];3532[label="yvy3000",fontsize=16,color="green",shape="box"];3533[label="yvy4000",fontsize=16,color="green",shape="box"];3534[label="yvy3000",fontsize=16,color="green",shape="box"];3535[label="yvy4000",fontsize=16,color="green",shape="box"];3536[label="yvy3000",fontsize=16,color="green",shape="box"];3537[label="yvy4000",fontsize=16,color="green",shape="box"];3538[label="yvy3000",fontsize=16,color="green",shape="box"];3539[label="yvy4000",fontsize=16,color="green",shape="box"];3540 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3540[label="yvy4001 * yvy3000",fontsize=16,color="magenta"];3540 -> 3704[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3540 -> 3705[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3541 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3541[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];3541 -> 3706[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3541 -> 3707[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3542 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3542[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3542 -> 3708[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3542 -> 3709[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3543 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3543[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3543 -> 3710[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3543 -> 3711[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3544 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3544[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3544 -> 3712[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3544 -> 3713[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3545 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3545[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3545 -> 3714[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3545 -> 3715[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3546 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3546[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3546 -> 3716[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3546 -> 3717[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3547 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3547[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3547 -> 3718[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3547 -> 3719[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3548 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3548[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3548 -> 3720[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3548 -> 3721[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3549 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3549[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3549 -> 3722[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3549 -> 3723[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3550 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3550[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3550 -> 3724[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3550 -> 3725[label="",style="dashed", color="magenta", weight=3]; 40.99/18.79 3551 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.79 3551[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3551 -> 3726[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3551 -> 3727[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3552 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3552[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3552 -> 3728[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3552 -> 3729[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3553 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3553[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3553 -> 3730[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3553 -> 3731[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3554 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3554[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3554 -> 3732[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3554 -> 3733[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3555 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3555[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3555 -> 3734[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3555 -> 3735[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3556[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];5494[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5494[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5494 -> 3736[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5495[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5495[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5495 -> 3737[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5496[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5496[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5496 -> 3738[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5497[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5497[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5497 -> 3739[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5498[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5498[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5498 -> 3740[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5499[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5499[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5499 -> 3741[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5500[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5500[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5500 -> 3742[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5501[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5501[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5501 -> 3743[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5502[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5502[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5502 -> 3744[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5503[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5503[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5503 -> 3745[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5504[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5504[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5504 -> 3746[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5505[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5505[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5505 -> 3747[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5506[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5506[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5506 -> 3748[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5507[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3556 -> 5507[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5507 -> 3749[label="",style="solid", color="blue", weight=3]; 40.99/18.80 3557[label="yvy4002 == yvy3002",fontsize=16,color="blue",shape="box"];5508[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5508[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5508 -> 3750[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5509[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5509[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5509 -> 3751[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5510[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5510[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5510 -> 3752[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5511[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5511[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5511 -> 3753[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5512[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5512[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5512 -> 3754[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5513[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5513[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5513 -> 3755[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5514[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5514[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5514 -> 3756[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5515[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5515[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5515 -> 3757[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5516[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5516[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5516 -> 3758[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5517[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5517[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5517 -> 3759[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5518[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5518[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5518 -> 3760[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5519[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5519[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5519 -> 3761[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5520[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5520[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5520 -> 3762[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5521[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5521[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5521 -> 3763[label="",style="solid", color="blue", weight=3]; 40.99/18.80 3558 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3558[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3558 -> 3764[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3558 -> 3765[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3559 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3559[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];3559 -> 3766[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3559 -> 3767[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3560 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3560[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3560 -> 3768[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3560 -> 3769[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3561 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3561[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3561 -> 3770[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3561 -> 3771[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3562[label="yvy3000",fontsize=16,color="green",shape="box"];3563[label="yvy4000",fontsize=16,color="green",shape="box"];3564[label="yvy3000",fontsize=16,color="green",shape="box"];3565[label="yvy4000",fontsize=16,color="green",shape="box"];3566[label="yvy3000",fontsize=16,color="green",shape="box"];3567[label="yvy4000",fontsize=16,color="green",shape="box"];3568[label="yvy3000",fontsize=16,color="green",shape="box"];3569[label="yvy4000",fontsize=16,color="green",shape="box"];3570[label="yvy3000",fontsize=16,color="green",shape="box"];3571[label="yvy4000",fontsize=16,color="green",shape="box"];3572[label="yvy3000",fontsize=16,color="green",shape="box"];3573[label="yvy4000",fontsize=16,color="green",shape="box"];3574[label="yvy3000",fontsize=16,color="green",shape="box"];3575[label="yvy4000",fontsize=16,color="green",shape="box"];3576[label="yvy3000",fontsize=16,color="green",shape="box"];3577[label="yvy4000",fontsize=16,color="green",shape="box"];3578[label="yvy3000",fontsize=16,color="green",shape="box"];3579[label="yvy4000",fontsize=16,color="green",shape="box"];3580[label="yvy3000",fontsize=16,color="green",shape="box"];3581[label="yvy4000",fontsize=16,color="green",shape="box"];3582[label="yvy3000",fontsize=16,color="green",shape="box"];3583[label="yvy4000",fontsize=16,color="green",shape="box"];3584[label="yvy3000",fontsize=16,color="green",shape="box"];3585[label="yvy4000",fontsize=16,color="green",shape="box"];3586[label="yvy3000",fontsize=16,color="green",shape="box"];3587[label="yvy4000",fontsize=16,color="green",shape="box"];3588[label="yvy3000",fontsize=16,color="green",shape="box"];3589[label="yvy4000",fontsize=16,color="green",shape="box"];3591[label="yvy7900 <= yvy8000",fontsize=16,color="blue",shape="box"];5522[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5522[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5522 -> 3772[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5523[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5523[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5523 -> 3773[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5524[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5524[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5524 -> 3774[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5525[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5525[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5525 -> 3775[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5526[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5526[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5526 -> 3776[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5527[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5527[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5527 -> 3777[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5528[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5528[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5528 -> 3778[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5529[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5529[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5529 -> 3779[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5530[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5530[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5530 -> 3780[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5531[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5531[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5531 -> 3781[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5532[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5532[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5532 -> 3782[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5533[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5533[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5533 -> 3783[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5534[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5534[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5534 -> 3784[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5535[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3591 -> 5535[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5535 -> 3785[label="",style="solid", color="blue", weight=3]; 40.99/18.80 3592[label="yvy8000",fontsize=16,color="green",shape="box"];3593[label="yvy7900",fontsize=16,color="green",shape="box"];3590[label="compare1 (Left yvy227) (Left yvy228) yvy229",fontsize=16,color="burlywood",shape="triangle"];5536[label="yvy229/False",fontsize=10,color="white",style="solid",shape="box"];3590 -> 5536[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5536 -> 3786[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5537[label="yvy229/True",fontsize=10,color="white",style="solid",shape="box"];3590 -> 5537[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5537 -> 3787[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3594[label="LT",fontsize=16,color="green",shape="box"];3595[label="compare0 (Right yvy7900) (Left yvy8000) otherwise",fontsize=16,color="black",shape="box"];3595 -> 3788[label="",style="solid", color="black", weight=3]; 40.99/18.80 3597[label="yvy7900 <= yvy8000",fontsize=16,color="blue",shape="box"];5538[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5538[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5538 -> 3789[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5539[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5539[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5539 -> 3790[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5540[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5540[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5540 -> 3791[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5541[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5541[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5541 -> 3792[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5542[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5542[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5542 -> 3793[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5543[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5543[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5543 -> 3794[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5544[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5544[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5544 -> 3795[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5545[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5545[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5545 -> 3796[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5546[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5546[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5546 -> 3797[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5547[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5547[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5547 -> 3798[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5548[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5548[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5548 -> 3799[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5549[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5549[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5549 -> 3800[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5550[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5550[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5550 -> 3801[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5551[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3597 -> 5551[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5551 -> 3802[label="",style="solid", color="blue", weight=3]; 40.99/18.80 3598[label="yvy7900",fontsize=16,color="green",shape="box"];3599[label="yvy8000",fontsize=16,color="green",shape="box"];3596[label="compare1 (Right yvy234) (Right yvy235) yvy236",fontsize=16,color="burlywood",shape="triangle"];5552[label="yvy236/False",fontsize=10,color="white",style="solid",shape="box"];3596 -> 5552[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5552 -> 3803[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5553[label="yvy236/True",fontsize=10,color="white",style="solid",shape="box"];3596 -> 5553[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5553 -> 3804[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2871[label="Left yvy20",fontsize=16,color="green",shape="box"];2872[label="Left yvy20 == Left yvy15",fontsize=16,color="black",shape="box"];2872 -> 2970[label="",style="solid", color="black", weight=3]; 40.99/18.80 2873[label="Left yvy15",fontsize=16,color="green",shape="box"];2874[label="Left yvy400",fontsize=16,color="green",shape="box"];2875[label="Left yvy400 == Right yvy300",fontsize=16,color="black",shape="box"];2875 -> 2971[label="",style="solid", color="black", weight=3]; 40.99/18.80 2876[label="Right yvy300",fontsize=16,color="green",shape="box"];2877[label="Right yvy400",fontsize=16,color="green",shape="box"];2878[label="Right yvy400 == Left yvy300",fontsize=16,color="black",shape="box"];2878 -> 2972[label="",style="solid", color="black", weight=3]; 40.99/18.80 2879[label="Left yvy300",fontsize=16,color="green",shape="box"];2880[label="Right yvy35",fontsize=16,color="green",shape="box"];2881[label="Right yvy35 == Right yvy30",fontsize=16,color="black",shape="box"];2881 -> 2973[label="",style="solid", color="black", weight=3]; 40.99/18.80 2882[label="Right yvy30",fontsize=16,color="green",shape="box"];1472[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 otherwise",fontsize=16,color="black",shape="box"];1472 -> 1727[label="",style="solid", color="black", weight=3]; 40.99/18.80 1473 -> 825[label="",style="dashed", color="red", weight=0]; 40.99/18.80 1473[label="FiniteMap.mkBalBranch (Left yvy500) yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Left yvy400) yvy41)",fontsize=16,color="magenta"];1473 -> 1728[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1473 -> 1729[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1473 -> 1730[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1474[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 otherwise",fontsize=16,color="black",shape="box"];1474 -> 1731[label="",style="solid", color="black", weight=3]; 40.99/18.80 1475 -> 825[label="",style="dashed", color="red", weight=0]; 40.99/18.80 1475[label="FiniteMap.mkBalBranch (Right yvy500) yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Left yvy400) yvy41)",fontsize=16,color="magenta"];1475 -> 1732[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1475 -> 1733[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1475 -> 1734[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1476[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 otherwise",fontsize=16,color="black",shape="box"];1476 -> 1735[label="",style="solid", color="black", weight=3]; 40.99/18.80 1477 -> 825[label="",style="dashed", color="red", weight=0]; 40.99/18.80 1477[label="FiniteMap.mkBalBranch (Left yvy500) yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Right yvy400) yvy41)",fontsize=16,color="magenta"];1477 -> 1736[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1477 -> 1737[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1477 -> 1738[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1478[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 otherwise",fontsize=16,color="black",shape="box"];1478 -> 1739[label="",style="solid", color="black", weight=3]; 40.99/18.80 1479 -> 825[label="",style="dashed", color="red", weight=0]; 40.99/18.80 1479[label="FiniteMap.mkBalBranch (Right yvy500) yvy51 yvy53 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Right yvy400) yvy41)",fontsize=16,color="magenta"];1479 -> 1740[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1479 -> 1741[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1479 -> 1742[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1480[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primMulNat (Succ Zero) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1480 -> 1743[label="",style="solid", color="black", weight=3]; 40.99/18.80 1481[label="primCmpInt (Pos Zero) (Pos yvy520)",fontsize=16,color="burlywood",shape="box"];5554[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1481 -> 5554[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5554 -> 1744[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5555[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1481 -> 5555[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5555 -> 1745[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 1482[label="primCmpInt (Pos Zero) (Neg yvy520)",fontsize=16,color="burlywood",shape="box"];5556[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1482 -> 5556[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5556 -> 1746[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5557[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1482 -> 5557[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5557 -> 1747[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 1920[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1920 -> 2070[label="",style="solid", color="black", weight=3]; 40.99/18.80 1921[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];1921 -> 2071[label="",style="solid", color="black", weight=3]; 40.99/18.80 1573[label="primMulInt yvy4001 yvy3000",fontsize=16,color="burlywood",shape="triangle"];5558[label="yvy4001/Pos yvy40010",fontsize=10,color="white",style="solid",shape="box"];1573 -> 5558[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5558 -> 1789[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5559[label="yvy4001/Neg yvy40010",fontsize=10,color="white",style="solid",shape="box"];1573 -> 5559[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5559 -> 1790[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3991[label="FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];2775[label="FiniteMap.sizeFM yvy54",fontsize=16,color="burlywood",shape="triangle"];5560[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2775 -> 5560[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5560 -> 2797[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5561[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2775 -> 5561[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5561 -> 2798[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3992[label="LT",fontsize=16,color="green",shape="box"];3993 -> 1985[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3993[label="compare yvy240 yvy239",fontsize=16,color="magenta"];3993 -> 4019[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3993 -> 4020[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1484[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Pos yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];1484 -> 1758[label="",style="solid", color="black", weight=3]; 40.99/18.80 1485[label="yvy61",fontsize=16,color="green",shape="box"];1486 -> 12[label="",style="dashed", color="red", weight=0]; 40.99/18.80 1486[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1486 -> 1759[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1486 -> 1760[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1487[label="yvy60",fontsize=16,color="green",shape="box"];1488[label="yvy63",fontsize=16,color="green",shape="box"];1762 -> 3960[label="",style="dashed", color="red", weight=0]; 40.99/18.80 1762[label="FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54 + FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];1762 -> 3965[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1762 -> 3966[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1761[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 yvy146",fontsize=16,color="burlywood",shape="triangle"];5562[label="yvy146/False",fontsize=10,color="white",style="solid",shape="box"];1761 -> 5562[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5562 -> 1767[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5563[label="yvy146/True",fontsize=10,color="white",style="solid",shape="box"];1761 -> 5563[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5563 -> 1768[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 1490[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primMulNat (Succ Zero) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1490 -> 1769[label="",style="solid", color="black", weight=3]; 40.99/18.80 1491[label="primCmpInt (Neg Zero) (Pos yvy520)",fontsize=16,color="burlywood",shape="box"];5564[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1491 -> 5564[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5564 -> 1770[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5565[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1491 -> 5565[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5565 -> 1771[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 1492[label="primCmpInt (Neg Zero) (Neg yvy520)",fontsize=16,color="burlywood",shape="box"];5566[label="yvy520/Succ yvy5200",fontsize=10,color="white",style="solid",shape="box"];1492 -> 5566[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5566 -> 1772[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5567[label="yvy520/Zero",fontsize=10,color="white",style="solid",shape="box"];1492 -> 5567[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5567 -> 1773[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 1948[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="black",shape="triangle"];1948 -> 2083[label="",style="solid", color="black", weight=3]; 40.99/18.80 3994[label="FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];1494[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 (Neg yvy620) yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];1494 -> 1778[label="",style="solid", color="black", weight=3]; 40.99/18.80 1495[label="yvy61",fontsize=16,color="green",shape="box"];1496 -> 12[label="",style="dashed", color="red", weight=0]; 40.99/18.80 1496[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1496 -> 1779[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1496 -> 1780[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1497[label="yvy60",fontsize=16,color="green",shape="box"];1498[label="yvy63",fontsize=16,color="green",shape="box"];3600 -> 3323[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3600[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3600 -> 3838[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3600 -> 3839[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3601[label="False",fontsize=16,color="green",shape="box"];3602[label="False",fontsize=16,color="green",shape="box"];3603[label="True",fontsize=16,color="green",shape="box"];3604[label="False",fontsize=16,color="green",shape="box"];3605[label="True",fontsize=16,color="green",shape="box"];3606 -> 3323[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3606[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3606 -> 3840[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3606 -> 3841[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3607[label="False",fontsize=16,color="green",shape="box"];3608[label="False",fontsize=16,color="green",shape="box"];3609[label="True",fontsize=16,color="green",shape="box"];3610[label="False",fontsize=16,color="green",shape="box"];3611[label="True",fontsize=16,color="green",shape="box"];3612[label="primEqNat (Succ yvy40000) (Succ yvy30000)",fontsize=16,color="black",shape="box"];3612 -> 3842[label="",style="solid", color="black", weight=3]; 40.99/18.80 3613[label="primEqNat (Succ yvy40000) Zero",fontsize=16,color="black",shape="box"];3613 -> 3843[label="",style="solid", color="black", weight=3]; 40.99/18.80 3614[label="primEqNat Zero (Succ yvy30000)",fontsize=16,color="black",shape="box"];3614 -> 3844[label="",style="solid", color="black", weight=3]; 40.99/18.80 3615[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];3615 -> 3845[label="",style="solid", color="black", weight=3]; 40.99/18.80 3616[label="yvy3000",fontsize=16,color="green",shape="box"];3617[label="yvy4000",fontsize=16,color="green",shape="box"];3618[label="yvy3000",fontsize=16,color="green",shape="box"];3619[label="yvy4000",fontsize=16,color="green",shape="box"];3620[label="yvy3000",fontsize=16,color="green",shape="box"];3621[label="yvy4000",fontsize=16,color="green",shape="box"];3622[label="yvy3000",fontsize=16,color="green",shape="box"];3623[label="yvy4000",fontsize=16,color="green",shape="box"];3624[label="yvy3000",fontsize=16,color="green",shape="box"];3625[label="yvy4000",fontsize=16,color="green",shape="box"];3626[label="yvy3000",fontsize=16,color="green",shape="box"];3627[label="yvy4000",fontsize=16,color="green",shape="box"];3628[label="yvy3000",fontsize=16,color="green",shape="box"];3629[label="yvy4000",fontsize=16,color="green",shape="box"];3630[label="yvy3000",fontsize=16,color="green",shape="box"];3631[label="yvy4000",fontsize=16,color="green",shape="box"];3632[label="yvy3000",fontsize=16,color="green",shape="box"];3633[label="yvy4000",fontsize=16,color="green",shape="box"];3634[label="yvy3000",fontsize=16,color="green",shape="box"];3635[label="yvy4000",fontsize=16,color="green",shape="box"];3636[label="yvy3000",fontsize=16,color="green",shape="box"];3637[label="yvy4000",fontsize=16,color="green",shape="box"];3638[label="yvy3000",fontsize=16,color="green",shape="box"];3639[label="yvy4000",fontsize=16,color="green",shape="box"];3640[label="yvy3000",fontsize=16,color="green",shape="box"];3641[label="yvy4000",fontsize=16,color="green",shape="box"];3642[label="yvy3000",fontsize=16,color="green",shape="box"];3643[label="yvy4000",fontsize=16,color="green",shape="box"];3644[label="yvy3001",fontsize=16,color="green",shape="box"];3645[label="yvy4001",fontsize=16,color="green",shape="box"];3646[label="yvy3001",fontsize=16,color="green",shape="box"];3647[label="yvy4001",fontsize=16,color="green",shape="box"];3648[label="yvy3001",fontsize=16,color="green",shape="box"];3649[label="yvy4001",fontsize=16,color="green",shape="box"];3650[label="yvy3001",fontsize=16,color="green",shape="box"];3651[label="yvy4001",fontsize=16,color="green",shape="box"];3652[label="yvy3001",fontsize=16,color="green",shape="box"];3653[label="yvy4001",fontsize=16,color="green",shape="box"];3654[label="yvy3001",fontsize=16,color="green",shape="box"];3655[label="yvy4001",fontsize=16,color="green",shape="box"];3656[label="yvy3001",fontsize=16,color="green",shape="box"];3657[label="yvy4001",fontsize=16,color="green",shape="box"];3658[label="yvy3001",fontsize=16,color="green",shape="box"];3659[label="yvy4001",fontsize=16,color="green",shape="box"];3660[label="yvy3001",fontsize=16,color="green",shape="box"];3661[label="yvy4001",fontsize=16,color="green",shape="box"];3662[label="yvy3001",fontsize=16,color="green",shape="box"];3663[label="yvy4001",fontsize=16,color="green",shape="box"];3664[label="yvy3001",fontsize=16,color="green",shape="box"];3665[label="yvy4001",fontsize=16,color="green",shape="box"];3666[label="yvy3001",fontsize=16,color="green",shape="box"];3667[label="yvy4001",fontsize=16,color="green",shape="box"];3668[label="yvy3001",fontsize=16,color="green",shape="box"];3669[label="yvy4001",fontsize=16,color="green",shape="box"];3670[label="yvy3001",fontsize=16,color="green",shape="box"];3671[label="yvy4001",fontsize=16,color="green",shape="box"];3672[label="False",fontsize=16,color="green",shape="box"];3673[label="yvy222",fontsize=16,color="green",shape="box"];3674[label="yvy4000",fontsize=16,color="green",shape="box"];3675[label="yvy3001",fontsize=16,color="green",shape="box"];3676[label="yvy3000",fontsize=16,color="green",shape="box"];3677[label="yvy4000",fontsize=16,color="green",shape="box"];3678[label="yvy3000",fontsize=16,color="green",shape="box"];3679[label="yvy4000",fontsize=16,color="green",shape="box"];3680[label="yvy3000",fontsize=16,color="green",shape="box"];3681[label="yvy4000",fontsize=16,color="green",shape="box"];3682[label="yvy3000",fontsize=16,color="green",shape="box"];3683[label="yvy4000",fontsize=16,color="green",shape="box"];3684[label="yvy3000",fontsize=16,color="green",shape="box"];3685[label="yvy4000",fontsize=16,color="green",shape="box"];3686[label="yvy3000",fontsize=16,color="green",shape="box"];3687[label="yvy4000",fontsize=16,color="green",shape="box"];3688[label="yvy3000",fontsize=16,color="green",shape="box"];3689[label="yvy4000",fontsize=16,color="green",shape="box"];3690[label="yvy3000",fontsize=16,color="green",shape="box"];3691[label="yvy4000",fontsize=16,color="green",shape="box"];3692[label="yvy3000",fontsize=16,color="green",shape="box"];3693[label="yvy4000",fontsize=16,color="green",shape="box"];3694[label="yvy3000",fontsize=16,color="green",shape="box"];3695[label="yvy4000",fontsize=16,color="green",shape="box"];3696[label="yvy3000",fontsize=16,color="green",shape="box"];3697[label="yvy4000",fontsize=16,color="green",shape="box"];3698[label="yvy3000",fontsize=16,color="green",shape="box"];3699[label="yvy4000",fontsize=16,color="green",shape="box"];3700[label="yvy3000",fontsize=16,color="green",shape="box"];3701[label="yvy4000",fontsize=16,color="green",shape="box"];3702[label="yvy3000",fontsize=16,color="green",shape="box"];3703[label="yvy4000",fontsize=16,color="green",shape="box"];3704[label="yvy4001",fontsize=16,color="green",shape="box"];3705[label="yvy3000",fontsize=16,color="green",shape="box"];3706[label="yvy4000",fontsize=16,color="green",shape="box"];3707[label="yvy3001",fontsize=16,color="green",shape="box"];3708[label="yvy3000",fontsize=16,color="green",shape="box"];3709[label="yvy4000",fontsize=16,color="green",shape="box"];3710[label="yvy3000",fontsize=16,color="green",shape="box"];3711[label="yvy4000",fontsize=16,color="green",shape="box"];3712[label="yvy3000",fontsize=16,color="green",shape="box"];3713[label="yvy4000",fontsize=16,color="green",shape="box"];3714[label="yvy3000",fontsize=16,color="green",shape="box"];3715[label="yvy4000",fontsize=16,color="green",shape="box"];3716[label="yvy3000",fontsize=16,color="green",shape="box"];3717[label="yvy4000",fontsize=16,color="green",shape="box"];3718[label="yvy3000",fontsize=16,color="green",shape="box"];3719[label="yvy4000",fontsize=16,color="green",shape="box"];3720[label="yvy3000",fontsize=16,color="green",shape="box"];3721[label="yvy4000",fontsize=16,color="green",shape="box"];3722[label="yvy3000",fontsize=16,color="green",shape="box"];3723[label="yvy4000",fontsize=16,color="green",shape="box"];3724[label="yvy3000",fontsize=16,color="green",shape="box"];3725[label="yvy4000",fontsize=16,color="green",shape="box"];3726[label="yvy3000",fontsize=16,color="green",shape="box"];3727[label="yvy4000",fontsize=16,color="green",shape="box"];3728[label="yvy3000",fontsize=16,color="green",shape="box"];3729[label="yvy4000",fontsize=16,color="green",shape="box"];3730[label="yvy3000",fontsize=16,color="green",shape="box"];3731[label="yvy4000",fontsize=16,color="green",shape="box"];3732[label="yvy3000",fontsize=16,color="green",shape="box"];3733[label="yvy4000",fontsize=16,color="green",shape="box"];3734[label="yvy3000",fontsize=16,color="green",shape="box"];3735[label="yvy4000",fontsize=16,color="green",shape="box"];3736 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3736[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3736 -> 3846[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3736 -> 3847[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3737 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3737[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3737 -> 3848[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3737 -> 3849[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3738 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3738[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3738 -> 3850[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3738 -> 3851[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3739 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3739[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3739 -> 3852[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3739 -> 3853[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3740 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3740[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3740 -> 3854[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3740 -> 3855[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3741 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3741[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3741 -> 3856[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3741 -> 3857[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3742 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3742[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3742 -> 3858[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3742 -> 3859[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3743 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3743[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3743 -> 3860[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3743 -> 3861[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3744 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3744[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3744 -> 3862[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3744 -> 3863[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3745 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3745[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3745 -> 3864[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3745 -> 3865[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3746 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3746[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3746 -> 3866[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3746 -> 3867[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3747 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3747[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3747 -> 3868[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3747 -> 3869[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3748 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3748[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3748 -> 3870[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3748 -> 3871[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3749 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3749[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];3749 -> 3872[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3749 -> 3873[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3750 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3750[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3750 -> 3874[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3750 -> 3875[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3751 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3751[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3751 -> 3876[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3751 -> 3877[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3752 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3752[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3752 -> 3878[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3752 -> 3879[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3753 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3753[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3753 -> 3880[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3753 -> 3881[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3754 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3754[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3754 -> 3882[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3754 -> 3883[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3755 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3755[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3755 -> 3884[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3755 -> 3885[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3756 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3756[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3756 -> 3886[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3756 -> 3887[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3757 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3757[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3757 -> 3888[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3757 -> 3889[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3758 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3758[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3758 -> 3890[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3758 -> 3891[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3759 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3759[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3759 -> 3892[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3759 -> 3893[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3760 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3760[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3760 -> 3894[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3760 -> 3895[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3761 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3761[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3761 -> 3896[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3761 -> 3897[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3762 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3762[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3762 -> 3898[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3762 -> 3899[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3763 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3763[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];3763 -> 3900[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3763 -> 3901[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3764[label="yvy3000",fontsize=16,color="green",shape="box"];3765[label="yvy4000",fontsize=16,color="green",shape="box"];3766[label="yvy3000",fontsize=16,color="green",shape="box"];3767[label="yvy4000",fontsize=16,color="green",shape="box"];3768[label="yvy3001",fontsize=16,color="green",shape="box"];3769[label="yvy4001",fontsize=16,color="green",shape="box"];3770[label="yvy3001",fontsize=16,color="green",shape="box"];3771[label="yvy4001",fontsize=16,color="green",shape="box"];3772[label="yvy7900 <= yvy8000",fontsize=16,color="burlywood",shape="triangle"];5568[label="yvy7900/False",fontsize=10,color="white",style="solid",shape="box"];3772 -> 5568[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5568 -> 3902[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5569[label="yvy7900/True",fontsize=10,color="white",style="solid",shape="box"];3772 -> 5569[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5569 -> 3903[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3773[label="yvy7900 <= yvy8000",fontsize=16,color="black",shape="triangle"];3773 -> 3904[label="",style="solid", color="black", weight=3]; 40.99/18.80 3774[label="yvy7900 <= yvy8000",fontsize=16,color="burlywood",shape="triangle"];5570[label="yvy7900/(yvy79000,yvy79001)",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5570[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5570 -> 3905[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3775[label="yvy7900 <= yvy8000",fontsize=16,color="black",shape="triangle"];3775 -> 3906[label="",style="solid", color="black", weight=3]; 40.99/18.80 3776[label="yvy7900 <= yvy8000",fontsize=16,color="black",shape="triangle"];3776 -> 3907[label="",style="solid", color="black", weight=3]; 40.99/18.80 3777[label="yvy7900 <= yvy8000",fontsize=16,color="burlywood",shape="triangle"];5571[label="yvy7900/Left yvy79000",fontsize=10,color="white",style="solid",shape="box"];3777 -> 5571[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5571 -> 3908[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5572[label="yvy7900/Right yvy79000",fontsize=10,color="white",style="solid",shape="box"];3777 -> 5572[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5572 -> 3909[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3778[label="yvy7900 <= yvy8000",fontsize=16,color="burlywood",shape="triangle"];5573[label="yvy7900/(yvy79000,yvy79001,yvy79002)",fontsize=10,color="white",style="solid",shape="box"];3778 -> 5573[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5573 -> 3910[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3779[label="yvy7900 <= yvy8000",fontsize=16,color="black",shape="triangle"];3779 -> 3911[label="",style="solid", color="black", weight=3]; 40.99/18.80 3780[label="yvy7900 <= yvy8000",fontsize=16,color="black",shape="triangle"];3780 -> 3912[label="",style="solid", color="black", weight=3]; 40.99/18.80 3781[label="yvy7900 <= yvy8000",fontsize=16,color="black",shape="triangle"];3781 -> 3913[label="",style="solid", color="black", weight=3]; 40.99/18.80 3782[label="yvy7900 <= yvy8000",fontsize=16,color="burlywood",shape="triangle"];5574[label="yvy7900/LT",fontsize=10,color="white",style="solid",shape="box"];3782 -> 5574[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5574 -> 3914[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5575[label="yvy7900/EQ",fontsize=10,color="white",style="solid",shape="box"];3782 -> 5575[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5575 -> 3915[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5576[label="yvy7900/GT",fontsize=10,color="white",style="solid",shape="box"];3782 -> 5576[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5576 -> 3916[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3783[label="yvy7900 <= yvy8000",fontsize=16,color="black",shape="triangle"];3783 -> 3917[label="",style="solid", color="black", weight=3]; 40.99/18.80 3784[label="yvy7900 <= yvy8000",fontsize=16,color="black",shape="triangle"];3784 -> 3918[label="",style="solid", color="black", weight=3]; 40.99/18.80 3785[label="yvy7900 <= yvy8000",fontsize=16,color="burlywood",shape="triangle"];5577[label="yvy7900/Nothing",fontsize=10,color="white",style="solid",shape="box"];3785 -> 5577[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5577 -> 3919[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5578[label="yvy7900/Just yvy79000",fontsize=10,color="white",style="solid",shape="box"];3785 -> 5578[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5578 -> 3920[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3786[label="compare1 (Left yvy227) (Left yvy228) False",fontsize=16,color="black",shape="box"];3786 -> 3921[label="",style="solid", color="black", weight=3]; 40.99/18.80 3787[label="compare1 (Left yvy227) (Left yvy228) True",fontsize=16,color="black",shape="box"];3787 -> 3922[label="",style="solid", color="black", weight=3]; 40.99/18.80 3788[label="compare0 (Right yvy7900) (Left yvy8000) True",fontsize=16,color="black",shape="box"];3788 -> 3923[label="",style="solid", color="black", weight=3]; 40.99/18.80 3789 -> 3772[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3789[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3789 -> 3924[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3789 -> 3925[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3790 -> 3773[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3790[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3790 -> 3926[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3790 -> 3927[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3791 -> 3774[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3791[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3791 -> 3928[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3791 -> 3929[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3792 -> 3775[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3792[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3792 -> 3930[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3792 -> 3931[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3793 -> 3776[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3793[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3793 -> 3932[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3793 -> 3933[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3794 -> 3777[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3794[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3794 -> 3934[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3794 -> 3935[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3795 -> 3778[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3795[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3795 -> 3936[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3795 -> 3937[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3796 -> 3779[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3796[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3796 -> 3938[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3796 -> 3939[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3797 -> 3780[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3797[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3797 -> 3940[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3797 -> 3941[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3798 -> 3781[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3798[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3798 -> 3942[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3798 -> 3943[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3799 -> 3782[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3799[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3799 -> 3944[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3799 -> 3945[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3800 -> 3783[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3800[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3800 -> 3946[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3800 -> 3947[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3801 -> 3784[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3801[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3801 -> 3948[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3801 -> 3949[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3802 -> 3785[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3802[label="yvy7900 <= yvy8000",fontsize=16,color="magenta"];3802 -> 3950[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3802 -> 3951[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3803[label="compare1 (Right yvy234) (Right yvy235) False",fontsize=16,color="black",shape="box"];3803 -> 3952[label="",style="solid", color="black", weight=3]; 40.99/18.80 3804[label="compare1 (Right yvy234) (Right yvy235) True",fontsize=16,color="black",shape="box"];3804 -> 3953[label="",style="solid", color="black", weight=3]; 40.99/18.80 2970[label="yvy20 == yvy15",fontsize=16,color="blue",shape="box"];5579[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5579[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5579 -> 3098[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5580[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5580[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5580 -> 3099[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5581[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5581[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5581 -> 3100[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5582[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5582[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5582 -> 3101[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5583[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5583[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5583 -> 3102[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5584[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5584[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5584 -> 3103[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5585[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5585[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5585 -> 3104[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5586[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5586[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5586 -> 3105[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5587[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5587[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5587 -> 3106[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5588[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5588[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5588 -> 3107[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5589[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5589[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5589 -> 3108[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5590[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5590[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5590 -> 3109[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5591[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5591[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5591 -> 3110[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5592[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 5592[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5592 -> 3111[label="",style="solid", color="blue", weight=3]; 40.99/18.80 2971[label="False",fontsize=16,color="green",shape="box"];2972[label="False",fontsize=16,color="green",shape="box"];2973[label="yvy35 == yvy30",fontsize=16,color="blue",shape="box"];5593[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 5593[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5593 -> 3112[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5594[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 5594[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5594 -> 3113[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5595[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 5595[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5595 -> 3114[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5596[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 5596[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5596 -> 3115[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5597[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 5597[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5597 -> 3116[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5598[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 5598[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5598 -> 3117[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5599[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 5599[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5599 -> 3118[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5600[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 5600[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5600 -> 3119[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5601[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 5601[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5601 -> 3120[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5602[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 5602[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5602 -> 3121[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5603[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 5603[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5603 -> 3122[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5604[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 5604[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5604 -> 3123[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5605[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 5605[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5605 -> 3124[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5606[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 5606[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5606 -> 3125[label="",style="solid", color="blue", weight=3]; 40.99/18.80 1727[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1727 -> 1903[label="",style="solid", color="black", weight=3]; 40.99/18.80 1728 -> 33[label="",style="dashed", color="red", weight=0]; 40.99/18.80 1728[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Left yvy400) yvy41",fontsize=16,color="magenta"];1728 -> 1904[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1728 -> 1905[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1729[label="Left yvy500",fontsize=16,color="green",shape="box"];1730[label="yvy53",fontsize=16,color="green",shape="box"];1731[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Left yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1731 -> 1906[label="",style="solid", color="black", weight=3]; 40.99/18.80 1732 -> 33[label="",style="dashed", color="red", weight=0]; 40.99/18.80 1732[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Left yvy400) yvy41",fontsize=16,color="magenta"];1732 -> 1907[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1732 -> 1908[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1733[label="Right yvy500",fontsize=16,color="green",shape="box"];1734[label="yvy53",fontsize=16,color="green",shape="box"];1735[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Left yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1735 -> 1909[label="",style="solid", color="black", weight=3]; 40.99/18.80 1736 -> 33[label="",style="dashed", color="red", weight=0]; 40.99/18.80 1736[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Right yvy400) yvy41",fontsize=16,color="magenta"];1736 -> 1910[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1736 -> 1911[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1737[label="Left yvy500",fontsize=16,color="green",shape="box"];1738[label="yvy53",fontsize=16,color="green",shape="box"];1739[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 (Right yvy500) yvy51 yvy52 yvy53 yvy54 (Right yvy400) yvy41 True",fontsize=16,color="black",shape="box"];1739 -> 1912[label="",style="solid", color="black", weight=3]; 40.99/18.80 1740 -> 33[label="",style="dashed", color="red", weight=0]; 40.99/18.80 1740[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy54 (Right yvy400) yvy41",fontsize=16,color="magenta"];1740 -> 1913[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1740 -> 1914[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1741[label="Right yvy500",fontsize=16,color="green",shape="box"];1742[label="yvy53",fontsize=16,color="green",shape="box"];1743[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primMulNat Zero (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1743 -> 1915[label="",style="solid", color="black", weight=3]; 40.99/18.80 1744[label="primCmpInt (Pos Zero) (Pos (Succ yvy5200))",fontsize=16,color="black",shape="box"];1744 -> 1916[label="",style="solid", color="black", weight=3]; 40.99/18.80 1745[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1745 -> 1917[label="",style="solid", color="black", weight=3]; 40.99/18.80 1746[label="primCmpInt (Pos Zero) (Neg (Succ yvy5200))",fontsize=16,color="black",shape="box"];1746 -> 1918[label="",style="solid", color="black", weight=3]; 40.99/18.80 1747[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1747 -> 1919[label="",style="solid", color="black", weight=3]; 40.99/18.80 2070[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];2071[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="triangle"];2071 -> 2178[label="",style="solid", color="black", weight=3]; 40.99/18.80 1789[label="primMulInt (Pos yvy40010) yvy3000",fontsize=16,color="burlywood",shape="box"];5607[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1789 -> 5607[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5607 -> 1967[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5608[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1789 -> 5608[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5608 -> 1968[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 1790[label="primMulInt (Neg yvy40010) yvy3000",fontsize=16,color="burlywood",shape="box"];5609[label="yvy3000/Pos yvy30000",fontsize=10,color="white",style="solid",shape="box"];1790 -> 5609[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5609 -> 1969[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5610[label="yvy3000/Neg yvy30000",fontsize=10,color="white",style="solid",shape="box"];1790 -> 5610[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5610 -> 1970[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2797[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2797 -> 2815[label="",style="solid", color="black", weight=3]; 40.99/18.80 2798[label="FiniteMap.sizeFM (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2798 -> 2816[label="",style="solid", color="black", weight=3]; 40.99/18.80 4019[label="yvy239",fontsize=16,color="green",shape="box"];4020[label="yvy240",fontsize=16,color="green",shape="box"];1985[label="compare yvy79 yvy80",fontsize=16,color="black",shape="triangle"];1985 -> 2141[label="",style="solid", color="black", weight=3]; 40.99/18.80 1758 -> 4948[label="",style="dashed", color="red", weight=0]; 40.99/18.80 1758[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))))) yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1758 -> 4949[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1758 -> 4950[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1758 -> 4951[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1758 -> 4952[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1758 -> 4953[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1759[label="yvy64",fontsize=16,color="green",shape="box"];1760[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];3965 -> 3976[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3965[label="FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54 + FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];3965 -> 3977[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3965 -> 3978[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3966[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1767[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 False",fontsize=16,color="black",shape="box"];1767 -> 1940[label="",style="solid", color="black", weight=3]; 40.99/18.80 1768[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 True",fontsize=16,color="black",shape="box"];1768 -> 1941[label="",style="solid", color="black", weight=3]; 40.99/18.80 1769[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primMulNat Zero (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1769 -> 1942[label="",style="solid", color="black", weight=3]; 40.99/18.80 1770[label="primCmpInt (Neg Zero) (Pos (Succ yvy5200))",fontsize=16,color="black",shape="box"];1770 -> 1943[label="",style="solid", color="black", weight=3]; 40.99/18.80 1771[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1771 -> 1944[label="",style="solid", color="black", weight=3]; 40.99/18.80 1772[label="primCmpInt (Neg Zero) (Neg (Succ yvy5200))",fontsize=16,color="black",shape="box"];1772 -> 1945[label="",style="solid", color="black", weight=3]; 40.99/18.80 1773[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1773 -> 1946[label="",style="solid", color="black", weight=3]; 40.99/18.80 2083 -> 2071[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2083[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1778 -> 4948[label="",style="dashed", color="red", weight=0]; 40.99/18.80 1778[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))))) yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];1778 -> 4954[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1778 -> 4955[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1778 -> 4956[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1778 -> 4957[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1778 -> 4958[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1779[label="yvy64",fontsize=16,color="green",shape="box"];1780[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];3838[label="yvy40000",fontsize=16,color="green",shape="box"];3839[label="yvy30000",fontsize=16,color="green",shape="box"];3840[label="yvy40000",fontsize=16,color="green",shape="box"];3841[label="yvy30000",fontsize=16,color="green",shape="box"];3842 -> 3323[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3842[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3842 -> 3995[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3842 -> 3996[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3843[label="False",fontsize=16,color="green",shape="box"];3844[label="False",fontsize=16,color="green",shape="box"];3845[label="True",fontsize=16,color="green",shape="box"];3846[label="yvy3001",fontsize=16,color="green",shape="box"];3847[label="yvy4001",fontsize=16,color="green",shape="box"];3848[label="yvy3001",fontsize=16,color="green",shape="box"];3849[label="yvy4001",fontsize=16,color="green",shape="box"];3850[label="yvy3001",fontsize=16,color="green",shape="box"];3851[label="yvy4001",fontsize=16,color="green",shape="box"];3852[label="yvy3001",fontsize=16,color="green",shape="box"];3853[label="yvy4001",fontsize=16,color="green",shape="box"];3854[label="yvy3001",fontsize=16,color="green",shape="box"];3855[label="yvy4001",fontsize=16,color="green",shape="box"];3856[label="yvy3001",fontsize=16,color="green",shape="box"];3857[label="yvy4001",fontsize=16,color="green",shape="box"];3858[label="yvy3001",fontsize=16,color="green",shape="box"];3859[label="yvy4001",fontsize=16,color="green",shape="box"];3860[label="yvy3001",fontsize=16,color="green",shape="box"];3861[label="yvy4001",fontsize=16,color="green",shape="box"];3862[label="yvy3001",fontsize=16,color="green",shape="box"];3863[label="yvy4001",fontsize=16,color="green",shape="box"];3864[label="yvy3001",fontsize=16,color="green",shape="box"];3865[label="yvy4001",fontsize=16,color="green",shape="box"];3866[label="yvy3001",fontsize=16,color="green",shape="box"];3867[label="yvy4001",fontsize=16,color="green",shape="box"];3868[label="yvy3001",fontsize=16,color="green",shape="box"];3869[label="yvy4001",fontsize=16,color="green",shape="box"];3870[label="yvy3001",fontsize=16,color="green",shape="box"];3871[label="yvy4001",fontsize=16,color="green",shape="box"];3872[label="yvy3001",fontsize=16,color="green",shape="box"];3873[label="yvy4001",fontsize=16,color="green",shape="box"];3874[label="yvy3002",fontsize=16,color="green",shape="box"];3875[label="yvy4002",fontsize=16,color="green",shape="box"];3876[label="yvy3002",fontsize=16,color="green",shape="box"];3877[label="yvy4002",fontsize=16,color="green",shape="box"];3878[label="yvy3002",fontsize=16,color="green",shape="box"];3879[label="yvy4002",fontsize=16,color="green",shape="box"];3880[label="yvy3002",fontsize=16,color="green",shape="box"];3881[label="yvy4002",fontsize=16,color="green",shape="box"];3882[label="yvy3002",fontsize=16,color="green",shape="box"];3883[label="yvy4002",fontsize=16,color="green",shape="box"];3884[label="yvy3002",fontsize=16,color="green",shape="box"];3885[label="yvy4002",fontsize=16,color="green",shape="box"];3886[label="yvy3002",fontsize=16,color="green",shape="box"];3887[label="yvy4002",fontsize=16,color="green",shape="box"];3888[label="yvy3002",fontsize=16,color="green",shape="box"];3889[label="yvy4002",fontsize=16,color="green",shape="box"];3890[label="yvy3002",fontsize=16,color="green",shape="box"];3891[label="yvy4002",fontsize=16,color="green",shape="box"];3892[label="yvy3002",fontsize=16,color="green",shape="box"];3893[label="yvy4002",fontsize=16,color="green",shape="box"];3894[label="yvy3002",fontsize=16,color="green",shape="box"];3895[label="yvy4002",fontsize=16,color="green",shape="box"];3896[label="yvy3002",fontsize=16,color="green",shape="box"];3897[label="yvy4002",fontsize=16,color="green",shape="box"];3898[label="yvy3002",fontsize=16,color="green",shape="box"];3899[label="yvy4002",fontsize=16,color="green",shape="box"];3900[label="yvy3002",fontsize=16,color="green",shape="box"];3901[label="yvy4002",fontsize=16,color="green",shape="box"];3902[label="False <= yvy8000",fontsize=16,color="burlywood",shape="box"];5611[label="yvy8000/False",fontsize=10,color="white",style="solid",shape="box"];3902 -> 5611[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5611 -> 3997[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5612[label="yvy8000/True",fontsize=10,color="white",style="solid",shape="box"];3902 -> 5612[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5612 -> 3998[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3903[label="True <= yvy8000",fontsize=16,color="burlywood",shape="box"];5613[label="yvy8000/False",fontsize=10,color="white",style="solid",shape="box"];3903 -> 5613[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5613 -> 3999[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5614[label="yvy8000/True",fontsize=10,color="white",style="solid",shape="box"];3903 -> 5614[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5614 -> 4000[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3904 -> 4010[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3904[label="compare yvy7900 yvy8000 /= GT",fontsize=16,color="magenta"];3904 -> 4011[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3905[label="(yvy79000,yvy79001) <= yvy8000",fontsize=16,color="burlywood",shape="box"];5615[label="yvy8000/(yvy80000,yvy80001)",fontsize=10,color="white",style="solid",shape="box"];3905 -> 5615[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5615 -> 4002[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3906 -> 4010[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3906[label="compare yvy7900 yvy8000 /= GT",fontsize=16,color="magenta"];3906 -> 4012[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3907 -> 4010[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3907[label="compare yvy7900 yvy8000 /= GT",fontsize=16,color="magenta"];3907 -> 4013[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3908[label="Left yvy79000 <= yvy8000",fontsize=16,color="burlywood",shape="box"];5616[label="yvy8000/Left yvy80000",fontsize=10,color="white",style="solid",shape="box"];3908 -> 5616[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5616 -> 4005[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5617[label="yvy8000/Right yvy80000",fontsize=10,color="white",style="solid",shape="box"];3908 -> 5617[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5617 -> 4006[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3909[label="Right yvy79000 <= yvy8000",fontsize=16,color="burlywood",shape="box"];5618[label="yvy8000/Left yvy80000",fontsize=10,color="white",style="solid",shape="box"];3909 -> 5618[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5618 -> 4007[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5619[label="yvy8000/Right yvy80000",fontsize=10,color="white",style="solid",shape="box"];3909 -> 5619[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5619 -> 4008[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3910[label="(yvy79000,yvy79001,yvy79002) <= yvy8000",fontsize=16,color="burlywood",shape="box"];5620[label="yvy8000/(yvy80000,yvy80001,yvy80002)",fontsize=10,color="white",style="solid",shape="box"];3910 -> 5620[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5620 -> 4009[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3911 -> 4010[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3911[label="compare yvy7900 yvy8000 /= GT",fontsize=16,color="magenta"];3911 -> 4014[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3912 -> 4010[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3912[label="compare yvy7900 yvy8000 /= GT",fontsize=16,color="magenta"];3912 -> 4015[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3913 -> 4010[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3913[label="compare yvy7900 yvy8000 /= GT",fontsize=16,color="magenta"];3913 -> 4016[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3914[label="LT <= yvy8000",fontsize=16,color="burlywood",shape="box"];5621[label="yvy8000/LT",fontsize=10,color="white",style="solid",shape="box"];3914 -> 5621[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5621 -> 4021[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5622[label="yvy8000/EQ",fontsize=10,color="white",style="solid",shape="box"];3914 -> 5622[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5622 -> 4022[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5623[label="yvy8000/GT",fontsize=10,color="white",style="solid",shape="box"];3914 -> 5623[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5623 -> 4023[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3915[label="EQ <= yvy8000",fontsize=16,color="burlywood",shape="box"];5624[label="yvy8000/LT",fontsize=10,color="white",style="solid",shape="box"];3915 -> 5624[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5624 -> 4024[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5625[label="yvy8000/EQ",fontsize=10,color="white",style="solid",shape="box"];3915 -> 5625[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5625 -> 4025[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5626[label="yvy8000/GT",fontsize=10,color="white",style="solid",shape="box"];3915 -> 5626[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5626 -> 4026[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3916[label="GT <= yvy8000",fontsize=16,color="burlywood",shape="box"];5627[label="yvy8000/LT",fontsize=10,color="white",style="solid",shape="box"];3916 -> 5627[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5627 -> 4027[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5628[label="yvy8000/EQ",fontsize=10,color="white",style="solid",shape="box"];3916 -> 5628[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5628 -> 4028[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5629[label="yvy8000/GT",fontsize=10,color="white",style="solid",shape="box"];3916 -> 5629[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5629 -> 4029[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3917 -> 4010[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3917[label="compare yvy7900 yvy8000 /= GT",fontsize=16,color="magenta"];3917 -> 4017[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3918 -> 4010[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3918[label="compare yvy7900 yvy8000 /= GT",fontsize=16,color="magenta"];3918 -> 4018[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3919[label="Nothing <= yvy8000",fontsize=16,color="burlywood",shape="box"];5630[label="yvy8000/Nothing",fontsize=10,color="white",style="solid",shape="box"];3919 -> 5630[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5630 -> 4030[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5631[label="yvy8000/Just yvy80000",fontsize=10,color="white",style="solid",shape="box"];3919 -> 5631[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5631 -> 4031[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3920[label="Just yvy79000 <= yvy8000",fontsize=16,color="burlywood",shape="box"];5632[label="yvy8000/Nothing",fontsize=10,color="white",style="solid",shape="box"];3920 -> 5632[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5632 -> 4032[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5633[label="yvy8000/Just yvy80000",fontsize=10,color="white",style="solid",shape="box"];3920 -> 5633[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5633 -> 4033[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 3921[label="compare0 (Left yvy227) (Left yvy228) otherwise",fontsize=16,color="black",shape="box"];3921 -> 4034[label="",style="solid", color="black", weight=3]; 40.99/18.80 3922[label="LT",fontsize=16,color="green",shape="box"];3923[label="GT",fontsize=16,color="green",shape="box"];3924[label="yvy8000",fontsize=16,color="green",shape="box"];3925[label="yvy7900",fontsize=16,color="green",shape="box"];3926[label="yvy8000",fontsize=16,color="green",shape="box"];3927[label="yvy7900",fontsize=16,color="green",shape="box"];3928[label="yvy8000",fontsize=16,color="green",shape="box"];3929[label="yvy7900",fontsize=16,color="green",shape="box"];3930[label="yvy8000",fontsize=16,color="green",shape="box"];3931[label="yvy7900",fontsize=16,color="green",shape="box"];3932[label="yvy8000",fontsize=16,color="green",shape="box"];3933[label="yvy7900",fontsize=16,color="green",shape="box"];3934[label="yvy8000",fontsize=16,color="green",shape="box"];3935[label="yvy7900",fontsize=16,color="green",shape="box"];3936[label="yvy8000",fontsize=16,color="green",shape="box"];3937[label="yvy7900",fontsize=16,color="green",shape="box"];3938[label="yvy8000",fontsize=16,color="green",shape="box"];3939[label="yvy7900",fontsize=16,color="green",shape="box"];3940[label="yvy8000",fontsize=16,color="green",shape="box"];3941[label="yvy7900",fontsize=16,color="green",shape="box"];3942[label="yvy8000",fontsize=16,color="green",shape="box"];3943[label="yvy7900",fontsize=16,color="green",shape="box"];3944[label="yvy8000",fontsize=16,color="green",shape="box"];3945[label="yvy7900",fontsize=16,color="green",shape="box"];3946[label="yvy8000",fontsize=16,color="green",shape="box"];3947[label="yvy7900",fontsize=16,color="green",shape="box"];3948[label="yvy8000",fontsize=16,color="green",shape="box"];3949[label="yvy7900",fontsize=16,color="green",shape="box"];3950[label="yvy8000",fontsize=16,color="green",shape="box"];3951[label="yvy7900",fontsize=16,color="green",shape="box"];3952[label="compare0 (Right yvy234) (Right yvy235) otherwise",fontsize=16,color="black",shape="box"];3952 -> 4035[label="",style="solid", color="black", weight=3]; 40.99/18.80 3953[label="LT",fontsize=16,color="green",shape="box"];3098 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3098[label="yvy20 == yvy15",fontsize=16,color="magenta"];3098 -> 3178[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3098 -> 3179[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3099 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3099[label="yvy20 == yvy15",fontsize=16,color="magenta"];3099 -> 3180[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3099 -> 3181[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3100 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3100[label="yvy20 == yvy15",fontsize=16,color="magenta"];3100 -> 3182[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3100 -> 3183[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3101 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3101[label="yvy20 == yvy15",fontsize=16,color="magenta"];3101 -> 3184[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3101 -> 3185[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3102 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3102[label="yvy20 == yvy15",fontsize=16,color="magenta"];3102 -> 3186[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3102 -> 3187[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3103 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3103[label="yvy20 == yvy15",fontsize=16,color="magenta"];3103 -> 3188[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3103 -> 3189[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3104 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3104[label="yvy20 == yvy15",fontsize=16,color="magenta"];3104 -> 3190[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3104 -> 3191[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3105 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3105[label="yvy20 == yvy15",fontsize=16,color="magenta"];3105 -> 3192[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3105 -> 3193[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3106 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3106[label="yvy20 == yvy15",fontsize=16,color="magenta"];3106 -> 3194[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3106 -> 3195[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3107 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3107[label="yvy20 == yvy15",fontsize=16,color="magenta"];3107 -> 3196[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3107 -> 3197[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3108 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3108[label="yvy20 == yvy15",fontsize=16,color="magenta"];3108 -> 3198[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3108 -> 3199[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3109 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3109[label="yvy20 == yvy15",fontsize=16,color="magenta"];3109 -> 3200[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3109 -> 3201[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3110 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3110[label="yvy20 == yvy15",fontsize=16,color="magenta"];3110 -> 3202[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3110 -> 3203[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3111 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3111[label="yvy20 == yvy15",fontsize=16,color="magenta"];3111 -> 3204[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3111 -> 3205[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3112 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3112[label="yvy35 == yvy30",fontsize=16,color="magenta"];3112 -> 3206[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3112 -> 3207[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3113 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3113[label="yvy35 == yvy30",fontsize=16,color="magenta"];3113 -> 3208[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3113 -> 3209[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3114 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3114[label="yvy35 == yvy30",fontsize=16,color="magenta"];3114 -> 3210[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3114 -> 3211[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3115 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3115[label="yvy35 == yvy30",fontsize=16,color="magenta"];3115 -> 3212[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3115 -> 3213[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3116 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3116[label="yvy35 == yvy30",fontsize=16,color="magenta"];3116 -> 3214[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3116 -> 3215[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3117 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3117[label="yvy35 == yvy30",fontsize=16,color="magenta"];3117 -> 3216[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3117 -> 3217[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3118 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3118[label="yvy35 == yvy30",fontsize=16,color="magenta"];3118 -> 3218[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3118 -> 3219[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3119 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3119[label="yvy35 == yvy30",fontsize=16,color="magenta"];3119 -> 3220[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3119 -> 3221[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3120 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3120[label="yvy35 == yvy30",fontsize=16,color="magenta"];3120 -> 3222[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3120 -> 3223[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3121 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3121[label="yvy35 == yvy30",fontsize=16,color="magenta"];3121 -> 3224[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3121 -> 3225[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3122 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3122[label="yvy35 == yvy30",fontsize=16,color="magenta"];3122 -> 3226[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3122 -> 3227[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3123 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3123[label="yvy35 == yvy30",fontsize=16,color="magenta"];3123 -> 3228[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3123 -> 3229[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3124 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3124[label="yvy35 == yvy30",fontsize=16,color="magenta"];3124 -> 3230[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3124 -> 3231[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3125 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3125[label="yvy35 == yvy30",fontsize=16,color="magenta"];3125 -> 3232[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3125 -> 3233[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1903[label="FiniteMap.Branch (Left yvy400) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1903 -> 2064[label="",style="dashed", color="green", weight=3]; 40.99/18.80 1904[label="Left yvy400",fontsize=16,color="green",shape="box"];1905[label="yvy54",fontsize=16,color="green",shape="box"];1906[label="FiniteMap.Branch (Left yvy400) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1906 -> 2065[label="",style="dashed", color="green", weight=3]; 40.99/18.80 1907[label="Left yvy400",fontsize=16,color="green",shape="box"];1908[label="yvy54",fontsize=16,color="green",shape="box"];1909[label="FiniteMap.Branch (Right yvy400) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1909 -> 2066[label="",style="dashed", color="green", weight=3]; 40.99/18.80 1910[label="Right yvy400",fontsize=16,color="green",shape="box"];1911[label="yvy54",fontsize=16,color="green",shape="box"];1912[label="FiniteMap.Branch (Right yvy400) (FiniteMap.addToFM0 yvy51 yvy41) yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];1912 -> 2067[label="",style="dashed", color="green", weight=3]; 40.99/18.80 1913[label="Right yvy400",fontsize=16,color="green",shape="box"];1914[label="yvy54",fontsize=16,color="green",shape="box"];1915[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primPlusNat Zero (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1915 -> 2068[label="",style="solid", color="black", weight=3]; 40.99/18.80 1916[label="primCmpNat Zero (Succ yvy5200)",fontsize=16,color="black",shape="box"];1916 -> 2069[label="",style="solid", color="black", weight=3]; 40.99/18.80 1917[label="EQ",fontsize=16,color="green",shape="box"];1918[label="GT",fontsize=16,color="green",shape="box"];1919[label="EQ",fontsize=16,color="green",shape="box"];2178[label="yvy52",fontsize=16,color="green",shape="box"];1967[label="primMulInt (Pos yvy40010) (Pos yvy30000)",fontsize=16,color="black",shape="box"];1967 -> 2089[label="",style="solid", color="black", weight=3]; 40.99/18.80 1968[label="primMulInt (Pos yvy40010) (Neg yvy30000)",fontsize=16,color="black",shape="box"];1968 -> 2090[label="",style="solid", color="black", weight=3]; 40.99/18.80 1969[label="primMulInt (Neg yvy40010) (Pos yvy30000)",fontsize=16,color="black",shape="box"];1969 -> 2091[label="",style="solid", color="black", weight=3]; 40.99/18.80 1970[label="primMulInt (Neg yvy40010) (Neg yvy30000)",fontsize=16,color="black",shape="box"];1970 -> 2092[label="",style="solid", color="black", weight=3]; 40.99/18.80 2815[label="Pos Zero",fontsize=16,color="green",shape="box"];2816[label="yvy542",fontsize=16,color="green",shape="box"];2141[label="primCmpInt yvy79 yvy80",fontsize=16,color="burlywood",shape="triangle"];5634[label="yvy79/Pos yvy790",fontsize=10,color="white",style="solid",shape="box"];2141 -> 5634[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5634 -> 2291[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5635[label="yvy79/Neg yvy790",fontsize=10,color="white",style="solid",shape="box"];2141 -> 5635[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5635 -> 2292[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4949[label="yvy41",fontsize=16,color="green",shape="box"];4950[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];4951[label="FiniteMap.Branch yvy60 yvy61 (Pos yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];4952[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];4953[label="yvy40",fontsize=16,color="green",shape="box"];4948[label="FiniteMap.mkBranch (Pos (Succ yvy277)) yvy278 yvy279 yvy280 yvy281",fontsize=16,color="black",shape="triangle"];4948 -> 5004[label="",style="solid", color="black", weight=3]; 40.99/18.80 3977 -> 2769[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3977[label="FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];3978 -> 2773[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3978[label="FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];3976[label="yvy243 + yvy242",fontsize=16,color="black",shape="triangle"];3976 -> 4036[label="",style="solid", color="black", weight=3]; 40.99/18.80 1940 -> 2315[label="",style="dashed", color="red", weight=0]; 40.99/18.80 1940[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 (FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54)",fontsize=16,color="magenta"];1940 -> 2316[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1941 -> 4948[label="",style="dashed", color="red", weight=0]; 40.99/18.80 1941[label="FiniteMap.mkBranch (Pos (Succ Zero)) yvy50 yvy51 yvy107 yvy54",fontsize=16,color="magenta"];1941 -> 4964[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1941 -> 4965[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1941 -> 4966[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1941 -> 4967[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1941 -> 4968[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 1942[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primPlusNat Zero (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="black",shape="box"];1942 -> 2081[label="",style="solid", color="black", weight=3]; 40.99/18.80 1943[label="LT",fontsize=16,color="green",shape="box"];1944[label="EQ",fontsize=16,color="green",shape="box"];1945[label="primCmpNat (Succ yvy5200) Zero",fontsize=16,color="black",shape="box"];1945 -> 2082[label="",style="solid", color="black", weight=3]; 40.99/18.80 1946[label="EQ",fontsize=16,color="green",shape="box"];4954[label="yvy41",fontsize=16,color="green",shape="box"];4955[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];4956[label="FiniteMap.Branch yvy60 yvy61 (Neg yvy620) yvy63 yvy64",fontsize=16,color="green",shape="box"];4957[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];4958[label="yvy40",fontsize=16,color="green",shape="box"];3995[label="yvy40000",fontsize=16,color="green",shape="box"];3996[label="yvy30000",fontsize=16,color="green",shape="box"];3997[label="False <= False",fontsize=16,color="black",shape="box"];3997 -> 4037[label="",style="solid", color="black", weight=3]; 40.99/18.80 3998[label="False <= True",fontsize=16,color="black",shape="box"];3998 -> 4038[label="",style="solid", color="black", weight=3]; 40.99/18.80 3999[label="True <= False",fontsize=16,color="black",shape="box"];3999 -> 4039[label="",style="solid", color="black", weight=3]; 40.99/18.80 4000[label="True <= True",fontsize=16,color="black",shape="box"];4000 -> 4040[label="",style="solid", color="black", weight=3]; 40.99/18.80 4011[label="compare yvy7900 yvy8000",fontsize=16,color="black",shape="triangle"];4011 -> 4041[label="",style="solid", color="black", weight=3]; 40.99/18.80 4010[label="yvy244 /= GT",fontsize=16,color="black",shape="triangle"];4010 -> 4042[label="",style="solid", color="black", weight=3]; 40.99/18.80 4002[label="(yvy79000,yvy79001) <= (yvy80000,yvy80001)",fontsize=16,color="black",shape="box"];4002 -> 4043[label="",style="solid", color="black", weight=3]; 40.99/18.80 4012[label="compare yvy7900 yvy8000",fontsize=16,color="burlywood",shape="triangle"];5636[label="yvy7900/yvy79000 :% yvy79001",fontsize=10,color="white",style="solid",shape="box"];4012 -> 5636[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5636 -> 4044[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4013[label="compare yvy7900 yvy8000",fontsize=16,color="black",shape="triangle"];4013 -> 4045[label="",style="solid", color="black", weight=3]; 40.99/18.80 4005[label="Left yvy79000 <= Left yvy80000",fontsize=16,color="black",shape="box"];4005 -> 4046[label="",style="solid", color="black", weight=3]; 40.99/18.80 4006[label="Left yvy79000 <= Right yvy80000",fontsize=16,color="black",shape="box"];4006 -> 4047[label="",style="solid", color="black", weight=3]; 40.99/18.80 4007[label="Right yvy79000 <= Left yvy80000",fontsize=16,color="black",shape="box"];4007 -> 4048[label="",style="solid", color="black", weight=3]; 40.99/18.80 4008[label="Right yvy79000 <= Right yvy80000",fontsize=16,color="black",shape="box"];4008 -> 4049[label="",style="solid", color="black", weight=3]; 40.99/18.80 4009[label="(yvy79000,yvy79001,yvy79002) <= (yvy80000,yvy80001,yvy80002)",fontsize=16,color="black",shape="box"];4009 -> 4050[label="",style="solid", color="black", weight=3]; 40.99/18.80 4014 -> 1985[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4014[label="compare yvy7900 yvy8000",fontsize=16,color="magenta"];4014 -> 4051[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4014 -> 4052[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4015[label="compare yvy7900 yvy8000",fontsize=16,color="black",shape="triangle"];4015 -> 4053[label="",style="solid", color="black", weight=3]; 40.99/18.80 4016[label="compare yvy7900 yvy8000",fontsize=16,color="burlywood",shape="triangle"];5637[label="yvy7900/()",fontsize=10,color="white",style="solid",shape="box"];4016 -> 5637[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5637 -> 4054[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4021[label="LT <= LT",fontsize=16,color="black",shape="box"];4021 -> 4082[label="",style="solid", color="black", weight=3]; 40.99/18.80 4022[label="LT <= EQ",fontsize=16,color="black",shape="box"];4022 -> 4083[label="",style="solid", color="black", weight=3]; 40.99/18.80 4023[label="LT <= GT",fontsize=16,color="black",shape="box"];4023 -> 4084[label="",style="solid", color="black", weight=3]; 40.99/18.80 4024[label="EQ <= LT",fontsize=16,color="black",shape="box"];4024 -> 4085[label="",style="solid", color="black", weight=3]; 40.99/18.80 4025[label="EQ <= EQ",fontsize=16,color="black",shape="box"];4025 -> 4086[label="",style="solid", color="black", weight=3]; 40.99/18.80 4026[label="EQ <= GT",fontsize=16,color="black",shape="box"];4026 -> 4087[label="",style="solid", color="black", weight=3]; 40.99/18.80 4027[label="GT <= LT",fontsize=16,color="black",shape="box"];4027 -> 4088[label="",style="solid", color="black", weight=3]; 40.99/18.80 4028[label="GT <= EQ",fontsize=16,color="black",shape="box"];4028 -> 4089[label="",style="solid", color="black", weight=3]; 40.99/18.80 4029[label="GT <= GT",fontsize=16,color="black",shape="box"];4029 -> 4090[label="",style="solid", color="black", weight=3]; 40.99/18.80 4017[label="compare yvy7900 yvy8000",fontsize=16,color="burlywood",shape="triangle"];5638[label="yvy7900/yvy79000 : yvy79001",fontsize=10,color="white",style="solid",shape="box"];4017 -> 5638[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5638 -> 4055[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5639[label="yvy7900/[]",fontsize=10,color="white",style="solid",shape="box"];4017 -> 5639[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5639 -> 4056[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4018[label="compare yvy7900 yvy8000",fontsize=16,color="burlywood",shape="triangle"];5640[label="yvy7900/Integer yvy79000",fontsize=10,color="white",style="solid",shape="box"];4018 -> 5640[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5640 -> 4057[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4030[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];4030 -> 4091[label="",style="solid", color="black", weight=3]; 40.99/18.80 4031[label="Nothing <= Just yvy80000",fontsize=16,color="black",shape="box"];4031 -> 4092[label="",style="solid", color="black", weight=3]; 40.99/18.80 4032[label="Just yvy79000 <= Nothing",fontsize=16,color="black",shape="box"];4032 -> 4093[label="",style="solid", color="black", weight=3]; 40.99/18.80 4033[label="Just yvy79000 <= Just yvy80000",fontsize=16,color="black",shape="box"];4033 -> 4094[label="",style="solid", color="black", weight=3]; 40.99/18.80 4034[label="compare0 (Left yvy227) (Left yvy228) True",fontsize=16,color="black",shape="box"];4034 -> 4095[label="",style="solid", color="black", weight=3]; 40.99/18.80 4035[label="compare0 (Right yvy234) (Right yvy235) True",fontsize=16,color="black",shape="box"];4035 -> 4096[label="",style="solid", color="black", weight=3]; 40.99/18.80 3178[label="yvy15",fontsize=16,color="green",shape="box"];3179[label="yvy20",fontsize=16,color="green",shape="box"];3180[label="yvy15",fontsize=16,color="green",shape="box"];3181[label="yvy20",fontsize=16,color="green",shape="box"];3182[label="yvy15",fontsize=16,color="green",shape="box"];3183[label="yvy20",fontsize=16,color="green",shape="box"];3184[label="yvy15",fontsize=16,color="green",shape="box"];3185[label="yvy20",fontsize=16,color="green",shape="box"];3186[label="yvy15",fontsize=16,color="green",shape="box"];3187[label="yvy20",fontsize=16,color="green",shape="box"];3188[label="yvy15",fontsize=16,color="green",shape="box"];3189[label="yvy20",fontsize=16,color="green",shape="box"];3190[label="yvy15",fontsize=16,color="green",shape="box"];3191[label="yvy20",fontsize=16,color="green",shape="box"];3192[label="yvy15",fontsize=16,color="green",shape="box"];3193[label="yvy20",fontsize=16,color="green",shape="box"];3194[label="yvy15",fontsize=16,color="green",shape="box"];3195[label="yvy20",fontsize=16,color="green",shape="box"];3196[label="yvy15",fontsize=16,color="green",shape="box"];3197[label="yvy20",fontsize=16,color="green",shape="box"];3198[label="yvy15",fontsize=16,color="green",shape="box"];3199[label="yvy20",fontsize=16,color="green",shape="box"];3200[label="yvy15",fontsize=16,color="green",shape="box"];3201[label="yvy20",fontsize=16,color="green",shape="box"];3202[label="yvy15",fontsize=16,color="green",shape="box"];3203[label="yvy20",fontsize=16,color="green",shape="box"];3204[label="yvy15",fontsize=16,color="green",shape="box"];3205[label="yvy20",fontsize=16,color="green",shape="box"];3206[label="yvy30",fontsize=16,color="green",shape="box"];3207[label="yvy35",fontsize=16,color="green",shape="box"];3208[label="yvy30",fontsize=16,color="green",shape="box"];3209[label="yvy35",fontsize=16,color="green",shape="box"];3210[label="yvy30",fontsize=16,color="green",shape="box"];3211[label="yvy35",fontsize=16,color="green",shape="box"];3212[label="yvy30",fontsize=16,color="green",shape="box"];3213[label="yvy35",fontsize=16,color="green",shape="box"];3214[label="yvy30",fontsize=16,color="green",shape="box"];3215[label="yvy35",fontsize=16,color="green",shape="box"];3216[label="yvy30",fontsize=16,color="green",shape="box"];3217[label="yvy35",fontsize=16,color="green",shape="box"];3218[label="yvy30",fontsize=16,color="green",shape="box"];3219[label="yvy35",fontsize=16,color="green",shape="box"];3220[label="yvy30",fontsize=16,color="green",shape="box"];3221[label="yvy35",fontsize=16,color="green",shape="box"];3222[label="yvy30",fontsize=16,color="green",shape="box"];3223[label="yvy35",fontsize=16,color="green",shape="box"];3224[label="yvy30",fontsize=16,color="green",shape="box"];3225[label="yvy35",fontsize=16,color="green",shape="box"];3226[label="yvy30",fontsize=16,color="green",shape="box"];3227[label="yvy35",fontsize=16,color="green",shape="box"];3228[label="yvy30",fontsize=16,color="green",shape="box"];3229[label="yvy35",fontsize=16,color="green",shape="box"];3230[label="yvy30",fontsize=16,color="green",shape="box"];3231[label="yvy35",fontsize=16,color="green",shape="box"];3232[label="yvy30",fontsize=16,color="green",shape="box"];3233[label="yvy35",fontsize=16,color="green",shape="box"];2064[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="black",shape="triangle"];2064 -> 2175[label="",style="solid", color="black", weight=3]; 40.99/18.80 2065 -> 2064[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2065[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];2066 -> 2064[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2066[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];2067 -> 2064[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2067[label="FiniteMap.addToFM0 yvy51 yvy41",fontsize=16,color="magenta"];2068 -> 2176[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2068[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];2068 -> 2177[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2069[label="LT",fontsize=16,color="green",shape="box"];2089[label="Pos (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];2089 -> 2196[label="",style="dashed", color="green", weight=3]; 40.99/18.80 2090[label="Neg (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];2090 -> 2197[label="",style="dashed", color="green", weight=3]; 40.99/18.80 2091[label="Neg (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];2091 -> 2198[label="",style="dashed", color="green", weight=3]; 40.99/18.80 2092[label="Pos (primMulNat yvy40010 yvy30000)",fontsize=16,color="green",shape="box"];2092 -> 2199[label="",style="dashed", color="green", weight=3]; 40.99/18.80 2291[label="primCmpInt (Pos yvy790) yvy80",fontsize=16,color="burlywood",shape="box"];5641[label="yvy790/Succ yvy7900",fontsize=10,color="white",style="solid",shape="box"];2291 -> 5641[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5641 -> 2477[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5642[label="yvy790/Zero",fontsize=10,color="white",style="solid",shape="box"];2291 -> 5642[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5642 -> 2478[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2292[label="primCmpInt (Neg yvy790) yvy80",fontsize=16,color="burlywood",shape="box"];5643[label="yvy790/Succ yvy7900",fontsize=10,color="white",style="solid",shape="box"];2292 -> 5643[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5643 -> 2479[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5644[label="yvy790/Zero",fontsize=10,color="white",style="solid",shape="box"];2292 -> 5644[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5644 -> 2480[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5004[label="FiniteMap.mkBranchResult yvy278 yvy279 yvy281 yvy280",fontsize=16,color="black",shape="box"];5004 -> 5009[label="",style="solid", color="black", weight=3]; 40.99/18.80 2769[label="FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54",fontsize=16,color="black",shape="triangle"];2769 -> 2775[label="",style="solid", color="black", weight=3]; 40.99/18.80 2773[label="FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54",fontsize=16,color="black",shape="triangle"];2773 -> 2781[label="",style="solid", color="black", weight=3]; 40.99/18.80 4036[label="primPlusInt yvy243 yvy242",fontsize=16,color="burlywood",shape="box"];5645[label="yvy243/Pos yvy2430",fontsize=10,color="white",style="solid",shape="box"];4036 -> 5645[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5645 -> 4097[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5646[label="yvy243/Neg yvy2430",fontsize=10,color="white",style="solid",shape="box"];4036 -> 5646[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5646 -> 4098[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2316 -> 2768[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2316[label="FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];2316 -> 2769[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2316 -> 2770[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2315[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 yvy187",fontsize=16,color="burlywood",shape="triangle"];5647[label="yvy187/False",fontsize=10,color="white",style="solid",shape="box"];2315 -> 5647[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5647 -> 2321[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5648[label="yvy187/True",fontsize=10,color="white",style="solid",shape="box"];2315 -> 5648[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5648 -> 2322[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4964[label="yvy51",fontsize=16,color="green",shape="box"];4965[label="Zero",fontsize=16,color="green",shape="box"];4966[label="yvy107",fontsize=16,color="green",shape="box"];4967[label="yvy54",fontsize=16,color="green",shape="box"];4968[label="yvy50",fontsize=16,color="green",shape="box"];2081 -> 2189[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2081[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) (FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64)",fontsize=16,color="magenta"];2081 -> 2190[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2082[label="GT",fontsize=16,color="green",shape="box"];4037[label="True",fontsize=16,color="green",shape="box"];4038[label="True",fontsize=16,color="green",shape="box"];4039[label="False",fontsize=16,color="green",shape="box"];4040[label="True",fontsize=16,color="green",shape="box"];4041[label="primCmpChar yvy7900 yvy8000",fontsize=16,color="burlywood",shape="box"];5649[label="yvy7900/Char yvy79000",fontsize=10,color="white",style="solid",shape="box"];4041 -> 5649[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5649 -> 4099[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4042 -> 4100[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4042[label="not (yvy244 == GT)",fontsize=16,color="magenta"];4042 -> 4101[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4043 -> 4169[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4043[label="yvy79000 < yvy80000 || yvy79000 == yvy80000 && yvy79001 <= yvy80001",fontsize=16,color="magenta"];4043 -> 4170[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4043 -> 4171[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4044[label="compare (yvy79000 :% yvy79001) yvy8000",fontsize=16,color="burlywood",shape="box"];5650[label="yvy8000/yvy80000 :% yvy80001",fontsize=10,color="white",style="solid",shape="box"];4044 -> 5650[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5650 -> 4107[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4045[label="primCmpDouble yvy7900 yvy8000",fontsize=16,color="burlywood",shape="box"];5651[label="yvy7900/Double yvy79000 yvy79001",fontsize=10,color="white",style="solid",shape="box"];4045 -> 5651[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5651 -> 4108[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4046[label="yvy79000 <= yvy80000",fontsize=16,color="blue",shape="box"];5652[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4046 -> 5652[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5652 -> 4109[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5653[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4046 -> 5653[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5653 -> 4110[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5654[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4046 -> 5654[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5654 -> 4111[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5655[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4046 -> 5655[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5655 -> 4112[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5656[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4046 -> 5656[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5656 -> 4113[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5657[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4046 -> 5657[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5657 -> 4114[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5658[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4046 -> 5658[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5658 -> 4115[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5659[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4046 -> 5659[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5659 -> 4116[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5660[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4046 -> 5660[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5660 -> 4117[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5661[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4046 -> 5661[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5661 -> 4118[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5662[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4046 -> 5662[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5662 -> 4119[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5663[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4046 -> 5663[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5663 -> 4120[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5664[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4046 -> 5664[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5664 -> 4121[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5665[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4046 -> 5665[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5665 -> 4122[label="",style="solid", color="blue", weight=3]; 40.99/18.80 4047[label="True",fontsize=16,color="green",shape="box"];4048[label="False",fontsize=16,color="green",shape="box"];4049[label="yvy79000 <= yvy80000",fontsize=16,color="blue",shape="box"];5666[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4049 -> 5666[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5666 -> 4123[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5667[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4049 -> 5667[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5667 -> 4124[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5668[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4049 -> 5668[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5668 -> 4125[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5669[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4049 -> 5669[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5669 -> 4126[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5670[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4049 -> 5670[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5670 -> 4127[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5671[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4049 -> 5671[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5671 -> 4128[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5672[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4049 -> 5672[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5672 -> 4129[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5673[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4049 -> 5673[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5673 -> 4130[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5674[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4049 -> 5674[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5674 -> 4131[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5675[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4049 -> 5675[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5675 -> 4132[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5676[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4049 -> 5676[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5676 -> 4133[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5677[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4049 -> 5677[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5677 -> 4134[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5678[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4049 -> 5678[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5678 -> 4135[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5679[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4049 -> 5679[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5679 -> 4136[label="",style="solid", color="blue", weight=3]; 40.99/18.80 4050 -> 4169[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4050[label="yvy79000 < yvy80000 || yvy79000 == yvy80000 && (yvy79001 < yvy80001 || yvy79001 == yvy80001 && yvy79002 <= yvy80002)",fontsize=16,color="magenta"];4050 -> 4172[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4050 -> 4173[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4051[label="yvy8000",fontsize=16,color="green",shape="box"];4052[label="yvy7900",fontsize=16,color="green",shape="box"];4053[label="primCmpFloat yvy7900 yvy8000",fontsize=16,color="burlywood",shape="box"];5680[label="yvy7900/Float yvy79000 yvy79001",fontsize=10,color="white",style="solid",shape="box"];4053 -> 5680[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5680 -> 4137[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4054[label="compare () yvy8000",fontsize=16,color="burlywood",shape="box"];5681[label="yvy8000/()",fontsize=10,color="white",style="solid",shape="box"];4054 -> 5681[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5681 -> 4138[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4082[label="True",fontsize=16,color="green",shape="box"];4083[label="True",fontsize=16,color="green",shape="box"];4084[label="True",fontsize=16,color="green",shape="box"];4085[label="False",fontsize=16,color="green",shape="box"];4086[label="True",fontsize=16,color="green",shape="box"];4087[label="True",fontsize=16,color="green",shape="box"];4088[label="False",fontsize=16,color="green",shape="box"];4089[label="False",fontsize=16,color="green",shape="box"];4090[label="True",fontsize=16,color="green",shape="box"];4055[label="compare (yvy79000 : yvy79001) yvy8000",fontsize=16,color="burlywood",shape="box"];5682[label="yvy8000/yvy80000 : yvy80001",fontsize=10,color="white",style="solid",shape="box"];4055 -> 5682[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5682 -> 4139[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5683[label="yvy8000/[]",fontsize=10,color="white",style="solid",shape="box"];4055 -> 5683[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5683 -> 4140[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4056[label="compare [] yvy8000",fontsize=16,color="burlywood",shape="box"];5684[label="yvy8000/yvy80000 : yvy80001",fontsize=10,color="white",style="solid",shape="box"];4056 -> 5684[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5684 -> 4141[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5685[label="yvy8000/[]",fontsize=10,color="white",style="solid",shape="box"];4056 -> 5685[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5685 -> 4142[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4057[label="compare (Integer yvy79000) yvy8000",fontsize=16,color="burlywood",shape="box"];5686[label="yvy8000/Integer yvy80000",fontsize=10,color="white",style="solid",shape="box"];4057 -> 5686[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5686 -> 4143[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4091[label="True",fontsize=16,color="green",shape="box"];4092[label="True",fontsize=16,color="green",shape="box"];4093[label="False",fontsize=16,color="green",shape="box"];4094[label="yvy79000 <= yvy80000",fontsize=16,color="blue",shape="box"];5687[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5687[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5687 -> 4144[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5688[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5688[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5688 -> 4145[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5689[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5689[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5689 -> 4146[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5690[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5690[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5690 -> 4147[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5691[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5691[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5691 -> 4148[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5692[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5692[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5692 -> 4149[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5693[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5693[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5693 -> 4150[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5694[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5694[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5694 -> 4151[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5695[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5695[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5695 -> 4152[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5696[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5696[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5696 -> 4153[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5697[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5697[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5697 -> 4154[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5698[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5698[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5698 -> 4155[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5699[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5699[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5699 -> 4156[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5700[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4094 -> 5700[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5700 -> 4157[label="",style="solid", color="blue", weight=3]; 40.99/18.80 4095[label="GT",fontsize=16,color="green",shape="box"];4096[label="GT",fontsize=16,color="green",shape="box"];2175[label="yvy41",fontsize=16,color="green",shape="box"];2177 -> 1921[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2177[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Pos (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];2177 -> 2300[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2176 -> 2141[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2176[label="primCmpInt (Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) yvy185",fontsize=16,color="magenta"];2176 -> 2301[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2176 -> 2302[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2196[label="primMulNat yvy40010 yvy30000",fontsize=16,color="burlywood",shape="triangle"];5701[label="yvy40010/Succ yvy400100",fontsize=10,color="white",style="solid",shape="box"];2196 -> 5701[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5701 -> 2339[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5702[label="yvy40010/Zero",fontsize=10,color="white",style="solid",shape="box"];2196 -> 5702[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5702 -> 2340[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2197 -> 2196[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2197[label="primMulNat yvy40010 yvy30000",fontsize=16,color="magenta"];2197 -> 2341[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2198 -> 2196[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2198[label="primMulNat yvy40010 yvy30000",fontsize=16,color="magenta"];2198 -> 2342[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2199 -> 2196[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2199[label="primMulNat yvy40010 yvy30000",fontsize=16,color="magenta"];2199 -> 2343[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2199 -> 2344[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2477[label="primCmpInt (Pos (Succ yvy7900)) yvy80",fontsize=16,color="burlywood",shape="box"];5703[label="yvy80/Pos yvy800",fontsize=10,color="white",style="solid",shape="box"];2477 -> 5703[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5703 -> 2627[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5704[label="yvy80/Neg yvy800",fontsize=10,color="white",style="solid",shape="box"];2477 -> 5704[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5704 -> 2628[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2478[label="primCmpInt (Pos Zero) yvy80",fontsize=16,color="burlywood",shape="box"];5705[label="yvy80/Pos yvy800",fontsize=10,color="white",style="solid",shape="box"];2478 -> 5705[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5705 -> 2629[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5706[label="yvy80/Neg yvy800",fontsize=10,color="white",style="solid",shape="box"];2478 -> 5706[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5706 -> 2630[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2479[label="primCmpInt (Neg (Succ yvy7900)) yvy80",fontsize=16,color="burlywood",shape="box"];5707[label="yvy80/Pos yvy800",fontsize=10,color="white",style="solid",shape="box"];2479 -> 5707[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5707 -> 2631[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5708[label="yvy80/Neg yvy800",fontsize=10,color="white",style="solid",shape="box"];2479 -> 5708[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5708 -> 2632[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2480[label="primCmpInt (Neg Zero) yvy80",fontsize=16,color="burlywood",shape="box"];5709[label="yvy80/Pos yvy800",fontsize=10,color="white",style="solid",shape="box"];2480 -> 5709[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5709 -> 2633[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5710[label="yvy80/Neg yvy800",fontsize=10,color="white",style="solid",shape="box"];2480 -> 5710[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5710 -> 2634[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5009[label="FiniteMap.Branch yvy278 yvy279 (FiniteMap.mkBranchUnbox yvy281 yvy278 yvy280 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy281 yvy278 yvy280 + FiniteMap.mkBranchRight_size yvy281 yvy278 yvy280)) yvy280 yvy281",fontsize=16,color="green",shape="box"];5009 -> 5012[label="",style="dashed", color="green", weight=3]; 40.99/18.80 2781 -> 2775[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2781[label="FiniteMap.sizeFM yvy107",fontsize=16,color="magenta"];2781 -> 2819[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4097[label="primPlusInt (Pos yvy2430) yvy242",fontsize=16,color="burlywood",shape="box"];5711[label="yvy242/Pos yvy2420",fontsize=10,color="white",style="solid",shape="box"];4097 -> 5711[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5711 -> 4158[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5712[label="yvy242/Neg yvy2420",fontsize=10,color="white",style="solid",shape="box"];4097 -> 5712[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5712 -> 4159[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4098[label="primPlusInt (Neg yvy2430) yvy242",fontsize=16,color="burlywood",shape="box"];5713[label="yvy242/Pos yvy2420",fontsize=10,color="white",style="solid",shape="box"];4098 -> 5713[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5713 -> 4160[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5714[label="yvy242/Neg yvy2420",fontsize=10,color="white",style="solid",shape="box"];4098 -> 5714[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5714 -> 4161[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2770 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2770[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];2770 -> 2776[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2770 -> 2777[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2768[label="yvy198 > yvy197",fontsize=16,color="black",shape="triangle"];2768 -> 2778[label="",style="solid", color="black", weight=3]; 40.99/18.80 2321[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 False",fontsize=16,color="black",shape="box"];2321 -> 2512[label="",style="solid", color="black", weight=3]; 40.99/18.80 2322[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 True",fontsize=16,color="black",shape="box"];2322 -> 2513[label="",style="solid", color="black", weight=3]; 40.99/18.80 2190 -> 1948[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2190[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 (Neg (Succ yvy6200)) yvy63 yvy64",fontsize=16,color="magenta"];2190 -> 2327[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2189 -> 2141[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2189[label="primCmpInt (Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))) yvy186",fontsize=16,color="magenta"];2189 -> 2328[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2189 -> 2329[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4099[label="primCmpChar (Char yvy79000) yvy8000",fontsize=16,color="burlywood",shape="box"];5715[label="yvy8000/Char yvy80000",fontsize=10,color="white",style="solid",shape="box"];4099 -> 5715[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5715 -> 4162[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4101 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4101[label="yvy244 == GT",fontsize=16,color="magenta"];4101 -> 4163[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4101 -> 4164[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4100[label="not yvy249",fontsize=16,color="burlywood",shape="triangle"];5716[label="yvy249/False",fontsize=10,color="white",style="solid",shape="box"];4100 -> 5716[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5716 -> 4165[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5717[label="yvy249/True",fontsize=10,color="white",style="solid",shape="box"];4100 -> 5717[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5717 -> 4166[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4170[label="yvy79000 < yvy80000",fontsize=16,color="blue",shape="box"];5718[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4170 -> 5718[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5718 -> 4176[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5719[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4170 -> 5719[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5719 -> 4177[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5720[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4170 -> 5720[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5720 -> 4178[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5721[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4170 -> 5721[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5721 -> 4179[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5722[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4170 -> 5722[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5722 -> 4180[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5723[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4170 -> 5723[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5723 -> 4181[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5724[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4170 -> 5724[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5724 -> 4182[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5725[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4170 -> 5725[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5725 -> 4183[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5726[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4170 -> 5726[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5726 -> 4184[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5727[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4170 -> 5727[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5727 -> 4185[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5728[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4170 -> 5728[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5728 -> 4186[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5729[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4170 -> 5729[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5729 -> 4187[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5730[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4170 -> 5730[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5730 -> 4188[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5731[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4170 -> 5731[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5731 -> 4189[label="",style="solid", color="blue", weight=3]; 40.99/18.80 4171 -> 3423[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4171[label="yvy79000 == yvy80000 && yvy79001 <= yvy80001",fontsize=16,color="magenta"];4171 -> 4190[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4171 -> 4191[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4169[label="yvy254 || yvy255",fontsize=16,color="burlywood",shape="triangle"];5732[label="yvy254/False",fontsize=10,color="white",style="solid",shape="box"];4169 -> 5732[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5732 -> 4192[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5733[label="yvy254/True",fontsize=10,color="white",style="solid",shape="box"];4169 -> 5733[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5733 -> 4193[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4107[label="compare (yvy79000 :% yvy79001) (yvy80000 :% yvy80001)",fontsize=16,color="black",shape="box"];4107 -> 4194[label="",style="solid", color="black", weight=3]; 40.99/18.80 4108[label="primCmpDouble (Double yvy79000 yvy79001) yvy8000",fontsize=16,color="burlywood",shape="box"];5734[label="yvy79001/Pos yvy790010",fontsize=10,color="white",style="solid",shape="box"];4108 -> 5734[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5734 -> 4195[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5735[label="yvy79001/Neg yvy790010",fontsize=10,color="white",style="solid",shape="box"];4108 -> 5735[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5735 -> 4196[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4109 -> 3772[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4109[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4109 -> 4197[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4109 -> 4198[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4110 -> 3773[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4110[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4110 -> 4199[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4110 -> 4200[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4111 -> 3774[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4111[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4111 -> 4201[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4111 -> 4202[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4112 -> 3775[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4112[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4112 -> 4203[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4112 -> 4204[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4113 -> 3776[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4113[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4113 -> 4205[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4113 -> 4206[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4114 -> 3777[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4114[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4114 -> 4207[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4114 -> 4208[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4115 -> 3778[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4115[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4115 -> 4209[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4115 -> 4210[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4116 -> 3779[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4116[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4116 -> 4211[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4116 -> 4212[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4117 -> 3780[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4117[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4117 -> 4213[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4117 -> 4214[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4118 -> 3781[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4118[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4118 -> 4215[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4118 -> 4216[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4119 -> 3782[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4119[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4119 -> 4217[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4119 -> 4218[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4120 -> 3783[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4120[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4120 -> 4219[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4120 -> 4220[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4121 -> 3784[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4121[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4121 -> 4221[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4121 -> 4222[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4122 -> 3785[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4122[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4122 -> 4223[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4122 -> 4224[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4123 -> 3772[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4123[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4123 -> 4225[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4123 -> 4226[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4124 -> 3773[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4124[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4124 -> 4227[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4124 -> 4228[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4125 -> 3774[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4125[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4125 -> 4229[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4125 -> 4230[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4126 -> 3775[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4126[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4126 -> 4231[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4126 -> 4232[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4127 -> 3776[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4127[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4127 -> 4233[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4127 -> 4234[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4128 -> 3777[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4128[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4128 -> 4235[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4128 -> 4236[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4129 -> 3778[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4129[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4129 -> 4237[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4129 -> 4238[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4130 -> 3779[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4130[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4130 -> 4239[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4130 -> 4240[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4131 -> 3780[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4131[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4131 -> 4241[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4131 -> 4242[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4132 -> 3781[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4132[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4132 -> 4243[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4132 -> 4244[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4133 -> 3782[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4133[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4133 -> 4245[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4133 -> 4246[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4134 -> 3783[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4134[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4134 -> 4247[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4134 -> 4248[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4135 -> 3784[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4135[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4135 -> 4249[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4135 -> 4250[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4136 -> 3785[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4136[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4136 -> 4251[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4136 -> 4252[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4172[label="yvy79000 < yvy80000",fontsize=16,color="blue",shape="box"];5736[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4172 -> 5736[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5736 -> 4253[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5737[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4172 -> 5737[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5737 -> 4254[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5738[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4172 -> 5738[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5738 -> 4255[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5739[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4172 -> 5739[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5739 -> 4256[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5740[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4172 -> 5740[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5740 -> 4257[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5741[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4172 -> 5741[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5741 -> 4258[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5742[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4172 -> 5742[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5742 -> 4259[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5743[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4172 -> 5743[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5743 -> 4260[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5744[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4172 -> 5744[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5744 -> 4261[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5745[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4172 -> 5745[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5745 -> 4262[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5746[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4172 -> 5746[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5746 -> 4263[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5747[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4172 -> 5747[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5747 -> 4264[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5748[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4172 -> 5748[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5748 -> 4265[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5749[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4172 -> 5749[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5749 -> 4266[label="",style="solid", color="blue", weight=3]; 40.99/18.80 4173 -> 3423[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4173[label="yvy79000 == yvy80000 && (yvy79001 < yvy80001 || yvy79001 == yvy80001 && yvy79002 <= yvy80002)",fontsize=16,color="magenta"];4173 -> 4267[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4173 -> 4268[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4137[label="primCmpFloat (Float yvy79000 yvy79001) yvy8000",fontsize=16,color="burlywood",shape="box"];5750[label="yvy79001/Pos yvy790010",fontsize=10,color="white",style="solid",shape="box"];4137 -> 5750[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5750 -> 4269[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5751[label="yvy79001/Neg yvy790010",fontsize=10,color="white",style="solid",shape="box"];4137 -> 5751[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5751 -> 4270[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4138[label="compare () ()",fontsize=16,color="black",shape="box"];4138 -> 4271[label="",style="solid", color="black", weight=3]; 40.99/18.80 4139[label="compare (yvy79000 : yvy79001) (yvy80000 : yvy80001)",fontsize=16,color="black",shape="box"];4139 -> 4272[label="",style="solid", color="black", weight=3]; 40.99/18.80 4140[label="compare (yvy79000 : yvy79001) []",fontsize=16,color="black",shape="box"];4140 -> 4273[label="",style="solid", color="black", weight=3]; 40.99/18.80 4141[label="compare [] (yvy80000 : yvy80001)",fontsize=16,color="black",shape="box"];4141 -> 4274[label="",style="solid", color="black", weight=3]; 40.99/18.80 4142[label="compare [] []",fontsize=16,color="black",shape="box"];4142 -> 4275[label="",style="solid", color="black", weight=3]; 40.99/18.80 4143[label="compare (Integer yvy79000) (Integer yvy80000)",fontsize=16,color="black",shape="box"];4143 -> 4276[label="",style="solid", color="black", weight=3]; 40.99/18.80 4144 -> 3772[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4144[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4144 -> 4277[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4144 -> 4278[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4145 -> 3773[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4145[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4145 -> 4279[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4145 -> 4280[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4146 -> 3774[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4146[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4146 -> 4281[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4146 -> 4282[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4147 -> 3775[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4147[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4147 -> 4283[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4147 -> 4284[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4148 -> 3776[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4148[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4148 -> 4285[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4148 -> 4286[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4149 -> 3777[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4149[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4149 -> 4287[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4149 -> 4288[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4150 -> 3778[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4150[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4150 -> 4289[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4150 -> 4290[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4151 -> 3779[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4151[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4151 -> 4291[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4151 -> 4292[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4152 -> 3780[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4152[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4152 -> 4293[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4152 -> 4294[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4153 -> 3781[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4153[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4153 -> 4295[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4153 -> 4296[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4154 -> 3782[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4154[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4154 -> 4297[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4154 -> 4298[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4155 -> 3783[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4155[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4155 -> 4299[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4155 -> 4300[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4156 -> 3784[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4156[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4156 -> 4301[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4156 -> 4302[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4157 -> 3785[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4157[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];4157 -> 4303[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4157 -> 4304[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2300[label="Succ yvy6200",fontsize=16,color="green",shape="box"];2301[label="yvy185",fontsize=16,color="green",shape="box"];2302[label="Pos (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))",fontsize=16,color="green",shape="box"];2302 -> 2489[label="",style="dashed", color="green", weight=3]; 40.99/18.80 2339[label="primMulNat (Succ yvy400100) yvy30000",fontsize=16,color="burlywood",shape="box"];5752[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2339 -> 5752[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5752 -> 2540[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5753[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2339 -> 5753[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5753 -> 2541[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2340[label="primMulNat Zero yvy30000",fontsize=16,color="burlywood",shape="box"];5754[label="yvy30000/Succ yvy300000",fontsize=10,color="white",style="solid",shape="box"];2340 -> 5754[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5754 -> 2542[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5755[label="yvy30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2340 -> 5755[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5755 -> 2543[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2341[label="yvy30000",fontsize=16,color="green",shape="box"];2342[label="yvy40010",fontsize=16,color="green",shape="box"];2343[label="yvy40010",fontsize=16,color="green",shape="box"];2344[label="yvy30000",fontsize=16,color="green",shape="box"];2627[label="primCmpInt (Pos (Succ yvy7900)) (Pos yvy800)",fontsize=16,color="black",shape="box"];2627 -> 2736[label="",style="solid", color="black", weight=3]; 40.99/18.80 2628[label="primCmpInt (Pos (Succ yvy7900)) (Neg yvy800)",fontsize=16,color="black",shape="box"];2628 -> 2737[label="",style="solid", color="black", weight=3]; 40.99/18.80 2629[label="primCmpInt (Pos Zero) (Pos yvy800)",fontsize=16,color="burlywood",shape="box"];5756[label="yvy800/Succ yvy8000",fontsize=10,color="white",style="solid",shape="box"];2629 -> 5756[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5756 -> 2738[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5757[label="yvy800/Zero",fontsize=10,color="white",style="solid",shape="box"];2629 -> 5757[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5757 -> 2739[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2630[label="primCmpInt (Pos Zero) (Neg yvy800)",fontsize=16,color="burlywood",shape="box"];5758[label="yvy800/Succ yvy8000",fontsize=10,color="white",style="solid",shape="box"];2630 -> 5758[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5758 -> 2740[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5759[label="yvy800/Zero",fontsize=10,color="white",style="solid",shape="box"];2630 -> 5759[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5759 -> 2741[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2631[label="primCmpInt (Neg (Succ yvy7900)) (Pos yvy800)",fontsize=16,color="black",shape="box"];2631 -> 2742[label="",style="solid", color="black", weight=3]; 40.99/18.80 2632[label="primCmpInt (Neg (Succ yvy7900)) (Neg yvy800)",fontsize=16,color="black",shape="box"];2632 -> 2743[label="",style="solid", color="black", weight=3]; 40.99/18.80 2633[label="primCmpInt (Neg Zero) (Pos yvy800)",fontsize=16,color="burlywood",shape="box"];5760[label="yvy800/Succ yvy8000",fontsize=10,color="white",style="solid",shape="box"];2633 -> 5760[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5760 -> 2744[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5761[label="yvy800/Zero",fontsize=10,color="white",style="solid",shape="box"];2633 -> 5761[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5761 -> 2745[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2634[label="primCmpInt (Neg Zero) (Neg yvy800)",fontsize=16,color="burlywood",shape="box"];5762[label="yvy800/Succ yvy8000",fontsize=10,color="white",style="solid",shape="box"];2634 -> 5762[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5762 -> 2746[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5763[label="yvy800/Zero",fontsize=10,color="white",style="solid",shape="box"];2634 -> 5763[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5763 -> 2747[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5012 -> 5015[label="",style="dashed", color="red", weight=0]; 40.99/18.80 5012[label="FiniteMap.mkBranchUnbox yvy281 yvy278 yvy280 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy281 yvy278 yvy280 + FiniteMap.mkBranchRight_size yvy281 yvy278 yvy280)",fontsize=16,color="magenta"];5012 -> 5016[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2819[label="yvy107",fontsize=16,color="green",shape="box"];4158[label="primPlusInt (Pos yvy2430) (Pos yvy2420)",fontsize=16,color="black",shape="box"];4158 -> 4305[label="",style="solid", color="black", weight=3]; 40.99/18.80 4159[label="primPlusInt (Pos yvy2430) (Neg yvy2420)",fontsize=16,color="black",shape="box"];4159 -> 4306[label="",style="solid", color="black", weight=3]; 40.99/18.80 4160[label="primPlusInt (Neg yvy2430) (Pos yvy2420)",fontsize=16,color="black",shape="box"];4160 -> 4307[label="",style="solid", color="black", weight=3]; 40.99/18.80 4161[label="primPlusInt (Neg yvy2430) (Neg yvy2420)",fontsize=16,color="black",shape="box"];4161 -> 4308[label="",style="solid", color="black", weight=3]; 40.99/18.80 2776 -> 1920[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2776[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2777 -> 2773[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2777[label="FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];2778 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2778[label="compare yvy198 yvy197 == GT",fontsize=16,color="magenta"];2778 -> 2799[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2778 -> 2800[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2512 -> 2764[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2512[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 (FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54)",fontsize=16,color="magenta"];2512 -> 2765[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2513[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy107 yvy50 yvy51 yvy54 yvy107 yvy54 yvy54",fontsize=16,color="burlywood",shape="box"];5764[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2513 -> 5764[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5764 -> 2642[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5765[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];2513 -> 5765[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5765 -> 2643[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2327[label="Succ yvy6200",fontsize=16,color="green",shape="box"];2328[label="yvy186",fontsize=16,color="green",shape="box"];2329[label="Neg (primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200))",fontsize=16,color="green",shape="box"];2329 -> 2518[label="",style="dashed", color="green", weight=3]; 40.99/18.80 4162[label="primCmpChar (Char yvy79000) (Char yvy80000)",fontsize=16,color="black",shape="box"];4162 -> 4309[label="",style="solid", color="black", weight=3]; 40.99/18.80 4163[label="GT",fontsize=16,color="green",shape="box"];4164[label="yvy244",fontsize=16,color="green",shape="box"];4165[label="not False",fontsize=16,color="black",shape="box"];4165 -> 4310[label="",style="solid", color="black", weight=3]; 40.99/18.80 4166[label="not True",fontsize=16,color="black",shape="box"];4166 -> 4311[label="",style="solid", color="black", weight=3]; 40.99/18.80 4176[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4176 -> 4336[label="",style="solid", color="black", weight=3]; 40.99/18.80 4177[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4177 -> 4337[label="",style="solid", color="black", weight=3]; 40.99/18.80 4178[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4178 -> 4338[label="",style="solid", color="black", weight=3]; 40.99/18.80 4179[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4179 -> 4339[label="",style="solid", color="black", weight=3]; 40.99/18.80 4180[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4180 -> 4340[label="",style="solid", color="black", weight=3]; 40.99/18.80 4181[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4181 -> 4341[label="",style="solid", color="black", weight=3]; 40.99/18.80 4182[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4182 -> 4342[label="",style="solid", color="black", weight=3]; 40.99/18.80 4183 -> 3960[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4183[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4183 -> 4343[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4183 -> 4344[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4184[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4184 -> 4345[label="",style="solid", color="black", weight=3]; 40.99/18.80 4185[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4185 -> 4346[label="",style="solid", color="black", weight=3]; 40.99/18.80 4186[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4186 -> 4347[label="",style="solid", color="black", weight=3]; 40.99/18.80 4187[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4187 -> 4348[label="",style="solid", color="black", weight=3]; 40.99/18.80 4188[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4188 -> 4349[label="",style="solid", color="black", weight=3]; 40.99/18.80 4189[label="yvy79000 < yvy80000",fontsize=16,color="black",shape="triangle"];4189 -> 4350[label="",style="solid", color="black", weight=3]; 40.99/18.80 4190[label="yvy79000 == yvy80000",fontsize=16,color="blue",shape="box"];5766[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4190 -> 5766[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5766 -> 4351[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5767[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4190 -> 5767[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5767 -> 4352[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5768[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4190 -> 5768[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5768 -> 4353[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5769[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4190 -> 5769[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5769 -> 4354[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5770[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4190 -> 5770[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5770 -> 4355[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5771[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4190 -> 5771[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5771 -> 4356[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5772[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4190 -> 5772[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5772 -> 4357[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5773[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4190 -> 5773[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5773 -> 4358[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5774[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4190 -> 5774[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5774 -> 4359[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5775[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4190 -> 5775[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5775 -> 4360[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5776[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4190 -> 5776[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5776 -> 4361[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5777[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4190 -> 5777[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5777 -> 4362[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5778[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4190 -> 5778[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5778 -> 4363[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5779[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4190 -> 5779[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5779 -> 4364[label="",style="solid", color="blue", weight=3]; 40.99/18.80 4191[label="yvy79001 <= yvy80001",fontsize=16,color="blue",shape="box"];5780[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4191 -> 5780[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5780 -> 4365[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5781[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4191 -> 5781[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5781 -> 4366[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5782[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4191 -> 5782[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5782 -> 4367[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5783[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4191 -> 5783[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5783 -> 4368[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5784[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4191 -> 5784[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5784 -> 4369[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5785[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4191 -> 5785[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5785 -> 4370[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5786[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4191 -> 5786[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5786 -> 4371[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5787[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4191 -> 5787[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5787 -> 4372[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5788[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4191 -> 5788[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5788 -> 4373[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5789[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4191 -> 5789[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5789 -> 4374[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5790[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4191 -> 5790[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5790 -> 4375[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5791[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4191 -> 5791[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5791 -> 4376[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5792[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4191 -> 5792[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5792 -> 4377[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5793[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4191 -> 5793[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5793 -> 4378[label="",style="solid", color="blue", weight=3]; 40.99/18.80 4192[label="False || yvy255",fontsize=16,color="black",shape="box"];4192 -> 4379[label="",style="solid", color="black", weight=3]; 40.99/18.80 4193[label="True || yvy255",fontsize=16,color="black",shape="box"];4193 -> 4380[label="",style="solid", color="black", weight=3]; 40.99/18.80 4194[label="compare (yvy79000 * yvy80001) (yvy80000 * yvy79001)",fontsize=16,color="blue",shape="box"];5794[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4194 -> 5794[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5794 -> 4381[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5795[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4194 -> 5795[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5795 -> 4382[label="",style="solid", color="blue", weight=3]; 40.99/18.80 4195[label="primCmpDouble (Double yvy79000 (Pos yvy790010)) yvy8000",fontsize=16,color="burlywood",shape="box"];5796[label="yvy8000/Double yvy80000 yvy80001",fontsize=10,color="white",style="solid",shape="box"];4195 -> 5796[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5796 -> 4383[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4196[label="primCmpDouble (Double yvy79000 (Neg yvy790010)) yvy8000",fontsize=16,color="burlywood",shape="box"];5797[label="yvy8000/Double yvy80000 yvy80001",fontsize=10,color="white",style="solid",shape="box"];4196 -> 5797[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5797 -> 4384[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4197[label="yvy80000",fontsize=16,color="green",shape="box"];4198[label="yvy79000",fontsize=16,color="green",shape="box"];4199[label="yvy80000",fontsize=16,color="green",shape="box"];4200[label="yvy79000",fontsize=16,color="green",shape="box"];4201[label="yvy80000",fontsize=16,color="green",shape="box"];4202[label="yvy79000",fontsize=16,color="green",shape="box"];4203[label="yvy80000",fontsize=16,color="green",shape="box"];4204[label="yvy79000",fontsize=16,color="green",shape="box"];4205[label="yvy80000",fontsize=16,color="green",shape="box"];4206[label="yvy79000",fontsize=16,color="green",shape="box"];4207[label="yvy80000",fontsize=16,color="green",shape="box"];4208[label="yvy79000",fontsize=16,color="green",shape="box"];4209[label="yvy80000",fontsize=16,color="green",shape="box"];4210[label="yvy79000",fontsize=16,color="green",shape="box"];4211[label="yvy80000",fontsize=16,color="green",shape="box"];4212[label="yvy79000",fontsize=16,color="green",shape="box"];4213[label="yvy80000",fontsize=16,color="green",shape="box"];4214[label="yvy79000",fontsize=16,color="green",shape="box"];4215[label="yvy80000",fontsize=16,color="green",shape="box"];4216[label="yvy79000",fontsize=16,color="green",shape="box"];4217[label="yvy80000",fontsize=16,color="green",shape="box"];4218[label="yvy79000",fontsize=16,color="green",shape="box"];4219[label="yvy80000",fontsize=16,color="green",shape="box"];4220[label="yvy79000",fontsize=16,color="green",shape="box"];4221[label="yvy80000",fontsize=16,color="green",shape="box"];4222[label="yvy79000",fontsize=16,color="green",shape="box"];4223[label="yvy80000",fontsize=16,color="green",shape="box"];4224[label="yvy79000",fontsize=16,color="green",shape="box"];4225[label="yvy80000",fontsize=16,color="green",shape="box"];4226[label="yvy79000",fontsize=16,color="green",shape="box"];4227[label="yvy80000",fontsize=16,color="green",shape="box"];4228[label="yvy79000",fontsize=16,color="green",shape="box"];4229[label="yvy80000",fontsize=16,color="green",shape="box"];4230[label="yvy79000",fontsize=16,color="green",shape="box"];4231[label="yvy80000",fontsize=16,color="green",shape="box"];4232[label="yvy79000",fontsize=16,color="green",shape="box"];4233[label="yvy80000",fontsize=16,color="green",shape="box"];4234[label="yvy79000",fontsize=16,color="green",shape="box"];4235[label="yvy80000",fontsize=16,color="green",shape="box"];4236[label="yvy79000",fontsize=16,color="green",shape="box"];4237[label="yvy80000",fontsize=16,color="green",shape="box"];4238[label="yvy79000",fontsize=16,color="green",shape="box"];4239[label="yvy80000",fontsize=16,color="green",shape="box"];4240[label="yvy79000",fontsize=16,color="green",shape="box"];4241[label="yvy80000",fontsize=16,color="green",shape="box"];4242[label="yvy79000",fontsize=16,color="green",shape="box"];4243[label="yvy80000",fontsize=16,color="green",shape="box"];4244[label="yvy79000",fontsize=16,color="green",shape="box"];4245[label="yvy80000",fontsize=16,color="green",shape="box"];4246[label="yvy79000",fontsize=16,color="green",shape="box"];4247[label="yvy80000",fontsize=16,color="green",shape="box"];4248[label="yvy79000",fontsize=16,color="green",shape="box"];4249[label="yvy80000",fontsize=16,color="green",shape="box"];4250[label="yvy79000",fontsize=16,color="green",shape="box"];4251[label="yvy80000",fontsize=16,color="green",shape="box"];4252[label="yvy79000",fontsize=16,color="green",shape="box"];4253 -> 4176[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4253[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4253 -> 4385[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4253 -> 4386[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4254 -> 4177[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4254[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4254 -> 4387[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4254 -> 4388[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4255 -> 4178[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4255[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4255 -> 4389[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4255 -> 4390[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4256 -> 4179[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4256[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4256 -> 4391[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4256 -> 4392[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4257 -> 4180[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4257[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4257 -> 4393[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4257 -> 4394[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4258 -> 4181[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4258[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4258 -> 4395[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4258 -> 4396[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4259 -> 4182[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4259[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4259 -> 4397[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4259 -> 4398[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4260 -> 3960[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4260[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4260 -> 4399[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4260 -> 4400[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4261 -> 4184[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4261[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4261 -> 4401[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4261 -> 4402[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4262 -> 4185[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4262[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4262 -> 4403[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4262 -> 4404[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4263 -> 4186[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4263[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4263 -> 4405[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4263 -> 4406[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4264 -> 4187[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4264[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4264 -> 4407[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4264 -> 4408[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4265 -> 4188[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4265[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4265 -> 4409[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4265 -> 4410[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4266 -> 4189[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4266[label="yvy79000 < yvy80000",fontsize=16,color="magenta"];4266 -> 4411[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4266 -> 4412[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4267[label="yvy79000 == yvy80000",fontsize=16,color="blue",shape="box"];5798[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5798[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5798 -> 4413[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5799[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5799[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5799 -> 4414[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5800[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5800[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5800 -> 4415[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5801[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5801[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5801 -> 4416[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5802[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5802[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5802 -> 4417[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5803[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5803[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5803 -> 4418[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5804[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5804[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5804 -> 4419[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5805[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5805[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5805 -> 4420[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5806[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5806[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5806 -> 4421[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5807[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5807[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5807 -> 4422[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5808[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5808[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5808 -> 4423[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5809[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5809[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5809 -> 4424[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5810[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5810[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5810 -> 4425[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5811[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5811[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5811 -> 4426[label="",style="solid", color="blue", weight=3]; 40.99/18.80 4268 -> 4169[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4268[label="yvy79001 < yvy80001 || yvy79001 == yvy80001 && yvy79002 <= yvy80002",fontsize=16,color="magenta"];4268 -> 4427[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4268 -> 4428[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4269[label="primCmpFloat (Float yvy79000 (Pos yvy790010)) yvy8000",fontsize=16,color="burlywood",shape="box"];5812[label="yvy8000/Float yvy80000 yvy80001",fontsize=10,color="white",style="solid",shape="box"];4269 -> 5812[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5812 -> 4429[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4270[label="primCmpFloat (Float yvy79000 (Neg yvy790010)) yvy8000",fontsize=16,color="burlywood",shape="box"];5813[label="yvy8000/Float yvy80000 yvy80001",fontsize=10,color="white",style="solid",shape="box"];4270 -> 5813[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5813 -> 4430[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4271[label="EQ",fontsize=16,color="green",shape="box"];4272 -> 4431[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4272[label="primCompAux yvy79000 yvy80000 (compare yvy79001 yvy80001)",fontsize=16,color="magenta"];4272 -> 4432[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4273[label="GT",fontsize=16,color="green",shape="box"];4274[label="LT",fontsize=16,color="green",shape="box"];4275[label="EQ",fontsize=16,color="green",shape="box"];4276 -> 2141[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4276[label="primCmpInt yvy79000 yvy80000",fontsize=16,color="magenta"];4276 -> 4433[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4276 -> 4434[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4277[label="yvy80000",fontsize=16,color="green",shape="box"];4278[label="yvy79000",fontsize=16,color="green",shape="box"];4279[label="yvy80000",fontsize=16,color="green",shape="box"];4280[label="yvy79000",fontsize=16,color="green",shape="box"];4281[label="yvy80000",fontsize=16,color="green",shape="box"];4282[label="yvy79000",fontsize=16,color="green",shape="box"];4283[label="yvy80000",fontsize=16,color="green",shape="box"];4284[label="yvy79000",fontsize=16,color="green",shape="box"];4285[label="yvy80000",fontsize=16,color="green",shape="box"];4286[label="yvy79000",fontsize=16,color="green",shape="box"];4287[label="yvy80000",fontsize=16,color="green",shape="box"];4288[label="yvy79000",fontsize=16,color="green",shape="box"];4289[label="yvy80000",fontsize=16,color="green",shape="box"];4290[label="yvy79000",fontsize=16,color="green",shape="box"];4291[label="yvy80000",fontsize=16,color="green",shape="box"];4292[label="yvy79000",fontsize=16,color="green",shape="box"];4293[label="yvy80000",fontsize=16,color="green",shape="box"];4294[label="yvy79000",fontsize=16,color="green",shape="box"];4295[label="yvy80000",fontsize=16,color="green",shape="box"];4296[label="yvy79000",fontsize=16,color="green",shape="box"];4297[label="yvy80000",fontsize=16,color="green",shape="box"];4298[label="yvy79000",fontsize=16,color="green",shape="box"];4299[label="yvy80000",fontsize=16,color="green",shape="box"];4300[label="yvy79000",fontsize=16,color="green",shape="box"];4301[label="yvy80000",fontsize=16,color="green",shape="box"];4302[label="yvy79000",fontsize=16,color="green",shape="box"];4303[label="yvy80000",fontsize=16,color="green",shape="box"];4304[label="yvy79000",fontsize=16,color="green",shape="box"];2489 -> 2787[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2489[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2489 -> 2788[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2489 -> 2789[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2540[label="primMulNat (Succ yvy400100) (Succ yvy300000)",fontsize=16,color="black",shape="box"];2540 -> 2660[label="",style="solid", color="black", weight=3]; 40.99/18.80 2541[label="primMulNat (Succ yvy400100) Zero",fontsize=16,color="black",shape="box"];2541 -> 2661[label="",style="solid", color="black", weight=3]; 40.99/18.80 2542[label="primMulNat Zero (Succ yvy300000)",fontsize=16,color="black",shape="box"];2542 -> 2662[label="",style="solid", color="black", weight=3]; 40.99/18.80 2543[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2543 -> 2663[label="",style="solid", color="black", weight=3]; 40.99/18.80 2736[label="primCmpNat (Succ yvy7900) yvy800",fontsize=16,color="burlywood",shape="triangle"];5814[label="yvy800/Succ yvy8000",fontsize=10,color="white",style="solid",shape="box"];2736 -> 5814[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5814 -> 3289[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5815[label="yvy800/Zero",fontsize=10,color="white",style="solid",shape="box"];2736 -> 5815[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5815 -> 3290[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2737[label="GT",fontsize=16,color="green",shape="box"];2738[label="primCmpInt (Pos Zero) (Pos (Succ yvy8000))",fontsize=16,color="black",shape="box"];2738 -> 3291[label="",style="solid", color="black", weight=3]; 40.99/18.80 2739[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2739 -> 3292[label="",style="solid", color="black", weight=3]; 40.99/18.80 2740[label="primCmpInt (Pos Zero) (Neg (Succ yvy8000))",fontsize=16,color="black",shape="box"];2740 -> 3293[label="",style="solid", color="black", weight=3]; 40.99/18.80 2741[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2741 -> 3294[label="",style="solid", color="black", weight=3]; 40.99/18.80 2742[label="LT",fontsize=16,color="green",shape="box"];2743[label="primCmpNat yvy800 (Succ yvy7900)",fontsize=16,color="burlywood",shape="triangle"];5816[label="yvy800/Succ yvy8000",fontsize=10,color="white",style="solid",shape="box"];2743 -> 5816[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5816 -> 3295[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5817[label="yvy800/Zero",fontsize=10,color="white",style="solid",shape="box"];2743 -> 5817[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5817 -> 3296[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2744[label="primCmpInt (Neg Zero) (Pos (Succ yvy8000))",fontsize=16,color="black",shape="box"];2744 -> 3297[label="",style="solid", color="black", weight=3]; 40.99/18.80 2745[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2745 -> 3298[label="",style="solid", color="black", weight=3]; 40.99/18.80 2746[label="primCmpInt (Neg Zero) (Neg (Succ yvy8000))",fontsize=16,color="black",shape="box"];2746 -> 3299[label="",style="solid", color="black", weight=3]; 40.99/18.80 2747[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2747 -> 3300[label="",style="solid", color="black", weight=3]; 40.99/18.80 5016 -> 3976[label="",style="dashed", color="red", weight=0]; 40.99/18.80 5016[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy281 yvy278 yvy280 + FiniteMap.mkBranchRight_size yvy281 yvy278 yvy280",fontsize=16,color="magenta"];5016 -> 5017[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 5016 -> 5018[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 5015[label="FiniteMap.mkBranchUnbox yvy281 yvy278 yvy280 yvy285",fontsize=16,color="black",shape="triangle"];5015 -> 5019[label="",style="solid", color="black", weight=3]; 40.99/18.80 4305[label="Pos (primPlusNat yvy2430 yvy2420)",fontsize=16,color="green",shape="box"];4305 -> 4435[label="",style="dashed", color="green", weight=3]; 40.99/18.80 4306[label="primMinusNat yvy2430 yvy2420",fontsize=16,color="burlywood",shape="triangle"];5818[label="yvy2430/Succ yvy24300",fontsize=10,color="white",style="solid",shape="box"];4306 -> 5818[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5818 -> 4436[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5819[label="yvy2430/Zero",fontsize=10,color="white",style="solid",shape="box"];4306 -> 5819[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5819 -> 4437[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4307 -> 4306[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4307[label="primMinusNat yvy2420 yvy2430",fontsize=16,color="magenta"];4307 -> 4438[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4307 -> 4439[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4308[label="Neg (primPlusNat yvy2430 yvy2420)",fontsize=16,color="green",shape="box"];4308 -> 4440[label="",style="dashed", color="green", weight=3]; 40.99/18.80 2799[label="GT",fontsize=16,color="green",shape="box"];2800 -> 1985[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2800[label="compare yvy198 yvy197",fontsize=16,color="magenta"];2800 -> 2817[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2800 -> 2818[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2765 -> 2768[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2765[label="FiniteMap.mkBalBranch6Size_l yvy107 yvy50 yvy51 yvy54 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];2765 -> 2773[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2765 -> 2774[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2764[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 yvy195",fontsize=16,color="burlywood",shape="triangle"];5820[label="yvy195/False",fontsize=10,color="white",style="solid",shape="box"];2764 -> 5820[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5820 -> 2779[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5821[label="yvy195/True",fontsize=10,color="white",style="solid",shape="box"];2764 -> 5821[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5821 -> 2780[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2642[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy107 yvy50 yvy51 FiniteMap.EmptyFM yvy107 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2642 -> 2755[label="",style="solid", color="black", weight=3]; 40.99/18.80 2643[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2643 -> 2756[label="",style="solid", color="black", weight=3]; 40.99/18.80 2518 -> 2787[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2518[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2518 -> 2790[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2518 -> 2791[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4309 -> 3822[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4309[label="primCmpNat yvy79000 yvy80000",fontsize=16,color="magenta"];4309 -> 4441[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4309 -> 4442[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4310[label="True",fontsize=16,color="green",shape="box"];4311[label="False",fontsize=16,color="green",shape="box"];4336 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4336[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4336 -> 4443[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4336 -> 4444[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4337 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4337[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4337 -> 4445[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4337 -> 4446[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4338 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4338[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4338 -> 4447[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4338 -> 4448[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4339 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4339[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4339 -> 4449[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4339 -> 4450[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4340 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4340[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4340 -> 4451[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4340 -> 4452[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4341 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4341[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4341 -> 4453[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4341 -> 4454[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4342 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4342[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4342 -> 4455[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4342 -> 4456[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4343[label="yvy79000",fontsize=16,color="green",shape="box"];4344[label="yvy80000",fontsize=16,color="green",shape="box"];4345 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4345[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4345 -> 4457[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4345 -> 4458[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4346 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4346[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4346 -> 4459[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4346 -> 4460[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4347 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4347[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4347 -> 4461[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4347 -> 4462[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4348 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4348[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4348 -> 4463[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4348 -> 4464[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4349 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4349[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4349 -> 4465[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4349 -> 4466[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4350 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4350[label="compare yvy79000 yvy80000 == LT",fontsize=16,color="magenta"];4350 -> 4467[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4350 -> 4468[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4351 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4351[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4351 -> 4469[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4351 -> 4470[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4352 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4352[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4352 -> 4471[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4352 -> 4472[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4353 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4353[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4353 -> 4473[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4353 -> 4474[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4354 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4354[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4354 -> 4475[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4354 -> 4476[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4355 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4355[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4355 -> 4477[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4355 -> 4478[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4356 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4356[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4356 -> 4479[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4356 -> 4480[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4357 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4357[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4357 -> 4481[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4357 -> 4482[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4358 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4358[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4358 -> 4483[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4358 -> 4484[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4359 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4359[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4359 -> 4485[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4359 -> 4486[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4360 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4360[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4360 -> 4487[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4360 -> 4488[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4361 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4361[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4361 -> 4489[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4361 -> 4490[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4362 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4362[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4362 -> 4491[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4362 -> 4492[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4363 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4363[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4363 -> 4493[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4363 -> 4494[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4364 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4364[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4364 -> 4495[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4364 -> 4496[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4365 -> 3772[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4365[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4365 -> 4497[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4365 -> 4498[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4366 -> 3773[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4366[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4366 -> 4499[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4366 -> 4500[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4367 -> 3774[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4367[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4367 -> 4501[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4367 -> 4502[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4368 -> 3775[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4368[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4368 -> 4503[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4368 -> 4504[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4369 -> 3776[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4369[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4369 -> 4505[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4369 -> 4506[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4370 -> 3777[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4370[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4370 -> 4507[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4370 -> 4508[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4371 -> 3778[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4371[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4371 -> 4509[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4371 -> 4510[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4372 -> 3779[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4372[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4372 -> 4511[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4372 -> 4512[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4373 -> 3780[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4373[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4373 -> 4513[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4373 -> 4514[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4374 -> 3781[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4374[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4374 -> 4515[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4374 -> 4516[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4375 -> 3782[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4375[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4375 -> 4517[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4375 -> 4518[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4376 -> 3783[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4376[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4376 -> 4519[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4376 -> 4520[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4377 -> 3784[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4377[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4377 -> 4521[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4377 -> 4522[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4378 -> 3785[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4378[label="yvy79001 <= yvy80001",fontsize=16,color="magenta"];4378 -> 4523[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4378 -> 4524[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4379[label="yvy255",fontsize=16,color="green",shape="box"];4380[label="True",fontsize=16,color="green",shape="box"];4381 -> 1985[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4381[label="compare (yvy79000 * yvy80001) (yvy80000 * yvy79001)",fontsize=16,color="magenta"];4381 -> 4525[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4381 -> 4526[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4382 -> 4018[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4382[label="compare (yvy79000 * yvy80001) (yvy80000 * yvy79001)",fontsize=16,color="magenta"];4382 -> 4527[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4382 -> 4528[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4383[label="primCmpDouble (Double yvy79000 (Pos yvy790010)) (Double yvy80000 yvy80001)",fontsize=16,color="burlywood",shape="box"];5822[label="yvy80001/Pos yvy800010",fontsize=10,color="white",style="solid",shape="box"];4383 -> 5822[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5822 -> 4529[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5823[label="yvy80001/Neg yvy800010",fontsize=10,color="white",style="solid",shape="box"];4383 -> 5823[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5823 -> 4530[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4384[label="primCmpDouble (Double yvy79000 (Neg yvy790010)) (Double yvy80000 yvy80001)",fontsize=16,color="burlywood",shape="box"];5824[label="yvy80001/Pos yvy800010",fontsize=10,color="white",style="solid",shape="box"];4384 -> 5824[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5824 -> 4531[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5825[label="yvy80001/Neg yvy800010",fontsize=10,color="white",style="solid",shape="box"];4384 -> 5825[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5825 -> 4532[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4385[label="yvy80000",fontsize=16,color="green",shape="box"];4386[label="yvy79000",fontsize=16,color="green",shape="box"];4387[label="yvy80000",fontsize=16,color="green",shape="box"];4388[label="yvy79000",fontsize=16,color="green",shape="box"];4389[label="yvy80000",fontsize=16,color="green",shape="box"];4390[label="yvy79000",fontsize=16,color="green",shape="box"];4391[label="yvy80000",fontsize=16,color="green",shape="box"];4392[label="yvy79000",fontsize=16,color="green",shape="box"];4393[label="yvy80000",fontsize=16,color="green",shape="box"];4394[label="yvy79000",fontsize=16,color="green",shape="box"];4395[label="yvy80000",fontsize=16,color="green",shape="box"];4396[label="yvy79000",fontsize=16,color="green",shape="box"];4397[label="yvy80000",fontsize=16,color="green",shape="box"];4398[label="yvy79000",fontsize=16,color="green",shape="box"];4399[label="yvy79000",fontsize=16,color="green",shape="box"];4400[label="yvy80000",fontsize=16,color="green",shape="box"];4401[label="yvy80000",fontsize=16,color="green",shape="box"];4402[label="yvy79000",fontsize=16,color="green",shape="box"];4403[label="yvy80000",fontsize=16,color="green",shape="box"];4404[label="yvy79000",fontsize=16,color="green",shape="box"];4405[label="yvy80000",fontsize=16,color="green",shape="box"];4406[label="yvy79000",fontsize=16,color="green",shape="box"];4407[label="yvy80000",fontsize=16,color="green",shape="box"];4408[label="yvy79000",fontsize=16,color="green",shape="box"];4409[label="yvy80000",fontsize=16,color="green",shape="box"];4410[label="yvy79000",fontsize=16,color="green",shape="box"];4411[label="yvy80000",fontsize=16,color="green",shape="box"];4412[label="yvy79000",fontsize=16,color="green",shape="box"];4413 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4413[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4413 -> 4533[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4413 -> 4534[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4414 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4414[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4414 -> 4535[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4414 -> 4536[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4415 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4415[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4415 -> 4537[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4415 -> 4538[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4416 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4416[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4416 -> 4539[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4416 -> 4540[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4417 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4417[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4417 -> 4541[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4417 -> 4542[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4418 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4418[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4418 -> 4543[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4418 -> 4544[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4419 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4419[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4419 -> 4545[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4419 -> 4546[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4420 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4420[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4420 -> 4547[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4420 -> 4548[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4421 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4421[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4421 -> 4549[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4421 -> 4550[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4422 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4422[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4422 -> 4551[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4422 -> 4552[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4423 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4423[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4423 -> 4553[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4423 -> 4554[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4424 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4424[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4424 -> 4555[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4424 -> 4556[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4425 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4425[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4425 -> 4557[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4425 -> 4558[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4426 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4426[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4426 -> 4559[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4426 -> 4560[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4427[label="yvy79001 < yvy80001",fontsize=16,color="blue",shape="box"];5826[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4427 -> 5826[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5826 -> 4561[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5827[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4427 -> 5827[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5827 -> 4562[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5828[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4427 -> 5828[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5828 -> 4563[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5829[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4427 -> 5829[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5829 -> 4564[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5830[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4427 -> 5830[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5830 -> 4565[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5831[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4427 -> 5831[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5831 -> 4566[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5832[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4427 -> 5832[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5832 -> 4567[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5833[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4427 -> 5833[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5833 -> 4568[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5834[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4427 -> 5834[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5834 -> 4569[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5835[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4427 -> 5835[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5835 -> 4570[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5836[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4427 -> 5836[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5836 -> 4571[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5837[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4427 -> 5837[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5837 -> 4572[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5838[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4427 -> 5838[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5838 -> 4573[label="",style="solid", color="blue", weight=3]; 40.99/18.80 5839[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4427 -> 5839[label="",style="solid", color="blue", weight=9]; 40.99/18.80 5839 -> 4574[label="",style="solid", color="blue", weight=3]; 40.99/18.80 4428 -> 3423[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4428[label="yvy79001 == yvy80001 && yvy79002 <= yvy80002",fontsize=16,color="magenta"];4428 -> 4575[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4428 -> 4576[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4429[label="primCmpFloat (Float yvy79000 (Pos yvy790010)) (Float yvy80000 yvy80001)",fontsize=16,color="burlywood",shape="box"];5840[label="yvy80001/Pos yvy800010",fontsize=10,color="white",style="solid",shape="box"];4429 -> 5840[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5840 -> 4577[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5841[label="yvy80001/Neg yvy800010",fontsize=10,color="white",style="solid",shape="box"];4429 -> 5841[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5841 -> 4578[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4430[label="primCmpFloat (Float yvy79000 (Neg yvy790010)) (Float yvy80000 yvy80001)",fontsize=16,color="burlywood",shape="box"];5842[label="yvy80001/Pos yvy800010",fontsize=10,color="white",style="solid",shape="box"];4430 -> 5842[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5842 -> 4579[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5843[label="yvy80001/Neg yvy800010",fontsize=10,color="white",style="solid",shape="box"];4430 -> 5843[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5843 -> 4580[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4432 -> 4017[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4432[label="compare yvy79001 yvy80001",fontsize=16,color="magenta"];4432 -> 4581[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4432 -> 4582[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4431[label="primCompAux yvy79000 yvy80000 yvy256",fontsize=16,color="black",shape="triangle"];4431 -> 4583[label="",style="solid", color="black", weight=3]; 40.99/18.80 4433[label="yvy80000",fontsize=16,color="green",shape="box"];4434[label="yvy79000",fontsize=16,color="green",shape="box"];2788 -> 2787[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2788[label="primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2788 -> 2801[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2788 -> 2802[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2789[label="yvy6200",fontsize=16,color="green",shape="box"];2787[label="primPlusNat yvy201 (Succ yvy300000)",fontsize=16,color="burlywood",shape="triangle"];5844[label="yvy201/Succ yvy2010",fontsize=10,color="white",style="solid",shape="box"];2787 -> 5844[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5844 -> 2803[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5845[label="yvy201/Zero",fontsize=10,color="white",style="solid",shape="box"];2787 -> 5845[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5845 -> 2804[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 2660 -> 2787[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2660[label="primPlusNat (primMulNat yvy400100 (Succ yvy300000)) (Succ yvy300000)",fontsize=16,color="magenta"];2660 -> 2794[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2661[label="Zero",fontsize=16,color="green",shape="box"];2662[label="Zero",fontsize=16,color="green",shape="box"];2663[label="Zero",fontsize=16,color="green",shape="box"];3289[label="primCmpNat (Succ yvy7900) (Succ yvy8000)",fontsize=16,color="black",shape="box"];3289 -> 3822[label="",style="solid", color="black", weight=3]; 40.99/18.80 3290[label="primCmpNat (Succ yvy7900) Zero",fontsize=16,color="black",shape="box"];3290 -> 3823[label="",style="solid", color="black", weight=3]; 40.99/18.80 3291 -> 2743[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3291[label="primCmpNat Zero (Succ yvy8000)",fontsize=16,color="magenta"];3291 -> 3824[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3291 -> 3825[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3292[label="EQ",fontsize=16,color="green",shape="box"];3293[label="GT",fontsize=16,color="green",shape="box"];3294[label="EQ",fontsize=16,color="green",shape="box"];3295[label="primCmpNat (Succ yvy8000) (Succ yvy7900)",fontsize=16,color="black",shape="box"];3295 -> 3826[label="",style="solid", color="black", weight=3]; 40.99/18.80 3296[label="primCmpNat Zero (Succ yvy7900)",fontsize=16,color="black",shape="box"];3296 -> 3827[label="",style="solid", color="black", weight=3]; 40.99/18.80 3297[label="LT",fontsize=16,color="green",shape="box"];3298[label="EQ",fontsize=16,color="green",shape="box"];3299 -> 2736[label="",style="dashed", color="red", weight=0]; 40.99/18.80 3299[label="primCmpNat (Succ yvy8000) Zero",fontsize=16,color="magenta"];3299 -> 3828[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3299 -> 3829[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 3300[label="EQ",fontsize=16,color="green",shape="box"];5017[label="FiniteMap.mkBranchRight_size yvy281 yvy278 yvy280",fontsize=16,color="black",shape="box"];5017 -> 5022[label="",style="solid", color="black", weight=3]; 40.99/18.80 5018 -> 3976[label="",style="dashed", color="red", weight=0]; 40.99/18.80 5018[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy281 yvy278 yvy280",fontsize=16,color="magenta"];5018 -> 5023[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 5018 -> 5024[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 5019[label="yvy285",fontsize=16,color="green",shape="box"];4435 -> 3288[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4435[label="primPlusNat yvy2430 yvy2420",fontsize=16,color="magenta"];4435 -> 4607[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4435 -> 4608[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4436[label="primMinusNat (Succ yvy24300) yvy2420",fontsize=16,color="burlywood",shape="box"];5846[label="yvy2420/Succ yvy24200",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5846[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5846 -> 4609[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5847[label="yvy2420/Zero",fontsize=10,color="white",style="solid",shape="box"];4436 -> 5847[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5847 -> 4610[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4437[label="primMinusNat Zero yvy2420",fontsize=16,color="burlywood",shape="box"];5848[label="yvy2420/Succ yvy24200",fontsize=10,color="white",style="solid",shape="box"];4437 -> 5848[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5848 -> 4611[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5849[label="yvy2420/Zero",fontsize=10,color="white",style="solid",shape="box"];4437 -> 5849[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5849 -> 4612[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4438[label="yvy2430",fontsize=16,color="green",shape="box"];4439[label="yvy2420",fontsize=16,color="green",shape="box"];4440 -> 3288[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4440[label="primPlusNat yvy2430 yvy2420",fontsize=16,color="magenta"];4440 -> 4613[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4440 -> 4614[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2817[label="yvy197",fontsize=16,color="green",shape="box"];2818[label="yvy198",fontsize=16,color="green",shape="box"];2774 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2774[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];2774 -> 2782[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2774 -> 2783[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2779[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 False",fontsize=16,color="black",shape="box"];2779 -> 2805[label="",style="solid", color="black", weight=3]; 40.99/18.80 2780[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 True",fontsize=16,color="black",shape="box"];2780 -> 2806[label="",style="solid", color="black", weight=3]; 40.99/18.80 2755[label="error []",fontsize=16,color="red",shape="box"];2756[label="FiniteMap.mkBalBranch6MkBalBranch02 yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2756 -> 2784[label="",style="solid", color="black", weight=3]; 40.99/18.80 2790 -> 2787[label="",style="dashed", color="red", weight=0]; 40.99/18.80 2790[label="primPlusNat (primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2790 -> 2807[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2790 -> 2808[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 2791[label="yvy6200",fontsize=16,color="green",shape="box"];4441[label="yvy79000",fontsize=16,color="green",shape="box"];4442[label="yvy80000",fontsize=16,color="green",shape="box"];3822[label="primCmpNat yvy7900 yvy8000",fontsize=16,color="burlywood",shape="triangle"];5850[label="yvy7900/Succ yvy79000",fontsize=10,color="white",style="solid",shape="box"];3822 -> 5850[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5850 -> 4076[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 5851[label="yvy7900/Zero",fontsize=10,color="white",style="solid",shape="box"];3822 -> 5851[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5851 -> 4077[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4443[label="LT",fontsize=16,color="green",shape="box"];4444[label="compare yvy79000 yvy80000",fontsize=16,color="black",shape="triangle"];4444 -> 4615[label="",style="solid", color="black", weight=3]; 40.99/18.80 4445[label="LT",fontsize=16,color="green",shape="box"];4446 -> 4011[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4446[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4446 -> 4616[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4446 -> 4617[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4447[label="LT",fontsize=16,color="green",shape="box"];4448[label="compare yvy79000 yvy80000",fontsize=16,color="black",shape="triangle"];4448 -> 4618[label="",style="solid", color="black", weight=3]; 40.99/18.80 4449[label="LT",fontsize=16,color="green",shape="box"];4450 -> 4012[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4450[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4450 -> 4619[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4450 -> 4620[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4451[label="LT",fontsize=16,color="green",shape="box"];4452 -> 4013[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4452[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4452 -> 4621[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4452 -> 4622[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4453[label="LT",fontsize=16,color="green",shape="box"];4454[label="compare yvy79000 yvy80000",fontsize=16,color="black",shape="triangle"];4454 -> 4623[label="",style="solid", color="black", weight=3]; 40.99/18.80 4455[label="LT",fontsize=16,color="green",shape="box"];4456[label="compare yvy79000 yvy80000",fontsize=16,color="black",shape="triangle"];4456 -> 4624[label="",style="solid", color="black", weight=3]; 40.99/18.80 4457[label="LT",fontsize=16,color="green",shape="box"];4458 -> 4015[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4458[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4458 -> 4625[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4458 -> 4626[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4459[label="LT",fontsize=16,color="green",shape="box"];4460 -> 4016[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4460[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4460 -> 4627[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4460 -> 4628[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4461[label="LT",fontsize=16,color="green",shape="box"];4462[label="compare yvy79000 yvy80000",fontsize=16,color="black",shape="triangle"];4462 -> 4629[label="",style="solid", color="black", weight=3]; 40.99/18.80 4463[label="LT",fontsize=16,color="green",shape="box"];4464 -> 4017[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4464[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4464 -> 4630[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4464 -> 4631[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4465[label="LT",fontsize=16,color="green",shape="box"];4466 -> 4018[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4466[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4466 -> 4632[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4466 -> 4633[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4467[label="LT",fontsize=16,color="green",shape="box"];4468[label="compare yvy79000 yvy80000",fontsize=16,color="black",shape="triangle"];4468 -> 4634[label="",style="solid", color="black", weight=3]; 40.99/18.80 4469[label="yvy80000",fontsize=16,color="green",shape="box"];4470[label="yvy79000",fontsize=16,color="green",shape="box"];4471[label="yvy80000",fontsize=16,color="green",shape="box"];4472[label="yvy79000",fontsize=16,color="green",shape="box"];4473[label="yvy80000",fontsize=16,color="green",shape="box"];4474[label="yvy79000",fontsize=16,color="green",shape="box"];4475[label="yvy80000",fontsize=16,color="green",shape="box"];4476[label="yvy79000",fontsize=16,color="green",shape="box"];4477[label="yvy80000",fontsize=16,color="green",shape="box"];4478[label="yvy79000",fontsize=16,color="green",shape="box"];4479[label="yvy80000",fontsize=16,color="green",shape="box"];4480[label="yvy79000",fontsize=16,color="green",shape="box"];4481[label="yvy80000",fontsize=16,color="green",shape="box"];4482[label="yvy79000",fontsize=16,color="green",shape="box"];4483[label="yvy80000",fontsize=16,color="green",shape="box"];4484[label="yvy79000",fontsize=16,color="green",shape="box"];4485[label="yvy80000",fontsize=16,color="green",shape="box"];4486[label="yvy79000",fontsize=16,color="green",shape="box"];4487[label="yvy80000",fontsize=16,color="green",shape="box"];4488[label="yvy79000",fontsize=16,color="green",shape="box"];4489[label="yvy80000",fontsize=16,color="green",shape="box"];4490[label="yvy79000",fontsize=16,color="green",shape="box"];4491[label="yvy80000",fontsize=16,color="green",shape="box"];4492[label="yvy79000",fontsize=16,color="green",shape="box"];4493[label="yvy80000",fontsize=16,color="green",shape="box"];4494[label="yvy79000",fontsize=16,color="green",shape="box"];4495[label="yvy80000",fontsize=16,color="green",shape="box"];4496[label="yvy79000",fontsize=16,color="green",shape="box"];4497[label="yvy80001",fontsize=16,color="green",shape="box"];4498[label="yvy79001",fontsize=16,color="green",shape="box"];4499[label="yvy80001",fontsize=16,color="green",shape="box"];4500[label="yvy79001",fontsize=16,color="green",shape="box"];4501[label="yvy80001",fontsize=16,color="green",shape="box"];4502[label="yvy79001",fontsize=16,color="green",shape="box"];4503[label="yvy80001",fontsize=16,color="green",shape="box"];4504[label="yvy79001",fontsize=16,color="green",shape="box"];4505[label="yvy80001",fontsize=16,color="green",shape="box"];4506[label="yvy79001",fontsize=16,color="green",shape="box"];4507[label="yvy80001",fontsize=16,color="green",shape="box"];4508[label="yvy79001",fontsize=16,color="green",shape="box"];4509[label="yvy80001",fontsize=16,color="green",shape="box"];4510[label="yvy79001",fontsize=16,color="green",shape="box"];4511[label="yvy80001",fontsize=16,color="green",shape="box"];4512[label="yvy79001",fontsize=16,color="green",shape="box"];4513[label="yvy80001",fontsize=16,color="green",shape="box"];4514[label="yvy79001",fontsize=16,color="green",shape="box"];4515[label="yvy80001",fontsize=16,color="green",shape="box"];4516[label="yvy79001",fontsize=16,color="green",shape="box"];4517[label="yvy80001",fontsize=16,color="green",shape="box"];4518[label="yvy79001",fontsize=16,color="green",shape="box"];4519[label="yvy80001",fontsize=16,color="green",shape="box"];4520[label="yvy79001",fontsize=16,color="green",shape="box"];4521[label="yvy80001",fontsize=16,color="green",shape="box"];4522[label="yvy79001",fontsize=16,color="green",shape="box"];4523[label="yvy80001",fontsize=16,color="green",shape="box"];4524[label="yvy79001",fontsize=16,color="green",shape="box"];4525 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4525[label="yvy80000 * yvy79001",fontsize=16,color="magenta"];4525 -> 4635[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4525 -> 4636[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4526 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4526[label="yvy79000 * yvy80001",fontsize=16,color="magenta"];4526 -> 4637[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4526 -> 4638[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4527[label="yvy80000 * yvy79001",fontsize=16,color="burlywood",shape="triangle"];5852[label="yvy80000/Integer yvy800000",fontsize=10,color="white",style="solid",shape="box"];4527 -> 5852[label="",style="solid", color="burlywood", weight=9]; 40.99/18.80 5852 -> 4639[label="",style="solid", color="burlywood", weight=3]; 40.99/18.80 4528 -> 4527[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4528[label="yvy79000 * yvy80001",fontsize=16,color="magenta"];4528 -> 4640[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4528 -> 4641[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4529[label="primCmpDouble (Double yvy79000 (Pos yvy790010)) (Double yvy80000 (Pos yvy800010))",fontsize=16,color="black",shape="box"];4529 -> 4642[label="",style="solid", color="black", weight=3]; 40.99/18.80 4530[label="primCmpDouble (Double yvy79000 (Pos yvy790010)) (Double yvy80000 (Neg yvy800010))",fontsize=16,color="black",shape="box"];4530 -> 4643[label="",style="solid", color="black", weight=3]; 40.99/18.80 4531[label="primCmpDouble (Double yvy79000 (Neg yvy790010)) (Double yvy80000 (Pos yvy800010))",fontsize=16,color="black",shape="box"];4531 -> 4644[label="",style="solid", color="black", weight=3]; 40.99/18.80 4532[label="primCmpDouble (Double yvy79000 (Neg yvy790010)) (Double yvy80000 (Neg yvy800010))",fontsize=16,color="black",shape="box"];4532 -> 4645[label="",style="solid", color="black", weight=3]; 40.99/18.80 4533[label="yvy80000",fontsize=16,color="green",shape="box"];4534[label="yvy79000",fontsize=16,color="green",shape="box"];4535[label="yvy80000",fontsize=16,color="green",shape="box"];4536[label="yvy79000",fontsize=16,color="green",shape="box"];4537[label="yvy80000",fontsize=16,color="green",shape="box"];4538[label="yvy79000",fontsize=16,color="green",shape="box"];4539[label="yvy80000",fontsize=16,color="green",shape="box"];4540[label="yvy79000",fontsize=16,color="green",shape="box"];4541[label="yvy80000",fontsize=16,color="green",shape="box"];4542[label="yvy79000",fontsize=16,color="green",shape="box"];4543[label="yvy80000",fontsize=16,color="green",shape="box"];4544[label="yvy79000",fontsize=16,color="green",shape="box"];4545[label="yvy80000",fontsize=16,color="green",shape="box"];4546[label="yvy79000",fontsize=16,color="green",shape="box"];4547[label="yvy80000",fontsize=16,color="green",shape="box"];4548[label="yvy79000",fontsize=16,color="green",shape="box"];4549[label="yvy80000",fontsize=16,color="green",shape="box"];4550[label="yvy79000",fontsize=16,color="green",shape="box"];4551[label="yvy80000",fontsize=16,color="green",shape="box"];4552[label="yvy79000",fontsize=16,color="green",shape="box"];4553[label="yvy80000",fontsize=16,color="green",shape="box"];4554[label="yvy79000",fontsize=16,color="green",shape="box"];4555[label="yvy80000",fontsize=16,color="green",shape="box"];4556[label="yvy79000",fontsize=16,color="green",shape="box"];4557[label="yvy80000",fontsize=16,color="green",shape="box"];4558[label="yvy79000",fontsize=16,color="green",shape="box"];4559[label="yvy80000",fontsize=16,color="green",shape="box"];4560[label="yvy79000",fontsize=16,color="green",shape="box"];4561 -> 4176[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4561[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4561 -> 4646[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4561 -> 4647[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4562 -> 4177[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4562[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4562 -> 4648[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4562 -> 4649[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4563 -> 4178[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4563[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4563 -> 4650[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4563 -> 4651[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4564 -> 4179[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4564[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4564 -> 4652[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4564 -> 4653[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4565 -> 4180[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4565[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4565 -> 4654[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4565 -> 4655[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4566 -> 4181[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4566[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4566 -> 4656[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4566 -> 4657[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4567 -> 4182[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4567[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4567 -> 4658[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4567 -> 4659[label="",style="dashed", color="magenta", weight=3]; 40.99/18.80 4568 -> 3960[label="",style="dashed", color="red", weight=0]; 40.99/18.80 4568[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4568 -> 4660[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4568 -> 4661[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4569 -> 4184[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4569[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4569 -> 4662[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4569 -> 4663[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4570 -> 4185[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4570[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4570 -> 4664[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4570 -> 4665[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4571 -> 4186[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4571[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4571 -> 4666[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4571 -> 4667[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4572 -> 4187[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4572[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4572 -> 4668[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4572 -> 4669[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4573 -> 4188[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4573[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4573 -> 4670[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4573 -> 4671[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4574 -> 4189[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4574[label="yvy79001 < yvy80001",fontsize=16,color="magenta"];4574 -> 4672[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4574 -> 4673[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4575[label="yvy79001 == yvy80001",fontsize=16,color="blue",shape="box"];5853[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4575 -> 5853[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5853 -> 4674[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5854[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4575 -> 5854[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5854 -> 4675[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5855[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4575 -> 5855[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5855 -> 4676[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5856[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4575 -> 5856[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5856 -> 4677[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5857[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4575 -> 5857[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5857 -> 4678[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5858[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4575 -> 5858[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5858 -> 4679[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5859[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4575 -> 5859[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5859 -> 4680[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5860[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4575 -> 5860[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5860 -> 4681[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5861[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4575 -> 5861[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5861 -> 4682[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5862[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4575 -> 5862[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5862 -> 4683[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5863[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4575 -> 5863[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5863 -> 4684[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5864[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4575 -> 5864[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5864 -> 4685[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5865[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4575 -> 5865[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5865 -> 4686[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5866[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4575 -> 5866[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5866 -> 4687[label="",style="solid", color="blue", weight=3]; 40.99/18.81 4576[label="yvy79002 <= yvy80002",fontsize=16,color="blue",shape="box"];5867[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5867[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5867 -> 4688[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5868[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5868[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5868 -> 4689[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5869[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5869[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5869 -> 4690[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5870[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5870[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5870 -> 4691[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5871[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5871[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5871 -> 4692[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5872[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5872[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5872 -> 4693[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5873[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5873[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5873 -> 4694[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5874[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5874[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5874 -> 4695[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5875[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5875[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5875 -> 4696[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5876[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5876[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5876 -> 4697[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5877[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5877[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5877 -> 4698[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5878[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5878[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5878 -> 4699[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5879[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5879[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5879 -> 4700[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5880[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4576 -> 5880[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5880 -> 4701[label="",style="solid", color="blue", weight=3]; 40.99/18.81 4577[label="primCmpFloat (Float yvy79000 (Pos yvy790010)) (Float yvy80000 (Pos yvy800010))",fontsize=16,color="black",shape="box"];4577 -> 4702[label="",style="solid", color="black", weight=3]; 40.99/18.81 4578[label="primCmpFloat (Float yvy79000 (Pos yvy790010)) (Float yvy80000 (Neg yvy800010))",fontsize=16,color="black",shape="box"];4578 -> 4703[label="",style="solid", color="black", weight=3]; 40.99/18.81 4579[label="primCmpFloat (Float yvy79000 (Neg yvy790010)) (Float yvy80000 (Pos yvy800010))",fontsize=16,color="black",shape="box"];4579 -> 4704[label="",style="solid", color="black", weight=3]; 40.99/18.81 4580[label="primCmpFloat (Float yvy79000 (Neg yvy790010)) (Float yvy80000 (Neg yvy800010))",fontsize=16,color="black",shape="box"];4580 -> 4705[label="",style="solid", color="black", weight=3]; 40.99/18.81 4581[label="yvy80001",fontsize=16,color="green",shape="box"];4582[label="yvy79001",fontsize=16,color="green",shape="box"];4583 -> 4706[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4583[label="primCompAux0 yvy256 (compare yvy79000 yvy80000)",fontsize=16,color="magenta"];4583 -> 4707[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4583 -> 4708[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 2801 -> 2787[label="",style="dashed", color="red", weight=0]; 40.99/18.81 2801[label="primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2801 -> 2974[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 2801 -> 2975[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 2802[label="yvy6200",fontsize=16,color="green",shape="box"];2803[label="primPlusNat (Succ yvy2010) (Succ yvy300000)",fontsize=16,color="black",shape="box"];2803 -> 2976[label="",style="solid", color="black", weight=3]; 40.99/18.81 2804[label="primPlusNat Zero (Succ yvy300000)",fontsize=16,color="black",shape="box"];2804 -> 2977[label="",style="solid", color="black", weight=3]; 40.99/18.81 2794 -> 2196[label="",style="dashed", color="red", weight=0]; 40.99/18.81 2794[label="primMulNat yvy400100 (Succ yvy300000)",fontsize=16,color="magenta"];2794 -> 3311[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 2794 -> 3312[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 3823[label="GT",fontsize=16,color="green",shape="box"];3824[label="Zero",fontsize=16,color="green",shape="box"];3825[label="yvy8000",fontsize=16,color="green",shape="box"];3826 -> 3822[label="",style="dashed", color="red", weight=0]; 40.99/18.81 3826[label="primCmpNat yvy8000 yvy7900",fontsize=16,color="magenta"];3826 -> 4078[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 3826 -> 4079[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 3827[label="LT",fontsize=16,color="green",shape="box"];3828[label="yvy8000",fontsize=16,color="green",shape="box"];3829[label="Zero",fontsize=16,color="green",shape="box"];5022[label="FiniteMap.sizeFM yvy281",fontsize=16,color="burlywood",shape="triangle"];5881[label="yvy281/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];5022 -> 5881[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5881 -> 5027[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5882[label="yvy281/FiniteMap.Branch yvy2810 yvy2811 yvy2812 yvy2813 yvy2814",fontsize=10,color="white",style="solid",shape="box"];5022 -> 5882[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5882 -> 5028[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5023[label="FiniteMap.mkBranchLeft_size yvy281 yvy278 yvy280",fontsize=16,color="black",shape="box"];5023 -> 5029[label="",style="solid", color="black", weight=3]; 40.99/18.81 5024[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];4607[label="yvy2430",fontsize=16,color="green",shape="box"];4608[label="yvy2420",fontsize=16,color="green",shape="box"];3288[label="primPlusNat yvy2010 yvy300000",fontsize=16,color="burlywood",shape="triangle"];5883[label="yvy2010/Succ yvy20100",fontsize=10,color="white",style="solid",shape="box"];3288 -> 5883[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5883 -> 3820[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5884[label="yvy2010/Zero",fontsize=10,color="white",style="solid",shape="box"];3288 -> 5884[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5884 -> 3821[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 4609[label="primMinusNat (Succ yvy24300) (Succ yvy24200)",fontsize=16,color="black",shape="box"];4609 -> 4709[label="",style="solid", color="black", weight=3]; 40.99/18.81 4610[label="primMinusNat (Succ yvy24300) Zero",fontsize=16,color="black",shape="box"];4610 -> 4710[label="",style="solid", color="black", weight=3]; 40.99/18.81 4611[label="primMinusNat Zero (Succ yvy24200)",fontsize=16,color="black",shape="box"];4611 -> 4711[label="",style="solid", color="black", weight=3]; 40.99/18.81 4612[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];4612 -> 4712[label="",style="solid", color="black", weight=3]; 40.99/18.81 4613[label="yvy2430",fontsize=16,color="green",shape="box"];4614[label="yvy2420",fontsize=16,color="green",shape="box"];2782 -> 1920[label="",style="dashed", color="red", weight=0]; 40.99/18.81 2782[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2783 -> 2769[label="",style="dashed", color="red", weight=0]; 40.99/18.81 2783[label="FiniteMap.mkBalBranch6Size_r yvy107 yvy50 yvy51 yvy54",fontsize=16,color="magenta"];2805[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 otherwise",fontsize=16,color="black",shape="box"];2805 -> 3238[label="",style="solid", color="black", weight=3]; 40.99/18.81 2806[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy107 yvy50 yvy51 yvy54 yvy107 yvy54 yvy107",fontsize=16,color="burlywood",shape="box"];5885[label="yvy107/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2806 -> 5885[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5885 -> 3239[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5886[label="yvy107/FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074",fontsize=10,color="white",style="solid",shape="box"];2806 -> 5886[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5886 -> 3240[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 2784 -> 3834[label="",style="dashed", color="red", weight=0]; 40.99/18.81 2784[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (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"];2784 -> 3835[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 2807 -> 2787[label="",style="dashed", color="red", weight=0]; 40.99/18.81 2807[label="primPlusNat (primPlusNat (Succ yvy6200) (Succ yvy6200)) (Succ yvy6200)",fontsize=16,color="magenta"];2807 -> 3282[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 2807 -> 3283[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 2808[label="yvy6200",fontsize=16,color="green",shape="box"];4076[label="primCmpNat (Succ yvy79000) yvy8000",fontsize=16,color="burlywood",shape="box"];5887[label="yvy8000/Succ yvy80000",fontsize=10,color="white",style="solid",shape="box"];4076 -> 5887[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5887 -> 4321[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5888[label="yvy8000/Zero",fontsize=10,color="white",style="solid",shape="box"];4076 -> 5888[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5888 -> 4322[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 4077[label="primCmpNat Zero yvy8000",fontsize=16,color="burlywood",shape="box"];5889[label="yvy8000/Succ yvy80000",fontsize=10,color="white",style="solid",shape="box"];4077 -> 5889[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5889 -> 4323[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5890[label="yvy8000/Zero",fontsize=10,color="white",style="solid",shape="box"];4077 -> 5890[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5890 -> 4324[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 4615[label="compare3 yvy79000 yvy80000",fontsize=16,color="black",shape="box"];4615 -> 4713[label="",style="solid", color="black", weight=3]; 40.99/18.81 4616[label="yvy80000",fontsize=16,color="green",shape="box"];4617[label="yvy79000",fontsize=16,color="green",shape="box"];4618[label="compare3 yvy79000 yvy80000",fontsize=16,color="black",shape="box"];4618 -> 4714[label="",style="solid", color="black", weight=3]; 40.99/18.81 4619[label="yvy80000",fontsize=16,color="green",shape="box"];4620[label="yvy79000",fontsize=16,color="green",shape="box"];4621[label="yvy80000",fontsize=16,color="green",shape="box"];4622[label="yvy79000",fontsize=16,color="green",shape="box"];4623[label="compare3 yvy79000 yvy80000",fontsize=16,color="black",shape="box"];4623 -> 4715[label="",style="solid", color="black", weight=3]; 40.99/18.81 4624[label="compare3 yvy79000 yvy80000",fontsize=16,color="black",shape="box"];4624 -> 4716[label="",style="solid", color="black", weight=3]; 40.99/18.81 4625[label="yvy80000",fontsize=16,color="green",shape="box"];4626[label="yvy79000",fontsize=16,color="green",shape="box"];4627[label="yvy80000",fontsize=16,color="green",shape="box"];4628[label="yvy79000",fontsize=16,color="green",shape="box"];4629[label="compare3 yvy79000 yvy80000",fontsize=16,color="black",shape="box"];4629 -> 4717[label="",style="solid", color="black", weight=3]; 40.99/18.81 4630[label="yvy80000",fontsize=16,color="green",shape="box"];4631[label="yvy79000",fontsize=16,color="green",shape="box"];4632[label="yvy80000",fontsize=16,color="green",shape="box"];4633[label="yvy79000",fontsize=16,color="green",shape="box"];4634[label="compare3 yvy79000 yvy80000",fontsize=16,color="black",shape="box"];4634 -> 4718[label="",style="solid", color="black", weight=3]; 40.99/18.81 4635[label="yvy80000",fontsize=16,color="green",shape="box"];4636[label="yvy79001",fontsize=16,color="green",shape="box"];4637[label="yvy79000",fontsize=16,color="green",shape="box"];4638[label="yvy80001",fontsize=16,color="green",shape="box"];4639[label="Integer yvy800000 * yvy79001",fontsize=16,color="burlywood",shape="box"];5891[label="yvy79001/Integer yvy790010",fontsize=10,color="white",style="solid",shape="box"];4639 -> 5891[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5891 -> 4719[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 4640[label="yvy80001",fontsize=16,color="green",shape="box"];4641[label="yvy79000",fontsize=16,color="green",shape="box"];4642 -> 1985[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4642[label="compare (yvy79000 * Pos yvy800010) (Pos yvy790010 * yvy80000)",fontsize=16,color="magenta"];4642 -> 4720[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4642 -> 4721[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4643 -> 1985[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4643[label="compare (yvy79000 * Pos yvy800010) (Neg yvy790010 * yvy80000)",fontsize=16,color="magenta"];4643 -> 4722[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4643 -> 4723[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4644 -> 1985[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4644[label="compare (yvy79000 * Neg yvy800010) (Pos yvy790010 * yvy80000)",fontsize=16,color="magenta"];4644 -> 4724[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4644 -> 4725[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4645 -> 1985[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4645[label="compare (yvy79000 * Neg yvy800010) (Neg yvy790010 * yvy80000)",fontsize=16,color="magenta"];4645 -> 4726[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4645 -> 4727[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4646[label="yvy80001",fontsize=16,color="green",shape="box"];4647[label="yvy79001",fontsize=16,color="green",shape="box"];4648[label="yvy80001",fontsize=16,color="green",shape="box"];4649[label="yvy79001",fontsize=16,color="green",shape="box"];4650[label="yvy80001",fontsize=16,color="green",shape="box"];4651[label="yvy79001",fontsize=16,color="green",shape="box"];4652[label="yvy80001",fontsize=16,color="green",shape="box"];4653[label="yvy79001",fontsize=16,color="green",shape="box"];4654[label="yvy80001",fontsize=16,color="green",shape="box"];4655[label="yvy79001",fontsize=16,color="green",shape="box"];4656[label="yvy80001",fontsize=16,color="green",shape="box"];4657[label="yvy79001",fontsize=16,color="green",shape="box"];4658[label="yvy80001",fontsize=16,color="green",shape="box"];4659[label="yvy79001",fontsize=16,color="green",shape="box"];4660[label="yvy79001",fontsize=16,color="green",shape="box"];4661[label="yvy80001",fontsize=16,color="green",shape="box"];4662[label="yvy80001",fontsize=16,color="green",shape="box"];4663[label="yvy79001",fontsize=16,color="green",shape="box"];4664[label="yvy80001",fontsize=16,color="green",shape="box"];4665[label="yvy79001",fontsize=16,color="green",shape="box"];4666[label="yvy80001",fontsize=16,color="green",shape="box"];4667[label="yvy79001",fontsize=16,color="green",shape="box"];4668[label="yvy80001",fontsize=16,color="green",shape="box"];4669[label="yvy79001",fontsize=16,color="green",shape="box"];4670[label="yvy80001",fontsize=16,color="green",shape="box"];4671[label="yvy79001",fontsize=16,color="green",shape="box"];4672[label="yvy80001",fontsize=16,color="green",shape="box"];4673[label="yvy79001",fontsize=16,color="green",shape="box"];4674 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4674[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4674 -> 4728[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4674 -> 4729[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4675 -> 2887[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4675[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4675 -> 4730[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4675 -> 4731[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4676 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4676[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4676 -> 4732[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4676 -> 4733[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4677 -> 2896[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4677[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4677 -> 4734[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4677 -> 4735[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4678 -> 2890[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4678[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4678 -> 4736[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4678 -> 4737[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4679 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4679[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4679 -> 4738[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4679 -> 4739[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4680 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4680[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4680 -> 4740[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4680 -> 4741[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4681 -> 2885[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4681[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4681 -> 4742[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4681 -> 4743[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4682 -> 2894[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4682[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4682 -> 4744[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4682 -> 4745[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4683 -> 2891[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4683[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4683 -> 4746[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4683 -> 4747[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4684 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4684[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4684 -> 4748[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4684 -> 4749[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4685 -> 2892[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4685[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4685 -> 4750[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4685 -> 4751[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4686 -> 2886[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4686[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4686 -> 4752[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4686 -> 4753[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4687 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4687[label="yvy79001 == yvy80001",fontsize=16,color="magenta"];4687 -> 4754[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4687 -> 4755[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4688 -> 3772[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4688[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4688 -> 4756[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4688 -> 4757[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4689 -> 3773[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4689[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4689 -> 4758[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4689 -> 4759[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4690 -> 3774[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4690[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4690 -> 4760[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4690 -> 4761[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4691 -> 3775[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4691[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4691 -> 4762[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4691 -> 4763[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4692 -> 3776[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4692[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4692 -> 4764[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4692 -> 4765[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4693 -> 3777[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4693[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4693 -> 4766[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4693 -> 4767[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4694 -> 3778[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4694[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4694 -> 4768[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4694 -> 4769[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4695 -> 3779[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4695[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4695 -> 4770[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4695 -> 4771[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4696 -> 3780[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4696[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4696 -> 4772[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4696 -> 4773[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4697 -> 3781[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4697[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4697 -> 4774[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4697 -> 4775[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4698 -> 3782[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4698[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4698 -> 4776[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4698 -> 4777[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4699 -> 3783[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4699[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4699 -> 4778[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4699 -> 4779[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4700 -> 3784[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4700[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4700 -> 4780[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4700 -> 4781[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4701 -> 3785[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4701[label="yvy79002 <= yvy80002",fontsize=16,color="magenta"];4701 -> 4782[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4701 -> 4783[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4702 -> 1985[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4702[label="compare (yvy79000 * Pos yvy800010) (Pos yvy790010 * yvy80000)",fontsize=16,color="magenta"];4702 -> 4784[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4702 -> 4785[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4703 -> 1985[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4703[label="compare (yvy79000 * Pos yvy800010) (Neg yvy790010 * yvy80000)",fontsize=16,color="magenta"];4703 -> 4786[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4703 -> 4787[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4704 -> 1985[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4704[label="compare (yvy79000 * Neg yvy800010) (Pos yvy790010 * yvy80000)",fontsize=16,color="magenta"];4704 -> 4788[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4704 -> 4789[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4705 -> 1985[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4705[label="compare (yvy79000 * Neg yvy800010) (Neg yvy790010 * yvy80000)",fontsize=16,color="magenta"];4705 -> 4790[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4705 -> 4791[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4707[label="yvy256",fontsize=16,color="green",shape="box"];4708[label="compare yvy79000 yvy80000",fontsize=16,color="blue",shape="box"];5892[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4708 -> 5892[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5892 -> 4792[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5893[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4708 -> 5893[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5893 -> 4793[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5894[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4708 -> 5894[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5894 -> 4794[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5895[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4708 -> 5895[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5895 -> 4795[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5896[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4708 -> 5896[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5896 -> 4796[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5897[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4708 -> 5897[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5897 -> 4797[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5898[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4708 -> 5898[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5898 -> 4798[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5899[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4708 -> 5899[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5899 -> 4799[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5900[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4708 -> 5900[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5900 -> 4800[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5901[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4708 -> 5901[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5901 -> 4801[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5902[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4708 -> 5902[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5902 -> 4802[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5903[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4708 -> 5903[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5903 -> 4803[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5904[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4708 -> 5904[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5904 -> 4804[label="",style="solid", color="blue", weight=3]; 40.99/18.81 5905[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4708 -> 5905[label="",style="solid", color="blue", weight=9]; 40.99/18.81 5905 -> 4805[label="",style="solid", color="blue", weight=3]; 40.99/18.81 4706[label="primCompAux0 yvy260 yvy261",fontsize=16,color="burlywood",shape="triangle"];5906[label="yvy261/LT",fontsize=10,color="white",style="solid",shape="box"];4706 -> 5906[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5906 -> 4806[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5907[label="yvy261/EQ",fontsize=10,color="white",style="solid",shape="box"];4706 -> 5907[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5907 -> 4807[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5908[label="yvy261/GT",fontsize=10,color="white",style="solid",shape="box"];4706 -> 5908[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5908 -> 4808[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 2974 -> 2787[label="",style="dashed", color="red", weight=0]; 40.99/18.81 2974[label="primPlusNat (Succ yvy6200) (Succ yvy6200)",fontsize=16,color="magenta"];2974 -> 3286[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 2974 -> 3287[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 2975[label="yvy6200",fontsize=16,color="green",shape="box"];2976[label="Succ (Succ (primPlusNat yvy2010 yvy300000))",fontsize=16,color="green",shape="box"];2976 -> 3288[label="",style="dashed", color="green", weight=3]; 40.99/18.81 2977[label="Succ yvy300000",fontsize=16,color="green",shape="box"];3311[label="yvy400100",fontsize=16,color="green",shape="box"];3312[label="Succ yvy300000",fontsize=16,color="green",shape="box"];4078[label="yvy8000",fontsize=16,color="green",shape="box"];4079[label="yvy7900",fontsize=16,color="green",shape="box"];5027[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];5027 -> 5072[label="",style="solid", color="black", weight=3]; 40.99/18.81 5028[label="FiniteMap.sizeFM (FiniteMap.Branch yvy2810 yvy2811 yvy2812 yvy2813 yvy2814)",fontsize=16,color="black",shape="box"];5028 -> 5073[label="",style="solid", color="black", weight=3]; 40.99/18.81 5029 -> 5022[label="",style="dashed", color="red", weight=0]; 40.99/18.81 5029[label="FiniteMap.sizeFM yvy280",fontsize=16,color="magenta"];5029 -> 5074[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 3820[label="primPlusNat (Succ yvy20100) yvy300000",fontsize=16,color="burlywood",shape="box"];5909[label="yvy300000/Succ yvy3000000",fontsize=10,color="white",style="solid",shape="box"];3820 -> 5909[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5909 -> 4072[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5910[label="yvy300000/Zero",fontsize=10,color="white",style="solid",shape="box"];3820 -> 5910[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5910 -> 4073[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 3821[label="primPlusNat Zero yvy300000",fontsize=16,color="burlywood",shape="box"];5911[label="yvy300000/Succ yvy3000000",fontsize=10,color="white",style="solid",shape="box"];3821 -> 5911[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5911 -> 4074[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5912[label="yvy300000/Zero",fontsize=10,color="white",style="solid",shape="box"];3821 -> 5912[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5912 -> 4075[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 4709 -> 4306[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4709[label="primMinusNat yvy24300 yvy24200",fontsize=16,color="magenta"];4709 -> 4818[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4709 -> 4819[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4710[label="Pos (Succ yvy24300)",fontsize=16,color="green",shape="box"];4711[label="Neg (Succ yvy24200)",fontsize=16,color="green",shape="box"];4712[label="Pos Zero",fontsize=16,color="green",shape="box"];3238[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy107 yvy50 yvy51 yvy54 yvy50 yvy51 yvy107 yvy54 True",fontsize=16,color="black",shape="box"];3238 -> 3304[label="",style="solid", color="black", weight=3]; 40.99/18.81 3239[label="FiniteMap.mkBalBranch6MkBalBranch1 FiniteMap.EmptyFM yvy50 yvy51 yvy54 FiniteMap.EmptyFM yvy54 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3239 -> 3305[label="",style="solid", color="black", weight=3]; 40.99/18.81 3240[label="FiniteMap.mkBalBranch6MkBalBranch1 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074)",fontsize=16,color="black",shape="box"];3240 -> 3306[label="",style="solid", color="black", weight=3]; 40.99/18.81 3835 -> 3960[label="",style="dashed", color="red", weight=0]; 40.99/18.81 3835[label="FiniteMap.sizeFM yvy543 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3835 -> 3967[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 3835 -> 3968[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 3834[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 yvy237",fontsize=16,color="burlywood",shape="triangle"];5913[label="yvy237/False",fontsize=10,color="white",style="solid",shape="box"];3834 -> 5913[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5913 -> 4067[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5914[label="yvy237/True",fontsize=10,color="white",style="solid",shape="box"];3834 -> 5914[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5914 -> 4068[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 3282 -> 2787[label="",style="dashed", color="red", weight=0]; 40.99/18.81 3282[label="primPlusNat (Succ yvy6200) (Succ yvy6200)",fontsize=16,color="magenta"];3282 -> 3811[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 3282 -> 3812[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 3283[label="yvy6200",fontsize=16,color="green",shape="box"];4321[label="primCmpNat (Succ yvy79000) (Succ yvy80000)",fontsize=16,color="black",shape="box"];4321 -> 4595[label="",style="solid", color="black", weight=3]; 40.99/18.81 4322[label="primCmpNat (Succ yvy79000) Zero",fontsize=16,color="black",shape="box"];4322 -> 4596[label="",style="solid", color="black", weight=3]; 40.99/18.81 4323[label="primCmpNat Zero (Succ yvy80000)",fontsize=16,color="black",shape="box"];4323 -> 4597[label="",style="solid", color="black", weight=3]; 40.99/18.81 4324[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];4324 -> 4598[label="",style="solid", color="black", weight=3]; 40.99/18.81 4713 -> 4820[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4713[label="compare2 yvy79000 yvy80000 (yvy79000 == yvy80000)",fontsize=16,color="magenta"];4713 -> 4821[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4714 -> 4822[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4714[label="compare2 yvy79000 yvy80000 (yvy79000 == yvy80000)",fontsize=16,color="magenta"];4714 -> 4823[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4715 -> 2822[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4715[label="compare2 yvy79000 yvy80000 (yvy79000 == yvy80000)",fontsize=16,color="magenta"];4715 -> 4824[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4715 -> 4825[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4715 -> 4826[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4716 -> 4827[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4716[label="compare2 yvy79000 yvy80000 (yvy79000 == yvy80000)",fontsize=16,color="magenta"];4716 -> 4828[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4717 -> 4829[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4717[label="compare2 yvy79000 yvy80000 (yvy79000 == yvy80000)",fontsize=16,color="magenta"];4717 -> 4830[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4718 -> 4831[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4718[label="compare2 yvy79000 yvy80000 (yvy79000 == yvy80000)",fontsize=16,color="magenta"];4718 -> 4832[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4719[label="Integer yvy800000 * Integer yvy790010",fontsize=16,color="black",shape="box"];4719 -> 4833[label="",style="solid", color="black", weight=3]; 40.99/18.81 4720 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4720[label="Pos yvy790010 * yvy80000",fontsize=16,color="magenta"];4720 -> 4834[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4720 -> 4835[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4721 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4721[label="yvy79000 * Pos yvy800010",fontsize=16,color="magenta"];4721 -> 4836[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4721 -> 4837[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4722 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4722[label="Neg yvy790010 * yvy80000",fontsize=16,color="magenta"];4722 -> 4838[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4722 -> 4839[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4723 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4723[label="yvy79000 * Pos yvy800010",fontsize=16,color="magenta"];4723 -> 4840[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4723 -> 4841[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4724 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4724[label="Pos yvy790010 * yvy80000",fontsize=16,color="magenta"];4724 -> 4842[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4724 -> 4843[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4725 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4725[label="yvy79000 * Neg yvy800010",fontsize=16,color="magenta"];4725 -> 4844[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4725 -> 4845[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4726 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4726[label="Neg yvy790010 * yvy80000",fontsize=16,color="magenta"];4726 -> 4846[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4726 -> 4847[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4727 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4727[label="yvy79000 * Neg yvy800010",fontsize=16,color="magenta"];4727 -> 4848[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4727 -> 4849[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4728[label="yvy80001",fontsize=16,color="green",shape="box"];4729[label="yvy79001",fontsize=16,color="green",shape="box"];4730[label="yvy80001",fontsize=16,color="green",shape="box"];4731[label="yvy79001",fontsize=16,color="green",shape="box"];4732[label="yvy80001",fontsize=16,color="green",shape="box"];4733[label="yvy79001",fontsize=16,color="green",shape="box"];4734[label="yvy80001",fontsize=16,color="green",shape="box"];4735[label="yvy79001",fontsize=16,color="green",shape="box"];4736[label="yvy80001",fontsize=16,color="green",shape="box"];4737[label="yvy79001",fontsize=16,color="green",shape="box"];4738[label="yvy80001",fontsize=16,color="green",shape="box"];4739[label="yvy79001",fontsize=16,color="green",shape="box"];4740[label="yvy80001",fontsize=16,color="green",shape="box"];4741[label="yvy79001",fontsize=16,color="green",shape="box"];4742[label="yvy80001",fontsize=16,color="green",shape="box"];4743[label="yvy79001",fontsize=16,color="green",shape="box"];4744[label="yvy80001",fontsize=16,color="green",shape="box"];4745[label="yvy79001",fontsize=16,color="green",shape="box"];4746[label="yvy80001",fontsize=16,color="green",shape="box"];4747[label="yvy79001",fontsize=16,color="green",shape="box"];4748[label="yvy80001",fontsize=16,color="green",shape="box"];4749[label="yvy79001",fontsize=16,color="green",shape="box"];4750[label="yvy80001",fontsize=16,color="green",shape="box"];4751[label="yvy79001",fontsize=16,color="green",shape="box"];4752[label="yvy80001",fontsize=16,color="green",shape="box"];4753[label="yvy79001",fontsize=16,color="green",shape="box"];4754[label="yvy80001",fontsize=16,color="green",shape="box"];4755[label="yvy79001",fontsize=16,color="green",shape="box"];4756[label="yvy80002",fontsize=16,color="green",shape="box"];4757[label="yvy79002",fontsize=16,color="green",shape="box"];4758[label="yvy80002",fontsize=16,color="green",shape="box"];4759[label="yvy79002",fontsize=16,color="green",shape="box"];4760[label="yvy80002",fontsize=16,color="green",shape="box"];4761[label="yvy79002",fontsize=16,color="green",shape="box"];4762[label="yvy80002",fontsize=16,color="green",shape="box"];4763[label="yvy79002",fontsize=16,color="green",shape="box"];4764[label="yvy80002",fontsize=16,color="green",shape="box"];4765[label="yvy79002",fontsize=16,color="green",shape="box"];4766[label="yvy80002",fontsize=16,color="green",shape="box"];4767[label="yvy79002",fontsize=16,color="green",shape="box"];4768[label="yvy80002",fontsize=16,color="green",shape="box"];4769[label="yvy79002",fontsize=16,color="green",shape="box"];4770[label="yvy80002",fontsize=16,color="green",shape="box"];4771[label="yvy79002",fontsize=16,color="green",shape="box"];4772[label="yvy80002",fontsize=16,color="green",shape="box"];4773[label="yvy79002",fontsize=16,color="green",shape="box"];4774[label="yvy80002",fontsize=16,color="green",shape="box"];4775[label="yvy79002",fontsize=16,color="green",shape="box"];4776[label="yvy80002",fontsize=16,color="green",shape="box"];4777[label="yvy79002",fontsize=16,color="green",shape="box"];4778[label="yvy80002",fontsize=16,color="green",shape="box"];4779[label="yvy79002",fontsize=16,color="green",shape="box"];4780[label="yvy80002",fontsize=16,color="green",shape="box"];4781[label="yvy79002",fontsize=16,color="green",shape="box"];4782[label="yvy80002",fontsize=16,color="green",shape="box"];4783[label="yvy79002",fontsize=16,color="green",shape="box"];4784 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4784[label="Pos yvy790010 * yvy80000",fontsize=16,color="magenta"];4784 -> 4850[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4784 -> 4851[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4785 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4785[label="yvy79000 * Pos yvy800010",fontsize=16,color="magenta"];4785 -> 4852[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4785 -> 4853[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4786 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4786[label="Neg yvy790010 * yvy80000",fontsize=16,color="magenta"];4786 -> 4854[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4786 -> 4855[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4787 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4787[label="yvy79000 * Pos yvy800010",fontsize=16,color="magenta"];4787 -> 4856[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4787 -> 4857[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4788 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4788[label="Pos yvy790010 * yvy80000",fontsize=16,color="magenta"];4788 -> 4858[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4788 -> 4859[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4789 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4789[label="yvy79000 * Neg yvy800010",fontsize=16,color="magenta"];4789 -> 4860[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4789 -> 4861[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4790 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4790[label="Neg yvy790010 * yvy80000",fontsize=16,color="magenta"];4790 -> 4862[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4790 -> 4863[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4791 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4791[label="yvy79000 * Neg yvy800010",fontsize=16,color="magenta"];4791 -> 4864[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4791 -> 4865[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4792 -> 4444[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4792[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4792 -> 4866[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4792 -> 4867[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4793 -> 4011[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4793[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4793 -> 4868[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4793 -> 4869[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4794 -> 4448[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4794[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4794 -> 4870[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4794 -> 4871[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4795 -> 4012[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4795[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4795 -> 4872[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4795 -> 4873[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4796 -> 4013[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4796[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4796 -> 4874[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4796 -> 4875[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4797 -> 4454[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4797[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4797 -> 4876[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4797 -> 4877[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4798 -> 4456[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4798[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4798 -> 4878[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4798 -> 4879[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4799 -> 1985[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4799[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4799 -> 4880[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4799 -> 4881[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4800 -> 4015[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4800[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4800 -> 4882[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4800 -> 4883[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4801 -> 4016[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4801[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4801 -> 4884[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4801 -> 4885[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4802 -> 4462[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4802[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4802 -> 4886[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4802 -> 4887[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4803 -> 4017[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4803[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4803 -> 4888[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4803 -> 4889[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4804 -> 4018[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4804[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4804 -> 4890[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4804 -> 4891[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4805 -> 4468[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4805[label="compare yvy79000 yvy80000",fontsize=16,color="magenta"];4805 -> 4892[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4805 -> 4893[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4806[label="primCompAux0 yvy260 LT",fontsize=16,color="black",shape="box"];4806 -> 4894[label="",style="solid", color="black", weight=3]; 40.99/18.81 4807[label="primCompAux0 yvy260 EQ",fontsize=16,color="black",shape="box"];4807 -> 4895[label="",style="solid", color="black", weight=3]; 40.99/18.81 4808[label="primCompAux0 yvy260 GT",fontsize=16,color="black",shape="box"];4808 -> 4896[label="",style="solid", color="black", weight=3]; 40.99/18.81 3286[label="Succ yvy6200",fontsize=16,color="green",shape="box"];3287[label="yvy6200",fontsize=16,color="green",shape="box"];5072[label="Pos Zero",fontsize=16,color="green",shape="box"];5073[label="yvy2812",fontsize=16,color="green",shape="box"];5074[label="yvy280",fontsize=16,color="green",shape="box"];4072[label="primPlusNat (Succ yvy20100) (Succ yvy3000000)",fontsize=16,color="black",shape="box"];4072 -> 4328[label="",style="solid", color="black", weight=3]; 40.99/18.81 4073[label="primPlusNat (Succ yvy20100) Zero",fontsize=16,color="black",shape="box"];4073 -> 4329[label="",style="solid", color="black", weight=3]; 40.99/18.81 4074[label="primPlusNat Zero (Succ yvy3000000)",fontsize=16,color="black",shape="box"];4074 -> 4330[label="",style="solid", color="black", weight=3]; 40.99/18.81 4075[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];4075 -> 4331[label="",style="solid", color="black", weight=3]; 40.99/18.81 4818[label="yvy24200",fontsize=16,color="green",shape="box"];4819[label="yvy24300",fontsize=16,color="green",shape="box"];3304 -> 4948[label="",style="dashed", color="red", weight=0]; 40.99/18.81 3304[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) yvy50 yvy51 yvy107 yvy54",fontsize=16,color="magenta"];3304 -> 4974[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 3304 -> 4975[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 3304 -> 4976[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 3304 -> 4977[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 3304 -> 4978[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 3305[label="error []",fontsize=16,color="red",shape="box"];3306[label="FiniteMap.mkBalBranch6MkBalBranch12 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074)",fontsize=16,color="black",shape="box"];3306 -> 3832[label="",style="solid", color="black", weight=3]; 40.99/18.81 3967 -> 2775[label="",style="dashed", color="red", weight=0]; 40.99/18.81 3967[label="FiniteMap.sizeFM yvy543",fontsize=16,color="magenta"];3967 -> 4069[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 3968 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 3968[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];3968 -> 4070[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 3968 -> 4071[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4067[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 False",fontsize=16,color="black",shape="box"];4067 -> 4325[label="",style="solid", color="black", weight=3]; 40.99/18.81 4068[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 True",fontsize=16,color="black",shape="box"];4068 -> 4326[label="",style="solid", color="black", weight=3]; 40.99/18.81 3811[label="Succ yvy6200",fontsize=16,color="green",shape="box"];3812[label="yvy6200",fontsize=16,color="green",shape="box"];4595 -> 3822[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4595[label="primCmpNat yvy79000 yvy80000",fontsize=16,color="magenta"];4595 -> 4809[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4595 -> 4810[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4596[label="GT",fontsize=16,color="green",shape="box"];4597[label="LT",fontsize=16,color="green",shape="box"];4598[label="EQ",fontsize=16,color="green",shape="box"];4821 -> 2888[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4821[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4821 -> 4897[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4821 -> 4898[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4820[label="compare2 yvy79000 yvy80000 yvy262",fontsize=16,color="burlywood",shape="triangle"];5915[label="yvy262/False",fontsize=10,color="white",style="solid",shape="box"];4820 -> 5915[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5915 -> 4899[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5916[label="yvy262/True",fontsize=10,color="white",style="solid",shape="box"];4820 -> 5916[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5916 -> 4900[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 4823 -> 2889[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4823[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4823 -> 4901[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4823 -> 4902[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4822[label="compare2 yvy79000 yvy80000 yvy263",fontsize=16,color="burlywood",shape="triangle"];5917[label="yvy263/False",fontsize=10,color="white",style="solid",shape="box"];4822 -> 5917[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5917 -> 4903[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5918[label="yvy263/True",fontsize=10,color="white",style="solid",shape="box"];4822 -> 5918[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5918 -> 4904[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 4824[label="yvy79000",fontsize=16,color="green",shape="box"];4825 -> 2893[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4825[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4825 -> 4905[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4825 -> 4906[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4826[label="yvy80000",fontsize=16,color="green",shape="box"];4828 -> 2895[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4828[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4828 -> 4907[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4828 -> 4908[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4827[label="compare2 yvy79000 yvy80000 yvy264",fontsize=16,color="burlywood",shape="triangle"];5919[label="yvy264/False",fontsize=10,color="white",style="solid",shape="box"];4827 -> 5919[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5919 -> 4909[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5920[label="yvy264/True",fontsize=10,color="white",style="solid",shape="box"];4827 -> 5920[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5920 -> 4910[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 4830 -> 122[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4830[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4830 -> 4911[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4830 -> 4912[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4829[label="compare2 yvy79000 yvy80000 yvy265",fontsize=16,color="burlywood",shape="triangle"];5921[label="yvy265/False",fontsize=10,color="white",style="solid",shape="box"];4829 -> 5921[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5921 -> 4913[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5922[label="yvy265/True",fontsize=10,color="white",style="solid",shape="box"];4829 -> 5922[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5922 -> 4914[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 4832 -> 2897[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4832[label="yvy79000 == yvy80000",fontsize=16,color="magenta"];4832 -> 4915[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4832 -> 4916[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4831[label="compare2 yvy79000 yvy80000 yvy266",fontsize=16,color="burlywood",shape="triangle"];5923[label="yvy266/False",fontsize=10,color="white",style="solid",shape="box"];4831 -> 5923[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5923 -> 4917[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5924[label="yvy266/True",fontsize=10,color="white",style="solid",shape="box"];4831 -> 5924[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5924 -> 4918[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 4833[label="Integer (primMulInt yvy800000 yvy790010)",fontsize=16,color="green",shape="box"];4833 -> 4935[label="",style="dashed", color="green", weight=3]; 40.99/18.81 4834[label="Pos yvy790010",fontsize=16,color="green",shape="box"];4835[label="yvy80000",fontsize=16,color="green",shape="box"];4836[label="yvy79000",fontsize=16,color="green",shape="box"];4837[label="Pos yvy800010",fontsize=16,color="green",shape="box"];4838[label="Neg yvy790010",fontsize=16,color="green",shape="box"];4839[label="yvy80000",fontsize=16,color="green",shape="box"];4840[label="yvy79000",fontsize=16,color="green",shape="box"];4841[label="Pos yvy800010",fontsize=16,color="green",shape="box"];4842[label="Pos yvy790010",fontsize=16,color="green",shape="box"];4843[label="yvy80000",fontsize=16,color="green",shape="box"];4844[label="yvy79000",fontsize=16,color="green",shape="box"];4845[label="Neg yvy800010",fontsize=16,color="green",shape="box"];4846[label="Neg yvy790010",fontsize=16,color="green",shape="box"];4847[label="yvy80000",fontsize=16,color="green",shape="box"];4848[label="yvy79000",fontsize=16,color="green",shape="box"];4849[label="Neg yvy800010",fontsize=16,color="green",shape="box"];4850[label="Pos yvy790010",fontsize=16,color="green",shape="box"];4851[label="yvy80000",fontsize=16,color="green",shape="box"];4852[label="yvy79000",fontsize=16,color="green",shape="box"];4853[label="Pos yvy800010",fontsize=16,color="green",shape="box"];4854[label="Neg yvy790010",fontsize=16,color="green",shape="box"];4855[label="yvy80000",fontsize=16,color="green",shape="box"];4856[label="yvy79000",fontsize=16,color="green",shape="box"];4857[label="Pos yvy800010",fontsize=16,color="green",shape="box"];4858[label="Pos yvy790010",fontsize=16,color="green",shape="box"];4859[label="yvy80000",fontsize=16,color="green",shape="box"];4860[label="yvy79000",fontsize=16,color="green",shape="box"];4861[label="Neg yvy800010",fontsize=16,color="green",shape="box"];4862[label="Neg yvy790010",fontsize=16,color="green",shape="box"];4863[label="yvy80000",fontsize=16,color="green",shape="box"];4864[label="yvy79000",fontsize=16,color="green",shape="box"];4865[label="Neg yvy800010",fontsize=16,color="green",shape="box"];4866[label="yvy80000",fontsize=16,color="green",shape="box"];4867[label="yvy79000",fontsize=16,color="green",shape="box"];4868[label="yvy80000",fontsize=16,color="green",shape="box"];4869[label="yvy79000",fontsize=16,color="green",shape="box"];4870[label="yvy80000",fontsize=16,color="green",shape="box"];4871[label="yvy79000",fontsize=16,color="green",shape="box"];4872[label="yvy80000",fontsize=16,color="green",shape="box"];4873[label="yvy79000",fontsize=16,color="green",shape="box"];4874[label="yvy80000",fontsize=16,color="green",shape="box"];4875[label="yvy79000",fontsize=16,color="green",shape="box"];4876[label="yvy80000",fontsize=16,color="green",shape="box"];4877[label="yvy79000",fontsize=16,color="green",shape="box"];4878[label="yvy80000",fontsize=16,color="green",shape="box"];4879[label="yvy79000",fontsize=16,color="green",shape="box"];4880[label="yvy80000",fontsize=16,color="green",shape="box"];4881[label="yvy79000",fontsize=16,color="green",shape="box"];4882[label="yvy80000",fontsize=16,color="green",shape="box"];4883[label="yvy79000",fontsize=16,color="green",shape="box"];4884[label="yvy80000",fontsize=16,color="green",shape="box"];4885[label="yvy79000",fontsize=16,color="green",shape="box"];4886[label="yvy80000",fontsize=16,color="green",shape="box"];4887[label="yvy79000",fontsize=16,color="green",shape="box"];4888[label="yvy80000",fontsize=16,color="green",shape="box"];4889[label="yvy79000",fontsize=16,color="green",shape="box"];4890[label="yvy80000",fontsize=16,color="green",shape="box"];4891[label="yvy79000",fontsize=16,color="green",shape="box"];4892[label="yvy80000",fontsize=16,color="green",shape="box"];4893[label="yvy79000",fontsize=16,color="green",shape="box"];4894[label="LT",fontsize=16,color="green",shape="box"];4895[label="yvy260",fontsize=16,color="green",shape="box"];4896[label="GT",fontsize=16,color="green",shape="box"];4328[label="Succ (Succ (primPlusNat yvy20100 yvy3000000))",fontsize=16,color="green",shape="box"];4328 -> 4601[label="",style="dashed", color="green", weight=3]; 40.99/18.81 4329[label="Succ yvy20100",fontsize=16,color="green",shape="box"];4330[label="Succ yvy3000000",fontsize=16,color="green",shape="box"];4331[label="Zero",fontsize=16,color="green",shape="box"];4974[label="yvy51",fontsize=16,color="green",shape="box"];4975[label="Succ Zero",fontsize=16,color="green",shape="box"];4976[label="yvy107",fontsize=16,color="green",shape="box"];4977[label="yvy54",fontsize=16,color="green",shape="box"];4978[label="yvy50",fontsize=16,color="green",shape="box"];3832 -> 4080[label="",style="dashed", color="red", weight=0]; 40.99/18.81 3832[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54 yvy1070 yvy1071 yvy1072 yvy1073 yvy1074 (FiniteMap.sizeFM yvy1074 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy1073)",fontsize=16,color="magenta"];3832 -> 4081[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4069[label="yvy543",fontsize=16,color="green",shape="box"];4070[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4071 -> 2775[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4071[label="FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];4071 -> 4327[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4325[label="FiniteMap.mkBalBranch6MkBalBranch00 yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 otherwise",fontsize=16,color="black",shape="box"];4325 -> 4599[label="",style="solid", color="black", weight=3]; 40.99/18.81 4326[label="FiniteMap.mkBalBranch6Single_L yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];4326 -> 4600[label="",style="solid", color="black", weight=3]; 40.99/18.81 4809[label="yvy79000",fontsize=16,color="green",shape="box"];4810[label="yvy80000",fontsize=16,color="green",shape="box"];4897[label="yvy80000",fontsize=16,color="green",shape="box"];4898[label="yvy79000",fontsize=16,color="green",shape="box"];4899[label="compare2 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];4899 -> 4936[label="",style="solid", color="black", weight=3]; 40.99/18.81 4900[label="compare2 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];4900 -> 4937[label="",style="solid", color="black", weight=3]; 40.99/18.81 4901[label="yvy80000",fontsize=16,color="green",shape="box"];4902[label="yvy79000",fontsize=16,color="green",shape="box"];4903[label="compare2 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];4903 -> 4938[label="",style="solid", color="black", weight=3]; 40.99/18.81 4904[label="compare2 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];4904 -> 4939[label="",style="solid", color="black", weight=3]; 40.99/18.81 4905[label="yvy80000",fontsize=16,color="green",shape="box"];4906[label="yvy79000",fontsize=16,color="green",shape="box"];4907[label="yvy80000",fontsize=16,color="green",shape="box"];4908[label="yvy79000",fontsize=16,color="green",shape="box"];4909[label="compare2 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];4909 -> 4940[label="",style="solid", color="black", weight=3]; 40.99/18.81 4910[label="compare2 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];4910 -> 4941[label="",style="solid", color="black", weight=3]; 40.99/18.81 4911[label="yvy80000",fontsize=16,color="green",shape="box"];4912[label="yvy79000",fontsize=16,color="green",shape="box"];4913[label="compare2 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];4913 -> 4942[label="",style="solid", color="black", weight=3]; 40.99/18.81 4914[label="compare2 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];4914 -> 4943[label="",style="solid", color="black", weight=3]; 40.99/18.81 4915[label="yvy80000",fontsize=16,color="green",shape="box"];4916[label="yvy79000",fontsize=16,color="green",shape="box"];4917[label="compare2 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];4917 -> 4944[label="",style="solid", color="black", weight=3]; 40.99/18.81 4918[label="compare2 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];4918 -> 4945[label="",style="solid", color="black", weight=3]; 40.99/18.81 4935 -> 1573[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4935[label="primMulInt yvy800000 yvy790010",fontsize=16,color="magenta"];4935 -> 5005[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4935 -> 5006[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4601 -> 3288[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4601[label="primPlusNat yvy20100 yvy3000000",fontsize=16,color="magenta"];4601 -> 4811[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4601 -> 4812[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4081 -> 3960[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4081[label="FiniteMap.sizeFM yvy1074 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy1073",fontsize=16,color="magenta"];4081 -> 4332[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4081 -> 4333[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4080[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54 yvy1070 yvy1071 yvy1072 yvy1073 yvy1074 yvy245",fontsize=16,color="burlywood",shape="triangle"];5925[label="yvy245/False",fontsize=10,color="white",style="solid",shape="box"];4080 -> 5925[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5925 -> 4334[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5926[label="yvy245/True",fontsize=10,color="white",style="solid",shape="box"];4080 -> 5926[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5926 -> 4335[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 4327[label="yvy544",fontsize=16,color="green",shape="box"];4599[label="FiniteMap.mkBalBranch6MkBalBranch00 yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 True",fontsize=16,color="black",shape="box"];4599 -> 4813[label="",style="solid", color="black", weight=3]; 40.99/18.81 4600 -> 4948[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4600[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) yvy540 yvy541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy107 yvy543) yvy544",fontsize=16,color="magenta"];4600 -> 4979[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4600 -> 4980[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4600 -> 4981[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4600 -> 4982[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4600 -> 4983[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4936 -> 5007[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4936[label="compare1 yvy79000 yvy80000 (yvy79000 <= yvy80000)",fontsize=16,color="magenta"];4936 -> 5008[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4937[label="EQ",fontsize=16,color="green",shape="box"];4938 -> 5010[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4938[label="compare1 yvy79000 yvy80000 (yvy79000 <= yvy80000)",fontsize=16,color="magenta"];4938 -> 5011[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4939[label="EQ",fontsize=16,color="green",shape="box"];4940 -> 5013[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4940[label="compare1 yvy79000 yvy80000 (yvy79000 <= yvy80000)",fontsize=16,color="magenta"];4940 -> 5014[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4941[label="EQ",fontsize=16,color="green",shape="box"];4942 -> 5020[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4942[label="compare1 yvy79000 yvy80000 (yvy79000 <= yvy80000)",fontsize=16,color="magenta"];4942 -> 5021[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4943[label="EQ",fontsize=16,color="green",shape="box"];4944 -> 5025[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4944[label="compare1 yvy79000 yvy80000 (yvy79000 <= yvy80000)",fontsize=16,color="magenta"];4944 -> 5026[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4945[label="EQ",fontsize=16,color="green",shape="box"];5005[label="yvy800000",fontsize=16,color="green",shape="box"];5006[label="yvy790010",fontsize=16,color="green",shape="box"];4811[label="yvy20100",fontsize=16,color="green",shape="box"];4812[label="yvy3000000",fontsize=16,color="green",shape="box"];4332 -> 2775[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4332[label="FiniteMap.sizeFM yvy1074",fontsize=16,color="magenta"];4332 -> 4602[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4333 -> 1275[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4333[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy1073",fontsize=16,color="magenta"];4333 -> 4603[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4333 -> 4604[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4334[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54 yvy1070 yvy1071 yvy1072 yvy1073 yvy1074 False",fontsize=16,color="black",shape="box"];4334 -> 4605[label="",style="solid", color="black", weight=3]; 40.99/18.81 4335[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54 yvy1070 yvy1071 yvy1072 yvy1073 yvy1074 True",fontsize=16,color="black",shape="box"];4335 -> 4606[label="",style="solid", color="black", weight=3]; 40.99/18.81 4813[label="FiniteMap.mkBalBranch6Double_L yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="burlywood",shape="box"];5927[label="yvy543/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4813 -> 5927[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5927 -> 4919[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5928[label="yvy543/FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434",fontsize=10,color="white",style="solid",shape="box"];4813 -> 5928[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5928 -> 4920[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 4979[label="yvy541",fontsize=16,color="green",shape="box"];4980[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4981 -> 4948[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4981[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy107 yvy543",fontsize=16,color="magenta"];4981 -> 5030[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4981 -> 5031[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4981 -> 5032[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4981 -> 5033[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4981 -> 5034[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4982[label="yvy544",fontsize=16,color="green",shape="box"];4983[label="yvy540",fontsize=16,color="green",shape="box"];5008 -> 3772[label="",style="dashed", color="red", weight=0]; 40.99/18.81 5008[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];5008 -> 5035[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5008 -> 5036[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5007[label="compare1 yvy79000 yvy80000 yvy282",fontsize=16,color="burlywood",shape="triangle"];5929[label="yvy282/False",fontsize=10,color="white",style="solid",shape="box"];5007 -> 5929[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5929 -> 5037[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5930[label="yvy282/True",fontsize=10,color="white",style="solid",shape="box"];5007 -> 5930[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5930 -> 5038[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5011 -> 3774[label="",style="dashed", color="red", weight=0]; 40.99/18.81 5011[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];5011 -> 5039[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5011 -> 5040[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5010[label="compare1 yvy79000 yvy80000 yvy283",fontsize=16,color="burlywood",shape="triangle"];5931[label="yvy283/False",fontsize=10,color="white",style="solid",shape="box"];5010 -> 5931[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5931 -> 5041[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5932[label="yvy283/True",fontsize=10,color="white",style="solid",shape="box"];5010 -> 5932[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5932 -> 5042[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5014 -> 3778[label="",style="dashed", color="red", weight=0]; 40.99/18.81 5014[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];5014 -> 5043[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5014 -> 5044[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5013[label="compare1 yvy79000 yvy80000 yvy284",fontsize=16,color="burlywood",shape="triangle"];5933[label="yvy284/False",fontsize=10,color="white",style="solid",shape="box"];5013 -> 5933[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5933 -> 5045[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5934[label="yvy284/True",fontsize=10,color="white",style="solid",shape="box"];5013 -> 5934[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5934 -> 5046[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5021 -> 3782[label="",style="dashed", color="red", weight=0]; 40.99/18.81 5021[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];5021 -> 5047[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5021 -> 5048[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5020[label="compare1 yvy79000 yvy80000 yvy287",fontsize=16,color="burlywood",shape="triangle"];5935[label="yvy287/False",fontsize=10,color="white",style="solid",shape="box"];5020 -> 5935[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5935 -> 5049[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5936[label="yvy287/True",fontsize=10,color="white",style="solid",shape="box"];5020 -> 5936[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5936 -> 5050[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5026 -> 3785[label="",style="dashed", color="red", weight=0]; 40.99/18.81 5026[label="yvy79000 <= yvy80000",fontsize=16,color="magenta"];5026 -> 5051[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5026 -> 5052[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5025[label="compare1 yvy79000 yvy80000 yvy288",fontsize=16,color="burlywood",shape="triangle"];5937[label="yvy288/False",fontsize=10,color="white",style="solid",shape="box"];5025 -> 5937[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5937 -> 5053[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5938[label="yvy288/True",fontsize=10,color="white",style="solid",shape="box"];5025 -> 5938[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5938 -> 5054[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 4602[label="yvy1074",fontsize=16,color="green",shape="box"];4603[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4604 -> 2775[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4604[label="FiniteMap.sizeFM yvy1073",fontsize=16,color="magenta"];4604 -> 4815[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4605[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54 yvy1070 yvy1071 yvy1072 yvy1073 yvy1074 otherwise",fontsize=16,color="black",shape="box"];4605 -> 4816[label="",style="solid", color="black", weight=3]; 40.99/18.81 4606[label="FiniteMap.mkBalBranch6Single_R (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54",fontsize=16,color="black",shape="box"];4606 -> 4817[label="",style="solid", color="black", weight=3]; 40.99/18.81 4919[label="FiniteMap.mkBalBranch6Double_L yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 FiniteMap.EmptyFM yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 FiniteMap.EmptyFM yvy544)",fontsize=16,color="black",shape="box"];4919 -> 4946[label="",style="solid", color="black", weight=3]; 40.99/18.81 4920[label="FiniteMap.mkBalBranch6Double_L yvy107 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 (FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434) yvy544) yvy107 (FiniteMap.Branch yvy540 yvy541 yvy542 (FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434) yvy544)",fontsize=16,color="black",shape="box"];4920 -> 4947[label="",style="solid", color="black", weight=3]; 40.99/18.81 5030[label="yvy51",fontsize=16,color="green",shape="box"];5031[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];5032[label="yvy107",fontsize=16,color="green",shape="box"];5033[label="yvy543",fontsize=16,color="green",shape="box"];5034[label="yvy50",fontsize=16,color="green",shape="box"];5035[label="yvy80000",fontsize=16,color="green",shape="box"];5036[label="yvy79000",fontsize=16,color="green",shape="box"];5037[label="compare1 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];5037 -> 5075[label="",style="solid", color="black", weight=3]; 40.99/18.81 5038[label="compare1 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5038 -> 5076[label="",style="solid", color="black", weight=3]; 40.99/18.81 5039[label="yvy80000",fontsize=16,color="green",shape="box"];5040[label="yvy79000",fontsize=16,color="green",shape="box"];5041[label="compare1 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];5041 -> 5077[label="",style="solid", color="black", weight=3]; 40.99/18.81 5042[label="compare1 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5042 -> 5078[label="",style="solid", color="black", weight=3]; 40.99/18.81 5043[label="yvy80000",fontsize=16,color="green",shape="box"];5044[label="yvy79000",fontsize=16,color="green",shape="box"];5045[label="compare1 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];5045 -> 5079[label="",style="solid", color="black", weight=3]; 40.99/18.81 5046[label="compare1 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5046 -> 5080[label="",style="solid", color="black", weight=3]; 40.99/18.81 5047[label="yvy80000",fontsize=16,color="green",shape="box"];5048[label="yvy79000",fontsize=16,color="green",shape="box"];5049[label="compare1 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];5049 -> 5081[label="",style="solid", color="black", weight=3]; 40.99/18.81 5050[label="compare1 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5050 -> 5082[label="",style="solid", color="black", weight=3]; 40.99/18.81 5051[label="yvy80000",fontsize=16,color="green",shape="box"];5052[label="yvy79000",fontsize=16,color="green",shape="box"];5053[label="compare1 yvy79000 yvy80000 False",fontsize=16,color="black",shape="box"];5053 -> 5083[label="",style="solid", color="black", weight=3]; 40.99/18.81 5054[label="compare1 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5054 -> 5084[label="",style="solid", color="black", weight=3]; 40.99/18.81 4815[label="yvy1073",fontsize=16,color="green",shape="box"];4816[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54 yvy1070 yvy1071 yvy1072 yvy1073 yvy1074 True",fontsize=16,color="black",shape="box"];4816 -> 4925[label="",style="solid", color="black", weight=3]; 40.99/18.81 4817 -> 4948[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4817[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) yvy1070 yvy1071 yvy1073 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) yvy50 yvy51 yvy1074 yvy54)",fontsize=16,color="magenta"];4817 -> 4989[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4817 -> 4990[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4817 -> 4991[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4817 -> 4992[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4817 -> 4993[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4946[label="error []",fontsize=16,color="red",shape="box"];4947 -> 4948[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4947[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) yvy5430 yvy5431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy107 yvy5433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) yvy540 yvy541 yvy5434 yvy544)",fontsize=16,color="magenta"];4947 -> 4994[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4947 -> 4995[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4947 -> 4996[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4947 -> 4997[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4947 -> 4998[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5075[label="compare0 yvy79000 yvy80000 otherwise",fontsize=16,color="black",shape="box"];5075 -> 5087[label="",style="solid", color="black", weight=3]; 40.99/18.81 5076[label="LT",fontsize=16,color="green",shape="box"];5077[label="compare0 yvy79000 yvy80000 otherwise",fontsize=16,color="black",shape="box"];5077 -> 5088[label="",style="solid", color="black", weight=3]; 40.99/18.81 5078[label="LT",fontsize=16,color="green",shape="box"];5079[label="compare0 yvy79000 yvy80000 otherwise",fontsize=16,color="black",shape="box"];5079 -> 5089[label="",style="solid", color="black", weight=3]; 40.99/18.81 5080[label="LT",fontsize=16,color="green",shape="box"];5081[label="compare0 yvy79000 yvy80000 otherwise",fontsize=16,color="black",shape="box"];5081 -> 5090[label="",style="solid", color="black", weight=3]; 40.99/18.81 5082[label="LT",fontsize=16,color="green",shape="box"];5083[label="compare0 yvy79000 yvy80000 otherwise",fontsize=16,color="black",shape="box"];5083 -> 5091[label="",style="solid", color="black", weight=3]; 40.99/18.81 5084[label="LT",fontsize=16,color="green",shape="box"];4925[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 yvy1074) yvy54",fontsize=16,color="burlywood",shape="box"];5939[label="yvy1074/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4925 -> 5939[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5939 -> 5055[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 5940[label="yvy1074/FiniteMap.Branch yvy10740 yvy10741 yvy10742 yvy10743 yvy10744",fontsize=10,color="white",style="solid",shape="box"];4925 -> 5940[label="",style="solid", color="burlywood", weight=9]; 40.99/18.81 5940 -> 5056[label="",style="solid", color="burlywood", weight=3]; 40.99/18.81 4989[label="yvy1071",fontsize=16,color="green",shape="box"];4990[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4991[label="yvy1073",fontsize=16,color="green",shape="box"];4992 -> 4948[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4992[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) yvy50 yvy51 yvy1074 yvy54",fontsize=16,color="magenta"];4992 -> 5057[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4992 -> 5058[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4992 -> 5059[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4992 -> 5060[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4992 -> 5061[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4993[label="yvy1070",fontsize=16,color="green",shape="box"];4994[label="yvy5431",fontsize=16,color="green",shape="box"];4995[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4996 -> 4948[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4996[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy107 yvy5433",fontsize=16,color="magenta"];4996 -> 5062[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4996 -> 5063[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4996 -> 5064[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4996 -> 5065[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4996 -> 5066[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4997 -> 4948[label="",style="dashed", color="red", weight=0]; 40.99/18.81 4997[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) yvy540 yvy541 yvy5434 yvy544",fontsize=16,color="magenta"];4997 -> 5067[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4997 -> 5068[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4997 -> 5069[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4997 -> 5070[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4997 -> 5071[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 4998[label="yvy5430",fontsize=16,color="green",shape="box"];5087[label="compare0 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5087 -> 5097[label="",style="solid", color="black", weight=3]; 40.99/18.81 5088[label="compare0 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5088 -> 5098[label="",style="solid", color="black", weight=3]; 40.99/18.81 5089[label="compare0 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5089 -> 5099[label="",style="solid", color="black", weight=3]; 40.99/18.81 5090[label="compare0 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5090 -> 5100[label="",style="solid", color="black", weight=3]; 40.99/18.81 5091[label="compare0 yvy79000 yvy80000 True",fontsize=16,color="black",shape="box"];5091 -> 5101[label="",style="solid", color="black", weight=3]; 40.99/18.81 5055[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 FiniteMap.EmptyFM) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 FiniteMap.EmptyFM) yvy54",fontsize=16,color="black",shape="box"];5055 -> 5085[label="",style="solid", color="black", weight=3]; 40.99/18.81 5056[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 (FiniteMap.Branch yvy10740 yvy10741 yvy10742 yvy10743 yvy10744)) yvy50 yvy51 yvy54 (FiniteMap.Branch yvy1070 yvy1071 yvy1072 yvy1073 (FiniteMap.Branch yvy10740 yvy10741 yvy10742 yvy10743 yvy10744)) yvy54",fontsize=16,color="black",shape="box"];5056 -> 5086[label="",style="solid", color="black", weight=3]; 40.99/18.81 5057[label="yvy51",fontsize=16,color="green",shape="box"];5058[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];5059[label="yvy1074",fontsize=16,color="green",shape="box"];5060[label="yvy54",fontsize=16,color="green",shape="box"];5061[label="yvy50",fontsize=16,color="green",shape="box"];5062[label="yvy51",fontsize=16,color="green",shape="box"];5063[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];5064[label="yvy107",fontsize=16,color="green",shape="box"];5065[label="yvy5433",fontsize=16,color="green",shape="box"];5066[label="yvy50",fontsize=16,color="green",shape="box"];5067[label="yvy541",fontsize=16,color="green",shape="box"];5068[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];5069[label="yvy5434",fontsize=16,color="green",shape="box"];5070[label="yvy544",fontsize=16,color="green",shape="box"];5071[label="yvy540",fontsize=16,color="green",shape="box"];5097[label="GT",fontsize=16,color="green",shape="box"];5098[label="GT",fontsize=16,color="green",shape="box"];5099[label="GT",fontsize=16,color="green",shape="box"];5100[label="GT",fontsize=16,color="green",shape="box"];5101[label="GT",fontsize=16,color="green",shape="box"];5085[label="error []",fontsize=16,color="red",shape="box"];5086 -> 4948[label="",style="dashed", color="red", weight=0]; 40.99/18.81 5086[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) yvy10740 yvy10741 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy1070 yvy1071 yvy1073 yvy10743) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) yvy50 yvy51 yvy10744 yvy54)",fontsize=16,color="magenta"];5086 -> 5092[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5086 -> 5093[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5086 -> 5094[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5086 -> 5095[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5086 -> 5096[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5092[label="yvy10741",fontsize=16,color="green",shape="box"];5093[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];5094 -> 4948[label="",style="dashed", color="red", weight=0]; 40.99/18.81 5094[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy1070 yvy1071 yvy1073 yvy10743",fontsize=16,color="magenta"];5094 -> 5102[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5094 -> 5103[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5094 -> 5104[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5094 -> 5105[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5094 -> 5106[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5095 -> 4948[label="",style="dashed", color="red", weight=0]; 40.99/18.81 5095[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) yvy50 yvy51 yvy10744 yvy54",fontsize=16,color="magenta"];5095 -> 5107[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5095 -> 5108[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5095 -> 5109[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5095 -> 5110[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5095 -> 5111[label="",style="dashed", color="magenta", weight=3]; 40.99/18.81 5096[label="yvy10740",fontsize=16,color="green",shape="box"];5102[label="yvy1071",fontsize=16,color="green",shape="box"];5103[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];5104[label="yvy1073",fontsize=16,color="green",shape="box"];5105[label="yvy10743",fontsize=16,color="green",shape="box"];5106[label="yvy1070",fontsize=16,color="green",shape="box"];5107[label="yvy51",fontsize=16,color="green",shape="box"];5108[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];5109[label="yvy10744",fontsize=16,color="green",shape="box"];5110[label="yvy54",fontsize=16,color="green",shape="box"];5111[label="yvy50",fontsize=16,color="green",shape="box"];} 40.99/18.81 40.99/18.81 ---------------------------------------- 40.99/18.81 40.99/18.81 (16) 40.99/18.81 Complex Obligation (AND) 40.99/18.81 40.99/18.81 ---------------------------------------- 40.99/18.81 40.99/18.81 (17) 40.99/18.81 Obligation: 40.99/18.81 Q DP problem: 40.99/18.81 The TRS P consists of the following rules: 40.99/18.81 40.99/18.81 new_primCmpNat(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat(yvy79000, yvy80000) 40.99/18.81 40.99/18.81 R is empty. 40.99/18.81 Q is empty. 40.99/18.81 We have to consider all minimal (P,Q,R)-chains. 40.99/18.81 ---------------------------------------- 40.99/18.81 40.99/18.81 (18) QDPSizeChangeProof (EQUIVALENT) 40.99/18.81 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. 40.99/18.81 40.99/18.81 From the DPs we obtained the following set of size-change graphs: 40.99/18.81 *new_primCmpNat(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat(yvy79000, yvy80000) 40.99/18.81 The graph contains the following edges 1 > 1, 2 > 2 40.99/18.81 40.99/18.81 40.99/18.81 ---------------------------------------- 40.99/18.81 40.99/18.81 (19) 40.99/18.81 YES 40.99/18.81 40.99/18.81 ---------------------------------------- 40.99/18.81 40.99/18.81 (20) 40.99/18.81 Obligation: 40.99/18.81 Q DP problem: 40.99/18.81 The TRS P consists of the following rules: 40.99/18.81 40.99/18.81 new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitGT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare33(yvy400, yvy300, h, ba), LT), h, ba, bb) 40.99/18.81 new_splitGT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitGT0(yvy33, yvy400, h, ba, bb) 40.99/18.81 new_splitGT21(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Right(yvy400), h, ba, bb) 40.99/18.81 new_splitGT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare32(yvy400, yvy300, h, ba), LT), h, ba, bb) 40.99/18.81 new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Left(yvy400), h, ba, bb) 40.99/18.81 new_splitGT0(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Right(yvy400), h, ba, bb) 40.99/18.81 new_splitGT12(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bf, bg, bh) -> new_splitGT0(yvy63, yvy65, bf, bg, bh) 40.99/18.81 new_splitGT1(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bc, bd, be) -> new_splitGT(yvy48, yvy50, bc, bd, be) 40.99/18.81 new_splitGT20(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Left(yvy400), h, ba, bb) 40.99/18.81 new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitGT(yvy33, yvy400, h, ba, bb) 40.99/18.81 new_splitGT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitGT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Left(yvy400), Right(yvy300), False, h, ba), GT), h, ba, bb) 40.99/18.81 new_splitGT2(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bc, bd, be) -> new_splitGT(yvy49, yvy50, bc, bd, be) 40.99/18.81 new_splitGT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Left(yvy400), Left(yvy300), new_esEs33(yvy400, yvy300, h), h, ba), GT), h, ba, bb) 40.99/18.81 new_splitGT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitGT22(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Right(yvy400), Right(yvy300), new_esEs34(yvy400, yvy300, ba), h, ba), GT), h, ba, bb) 40.99/18.81 new_splitGT22(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, False, bf, bg, bh) -> new_splitGT12(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, new_esEs8(new_compare30(yvy65, yvy60, bf, bg), LT), bf, bg, bh) 40.99/18.81 new_splitGT2(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, False, bc, bd, be) -> new_splitGT1(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, new_esEs8(new_compare31(yvy50, yvy45, bc, bd), LT), bc, bd, be) 40.99/18.81 new_splitGT22(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bf, bg, bh) -> new_splitGT0(yvy64, yvy65, bf, bg, bh) 40.99/18.81 new_splitGT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Right(yvy400), Left(yvy300), False, h, ba), GT), h, ba, bb) 40.99/18.81 40.99/18.81 The TRS R consists of the following rules: 40.99/18.81 40.99/18.81 new_esEs33(yvy400, yvy300, app(app(ty_Either, dg), cc)) -> new_esEs5(yvy400, yvy300, dg, cc) 40.99/18.81 new_ltEs20(yvy79002, yvy80002, app(ty_[], dea)) -> new_ltEs11(yvy79002, yvy80002, dea) 40.99/18.81 new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT 40.99/18.81 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 40.99/18.81 new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 40.99/18.81 new_ltEs21(yvy79001, yvy80001, ty_Bool) -> new_ltEs8(yvy79001, yvy80001) 40.99/18.81 new_esEs24(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 40.99/18.81 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 40.99/18.81 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Ordering, cc) -> new_esEs8(yvy4000, yvy3000) 40.99/18.81 new_pePe(True, yvy255) -> True 40.99/18.81 new_esEs25(yvy79001, yvy80001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(yvy79001, yvy80001, dcd, dce, dcf) 40.99/18.81 new_esEs34(yvy400, yvy300, ty_Bool) -> new_esEs12(yvy400, yvy300) 40.99/18.81 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Ratio, ccc)) -> new_ltEs13(yvy79000, yvy80000, ccc) 40.99/18.81 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(ty_Ratio, bde)) -> new_ltEs13(yvy79000, yvy80000, bde) 40.99/18.81 new_esEs19(yvy4001, yvy3001, app(ty_Ratio, bha)) -> new_esEs17(yvy4001, yvy3001, bha) 40.99/18.81 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.81 new_esEs34(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 40.99/18.81 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Double) -> new_ltEs14(yvy79000, yvy80000) 40.99/18.81 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 40.99/18.81 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 40.99/18.81 new_esEs27(yvy4001, yvy3001, app(app(ty_Either, dfh), dga)) -> new_esEs5(yvy4001, yvy3001, dfh, dga) 40.99/18.81 new_esEs33(yvy400, yvy300, ty_Int) -> new_esEs9(yvy400, yvy300) 40.99/18.81 new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT 40.99/18.81 new_lt18(yvy79000, yvy80000, app(ty_Maybe, dbf)) -> new_lt6(yvy79000, yvy80000, dbf) 40.99/18.81 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 40.99/18.81 new_esEs9(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 40.99/18.81 new_lt20(yvy79000, yvy80000, app(app(ty_Either, dac), dad)) -> new_lt17(yvy79000, yvy80000, dac, dad) 40.99/18.81 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs12(yvy4000, yvy3000) 40.99/18.81 new_esEs24(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 40.99/18.81 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cbf)) -> new_esEs7(yvy4000, yvy3000, cbf) 40.99/18.81 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Char, cc) -> new_esEs11(yvy4000, yvy3000) 40.99/18.81 new_esEs28(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 40.99/18.81 new_esEs34(yvy400, yvy300, app(ty_Maybe, ced)) -> new_esEs7(yvy400, yvy300, ced) 40.99/18.81 new_ltEs12(Left(yvy79000), Right(yvy80000), bdb, bbg) -> True 40.99/18.81 new_ltEs21(yvy79001, yvy80001, ty_Char) -> new_ltEs6(yvy79001, yvy80001) 40.99/18.81 new_esEs28(yvy79000, yvy80000, app(ty_Maybe, fb)) -> new_esEs7(yvy79000, yvy80000, fb) 40.99/18.81 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Ratio, bcb), bbg) -> new_ltEs13(yvy79000, yvy80000, bcb) 40.99/18.81 new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 40.99/18.81 new_esEs18(yvy4000, yvy3000, app(app(ty_@2, beg), beh)) -> new_esEs4(yvy4000, yvy3000, beg, beh) 40.99/18.81 new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt16(yvy79001, yvy80001) 40.99/18.81 new_lt19(yvy79001, yvy80001, app(app(ty_Either, dcb), dcc)) -> new_lt17(yvy79001, yvy80001, dcb, dcc) 40.99/18.81 new_esEs26(yvy4000, yvy3000, app(ty_[], dee)) -> new_esEs15(yvy4000, yvy3000, dee) 40.99/18.81 new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt4(yvy79001, yvy80001) 40.99/18.81 new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 40.99/18.81 new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) 40.99/18.81 new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 40.99/18.81 new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs13(yvy20, yvy15) 40.99/18.81 new_compare14(yvy79000, yvy80000, app(ty_[], gh)) -> new_compare3(yvy79000, yvy80000, gh) 40.99/18.81 new_compare3([], [], fg) -> EQ 40.99/18.81 new_esEs28(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 40.99/18.81 new_esEs8(GT, GT) -> True 40.99/18.81 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 40.99/18.81 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 40.99/18.81 new_ltEs19(yvy7900, yvy8000, app(ty_[], daa)) -> new_ltEs11(yvy7900, yvy8000, daa) 40.99/18.81 new_ltEs18(yvy7900, yvy8000, app(app(ty_@2, cgc), cgd)) -> new_ltEs4(yvy7900, yvy8000, cgc, cgd) 40.99/18.81 new_fsEs(yvy244) -> new_not(new_esEs8(yvy244, GT)) 40.99/18.81 new_esEs25(yvy79001, yvy80001, app(ty_Ratio, dca)) -> new_esEs17(yvy79001, yvy80001, dca) 40.99/18.81 new_compare210(yvy790, yvy800, True, cga, cgb) -> EQ 40.99/18.81 new_esEs31(yvy35, yvy30, app(ty_Ratio, bbd)) -> new_esEs17(yvy35, yvy30, bbd) 40.99/18.81 new_esEs32(yvy20, yvy15, app(ty_[], dhc)) -> new_esEs15(yvy20, yvy15, dhc) 40.99/18.81 new_lt20(yvy79000, yvy80000, app(app(ty_@2, ca), cb)) -> new_lt13(yvy79000, yvy80000, ca, cb) 40.99/18.81 new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare18(yvy7900, yvy8000)) 40.99/18.81 new_esEs24(yvy79000, yvy80000, app(app(ty_@2, dae), daf)) -> new_esEs4(yvy79000, yvy80000, dae, daf) 40.99/18.81 new_lt18(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 40.99/18.81 new_compare28(yvy79000, yvy80000, False, fb) -> new_compare113(yvy79000, yvy80000, new_ltEs17(yvy79000, yvy80000, fb), fb) 40.99/18.81 new_lt18(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 40.99/18.81 new_esEs8(EQ, EQ) -> True 40.99/18.81 new_ltEs11(yvy7900, yvy8000, fg) -> new_fsEs(new_compare3(yvy7900, yvy8000, fg)) 40.99/18.81 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 40.99/18.81 new_esEs20(yvy4002, yvy3002, app(ty_Ratio, cac)) -> new_esEs17(yvy4002, yvy3002, cac) 40.99/18.81 new_ltEs20(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) 40.99/18.81 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(app(ty_@2, dh), ea)) -> new_esEs4(yvy4000, yvy3000, dh, ea) 40.99/18.81 new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 40.99/18.81 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 40.99/18.81 new_compare13(yvy79000, yvy80000, fc, fd, ff) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, fc, fd, ff), fc, fd, ff) 40.99/18.81 new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) 40.99/18.81 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_@0) -> new_esEs14(yvy4000, yvy3000) 40.99/18.81 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_Either, ccd), cce)) -> new_ltEs12(yvy79000, yvy80000, ccd, cce) 40.99/18.81 new_not(True) -> False 40.99/18.81 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs14(yvy79000, yvy80000) 40.99/18.81 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 40.99/18.81 new_compare210(Left(yvy7900), Right(yvy8000), False, cga, cgb) -> LT 40.99/18.81 new_lt18(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 40.99/18.81 new_compare14(yvy79000, yvy80000, ty_Ordering) -> new_compare25(yvy79000, yvy80000) 40.99/18.81 new_compare24(yvy79000, yvy80000, False) -> new_compare11(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000)) 40.99/18.81 new_primCompAux00(yvy260, LT) -> LT 40.99/18.81 new_primCmpNat0(Zero, Zero) -> EQ 40.99/18.81 new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs6(yvy4000, yvy3000, cfb, cfc, cfd) 40.99/18.81 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Integer, bbg) -> new_ltEs10(yvy79000, yvy80000) 40.99/18.81 new_esEs28(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 40.99/18.81 new_compare11(yvy79000, yvy80000, False) -> GT 40.99/18.81 new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 40.99/18.81 new_esEs21(yvy4000, yvy3000, app(ty_Ratio, cfe)) -> new_esEs17(yvy4000, yvy3000, cfe) 40.99/18.81 new_esEs20(yvy4002, yvy3002, app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs6(yvy4002, yvy3002, bhh, caa, cab) 40.99/18.81 new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 40.99/18.81 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(ty_[], eb)) -> new_esEs15(yvy4000, yvy3000, eb) 40.99/18.81 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Char, bbg) -> new_ltEs6(yvy79000, yvy80000) 40.99/18.81 new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 40.99/18.81 new_esEs19(yvy4001, yvy3001, app(app(ty_@2, bga), bgb)) -> new_esEs4(yvy4001, yvy3001, bga, bgb) 40.99/18.81 new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 40.99/18.81 new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) 40.99/18.81 new_lt18(yvy79000, yvy80000, app(app(ty_Either, dah), dba)) -> new_lt17(yvy79000, yvy80000, dah, dba) 40.99/18.81 new_primEqNat0(Succ(yvy40000), Zero) -> False 40.99/18.81 new_primEqNat0(Zero, Succ(yvy30000)) -> False 40.99/18.81 new_esEs34(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) 40.99/18.81 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_[], cf), cc) -> new_esEs15(yvy4000, yvy3000, cf) 40.99/18.81 new_esEs14(@0, @0) -> True 40.99/18.81 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 40.99/18.81 new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 40.99/18.81 new_compare10(yvy79000, yvy80000, True, ca, cb) -> LT 40.99/18.81 new_ltEs18(yvy7900, yvy8000, app(ty_[], fg)) -> new_ltEs11(yvy7900, yvy8000, fg) 40.99/18.81 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Double) -> new_esEs13(yvy4000, yvy3000) 40.99/18.81 new_primCompAux00(yvy260, GT) -> GT 40.99/18.81 new_compare28(yvy79000, yvy80000, True, fb) -> EQ 40.99/18.81 new_esEs25(yvy79001, yvy80001, ty_Double) -> new_esEs13(yvy79001, yvy80001) 40.99/18.81 new_ltEs21(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) 40.99/18.81 new_primCmpNat2(Zero, yvy7900) -> LT 40.99/18.81 new_esEs20(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) 40.99/18.81 new_esEs25(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) 40.99/18.81 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_@0) -> new_ltEs16(yvy79000, yvy80000) 40.99/18.81 new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 40.99/18.81 new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT 40.99/18.81 new_ltEs20(yvy79002, yvy80002, app(app(ty_@2, dda), ddb)) -> new_ltEs4(yvy79002, yvy80002, dda, ddb) 40.99/18.81 new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 40.99/18.81 new_esEs20(yvy4002, yvy3002, app(app(ty_@2, bhc), bhd)) -> new_esEs4(yvy4002, yvy3002, bhc, bhd) 40.99/18.81 new_ltEs18(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 40.99/18.81 new_ltEs21(yvy79001, yvy80001, ty_Int) -> new_ltEs7(yvy79001, yvy80001) 40.99/18.81 new_compare3(:(yvy79000, yvy79001), :(yvy80000, yvy80001), fg) -> new_primCompAux0(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, fg), fg) 40.99/18.81 new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs13(yvy35, yvy30) 40.99/18.81 new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 40.99/18.81 new_ltEs5(LT, GT) -> True 40.99/18.81 new_ltEs18(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 40.99/18.81 new_primPlusNat1(Succ(yvy20100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20100, yvy3000000))) 40.99/18.81 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 40.99/18.81 new_esEs31(yvy35, yvy30, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs6(yvy35, yvy30, bba, bbb, bbc) 40.99/18.81 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs9(yvy79000, yvy80000, ccf, ccg, cch) 40.99/18.81 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Float) -> new_esEs16(yvy4000, yvy3000) 40.99/18.81 new_primCmpNat0(Zero, Succ(yvy80000)) -> LT 40.99/18.81 new_ltEs20(yvy79002, yvy80002, ty_Bool) -> new_ltEs8(yvy79002, yvy80002) 40.99/18.81 new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs6(yvy4001, yvy3001, bgf, bgg, bgh) 40.99/18.81 new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 40.99/18.81 new_esEs33(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 40.99/18.81 new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, cha), chb)) -> new_ltEs4(yvy7900, yvy8000, cha, chb) 40.99/18.81 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(ty_Maybe, fa)) -> new_esEs7(yvy4000, yvy3000, fa) 40.99/18.81 new_compare110(yvy79000, yvy80000, False, fc, fd, ff) -> GT 40.99/18.81 new_primCmpNat0(Succ(yvy79000), Zero) -> GT 40.99/18.81 new_compare3([], :(yvy80000, yvy80001), fg) -> LT 40.99/18.81 new_pePe(False, yvy255) -> yvy255 40.99/18.81 new_ltEs17(Nothing, Nothing, cbh) -> True 40.99/18.81 new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 40.99/18.81 new_compare27(yvy79000, yvy80000, False, fc, fd, ff) -> new_compare110(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, fc, fd, ff), fc, fd, ff) 40.99/18.81 new_esEs7(Nothing, Just(yvy3000), baa) -> False 40.99/18.81 new_esEs7(Just(yvy4000), Nothing, baa) -> False 40.99/18.81 new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 40.99/18.81 new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 40.99/18.81 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Float) -> new_ltEs15(yvy79000, yvy80000) 40.99/18.81 new_ltEs17(Nothing, Just(yvy80000), cbh) -> True 40.99/18.81 new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 40.99/18.81 new_ltEs17(Just(yvy79000), Nothing, cbh) -> False 40.99/18.81 new_esEs12(False, False) -> True 40.99/18.81 new_ltEs20(yvy79002, yvy80002, app(ty_Maybe, deb)) -> new_ltEs17(yvy79002, yvy80002, deb) 40.99/18.81 new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 40.99/18.81 new_compare114(yvy227, yvy228, True, cfg, cfh) -> LT 40.99/18.81 new_compare112(yvy234, yvy235, True, bee, bef) -> LT 40.99/18.81 new_primCmpNat1(yvy7900, Zero) -> GT 40.99/18.81 new_esEs34(yvy400, yvy300, ty_Int) -> new_esEs9(yvy400, yvy300) 40.99/18.81 new_compare14(yvy79000, yvy80000, ty_Char) -> new_compare8(yvy79000, yvy80000) 40.99/18.81 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cah), cba)) -> new_esEs5(yvy4000, yvy3000, cah, cba) 40.99/18.81 new_lt18(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 40.99/18.81 new_lt15(yvy79000, yvy80000) -> new_esEs8(new_compare25(yvy79000, yvy80000), LT) 40.99/18.81 new_esEs25(yvy79001, yvy80001, ty_Integer) -> new_esEs10(yvy79001, yvy80001) 40.99/18.81 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs9(yvy79000, yvy80000, bdh, bea, beb) 40.99/18.81 new_compare23(yvy79000, yvy80000, False, ca, cb) -> new_compare10(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000, ca, cb), ca, cb) 40.99/18.81 new_esEs34(yvy400, yvy300, app(app(ty_Either, cdf), cdg)) -> new_esEs5(yvy400, yvy300, cdf, cdg) 40.99/18.81 new_esEs25(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) 40.99/18.81 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_[], bch), bbg) -> new_ltEs11(yvy79000, yvy80000, bch) 40.99/18.81 new_esEs25(yvy79001, yvy80001, app(ty_[], dcg)) -> new_esEs15(yvy79001, yvy80001, dcg) 40.99/18.81 new_compare113(yvy79000, yvy80000, True, fb) -> LT 40.99/18.81 new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 40.99/18.81 new_ltEs7(yvy7900, yvy8000) -> new_fsEs(new_compare7(yvy7900, yvy8000)) 40.99/18.81 new_lt20(yvy79000, yvy80000, app(ty_[], bbf)) -> new_lt11(yvy79000, yvy80000, bbf) 40.99/18.81 new_compare23(yvy79000, yvy80000, True, ca, cb) -> EQ 40.99/18.81 new_esEs8(LT, EQ) -> False 40.99/18.81 new_esEs8(EQ, LT) -> False 40.99/18.81 new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 40.99/18.81 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cd), ce), cc) -> new_esEs4(yvy4000, yvy3000, cd, ce) 40.99/18.81 new_esEs21(yvy4000, yvy3000, app(app(ty_@2, cee), cef)) -> new_esEs4(yvy4000, yvy3000, cee, cef) 40.99/18.81 new_ltEs21(yvy79001, yvy80001, app(app(app(ty_@3, eah), eba), ebb)) -> new_ltEs9(yvy79001, yvy80001, eah, eba, ebb) 40.99/18.81 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 40.99/18.81 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 40.99/18.81 new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dhf), dhg), dhh)) -> new_esEs6(yvy20, yvy15, dhf, dhg, dhh) 40.99/18.81 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(app(ty_@2, bdc), bdd)) -> new_ltEs4(yvy79000, yvy80000, bdc, bdd) 40.99/18.81 new_esEs7(Nothing, Nothing, baa) -> True 40.99/18.81 new_esEs13(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 40.99/18.81 new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 40.99/18.81 new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 40.99/18.81 new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt9(yvy79001, yvy80001) 40.99/18.81 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, dfc)) -> new_esEs17(yvy4000, yvy3000, dfc) 40.99/18.81 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Int) -> new_ltEs7(yvy79000, yvy80000) 40.99/18.81 new_esEs25(yvy79001, yvy80001, app(app(ty_@2, dbg), dbh)) -> new_esEs4(yvy79001, yvy80001, dbg, dbh) 40.99/18.81 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_Either, bcc), bcd), bbg) -> new_ltEs12(yvy79000, yvy80000, bcc, bcd) 40.99/18.81 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare7(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) 40.99/18.81 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.81 new_ltEs18(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 40.99/18.81 new_ltEs18(yvy7900, yvy8000, app(app(ty_Either, bdb), bbg)) -> new_ltEs12(yvy7900, yvy8000, bdb, bbg) 40.99/18.81 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 40.99/18.81 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 40.99/18.81 new_esEs24(yvy79000, yvy80000, app(app(ty_Either, dah), dba)) -> new_esEs5(yvy79000, yvy80000, dah, dba) 40.99/18.81 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 40.99/18.81 new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, dab)) -> new_ltEs17(yvy7900, yvy8000, dab) 40.99/18.81 new_esEs25(yvy79001, yvy80001, ty_Ordering) -> new_esEs8(yvy79001, yvy80001) 40.99/18.81 new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs14(yvy35, yvy30) 40.99/18.81 new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT 40.99/18.81 new_esEs20(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) 40.99/18.81 new_compare114(yvy227, yvy228, False, cfg, cfh) -> GT 40.99/18.81 new_ltEs20(yvy79002, yvy80002, ty_@0) -> new_ltEs16(yvy79002, yvy80002) 40.99/18.81 new_esEs33(yvy400, yvy300, app(ty_Maybe, baa)) -> new_esEs7(yvy400, yvy300, baa) 40.99/18.81 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 40.99/18.81 new_esEs25(yvy79001, yvy80001, app(ty_Maybe, dch)) -> new_esEs7(yvy79001, yvy80001, dch) 40.99/18.81 new_ltEs8(True, False) -> False 40.99/18.81 new_esEs15([], [], hd) -> True 40.99/18.81 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Bool, bbg) -> new_ltEs8(yvy79000, yvy80000) 40.99/18.81 new_esEs32(yvy20, yvy15, app(app(ty_Either, dhd), dhe)) -> new_esEs5(yvy20, yvy15, dhd, dhe) 40.99/18.81 new_esEs33(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) 40.99/18.81 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 40.99/18.81 new_esEs24(yvy79000, yvy80000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs6(yvy79000, yvy80000, dbb, dbc, dbd) 40.99/18.81 new_lt4(yvy240, yvy239) -> new_esEs8(new_compare7(yvy240, yvy239), LT) 40.99/18.81 new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt10(yvy79001, yvy80001) 40.99/18.81 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 40.99/18.81 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 40.99/18.81 new_ltEs8(False, False) -> True 40.99/18.81 new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) 40.99/18.81 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs6(yvy4000, yvy3000, cbb, cbc, cbd) 40.99/18.81 new_compare14(yvy79000, yvy80000, app(app(ty_@2, fh), ga)) -> new_compare16(yvy79000, yvy80000, fh, ga) 40.99/18.81 new_esEs34(yvy400, yvy300, app(ty_Ratio, cec)) -> new_esEs17(yvy400, yvy300, cec) 40.99/18.81 new_esEs33(yvy400, yvy300, app(app(ty_@2, hb), hc)) -> new_esEs4(yvy400, yvy300, hb, hc) 40.99/18.81 new_lt18(yvy79000, yvy80000, app(ty_Ratio, dag)) -> new_lt14(yvy79000, yvy80000, dag) 40.99/18.81 new_ltEs5(EQ, EQ) -> True 40.99/18.81 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_Either, cg), da), cc) -> new_esEs5(yvy4000, yvy3000, cg, da) 40.99/18.81 new_ltEs18(yvy7900, yvy8000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_ltEs9(yvy7900, yvy8000, cgf, cgg, cgh) 40.99/18.81 new_compare27(yvy79000, yvy80000, True, fc, fd, ff) -> EQ 40.99/18.81 new_lt19(yvy79001, yvy80001, app(ty_[], dcg)) -> new_lt11(yvy79001, yvy80001, dcg) 40.99/18.81 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Bool, cc) -> new_esEs12(yvy4000, yvy3000) 40.99/18.81 new_ltEs18(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 40.99/18.81 new_compare15(yvy79000, yvy80000) -> new_compare29(yvy79000, yvy80000, new_esEs12(yvy79000, yvy80000)) 40.99/18.81 new_esEs34(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) 40.99/18.81 new_esEs21(yvy4000, yvy3000, app(app(ty_Either, ceh), cfa)) -> new_esEs5(yvy4000, yvy3000, ceh, cfa) 40.99/18.81 new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.81 new_compare7(yvy79, yvy80) -> new_primCmpInt(yvy79, yvy80) 40.99/18.81 new_esEs8(LT, LT) -> True 40.99/18.81 new_esEs34(yvy400, yvy300, app(app(ty_@2, cdc), cdd)) -> new_esEs4(yvy400, yvy300, cdc, cdd) 40.99/18.81 new_compare111(yvy79000, yvy80000, True) -> LT 40.99/18.81 new_esEs28(yvy79000, yvy80000, app(ty_[], bbf)) -> new_esEs15(yvy79000, yvy80000, bbf) 40.99/18.81 new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 40.99/18.81 new_lt18(yvy79000, yvy80000, app(ty_[], dbe)) -> new_lt11(yvy79000, yvy80000, dbe) 40.99/18.81 new_lt6(yvy79000, yvy80000, fb) -> new_esEs8(new_compare12(yvy79000, yvy80000, fb), LT) 40.99/18.81 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 40.99/18.81 new_esEs24(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 40.99/18.81 new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, chf), chg), chh)) -> new_ltEs9(yvy7900, yvy8000, chf, chg, chh) 40.99/18.81 new_primPlusNat1(Succ(yvy20100), Zero) -> Succ(yvy20100) 40.99/18.81 new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 40.99/18.81 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cae), caf)) -> new_esEs4(yvy4000, yvy3000, cae, caf) 40.99/18.81 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Maybe, cdb)) -> new_ltEs17(yvy79000, yvy80000, cdb) 40.99/18.81 new_compare14(yvy79000, yvy80000, app(app(ty_Either, gc), gd)) -> new_compare19(yvy79000, yvy80000, gc, gd) 40.99/18.81 new_ltEs21(yvy79001, yvy80001, ty_Double) -> new_ltEs14(yvy79001, yvy80001) 40.99/18.81 new_compare14(yvy79000, yvy80000, ty_Integer) -> new_compare26(yvy79000, yvy80000) 40.99/18.81 new_esEs24(yvy79000, yvy80000, app(ty_Maybe, dbf)) -> new_esEs7(yvy79000, yvy80000, dbf) 40.99/18.81 new_esEs25(yvy79001, yvy80001, ty_Bool) -> new_esEs12(yvy79001, yvy80001) 40.99/18.81 new_esEs24(yvy79000, yvy80000, app(ty_Ratio, dag)) -> new_esEs17(yvy79000, yvy80000, dag) 40.99/18.81 new_esEs24(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 40.99/18.81 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) 40.99/18.81 new_ltEs5(LT, LT) -> True 40.99/18.81 new_ltEs20(yvy79002, yvy80002, ty_Double) -> new_ltEs14(yvy79002, yvy80002) 40.99/18.81 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 40.99/18.81 new_esEs33(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) 40.99/18.81 new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs9(yvy20, yvy15) 40.99/18.81 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Integer, cc) -> new_esEs10(yvy4000, yvy3000) 40.99/18.81 new_ltEs5(LT, EQ) -> True 40.99/18.81 new_compare14(yvy79000, yvy80000, ty_Double) -> new_compare18(yvy79000, yvy80000) 40.99/18.81 new_compare14(yvy79000, yvy80000, ty_@0) -> new_compare9(yvy79000, yvy80000) 40.99/18.81 new_esEs34(yvy400, yvy300, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs6(yvy400, yvy300, cdh, cea, ceb) 40.99/18.81 new_ltEs21(yvy79001, yvy80001, app(ty_Maybe, ebd)) -> new_ltEs17(yvy79001, yvy80001, ebd) 40.99/18.81 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs16(yvy79000, yvy80000) 40.99/18.81 new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.81 new_ltEs8(False, True) -> True 40.99/18.81 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cbe)) -> new_esEs17(yvy4000, yvy3000, cbe) 40.99/18.81 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 40.99/18.81 new_compare14(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) 40.99/18.81 new_esEs27(yvy4001, yvy3001, app(ty_[], dfg)) -> new_esEs15(yvy4001, yvy3001, dfg) 40.99/18.81 new_ltEs6(yvy7900, yvy8000) -> new_fsEs(new_compare8(yvy7900, yvy8000)) 40.99/18.81 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.81 new_esEs34(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 40.99/18.81 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(app(ty_Either, bdf), bdg)) -> new_ltEs12(yvy79000, yvy80000, bdf, bdg) 40.99/18.81 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 40.99/18.81 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 40.99/18.81 new_esEs34(yvy400, yvy300, ty_Double) -> new_esEs13(yvy400, yvy300) 40.99/18.81 new_ltEs20(yvy79002, yvy80002, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_ltEs9(yvy79002, yvy80002, ddf, ddg, ddh) 40.99/18.81 new_esEs19(yvy4001, yvy3001, app(app(ty_Either, bgd), bge)) -> new_esEs5(yvy4001, yvy3001, bgd, bge) 40.99/18.81 new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt12(yvy79001, yvy80001) 40.99/18.81 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Double, bbg) -> new_ltEs14(yvy79000, yvy80000) 40.99/18.81 new_esEs27(yvy4001, yvy3001, app(ty_Ratio, dge)) -> new_esEs17(yvy4001, yvy3001, dge) 40.99/18.81 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs6(yvy4000, yvy3000, ee, ef, eg) 40.99/18.81 new_esEs33(yvy400, yvy300, app(ty_Ratio, hh)) -> new_esEs17(yvy400, yvy300, hh) 40.99/18.81 new_esEs28(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 40.99/18.81 new_esEs33(yvy400, yvy300, app(app(app(ty_@3, he), hf), hg)) -> new_esEs6(yvy400, yvy300, he, hf, hg) 40.99/18.81 new_ltEs12(Right(yvy79000), Left(yvy80000), bdb, bbg) -> False 40.99/18.81 new_esEs24(yvy79000, yvy80000, app(ty_[], dbe)) -> new_esEs15(yvy79000, yvy80000, dbe) 40.99/18.81 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Ratio, de), cc) -> new_esEs17(yvy4000, yvy3000, de) 40.99/18.81 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(ty_Ratio, eh)) -> new_esEs17(yvy4000, yvy3000, eh) 40.99/18.81 new_esEs17(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), hh) -> new_asAs(new_esEs22(yvy4000, yvy3000, hh), new_esEs23(yvy4001, yvy3001, hh)) 40.99/18.81 new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 40.99/18.81 new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 40.99/18.81 new_compare210(Left(yvy7900), Left(yvy8000), False, cga, cgb) -> new_compare114(yvy7900, yvy8000, new_ltEs18(yvy7900, yvy8000, cga), cga, cgb) 40.99/18.81 new_sr0(Integer(yvy800000), Integer(yvy790010)) -> Integer(new_primMulInt(yvy800000, yvy790010)) 40.99/18.81 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, bce), bcf), bcg), bbg) -> new_ltEs9(yvy79000, yvy80000, bce, bcf, bcg) 40.99/18.81 new_esEs28(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 40.99/18.81 new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs6(yvy4001, yvy3001, dgb, dgc, dgd) 40.99/18.81 new_esEs34(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) 40.99/18.81 new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 40.99/18.81 new_esEs28(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 40.99/18.81 new_ltEs21(yvy79001, yvy80001, app(ty_Ratio, eae)) -> new_ltEs13(yvy79001, yvy80001, eae) 40.99/18.81 new_lt9(yvy79000, yvy80000) -> new_esEs8(new_compare8(yvy79000, yvy80000), LT) 40.99/18.81 new_ltEs21(yvy79001, yvy80001, ty_@0) -> new_ltEs16(yvy79001, yvy80001) 40.99/18.81 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) 40.99/18.81 new_esEs20(yvy4002, yvy3002, ty_Int) -> new_esEs9(yvy4002, yvy3002) 40.99/18.81 new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 40.99/18.81 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 40.99/18.81 new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs12(yvy20, yvy15) 40.99/18.81 new_esEs25(yvy79001, yvy80001, ty_Int) -> new_esEs9(yvy79001, yvy80001) 40.99/18.81 new_ltEs21(yvy79001, yvy80001, app(app(ty_Either, eaf), eag)) -> new_ltEs12(yvy79001, yvy80001, eaf, eag) 40.99/18.81 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 40.99/18.81 new_lt5(yvy79000, yvy80000) -> new_esEs8(new_compare9(yvy79000, yvy80000), LT) 40.99/18.81 new_asAs(True, yvy222) -> yvy222 40.99/18.81 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 40.99/18.81 new_compare10(yvy79000, yvy80000, False, ca, cb) -> GT 40.99/18.81 new_ltEs5(GT, LT) -> False 40.99/18.81 new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), cgf, cgg, cgh) -> new_pePe(new_lt18(yvy79000, yvy80000, cgf), new_asAs(new_esEs24(yvy79000, yvy80000, cgf), new_pePe(new_lt19(yvy79001, yvy80001, cgg), new_asAs(new_esEs25(yvy79001, yvy80001, cgg), new_ltEs20(yvy79002, yvy80002, cgh))))) 40.99/18.81 new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 40.99/18.81 new_esEs24(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 40.99/18.81 new_esEs34(yvy400, yvy300, app(ty_[], cde)) -> new_esEs15(yvy400, yvy300, cde) 40.99/18.81 new_compare14(yvy79000, yvy80000, ty_Int) -> new_compare7(yvy79000, yvy80000) 40.99/18.81 new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 40.99/18.81 new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, fc), fd), ff)) -> new_lt7(yvy79000, yvy80000, fc, fd, ff) 40.99/18.81 new_esEs20(yvy4002, yvy3002, app(ty_[], bhe)) -> new_esEs15(yvy4002, yvy3002, bhe) 40.99/18.81 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs13(yvy4000, yvy3000) 40.99/18.81 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 40.99/18.81 new_lt10(yvy79000, yvy80000) -> new_esEs8(new_compare18(yvy79000, yvy80000), LT) 40.99/18.81 new_esEs24(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 40.99/18.81 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 40.99/18.81 new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) 40.99/18.81 new_ltEs8(True, True) -> True 40.99/18.81 new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat1(yvy7900, yvy800) 40.99/18.81 new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs9(yvy35, yvy30) 40.99/18.81 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_@2, bbh), bca), bbg) -> new_ltEs4(yvy79000, yvy80000, bbh, bca) 40.99/18.81 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare26(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) 40.99/18.81 new_compare8(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 40.99/18.81 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 40.99/18.81 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Ordering, bbg) -> new_ltEs5(yvy79000, yvy80000) 40.99/18.81 new_primCompAux00(yvy260, EQ) -> yvy260 40.99/18.81 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 40.99/18.81 new_esEs12(False, True) -> False 40.99/18.81 new_esEs12(True, False) -> False 40.99/18.81 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) 40.99/18.81 new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt15(yvy79001, yvy80001) 40.99/18.81 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Float, cc) -> new_esEs16(yvy4000, yvy3000) 40.99/18.81 new_primMulNat0(Zero, Zero) -> Zero 40.99/18.81 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Double, cc) -> new_esEs13(yvy4000, yvy3000) 40.99/18.81 new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_lt7(yvy79001, yvy80001, dcd, dce, dcf) 40.99/18.81 new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) 40.99/18.81 new_esEs12(True, True) -> True 40.99/18.81 new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.81 new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.81 new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 40.99/18.81 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Int, cc) -> new_esEs9(yvy4000, yvy3000) 40.99/18.81 new_compare111(yvy79000, yvy80000, False) -> GT 40.99/18.81 new_esEs31(yvy35, yvy30, app(ty_Maybe, bbe)) -> new_esEs7(yvy35, yvy30, bbe) 40.99/18.81 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_@0, bbg) -> new_ltEs16(yvy79000, yvy80000) 40.99/18.81 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs7(yvy79000, yvy80000) 40.99/18.81 new_compare9(@0, @0) -> EQ 40.99/18.81 new_esEs15(:(yvy4000, yvy4001), [], hd) -> False 40.99/18.81 new_esEs15([], :(yvy3000, yvy3001), hd) -> False 40.99/18.81 new_esEs20(yvy4002, yvy3002, app(app(ty_Either, bhf), bhg)) -> new_esEs5(yvy4002, yvy3002, bhf, bhg) 40.99/18.81 new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, chc)) -> new_ltEs13(yvy7900, yvy8000, chc) 40.99/18.81 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(app(ty_Either, ec), ed)) -> new_esEs5(yvy4000, yvy3000, ec, ed) 40.99/18.81 new_esEs24(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 40.99/18.81 new_ltEs5(EQ, LT) -> False 40.99/18.81 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, chd), che)) -> new_ltEs12(yvy7900, yvy8000, chd, che) 40.99/18.81 new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 40.99/18.81 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 40.99/18.81 new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 40.99/18.81 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 40.99/18.81 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], cag)) -> new_esEs15(yvy4000, yvy3000, cag) 40.99/18.81 new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) 40.99/18.81 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(ty_Maybe, bed)) -> new_ltEs17(yvy79000, yvy80000, bed) 40.99/18.81 new_primCompAux0(yvy79000, yvy80000, yvy256, fg) -> new_primCompAux00(yvy256, new_compare14(yvy79000, yvy80000, fg)) 40.99/18.81 new_esEs33(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) 40.99/18.81 new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 40.99/18.81 new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.81 new_lt17(yvy79000, yvy80000, dac, dad) -> new_esEs8(new_compare19(yvy79000, yvy80000, dac, dad), LT) 40.99/18.81 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 40.99/18.81 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 40.99/18.81 new_esEs24(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 40.99/18.81 new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt8(yvy79001, yvy80001) 40.99/18.81 new_ltEs20(yvy79002, yvy80002, app(app(ty_Either, ddd), dde)) -> new_ltEs12(yvy79002, yvy80002, ddd, dde) 40.99/18.81 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Char) -> new_ltEs6(yvy79000, yvy80000) 40.99/18.81 new_lt19(yvy79001, yvy80001, app(ty_Ratio, dca)) -> new_lt14(yvy79001, yvy80001, dca) 40.99/18.81 new_ltEs20(yvy79002, yvy80002, app(ty_Ratio, ddc)) -> new_ltEs13(yvy79002, yvy80002, ddc) 40.99/18.81 new_esEs20(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 40.99/18.81 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 40.99/18.81 new_esEs20(yvy4002, yvy3002, ty_Double) -> new_esEs13(yvy4002, yvy3002) 40.99/18.81 new_ltEs18(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 40.99/18.81 new_esEs21(yvy4000, yvy3000, app(ty_Maybe, cff)) -> new_esEs7(yvy4000, yvy3000, cff) 40.99/18.81 new_esEs32(yvy20, yvy15, app(app(ty_@2, dha), dhb)) -> new_esEs4(yvy20, yvy15, dha, dhb) 40.99/18.81 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, dec), ded)) -> new_esEs4(yvy4000, yvy3000, dec, ded) 40.99/18.81 new_compare14(yvy79000, yvy80000, app(ty_Ratio, gb)) -> new_compare17(yvy79000, yvy80000, gb) 40.99/18.81 new_compare24(yvy79000, yvy80000, True) -> EQ 40.99/18.81 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.81 new_esEs18(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs15(yvy4000, yvy3000, bfa) 40.99/18.81 new_ltEs18(yvy7900, yvy8000, app(ty_Maybe, cbh)) -> new_ltEs17(yvy7900, yvy8000, cbh) 40.99/18.81 new_esEs25(yvy79001, yvy80001, app(app(ty_Either, dcb), dcc)) -> new_esEs5(yvy79001, yvy80001, dcb, dcc) 40.99/18.81 new_lt18(yvy79000, yvy80000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_lt7(yvy79000, yvy80000, dbb, dbc, dbd) 40.99/18.81 new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 40.99/18.81 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 40.99/18.81 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 40.99/18.81 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 40.99/18.81 new_lt20(yvy79000, yvy80000, app(ty_Ratio, cbg)) -> new_lt14(yvy79000, yvy80000, cbg) 40.99/18.81 new_esEs32(yvy20, yvy15, app(ty_Maybe, eab)) -> new_esEs7(yvy20, yvy15, eab) 40.99/18.81 new_esEs31(yvy35, yvy30, app(app(ty_Either, bag), bah)) -> new_esEs5(yvy35, yvy30, bag, bah) 40.99/18.81 new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 40.99/18.81 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(ty_[], bec)) -> new_ltEs11(yvy79000, yvy80000, bec) 40.99/18.81 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, dfd)) -> new_esEs7(yvy4000, yvy3000, dfd) 40.99/18.81 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 40.99/18.81 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Maybe, bda), bbg) -> new_ltEs17(yvy79000, yvy80000, bda) 40.99/18.81 new_lt18(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 40.99/18.81 new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 40.99/18.81 new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) 40.99/18.81 new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt5(yvy79001, yvy80001) 40.99/18.81 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, def), deg)) -> new_esEs5(yvy4000, yvy3000, def, deg) 40.99/18.81 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat1(yvy8000, Zero) 40.99/18.81 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs6(yvy4000, yvy3000, db, dc, dd) 40.99/18.81 new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) 40.99/18.81 new_lt18(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 40.99/18.81 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 40.99/18.81 new_compare110(yvy79000, yvy80000, True, fc, fd, ff) -> LT 40.99/18.81 new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) 40.99/18.81 new_compare14(yvy79000, yvy80000, app(app(app(ty_@3, ge), gf), gg)) -> new_compare13(yvy79000, yvy80000, ge, gf, gg) 40.99/18.81 new_esEs15(:(yvy4000, yvy4001), :(yvy3000, yvy3001), hd) -> new_asAs(new_esEs21(yvy4000, yvy3000, hd), new_esEs15(yvy4001, yvy3001, hd)) 40.99/18.81 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, deh), dfa), dfb)) -> new_esEs6(yvy4000, yvy3000, deh, dfa, dfb) 40.99/18.81 new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 40.99/18.81 new_esEs27(yvy4001, yvy3001, app(ty_Maybe, dgf)) -> new_esEs7(yvy4001, yvy3001, dgf) 40.99/18.81 new_compare12(yvy79000, yvy80000, fb) -> new_compare28(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, fb), fb) 40.99/18.81 new_compare112(yvy234, yvy235, False, bee, bef) -> GT 40.99/18.81 new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs6(yvy4000, yvy3000, bfd, bfe, bff) 40.99/18.81 new_ltEs21(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) 40.99/18.81 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Maybe, df), cc) -> new_esEs7(yvy4000, yvy3000, df) 40.99/18.81 new_ltEs5(EQ, GT) -> True 40.99/18.81 new_esEs31(yvy35, yvy30, app(app(ty_@2, bad), bae)) -> new_esEs4(yvy35, yvy30, bad, bae) 40.99/18.81 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Float, bbg) -> new_ltEs15(yvy79000, yvy80000) 40.99/18.81 new_ltEs20(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) 40.99/18.81 new_not(False) -> True 40.99/18.81 new_esEs28(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 40.99/18.81 new_esEs33(yvy400, yvy300, ty_Bool) -> new_esEs12(yvy400, yvy300) 40.99/18.81 new_esEs18(yvy4000, yvy3000, app(app(ty_Either, bfb), bfc)) -> new_esEs5(yvy4000, yvy3000, bfb, bfc) 40.99/18.81 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 40.99/18.81 new_compare25(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs8(yvy79000, yvy80000)) 40.99/18.81 new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs8(yvy35, yvy30) 40.99/18.81 new_ltEs13(yvy7900, yvy8000, cge) -> new_fsEs(new_compare17(yvy7900, yvy8000, cge)) 40.99/18.81 new_esEs33(yvy400, yvy300, ty_Double) -> new_esEs13(yvy400, yvy300) 40.99/18.81 new_esEs25(yvy79001, yvy80001, ty_@0) -> new_esEs14(yvy79001, yvy80001) 40.99/18.81 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), hb, hc) -> new_asAs(new_esEs26(yvy4000, yvy3000, hb), new_esEs27(yvy4001, yvy3001, hc)) 40.99/18.81 new_esEs20(yvy4002, yvy3002, app(ty_Maybe, cad)) -> new_esEs7(yvy4002, yvy3002, cad) 40.99/18.81 new_ltEs5(GT, GT) -> True 40.99/18.81 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_@2, cca), ccb)) -> new_ltEs4(yvy79000, yvy80000, cca, ccb) 40.99/18.81 new_esEs8(LT, GT) -> False 40.99/18.81 new_esEs8(GT, LT) -> False 40.99/18.81 new_compare29(yvy79000, yvy80000, True) -> EQ 40.99/18.81 new_esEs31(yvy35, yvy30, app(ty_[], baf)) -> new_esEs15(yvy35, yvy30, baf) 40.99/18.81 new_esEs32(yvy20, yvy15, app(ty_Ratio, eaa)) -> new_esEs17(yvy20, yvy15, eaa) 40.99/18.81 new_esEs5(Left(yvy4000), Right(yvy3000), dg, cc) -> False 40.99/18.81 new_esEs5(Right(yvy4000), Left(yvy3000), dg, cc) -> False 40.99/18.81 new_esEs20(yvy4002, yvy3002, ty_Bool) -> new_esEs12(yvy4002, yvy3002) 40.99/18.81 new_lt19(yvy79001, yvy80001, app(ty_Maybe, dch)) -> new_lt6(yvy79001, yvy80001, dch) 40.99/18.81 new_lt13(yvy79000, yvy80000, ca, cb) -> new_esEs8(new_compare16(yvy79000, yvy80000, ca, cb), LT) 40.99/18.81 new_ltEs21(yvy79001, yvy80001, ty_Ordering) -> new_ltEs5(yvy79001, yvy80001) 40.99/18.81 new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs10(yvy35, yvy30) 40.99/18.81 new_esEs19(yvy4001, yvy3001, app(ty_[], bgc)) -> new_esEs15(yvy4001, yvy3001, bgc) 40.99/18.81 new_ltEs18(yvy7900, yvy8000, app(ty_Ratio, cge)) -> new_ltEs13(yvy7900, yvy8000, cge) 40.99/18.81 new_compare14(yvy79000, yvy80000, app(ty_Maybe, ha)) -> new_compare12(yvy79000, yvy80000, ha) 40.99/18.81 new_lt8(yvy79000, yvy80000) -> new_esEs8(new_compare26(yvy79000, yvy80000), LT) 40.99/18.81 new_compare113(yvy79000, yvy80000, False, fb) -> GT 40.99/18.81 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 40.99/18.81 new_primPlusNat0(Succ(yvy2010), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2010, yvy300000))) 40.99/18.81 new_lt14(yvy79000, yvy80000, cbg) -> new_esEs8(new_compare17(yvy79000, yvy80000, cbg), LT) 40.99/18.81 new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 40.99/18.81 new_esEs19(yvy4001, yvy3001, app(ty_Maybe, bhb)) -> new_esEs7(yvy4001, yvy3001, bhb) 40.99/18.81 new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 40.99/18.81 new_ltEs20(yvy79002, yvy80002, ty_Char) -> new_ltEs6(yvy79002, yvy80002) 40.99/18.81 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 40.99/18.81 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 40.99/18.81 new_esEs33(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 40.99/18.81 new_lt12(yvy79000, yvy80000) -> new_esEs8(new_compare6(yvy79000, yvy80000), LT) 40.99/18.81 new_lt16(yvy79000, yvy80000) -> new_esEs8(new_compare15(yvy79000, yvy80000), LT) 40.99/18.81 new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 40.99/18.81 new_primPlusNat1(Zero, Zero) -> Zero 40.99/18.81 new_esEs6(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), he, hf, hg) -> new_asAs(new_esEs18(yvy4000, yvy3000, he), new_asAs(new_esEs19(yvy4001, yvy3001, hf), new_esEs20(yvy4002, yvy3002, hg))) 40.99/18.81 new_esEs20(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 40.99/18.81 new_ltEs18(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 40.99/18.81 new_ltEs20(yvy79002, yvy80002, ty_Int) -> new_ltEs7(yvy79002, yvy80002) 40.99/18.81 new_ltEs21(yvy79001, yvy80001, app(app(ty_@2, eac), ead)) -> new_ltEs4(yvy79001, yvy80001, eac, ead) 40.99/18.81 new_esEs27(yvy4001, yvy3001, app(app(ty_@2, dfe), dff)) -> new_esEs4(yvy4001, yvy3001, dfe, dff) 40.99/18.81 new_lt18(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 40.99/18.81 new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 40.99/18.81 new_esEs28(yvy79000, yvy80000, app(ty_Ratio, cbg)) -> new_esEs17(yvy79000, yvy80000, cbg) 40.99/18.81 new_compare11(yvy79000, yvy80000, True) -> LT 40.99/18.81 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 40.99/18.81 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 40.99/18.81 new_ltEs4(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), cgc, cgd) -> new_pePe(new_lt20(yvy79000, yvy80000, cgc), new_asAs(new_esEs28(yvy79000, yvy80000, cgc), new_ltEs21(yvy79001, yvy80001, cgd))) 40.99/18.81 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 40.99/18.81 new_lt19(yvy79001, yvy80001, app(app(ty_@2, dbg), dbh)) -> new_lt13(yvy79001, yvy80001, dbg, dbh) 40.99/18.81 new_compare31(yvy20, yvy15, dgg, dgh) -> new_compare210(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, dgg), dgg, dgh) 40.99/18.81 new_compare16(yvy79000, yvy80000, ca, cb) -> new_compare23(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, ca, cb), ca, cb) 40.99/18.81 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 40.99/18.81 new_esEs28(yvy79000, yvy80000, app(app(ty_@2, ca), cb)) -> new_esEs4(yvy79000, yvy80000, ca, cb) 40.99/18.81 new_primCmpNat0(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 40.99/18.81 new_esEs20(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) 40.99/18.81 new_compare19(yvy79000, yvy80000, dac, dad) -> new_compare210(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, dac, dad), dac, dad) 40.99/18.81 new_compare30(yvy35, yvy30, bab, bac) -> new_compare210(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, bac), bab, bac) 40.99/18.81 new_compare3(:(yvy79000, yvy79001), [], fg) -> GT 40.99/18.81 new_compare14(yvy79000, yvy80000, ty_Bool) -> new_compare15(yvy79000, yvy80000) 40.99/18.81 new_esEs28(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 40.99/18.81 new_esEs5(Left(yvy4000), Left(yvy3000), ty_@0, cc) -> new_esEs14(yvy4000, yvy3000) 40.99/18.81 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_[], cda)) -> new_ltEs11(yvy79000, yvy80000, cda) 40.99/18.81 new_compare26(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) 40.99/18.81 new_ltEs18(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 40.99/18.81 new_compare32(yvy400, yvy300, h, ba) -> new_compare210(Left(yvy400), Right(yvy300), False, h, ba) 40.99/18.81 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 40.99/18.81 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 40.99/18.81 new_primCmpNat1(yvy7900, Succ(yvy8000)) -> new_primCmpNat0(yvy7900, yvy8000) 40.99/18.81 new_esEs18(yvy4000, yvy3000, app(ty_Maybe, bfh)) -> new_esEs7(yvy4000, yvy3000, bfh) 40.99/18.81 new_lt20(yvy79000, yvy80000, app(ty_Maybe, fb)) -> new_lt6(yvy79000, yvy80000, fb) 40.99/18.81 new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 40.99/18.81 new_primEqNat0(Zero, Zero) -> True 40.99/18.81 new_esEs28(yvy79000, yvy80000, app(app(ty_Either, dac), dad)) -> new_esEs5(yvy79000, yvy80000, dac, dad) 40.99/18.81 new_compare210(Right(yvy7900), Right(yvy8000), False, cga, cgb) -> new_compare112(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, cgb), cga, cgb) 40.99/18.81 new_esEs21(yvy4000, yvy3000, app(ty_[], ceg)) -> new_esEs15(yvy4000, yvy3000, ceg) 40.99/18.81 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 40.99/18.81 new_lt11(yvy79000, yvy80000, bbf) -> new_esEs8(new_compare3(yvy79000, yvy80000, bbf), LT) 40.99/18.81 new_esEs28(yvy79000, yvy80000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs6(yvy79000, yvy80000, fc, fd, ff) 40.99/18.81 new_compare29(yvy79000, yvy80000, False) -> new_compare111(yvy79000, yvy80000, new_ltEs8(yvy79000, yvy80000)) 40.99/18.81 new_compare33(yvy400, yvy300, h, ba) -> new_compare210(Right(yvy400), Left(yvy300), False, h, ba) 40.99/18.81 new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 40.99/18.81 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.81 new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 40.99/18.81 new_asAs(False, yvy222) -> False 40.99/18.81 new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 40.99/18.81 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 40.99/18.81 new_lt7(yvy79000, yvy80000, fc, fd, ff) -> new_esEs8(new_compare13(yvy79000, yvy80000, fc, fd, ff), LT) 40.99/18.81 new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs12(yvy35, yvy30) 40.99/18.81 new_ltEs5(GT, EQ) -> False 40.99/18.81 new_ltEs20(yvy79002, yvy80002, ty_Ordering) -> new_ltEs5(yvy79002, yvy80002) 40.99/18.81 new_esEs18(yvy4000, yvy3000, app(ty_Ratio, bfg)) -> new_esEs17(yvy4000, yvy3000, bfg) 40.99/18.81 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.81 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Char) -> new_esEs11(yvy4000, yvy3000) 40.99/18.81 new_ltEs21(yvy79001, yvy80001, app(ty_[], ebc)) -> new_ltEs11(yvy79001, yvy80001, ebc) 40.99/18.81 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Int, bbg) -> new_ltEs7(yvy79000, yvy80000) 40.99/18.81 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs6(yvy79000, yvy80000) 40.99/18.81 new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 40.99/18.81 new_lt18(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 40.99/18.81 new_lt18(yvy79000, yvy80000, app(app(ty_@2, dae), daf)) -> new_lt13(yvy79000, yvy80000, dae, daf) 40.99/18.81 new_esEs8(EQ, GT) -> False 40.99/18.81 new_esEs8(GT, EQ) -> False 40.99/18.81 new_compare210(Right(yvy7900), Left(yvy8000), False, cga, cgb) -> GT 40.99/18.81 new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.81 new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat0(yvy8000, yvy7900) 40.99/18.81 new_ltEs16(yvy7900, yvy8000) -> new_fsEs(new_compare9(yvy7900, yvy8000)) 40.99/18.81 new_ltEs18(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 40.99/18.81 new_esEs33(yvy400, yvy300, app(ty_[], hd)) -> new_esEs15(yvy400, yvy300, hd) 40.99/18.81 40.99/18.81 The set Q consists of the following terms: 40.99/18.81 40.99/18.81 new_lt18(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_ltEs18(x0, x1, ty_Bool) 40.99/18.81 new_ltEs21(x0, x1, ty_Ordering) 40.99/18.81 new_esEs28(x0, x1, ty_Integer) 40.99/18.81 new_esEs8(EQ, EQ) 40.99/18.81 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 40.99/18.81 new_esEs21(x0, x1, ty_Int) 40.99/18.81 new_ltEs20(x0, x1, ty_Char) 40.99/18.81 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_esEs20(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 40.99/18.81 new_esEs24(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_esEs26(x0, x1, ty_Float) 40.99/18.81 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_esEs18(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_primMulInt(Neg(x0), Neg(x1)) 40.99/18.81 new_ltEs17(Just(x0), Just(x1), ty_Char) 40.99/18.81 new_ltEs18(x0, x1, ty_@0) 40.99/18.81 new_ltEs21(x0, x1, ty_Double) 40.99/18.81 new_compare10(x0, x1, True, x2, x3) 40.99/18.81 new_esEs34(x0, x1, ty_Bool) 40.99/18.81 new_primPlusNat1(Zero, Zero) 40.99/18.81 new_ltEs15(x0, x1) 40.99/18.81 new_compare210(x0, x1, True, x2, x3) 40.99/18.81 new_esEs24(x0, x1, ty_Integer) 40.99/18.81 new_esEs25(x0, x1, ty_Float) 40.99/18.81 new_esEs18(x0, x1, ty_Integer) 40.99/18.81 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 40.99/18.81 new_compare14(x0, x1, ty_Ordering) 40.99/18.81 new_esEs34(x0, x1, ty_Integer) 40.99/18.81 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 40.99/18.81 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 40.99/18.81 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 40.99/18.81 new_primCompAux00(x0, GT) 40.99/18.81 new_primEqInt(Pos(Zero), Pos(Zero)) 40.99/18.81 new_primMulInt(Pos(x0), Pos(x1)) 40.99/18.81 new_esEs21(x0, x1, ty_Double) 40.99/18.81 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_esEs32(x0, x1, ty_Integer) 40.99/18.81 new_compare29(x0, x1, False) 40.99/18.81 new_esEs27(x0, x1, ty_Float) 40.99/18.81 new_ltEs17(Just(x0), Just(x1), ty_Int) 40.99/18.81 new_primCmpNat0(Zero, Succ(x0)) 40.99/18.81 new_ltEs17(Just(x0), Just(x1), ty_@0) 40.99/18.81 new_esEs25(x0, x1, app(ty_[], x2)) 40.99/18.81 new_esEs28(x0, x1, app(ty_[], x2)) 40.99/18.81 new_esEs15([], :(x0, x1), x2) 40.99/18.81 new_esEs21(x0, x1, ty_Char) 40.99/18.81 new_lt19(x0, x1, app(ty_[], x2)) 40.99/18.81 new_esEs32(x0, x1, ty_Float) 40.99/18.81 new_compare13(x0, x1, x2, x3, x4) 40.99/18.81 new_compare14(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_ltEs21(x0, x1, ty_Int) 40.99/18.81 new_primEqInt(Neg(Zero), Neg(Zero)) 40.99/18.81 new_primCmpNat0(Succ(x0), Succ(x1)) 40.99/18.81 new_compare3(:(x0, x1), [], x2) 40.99/18.81 new_compare11(x0, x1, False) 40.99/18.81 new_ltEs7(x0, x1) 40.99/18.81 new_primPlusNat0(Zero, x0) 40.99/18.81 new_esEs19(x0, x1, app(ty_[], x2)) 40.99/18.81 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 40.99/18.81 new_compare210(Right(x0), Right(x1), False, x2, x3) 40.99/18.81 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_esEs28(x0, x1, ty_Bool) 40.99/18.81 new_sr(x0, x1) 40.99/18.81 new_esEs12(False, True) 40.99/18.81 new_esEs12(True, False) 40.99/18.81 new_compare19(x0, x1, x2, x3) 40.99/18.81 new_ltEs20(x0, x1, ty_Double) 40.99/18.81 new_ltEs5(LT, GT) 40.99/18.81 new_ltEs5(GT, LT) 40.99/18.81 new_lt18(x0, x1, app(ty_[], x2)) 40.99/18.81 new_ltEs17(Just(x0), Just(x1), ty_Bool) 40.99/18.81 new_compare33(x0, x1, x2, x3) 40.99/18.81 new_primCmpNat2(Succ(x0), x1) 40.99/18.81 new_ltEs20(x0, x1, ty_@0) 40.99/18.81 new_esEs33(x0, x1, app(ty_[], x2)) 40.99/18.81 new_lt12(x0, x1) 40.99/18.81 new_ltEs8(False, False) 40.99/18.81 new_primCmpNat2(Zero, x0) 40.99/18.81 new_esEs18(x0, x1, ty_@0) 40.99/18.81 new_compare26(Integer(x0), Integer(x1)) 40.99/18.81 new_esEs34(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_esEs31(x0, x1, ty_Bool) 40.99/18.81 new_esEs19(x0, x1, ty_Integer) 40.99/18.81 new_esEs18(x0, x1, app(ty_[], x2)) 40.99/18.81 new_ltEs21(x0, x1, ty_Char) 40.99/18.81 new_esEs18(x0, x1, ty_Bool) 40.99/18.81 new_ltEs17(Just(x0), Just(x1), ty_Double) 40.99/18.81 new_esEs7(Just(x0), Just(x1), ty_@0) 40.99/18.81 new_compare29(x0, x1, True) 40.99/18.81 new_ltEs20(x0, x1, ty_Bool) 40.99/18.81 new_esEs33(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_esEs7(Just(x0), Just(x1), ty_Bool) 40.99/18.81 new_esEs18(x0, x1, ty_Float) 40.99/18.81 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 40.99/18.81 new_lt10(x0, x1) 40.99/18.81 new_lt18(x0, x1, ty_Float) 40.99/18.81 new_esEs20(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) 40.99/18.81 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_primEqInt(Pos(Zero), Neg(Zero)) 40.99/18.81 new_primEqInt(Neg(Zero), Pos(Zero)) 40.99/18.81 new_esEs21(x0, x1, ty_Ordering) 40.99/18.81 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_ltEs20(x0, x1, ty_Int) 40.99/18.81 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 40.99/18.81 new_ltEs18(x0, x1, ty_Integer) 40.99/18.81 new_lt18(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_esEs33(x0, x1, ty_Double) 40.99/18.81 new_esEs31(x0, x1, ty_Double) 40.99/18.81 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 40.99/18.81 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 40.99/18.81 new_esEs7(Just(x0), Just(x1), ty_Int) 40.99/18.81 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_esEs31(x0, x1, ty_Char) 40.99/18.81 new_lt20(x0, x1, ty_Double) 40.99/18.81 new_esEs31(x0, x1, ty_@0) 40.99/18.81 new_compare3([], :(x0, x1), x2) 40.99/18.81 new_esEs25(x0, x1, ty_@0) 40.99/18.81 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_esEs31(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 40.99/18.81 new_esEs7(Just(x0), Just(x1), ty_Char) 40.99/18.81 new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_esEs28(x0, x1, ty_@0) 40.99/18.81 new_esEs31(x0, x1, ty_Int) 40.99/18.81 new_esEs21(x0, x1, app(ty_[], x2)) 40.99/18.81 new_esEs7(Just(x0), Just(x1), ty_Double) 40.99/18.81 new_esEs28(x0, x1, ty_Float) 40.99/18.81 new_primEqNat0(Succ(x0), Zero) 40.99/18.81 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 40.99/18.81 new_compare14(x0, x1, ty_@0) 40.99/18.81 new_primMulNat0(Succ(x0), Succ(x1)) 40.99/18.81 new_esEs20(x0, x1, ty_Float) 40.99/18.81 new_esEs31(x0, x1, app(ty_[], x2)) 40.99/18.81 new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 40.99/18.81 new_ltEs18(x0, x1, ty_Float) 40.99/18.81 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 40.99/18.81 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 40.99/18.81 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 40.99/18.81 new_esEs33(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_esEs28(x0, x1, ty_Int) 40.99/18.81 new_ltEs21(x0, x1, ty_Bool) 40.99/18.81 new_esEs33(x0, x1, ty_Int) 40.99/18.81 new_esEs34(x0, x1, ty_Ordering) 40.99/18.81 new_esEs22(x0, x1, ty_Integer) 40.99/18.81 new_ltEs19(x0, x1, ty_Ordering) 40.99/18.81 new_compare28(x0, x1, True, x2) 40.99/18.81 new_compare10(x0, x1, False, x2, x3) 40.99/18.81 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_ltEs20(x0, x1, ty_Integer) 40.99/18.81 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_esEs27(x0, x1, app(ty_[], x2)) 40.99/18.81 new_esEs28(x0, x1, ty_Char) 40.99/18.81 new_primEqNat0(Succ(x0), Succ(x1)) 40.99/18.81 new_lt20(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_primCompAux0(x0, x1, x2, x3) 40.99/18.81 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 40.99/18.81 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_esEs34(x0, x1, ty_Float) 40.99/18.81 new_lt20(x0, x1, ty_Float) 40.99/18.81 new_compare24(x0, x1, True) 40.99/18.81 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 40.99/18.81 new_esEs15(:(x0, x1), [], x2) 40.99/18.81 new_esEs7(Just(x0), Just(x1), ty_Integer) 40.99/18.81 new_compare210(Left(x0), Right(x1), False, x2, x3) 40.99/18.81 new_compare210(Right(x0), Left(x1), False, x2, x3) 40.99/18.81 new_ltEs17(Just(x0), Just(x1), ty_Integer) 40.99/18.81 new_ltEs18(x0, x1, ty_Int) 40.99/18.81 new_esEs21(x0, x1, ty_Bool) 40.99/18.81 new_primPlusNat0(Succ(x0), x1) 40.99/18.81 new_esEs25(x0, x1, ty_Bool) 40.99/18.81 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 40.99/18.81 new_compare114(x0, x1, True, x2, x3) 40.99/18.81 new_esEs33(x0, x1, ty_Float) 40.99/18.81 new_esEs20(x0, x1, ty_Int) 40.99/18.81 new_esEs7(Just(x0), Nothing, x1) 40.99/18.81 new_ltEs5(EQ, GT) 40.99/18.81 new_ltEs5(GT, EQ) 40.99/18.81 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 40.99/18.81 new_esEs20(x0, x1, app(ty_[], x2)) 40.99/18.81 new_esEs25(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_esEs26(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 40.99/18.81 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 40.99/18.81 new_ltEs18(x0, x1, ty_Char) 40.99/18.81 new_esEs20(x0, x1, ty_Char) 40.99/18.81 new_primMulNat0(Succ(x0), Zero) 40.99/18.81 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 40.99/18.81 new_esEs32(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_esEs32(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_esEs8(GT, GT) 40.99/18.81 new_sr0(Integer(x0), Integer(x1)) 40.99/18.81 new_esEs8(LT, EQ) 40.99/18.81 new_esEs8(EQ, LT) 40.99/18.81 new_ltEs19(x0, x1, ty_Float) 40.99/18.81 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 40.99/18.81 new_primCmpInt(Neg(Zero), Neg(Zero)) 40.99/18.81 new_ltEs17(Just(x0), Just(x1), ty_Ordering) 40.99/18.81 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_esEs18(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_esEs7(Just(x0), Just(x1), ty_Ordering) 40.99/18.81 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 40.99/18.81 new_compare25(x0, x1) 40.99/18.81 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_esEs8(LT, LT) 40.99/18.81 new_ltEs19(x0, x1, ty_Char) 40.99/18.81 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_primCmpInt(Pos(Zero), Neg(Zero)) 40.99/18.81 new_primCmpInt(Neg(Zero), Pos(Zero)) 40.99/18.81 new_esEs24(x0, x1, ty_Double) 40.99/18.81 new_esEs31(x0, x1, ty_Ordering) 40.99/18.81 new_ltEs20(x0, x1, ty_Ordering) 40.99/18.81 new_esEs24(x0, x1, ty_@0) 40.99/18.81 new_compare11(x0, x1, True) 40.99/18.81 new_esEs32(x0, x1, ty_Int) 40.99/18.81 new_lt19(x0, x1, ty_Double) 40.99/18.81 new_ltEs17(Nothing, Just(x0), x1) 40.99/18.81 new_esEs19(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_ltEs8(True, False) 40.99/18.81 new_ltEs8(False, True) 40.99/18.81 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_ltEs19(x0, x1, ty_Int) 40.99/18.81 new_esEs25(x0, x1, ty_Integer) 40.99/18.81 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_lt8(x0, x1) 40.99/18.81 new_esEs31(x0, x1, ty_Integer) 40.99/18.81 new_esEs27(x0, x1, ty_@0) 40.99/18.81 new_esEs28(x0, x1, ty_Ordering) 40.99/18.81 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 40.99/18.81 new_pePe(True, x0) 40.99/18.81 new_esEs19(x0, x1, ty_Double) 40.99/18.81 new_esEs34(x0, x1, ty_Char) 40.99/18.81 new_esEs19(x0, x1, ty_@0) 40.99/18.81 new_esEs32(x0, x1, ty_Char) 40.99/18.81 new_esEs21(x0, x1, ty_Float) 40.99/18.81 new_esEs25(x0, x1, ty_Ordering) 40.99/18.81 new_compare113(x0, x1, True, x2) 40.99/18.81 new_esEs28(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 40.99/18.81 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 40.99/18.81 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_asAs(False, x0) 40.99/18.81 new_fsEs(x0) 40.99/18.81 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 40.99/18.81 new_esEs32(x0, x1, app(ty_[], x2)) 40.99/18.81 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_esEs32(x0, x1, ty_Bool) 40.99/18.81 new_primPlusNat1(Succ(x0), Succ(x1)) 40.99/18.81 new_esEs34(x0, x1, ty_Int) 40.99/18.81 new_lt19(x0, x1, ty_@0) 40.99/18.81 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 40.99/18.81 new_lt6(x0, x1, x2) 40.99/18.81 new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) 40.99/18.81 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 40.99/18.81 new_compare110(x0, x1, True, x2, x3, x4) 40.99/18.81 new_ltEs19(x0, x1, ty_Bool) 40.99/18.81 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 40.99/18.81 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 40.99/18.81 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 40.99/18.81 new_esEs27(x0, x1, ty_Double) 40.99/18.81 new_compare14(x0, x1, ty_Double) 40.99/18.81 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_lt18(x0, x1, ty_Int) 40.99/18.81 new_compare210(Left(x0), Left(x1), False, x2, x3) 40.99/18.81 new_esEs20(x0, x1, ty_Bool) 40.99/18.81 new_compare28(x0, x1, False, x2) 40.99/18.81 new_esEs26(x0, x1, ty_Ordering) 40.99/18.81 new_esEs22(x0, x1, ty_Int) 40.99/18.81 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 40.99/18.81 new_ltEs18(x0, x1, app(ty_[], x2)) 40.99/18.81 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 40.99/18.81 new_ltEs19(x0, x1, ty_@0) 40.99/18.81 new_lt18(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 40.99/18.81 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_compare24(x0, x1, False) 40.99/18.81 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 40.99/18.81 new_lt19(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_esEs27(x0, x1, ty_Int) 40.99/18.81 new_primCompAux00(x0, LT) 40.99/18.81 new_esEs20(x0, x1, ty_@0) 40.99/18.81 new_compare14(x0, x1, ty_Float) 40.99/18.81 new_lt20(x0, x1, ty_Integer) 40.99/18.81 new_primCmpNat0(Succ(x0), Zero) 40.99/18.81 new_primMulNat0(Zero, Zero) 40.99/18.81 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_lt4(x0, x1) 40.99/18.81 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 40.99/18.81 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_lt17(x0, x1, x2, x3) 40.99/18.81 new_lt20(x0, x1, ty_Bool) 40.99/18.81 new_ltEs21(x0, x1, ty_Float) 40.99/18.81 new_compare3(:(x0, x1), :(x2, x3), x4) 40.99/18.81 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 40.99/18.81 new_esEs19(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 40.99/18.81 new_lt20(x0, x1, app(ty_[], x2)) 40.99/18.81 new_pePe(False, x0) 40.99/18.81 new_ltEs14(x0, x1) 40.99/18.81 new_compare9(@0, @0) 40.99/18.81 new_esEs33(x0, x1, ty_@0) 40.99/18.81 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 40.99/18.81 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_compare8(Char(x0), Char(x1)) 40.99/18.81 new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_esEs15(:(x0, x1), :(x2, x3), x4) 40.99/18.81 new_compare23(x0, x1, True, x2, x3) 40.99/18.81 new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) 40.99/18.81 new_compare16(x0, x1, x2, x3) 40.99/18.81 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 40.99/18.81 new_compare113(x0, x1, False, x2) 40.99/18.81 new_esEs23(x0, x1, ty_Int) 40.99/18.81 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 40.99/18.81 new_esEs33(x0, x1, ty_Integer) 40.99/18.81 new_esEs32(x0, x1, ty_Ordering) 40.99/18.81 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 40.99/18.81 new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 40.99/18.81 new_esEs15([], [], x0) 40.99/18.81 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 40.99/18.81 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 40.99/18.81 new_ltEs12(Left(x0), Right(x1), x2, x3) 40.99/18.81 new_ltEs12(Right(x0), Left(x1), x2, x3) 40.99/18.81 new_ltEs19(x0, x1, ty_Integer) 40.99/18.81 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 40.99/18.81 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 40.99/18.81 new_compare112(x0, x1, False, x2, x3) 40.99/18.81 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_lt19(x0, x1, ty_Ordering) 40.99/18.81 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 40.99/18.81 new_compare30(x0, x1, x2, x3) 40.99/18.81 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 40.99/18.81 new_not(True) 40.99/18.81 new_lt7(x0, x1, x2, x3, x4) 40.99/18.81 new_ltEs20(x0, x1, ty_Float) 40.99/18.81 new_lt9(x0, x1) 40.99/18.81 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 40.99/18.81 new_primCmpNat1(x0, Zero) 40.99/18.81 new_esEs18(x0, x1, ty_Double) 40.99/18.81 new_lt18(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 40.99/18.81 new_esEs8(EQ, GT) 40.99/18.81 new_esEs8(GT, EQ) 40.99/18.81 new_esEs12(False, False) 40.99/18.81 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 40.99/18.81 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 40.99/18.81 new_compare14(x0, x1, ty_Integer) 40.99/18.81 new_esEs24(x0, x1, ty_Ordering) 40.99/18.81 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 40.99/18.81 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 40.99/18.81 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 40.99/18.81 new_compare3([], [], x0) 40.99/18.81 new_compare32(x0, x1, x2, x3) 40.99/18.81 new_ltEs6(x0, x1) 40.99/18.81 new_ltEs21(x0, x1, app(ty_[], x2)) 40.99/18.81 new_esEs28(x0, x1, ty_Double) 40.99/18.81 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_esEs7(Just(x0), Just(x1), ty_Float) 40.99/18.81 new_esEs20(x0, x1, ty_Integer) 40.99/18.81 new_ltEs19(x0, x1, app(ty_[], x2)) 40.99/18.81 new_esEs31(x0, x1, ty_Float) 40.99/18.81 new_esEs27(x0, x1, ty_Ordering) 40.99/18.81 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 40.99/18.81 new_ltEs11(x0, x1, x2) 40.99/18.81 new_lt15(x0, x1) 40.99/18.81 new_compare23(x0, x1, False, x2, x3) 40.99/18.81 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 40.99/18.81 new_esEs21(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_lt19(x0, x1, ty_Integer) 40.99/18.81 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 40.99/18.81 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_esEs33(x0, x1, ty_Char) 40.99/18.81 new_esEs26(x0, x1, ty_Int) 40.99/18.81 new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 40.99/18.81 new_compare111(x0, x1, False) 40.99/18.81 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 40.99/18.81 new_lt18(x0, x1, ty_Double) 40.99/18.81 new_esEs25(x0, x1, ty_Double) 40.99/18.81 new_lt18(x0, x1, ty_Char) 40.99/18.81 new_compare31(x0, x1, x2, x3) 40.99/18.81 new_lt20(x0, x1, ty_Char) 40.99/18.81 new_lt20(x0, x1, ty_@0) 40.99/18.81 new_esEs25(x0, x1, ty_Char) 40.99/18.81 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 40.99/18.81 new_lt18(x0, x1, ty_@0) 40.99/18.81 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 40.99/18.81 new_esEs19(x0, x1, ty_Ordering) 40.99/18.81 new_esEs7(Nothing, Just(x0), x1) 40.99/18.81 new_compare27(x0, x1, True, x2, x3, x4) 40.99/18.81 new_esEs18(x0, x1, ty_Int) 40.99/18.81 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 40.99/18.81 new_esEs26(x0, x1, ty_Double) 40.99/18.81 new_esEs34(x0, x1, app(ty_[], x2)) 40.99/18.81 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 40.99/18.81 new_esEs26(x0, x1, ty_Char) 40.99/18.81 new_lt20(x0, x1, ty_Int) 40.99/18.81 new_esEs33(x0, x1, ty_Bool) 40.99/18.81 new_ltEs13(x0, x1, x2) 40.99/18.81 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_esEs11(Char(x0), Char(x1)) 40.99/18.81 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_ltEs5(LT, LT) 40.99/18.81 new_esEs25(x0, x1, ty_Int) 40.99/18.81 new_primCmpInt(Pos(Zero), Pos(Zero)) 40.99/18.81 new_esEs25(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 40.99/18.81 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 40.99/18.81 new_esEs18(x0, x1, ty_Char) 40.99/18.81 new_esEs21(x0, x1, ty_Integer) 40.99/18.81 new_esEs34(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_esEs14(@0, @0) 40.99/18.81 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_compare14(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_ltEs18(x0, x1, ty_Double) 40.99/18.81 new_esEs20(x0, x1, ty_Ordering) 40.99/18.81 new_esEs26(x0, x1, app(ty_[], x2)) 40.99/18.81 new_compare110(x0, x1, False, x2, x3, x4) 40.99/18.81 new_ltEs18(x0, x1, ty_Ordering) 40.99/18.81 new_esEs24(x0, x1, ty_Char) 40.99/18.81 new_ltEs5(LT, EQ) 40.99/18.81 new_ltEs5(EQ, LT) 40.99/18.81 new_esEs20(x0, x1, ty_Double) 40.99/18.81 new_compare14(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_esEs27(x0, x1, ty_Integer) 40.99/18.81 new_ltEs5(GT, GT) 40.99/18.81 new_ltEs19(x0, x1, ty_Double) 40.99/18.81 new_esEs26(x0, x1, ty_Bool) 40.99/18.81 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_compare15(x0, x1) 40.99/18.81 new_compare14(x0, x1, ty_Bool) 40.99/18.81 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 40.99/18.81 new_esEs26(x0, x1, ty_@0) 40.99/18.81 new_ltEs17(Nothing, Nothing, x0) 40.99/18.81 new_esEs26(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 40.99/18.81 new_lt18(x0, x1, ty_Integer) 40.99/18.81 new_esEs10(Integer(x0), Integer(x1)) 40.99/18.81 new_esEs8(LT, GT) 40.99/18.81 new_esEs8(GT, LT) 40.99/18.81 new_esEs5(Left(x0), Right(x1), x2, x3) 40.99/18.81 new_esEs5(Right(x0), Left(x1), x2, x3) 40.99/18.81 new_esEs9(x0, x1) 40.99/18.81 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 40.99/18.81 new_ltEs21(x0, x1, ty_Integer) 40.99/18.81 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_compare12(x0, x1, x2) 40.99/18.81 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 40.99/18.81 new_lt18(x0, x1, ty_Bool) 40.99/18.81 new_compare17(:%(x0, x1), :%(x2, x3), ty_Int) 40.99/18.81 new_esEs26(x0, x1, ty_Integer) 40.99/18.81 new_esEs27(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 40.99/18.81 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 40.99/18.81 new_esEs32(x0, x1, ty_@0) 40.99/18.81 new_ltEs17(Just(x0), Nothing, x1) 40.99/18.81 new_esEs24(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_esEs17(:%(x0, x1), :%(x2, x3), x4) 40.99/18.81 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 40.99/18.81 new_esEs23(x0, x1, ty_Integer) 40.99/18.81 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_lt13(x0, x1, x2, x3) 40.99/18.81 new_esEs27(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_esEs33(x0, x1, ty_Ordering) 40.99/18.81 new_compare27(x0, x1, False, x2, x3, x4) 40.99/18.81 new_ltEs21(x0, x1, ty_@0) 40.99/18.81 new_asAs(True, x0) 40.99/18.81 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 40.99/18.81 new_lt16(x0, x1) 40.99/18.81 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 40.99/18.81 new_primCompAux00(x0, EQ) 40.99/18.81 new_compare111(x0, x1, True) 40.99/18.81 new_compare14(x0, x1, app(ty_[], x2)) 40.99/18.81 new_primPlusNat1(Zero, Succ(x0)) 40.99/18.81 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.81 new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 40.99/18.81 new_esEs24(x0, x1, ty_Float) 40.99/18.81 new_primEqNat0(Zero, Zero) 40.99/18.81 new_compare14(x0, x1, ty_Char) 40.99/18.81 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_esEs24(x0, x1, ty_Bool) 40.99/18.81 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_lt19(x0, x1, ty_Bool) 40.99/18.81 new_esEs12(True, True) 40.99/18.81 new_not(False) 40.99/18.81 new_ltEs17(Just(x0), Just(x1), ty_Float) 40.99/18.81 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_lt20(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_lt18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_ltEs20(x0, x1, app(ty_[], x2)) 40.99/18.81 new_esEs31(x0, x1, app(ty_Maybe, x2)) 40.99/18.81 new_primPlusNat1(Succ(x0), Zero) 40.99/18.81 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_compare14(x0, x1, ty_Int) 40.99/18.81 new_lt14(x0, x1, x2) 40.99/18.81 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 40.99/18.81 new_esEs19(x0, x1, ty_Bool) 40.99/18.81 new_esEs7(Nothing, Nothing, x0) 40.99/18.81 new_esEs21(x0, x1, ty_@0) 40.99/18.81 new_compare17(:%(x0, x1), :%(x2, x3), ty_Integer) 40.99/18.81 new_ltEs10(x0, x1) 40.99/18.81 new_esEs32(x0, x1, ty_Double) 40.99/18.81 new_lt11(x0, x1, x2) 40.99/18.81 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 40.99/18.81 new_ltEs8(True, True) 40.99/18.81 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_esEs19(x0, x1, ty_Float) 40.99/18.81 new_lt19(x0, x1, ty_Float) 40.99/18.81 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 40.99/18.81 new_esEs13(Double(x0, x1), Double(x2, x3)) 40.99/18.81 new_esEs21(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 40.99/18.81 new_esEs24(x0, x1, app(ty_[], x2)) 40.99/18.81 new_esEs24(x0, x1, ty_Int) 40.99/18.81 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.81 new_ltEs5(EQ, EQ) 40.99/18.81 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.81 new_compare14(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_esEs34(x0, x1, ty_Double) 40.99/18.81 new_compare112(x0, x1, True, x2, x3) 40.99/18.81 new_esEs27(x0, x1, ty_Bool) 40.99/18.81 new_esEs28(x0, x1, app(ty_Ratio, x2)) 40.99/18.81 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 40.99/18.81 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 40.99/18.81 new_lt5(x0, x1) 40.99/18.81 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 40.99/18.81 new_esEs16(Float(x0, x1), Float(x2, x3)) 40.99/18.81 new_lt18(x0, x1, ty_Ordering) 40.99/18.81 new_esEs19(x0, x1, ty_Char) 40.99/18.81 new_lt19(x0, x1, ty_Char) 40.99/18.81 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 40.99/18.81 new_esEs18(x0, x1, ty_Ordering) 40.99/18.81 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 40.99/18.81 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 40.99/18.81 new_esEs34(x0, x1, ty_@0) 40.99/18.81 new_lt20(x0, x1, ty_Ordering) 40.99/18.81 new_ltEs16(x0, x1) 40.99/18.81 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 40.99/18.82 new_primCmpNat1(x0, Succ(x1)) 40.99/18.82 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_primMulInt(Pos(x0), Neg(x1)) 40.99/18.82 new_primMulInt(Neg(x0), Pos(x1)) 40.99/18.82 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_esEs19(x0, x1, ty_Int) 40.99/18.82 new_compare7(x0, x1) 40.99/18.82 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_esEs27(x0, x1, ty_Char) 40.99/18.82 new_primMulNat0(Zero, Succ(x0)) 40.99/18.82 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 40.99/18.82 new_primCmpNat0(Zero, Zero) 40.99/18.82 new_primEqNat0(Zero, Succ(x0)) 40.99/18.82 new_compare114(x0, x1, False, x2, x3) 40.99/18.82 new_lt19(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_lt19(x0, x1, ty_Int) 40.99/18.82 40.99/18.82 We have to consider all minimal (P,Q,R)-chains. 40.99/18.82 ---------------------------------------- 40.99/18.82 40.99/18.82 (21) DependencyGraphProof (EQUIVALENT) 40.99/18.82 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 40.99/18.82 ---------------------------------------- 40.99/18.82 40.99/18.82 (22) 40.99/18.82 Complex Obligation (AND) 40.99/18.82 40.99/18.82 ---------------------------------------- 40.99/18.82 40.99/18.82 (23) 40.99/18.82 Obligation: 40.99/18.82 Q DP problem: 40.99/18.82 The TRS P consists of the following rules: 40.99/18.82 40.99/18.82 new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitGT(yvy33, yvy400, h, ba, bb) 40.99/18.82 new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Left(yvy400), h, ba, bb) 40.99/18.82 new_splitGT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitGT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Left(yvy400), Right(yvy300), False, h, ba), GT), h, ba, bb) 40.99/18.82 new_splitGT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare32(yvy400, yvy300, h, ba), LT), h, ba, bb) 40.99/18.82 new_splitGT20(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Left(yvy400), h, ba, bb) 40.99/18.82 new_splitGT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Left(yvy400), Left(yvy300), new_esEs33(yvy400, yvy300, h), h, ba), GT), h, ba, bb) 40.99/18.82 new_splitGT2(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bc, bd, be) -> new_splitGT(yvy49, yvy50, bc, bd, be) 40.99/18.82 new_splitGT2(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, False, bc, bd, be) -> new_splitGT1(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, new_esEs8(new_compare31(yvy50, yvy45, bc, bd), LT), bc, bd, be) 40.99/18.82 new_splitGT1(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bc, bd, be) -> new_splitGT(yvy48, yvy50, bc, bd, be) 40.99/18.82 40.99/18.82 The TRS R consists of the following rules: 40.99/18.82 40.99/18.82 new_esEs33(yvy400, yvy300, app(app(ty_Either, dg), cc)) -> new_esEs5(yvy400, yvy300, dg, cc) 40.99/18.82 new_ltEs20(yvy79002, yvy80002, app(ty_[], dea)) -> new_ltEs11(yvy79002, yvy80002, dea) 40.99/18.82 new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT 40.99/18.82 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 40.99/18.82 new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, ty_Bool) -> new_ltEs8(yvy79001, yvy80001) 40.99/18.82 new_esEs24(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Ordering, cc) -> new_esEs8(yvy4000, yvy3000) 40.99/18.82 new_pePe(True, yvy255) -> True 40.99/18.82 new_esEs25(yvy79001, yvy80001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(yvy79001, yvy80001, dcd, dce, dcf) 40.99/18.82 new_esEs34(yvy400, yvy300, ty_Bool) -> new_esEs12(yvy400, yvy300) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Ratio, ccc)) -> new_ltEs13(yvy79000, yvy80000, ccc) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(ty_Ratio, bde)) -> new_ltEs13(yvy79000, yvy80000, bde) 40.99/18.82 new_esEs19(yvy4001, yvy3001, app(ty_Ratio, bha)) -> new_esEs17(yvy4001, yvy3001, bha) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.82 new_esEs34(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Double) -> new_ltEs14(yvy79000, yvy80000) 40.99/18.82 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 40.99/18.82 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 40.99/18.82 new_esEs27(yvy4001, yvy3001, app(app(ty_Either, dfh), dga)) -> new_esEs5(yvy4001, yvy3001, dfh, dga) 40.99/18.82 new_esEs33(yvy400, yvy300, ty_Int) -> new_esEs9(yvy400, yvy300) 40.99/18.82 new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT 40.99/18.82 new_lt18(yvy79000, yvy80000, app(ty_Maybe, dbf)) -> new_lt6(yvy79000, yvy80000, dbf) 40.99/18.82 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 40.99/18.82 new_esEs9(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 40.99/18.82 new_lt20(yvy79000, yvy80000, app(app(ty_Either, dac), dad)) -> new_lt17(yvy79000, yvy80000, dac, dad) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs12(yvy4000, yvy3000) 40.99/18.82 new_esEs24(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cbf)) -> new_esEs7(yvy4000, yvy3000, cbf) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Char, cc) -> new_esEs11(yvy4000, yvy3000) 40.99/18.82 new_esEs28(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 40.99/18.82 new_esEs34(yvy400, yvy300, app(ty_Maybe, ced)) -> new_esEs7(yvy400, yvy300, ced) 40.99/18.82 new_ltEs12(Left(yvy79000), Right(yvy80000), bdb, bbg) -> True 40.99/18.82 new_ltEs21(yvy79001, yvy80001, ty_Char) -> new_ltEs6(yvy79001, yvy80001) 40.99/18.82 new_esEs28(yvy79000, yvy80000, app(ty_Maybe, fb)) -> new_esEs7(yvy79000, yvy80000, fb) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Ratio, bcb), bbg) -> new_ltEs13(yvy79000, yvy80000, bcb) 40.99/18.82 new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 40.99/18.82 new_esEs18(yvy4000, yvy3000, app(app(ty_@2, beg), beh)) -> new_esEs4(yvy4000, yvy3000, beg, beh) 40.99/18.82 new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt16(yvy79001, yvy80001) 40.99/18.82 new_lt19(yvy79001, yvy80001, app(app(ty_Either, dcb), dcc)) -> new_lt17(yvy79001, yvy80001, dcb, dcc) 40.99/18.82 new_esEs26(yvy4000, yvy3000, app(ty_[], dee)) -> new_esEs15(yvy4000, yvy3000, dee) 40.99/18.82 new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt4(yvy79001, yvy80001) 40.99/18.82 new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 40.99/18.82 new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) 40.99/18.82 new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 40.99/18.82 new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs13(yvy20, yvy15) 40.99/18.82 new_compare14(yvy79000, yvy80000, app(ty_[], gh)) -> new_compare3(yvy79000, yvy80000, gh) 40.99/18.82 new_compare3([], [], fg) -> EQ 40.99/18.82 new_esEs28(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 40.99/18.82 new_esEs8(GT, GT) -> True 40.99/18.82 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 40.99/18.82 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 40.99/18.82 new_ltEs19(yvy7900, yvy8000, app(ty_[], daa)) -> new_ltEs11(yvy7900, yvy8000, daa) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, app(app(ty_@2, cgc), cgd)) -> new_ltEs4(yvy7900, yvy8000, cgc, cgd) 40.99/18.82 new_fsEs(yvy244) -> new_not(new_esEs8(yvy244, GT)) 40.99/18.82 new_esEs25(yvy79001, yvy80001, app(ty_Ratio, dca)) -> new_esEs17(yvy79001, yvy80001, dca) 40.99/18.82 new_compare210(yvy790, yvy800, True, cga, cgb) -> EQ 40.99/18.82 new_esEs31(yvy35, yvy30, app(ty_Ratio, bbd)) -> new_esEs17(yvy35, yvy30, bbd) 40.99/18.82 new_esEs32(yvy20, yvy15, app(ty_[], dhc)) -> new_esEs15(yvy20, yvy15, dhc) 40.99/18.82 new_lt20(yvy79000, yvy80000, app(app(ty_@2, ca), cb)) -> new_lt13(yvy79000, yvy80000, ca, cb) 40.99/18.82 new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare18(yvy7900, yvy8000)) 40.99/18.82 new_esEs24(yvy79000, yvy80000, app(app(ty_@2, dae), daf)) -> new_esEs4(yvy79000, yvy80000, dae, daf) 40.99/18.82 new_lt18(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 40.99/18.82 new_compare28(yvy79000, yvy80000, False, fb) -> new_compare113(yvy79000, yvy80000, new_ltEs17(yvy79000, yvy80000, fb), fb) 40.99/18.82 new_lt18(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 40.99/18.82 new_esEs8(EQ, EQ) -> True 40.99/18.82 new_ltEs11(yvy7900, yvy8000, fg) -> new_fsEs(new_compare3(yvy7900, yvy8000, fg)) 40.99/18.82 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 40.99/18.82 new_esEs20(yvy4002, yvy3002, app(ty_Ratio, cac)) -> new_esEs17(yvy4002, yvy3002, cac) 40.99/18.82 new_ltEs20(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(app(ty_@2, dh), ea)) -> new_esEs4(yvy4000, yvy3000, dh, ea) 40.99/18.82 new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 40.99/18.82 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 40.99/18.82 new_compare13(yvy79000, yvy80000, fc, fd, ff) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, fc, fd, ff), fc, fd, ff) 40.99/18.82 new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_@0) -> new_esEs14(yvy4000, yvy3000) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_Either, ccd), cce)) -> new_ltEs12(yvy79000, yvy80000, ccd, cce) 40.99/18.82 new_not(True) -> False 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs14(yvy79000, yvy80000) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 40.99/18.82 new_compare210(Left(yvy7900), Right(yvy8000), False, cga, cgb) -> LT 40.99/18.82 new_lt18(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 40.99/18.82 new_compare14(yvy79000, yvy80000, ty_Ordering) -> new_compare25(yvy79000, yvy80000) 40.99/18.82 new_compare24(yvy79000, yvy80000, False) -> new_compare11(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000)) 40.99/18.82 new_primCompAux00(yvy260, LT) -> LT 40.99/18.82 new_primCmpNat0(Zero, Zero) -> EQ 40.99/18.82 new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs6(yvy4000, yvy3000, cfb, cfc, cfd) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Integer, bbg) -> new_ltEs10(yvy79000, yvy80000) 40.99/18.82 new_esEs28(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 40.99/18.82 new_compare11(yvy79000, yvy80000, False) -> GT 40.99/18.82 new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 40.99/18.82 new_esEs21(yvy4000, yvy3000, app(ty_Ratio, cfe)) -> new_esEs17(yvy4000, yvy3000, cfe) 40.99/18.82 new_esEs20(yvy4002, yvy3002, app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs6(yvy4002, yvy3002, bhh, caa, cab) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(ty_[], eb)) -> new_esEs15(yvy4000, yvy3000, eb) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Char, bbg) -> new_ltEs6(yvy79000, yvy80000) 40.99/18.82 new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 40.99/18.82 new_esEs19(yvy4001, yvy3001, app(app(ty_@2, bga), bgb)) -> new_esEs4(yvy4001, yvy3001, bga, bgb) 40.99/18.82 new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 40.99/18.82 new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) 40.99/18.82 new_lt18(yvy79000, yvy80000, app(app(ty_Either, dah), dba)) -> new_lt17(yvy79000, yvy80000, dah, dba) 40.99/18.82 new_primEqNat0(Succ(yvy40000), Zero) -> False 40.99/18.82 new_primEqNat0(Zero, Succ(yvy30000)) -> False 40.99/18.82 new_esEs34(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_[], cf), cc) -> new_esEs15(yvy4000, yvy3000, cf) 40.99/18.82 new_esEs14(@0, @0) -> True 40.99/18.82 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 40.99/18.82 new_compare10(yvy79000, yvy80000, True, ca, cb) -> LT 40.99/18.82 new_ltEs18(yvy7900, yvy8000, app(ty_[], fg)) -> new_ltEs11(yvy7900, yvy8000, fg) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Double) -> new_esEs13(yvy4000, yvy3000) 40.99/18.82 new_primCompAux00(yvy260, GT) -> GT 40.99/18.82 new_compare28(yvy79000, yvy80000, True, fb) -> EQ 40.99/18.82 new_esEs25(yvy79001, yvy80001, ty_Double) -> new_esEs13(yvy79001, yvy80001) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) 40.99/18.82 new_primCmpNat2(Zero, yvy7900) -> LT 40.99/18.82 new_esEs20(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) 40.99/18.82 new_esEs25(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_@0) -> new_ltEs16(yvy79000, yvy80000) 40.99/18.82 new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 40.99/18.82 new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT 40.99/18.82 new_ltEs20(yvy79002, yvy80002, app(app(ty_@2, dda), ddb)) -> new_ltEs4(yvy79002, yvy80002, dda, ddb) 40.99/18.82 new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 40.99/18.82 new_esEs20(yvy4002, yvy3002, app(app(ty_@2, bhc), bhd)) -> new_esEs4(yvy4002, yvy3002, bhc, bhd) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, ty_Int) -> new_ltEs7(yvy79001, yvy80001) 40.99/18.82 new_compare3(:(yvy79000, yvy79001), :(yvy80000, yvy80001), fg) -> new_primCompAux0(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, fg), fg) 40.99/18.82 new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs13(yvy35, yvy30) 40.99/18.82 new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 40.99/18.82 new_ltEs5(LT, GT) -> True 40.99/18.82 new_ltEs18(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 40.99/18.82 new_primPlusNat1(Succ(yvy20100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20100, yvy3000000))) 40.99/18.82 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 40.99/18.82 new_esEs31(yvy35, yvy30, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs6(yvy35, yvy30, bba, bbb, bbc) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs9(yvy79000, yvy80000, ccf, ccg, cch) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Float) -> new_esEs16(yvy4000, yvy3000) 40.99/18.82 new_primCmpNat0(Zero, Succ(yvy80000)) -> LT 40.99/18.82 new_ltEs20(yvy79002, yvy80002, ty_Bool) -> new_ltEs8(yvy79002, yvy80002) 40.99/18.82 new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs6(yvy4001, yvy3001, bgf, bgg, bgh) 40.99/18.82 new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 40.99/18.82 new_esEs33(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, cha), chb)) -> new_ltEs4(yvy7900, yvy8000, cha, chb) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(ty_Maybe, fa)) -> new_esEs7(yvy4000, yvy3000, fa) 40.99/18.82 new_compare110(yvy79000, yvy80000, False, fc, fd, ff) -> GT 40.99/18.82 new_primCmpNat0(Succ(yvy79000), Zero) -> GT 40.99/18.82 new_compare3([], :(yvy80000, yvy80001), fg) -> LT 40.99/18.82 new_pePe(False, yvy255) -> yvy255 40.99/18.82 new_ltEs17(Nothing, Nothing, cbh) -> True 40.99/18.82 new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 40.99/18.82 new_compare27(yvy79000, yvy80000, False, fc, fd, ff) -> new_compare110(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, fc, fd, ff), fc, fd, ff) 40.99/18.82 new_esEs7(Nothing, Just(yvy3000), baa) -> False 40.99/18.82 new_esEs7(Just(yvy4000), Nothing, baa) -> False 40.99/18.82 new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 40.99/18.82 new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Float) -> new_ltEs15(yvy79000, yvy80000) 40.99/18.82 new_ltEs17(Nothing, Just(yvy80000), cbh) -> True 40.99/18.82 new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 40.99/18.82 new_ltEs17(Just(yvy79000), Nothing, cbh) -> False 40.99/18.82 new_esEs12(False, False) -> True 40.99/18.82 new_ltEs20(yvy79002, yvy80002, app(ty_Maybe, deb)) -> new_ltEs17(yvy79002, yvy80002, deb) 40.99/18.82 new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 40.99/18.82 new_compare114(yvy227, yvy228, True, cfg, cfh) -> LT 40.99/18.82 new_compare112(yvy234, yvy235, True, bee, bef) -> LT 40.99/18.82 new_primCmpNat1(yvy7900, Zero) -> GT 40.99/18.82 new_esEs34(yvy400, yvy300, ty_Int) -> new_esEs9(yvy400, yvy300) 40.99/18.82 new_compare14(yvy79000, yvy80000, ty_Char) -> new_compare8(yvy79000, yvy80000) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cah), cba)) -> new_esEs5(yvy4000, yvy3000, cah, cba) 40.99/18.82 new_lt18(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 40.99/18.82 new_lt15(yvy79000, yvy80000) -> new_esEs8(new_compare25(yvy79000, yvy80000), LT) 40.99/18.82 new_esEs25(yvy79001, yvy80001, ty_Integer) -> new_esEs10(yvy79001, yvy80001) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs9(yvy79000, yvy80000, bdh, bea, beb) 40.99/18.82 new_compare23(yvy79000, yvy80000, False, ca, cb) -> new_compare10(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000, ca, cb), ca, cb) 40.99/18.82 new_esEs34(yvy400, yvy300, app(app(ty_Either, cdf), cdg)) -> new_esEs5(yvy400, yvy300, cdf, cdg) 40.99/18.82 new_esEs25(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_[], bch), bbg) -> new_ltEs11(yvy79000, yvy80000, bch) 40.99/18.82 new_esEs25(yvy79001, yvy80001, app(ty_[], dcg)) -> new_esEs15(yvy79001, yvy80001, dcg) 40.99/18.82 new_compare113(yvy79000, yvy80000, True, fb) -> LT 40.99/18.82 new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 40.99/18.82 new_ltEs7(yvy7900, yvy8000) -> new_fsEs(new_compare7(yvy7900, yvy8000)) 40.99/18.82 new_lt20(yvy79000, yvy80000, app(ty_[], bbf)) -> new_lt11(yvy79000, yvy80000, bbf) 40.99/18.82 new_compare23(yvy79000, yvy80000, True, ca, cb) -> EQ 40.99/18.82 new_esEs8(LT, EQ) -> False 40.99/18.82 new_esEs8(EQ, LT) -> False 40.99/18.82 new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cd), ce), cc) -> new_esEs4(yvy4000, yvy3000, cd, ce) 40.99/18.82 new_esEs21(yvy4000, yvy3000, app(app(ty_@2, cee), cef)) -> new_esEs4(yvy4000, yvy3000, cee, cef) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, app(app(app(ty_@3, eah), eba), ebb)) -> new_ltEs9(yvy79001, yvy80001, eah, eba, ebb) 40.99/18.82 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 40.99/18.82 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 40.99/18.82 new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dhf), dhg), dhh)) -> new_esEs6(yvy20, yvy15, dhf, dhg, dhh) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(app(ty_@2, bdc), bdd)) -> new_ltEs4(yvy79000, yvy80000, bdc, bdd) 40.99/18.82 new_esEs7(Nothing, Nothing, baa) -> True 40.99/18.82 new_esEs13(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 40.99/18.82 new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 40.99/18.82 new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 40.99/18.82 new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt9(yvy79001, yvy80001) 40.99/18.82 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, dfc)) -> new_esEs17(yvy4000, yvy3000, dfc) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Int) -> new_ltEs7(yvy79000, yvy80000) 40.99/18.82 new_esEs25(yvy79001, yvy80001, app(app(ty_@2, dbg), dbh)) -> new_esEs4(yvy79001, yvy80001, dbg, dbh) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_Either, bcc), bcd), bbg) -> new_ltEs12(yvy79000, yvy80000, bcc, bcd) 40.99/18.82 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare7(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, app(app(ty_Either, bdb), bbg)) -> new_ltEs12(yvy7900, yvy8000, bdb, bbg) 40.99/18.82 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 40.99/18.82 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 40.99/18.82 new_esEs24(yvy79000, yvy80000, app(app(ty_Either, dah), dba)) -> new_esEs5(yvy79000, yvy80000, dah, dba) 40.99/18.82 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, dab)) -> new_ltEs17(yvy7900, yvy8000, dab) 40.99/18.82 new_esEs25(yvy79001, yvy80001, ty_Ordering) -> new_esEs8(yvy79001, yvy80001) 40.99/18.82 new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs14(yvy35, yvy30) 40.99/18.82 new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT 40.99/18.82 new_esEs20(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) 40.99/18.82 new_compare114(yvy227, yvy228, False, cfg, cfh) -> GT 40.99/18.82 new_ltEs20(yvy79002, yvy80002, ty_@0) -> new_ltEs16(yvy79002, yvy80002) 40.99/18.82 new_esEs33(yvy400, yvy300, app(ty_Maybe, baa)) -> new_esEs7(yvy400, yvy300, baa) 40.99/18.82 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 40.99/18.82 new_esEs25(yvy79001, yvy80001, app(ty_Maybe, dch)) -> new_esEs7(yvy79001, yvy80001, dch) 40.99/18.82 new_ltEs8(True, False) -> False 40.99/18.82 new_esEs15([], [], hd) -> True 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Bool, bbg) -> new_ltEs8(yvy79000, yvy80000) 40.99/18.82 new_esEs32(yvy20, yvy15, app(app(ty_Either, dhd), dhe)) -> new_esEs5(yvy20, yvy15, dhd, dhe) 40.99/18.82 new_esEs33(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) 40.99/18.82 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 40.99/18.82 new_esEs24(yvy79000, yvy80000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs6(yvy79000, yvy80000, dbb, dbc, dbd) 40.99/18.82 new_lt4(yvy240, yvy239) -> new_esEs8(new_compare7(yvy240, yvy239), LT) 40.99/18.82 new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt10(yvy79001, yvy80001) 40.99/18.82 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 40.99/18.82 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 40.99/18.82 new_ltEs8(False, False) -> True 40.99/18.82 new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs6(yvy4000, yvy3000, cbb, cbc, cbd) 40.99/18.82 new_compare14(yvy79000, yvy80000, app(app(ty_@2, fh), ga)) -> new_compare16(yvy79000, yvy80000, fh, ga) 40.99/18.82 new_esEs34(yvy400, yvy300, app(ty_Ratio, cec)) -> new_esEs17(yvy400, yvy300, cec) 40.99/18.82 new_esEs33(yvy400, yvy300, app(app(ty_@2, hb), hc)) -> new_esEs4(yvy400, yvy300, hb, hc) 40.99/18.82 new_lt18(yvy79000, yvy80000, app(ty_Ratio, dag)) -> new_lt14(yvy79000, yvy80000, dag) 40.99/18.82 new_ltEs5(EQ, EQ) -> True 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_Either, cg), da), cc) -> new_esEs5(yvy4000, yvy3000, cg, da) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_ltEs9(yvy7900, yvy8000, cgf, cgg, cgh) 40.99/18.82 new_compare27(yvy79000, yvy80000, True, fc, fd, ff) -> EQ 40.99/18.82 new_lt19(yvy79001, yvy80001, app(ty_[], dcg)) -> new_lt11(yvy79001, yvy80001, dcg) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Bool, cc) -> new_esEs12(yvy4000, yvy3000) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 40.99/18.82 new_compare15(yvy79000, yvy80000) -> new_compare29(yvy79000, yvy80000, new_esEs12(yvy79000, yvy80000)) 40.99/18.82 new_esEs34(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) 40.99/18.82 new_esEs21(yvy4000, yvy3000, app(app(ty_Either, ceh), cfa)) -> new_esEs5(yvy4000, yvy3000, ceh, cfa) 40.99/18.82 new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.82 new_compare7(yvy79, yvy80) -> new_primCmpInt(yvy79, yvy80) 40.99/18.82 new_esEs8(LT, LT) -> True 40.99/18.82 new_esEs34(yvy400, yvy300, app(app(ty_@2, cdc), cdd)) -> new_esEs4(yvy400, yvy300, cdc, cdd) 40.99/18.82 new_compare111(yvy79000, yvy80000, True) -> LT 40.99/18.82 new_esEs28(yvy79000, yvy80000, app(ty_[], bbf)) -> new_esEs15(yvy79000, yvy80000, bbf) 40.99/18.82 new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 40.99/18.82 new_lt18(yvy79000, yvy80000, app(ty_[], dbe)) -> new_lt11(yvy79000, yvy80000, dbe) 40.99/18.82 new_lt6(yvy79000, yvy80000, fb) -> new_esEs8(new_compare12(yvy79000, yvy80000, fb), LT) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 40.99/18.82 new_esEs24(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, chf), chg), chh)) -> new_ltEs9(yvy7900, yvy8000, chf, chg, chh) 40.99/18.82 new_primPlusNat1(Succ(yvy20100), Zero) -> Succ(yvy20100) 40.99/18.82 new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cae), caf)) -> new_esEs4(yvy4000, yvy3000, cae, caf) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Maybe, cdb)) -> new_ltEs17(yvy79000, yvy80000, cdb) 40.99/18.82 new_compare14(yvy79000, yvy80000, app(app(ty_Either, gc), gd)) -> new_compare19(yvy79000, yvy80000, gc, gd) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, ty_Double) -> new_ltEs14(yvy79001, yvy80001) 40.99/18.82 new_compare14(yvy79000, yvy80000, ty_Integer) -> new_compare26(yvy79000, yvy80000) 40.99/18.82 new_esEs24(yvy79000, yvy80000, app(ty_Maybe, dbf)) -> new_esEs7(yvy79000, yvy80000, dbf) 40.99/18.82 new_esEs25(yvy79001, yvy80001, ty_Bool) -> new_esEs12(yvy79001, yvy80001) 40.99/18.82 new_esEs24(yvy79000, yvy80000, app(ty_Ratio, dag)) -> new_esEs17(yvy79000, yvy80000, dag) 40.99/18.82 new_esEs24(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) 40.99/18.82 new_ltEs5(LT, LT) -> True 40.99/18.82 new_ltEs20(yvy79002, yvy80002, ty_Double) -> new_ltEs14(yvy79002, yvy80002) 40.99/18.82 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 40.99/18.82 new_esEs33(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) 40.99/18.82 new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs9(yvy20, yvy15) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Integer, cc) -> new_esEs10(yvy4000, yvy3000) 40.99/18.82 new_ltEs5(LT, EQ) -> True 40.99/18.82 new_compare14(yvy79000, yvy80000, ty_Double) -> new_compare18(yvy79000, yvy80000) 40.99/18.82 new_compare14(yvy79000, yvy80000, ty_@0) -> new_compare9(yvy79000, yvy80000) 40.99/18.82 new_esEs34(yvy400, yvy300, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs6(yvy400, yvy300, cdh, cea, ceb) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, app(ty_Maybe, ebd)) -> new_ltEs17(yvy79001, yvy80001, ebd) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs16(yvy79000, yvy80000) 40.99/18.82 new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.82 new_ltEs8(False, True) -> True 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cbe)) -> new_esEs17(yvy4000, yvy3000, cbe) 40.99/18.82 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 40.99/18.82 new_compare14(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) 40.99/18.82 new_esEs27(yvy4001, yvy3001, app(ty_[], dfg)) -> new_esEs15(yvy4001, yvy3001, dfg) 40.99/18.82 new_ltEs6(yvy7900, yvy8000) -> new_fsEs(new_compare8(yvy7900, yvy8000)) 40.99/18.82 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.82 new_esEs34(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(app(ty_Either, bdf), bdg)) -> new_ltEs12(yvy79000, yvy80000, bdf, bdg) 40.99/18.82 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 40.99/18.82 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 40.99/18.82 new_esEs34(yvy400, yvy300, ty_Double) -> new_esEs13(yvy400, yvy300) 40.99/18.82 new_ltEs20(yvy79002, yvy80002, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_ltEs9(yvy79002, yvy80002, ddf, ddg, ddh) 40.99/18.82 new_esEs19(yvy4001, yvy3001, app(app(ty_Either, bgd), bge)) -> new_esEs5(yvy4001, yvy3001, bgd, bge) 40.99/18.82 new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt12(yvy79001, yvy80001) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Double, bbg) -> new_ltEs14(yvy79000, yvy80000) 40.99/18.82 new_esEs27(yvy4001, yvy3001, app(ty_Ratio, dge)) -> new_esEs17(yvy4001, yvy3001, dge) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs6(yvy4000, yvy3000, ee, ef, eg) 40.99/18.82 new_esEs33(yvy400, yvy300, app(ty_Ratio, hh)) -> new_esEs17(yvy400, yvy300, hh) 40.99/18.82 new_esEs28(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 40.99/18.82 new_esEs33(yvy400, yvy300, app(app(app(ty_@3, he), hf), hg)) -> new_esEs6(yvy400, yvy300, he, hf, hg) 40.99/18.82 new_ltEs12(Right(yvy79000), Left(yvy80000), bdb, bbg) -> False 40.99/18.82 new_esEs24(yvy79000, yvy80000, app(ty_[], dbe)) -> new_esEs15(yvy79000, yvy80000, dbe) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Ratio, de), cc) -> new_esEs17(yvy4000, yvy3000, de) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(ty_Ratio, eh)) -> new_esEs17(yvy4000, yvy3000, eh) 40.99/18.82 new_esEs17(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), hh) -> new_asAs(new_esEs22(yvy4000, yvy3000, hh), new_esEs23(yvy4001, yvy3001, hh)) 40.99/18.82 new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 40.99/18.82 new_compare210(Left(yvy7900), Left(yvy8000), False, cga, cgb) -> new_compare114(yvy7900, yvy8000, new_ltEs18(yvy7900, yvy8000, cga), cga, cgb) 40.99/18.82 new_sr0(Integer(yvy800000), Integer(yvy790010)) -> Integer(new_primMulInt(yvy800000, yvy790010)) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, bce), bcf), bcg), bbg) -> new_ltEs9(yvy79000, yvy80000, bce, bcf, bcg) 40.99/18.82 new_esEs28(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 40.99/18.82 new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs6(yvy4001, yvy3001, dgb, dgc, dgd) 40.99/18.82 new_esEs34(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 40.99/18.82 new_esEs28(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, app(ty_Ratio, eae)) -> new_ltEs13(yvy79001, yvy80001, eae) 40.99/18.82 new_lt9(yvy79000, yvy80000) -> new_esEs8(new_compare8(yvy79000, yvy80000), LT) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, ty_@0) -> new_ltEs16(yvy79001, yvy80001) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) 40.99/18.82 new_esEs20(yvy4002, yvy3002, ty_Int) -> new_esEs9(yvy4002, yvy3002) 40.99/18.82 new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 40.99/18.82 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 40.99/18.82 new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs12(yvy20, yvy15) 40.99/18.82 new_esEs25(yvy79001, yvy80001, ty_Int) -> new_esEs9(yvy79001, yvy80001) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, app(app(ty_Either, eaf), eag)) -> new_ltEs12(yvy79001, yvy80001, eaf, eag) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 40.99/18.82 new_lt5(yvy79000, yvy80000) -> new_esEs8(new_compare9(yvy79000, yvy80000), LT) 40.99/18.82 new_asAs(True, yvy222) -> yvy222 40.99/18.82 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 40.99/18.82 new_compare10(yvy79000, yvy80000, False, ca, cb) -> GT 40.99/18.82 new_ltEs5(GT, LT) -> False 40.99/18.82 new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), cgf, cgg, cgh) -> new_pePe(new_lt18(yvy79000, yvy80000, cgf), new_asAs(new_esEs24(yvy79000, yvy80000, cgf), new_pePe(new_lt19(yvy79001, yvy80001, cgg), new_asAs(new_esEs25(yvy79001, yvy80001, cgg), new_ltEs20(yvy79002, yvy80002, cgh))))) 40.99/18.82 new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 40.99/18.82 new_esEs24(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 40.99/18.82 new_esEs34(yvy400, yvy300, app(ty_[], cde)) -> new_esEs15(yvy400, yvy300, cde) 40.99/18.82 new_compare14(yvy79000, yvy80000, ty_Int) -> new_compare7(yvy79000, yvy80000) 40.99/18.82 new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 40.99/18.82 new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, fc), fd), ff)) -> new_lt7(yvy79000, yvy80000, fc, fd, ff) 40.99/18.82 new_esEs20(yvy4002, yvy3002, app(ty_[], bhe)) -> new_esEs15(yvy4002, yvy3002, bhe) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs13(yvy4000, yvy3000) 40.99/18.82 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 40.99/18.82 new_lt10(yvy79000, yvy80000) -> new_esEs8(new_compare18(yvy79000, yvy80000), LT) 40.99/18.82 new_esEs24(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 40.99/18.82 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 40.99/18.82 new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) 40.99/18.82 new_ltEs8(True, True) -> True 40.99/18.82 new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat1(yvy7900, yvy800) 40.99/18.82 new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs9(yvy35, yvy30) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_@2, bbh), bca), bbg) -> new_ltEs4(yvy79000, yvy80000, bbh, bca) 40.99/18.82 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare26(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) 40.99/18.82 new_compare8(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Ordering, bbg) -> new_ltEs5(yvy79000, yvy80000) 40.99/18.82 new_primCompAux00(yvy260, EQ) -> yvy260 40.99/18.82 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 40.99/18.82 new_esEs12(False, True) -> False 40.99/18.82 new_esEs12(True, False) -> False 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) 40.99/18.82 new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt15(yvy79001, yvy80001) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Float, cc) -> new_esEs16(yvy4000, yvy3000) 40.99/18.82 new_primMulNat0(Zero, Zero) -> Zero 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Double, cc) -> new_esEs13(yvy4000, yvy3000) 40.99/18.82 new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_lt7(yvy79001, yvy80001, dcd, dce, dcf) 40.99/18.82 new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) 40.99/18.82 new_esEs12(True, True) -> True 40.99/18.82 new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.82 new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.82 new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Int, cc) -> new_esEs9(yvy4000, yvy3000) 40.99/18.82 new_compare111(yvy79000, yvy80000, False) -> GT 40.99/18.82 new_esEs31(yvy35, yvy30, app(ty_Maybe, bbe)) -> new_esEs7(yvy35, yvy30, bbe) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_@0, bbg) -> new_ltEs16(yvy79000, yvy80000) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs7(yvy79000, yvy80000) 40.99/18.82 new_compare9(@0, @0) -> EQ 40.99/18.82 new_esEs15(:(yvy4000, yvy4001), [], hd) -> False 40.99/18.82 new_esEs15([], :(yvy3000, yvy3001), hd) -> False 40.99/18.82 new_esEs20(yvy4002, yvy3002, app(app(ty_Either, bhf), bhg)) -> new_esEs5(yvy4002, yvy3002, bhf, bhg) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, chc)) -> new_ltEs13(yvy7900, yvy8000, chc) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(app(ty_Either, ec), ed)) -> new_esEs5(yvy4000, yvy3000, ec, ed) 40.99/18.82 new_esEs24(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 40.99/18.82 new_ltEs5(EQ, LT) -> False 40.99/18.82 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, chd), che)) -> new_ltEs12(yvy7900, yvy8000, chd, che) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 40.99/18.82 new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 40.99/18.82 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], cag)) -> new_esEs15(yvy4000, yvy3000, cag) 40.99/18.82 new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(ty_Maybe, bed)) -> new_ltEs17(yvy79000, yvy80000, bed) 40.99/18.82 new_primCompAux0(yvy79000, yvy80000, yvy256, fg) -> new_primCompAux00(yvy256, new_compare14(yvy79000, yvy80000, fg)) 40.99/18.82 new_esEs33(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) 40.99/18.82 new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 40.99/18.82 new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.82 new_lt17(yvy79000, yvy80000, dac, dad) -> new_esEs8(new_compare19(yvy79000, yvy80000, dac, dad), LT) 40.99/18.82 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 40.99/18.82 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 40.99/18.82 new_esEs24(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 40.99/18.82 new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt8(yvy79001, yvy80001) 40.99/18.82 new_ltEs20(yvy79002, yvy80002, app(app(ty_Either, ddd), dde)) -> new_ltEs12(yvy79002, yvy80002, ddd, dde) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Char) -> new_ltEs6(yvy79000, yvy80000) 40.99/18.82 new_lt19(yvy79001, yvy80001, app(ty_Ratio, dca)) -> new_lt14(yvy79001, yvy80001, dca) 40.99/18.82 new_ltEs20(yvy79002, yvy80002, app(ty_Ratio, ddc)) -> new_ltEs13(yvy79002, yvy80002, ddc) 40.99/18.82 new_esEs20(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 40.99/18.82 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 40.99/18.82 new_esEs20(yvy4002, yvy3002, ty_Double) -> new_esEs13(yvy4002, yvy3002) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 40.99/18.82 new_esEs21(yvy4000, yvy3000, app(ty_Maybe, cff)) -> new_esEs7(yvy4000, yvy3000, cff) 40.99/18.82 new_esEs32(yvy20, yvy15, app(app(ty_@2, dha), dhb)) -> new_esEs4(yvy20, yvy15, dha, dhb) 40.99/18.82 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, dec), ded)) -> new_esEs4(yvy4000, yvy3000, dec, ded) 40.99/18.82 new_compare14(yvy79000, yvy80000, app(ty_Ratio, gb)) -> new_compare17(yvy79000, yvy80000, gb) 40.99/18.82 new_compare24(yvy79000, yvy80000, True) -> EQ 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.82 new_esEs18(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs15(yvy4000, yvy3000, bfa) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, app(ty_Maybe, cbh)) -> new_ltEs17(yvy7900, yvy8000, cbh) 40.99/18.82 new_esEs25(yvy79001, yvy80001, app(app(ty_Either, dcb), dcc)) -> new_esEs5(yvy79001, yvy80001, dcb, dcc) 40.99/18.82 new_lt18(yvy79000, yvy80000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_lt7(yvy79000, yvy80000, dbb, dbc, dbd) 40.99/18.82 new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 40.99/18.82 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 40.99/18.82 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 40.99/18.82 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 40.99/18.82 new_lt20(yvy79000, yvy80000, app(ty_Ratio, cbg)) -> new_lt14(yvy79000, yvy80000, cbg) 40.99/18.82 new_esEs32(yvy20, yvy15, app(ty_Maybe, eab)) -> new_esEs7(yvy20, yvy15, eab) 40.99/18.82 new_esEs31(yvy35, yvy30, app(app(ty_Either, bag), bah)) -> new_esEs5(yvy35, yvy30, bag, bah) 40.99/18.82 new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(ty_[], bec)) -> new_ltEs11(yvy79000, yvy80000, bec) 40.99/18.82 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, dfd)) -> new_esEs7(yvy4000, yvy3000, dfd) 40.99/18.82 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Maybe, bda), bbg) -> new_ltEs17(yvy79000, yvy80000, bda) 40.99/18.82 new_lt18(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 40.99/18.82 new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 40.99/18.82 new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) 40.99/18.82 new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt5(yvy79001, yvy80001) 40.99/18.82 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, def), deg)) -> new_esEs5(yvy4000, yvy3000, def, deg) 40.99/18.82 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat1(yvy8000, Zero) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs6(yvy4000, yvy3000, db, dc, dd) 40.99/18.82 new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) 40.99/18.82 new_lt18(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 40.99/18.82 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 40.99/18.82 new_compare110(yvy79000, yvy80000, True, fc, fd, ff) -> LT 40.99/18.82 new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) 40.99/18.82 new_compare14(yvy79000, yvy80000, app(app(app(ty_@3, ge), gf), gg)) -> new_compare13(yvy79000, yvy80000, ge, gf, gg) 40.99/18.82 new_esEs15(:(yvy4000, yvy4001), :(yvy3000, yvy3001), hd) -> new_asAs(new_esEs21(yvy4000, yvy3000, hd), new_esEs15(yvy4001, yvy3001, hd)) 40.99/18.82 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, deh), dfa), dfb)) -> new_esEs6(yvy4000, yvy3000, deh, dfa, dfb) 40.99/18.82 new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 40.99/18.82 new_esEs27(yvy4001, yvy3001, app(ty_Maybe, dgf)) -> new_esEs7(yvy4001, yvy3001, dgf) 40.99/18.82 new_compare12(yvy79000, yvy80000, fb) -> new_compare28(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, fb), fb) 40.99/18.82 new_compare112(yvy234, yvy235, False, bee, bef) -> GT 40.99/18.82 new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs6(yvy4000, yvy3000, bfd, bfe, bff) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Maybe, df), cc) -> new_esEs7(yvy4000, yvy3000, df) 40.99/18.82 new_ltEs5(EQ, GT) -> True 40.99/18.82 new_esEs31(yvy35, yvy30, app(app(ty_@2, bad), bae)) -> new_esEs4(yvy35, yvy30, bad, bae) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Float, bbg) -> new_ltEs15(yvy79000, yvy80000) 40.99/18.82 new_ltEs20(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) 40.99/18.82 new_not(False) -> True 40.99/18.82 new_esEs28(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 40.99/18.82 new_esEs33(yvy400, yvy300, ty_Bool) -> new_esEs12(yvy400, yvy300) 40.99/18.82 new_esEs18(yvy4000, yvy3000, app(app(ty_Either, bfb), bfc)) -> new_esEs5(yvy4000, yvy3000, bfb, bfc) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 40.99/18.82 new_compare25(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs8(yvy79000, yvy80000)) 40.99/18.82 new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs8(yvy35, yvy30) 40.99/18.82 new_ltEs13(yvy7900, yvy8000, cge) -> new_fsEs(new_compare17(yvy7900, yvy8000, cge)) 40.99/18.82 new_esEs33(yvy400, yvy300, ty_Double) -> new_esEs13(yvy400, yvy300) 40.99/18.82 new_esEs25(yvy79001, yvy80001, ty_@0) -> new_esEs14(yvy79001, yvy80001) 40.99/18.82 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), hb, hc) -> new_asAs(new_esEs26(yvy4000, yvy3000, hb), new_esEs27(yvy4001, yvy3001, hc)) 40.99/18.82 new_esEs20(yvy4002, yvy3002, app(ty_Maybe, cad)) -> new_esEs7(yvy4002, yvy3002, cad) 40.99/18.82 new_ltEs5(GT, GT) -> True 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_@2, cca), ccb)) -> new_ltEs4(yvy79000, yvy80000, cca, ccb) 40.99/18.82 new_esEs8(LT, GT) -> False 40.99/18.82 new_esEs8(GT, LT) -> False 40.99/18.82 new_compare29(yvy79000, yvy80000, True) -> EQ 40.99/18.82 new_esEs31(yvy35, yvy30, app(ty_[], baf)) -> new_esEs15(yvy35, yvy30, baf) 40.99/18.82 new_esEs32(yvy20, yvy15, app(ty_Ratio, eaa)) -> new_esEs17(yvy20, yvy15, eaa) 40.99/18.82 new_esEs5(Left(yvy4000), Right(yvy3000), dg, cc) -> False 40.99/18.82 new_esEs5(Right(yvy4000), Left(yvy3000), dg, cc) -> False 40.99/18.82 new_esEs20(yvy4002, yvy3002, ty_Bool) -> new_esEs12(yvy4002, yvy3002) 40.99/18.82 new_lt19(yvy79001, yvy80001, app(ty_Maybe, dch)) -> new_lt6(yvy79001, yvy80001, dch) 40.99/18.82 new_lt13(yvy79000, yvy80000, ca, cb) -> new_esEs8(new_compare16(yvy79000, yvy80000, ca, cb), LT) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, ty_Ordering) -> new_ltEs5(yvy79001, yvy80001) 40.99/18.82 new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs10(yvy35, yvy30) 40.99/18.82 new_esEs19(yvy4001, yvy3001, app(ty_[], bgc)) -> new_esEs15(yvy4001, yvy3001, bgc) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, app(ty_Ratio, cge)) -> new_ltEs13(yvy7900, yvy8000, cge) 40.99/18.82 new_compare14(yvy79000, yvy80000, app(ty_Maybe, ha)) -> new_compare12(yvy79000, yvy80000, ha) 40.99/18.82 new_lt8(yvy79000, yvy80000) -> new_esEs8(new_compare26(yvy79000, yvy80000), LT) 40.99/18.82 new_compare113(yvy79000, yvy80000, False, fb) -> GT 40.99/18.82 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 40.99/18.82 new_primPlusNat0(Succ(yvy2010), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2010, yvy300000))) 40.99/18.82 new_lt14(yvy79000, yvy80000, cbg) -> new_esEs8(new_compare17(yvy79000, yvy80000, cbg), LT) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 40.99/18.82 new_esEs19(yvy4001, yvy3001, app(ty_Maybe, bhb)) -> new_esEs7(yvy4001, yvy3001, bhb) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 40.99/18.82 new_ltEs20(yvy79002, yvy80002, ty_Char) -> new_ltEs6(yvy79002, yvy80002) 40.99/18.82 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 40.99/18.82 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 40.99/18.82 new_esEs33(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 40.99/18.82 new_lt12(yvy79000, yvy80000) -> new_esEs8(new_compare6(yvy79000, yvy80000), LT) 40.99/18.82 new_lt16(yvy79000, yvy80000) -> new_esEs8(new_compare15(yvy79000, yvy80000), LT) 40.99/18.82 new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 40.99/18.82 new_primPlusNat1(Zero, Zero) -> Zero 40.99/18.82 new_esEs6(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), he, hf, hg) -> new_asAs(new_esEs18(yvy4000, yvy3000, he), new_asAs(new_esEs19(yvy4001, yvy3001, hf), new_esEs20(yvy4002, yvy3002, hg))) 40.99/18.82 new_esEs20(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 40.99/18.82 new_ltEs20(yvy79002, yvy80002, ty_Int) -> new_ltEs7(yvy79002, yvy80002) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, app(app(ty_@2, eac), ead)) -> new_ltEs4(yvy79001, yvy80001, eac, ead) 40.99/18.82 new_esEs27(yvy4001, yvy3001, app(app(ty_@2, dfe), dff)) -> new_esEs4(yvy4001, yvy3001, dfe, dff) 40.99/18.82 new_lt18(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 40.99/18.82 new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 40.99/18.82 new_esEs28(yvy79000, yvy80000, app(ty_Ratio, cbg)) -> new_esEs17(yvy79000, yvy80000, cbg) 40.99/18.82 new_compare11(yvy79000, yvy80000, True) -> LT 40.99/18.82 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 40.99/18.82 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 40.99/18.82 new_ltEs4(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), cgc, cgd) -> new_pePe(new_lt20(yvy79000, yvy80000, cgc), new_asAs(new_esEs28(yvy79000, yvy80000, cgc), new_ltEs21(yvy79001, yvy80001, cgd))) 40.99/18.82 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 40.99/18.82 new_lt19(yvy79001, yvy80001, app(app(ty_@2, dbg), dbh)) -> new_lt13(yvy79001, yvy80001, dbg, dbh) 40.99/18.82 new_compare31(yvy20, yvy15, dgg, dgh) -> new_compare210(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, dgg), dgg, dgh) 40.99/18.82 new_compare16(yvy79000, yvy80000, ca, cb) -> new_compare23(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, ca, cb), ca, cb) 40.99/18.82 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 40.99/18.82 new_esEs28(yvy79000, yvy80000, app(app(ty_@2, ca), cb)) -> new_esEs4(yvy79000, yvy80000, ca, cb) 40.99/18.82 new_primCmpNat0(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 40.99/18.82 new_esEs20(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) 40.99/18.82 new_compare19(yvy79000, yvy80000, dac, dad) -> new_compare210(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, dac, dad), dac, dad) 40.99/18.82 new_compare30(yvy35, yvy30, bab, bac) -> new_compare210(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, bac), bab, bac) 40.99/18.82 new_compare3(:(yvy79000, yvy79001), [], fg) -> GT 40.99/18.82 new_compare14(yvy79000, yvy80000, ty_Bool) -> new_compare15(yvy79000, yvy80000) 40.99/18.82 new_esEs28(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), ty_@0, cc) -> new_esEs14(yvy4000, yvy3000) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_[], cda)) -> new_ltEs11(yvy79000, yvy80000, cda) 40.99/18.82 new_compare26(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 40.99/18.82 new_compare32(yvy400, yvy300, h, ba) -> new_compare210(Left(yvy400), Right(yvy300), False, h, ba) 40.99/18.82 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 40.99/18.82 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 40.99/18.82 new_primCmpNat1(yvy7900, Succ(yvy8000)) -> new_primCmpNat0(yvy7900, yvy8000) 40.99/18.82 new_esEs18(yvy4000, yvy3000, app(ty_Maybe, bfh)) -> new_esEs7(yvy4000, yvy3000, bfh) 40.99/18.82 new_lt20(yvy79000, yvy80000, app(ty_Maybe, fb)) -> new_lt6(yvy79000, yvy80000, fb) 40.99/18.82 new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 40.99/18.82 new_primEqNat0(Zero, Zero) -> True 40.99/18.82 new_esEs28(yvy79000, yvy80000, app(app(ty_Either, dac), dad)) -> new_esEs5(yvy79000, yvy80000, dac, dad) 40.99/18.82 new_compare210(Right(yvy7900), Right(yvy8000), False, cga, cgb) -> new_compare112(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, cgb), cga, cgb) 40.99/18.82 new_esEs21(yvy4000, yvy3000, app(ty_[], ceg)) -> new_esEs15(yvy4000, yvy3000, ceg) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 40.99/18.82 new_lt11(yvy79000, yvy80000, bbf) -> new_esEs8(new_compare3(yvy79000, yvy80000, bbf), LT) 40.99/18.82 new_esEs28(yvy79000, yvy80000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs6(yvy79000, yvy80000, fc, fd, ff) 40.99/18.82 new_compare29(yvy79000, yvy80000, False) -> new_compare111(yvy79000, yvy80000, new_ltEs8(yvy79000, yvy80000)) 40.99/18.82 new_compare33(yvy400, yvy300, h, ba) -> new_compare210(Right(yvy400), Left(yvy300), False, h, ba) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.82 new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 40.99/18.82 new_asAs(False, yvy222) -> False 40.99/18.82 new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 40.99/18.82 new_lt7(yvy79000, yvy80000, fc, fd, ff) -> new_esEs8(new_compare13(yvy79000, yvy80000, fc, fd, ff), LT) 40.99/18.82 new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs12(yvy35, yvy30) 40.99/18.82 new_ltEs5(GT, EQ) -> False 40.99/18.82 new_ltEs20(yvy79002, yvy80002, ty_Ordering) -> new_ltEs5(yvy79002, yvy80002) 40.99/18.82 new_esEs18(yvy4000, yvy3000, app(ty_Ratio, bfg)) -> new_esEs17(yvy4000, yvy3000, bfg) 40.99/18.82 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Char) -> new_esEs11(yvy4000, yvy3000) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, app(ty_[], ebc)) -> new_ltEs11(yvy79001, yvy80001, ebc) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Int, bbg) -> new_ltEs7(yvy79000, yvy80000) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs6(yvy79000, yvy80000) 40.99/18.82 new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 40.99/18.82 new_lt18(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 40.99/18.82 new_lt18(yvy79000, yvy80000, app(app(ty_@2, dae), daf)) -> new_lt13(yvy79000, yvy80000, dae, daf) 40.99/18.82 new_esEs8(EQ, GT) -> False 40.99/18.82 new_esEs8(GT, EQ) -> False 40.99/18.82 new_compare210(Right(yvy7900), Left(yvy8000), False, cga, cgb) -> GT 40.99/18.82 new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.82 new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat0(yvy8000, yvy7900) 40.99/18.82 new_ltEs16(yvy7900, yvy8000) -> new_fsEs(new_compare9(yvy7900, yvy8000)) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 40.99/18.82 new_esEs33(yvy400, yvy300, app(ty_[], hd)) -> new_esEs15(yvy400, yvy300, hd) 40.99/18.82 40.99/18.82 The set Q consists of the following terms: 40.99/18.82 40.99/18.82 new_lt18(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_ltEs18(x0, x1, ty_Bool) 40.99/18.82 new_ltEs21(x0, x1, ty_Ordering) 40.99/18.82 new_esEs28(x0, x1, ty_Integer) 40.99/18.82 new_esEs8(EQ, EQ) 40.99/18.82 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 40.99/18.82 new_esEs21(x0, x1, ty_Int) 40.99/18.82 new_ltEs20(x0, x1, ty_Char) 40.99/18.82 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_esEs20(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 40.99/18.82 new_esEs24(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_esEs26(x0, x1, ty_Float) 40.99/18.82 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_esEs18(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_primMulInt(Neg(x0), Neg(x1)) 40.99/18.82 new_ltEs17(Just(x0), Just(x1), ty_Char) 40.99/18.82 new_ltEs18(x0, x1, ty_@0) 40.99/18.82 new_ltEs21(x0, x1, ty_Double) 40.99/18.82 new_compare10(x0, x1, True, x2, x3) 40.99/18.82 new_esEs34(x0, x1, ty_Bool) 40.99/18.82 new_primPlusNat1(Zero, Zero) 40.99/18.82 new_ltEs15(x0, x1) 40.99/18.82 new_compare210(x0, x1, True, x2, x3) 40.99/18.82 new_esEs24(x0, x1, ty_Integer) 40.99/18.82 new_esEs25(x0, x1, ty_Float) 40.99/18.82 new_esEs18(x0, x1, ty_Integer) 40.99/18.82 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 40.99/18.82 new_compare14(x0, x1, ty_Ordering) 40.99/18.82 new_esEs34(x0, x1, ty_Integer) 40.99/18.82 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 40.99/18.82 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 40.99/18.82 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 40.99/18.82 new_primCompAux00(x0, GT) 40.99/18.82 new_primEqInt(Pos(Zero), Pos(Zero)) 40.99/18.82 new_primMulInt(Pos(x0), Pos(x1)) 40.99/18.82 new_esEs21(x0, x1, ty_Double) 40.99/18.82 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_esEs32(x0, x1, ty_Integer) 40.99/18.82 new_compare29(x0, x1, False) 40.99/18.82 new_esEs27(x0, x1, ty_Float) 40.99/18.82 new_ltEs17(Just(x0), Just(x1), ty_Int) 40.99/18.82 new_primCmpNat0(Zero, Succ(x0)) 40.99/18.82 new_ltEs17(Just(x0), Just(x1), ty_@0) 40.99/18.82 new_esEs25(x0, x1, app(ty_[], x2)) 40.99/18.82 new_esEs28(x0, x1, app(ty_[], x2)) 40.99/18.82 new_esEs15([], :(x0, x1), x2) 40.99/18.82 new_esEs21(x0, x1, ty_Char) 40.99/18.82 new_lt19(x0, x1, app(ty_[], x2)) 40.99/18.82 new_esEs32(x0, x1, ty_Float) 40.99/18.82 new_compare13(x0, x1, x2, x3, x4) 40.99/18.82 new_compare14(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_ltEs21(x0, x1, ty_Int) 40.99/18.82 new_primEqInt(Neg(Zero), Neg(Zero)) 40.99/18.82 new_primCmpNat0(Succ(x0), Succ(x1)) 40.99/18.82 new_compare3(:(x0, x1), [], x2) 40.99/18.82 new_compare11(x0, x1, False) 40.99/18.82 new_ltEs7(x0, x1) 40.99/18.82 new_primPlusNat0(Zero, x0) 40.99/18.82 new_esEs19(x0, x1, app(ty_[], x2)) 40.99/18.82 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 40.99/18.82 new_compare210(Right(x0), Right(x1), False, x2, x3) 40.99/18.82 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_esEs28(x0, x1, ty_Bool) 40.99/18.82 new_sr(x0, x1) 40.99/18.82 new_esEs12(False, True) 40.99/18.82 new_esEs12(True, False) 40.99/18.82 new_compare19(x0, x1, x2, x3) 40.99/18.82 new_ltEs20(x0, x1, ty_Double) 40.99/18.82 new_ltEs5(LT, GT) 40.99/18.82 new_ltEs5(GT, LT) 40.99/18.82 new_lt18(x0, x1, app(ty_[], x2)) 40.99/18.82 new_ltEs17(Just(x0), Just(x1), ty_Bool) 40.99/18.82 new_compare33(x0, x1, x2, x3) 40.99/18.82 new_primCmpNat2(Succ(x0), x1) 40.99/18.82 new_ltEs20(x0, x1, ty_@0) 40.99/18.82 new_esEs33(x0, x1, app(ty_[], x2)) 40.99/18.82 new_lt12(x0, x1) 40.99/18.82 new_ltEs8(False, False) 40.99/18.82 new_primCmpNat2(Zero, x0) 40.99/18.82 new_esEs18(x0, x1, ty_@0) 40.99/18.82 new_compare26(Integer(x0), Integer(x1)) 40.99/18.82 new_esEs34(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_esEs31(x0, x1, ty_Bool) 40.99/18.82 new_esEs19(x0, x1, ty_Integer) 40.99/18.82 new_esEs18(x0, x1, app(ty_[], x2)) 40.99/18.82 new_ltEs21(x0, x1, ty_Char) 40.99/18.82 new_esEs18(x0, x1, ty_Bool) 40.99/18.82 new_ltEs17(Just(x0), Just(x1), ty_Double) 40.99/18.82 new_esEs7(Just(x0), Just(x1), ty_@0) 40.99/18.82 new_compare29(x0, x1, True) 40.99/18.82 new_ltEs20(x0, x1, ty_Bool) 40.99/18.82 new_esEs33(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_esEs7(Just(x0), Just(x1), ty_Bool) 40.99/18.82 new_esEs18(x0, x1, ty_Float) 40.99/18.82 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 40.99/18.82 new_lt10(x0, x1) 40.99/18.82 new_lt18(x0, x1, ty_Float) 40.99/18.82 new_esEs20(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) 40.99/18.82 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_primEqInt(Pos(Zero), Neg(Zero)) 40.99/18.82 new_primEqInt(Neg(Zero), Pos(Zero)) 40.99/18.82 new_esEs21(x0, x1, ty_Ordering) 40.99/18.82 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_ltEs20(x0, x1, ty_Int) 40.99/18.82 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 40.99/18.82 new_ltEs18(x0, x1, ty_Integer) 40.99/18.82 new_lt18(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_esEs33(x0, x1, ty_Double) 40.99/18.82 new_esEs31(x0, x1, ty_Double) 40.99/18.82 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 40.99/18.82 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 40.99/18.82 new_esEs7(Just(x0), Just(x1), ty_Int) 40.99/18.82 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_esEs31(x0, x1, ty_Char) 40.99/18.82 new_lt20(x0, x1, ty_Double) 40.99/18.82 new_esEs31(x0, x1, ty_@0) 40.99/18.82 new_compare3([], :(x0, x1), x2) 40.99/18.82 new_esEs25(x0, x1, ty_@0) 40.99/18.82 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_esEs31(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 40.99/18.82 new_esEs7(Just(x0), Just(x1), ty_Char) 40.99/18.82 new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_esEs28(x0, x1, ty_@0) 40.99/18.82 new_esEs31(x0, x1, ty_Int) 40.99/18.82 new_esEs21(x0, x1, app(ty_[], x2)) 40.99/18.82 new_esEs7(Just(x0), Just(x1), ty_Double) 40.99/18.82 new_esEs28(x0, x1, ty_Float) 40.99/18.82 new_primEqNat0(Succ(x0), Zero) 40.99/18.82 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 40.99/18.82 new_compare14(x0, x1, ty_@0) 40.99/18.82 new_primMulNat0(Succ(x0), Succ(x1)) 40.99/18.82 new_esEs20(x0, x1, ty_Float) 40.99/18.82 new_esEs31(x0, x1, app(ty_[], x2)) 40.99/18.82 new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 40.99/18.82 new_ltEs18(x0, x1, ty_Float) 40.99/18.82 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 40.99/18.82 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 40.99/18.82 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 40.99/18.82 new_esEs33(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_esEs28(x0, x1, ty_Int) 40.99/18.82 new_ltEs21(x0, x1, ty_Bool) 40.99/18.82 new_esEs33(x0, x1, ty_Int) 40.99/18.82 new_esEs34(x0, x1, ty_Ordering) 40.99/18.82 new_esEs22(x0, x1, ty_Integer) 40.99/18.82 new_ltEs19(x0, x1, ty_Ordering) 40.99/18.82 new_compare28(x0, x1, True, x2) 40.99/18.82 new_compare10(x0, x1, False, x2, x3) 40.99/18.82 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_ltEs20(x0, x1, ty_Integer) 40.99/18.82 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_esEs27(x0, x1, app(ty_[], x2)) 40.99/18.82 new_esEs28(x0, x1, ty_Char) 40.99/18.82 new_primEqNat0(Succ(x0), Succ(x1)) 40.99/18.82 new_lt20(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_primCompAux0(x0, x1, x2, x3) 40.99/18.82 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 40.99/18.82 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_esEs34(x0, x1, ty_Float) 40.99/18.82 new_lt20(x0, x1, ty_Float) 40.99/18.82 new_compare24(x0, x1, True) 40.99/18.82 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 40.99/18.82 new_esEs15(:(x0, x1), [], x2) 40.99/18.82 new_esEs7(Just(x0), Just(x1), ty_Integer) 40.99/18.82 new_compare210(Left(x0), Right(x1), False, x2, x3) 40.99/18.82 new_compare210(Right(x0), Left(x1), False, x2, x3) 40.99/18.82 new_ltEs17(Just(x0), Just(x1), ty_Integer) 40.99/18.82 new_ltEs18(x0, x1, ty_Int) 40.99/18.82 new_esEs21(x0, x1, ty_Bool) 40.99/18.82 new_primPlusNat0(Succ(x0), x1) 40.99/18.82 new_esEs25(x0, x1, ty_Bool) 40.99/18.82 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 40.99/18.82 new_compare114(x0, x1, True, x2, x3) 40.99/18.82 new_esEs33(x0, x1, ty_Float) 40.99/18.82 new_esEs20(x0, x1, ty_Int) 40.99/18.82 new_esEs7(Just(x0), Nothing, x1) 40.99/18.82 new_ltEs5(EQ, GT) 40.99/18.82 new_ltEs5(GT, EQ) 40.99/18.82 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 40.99/18.82 new_esEs20(x0, x1, app(ty_[], x2)) 40.99/18.82 new_esEs25(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_esEs26(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 40.99/18.82 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 40.99/18.82 new_ltEs18(x0, x1, ty_Char) 40.99/18.82 new_esEs20(x0, x1, ty_Char) 40.99/18.82 new_primMulNat0(Succ(x0), Zero) 40.99/18.82 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 40.99/18.82 new_esEs32(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_esEs32(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_esEs8(GT, GT) 40.99/18.82 new_sr0(Integer(x0), Integer(x1)) 40.99/18.82 new_esEs8(LT, EQ) 40.99/18.82 new_esEs8(EQ, LT) 40.99/18.82 new_ltEs19(x0, x1, ty_Float) 40.99/18.82 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 40.99/18.82 new_primCmpInt(Neg(Zero), Neg(Zero)) 40.99/18.82 new_ltEs17(Just(x0), Just(x1), ty_Ordering) 40.99/18.82 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_esEs18(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_esEs7(Just(x0), Just(x1), ty_Ordering) 40.99/18.82 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 40.99/18.82 new_compare25(x0, x1) 40.99/18.82 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_esEs8(LT, LT) 40.99/18.82 new_ltEs19(x0, x1, ty_Char) 40.99/18.82 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_primCmpInt(Pos(Zero), Neg(Zero)) 40.99/18.82 new_primCmpInt(Neg(Zero), Pos(Zero)) 40.99/18.82 new_esEs24(x0, x1, ty_Double) 40.99/18.82 new_esEs31(x0, x1, ty_Ordering) 40.99/18.82 new_ltEs20(x0, x1, ty_Ordering) 40.99/18.82 new_esEs24(x0, x1, ty_@0) 40.99/18.82 new_compare11(x0, x1, True) 40.99/18.82 new_esEs32(x0, x1, ty_Int) 40.99/18.82 new_lt19(x0, x1, ty_Double) 40.99/18.82 new_ltEs17(Nothing, Just(x0), x1) 40.99/18.82 new_esEs19(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_ltEs8(True, False) 40.99/18.82 new_ltEs8(False, True) 40.99/18.82 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_ltEs19(x0, x1, ty_Int) 40.99/18.82 new_esEs25(x0, x1, ty_Integer) 40.99/18.82 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_lt8(x0, x1) 40.99/18.82 new_esEs31(x0, x1, ty_Integer) 40.99/18.82 new_esEs27(x0, x1, ty_@0) 40.99/18.82 new_esEs28(x0, x1, ty_Ordering) 40.99/18.82 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 40.99/18.82 new_pePe(True, x0) 40.99/18.82 new_esEs19(x0, x1, ty_Double) 40.99/18.82 new_esEs34(x0, x1, ty_Char) 40.99/18.82 new_esEs19(x0, x1, ty_@0) 40.99/18.82 new_esEs32(x0, x1, ty_Char) 40.99/18.82 new_esEs21(x0, x1, ty_Float) 40.99/18.82 new_esEs25(x0, x1, ty_Ordering) 40.99/18.82 new_compare113(x0, x1, True, x2) 40.99/18.82 new_esEs28(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 40.99/18.82 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 40.99/18.82 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_asAs(False, x0) 40.99/18.82 new_fsEs(x0) 40.99/18.82 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 40.99/18.82 new_esEs32(x0, x1, app(ty_[], x2)) 40.99/18.82 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_esEs32(x0, x1, ty_Bool) 40.99/18.82 new_primPlusNat1(Succ(x0), Succ(x1)) 40.99/18.82 new_esEs34(x0, x1, ty_Int) 40.99/18.82 new_lt19(x0, x1, ty_@0) 40.99/18.82 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 40.99/18.82 new_lt6(x0, x1, x2) 40.99/18.82 new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) 40.99/18.82 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 40.99/18.82 new_compare110(x0, x1, True, x2, x3, x4) 40.99/18.82 new_ltEs19(x0, x1, ty_Bool) 40.99/18.82 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 40.99/18.82 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 40.99/18.82 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 40.99/18.82 new_esEs27(x0, x1, ty_Double) 40.99/18.82 new_compare14(x0, x1, ty_Double) 40.99/18.82 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_lt18(x0, x1, ty_Int) 40.99/18.82 new_compare210(Left(x0), Left(x1), False, x2, x3) 40.99/18.82 new_esEs20(x0, x1, ty_Bool) 40.99/18.82 new_compare28(x0, x1, False, x2) 40.99/18.82 new_esEs26(x0, x1, ty_Ordering) 40.99/18.82 new_esEs22(x0, x1, ty_Int) 40.99/18.82 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 40.99/18.82 new_ltEs18(x0, x1, app(ty_[], x2)) 40.99/18.82 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 40.99/18.82 new_ltEs19(x0, x1, ty_@0) 40.99/18.82 new_lt18(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 40.99/18.82 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_compare24(x0, x1, False) 40.99/18.82 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 40.99/18.82 new_lt19(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_esEs27(x0, x1, ty_Int) 40.99/18.82 new_primCompAux00(x0, LT) 40.99/18.82 new_esEs20(x0, x1, ty_@0) 40.99/18.82 new_compare14(x0, x1, ty_Float) 40.99/18.82 new_lt20(x0, x1, ty_Integer) 40.99/18.82 new_primCmpNat0(Succ(x0), Zero) 40.99/18.82 new_primMulNat0(Zero, Zero) 40.99/18.82 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_lt4(x0, x1) 40.99/18.82 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 40.99/18.82 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_lt17(x0, x1, x2, x3) 40.99/18.82 new_lt20(x0, x1, ty_Bool) 40.99/18.82 new_ltEs21(x0, x1, ty_Float) 40.99/18.82 new_compare3(:(x0, x1), :(x2, x3), x4) 40.99/18.82 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 40.99/18.82 new_esEs19(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 40.99/18.82 new_lt20(x0, x1, app(ty_[], x2)) 40.99/18.82 new_pePe(False, x0) 40.99/18.82 new_ltEs14(x0, x1) 40.99/18.82 new_compare9(@0, @0) 40.99/18.82 new_esEs33(x0, x1, ty_@0) 40.99/18.82 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 40.99/18.82 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_compare8(Char(x0), Char(x1)) 40.99/18.82 new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_esEs15(:(x0, x1), :(x2, x3), x4) 40.99/18.82 new_compare23(x0, x1, True, x2, x3) 40.99/18.82 new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) 40.99/18.82 new_compare16(x0, x1, x2, x3) 40.99/18.82 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 40.99/18.82 new_compare113(x0, x1, False, x2) 40.99/18.82 new_esEs23(x0, x1, ty_Int) 40.99/18.82 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 40.99/18.82 new_esEs33(x0, x1, ty_Integer) 40.99/18.82 new_esEs32(x0, x1, ty_Ordering) 40.99/18.82 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 40.99/18.82 new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 40.99/18.82 new_esEs15([], [], x0) 40.99/18.82 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 40.99/18.82 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 40.99/18.82 new_ltEs12(Left(x0), Right(x1), x2, x3) 40.99/18.82 new_ltEs12(Right(x0), Left(x1), x2, x3) 40.99/18.82 new_ltEs19(x0, x1, ty_Integer) 40.99/18.82 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 40.99/18.82 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 40.99/18.82 new_compare112(x0, x1, False, x2, x3) 40.99/18.82 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_lt19(x0, x1, ty_Ordering) 40.99/18.82 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 40.99/18.82 new_compare30(x0, x1, x2, x3) 40.99/18.82 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 40.99/18.82 new_not(True) 40.99/18.82 new_lt7(x0, x1, x2, x3, x4) 40.99/18.82 new_ltEs20(x0, x1, ty_Float) 40.99/18.82 new_lt9(x0, x1) 40.99/18.82 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 40.99/18.82 new_primCmpNat1(x0, Zero) 40.99/18.82 new_esEs18(x0, x1, ty_Double) 40.99/18.82 new_lt18(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 40.99/18.82 new_esEs8(EQ, GT) 40.99/18.82 new_esEs8(GT, EQ) 40.99/18.82 new_esEs12(False, False) 40.99/18.82 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 40.99/18.82 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 40.99/18.82 new_compare14(x0, x1, ty_Integer) 40.99/18.82 new_esEs24(x0, x1, ty_Ordering) 40.99/18.82 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 40.99/18.82 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 40.99/18.82 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 40.99/18.82 new_compare3([], [], x0) 40.99/18.82 new_compare32(x0, x1, x2, x3) 40.99/18.82 new_ltEs6(x0, x1) 40.99/18.82 new_ltEs21(x0, x1, app(ty_[], x2)) 40.99/18.82 new_esEs28(x0, x1, ty_Double) 40.99/18.82 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_esEs7(Just(x0), Just(x1), ty_Float) 40.99/18.82 new_esEs20(x0, x1, ty_Integer) 40.99/18.82 new_ltEs19(x0, x1, app(ty_[], x2)) 40.99/18.82 new_esEs31(x0, x1, ty_Float) 40.99/18.82 new_esEs27(x0, x1, ty_Ordering) 40.99/18.82 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 40.99/18.82 new_ltEs11(x0, x1, x2) 40.99/18.82 new_lt15(x0, x1) 40.99/18.82 new_compare23(x0, x1, False, x2, x3) 40.99/18.82 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 40.99/18.82 new_esEs21(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_lt19(x0, x1, ty_Integer) 40.99/18.82 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 40.99/18.82 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_esEs33(x0, x1, ty_Char) 40.99/18.82 new_esEs26(x0, x1, ty_Int) 40.99/18.82 new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 40.99/18.82 new_compare111(x0, x1, False) 40.99/18.82 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 40.99/18.82 new_lt18(x0, x1, ty_Double) 40.99/18.82 new_esEs25(x0, x1, ty_Double) 40.99/18.82 new_lt18(x0, x1, ty_Char) 40.99/18.82 new_compare31(x0, x1, x2, x3) 40.99/18.82 new_lt20(x0, x1, ty_Char) 40.99/18.82 new_lt20(x0, x1, ty_@0) 40.99/18.82 new_esEs25(x0, x1, ty_Char) 40.99/18.82 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 40.99/18.82 new_lt18(x0, x1, ty_@0) 40.99/18.82 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 40.99/18.82 new_esEs19(x0, x1, ty_Ordering) 40.99/18.82 new_esEs7(Nothing, Just(x0), x1) 40.99/18.82 new_compare27(x0, x1, True, x2, x3, x4) 40.99/18.82 new_esEs18(x0, x1, ty_Int) 40.99/18.82 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 40.99/18.82 new_esEs26(x0, x1, ty_Double) 40.99/18.82 new_esEs34(x0, x1, app(ty_[], x2)) 40.99/18.82 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 40.99/18.82 new_esEs26(x0, x1, ty_Char) 40.99/18.82 new_lt20(x0, x1, ty_Int) 40.99/18.82 new_esEs33(x0, x1, ty_Bool) 40.99/18.82 new_ltEs13(x0, x1, x2) 40.99/18.82 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_esEs11(Char(x0), Char(x1)) 40.99/18.82 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_ltEs5(LT, LT) 40.99/18.82 new_esEs25(x0, x1, ty_Int) 40.99/18.82 new_primCmpInt(Pos(Zero), Pos(Zero)) 40.99/18.82 new_esEs25(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 40.99/18.82 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 40.99/18.82 new_esEs18(x0, x1, ty_Char) 40.99/18.82 new_esEs21(x0, x1, ty_Integer) 40.99/18.82 new_esEs34(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_esEs14(@0, @0) 40.99/18.82 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_compare14(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_ltEs18(x0, x1, ty_Double) 40.99/18.82 new_esEs20(x0, x1, ty_Ordering) 40.99/18.82 new_esEs26(x0, x1, app(ty_[], x2)) 40.99/18.82 new_compare110(x0, x1, False, x2, x3, x4) 40.99/18.82 new_ltEs18(x0, x1, ty_Ordering) 40.99/18.82 new_esEs24(x0, x1, ty_Char) 40.99/18.82 new_ltEs5(LT, EQ) 40.99/18.82 new_ltEs5(EQ, LT) 40.99/18.82 new_esEs20(x0, x1, ty_Double) 40.99/18.82 new_compare14(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_esEs27(x0, x1, ty_Integer) 40.99/18.82 new_ltEs5(GT, GT) 40.99/18.82 new_ltEs19(x0, x1, ty_Double) 40.99/18.82 new_esEs26(x0, x1, ty_Bool) 40.99/18.82 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_compare15(x0, x1) 40.99/18.82 new_compare14(x0, x1, ty_Bool) 40.99/18.82 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 40.99/18.82 new_esEs26(x0, x1, ty_@0) 40.99/18.82 new_ltEs17(Nothing, Nothing, x0) 40.99/18.82 new_esEs26(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 40.99/18.82 new_lt18(x0, x1, ty_Integer) 40.99/18.82 new_esEs10(Integer(x0), Integer(x1)) 40.99/18.82 new_esEs8(LT, GT) 40.99/18.82 new_esEs8(GT, LT) 40.99/18.82 new_esEs5(Left(x0), Right(x1), x2, x3) 40.99/18.82 new_esEs5(Right(x0), Left(x1), x2, x3) 40.99/18.82 new_esEs9(x0, x1) 40.99/18.82 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 40.99/18.82 new_ltEs21(x0, x1, ty_Integer) 40.99/18.82 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_compare12(x0, x1, x2) 40.99/18.82 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 40.99/18.82 new_lt18(x0, x1, ty_Bool) 40.99/18.82 new_compare17(:%(x0, x1), :%(x2, x3), ty_Int) 40.99/18.82 new_esEs26(x0, x1, ty_Integer) 40.99/18.82 new_esEs27(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 40.99/18.82 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 40.99/18.82 new_esEs32(x0, x1, ty_@0) 40.99/18.82 new_ltEs17(Just(x0), Nothing, x1) 40.99/18.82 new_esEs24(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_esEs17(:%(x0, x1), :%(x2, x3), x4) 40.99/18.82 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 40.99/18.82 new_esEs23(x0, x1, ty_Integer) 40.99/18.82 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_lt13(x0, x1, x2, x3) 40.99/18.82 new_esEs27(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_esEs33(x0, x1, ty_Ordering) 40.99/18.82 new_compare27(x0, x1, False, x2, x3, x4) 40.99/18.82 new_ltEs21(x0, x1, ty_@0) 40.99/18.82 new_asAs(True, x0) 40.99/18.82 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 40.99/18.82 new_lt16(x0, x1) 40.99/18.82 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 40.99/18.82 new_primCompAux00(x0, EQ) 40.99/18.82 new_compare111(x0, x1, True) 40.99/18.82 new_compare14(x0, x1, app(ty_[], x2)) 40.99/18.82 new_primPlusNat1(Zero, Succ(x0)) 40.99/18.82 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 40.99/18.82 new_esEs24(x0, x1, ty_Float) 40.99/18.82 new_primEqNat0(Zero, Zero) 40.99/18.82 new_compare14(x0, x1, ty_Char) 40.99/18.82 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_esEs24(x0, x1, ty_Bool) 40.99/18.82 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_lt19(x0, x1, ty_Bool) 40.99/18.82 new_esEs12(True, True) 40.99/18.82 new_not(False) 40.99/18.82 new_ltEs17(Just(x0), Just(x1), ty_Float) 40.99/18.82 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_lt20(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_lt18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_ltEs20(x0, x1, app(ty_[], x2)) 40.99/18.82 new_esEs31(x0, x1, app(ty_Maybe, x2)) 40.99/18.82 new_primPlusNat1(Succ(x0), Zero) 40.99/18.82 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_compare14(x0, x1, ty_Int) 40.99/18.82 new_lt14(x0, x1, x2) 40.99/18.82 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 40.99/18.82 new_esEs19(x0, x1, ty_Bool) 40.99/18.82 new_esEs7(Nothing, Nothing, x0) 40.99/18.82 new_esEs21(x0, x1, ty_@0) 40.99/18.82 new_compare17(:%(x0, x1), :%(x2, x3), ty_Integer) 40.99/18.82 new_ltEs10(x0, x1) 40.99/18.82 new_esEs32(x0, x1, ty_Double) 40.99/18.82 new_lt11(x0, x1, x2) 40.99/18.82 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 40.99/18.82 new_ltEs8(True, True) 40.99/18.82 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_esEs19(x0, x1, ty_Float) 40.99/18.82 new_lt19(x0, x1, ty_Float) 40.99/18.82 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 40.99/18.82 new_esEs13(Double(x0, x1), Double(x2, x3)) 40.99/18.82 new_esEs21(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 40.99/18.82 new_esEs24(x0, x1, app(ty_[], x2)) 40.99/18.82 new_esEs24(x0, x1, ty_Int) 40.99/18.82 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 40.99/18.82 new_ltEs5(EQ, EQ) 40.99/18.82 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_compare14(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_esEs34(x0, x1, ty_Double) 40.99/18.82 new_compare112(x0, x1, True, x2, x3) 40.99/18.82 new_esEs27(x0, x1, ty_Bool) 40.99/18.82 new_esEs28(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 40.99/18.82 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 40.99/18.82 new_lt5(x0, x1) 40.99/18.82 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 40.99/18.82 new_esEs16(Float(x0, x1), Float(x2, x3)) 40.99/18.82 new_lt18(x0, x1, ty_Ordering) 40.99/18.82 new_esEs19(x0, x1, ty_Char) 40.99/18.82 new_lt19(x0, x1, ty_Char) 40.99/18.82 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 40.99/18.82 new_esEs18(x0, x1, ty_Ordering) 40.99/18.82 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 40.99/18.82 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 40.99/18.82 new_esEs34(x0, x1, ty_@0) 40.99/18.82 new_lt20(x0, x1, ty_Ordering) 40.99/18.82 new_ltEs16(x0, x1) 40.99/18.82 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 40.99/18.82 new_primCmpNat1(x0, Succ(x1)) 40.99/18.82 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_primMulInt(Pos(x0), Neg(x1)) 40.99/18.82 new_primMulInt(Neg(x0), Pos(x1)) 40.99/18.82 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_esEs19(x0, x1, ty_Int) 40.99/18.82 new_compare7(x0, x1) 40.99/18.82 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_esEs27(x0, x1, ty_Char) 40.99/18.82 new_primMulNat0(Zero, Succ(x0)) 40.99/18.82 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 40.99/18.82 new_primCmpNat0(Zero, Zero) 40.99/18.82 new_primEqNat0(Zero, Succ(x0)) 40.99/18.82 new_compare114(x0, x1, False, x2, x3) 40.99/18.82 new_lt19(x0, x1, app(ty_Ratio, x2)) 40.99/18.82 new_lt19(x0, x1, ty_Int) 40.99/18.82 40.99/18.82 We have to consider all minimal (P,Q,R)-chains. 40.99/18.82 ---------------------------------------- 40.99/18.82 40.99/18.82 (24) QDPSizeChangeProof (EQUIVALENT) 40.99/18.82 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. 40.99/18.82 40.99/18.82 From the DPs we obtained the following set of size-change graphs: 40.99/18.82 *new_splitGT(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Left(yvy400), h, ba, bb) 40.99/18.82 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8, 5 >= 9 40.99/18.82 40.99/18.82 40.99/18.82 *new_splitGT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare32(yvy400, yvy300, h, ba), LT), h, ba, bb) 40.99/18.82 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 40.99/18.82 40.99/18.82 40.99/18.82 *new_splitGT20(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Left(yvy400), h, ba, bb) 40.99/18.82 The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 8 >= 7, 9 >= 8, 10 >= 9 40.99/18.82 40.99/18.82 40.99/18.82 *new_splitGT2(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, False, bc, bd, be) -> new_splitGT1(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, new_esEs8(new_compare31(yvy50, yvy45, bc, bd), LT), bc, bd, be) 40.99/18.82 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 40.99/18.82 40.99/18.82 40.99/18.82 *new_splitGT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitGT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Left(yvy400), Right(yvy300), False, h, ba), GT), h, ba, bb) 40.99/18.82 The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9, 9 >= 10 40.99/18.82 40.99/18.82 40.99/18.82 *new_splitGT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitGT2(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Left(yvy400), Left(yvy300), new_esEs33(yvy400, yvy300, h), h, ba), GT), h, ba, bb) 40.99/18.82 The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9, 9 >= 10 40.99/18.82 40.99/18.82 40.99/18.82 *new_splitGT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitGT(yvy33, yvy400, h, ba, bb) 40.99/18.82 The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 40.99/18.82 40.99/18.82 40.99/18.82 *new_splitGT2(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bc, bd, be) -> new_splitGT(yvy49, yvy50, bc, bd, be) 40.99/18.82 The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 40.99/18.82 40.99/18.82 40.99/18.82 *new_splitGT1(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bc, bd, be) -> new_splitGT(yvy48, yvy50, bc, bd, be) 40.99/18.82 The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 40.99/18.82 40.99/18.82 40.99/18.82 ---------------------------------------- 40.99/18.82 40.99/18.82 (25) 40.99/18.82 YES 40.99/18.82 40.99/18.82 ---------------------------------------- 40.99/18.82 40.99/18.82 (26) 40.99/18.82 Obligation: 40.99/18.82 Q DP problem: 40.99/18.82 The TRS P consists of the following rules: 40.99/18.82 40.99/18.82 new_splitGT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitGT0(yvy33, yvy400, h, ba, bb) 40.99/18.82 new_splitGT0(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Right(yvy400), h, ba, bb) 40.99/18.82 new_splitGT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitGT22(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Right(yvy400), Right(yvy300), new_esEs34(yvy400, yvy300, ba), h, ba), GT), h, ba, bb) 40.99/18.82 new_splitGT22(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, False, bf, bg, bh) -> new_splitGT12(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, new_esEs8(new_compare30(yvy65, yvy60, bf, bg), LT), bf, bg, bh) 40.99/18.82 new_splitGT12(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bf, bg, bh) -> new_splitGT0(yvy63, yvy65, bf, bg, bh) 40.99/18.82 new_splitGT22(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bf, bg, bh) -> new_splitGT0(yvy64, yvy65, bf, bg, bh) 40.99/18.82 new_splitGT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Right(yvy400), Left(yvy300), False, h, ba), GT), h, ba, bb) 40.99/18.82 new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitGT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare33(yvy400, yvy300, h, ba), LT), h, ba, bb) 40.99/18.82 new_splitGT21(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Right(yvy400), h, ba, bb) 40.99/18.82 40.99/18.82 The TRS R consists of the following rules: 40.99/18.82 40.99/18.82 new_esEs33(yvy400, yvy300, app(app(ty_Either, dg), cc)) -> new_esEs5(yvy400, yvy300, dg, cc) 40.99/18.82 new_ltEs20(yvy79002, yvy80002, app(ty_[], dea)) -> new_ltEs11(yvy79002, yvy80002, dea) 40.99/18.82 new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT 40.99/18.82 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 40.99/18.82 new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, ty_Bool) -> new_ltEs8(yvy79001, yvy80001) 40.99/18.82 new_esEs24(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Ordering, cc) -> new_esEs8(yvy4000, yvy3000) 40.99/18.82 new_pePe(True, yvy255) -> True 40.99/18.82 new_esEs25(yvy79001, yvy80001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(yvy79001, yvy80001, dcd, dce, dcf) 40.99/18.82 new_esEs34(yvy400, yvy300, ty_Bool) -> new_esEs12(yvy400, yvy300) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Ratio, ccc)) -> new_ltEs13(yvy79000, yvy80000, ccc) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(ty_Ratio, bde)) -> new_ltEs13(yvy79000, yvy80000, bde) 40.99/18.82 new_esEs19(yvy4001, yvy3001, app(ty_Ratio, bha)) -> new_esEs17(yvy4001, yvy3001, bha) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.82 new_esEs34(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Double) -> new_ltEs14(yvy79000, yvy80000) 40.99/18.82 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 40.99/18.82 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 40.99/18.82 new_esEs27(yvy4001, yvy3001, app(app(ty_Either, dfh), dga)) -> new_esEs5(yvy4001, yvy3001, dfh, dga) 40.99/18.82 new_esEs33(yvy400, yvy300, ty_Int) -> new_esEs9(yvy400, yvy300) 40.99/18.82 new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT 40.99/18.82 new_lt18(yvy79000, yvy80000, app(ty_Maybe, dbf)) -> new_lt6(yvy79000, yvy80000, dbf) 40.99/18.82 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 40.99/18.82 new_esEs9(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 40.99/18.82 new_lt20(yvy79000, yvy80000, app(app(ty_Either, dac), dad)) -> new_lt17(yvy79000, yvy80000, dac, dad) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs12(yvy4000, yvy3000) 40.99/18.82 new_esEs24(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cbf)) -> new_esEs7(yvy4000, yvy3000, cbf) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Char, cc) -> new_esEs11(yvy4000, yvy3000) 40.99/18.82 new_esEs28(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 40.99/18.82 new_esEs34(yvy400, yvy300, app(ty_Maybe, ced)) -> new_esEs7(yvy400, yvy300, ced) 40.99/18.82 new_ltEs12(Left(yvy79000), Right(yvy80000), bdb, bbg) -> True 40.99/18.82 new_ltEs21(yvy79001, yvy80001, ty_Char) -> new_ltEs6(yvy79001, yvy80001) 40.99/18.82 new_esEs28(yvy79000, yvy80000, app(ty_Maybe, fb)) -> new_esEs7(yvy79000, yvy80000, fb) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Ratio, bcb), bbg) -> new_ltEs13(yvy79000, yvy80000, bcb) 40.99/18.82 new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 40.99/18.82 new_esEs18(yvy4000, yvy3000, app(app(ty_@2, beg), beh)) -> new_esEs4(yvy4000, yvy3000, beg, beh) 40.99/18.82 new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt16(yvy79001, yvy80001) 40.99/18.82 new_lt19(yvy79001, yvy80001, app(app(ty_Either, dcb), dcc)) -> new_lt17(yvy79001, yvy80001, dcb, dcc) 40.99/18.82 new_esEs26(yvy4000, yvy3000, app(ty_[], dee)) -> new_esEs15(yvy4000, yvy3000, dee) 40.99/18.82 new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt4(yvy79001, yvy80001) 40.99/18.82 new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 40.99/18.82 new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) 40.99/18.82 new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 40.99/18.82 new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs13(yvy20, yvy15) 40.99/18.82 new_compare14(yvy79000, yvy80000, app(ty_[], gh)) -> new_compare3(yvy79000, yvy80000, gh) 40.99/18.82 new_compare3([], [], fg) -> EQ 40.99/18.82 new_esEs28(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 40.99/18.82 new_esEs8(GT, GT) -> True 40.99/18.82 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 40.99/18.82 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 40.99/18.82 new_ltEs19(yvy7900, yvy8000, app(ty_[], daa)) -> new_ltEs11(yvy7900, yvy8000, daa) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, app(app(ty_@2, cgc), cgd)) -> new_ltEs4(yvy7900, yvy8000, cgc, cgd) 40.99/18.82 new_fsEs(yvy244) -> new_not(new_esEs8(yvy244, GT)) 40.99/18.82 new_esEs25(yvy79001, yvy80001, app(ty_Ratio, dca)) -> new_esEs17(yvy79001, yvy80001, dca) 40.99/18.82 new_compare210(yvy790, yvy800, True, cga, cgb) -> EQ 40.99/18.82 new_esEs31(yvy35, yvy30, app(ty_Ratio, bbd)) -> new_esEs17(yvy35, yvy30, bbd) 40.99/18.82 new_esEs32(yvy20, yvy15, app(ty_[], dhc)) -> new_esEs15(yvy20, yvy15, dhc) 40.99/18.82 new_lt20(yvy79000, yvy80000, app(app(ty_@2, ca), cb)) -> new_lt13(yvy79000, yvy80000, ca, cb) 40.99/18.82 new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare18(yvy7900, yvy8000)) 40.99/18.82 new_esEs24(yvy79000, yvy80000, app(app(ty_@2, dae), daf)) -> new_esEs4(yvy79000, yvy80000, dae, daf) 40.99/18.82 new_lt18(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 40.99/18.82 new_compare28(yvy79000, yvy80000, False, fb) -> new_compare113(yvy79000, yvy80000, new_ltEs17(yvy79000, yvy80000, fb), fb) 40.99/18.82 new_lt18(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 40.99/18.82 new_esEs8(EQ, EQ) -> True 40.99/18.82 new_ltEs11(yvy7900, yvy8000, fg) -> new_fsEs(new_compare3(yvy7900, yvy8000, fg)) 40.99/18.82 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 40.99/18.82 new_esEs20(yvy4002, yvy3002, app(ty_Ratio, cac)) -> new_esEs17(yvy4002, yvy3002, cac) 40.99/18.82 new_ltEs20(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(app(ty_@2, dh), ea)) -> new_esEs4(yvy4000, yvy3000, dh, ea) 40.99/18.82 new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 40.99/18.82 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 40.99/18.82 new_compare13(yvy79000, yvy80000, fc, fd, ff) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, fc, fd, ff), fc, fd, ff) 40.99/18.82 new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_@0) -> new_esEs14(yvy4000, yvy3000) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_Either, ccd), cce)) -> new_ltEs12(yvy79000, yvy80000, ccd, cce) 40.99/18.82 new_not(True) -> False 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs14(yvy79000, yvy80000) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 40.99/18.82 new_compare210(Left(yvy7900), Right(yvy8000), False, cga, cgb) -> LT 40.99/18.82 new_lt18(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 40.99/18.82 new_compare14(yvy79000, yvy80000, ty_Ordering) -> new_compare25(yvy79000, yvy80000) 40.99/18.82 new_compare24(yvy79000, yvy80000, False) -> new_compare11(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000)) 40.99/18.82 new_primCompAux00(yvy260, LT) -> LT 40.99/18.82 new_primCmpNat0(Zero, Zero) -> EQ 40.99/18.82 new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs6(yvy4000, yvy3000, cfb, cfc, cfd) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Integer, bbg) -> new_ltEs10(yvy79000, yvy80000) 40.99/18.82 new_esEs28(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 40.99/18.82 new_compare11(yvy79000, yvy80000, False) -> GT 40.99/18.82 new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 40.99/18.82 new_esEs21(yvy4000, yvy3000, app(ty_Ratio, cfe)) -> new_esEs17(yvy4000, yvy3000, cfe) 40.99/18.82 new_esEs20(yvy4002, yvy3002, app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs6(yvy4002, yvy3002, bhh, caa, cab) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(ty_[], eb)) -> new_esEs15(yvy4000, yvy3000, eb) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Char, bbg) -> new_ltEs6(yvy79000, yvy80000) 40.99/18.82 new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 40.99/18.82 new_esEs19(yvy4001, yvy3001, app(app(ty_@2, bga), bgb)) -> new_esEs4(yvy4001, yvy3001, bga, bgb) 40.99/18.82 new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 40.99/18.82 new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) 40.99/18.82 new_lt18(yvy79000, yvy80000, app(app(ty_Either, dah), dba)) -> new_lt17(yvy79000, yvy80000, dah, dba) 40.99/18.82 new_primEqNat0(Succ(yvy40000), Zero) -> False 40.99/18.82 new_primEqNat0(Zero, Succ(yvy30000)) -> False 40.99/18.82 new_esEs34(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_[], cf), cc) -> new_esEs15(yvy4000, yvy3000, cf) 40.99/18.82 new_esEs14(@0, @0) -> True 40.99/18.82 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 40.99/18.82 new_compare10(yvy79000, yvy80000, True, ca, cb) -> LT 40.99/18.82 new_ltEs18(yvy7900, yvy8000, app(ty_[], fg)) -> new_ltEs11(yvy7900, yvy8000, fg) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Double) -> new_esEs13(yvy4000, yvy3000) 40.99/18.82 new_primCompAux00(yvy260, GT) -> GT 40.99/18.82 new_compare28(yvy79000, yvy80000, True, fb) -> EQ 40.99/18.82 new_esEs25(yvy79001, yvy80001, ty_Double) -> new_esEs13(yvy79001, yvy80001) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) 40.99/18.82 new_primCmpNat2(Zero, yvy7900) -> LT 40.99/18.82 new_esEs20(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) 40.99/18.82 new_esEs25(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_@0) -> new_ltEs16(yvy79000, yvy80000) 40.99/18.82 new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 40.99/18.82 new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT 40.99/18.82 new_ltEs20(yvy79002, yvy80002, app(app(ty_@2, dda), ddb)) -> new_ltEs4(yvy79002, yvy80002, dda, ddb) 40.99/18.82 new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 40.99/18.82 new_esEs20(yvy4002, yvy3002, app(app(ty_@2, bhc), bhd)) -> new_esEs4(yvy4002, yvy3002, bhc, bhd) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, ty_Int) -> new_ltEs7(yvy79001, yvy80001) 40.99/18.82 new_compare3(:(yvy79000, yvy79001), :(yvy80000, yvy80001), fg) -> new_primCompAux0(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, fg), fg) 40.99/18.82 new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs13(yvy35, yvy30) 40.99/18.82 new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 40.99/18.82 new_ltEs5(LT, GT) -> True 40.99/18.82 new_ltEs18(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 40.99/18.82 new_primPlusNat1(Succ(yvy20100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20100, yvy3000000))) 40.99/18.82 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 40.99/18.82 new_esEs31(yvy35, yvy30, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs6(yvy35, yvy30, bba, bbb, bbc) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs9(yvy79000, yvy80000, ccf, ccg, cch) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Float) -> new_esEs16(yvy4000, yvy3000) 40.99/18.82 new_primCmpNat0(Zero, Succ(yvy80000)) -> LT 40.99/18.82 new_ltEs20(yvy79002, yvy80002, ty_Bool) -> new_ltEs8(yvy79002, yvy80002) 40.99/18.82 new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs6(yvy4001, yvy3001, bgf, bgg, bgh) 40.99/18.82 new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 40.99/18.82 new_esEs33(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, cha), chb)) -> new_ltEs4(yvy7900, yvy8000, cha, chb) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(ty_Maybe, fa)) -> new_esEs7(yvy4000, yvy3000, fa) 40.99/18.82 new_compare110(yvy79000, yvy80000, False, fc, fd, ff) -> GT 40.99/18.82 new_primCmpNat0(Succ(yvy79000), Zero) -> GT 40.99/18.82 new_compare3([], :(yvy80000, yvy80001), fg) -> LT 40.99/18.82 new_pePe(False, yvy255) -> yvy255 40.99/18.82 new_ltEs17(Nothing, Nothing, cbh) -> True 40.99/18.82 new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 40.99/18.82 new_compare27(yvy79000, yvy80000, False, fc, fd, ff) -> new_compare110(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, fc, fd, ff), fc, fd, ff) 40.99/18.82 new_esEs7(Nothing, Just(yvy3000), baa) -> False 40.99/18.82 new_esEs7(Just(yvy4000), Nothing, baa) -> False 40.99/18.82 new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 40.99/18.82 new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Float) -> new_ltEs15(yvy79000, yvy80000) 40.99/18.82 new_ltEs17(Nothing, Just(yvy80000), cbh) -> True 40.99/18.82 new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 40.99/18.82 new_ltEs17(Just(yvy79000), Nothing, cbh) -> False 40.99/18.82 new_esEs12(False, False) -> True 40.99/18.82 new_ltEs20(yvy79002, yvy80002, app(ty_Maybe, deb)) -> new_ltEs17(yvy79002, yvy80002, deb) 40.99/18.82 new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 40.99/18.82 new_compare114(yvy227, yvy228, True, cfg, cfh) -> LT 40.99/18.82 new_compare112(yvy234, yvy235, True, bee, bef) -> LT 40.99/18.82 new_primCmpNat1(yvy7900, Zero) -> GT 40.99/18.82 new_esEs34(yvy400, yvy300, ty_Int) -> new_esEs9(yvy400, yvy300) 40.99/18.82 new_compare14(yvy79000, yvy80000, ty_Char) -> new_compare8(yvy79000, yvy80000) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cah), cba)) -> new_esEs5(yvy4000, yvy3000, cah, cba) 40.99/18.82 new_lt18(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 40.99/18.82 new_lt15(yvy79000, yvy80000) -> new_esEs8(new_compare25(yvy79000, yvy80000), LT) 40.99/18.82 new_esEs25(yvy79001, yvy80001, ty_Integer) -> new_esEs10(yvy79001, yvy80001) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs9(yvy79000, yvy80000, bdh, bea, beb) 40.99/18.82 new_compare23(yvy79000, yvy80000, False, ca, cb) -> new_compare10(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000, ca, cb), ca, cb) 40.99/18.82 new_esEs34(yvy400, yvy300, app(app(ty_Either, cdf), cdg)) -> new_esEs5(yvy400, yvy300, cdf, cdg) 40.99/18.82 new_esEs25(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_[], bch), bbg) -> new_ltEs11(yvy79000, yvy80000, bch) 40.99/18.82 new_esEs25(yvy79001, yvy80001, app(ty_[], dcg)) -> new_esEs15(yvy79001, yvy80001, dcg) 40.99/18.82 new_compare113(yvy79000, yvy80000, True, fb) -> LT 40.99/18.82 new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 40.99/18.82 new_ltEs7(yvy7900, yvy8000) -> new_fsEs(new_compare7(yvy7900, yvy8000)) 40.99/18.82 new_lt20(yvy79000, yvy80000, app(ty_[], bbf)) -> new_lt11(yvy79000, yvy80000, bbf) 40.99/18.82 new_compare23(yvy79000, yvy80000, True, ca, cb) -> EQ 40.99/18.82 new_esEs8(LT, EQ) -> False 40.99/18.82 new_esEs8(EQ, LT) -> False 40.99/18.82 new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cd), ce), cc) -> new_esEs4(yvy4000, yvy3000, cd, ce) 40.99/18.82 new_esEs21(yvy4000, yvy3000, app(app(ty_@2, cee), cef)) -> new_esEs4(yvy4000, yvy3000, cee, cef) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, app(app(app(ty_@3, eah), eba), ebb)) -> new_ltEs9(yvy79001, yvy80001, eah, eba, ebb) 40.99/18.82 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 40.99/18.82 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 40.99/18.82 new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dhf), dhg), dhh)) -> new_esEs6(yvy20, yvy15, dhf, dhg, dhh) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(app(ty_@2, bdc), bdd)) -> new_ltEs4(yvy79000, yvy80000, bdc, bdd) 40.99/18.82 new_esEs7(Nothing, Nothing, baa) -> True 40.99/18.82 new_esEs13(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 40.99/18.82 new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 40.99/18.82 new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 40.99/18.82 new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt9(yvy79001, yvy80001) 40.99/18.82 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, dfc)) -> new_esEs17(yvy4000, yvy3000, dfc) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Int) -> new_ltEs7(yvy79000, yvy80000) 40.99/18.82 new_esEs25(yvy79001, yvy80001, app(app(ty_@2, dbg), dbh)) -> new_esEs4(yvy79001, yvy80001, dbg, dbh) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_Either, bcc), bcd), bbg) -> new_ltEs12(yvy79000, yvy80000, bcc, bcd) 40.99/18.82 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare7(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, app(app(ty_Either, bdb), bbg)) -> new_ltEs12(yvy7900, yvy8000, bdb, bbg) 40.99/18.82 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 40.99/18.82 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 40.99/18.82 new_esEs24(yvy79000, yvy80000, app(app(ty_Either, dah), dba)) -> new_esEs5(yvy79000, yvy80000, dah, dba) 40.99/18.82 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, dab)) -> new_ltEs17(yvy7900, yvy8000, dab) 40.99/18.82 new_esEs25(yvy79001, yvy80001, ty_Ordering) -> new_esEs8(yvy79001, yvy80001) 40.99/18.82 new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs14(yvy35, yvy30) 40.99/18.82 new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT 40.99/18.82 new_esEs20(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) 40.99/18.82 new_compare114(yvy227, yvy228, False, cfg, cfh) -> GT 40.99/18.82 new_ltEs20(yvy79002, yvy80002, ty_@0) -> new_ltEs16(yvy79002, yvy80002) 40.99/18.82 new_esEs33(yvy400, yvy300, app(ty_Maybe, baa)) -> new_esEs7(yvy400, yvy300, baa) 40.99/18.82 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 40.99/18.82 new_esEs25(yvy79001, yvy80001, app(ty_Maybe, dch)) -> new_esEs7(yvy79001, yvy80001, dch) 40.99/18.82 new_ltEs8(True, False) -> False 40.99/18.82 new_esEs15([], [], hd) -> True 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Bool, bbg) -> new_ltEs8(yvy79000, yvy80000) 40.99/18.82 new_esEs32(yvy20, yvy15, app(app(ty_Either, dhd), dhe)) -> new_esEs5(yvy20, yvy15, dhd, dhe) 40.99/18.82 new_esEs33(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) 40.99/18.82 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 40.99/18.82 new_esEs24(yvy79000, yvy80000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs6(yvy79000, yvy80000, dbb, dbc, dbd) 40.99/18.82 new_lt4(yvy240, yvy239) -> new_esEs8(new_compare7(yvy240, yvy239), LT) 40.99/18.82 new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt10(yvy79001, yvy80001) 40.99/18.82 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 40.99/18.82 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 40.99/18.82 new_ltEs8(False, False) -> True 40.99/18.82 new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs6(yvy4000, yvy3000, cbb, cbc, cbd) 40.99/18.82 new_compare14(yvy79000, yvy80000, app(app(ty_@2, fh), ga)) -> new_compare16(yvy79000, yvy80000, fh, ga) 40.99/18.82 new_esEs34(yvy400, yvy300, app(ty_Ratio, cec)) -> new_esEs17(yvy400, yvy300, cec) 40.99/18.82 new_esEs33(yvy400, yvy300, app(app(ty_@2, hb), hc)) -> new_esEs4(yvy400, yvy300, hb, hc) 40.99/18.82 new_lt18(yvy79000, yvy80000, app(ty_Ratio, dag)) -> new_lt14(yvy79000, yvy80000, dag) 40.99/18.82 new_ltEs5(EQ, EQ) -> True 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_Either, cg), da), cc) -> new_esEs5(yvy4000, yvy3000, cg, da) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_ltEs9(yvy7900, yvy8000, cgf, cgg, cgh) 40.99/18.82 new_compare27(yvy79000, yvy80000, True, fc, fd, ff) -> EQ 40.99/18.82 new_lt19(yvy79001, yvy80001, app(ty_[], dcg)) -> new_lt11(yvy79001, yvy80001, dcg) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Bool, cc) -> new_esEs12(yvy4000, yvy3000) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 40.99/18.82 new_compare15(yvy79000, yvy80000) -> new_compare29(yvy79000, yvy80000, new_esEs12(yvy79000, yvy80000)) 40.99/18.82 new_esEs34(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) 40.99/18.82 new_esEs21(yvy4000, yvy3000, app(app(ty_Either, ceh), cfa)) -> new_esEs5(yvy4000, yvy3000, ceh, cfa) 40.99/18.82 new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.82 new_compare7(yvy79, yvy80) -> new_primCmpInt(yvy79, yvy80) 40.99/18.82 new_esEs8(LT, LT) -> True 40.99/18.82 new_esEs34(yvy400, yvy300, app(app(ty_@2, cdc), cdd)) -> new_esEs4(yvy400, yvy300, cdc, cdd) 40.99/18.82 new_compare111(yvy79000, yvy80000, True) -> LT 40.99/18.82 new_esEs28(yvy79000, yvy80000, app(ty_[], bbf)) -> new_esEs15(yvy79000, yvy80000, bbf) 40.99/18.82 new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 40.99/18.82 new_lt18(yvy79000, yvy80000, app(ty_[], dbe)) -> new_lt11(yvy79000, yvy80000, dbe) 40.99/18.82 new_lt6(yvy79000, yvy80000, fb) -> new_esEs8(new_compare12(yvy79000, yvy80000, fb), LT) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 40.99/18.82 new_esEs24(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, chf), chg), chh)) -> new_ltEs9(yvy7900, yvy8000, chf, chg, chh) 40.99/18.82 new_primPlusNat1(Succ(yvy20100), Zero) -> Succ(yvy20100) 40.99/18.82 new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cae), caf)) -> new_esEs4(yvy4000, yvy3000, cae, caf) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Maybe, cdb)) -> new_ltEs17(yvy79000, yvy80000, cdb) 40.99/18.82 new_compare14(yvy79000, yvy80000, app(app(ty_Either, gc), gd)) -> new_compare19(yvy79000, yvy80000, gc, gd) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, ty_Double) -> new_ltEs14(yvy79001, yvy80001) 40.99/18.82 new_compare14(yvy79000, yvy80000, ty_Integer) -> new_compare26(yvy79000, yvy80000) 40.99/18.82 new_esEs24(yvy79000, yvy80000, app(ty_Maybe, dbf)) -> new_esEs7(yvy79000, yvy80000, dbf) 40.99/18.82 new_esEs25(yvy79001, yvy80001, ty_Bool) -> new_esEs12(yvy79001, yvy80001) 40.99/18.82 new_esEs24(yvy79000, yvy80000, app(ty_Ratio, dag)) -> new_esEs17(yvy79000, yvy80000, dag) 40.99/18.82 new_esEs24(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) 40.99/18.82 new_ltEs5(LT, LT) -> True 40.99/18.82 new_ltEs20(yvy79002, yvy80002, ty_Double) -> new_ltEs14(yvy79002, yvy80002) 40.99/18.82 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 40.99/18.82 new_esEs33(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) 40.99/18.82 new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs9(yvy20, yvy15) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Integer, cc) -> new_esEs10(yvy4000, yvy3000) 40.99/18.82 new_ltEs5(LT, EQ) -> True 40.99/18.82 new_compare14(yvy79000, yvy80000, ty_Double) -> new_compare18(yvy79000, yvy80000) 40.99/18.82 new_compare14(yvy79000, yvy80000, ty_@0) -> new_compare9(yvy79000, yvy80000) 40.99/18.82 new_esEs34(yvy400, yvy300, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs6(yvy400, yvy300, cdh, cea, ceb) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, app(ty_Maybe, ebd)) -> new_ltEs17(yvy79001, yvy80001, ebd) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs16(yvy79000, yvy80000) 40.99/18.82 new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.82 new_ltEs8(False, True) -> True 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cbe)) -> new_esEs17(yvy4000, yvy3000, cbe) 40.99/18.82 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 40.99/18.82 new_compare14(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) 40.99/18.82 new_esEs27(yvy4001, yvy3001, app(ty_[], dfg)) -> new_esEs15(yvy4001, yvy3001, dfg) 40.99/18.82 new_ltEs6(yvy7900, yvy8000) -> new_fsEs(new_compare8(yvy7900, yvy8000)) 40.99/18.82 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.82 new_esEs34(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(app(ty_Either, bdf), bdg)) -> new_ltEs12(yvy79000, yvy80000, bdf, bdg) 40.99/18.82 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 40.99/18.82 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 40.99/18.82 new_esEs34(yvy400, yvy300, ty_Double) -> new_esEs13(yvy400, yvy300) 40.99/18.82 new_ltEs20(yvy79002, yvy80002, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_ltEs9(yvy79002, yvy80002, ddf, ddg, ddh) 40.99/18.82 new_esEs19(yvy4001, yvy3001, app(app(ty_Either, bgd), bge)) -> new_esEs5(yvy4001, yvy3001, bgd, bge) 40.99/18.82 new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt12(yvy79001, yvy80001) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Double, bbg) -> new_ltEs14(yvy79000, yvy80000) 40.99/18.82 new_esEs27(yvy4001, yvy3001, app(ty_Ratio, dge)) -> new_esEs17(yvy4001, yvy3001, dge) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs6(yvy4000, yvy3000, ee, ef, eg) 40.99/18.82 new_esEs33(yvy400, yvy300, app(ty_Ratio, hh)) -> new_esEs17(yvy400, yvy300, hh) 40.99/18.82 new_esEs28(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 40.99/18.82 new_esEs33(yvy400, yvy300, app(app(app(ty_@3, he), hf), hg)) -> new_esEs6(yvy400, yvy300, he, hf, hg) 40.99/18.82 new_ltEs12(Right(yvy79000), Left(yvy80000), bdb, bbg) -> False 40.99/18.82 new_esEs24(yvy79000, yvy80000, app(ty_[], dbe)) -> new_esEs15(yvy79000, yvy80000, dbe) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Ratio, de), cc) -> new_esEs17(yvy4000, yvy3000, de) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(ty_Ratio, eh)) -> new_esEs17(yvy4000, yvy3000, eh) 40.99/18.82 new_esEs17(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), hh) -> new_asAs(new_esEs22(yvy4000, yvy3000, hh), new_esEs23(yvy4001, yvy3001, hh)) 40.99/18.82 new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 40.99/18.82 new_compare210(Left(yvy7900), Left(yvy8000), False, cga, cgb) -> new_compare114(yvy7900, yvy8000, new_ltEs18(yvy7900, yvy8000, cga), cga, cgb) 40.99/18.82 new_sr0(Integer(yvy800000), Integer(yvy790010)) -> Integer(new_primMulInt(yvy800000, yvy790010)) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, bce), bcf), bcg), bbg) -> new_ltEs9(yvy79000, yvy80000, bce, bcf, bcg) 40.99/18.82 new_esEs28(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 40.99/18.82 new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs6(yvy4001, yvy3001, dgb, dgc, dgd) 40.99/18.82 new_esEs34(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 40.99/18.82 new_esEs28(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, app(ty_Ratio, eae)) -> new_ltEs13(yvy79001, yvy80001, eae) 40.99/18.82 new_lt9(yvy79000, yvy80000) -> new_esEs8(new_compare8(yvy79000, yvy80000), LT) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, ty_@0) -> new_ltEs16(yvy79001, yvy80001) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) 40.99/18.82 new_esEs20(yvy4002, yvy3002, ty_Int) -> new_esEs9(yvy4002, yvy3002) 40.99/18.82 new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 40.99/18.82 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 40.99/18.82 new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs12(yvy20, yvy15) 40.99/18.82 new_esEs25(yvy79001, yvy80001, ty_Int) -> new_esEs9(yvy79001, yvy80001) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, app(app(ty_Either, eaf), eag)) -> new_ltEs12(yvy79001, yvy80001, eaf, eag) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 40.99/18.82 new_lt5(yvy79000, yvy80000) -> new_esEs8(new_compare9(yvy79000, yvy80000), LT) 40.99/18.82 new_asAs(True, yvy222) -> yvy222 40.99/18.82 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 40.99/18.82 new_compare10(yvy79000, yvy80000, False, ca, cb) -> GT 40.99/18.82 new_ltEs5(GT, LT) -> False 40.99/18.82 new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), cgf, cgg, cgh) -> new_pePe(new_lt18(yvy79000, yvy80000, cgf), new_asAs(new_esEs24(yvy79000, yvy80000, cgf), new_pePe(new_lt19(yvy79001, yvy80001, cgg), new_asAs(new_esEs25(yvy79001, yvy80001, cgg), new_ltEs20(yvy79002, yvy80002, cgh))))) 40.99/18.82 new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 40.99/18.82 new_esEs24(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 40.99/18.82 new_esEs34(yvy400, yvy300, app(ty_[], cde)) -> new_esEs15(yvy400, yvy300, cde) 40.99/18.82 new_compare14(yvy79000, yvy80000, ty_Int) -> new_compare7(yvy79000, yvy80000) 40.99/18.82 new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 40.99/18.82 new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, fc), fd), ff)) -> new_lt7(yvy79000, yvy80000, fc, fd, ff) 40.99/18.82 new_esEs20(yvy4002, yvy3002, app(ty_[], bhe)) -> new_esEs15(yvy4002, yvy3002, bhe) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs13(yvy4000, yvy3000) 40.99/18.82 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 40.99/18.82 new_lt10(yvy79000, yvy80000) -> new_esEs8(new_compare18(yvy79000, yvy80000), LT) 40.99/18.82 new_esEs24(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 40.99/18.82 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 40.99/18.82 new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) 40.99/18.82 new_ltEs8(True, True) -> True 40.99/18.82 new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat1(yvy7900, yvy800) 40.99/18.82 new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs9(yvy35, yvy30) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_@2, bbh), bca), bbg) -> new_ltEs4(yvy79000, yvy80000, bbh, bca) 40.99/18.82 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare26(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) 40.99/18.82 new_compare8(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Ordering, bbg) -> new_ltEs5(yvy79000, yvy80000) 40.99/18.82 new_primCompAux00(yvy260, EQ) -> yvy260 40.99/18.82 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 40.99/18.82 new_esEs12(False, True) -> False 40.99/18.82 new_esEs12(True, False) -> False 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) 40.99/18.82 new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt15(yvy79001, yvy80001) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Float, cc) -> new_esEs16(yvy4000, yvy3000) 40.99/18.82 new_primMulNat0(Zero, Zero) -> Zero 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Double, cc) -> new_esEs13(yvy4000, yvy3000) 40.99/18.82 new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_lt7(yvy79001, yvy80001, dcd, dce, dcf) 40.99/18.82 new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) 40.99/18.82 new_esEs12(True, True) -> True 40.99/18.82 new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.82 new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.82 new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Int, cc) -> new_esEs9(yvy4000, yvy3000) 40.99/18.82 new_compare111(yvy79000, yvy80000, False) -> GT 40.99/18.82 new_esEs31(yvy35, yvy30, app(ty_Maybe, bbe)) -> new_esEs7(yvy35, yvy30, bbe) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_@0, bbg) -> new_ltEs16(yvy79000, yvy80000) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs7(yvy79000, yvy80000) 40.99/18.82 new_compare9(@0, @0) -> EQ 40.99/18.82 new_esEs15(:(yvy4000, yvy4001), [], hd) -> False 40.99/18.82 new_esEs15([], :(yvy3000, yvy3001), hd) -> False 40.99/18.82 new_esEs20(yvy4002, yvy3002, app(app(ty_Either, bhf), bhg)) -> new_esEs5(yvy4002, yvy3002, bhf, bhg) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, chc)) -> new_ltEs13(yvy7900, yvy8000, chc) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, app(app(ty_Either, ec), ed)) -> new_esEs5(yvy4000, yvy3000, ec, ed) 40.99/18.82 new_esEs24(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 40.99/18.82 new_ltEs5(EQ, LT) -> False 40.99/18.82 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, chd), che)) -> new_ltEs12(yvy7900, yvy8000, chd, che) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 40.99/18.82 new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 40.99/18.82 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], cag)) -> new_esEs15(yvy4000, yvy3000, cag) 40.99/18.82 new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(ty_Maybe, bed)) -> new_ltEs17(yvy79000, yvy80000, bed) 40.99/18.82 new_primCompAux0(yvy79000, yvy80000, yvy256, fg) -> new_primCompAux00(yvy256, new_compare14(yvy79000, yvy80000, fg)) 40.99/18.82 new_esEs33(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) 40.99/18.82 new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 40.99/18.82 new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.82 new_lt17(yvy79000, yvy80000, dac, dad) -> new_esEs8(new_compare19(yvy79000, yvy80000, dac, dad), LT) 40.99/18.82 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 40.99/18.82 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 40.99/18.82 new_esEs24(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 40.99/18.82 new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt8(yvy79001, yvy80001) 40.99/18.82 new_ltEs20(yvy79002, yvy80002, app(app(ty_Either, ddd), dde)) -> new_ltEs12(yvy79002, yvy80002, ddd, dde) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Char) -> new_ltEs6(yvy79000, yvy80000) 40.99/18.82 new_lt19(yvy79001, yvy80001, app(ty_Ratio, dca)) -> new_lt14(yvy79001, yvy80001, dca) 40.99/18.82 new_ltEs20(yvy79002, yvy80002, app(ty_Ratio, ddc)) -> new_ltEs13(yvy79002, yvy80002, ddc) 40.99/18.82 new_esEs20(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 40.99/18.82 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 40.99/18.82 new_esEs20(yvy4002, yvy3002, ty_Double) -> new_esEs13(yvy4002, yvy3002) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 40.99/18.82 new_esEs21(yvy4000, yvy3000, app(ty_Maybe, cff)) -> new_esEs7(yvy4000, yvy3000, cff) 40.99/18.82 new_esEs32(yvy20, yvy15, app(app(ty_@2, dha), dhb)) -> new_esEs4(yvy20, yvy15, dha, dhb) 40.99/18.82 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, dec), ded)) -> new_esEs4(yvy4000, yvy3000, dec, ded) 40.99/18.82 new_compare14(yvy79000, yvy80000, app(ty_Ratio, gb)) -> new_compare17(yvy79000, yvy80000, gb) 40.99/18.82 new_compare24(yvy79000, yvy80000, True) -> EQ 40.99/18.82 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.82 new_esEs18(yvy4000, yvy3000, app(ty_[], bfa)) -> new_esEs15(yvy4000, yvy3000, bfa) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, app(ty_Maybe, cbh)) -> new_ltEs17(yvy7900, yvy8000, cbh) 40.99/18.82 new_esEs25(yvy79001, yvy80001, app(app(ty_Either, dcb), dcc)) -> new_esEs5(yvy79001, yvy80001, dcb, dcc) 40.99/18.82 new_lt18(yvy79000, yvy80000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_lt7(yvy79000, yvy80000, dbb, dbc, dbd) 40.99/18.82 new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 40.99/18.82 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 40.99/18.82 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 40.99/18.82 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 40.99/18.82 new_lt20(yvy79000, yvy80000, app(ty_Ratio, cbg)) -> new_lt14(yvy79000, yvy80000, cbg) 40.99/18.82 new_esEs32(yvy20, yvy15, app(ty_Maybe, eab)) -> new_esEs7(yvy20, yvy15, eab) 40.99/18.82 new_esEs31(yvy35, yvy30, app(app(ty_Either, bag), bah)) -> new_esEs5(yvy35, yvy30, bag, bah) 40.99/18.82 new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, app(ty_[], bec)) -> new_ltEs11(yvy79000, yvy80000, bec) 40.99/18.82 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, dfd)) -> new_esEs7(yvy4000, yvy3000, dfd) 40.99/18.82 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Maybe, bda), bbg) -> new_ltEs17(yvy79000, yvy80000, bda) 40.99/18.82 new_lt18(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 40.99/18.82 new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 40.99/18.82 new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) 40.99/18.82 new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt5(yvy79001, yvy80001) 40.99/18.82 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, def), deg)) -> new_esEs5(yvy4000, yvy3000, def, deg) 40.99/18.82 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat1(yvy8000, Zero) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs6(yvy4000, yvy3000, db, dc, dd) 40.99/18.82 new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) 40.99/18.82 new_lt18(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 40.99/18.82 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 40.99/18.82 new_compare110(yvy79000, yvy80000, True, fc, fd, ff) -> LT 40.99/18.82 new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) 40.99/18.82 new_compare14(yvy79000, yvy80000, app(app(app(ty_@3, ge), gf), gg)) -> new_compare13(yvy79000, yvy80000, ge, gf, gg) 40.99/18.82 new_esEs15(:(yvy4000, yvy4001), :(yvy3000, yvy3001), hd) -> new_asAs(new_esEs21(yvy4000, yvy3000, hd), new_esEs15(yvy4001, yvy3001, hd)) 40.99/18.82 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, deh), dfa), dfb)) -> new_esEs6(yvy4000, yvy3000, deh, dfa, dfb) 40.99/18.82 new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 40.99/18.82 new_esEs27(yvy4001, yvy3001, app(ty_Maybe, dgf)) -> new_esEs7(yvy4001, yvy3001, dgf) 40.99/18.82 new_compare12(yvy79000, yvy80000, fb) -> new_compare28(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, fb), fb) 40.99/18.82 new_compare112(yvy234, yvy235, False, bee, bef) -> GT 40.99/18.82 new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs6(yvy4000, yvy3000, bfd, bfe, bff) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Maybe, df), cc) -> new_esEs7(yvy4000, yvy3000, df) 40.99/18.82 new_ltEs5(EQ, GT) -> True 40.99/18.82 new_esEs31(yvy35, yvy30, app(app(ty_@2, bad), bae)) -> new_esEs4(yvy35, yvy30, bad, bae) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Float, bbg) -> new_ltEs15(yvy79000, yvy80000) 40.99/18.82 new_ltEs20(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) 40.99/18.82 new_not(False) -> True 40.99/18.82 new_esEs28(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 40.99/18.82 new_esEs33(yvy400, yvy300, ty_Bool) -> new_esEs12(yvy400, yvy300) 40.99/18.82 new_esEs18(yvy4000, yvy3000, app(app(ty_Either, bfb), bfc)) -> new_esEs5(yvy4000, yvy3000, bfb, bfc) 40.99/18.82 new_ltEs12(Right(yvy79000), Right(yvy80000), bdb, ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 40.99/18.82 new_compare25(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs8(yvy79000, yvy80000)) 40.99/18.82 new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs8(yvy35, yvy30) 40.99/18.82 new_ltEs13(yvy7900, yvy8000, cge) -> new_fsEs(new_compare17(yvy7900, yvy8000, cge)) 40.99/18.82 new_esEs33(yvy400, yvy300, ty_Double) -> new_esEs13(yvy400, yvy300) 40.99/18.82 new_esEs25(yvy79001, yvy80001, ty_@0) -> new_esEs14(yvy79001, yvy80001) 40.99/18.82 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), hb, hc) -> new_asAs(new_esEs26(yvy4000, yvy3000, hb), new_esEs27(yvy4001, yvy3001, hc)) 40.99/18.82 new_esEs20(yvy4002, yvy3002, app(ty_Maybe, cad)) -> new_esEs7(yvy4002, yvy3002, cad) 40.99/18.82 new_ltEs5(GT, GT) -> True 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_@2, cca), ccb)) -> new_ltEs4(yvy79000, yvy80000, cca, ccb) 40.99/18.82 new_esEs8(LT, GT) -> False 40.99/18.82 new_esEs8(GT, LT) -> False 40.99/18.82 new_compare29(yvy79000, yvy80000, True) -> EQ 40.99/18.82 new_esEs31(yvy35, yvy30, app(ty_[], baf)) -> new_esEs15(yvy35, yvy30, baf) 40.99/18.82 new_esEs32(yvy20, yvy15, app(ty_Ratio, eaa)) -> new_esEs17(yvy20, yvy15, eaa) 40.99/18.82 new_esEs5(Left(yvy4000), Right(yvy3000), dg, cc) -> False 40.99/18.82 new_esEs5(Right(yvy4000), Left(yvy3000), dg, cc) -> False 40.99/18.82 new_esEs20(yvy4002, yvy3002, ty_Bool) -> new_esEs12(yvy4002, yvy3002) 40.99/18.82 new_lt19(yvy79001, yvy80001, app(ty_Maybe, dch)) -> new_lt6(yvy79001, yvy80001, dch) 40.99/18.82 new_lt13(yvy79000, yvy80000, ca, cb) -> new_esEs8(new_compare16(yvy79000, yvy80000, ca, cb), LT) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, ty_Ordering) -> new_ltEs5(yvy79001, yvy80001) 40.99/18.82 new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs10(yvy35, yvy30) 40.99/18.82 new_esEs19(yvy4001, yvy3001, app(ty_[], bgc)) -> new_esEs15(yvy4001, yvy3001, bgc) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, app(ty_Ratio, cge)) -> new_ltEs13(yvy7900, yvy8000, cge) 40.99/18.82 new_compare14(yvy79000, yvy80000, app(ty_Maybe, ha)) -> new_compare12(yvy79000, yvy80000, ha) 40.99/18.82 new_lt8(yvy79000, yvy80000) -> new_esEs8(new_compare26(yvy79000, yvy80000), LT) 40.99/18.82 new_compare113(yvy79000, yvy80000, False, fb) -> GT 40.99/18.82 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 40.99/18.82 new_primPlusNat0(Succ(yvy2010), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2010, yvy300000))) 40.99/18.82 new_lt14(yvy79000, yvy80000, cbg) -> new_esEs8(new_compare17(yvy79000, yvy80000, cbg), LT) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 40.99/18.82 new_esEs19(yvy4001, yvy3001, app(ty_Maybe, bhb)) -> new_esEs7(yvy4001, yvy3001, bhb) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 40.99/18.82 new_ltEs20(yvy79002, yvy80002, ty_Char) -> new_ltEs6(yvy79002, yvy80002) 40.99/18.82 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 40.99/18.82 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 40.99/18.82 new_esEs33(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 40.99/18.82 new_lt12(yvy79000, yvy80000) -> new_esEs8(new_compare6(yvy79000, yvy80000), LT) 40.99/18.82 new_lt16(yvy79000, yvy80000) -> new_esEs8(new_compare15(yvy79000, yvy80000), LT) 40.99/18.82 new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 40.99/18.82 new_primPlusNat1(Zero, Zero) -> Zero 40.99/18.82 new_esEs6(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), he, hf, hg) -> new_asAs(new_esEs18(yvy4000, yvy3000, he), new_asAs(new_esEs19(yvy4001, yvy3001, hf), new_esEs20(yvy4002, yvy3002, hg))) 40.99/18.82 new_esEs20(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 40.99/18.82 new_ltEs20(yvy79002, yvy80002, ty_Int) -> new_ltEs7(yvy79002, yvy80002) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, app(app(ty_@2, eac), ead)) -> new_ltEs4(yvy79001, yvy80001, eac, ead) 40.99/18.82 new_esEs27(yvy4001, yvy3001, app(app(ty_@2, dfe), dff)) -> new_esEs4(yvy4001, yvy3001, dfe, dff) 40.99/18.82 new_lt18(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 40.99/18.82 new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 40.99/18.82 new_esEs28(yvy79000, yvy80000, app(ty_Ratio, cbg)) -> new_esEs17(yvy79000, yvy80000, cbg) 40.99/18.82 new_compare11(yvy79000, yvy80000, True) -> LT 40.99/18.82 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 40.99/18.82 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 40.99/18.82 new_ltEs4(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), cgc, cgd) -> new_pePe(new_lt20(yvy79000, yvy80000, cgc), new_asAs(new_esEs28(yvy79000, yvy80000, cgc), new_ltEs21(yvy79001, yvy80001, cgd))) 40.99/18.82 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 40.99/18.82 new_lt19(yvy79001, yvy80001, app(app(ty_@2, dbg), dbh)) -> new_lt13(yvy79001, yvy80001, dbg, dbh) 40.99/18.82 new_compare31(yvy20, yvy15, dgg, dgh) -> new_compare210(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, dgg), dgg, dgh) 40.99/18.82 new_compare16(yvy79000, yvy80000, ca, cb) -> new_compare23(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, ca, cb), ca, cb) 40.99/18.82 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 40.99/18.82 new_esEs28(yvy79000, yvy80000, app(app(ty_@2, ca), cb)) -> new_esEs4(yvy79000, yvy80000, ca, cb) 40.99/18.82 new_primCmpNat0(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 40.99/18.82 new_esEs20(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) 40.99/18.82 new_compare19(yvy79000, yvy80000, dac, dad) -> new_compare210(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, dac, dad), dac, dad) 40.99/18.82 new_compare30(yvy35, yvy30, bab, bac) -> new_compare210(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, bac), bab, bac) 40.99/18.82 new_compare3(:(yvy79000, yvy79001), [], fg) -> GT 40.99/18.82 new_compare14(yvy79000, yvy80000, ty_Bool) -> new_compare15(yvy79000, yvy80000) 40.99/18.82 new_esEs28(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 40.99/18.82 new_esEs5(Left(yvy4000), Left(yvy3000), ty_@0, cc) -> new_esEs14(yvy4000, yvy3000) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_[], cda)) -> new_ltEs11(yvy79000, yvy80000, cda) 40.99/18.82 new_compare26(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 40.99/18.82 new_compare32(yvy400, yvy300, h, ba) -> new_compare210(Left(yvy400), Right(yvy300), False, h, ba) 40.99/18.82 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 40.99/18.82 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 40.99/18.82 new_primCmpNat1(yvy7900, Succ(yvy8000)) -> new_primCmpNat0(yvy7900, yvy8000) 40.99/18.82 new_esEs18(yvy4000, yvy3000, app(ty_Maybe, bfh)) -> new_esEs7(yvy4000, yvy3000, bfh) 40.99/18.82 new_lt20(yvy79000, yvy80000, app(ty_Maybe, fb)) -> new_lt6(yvy79000, yvy80000, fb) 40.99/18.82 new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 40.99/18.82 new_primEqNat0(Zero, Zero) -> True 40.99/18.82 new_esEs28(yvy79000, yvy80000, app(app(ty_Either, dac), dad)) -> new_esEs5(yvy79000, yvy80000, dac, dad) 40.99/18.82 new_compare210(Right(yvy7900), Right(yvy8000), False, cga, cgb) -> new_compare112(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, cgb), cga, cgb) 40.99/18.82 new_esEs21(yvy4000, yvy3000, app(ty_[], ceg)) -> new_esEs15(yvy4000, yvy3000, ceg) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 40.99/18.82 new_lt11(yvy79000, yvy80000, bbf) -> new_esEs8(new_compare3(yvy79000, yvy80000, bbf), LT) 40.99/18.82 new_esEs28(yvy79000, yvy80000, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs6(yvy79000, yvy80000, fc, fd, ff) 40.99/18.82 new_compare29(yvy79000, yvy80000, False) -> new_compare111(yvy79000, yvy80000, new_ltEs8(yvy79000, yvy80000)) 40.99/18.82 new_compare33(yvy400, yvy300, h, ba) -> new_compare210(Right(yvy400), Left(yvy300), False, h, ba) 40.99/18.82 new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.82 new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 40.99/18.82 new_asAs(False, yvy222) -> False 40.99/18.82 new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 40.99/18.82 new_lt7(yvy79000, yvy80000, fc, fd, ff) -> new_esEs8(new_compare13(yvy79000, yvy80000, fc, fd, ff), LT) 40.99/18.82 new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs12(yvy35, yvy30) 40.99/18.82 new_ltEs5(GT, EQ) -> False 40.99/18.82 new_ltEs20(yvy79002, yvy80002, ty_Ordering) -> new_ltEs5(yvy79002, yvy80002) 40.99/18.82 new_esEs18(yvy4000, yvy3000, app(ty_Ratio, bfg)) -> new_esEs17(yvy4000, yvy3000, bfg) 40.99/18.82 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 40.99/18.82 new_esEs5(Right(yvy4000), Right(yvy3000), dg, ty_Char) -> new_esEs11(yvy4000, yvy3000) 40.99/18.82 new_ltEs21(yvy79001, yvy80001, app(ty_[], ebc)) -> new_ltEs11(yvy79001, yvy80001, ebc) 40.99/18.82 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Int, bbg) -> new_ltEs7(yvy79000, yvy80000) 40.99/18.82 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs6(yvy79000, yvy80000) 40.99/18.82 new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 40.99/18.82 new_lt18(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 40.99/18.82 new_lt18(yvy79000, yvy80000, app(app(ty_@2, dae), daf)) -> new_lt13(yvy79000, yvy80000, dae, daf) 40.99/18.82 new_esEs8(EQ, GT) -> False 40.99/18.82 new_esEs8(GT, EQ) -> False 40.99/18.82 new_compare210(Right(yvy7900), Left(yvy8000), False, cga, cgb) -> GT 40.99/18.82 new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 40.99/18.82 new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat0(yvy8000, yvy7900) 40.99/18.82 new_ltEs16(yvy7900, yvy8000) -> new_fsEs(new_compare9(yvy7900, yvy8000)) 40.99/18.82 new_ltEs18(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 40.99/18.82 new_esEs33(yvy400, yvy300, app(ty_[], hd)) -> new_esEs15(yvy400, yvy300, hd) 40.99/18.82 40.99/18.82 The set Q consists of the following terms: 40.99/18.82 40.99/18.82 new_lt18(x0, x1, app(app(ty_Either, x2), x3)) 40.99/18.82 new_ltEs18(x0, x1, ty_Bool) 40.99/18.82 new_ltEs21(x0, x1, ty_Ordering) 40.99/18.82 new_esEs28(x0, x1, ty_Integer) 40.99/18.82 new_esEs8(EQ, EQ) 40.99/18.82 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 40.99/18.82 new_esEs21(x0, x1, ty_Int) 40.99/18.82 new_ltEs20(x0, x1, ty_Char) 40.99/18.82 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 40.99/18.82 new_esEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.83 new_esEs24(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_esEs26(x0, x1, ty_Float) 41.28/18.83 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_esEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_primMulInt(Neg(x0), Neg(x1)) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), ty_Char) 41.28/18.83 new_ltEs18(x0, x1, ty_@0) 41.28/18.83 new_ltEs21(x0, x1, ty_Double) 41.28/18.83 new_compare10(x0, x1, True, x2, x3) 41.28/18.83 new_esEs34(x0, x1, ty_Bool) 41.28/18.83 new_primPlusNat1(Zero, Zero) 41.28/18.83 new_ltEs15(x0, x1) 41.28/18.83 new_compare210(x0, x1, True, x2, x3) 41.28/18.83 new_esEs24(x0, x1, ty_Integer) 41.28/18.83 new_esEs25(x0, x1, ty_Float) 41.28/18.83 new_esEs18(x0, x1, ty_Integer) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 41.28/18.83 new_compare14(x0, x1, ty_Ordering) 41.28/18.83 new_esEs34(x0, x1, ty_Integer) 41.28/18.83 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 41.28/18.83 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.83 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 41.28/18.83 new_primCompAux00(x0, GT) 41.28/18.83 new_primEqInt(Pos(Zero), Pos(Zero)) 41.28/18.83 new_primMulInt(Pos(x0), Pos(x1)) 41.28/18.83 new_esEs21(x0, x1, ty_Double) 41.28/18.83 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_esEs32(x0, x1, ty_Integer) 41.28/18.83 new_compare29(x0, x1, False) 41.28/18.83 new_esEs27(x0, x1, ty_Float) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), ty_Int) 41.28/18.83 new_primCmpNat0(Zero, Succ(x0)) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), ty_@0) 41.28/18.83 new_esEs25(x0, x1, app(ty_[], x2)) 41.28/18.83 new_esEs28(x0, x1, app(ty_[], x2)) 41.28/18.83 new_esEs15([], :(x0, x1), x2) 41.28/18.83 new_esEs21(x0, x1, ty_Char) 41.28/18.83 new_lt19(x0, x1, app(ty_[], x2)) 41.28/18.83 new_esEs32(x0, x1, ty_Float) 41.28/18.83 new_compare13(x0, x1, x2, x3, x4) 41.28/18.83 new_compare14(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_ltEs21(x0, x1, ty_Int) 41.28/18.83 new_primEqInt(Neg(Zero), Neg(Zero)) 41.28/18.83 new_primCmpNat0(Succ(x0), Succ(x1)) 41.28/18.83 new_compare3(:(x0, x1), [], x2) 41.28/18.83 new_compare11(x0, x1, False) 41.28/18.83 new_ltEs7(x0, x1) 41.28/18.83 new_primPlusNat0(Zero, x0) 41.28/18.83 new_esEs19(x0, x1, app(ty_[], x2)) 41.28/18.83 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.83 new_compare210(Right(x0), Right(x1), False, x2, x3) 41.28/18.83 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_esEs28(x0, x1, ty_Bool) 41.28/18.83 new_sr(x0, x1) 41.28/18.83 new_esEs12(False, True) 41.28/18.83 new_esEs12(True, False) 41.28/18.83 new_compare19(x0, x1, x2, x3) 41.28/18.83 new_ltEs20(x0, x1, ty_Double) 41.28/18.83 new_ltEs5(LT, GT) 41.28/18.83 new_ltEs5(GT, LT) 41.28/18.83 new_lt18(x0, x1, app(ty_[], x2)) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), ty_Bool) 41.28/18.83 new_compare33(x0, x1, x2, x3) 41.28/18.83 new_primCmpNat2(Succ(x0), x1) 41.28/18.83 new_ltEs20(x0, x1, ty_@0) 41.28/18.83 new_esEs33(x0, x1, app(ty_[], x2)) 41.28/18.83 new_lt12(x0, x1) 41.28/18.83 new_ltEs8(False, False) 41.28/18.83 new_primCmpNat2(Zero, x0) 41.28/18.83 new_esEs18(x0, x1, ty_@0) 41.28/18.83 new_compare26(Integer(x0), Integer(x1)) 41.28/18.83 new_esEs34(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_esEs31(x0, x1, ty_Bool) 41.28/18.83 new_esEs19(x0, x1, ty_Integer) 41.28/18.83 new_esEs18(x0, x1, app(ty_[], x2)) 41.28/18.83 new_ltEs21(x0, x1, ty_Char) 41.28/18.83 new_esEs18(x0, x1, ty_Bool) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), ty_Double) 41.28/18.83 new_esEs7(Just(x0), Just(x1), ty_@0) 41.28/18.83 new_compare29(x0, x1, True) 41.28/18.83 new_ltEs20(x0, x1, ty_Bool) 41.28/18.83 new_esEs33(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_esEs7(Just(x0), Just(x1), ty_Bool) 41.28/18.83 new_esEs18(x0, x1, ty_Float) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.83 new_lt10(x0, x1) 41.28/18.83 new_lt18(x0, x1, ty_Float) 41.28/18.83 new_esEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.83 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_primEqInt(Pos(Zero), Neg(Zero)) 41.28/18.83 new_primEqInt(Neg(Zero), Pos(Zero)) 41.28/18.83 new_esEs21(x0, x1, ty_Ordering) 41.28/18.83 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_ltEs20(x0, x1, ty_Int) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 41.28/18.83 new_ltEs18(x0, x1, ty_Integer) 41.28/18.83 new_lt18(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_esEs33(x0, x1, ty_Double) 41.28/18.83 new_esEs31(x0, x1, ty_Double) 41.28/18.83 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.83 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.83 new_esEs7(Just(x0), Just(x1), ty_Int) 41.28/18.83 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_esEs31(x0, x1, ty_Char) 41.28/18.83 new_lt20(x0, x1, ty_Double) 41.28/18.83 new_esEs31(x0, x1, ty_@0) 41.28/18.83 new_compare3([], :(x0, x1), x2) 41.28/18.83 new_esEs25(x0, x1, ty_@0) 41.28/18.83 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs31(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.83 new_esEs7(Just(x0), Just(x1), ty_Char) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_esEs28(x0, x1, ty_@0) 41.28/18.83 new_esEs31(x0, x1, ty_Int) 41.28/18.83 new_esEs21(x0, x1, app(ty_[], x2)) 41.28/18.83 new_esEs7(Just(x0), Just(x1), ty_Double) 41.28/18.83 new_esEs28(x0, x1, ty_Float) 41.28/18.83 new_primEqNat0(Succ(x0), Zero) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.83 new_compare14(x0, x1, ty_@0) 41.28/18.83 new_primMulNat0(Succ(x0), Succ(x1)) 41.28/18.83 new_esEs20(x0, x1, ty_Float) 41.28/18.83 new_esEs31(x0, x1, app(ty_[], x2)) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.83 new_ltEs18(x0, x1, ty_Float) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.83 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 41.28/18.83 new_esEs33(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_esEs28(x0, x1, ty_Int) 41.28/18.83 new_ltEs21(x0, x1, ty_Bool) 41.28/18.83 new_esEs33(x0, x1, ty_Int) 41.28/18.83 new_esEs34(x0, x1, ty_Ordering) 41.28/18.83 new_esEs22(x0, x1, ty_Integer) 41.28/18.83 new_ltEs19(x0, x1, ty_Ordering) 41.28/18.83 new_compare28(x0, x1, True, x2) 41.28/18.83 new_compare10(x0, x1, False, x2, x3) 41.28/18.83 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_ltEs20(x0, x1, ty_Integer) 41.28/18.83 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_esEs27(x0, x1, app(ty_[], x2)) 41.28/18.83 new_esEs28(x0, x1, ty_Char) 41.28/18.83 new_primEqNat0(Succ(x0), Succ(x1)) 41.28/18.83 new_lt20(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_primCompAux0(x0, x1, x2, x3) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.83 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_esEs34(x0, x1, ty_Float) 41.28/18.83 new_lt20(x0, x1, ty_Float) 41.28/18.83 new_compare24(x0, x1, True) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 41.28/18.83 new_esEs15(:(x0, x1), [], x2) 41.28/18.83 new_esEs7(Just(x0), Just(x1), ty_Integer) 41.28/18.83 new_compare210(Left(x0), Right(x1), False, x2, x3) 41.28/18.83 new_compare210(Right(x0), Left(x1), False, x2, x3) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), ty_Integer) 41.28/18.83 new_ltEs18(x0, x1, ty_Int) 41.28/18.83 new_esEs21(x0, x1, ty_Bool) 41.28/18.83 new_primPlusNat0(Succ(x0), x1) 41.28/18.83 new_esEs25(x0, x1, ty_Bool) 41.28/18.83 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 41.28/18.83 new_compare114(x0, x1, True, x2, x3) 41.28/18.83 new_esEs33(x0, x1, ty_Float) 41.28/18.83 new_esEs20(x0, x1, ty_Int) 41.28/18.83 new_esEs7(Just(x0), Nothing, x1) 41.28/18.83 new_ltEs5(EQ, GT) 41.28/18.83 new_ltEs5(GT, EQ) 41.28/18.83 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 41.28/18.83 new_esEs20(x0, x1, app(ty_[], x2)) 41.28/18.83 new_esEs25(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_esEs26(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.83 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.83 new_ltEs18(x0, x1, ty_Char) 41.28/18.83 new_esEs20(x0, x1, ty_Char) 41.28/18.83 new_primMulNat0(Succ(x0), Zero) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.83 new_esEs32(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_esEs32(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_esEs8(GT, GT) 41.28/18.83 new_sr0(Integer(x0), Integer(x1)) 41.28/18.83 new_esEs8(LT, EQ) 41.28/18.83 new_esEs8(EQ, LT) 41.28/18.83 new_ltEs19(x0, x1, ty_Float) 41.28/18.83 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.83 new_primCmpInt(Neg(Zero), Neg(Zero)) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), ty_Ordering) 41.28/18.83 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_esEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_esEs7(Just(x0), Just(x1), ty_Ordering) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.83 new_compare25(x0, x1) 41.28/18.83 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_esEs8(LT, LT) 41.28/18.83 new_ltEs19(x0, x1, ty_Char) 41.28/18.83 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_primCmpInt(Pos(Zero), Neg(Zero)) 41.28/18.83 new_primCmpInt(Neg(Zero), Pos(Zero)) 41.28/18.83 new_esEs24(x0, x1, ty_Double) 41.28/18.83 new_esEs31(x0, x1, ty_Ordering) 41.28/18.83 new_ltEs20(x0, x1, ty_Ordering) 41.28/18.83 new_esEs24(x0, x1, ty_@0) 41.28/18.83 new_compare11(x0, x1, True) 41.28/18.83 new_esEs32(x0, x1, ty_Int) 41.28/18.83 new_lt19(x0, x1, ty_Double) 41.28/18.83 new_ltEs17(Nothing, Just(x0), x1) 41.28/18.83 new_esEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_ltEs8(True, False) 41.28/18.83 new_ltEs8(False, True) 41.28/18.83 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_ltEs19(x0, x1, ty_Int) 41.28/18.83 new_esEs25(x0, x1, ty_Integer) 41.28/18.83 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_lt8(x0, x1) 41.28/18.83 new_esEs31(x0, x1, ty_Integer) 41.28/18.83 new_esEs27(x0, x1, ty_@0) 41.28/18.83 new_esEs28(x0, x1, ty_Ordering) 41.28/18.83 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 41.28/18.83 new_pePe(True, x0) 41.28/18.83 new_esEs19(x0, x1, ty_Double) 41.28/18.83 new_esEs34(x0, x1, ty_Char) 41.28/18.83 new_esEs19(x0, x1, ty_@0) 41.28/18.83 new_esEs32(x0, x1, ty_Char) 41.28/18.83 new_esEs21(x0, x1, ty_Float) 41.28/18.83 new_esEs25(x0, x1, ty_Ordering) 41.28/18.83 new_compare113(x0, x1, True, x2) 41.28/18.83 new_esEs28(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 41.28/18.83 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 41.28/18.83 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_asAs(False, x0) 41.28/18.83 new_fsEs(x0) 41.28/18.83 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.83 new_esEs32(x0, x1, app(ty_[], x2)) 41.28/18.83 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_esEs32(x0, x1, ty_Bool) 41.28/18.83 new_primPlusNat1(Succ(x0), Succ(x1)) 41.28/18.83 new_esEs34(x0, x1, ty_Int) 41.28/18.83 new_lt19(x0, x1, ty_@0) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.83 new_lt6(x0, x1, x2) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.83 new_compare110(x0, x1, True, x2, x3, x4) 41.28/18.83 new_ltEs19(x0, x1, ty_Bool) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 41.28/18.83 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.83 new_esEs27(x0, x1, ty_Double) 41.28/18.83 new_compare14(x0, x1, ty_Double) 41.28/18.83 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_lt18(x0, x1, ty_Int) 41.28/18.83 new_compare210(Left(x0), Left(x1), False, x2, x3) 41.28/18.83 new_esEs20(x0, x1, ty_Bool) 41.28/18.83 new_compare28(x0, x1, False, x2) 41.28/18.83 new_esEs26(x0, x1, ty_Ordering) 41.28/18.83 new_esEs22(x0, x1, ty_Int) 41.28/18.83 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.83 new_ltEs18(x0, x1, app(ty_[], x2)) 41.28/18.83 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.83 new_ltEs19(x0, x1, ty_@0) 41.28/18.83 new_lt18(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 41.28/18.83 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_compare24(x0, x1, False) 41.28/18.83 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.83 new_lt19(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_esEs27(x0, x1, ty_Int) 41.28/18.83 new_primCompAux00(x0, LT) 41.28/18.83 new_esEs20(x0, x1, ty_@0) 41.28/18.83 new_compare14(x0, x1, ty_Float) 41.28/18.83 new_lt20(x0, x1, ty_Integer) 41.28/18.83 new_primCmpNat0(Succ(x0), Zero) 41.28/18.83 new_primMulNat0(Zero, Zero) 41.28/18.83 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_lt4(x0, x1) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.83 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_lt17(x0, x1, x2, x3) 41.28/18.83 new_lt20(x0, x1, ty_Bool) 41.28/18.83 new_ltEs21(x0, x1, ty_Float) 41.28/18.83 new_compare3(:(x0, x1), :(x2, x3), x4) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.83 new_esEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.83 new_lt20(x0, x1, app(ty_[], x2)) 41.28/18.83 new_pePe(False, x0) 41.28/18.83 new_ltEs14(x0, x1) 41.28/18.83 new_compare9(@0, @0) 41.28/18.83 new_esEs33(x0, x1, ty_@0) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 41.28/18.83 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_compare8(Char(x0), Char(x1)) 41.28/18.83 new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_esEs15(:(x0, x1), :(x2, x3), x4) 41.28/18.83 new_compare23(x0, x1, True, x2, x3) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.83 new_compare16(x0, x1, x2, x3) 41.28/18.83 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 41.28/18.83 new_compare113(x0, x1, False, x2) 41.28/18.83 new_esEs23(x0, x1, ty_Int) 41.28/18.83 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.83 new_esEs33(x0, x1, ty_Integer) 41.28/18.83 new_esEs32(x0, x1, ty_Ordering) 41.28/18.83 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.83 new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.83 new_esEs15([], [], x0) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.83 new_ltEs12(Left(x0), Right(x1), x2, x3) 41.28/18.83 new_ltEs12(Right(x0), Left(x1), x2, x3) 41.28/18.83 new_ltEs19(x0, x1, ty_Integer) 41.28/18.83 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.83 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 41.28/18.83 new_compare112(x0, x1, False, x2, x3) 41.28/18.83 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_lt19(x0, x1, ty_Ordering) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 41.28/18.83 new_compare30(x0, x1, x2, x3) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.83 new_not(True) 41.28/18.83 new_lt7(x0, x1, x2, x3, x4) 41.28/18.83 new_ltEs20(x0, x1, ty_Float) 41.28/18.83 new_lt9(x0, x1) 41.28/18.83 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.83 new_primCmpNat1(x0, Zero) 41.28/18.83 new_esEs18(x0, x1, ty_Double) 41.28/18.83 new_lt18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 41.28/18.83 new_esEs8(EQ, GT) 41.28/18.83 new_esEs8(GT, EQ) 41.28/18.83 new_esEs12(False, False) 41.28/18.83 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.83 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.83 new_compare14(x0, x1, ty_Integer) 41.28/18.83 new_esEs24(x0, x1, ty_Ordering) 41.28/18.83 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 41.28/18.83 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 41.28/18.83 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 41.28/18.83 new_compare3([], [], x0) 41.28/18.83 new_compare32(x0, x1, x2, x3) 41.28/18.83 new_ltEs6(x0, x1) 41.28/18.83 new_ltEs21(x0, x1, app(ty_[], x2)) 41.28/18.83 new_esEs28(x0, x1, ty_Double) 41.28/18.83 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs7(Just(x0), Just(x1), ty_Float) 41.28/18.83 new_esEs20(x0, x1, ty_Integer) 41.28/18.83 new_ltEs19(x0, x1, app(ty_[], x2)) 41.28/18.83 new_esEs31(x0, x1, ty_Float) 41.28/18.83 new_esEs27(x0, x1, ty_Ordering) 41.28/18.83 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 41.28/18.83 new_ltEs11(x0, x1, x2) 41.28/18.83 new_lt15(x0, x1) 41.28/18.83 new_compare23(x0, x1, False, x2, x3) 41.28/18.83 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.83 new_esEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_lt19(x0, x1, ty_Integer) 41.28/18.83 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 41.28/18.83 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_esEs33(x0, x1, ty_Char) 41.28/18.83 new_esEs26(x0, x1, ty_Int) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.83 new_compare111(x0, x1, False) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 41.28/18.83 new_lt18(x0, x1, ty_Double) 41.28/18.83 new_esEs25(x0, x1, ty_Double) 41.28/18.83 new_lt18(x0, x1, ty_Char) 41.28/18.83 new_compare31(x0, x1, x2, x3) 41.28/18.83 new_lt20(x0, x1, ty_Char) 41.28/18.83 new_lt20(x0, x1, ty_@0) 41.28/18.83 new_esEs25(x0, x1, ty_Char) 41.28/18.83 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 41.28/18.83 new_lt18(x0, x1, ty_@0) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.83 new_esEs19(x0, x1, ty_Ordering) 41.28/18.83 new_esEs7(Nothing, Just(x0), x1) 41.28/18.83 new_compare27(x0, x1, True, x2, x3, x4) 41.28/18.83 new_esEs18(x0, x1, ty_Int) 41.28/18.83 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 41.28/18.83 new_esEs26(x0, x1, ty_Double) 41.28/18.83 new_esEs34(x0, x1, app(ty_[], x2)) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.83 new_esEs26(x0, x1, ty_Char) 41.28/18.83 new_lt20(x0, x1, ty_Int) 41.28/18.83 new_esEs33(x0, x1, ty_Bool) 41.28/18.83 new_ltEs13(x0, x1, x2) 41.28/18.83 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_esEs11(Char(x0), Char(x1)) 41.28/18.83 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_ltEs5(LT, LT) 41.28/18.83 new_esEs25(x0, x1, ty_Int) 41.28/18.83 new_primCmpInt(Pos(Zero), Pos(Zero)) 41.28/18.83 new_esEs25(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.83 new_esEs18(x0, x1, ty_Char) 41.28/18.83 new_esEs21(x0, x1, ty_Integer) 41.28/18.83 new_esEs34(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_esEs14(@0, @0) 41.28/18.83 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_compare14(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_ltEs18(x0, x1, ty_Double) 41.28/18.83 new_esEs20(x0, x1, ty_Ordering) 41.28/18.83 new_esEs26(x0, x1, app(ty_[], x2)) 41.28/18.83 new_compare110(x0, x1, False, x2, x3, x4) 41.28/18.83 new_ltEs18(x0, x1, ty_Ordering) 41.28/18.83 new_esEs24(x0, x1, ty_Char) 41.28/18.83 new_ltEs5(LT, EQ) 41.28/18.83 new_ltEs5(EQ, LT) 41.28/18.83 new_esEs20(x0, x1, ty_Double) 41.28/18.83 new_compare14(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs27(x0, x1, ty_Integer) 41.28/18.83 new_ltEs5(GT, GT) 41.28/18.83 new_ltEs19(x0, x1, ty_Double) 41.28/18.83 new_esEs26(x0, x1, ty_Bool) 41.28/18.83 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_compare15(x0, x1) 41.28/18.83 new_compare14(x0, x1, ty_Bool) 41.28/18.83 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.83 new_esEs26(x0, x1, ty_@0) 41.28/18.83 new_ltEs17(Nothing, Nothing, x0) 41.28/18.83 new_esEs26(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 41.28/18.83 new_lt18(x0, x1, ty_Integer) 41.28/18.83 new_esEs10(Integer(x0), Integer(x1)) 41.28/18.83 new_esEs8(LT, GT) 41.28/18.83 new_esEs8(GT, LT) 41.28/18.83 new_esEs5(Left(x0), Right(x1), x2, x3) 41.28/18.83 new_esEs5(Right(x0), Left(x1), x2, x3) 41.28/18.83 new_esEs9(x0, x1) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.83 new_ltEs21(x0, x1, ty_Integer) 41.28/18.83 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_compare12(x0, x1, x2) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.83 new_lt18(x0, x1, ty_Bool) 41.28/18.83 new_compare17(:%(x0, x1), :%(x2, x3), ty_Int) 41.28/18.83 new_esEs26(x0, x1, ty_Integer) 41.28/18.83 new_esEs27(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 41.28/18.83 new_esEs32(x0, x1, ty_@0) 41.28/18.83 new_ltEs17(Just(x0), Nothing, x1) 41.28/18.83 new_esEs24(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_esEs17(:%(x0, x1), :%(x2, x3), x4) 41.28/18.83 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 41.28/18.83 new_esEs23(x0, x1, ty_Integer) 41.28/18.83 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_lt13(x0, x1, x2, x3) 41.28/18.83 new_esEs27(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_esEs33(x0, x1, ty_Ordering) 41.28/18.83 new_compare27(x0, x1, False, x2, x3, x4) 41.28/18.83 new_ltEs21(x0, x1, ty_@0) 41.28/18.83 new_asAs(True, x0) 41.28/18.83 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.83 new_lt16(x0, x1) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.83 new_primCompAux00(x0, EQ) 41.28/18.83 new_compare111(x0, x1, True) 41.28/18.83 new_compare14(x0, x1, app(ty_[], x2)) 41.28/18.83 new_primPlusNat1(Zero, Succ(x0)) 41.28/18.83 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.83 new_esEs24(x0, x1, ty_Float) 41.28/18.83 new_primEqNat0(Zero, Zero) 41.28/18.83 new_compare14(x0, x1, ty_Char) 41.28/18.83 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_esEs24(x0, x1, ty_Bool) 41.28/18.83 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_lt19(x0, x1, ty_Bool) 41.28/18.83 new_esEs12(True, True) 41.28/18.83 new_not(False) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), ty_Float) 41.28/18.83 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_lt20(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_lt18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_ltEs20(x0, x1, app(ty_[], x2)) 41.28/18.83 new_esEs31(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_primPlusNat1(Succ(x0), Zero) 41.28/18.83 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_compare14(x0, x1, ty_Int) 41.28/18.83 new_lt14(x0, x1, x2) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.83 new_esEs19(x0, x1, ty_Bool) 41.28/18.83 new_esEs7(Nothing, Nothing, x0) 41.28/18.83 new_esEs21(x0, x1, ty_@0) 41.28/18.83 new_compare17(:%(x0, x1), :%(x2, x3), ty_Integer) 41.28/18.83 new_ltEs10(x0, x1) 41.28/18.83 new_esEs32(x0, x1, ty_Double) 41.28/18.83 new_lt11(x0, x1, x2) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.83 new_ltEs8(True, True) 41.28/18.83 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_esEs19(x0, x1, ty_Float) 41.28/18.83 new_lt19(x0, x1, ty_Float) 41.28/18.83 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.83 new_esEs13(Double(x0, x1), Double(x2, x3)) 41.28/18.83 new_esEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 41.28/18.83 new_esEs24(x0, x1, app(ty_[], x2)) 41.28/18.83 new_esEs24(x0, x1, ty_Int) 41.28/18.83 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_ltEs5(EQ, EQ) 41.28/18.83 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_compare14(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_esEs34(x0, x1, ty_Double) 41.28/18.83 new_compare112(x0, x1, True, x2, x3) 41.28/18.83 new_esEs27(x0, x1, ty_Bool) 41.28/18.83 new_esEs28(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.83 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.83 new_lt5(x0, x1) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.83 new_esEs16(Float(x0, x1), Float(x2, x3)) 41.28/18.83 new_lt18(x0, x1, ty_Ordering) 41.28/18.83 new_esEs19(x0, x1, ty_Char) 41.28/18.83 new_lt19(x0, x1, ty_Char) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 41.28/18.83 new_esEs18(x0, x1, ty_Ordering) 41.28/18.83 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.83 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.83 new_esEs34(x0, x1, ty_@0) 41.28/18.83 new_lt20(x0, x1, ty_Ordering) 41.28/18.83 new_ltEs16(x0, x1) 41.28/18.83 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 41.28/18.83 new_primCmpNat1(x0, Succ(x1)) 41.28/18.83 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_primMulInt(Pos(x0), Neg(x1)) 41.28/18.83 new_primMulInt(Neg(x0), Pos(x1)) 41.28/18.83 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs19(x0, x1, ty_Int) 41.28/18.83 new_compare7(x0, x1) 41.28/18.83 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_esEs27(x0, x1, ty_Char) 41.28/18.83 new_primMulNat0(Zero, Succ(x0)) 41.28/18.83 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.83 new_primCmpNat0(Zero, Zero) 41.28/18.83 new_primEqNat0(Zero, Succ(x0)) 41.28/18.83 new_compare114(x0, x1, False, x2, x3) 41.28/18.83 new_lt19(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_lt19(x0, x1, ty_Int) 41.28/18.83 41.28/18.83 We have to consider all minimal (P,Q,R)-chains. 41.28/18.83 ---------------------------------------- 41.28/18.83 41.28/18.83 (27) QDPSizeChangeProof (EQUIVALENT) 41.28/18.83 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. 41.28/18.83 41.28/18.83 From the DPs we obtained the following set of size-change graphs: 41.28/18.83 *new_splitGT0(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Right(yvy400), h, ba, bb) 41.28/18.83 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8, 5 >= 9 41.28/18.83 41.28/18.83 41.28/18.83 *new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitGT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare33(yvy400, yvy300, h, ba), LT), h, ba, bb) 41.28/18.83 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 41.28/18.83 41.28/18.83 41.28/18.83 *new_splitGT22(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bf, bg, bh) -> new_splitGT0(yvy64, yvy65, bf, bg, bh) 41.28/18.83 The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 41.28/18.83 41.28/18.83 41.28/18.83 *new_splitGT22(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, False, bf, bg, bh) -> new_splitGT12(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, new_esEs8(new_compare30(yvy65, yvy60, bf, bg), LT), bf, bg, bh) 41.28/18.83 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 41.28/18.83 41.28/18.83 41.28/18.83 *new_splitGT21(yvy300, yvy31, yvy32, yvy33, Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, True, h, ba, bb) -> new_splitGT3(yvy340, yvy341, yvy342, yvy343, yvy344, Right(yvy400), h, ba, bb) 41.28/18.83 The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 8 >= 7, 9 >= 8, 10 >= 9 41.28/18.83 41.28/18.83 41.28/18.83 *new_splitGT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitGT22(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Right(yvy400), Right(yvy300), new_esEs34(yvy400, yvy300, ba), h, ba), GT), h, ba, bb) 41.28/18.83 The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9, 9 >= 10 41.28/18.83 41.28/18.83 41.28/18.83 *new_splitGT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitGT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Right(yvy400), Left(yvy300), False, h, ba), GT), h, ba, bb) 41.28/18.83 The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9, 9 >= 10 41.28/18.83 41.28/18.83 41.28/18.83 *new_splitGT12(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bf, bg, bh) -> new_splitGT0(yvy63, yvy65, bf, bg, bh) 41.28/18.83 The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 41.28/18.83 41.28/18.83 41.28/18.83 *new_splitGT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitGT0(yvy33, yvy400, h, ba, bb) 41.28/18.83 The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 41.28/18.83 41.28/18.83 41.28/18.83 ---------------------------------------- 41.28/18.83 41.28/18.83 (28) 41.28/18.83 YES 41.28/18.83 41.28/18.83 ---------------------------------------- 41.28/18.83 41.28/18.83 (29) 41.28/18.83 Obligation: 41.28/18.83 Q DP problem: 41.28/18.83 The TRS P consists of the following rules: 41.28/18.83 41.28/18.83 new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs8(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) 41.28/18.83 new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba, bb) 41.28/18.83 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba, bb) 41.28/18.83 new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) 41.28/18.83 new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) 41.28/18.83 new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt4(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), new_sizeFM(Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), h, ba, bb)), h, ba, bb) 41.28/18.83 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt4(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba, bb)), h, ba, bb) 41.28/18.83 new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs8(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) 41.28/18.83 41.28/18.83 The TRS R consists of the following rules: 41.28/18.83 41.28/18.83 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 41.28/18.83 new_primCmpNat0(Succ(yvy79000), Zero) -> GT 41.28/18.83 new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT 41.28/18.83 new_primCmpNat0(Zero, Zero) -> EQ 41.28/18.83 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat1(yvy8000, Zero) 41.28/18.83 new_primMulNat0(Zero, Zero) -> Zero 41.28/18.83 new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) 41.28/18.83 new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) 41.28/18.83 new_primCmpInt3(yvy6200, yvy186) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy186) 41.28/18.83 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.83 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.83 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 41.28/18.83 new_compare7(yvy79, yvy80) -> new_primCmpInt(yvy79, yvy80) 41.28/18.83 new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba, bb) -> yvy542 41.28/18.83 new_esEs8(LT, LT) -> True 41.28/18.83 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ 41.28/18.83 new_primCmpNat0(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.83 new_primCmpNat1(yvy7900, Zero) -> GT 41.28/18.83 new_sizeFM(EmptyFM, h, ba, bb) -> Pos(Zero) 41.28/18.83 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 41.28/18.83 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ 41.28/18.83 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ 41.28/18.83 new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT 41.28/18.83 new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) 41.28/18.83 new_primPlusNat1(Succ(yvy20100), Zero) -> Succ(yvy20100) 41.28/18.83 new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 41.28/18.83 new_esEs8(LT, EQ) -> False 41.28/18.83 new_esEs8(EQ, LT) -> False 41.28/18.83 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT 41.28/18.83 new_esEs8(LT, GT) -> False 41.28/18.83 new_esEs8(GT, LT) -> False 41.28/18.83 new_primCmpNat1(yvy7900, Succ(yvy8000)) -> new_primCmpNat0(yvy7900, yvy8000) 41.28/18.83 new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) -> yvy52 41.28/18.83 new_primCmpNat2(Zero, yvy7900) -> LT 41.28/18.83 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT 41.28/18.83 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ 41.28/18.83 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.83 new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT 41.28/18.83 new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT 41.28/18.83 new_primPlusNat0(Succ(yvy2010), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2010, yvy300000))) 41.28/18.83 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT 41.28/18.83 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.83 new_esEs8(GT, GT) -> True 41.28/18.83 new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) 41.28/18.83 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 41.28/18.83 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 41.28/18.83 new_esEs8(EQ, EQ) -> True 41.28/18.83 new_primPlusNat1(Succ(yvy20100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20100, yvy3000000))) 41.28/18.83 new_primPlusNat1(Zero, Zero) -> Zero 41.28/18.83 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT 41.28/18.83 new_lt4(yvy240, yvy239) -> new_esEs8(new_compare7(yvy240, yvy239), LT) 41.28/18.83 new_esEs8(EQ, GT) -> False 41.28/18.83 new_esEs8(GT, EQ) -> False 41.28/18.83 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 41.28/18.83 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 41.28/18.83 new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) 41.28/18.83 new_primCmpNat0(Zero, Succ(yvy80000)) -> LT 41.28/18.83 new_primCmpInt2(yvy6200, yvy185) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy185) 41.28/18.83 new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat1(yvy7900, yvy800) 41.28/18.83 new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) 41.28/18.83 new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat0(yvy8000, yvy7900) 41.28/18.83 new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) 41.28/18.83 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 41.28/18.83 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 41.28/18.83 41.28/18.83 The set Q consists of the following terms: 41.28/18.83 41.28/18.83 new_sr(x0, x1) 41.28/18.83 new_primMulNat0(Succ(x0), Succ(x1)) 41.28/18.83 new_primCmpInt(Neg(Zero), Neg(Zero)) 41.28/18.83 new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) 41.28/18.83 new_esEs8(EQ, EQ) 41.28/18.83 new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) 41.28/18.83 new_sIZE_RATIO 41.28/18.83 new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) 41.28/18.83 new_primCmpNat1(x0, Zero) 41.28/18.83 new_esEs8(LT, LT) 41.28/18.83 new_primCmpNat2(Succ(x0), x1) 41.28/18.83 new_primCmpInt(Pos(Zero), Neg(Zero)) 41.28/18.83 new_primCmpInt(Neg(Zero), Pos(Zero)) 41.28/18.83 new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) 41.28/18.83 new_esEs8(EQ, GT) 41.28/18.83 new_esEs8(GT, EQ) 41.28/18.83 new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) 41.28/18.83 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.83 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.83 new_primCmpNat2(Zero, x0) 41.28/18.83 new_primCmpNat0(Succ(x0), Zero) 41.28/18.83 new_primPlusNat1(Succ(x0), Zero) 41.28/18.83 new_primMulInt(Neg(x0), Neg(x1)) 41.28/18.83 new_primMulNat0(Zero, Zero) 41.28/18.83 new_primPlusNat1(Zero, Zero) 41.28/18.83 new_lt4(x0, x1) 41.28/18.83 new_esEs8(LT, GT) 41.28/18.83 new_esEs8(GT, LT) 41.28/18.83 new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) 41.28/18.83 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 41.28/18.83 new_primCmpInt3(x0, x1) 41.28/18.83 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.83 new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) 41.28/18.83 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 41.28/18.83 new_primPlusNat0(Succ(x0), x1) 41.28/18.83 new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) 41.28/18.83 new_primMulInt(Pos(x0), Pos(x1)) 41.28/18.83 new_primCmpInt2(x0, x1) 41.28/18.83 new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) 41.28/18.83 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.83 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.83 new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) 41.28/18.83 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6, x7) 41.28/18.83 new_primCmpNat0(Zero, Succ(x0)) 41.28/18.83 new_sizeFM0(x0, x1, x2, x3, x4, x5, x6, x7) 41.28/18.83 new_primCmpNat1(x0, Succ(x1)) 41.28/18.83 new_primPlusNat1(Succ(x0), Succ(x1)) 41.28/18.83 new_primMulNat0(Succ(x0), Zero) 41.28/18.83 new_primMulInt(Pos(x0), Neg(x1)) 41.28/18.83 new_primMulInt(Neg(x0), Pos(x1)) 41.28/18.83 new_compare7(x0, x1) 41.28/18.83 new_esEs8(GT, GT) 41.28/18.83 new_primCmpNat0(Succ(x0), Succ(x1)) 41.28/18.83 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.83 new_primMulNat0(Zero, Succ(x0)) 41.28/18.83 new_primCmpNat0(Zero, Zero) 41.28/18.83 new_primPlusNat0(Zero, x0) 41.28/18.83 new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) 41.28/18.83 new_primCmpInt(Pos(Zero), Pos(Zero)) 41.28/18.83 new_esEs8(LT, EQ) 41.28/18.83 new_esEs8(EQ, LT) 41.28/18.83 new_primPlusNat1(Zero, Succ(x0)) 41.28/18.83 new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) 41.28/18.83 new_sizeFM(EmptyFM, x0, x1, x2) 41.28/18.83 41.28/18.83 We have to consider all minimal (P,Q,R)-chains. 41.28/18.83 ---------------------------------------- 41.28/18.83 41.28/18.83 (30) QDPOrderProof (EQUIVALENT) 41.28/18.83 We use the reduction pair processor [LPAR04,JAR06]. 41.28/18.83 41.28/18.83 41.28/18.83 The following pairs can be oriented strictly and are deleted. 41.28/18.83 41.28/18.83 new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs8(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) 41.28/18.83 new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs8(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) 41.28/18.83 The remaining pairs can at least be oriented weakly. 41.28/18.83 Used ordering: Polynomial interpretation [POLO]: 41.28/18.83 41.28/18.83 POL(Branch(x_1, x_2, x_3, x_4, x_5)) = 1 + x_1 + x_2 + x_3 + x_4 + x_5 41.28/18.83 POL(EQ) = 0 41.28/18.83 POL(False) = 0 41.28/18.83 POL(GT) = 0 41.28/18.83 POL(LT) = 1 41.28/18.83 POL(Neg(x_1)) = 1 41.28/18.83 POL(Pos(x_1)) = 0 41.28/18.83 POL(Succ(x_1)) = 0 41.28/18.83 POL(True) = 1 41.28/18.83 POL(Zero) = 0 41.28/18.83 POL(new_compare7(x_1, x_2)) = 1 + x_1 + x_2 41.28/18.83 POL(new_esEs8(x_1, x_2)) = x_1 41.28/18.83 POL(new_lt4(x_1, x_2)) = 0 41.28/18.83 POL(new_mkVBalBranch(x_1, x_2, x_3, x_4, x_5, x_6, x_7)) = x_3 + x_4 + x_5 + x_6 + x_7 41.28/18.83 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_16)) = 1 + x_1 + x_10 + x_14 + x_15 + x_16 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_9 41.28/18.83 POL(new_mkVBalBranch3MkVBalBranch10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16)) = 1 + x_1 + x_10 + x_14 + x_15 + x_16 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_9 41.28/18.83 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_16)) = 1 + x_1 + x_10 + x_14 + x_15 + x_16 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_9 41.28/18.83 POL(new_mkVBalBranch3MkVBalBranch20(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16)) = 1 + x_1 + x_10 + x_13 + x_14 + x_15 + x_16 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_9 41.28/18.83 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_13)) = x_1 + x_10 + x_11 + x_12 + x_13 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_9 41.28/18.83 POL(new_mkVBalBranch3Size_r0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13)) = x_1 + x_10 + x_11 + x_12 + x_13 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_9 41.28/18.83 POL(new_primCmpInt(x_1, x_2)) = x_1 41.28/18.83 POL(new_primCmpInt0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13)) = x_10 + x_11 + x_12 + x_13 + x_2 + x_3 + x_5 + x_6 + x_7 + x_8 + x_9 41.28/18.83 POL(new_primCmpInt1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13)) = 1 41.28/18.83 POL(new_primCmpInt2(x_1, x_2)) = 1 + x_1 41.28/18.83 POL(new_primCmpInt3(x_1, x_2)) = 1 41.28/18.83 POL(new_primCmpNat0(x_1, x_2)) = 1 41.28/18.83 POL(new_primCmpNat1(x_1, x_2)) = 0 41.28/18.83 POL(new_primCmpNat2(x_1, x_2)) = 1 41.28/18.83 POL(new_primMulInt(x_1, x_2)) = 0 41.28/18.83 POL(new_primMulNat0(x_1, x_2)) = 0 41.28/18.83 POL(new_primPlusNat0(x_1, x_2)) = 0 41.28/18.83 POL(new_primPlusNat1(x_1, x_2)) = 0 41.28/18.83 POL(new_sIZE_RATIO) = 0 41.28/18.83 POL(new_sizeFM(x_1, x_2, x_3, x_4)) = x_1 + x_2 + x_3 + x_4 41.28/18.83 POL(new_sizeFM0(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8)) = x_1 + x_3 + x_5 + x_7 41.28/18.83 POL(new_sr(x_1, x_2)) = 0 41.28/18.83 41.28/18.83 The following usable rules [FROCOS05] with respect to the argument filtering of the ordering [JAR06] were oriented: 41.28/18.83 41.28/18.83 new_esEs8(LT, LT) -> True 41.28/18.83 new_esEs8(EQ, LT) -> False 41.28/18.83 new_esEs8(GT, LT) -> False 41.28/18.83 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ 41.28/18.83 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT 41.28/18.83 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ 41.28/18.83 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT 41.28/18.83 new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) 41.28/18.83 new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT 41.28/18.83 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat1(yvy8000, Zero) 41.28/18.83 new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) 41.28/18.83 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 41.28/18.83 new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT 41.28/18.83 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 41.28/18.83 new_primCmpNat1(yvy7900, Zero) -> GT 41.28/18.83 new_primCmpNat0(Succ(yvy79000), Zero) -> GT 41.28/18.83 new_primCmpNat0(Zero, Zero) -> EQ 41.28/18.83 new_primCmpNat0(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.83 new_primCmpNat0(Zero, Succ(yvy80000)) -> LT 41.28/18.83 new_primCmpInt3(yvy6200, yvy186) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy186) 41.28/18.83 new_primCmpNat2(Zero, yvy7900) -> LT 41.28/18.83 new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat0(yvy8000, yvy7900) 41.28/18.83 41.28/18.83 41.28/18.83 ---------------------------------------- 41.28/18.83 41.28/18.83 (31) 41.28/18.83 Obligation: 41.28/18.83 Q DP problem: 41.28/18.83 The TRS P consists of the following rules: 41.28/18.83 41.28/18.83 new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba, bb) 41.28/18.83 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba, bb) 41.28/18.83 new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) 41.28/18.83 new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) 41.28/18.83 new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt4(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), new_sizeFM(Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), h, ba, bb)), h, ba, bb) 41.28/18.83 new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt4(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba, bb)), h, ba, bb) 41.28/18.83 41.28/18.83 The TRS R consists of the following rules: 41.28/18.83 41.28/18.83 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 41.28/18.83 new_primCmpNat0(Succ(yvy79000), Zero) -> GT 41.28/18.83 new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT 41.28/18.83 new_primCmpNat0(Zero, Zero) -> EQ 41.28/18.83 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat1(yvy8000, Zero) 41.28/18.83 new_primMulNat0(Zero, Zero) -> Zero 41.28/18.83 new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) 41.28/18.83 new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) 41.28/18.83 new_primCmpInt3(yvy6200, yvy186) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy186) 41.28/18.83 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.83 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.83 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 41.28/18.83 new_compare7(yvy79, yvy80) -> new_primCmpInt(yvy79, yvy80) 41.28/18.83 new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba, bb) -> yvy542 41.28/18.83 new_esEs8(LT, LT) -> True 41.28/18.83 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ 41.28/18.83 new_primCmpNat0(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.83 new_primCmpNat1(yvy7900, Zero) -> GT 41.28/18.83 new_sizeFM(EmptyFM, h, ba, bb) -> Pos(Zero) 41.28/18.83 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 41.28/18.83 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ 41.28/18.83 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ 41.28/18.83 new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT 41.28/18.83 new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) 41.28/18.83 new_primPlusNat1(Succ(yvy20100), Zero) -> Succ(yvy20100) 41.28/18.83 new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 41.28/18.83 new_esEs8(LT, EQ) -> False 41.28/18.83 new_esEs8(EQ, LT) -> False 41.28/18.83 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT 41.28/18.83 new_esEs8(LT, GT) -> False 41.28/18.83 new_esEs8(GT, LT) -> False 41.28/18.83 new_primCmpNat1(yvy7900, Succ(yvy8000)) -> new_primCmpNat0(yvy7900, yvy8000) 41.28/18.83 new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) -> yvy52 41.28/18.83 new_primCmpNat2(Zero, yvy7900) -> LT 41.28/18.83 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT 41.28/18.83 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ 41.28/18.83 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.83 new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT 41.28/18.83 new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT 41.28/18.83 new_primPlusNat0(Succ(yvy2010), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2010, yvy300000))) 41.28/18.83 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT 41.28/18.83 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.83 new_esEs8(GT, GT) -> True 41.28/18.83 new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) 41.28/18.83 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 41.28/18.83 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 41.28/18.83 new_esEs8(EQ, EQ) -> True 41.28/18.83 new_primPlusNat1(Succ(yvy20100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20100, yvy3000000))) 41.28/18.83 new_primPlusNat1(Zero, Zero) -> Zero 41.28/18.83 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT 41.28/18.83 new_lt4(yvy240, yvy239) -> new_esEs8(new_compare7(yvy240, yvy239), LT) 41.28/18.83 new_esEs8(EQ, GT) -> False 41.28/18.83 new_esEs8(GT, EQ) -> False 41.28/18.83 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 41.28/18.83 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 41.28/18.83 new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) 41.28/18.83 new_primCmpNat0(Zero, Succ(yvy80000)) -> LT 41.28/18.83 new_primCmpInt2(yvy6200, yvy185) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy185) 41.28/18.83 new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat1(yvy7900, yvy800) 41.28/18.83 new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) 41.28/18.83 new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat0(yvy8000, yvy7900) 41.28/18.83 new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) 41.28/18.83 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 41.28/18.83 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 41.28/18.83 41.28/18.83 The set Q consists of the following terms: 41.28/18.83 41.28/18.83 new_sr(x0, x1) 41.28/18.83 new_primMulNat0(Succ(x0), Succ(x1)) 41.28/18.83 new_primCmpInt(Neg(Zero), Neg(Zero)) 41.28/18.83 new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) 41.28/18.83 new_esEs8(EQ, EQ) 41.28/18.83 new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) 41.28/18.83 new_sIZE_RATIO 41.28/18.83 new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) 41.28/18.83 new_primCmpNat1(x0, Zero) 41.28/18.83 new_esEs8(LT, LT) 41.28/18.83 new_primCmpNat2(Succ(x0), x1) 41.28/18.83 new_primCmpInt(Pos(Zero), Neg(Zero)) 41.28/18.83 new_primCmpInt(Neg(Zero), Pos(Zero)) 41.28/18.83 new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) 41.28/18.83 new_esEs8(EQ, GT) 41.28/18.83 new_esEs8(GT, EQ) 41.28/18.83 new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) 41.28/18.83 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.83 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.83 new_primCmpNat2(Zero, x0) 41.28/18.83 new_primCmpNat0(Succ(x0), Zero) 41.28/18.83 new_primPlusNat1(Succ(x0), Zero) 41.28/18.83 new_primMulInt(Neg(x0), Neg(x1)) 41.28/18.83 new_primMulNat0(Zero, Zero) 41.28/18.83 new_primPlusNat1(Zero, Zero) 41.28/18.83 new_lt4(x0, x1) 41.28/18.83 new_esEs8(LT, GT) 41.28/18.83 new_esEs8(GT, LT) 41.28/18.83 new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) 41.28/18.83 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 41.28/18.83 new_primCmpInt3(x0, x1) 41.28/18.83 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.83 new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) 41.28/18.83 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 41.28/18.83 new_primPlusNat0(Succ(x0), x1) 41.28/18.83 new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) 41.28/18.83 new_primMulInt(Pos(x0), Pos(x1)) 41.28/18.83 new_primCmpInt2(x0, x1) 41.28/18.83 new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) 41.28/18.83 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.83 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.83 new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) 41.28/18.83 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6, x7) 41.28/18.83 new_primCmpNat0(Zero, Succ(x0)) 41.28/18.83 new_sizeFM0(x0, x1, x2, x3, x4, x5, x6, x7) 41.28/18.83 new_primCmpNat1(x0, Succ(x1)) 41.28/18.83 new_primPlusNat1(Succ(x0), Succ(x1)) 41.28/18.83 new_primMulNat0(Succ(x0), Zero) 41.28/18.83 new_primMulInt(Pos(x0), Neg(x1)) 41.28/18.83 new_primMulInt(Neg(x0), Pos(x1)) 41.28/18.83 new_compare7(x0, x1) 41.28/18.83 new_esEs8(GT, GT) 41.28/18.83 new_primCmpNat0(Succ(x0), Succ(x1)) 41.28/18.83 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.83 new_primMulNat0(Zero, Succ(x0)) 41.28/18.83 new_primCmpNat0(Zero, Zero) 41.28/18.83 new_primPlusNat0(Zero, x0) 41.28/18.83 new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) 41.28/18.83 new_primCmpInt(Pos(Zero), Pos(Zero)) 41.28/18.83 new_esEs8(LT, EQ) 41.28/18.83 new_esEs8(EQ, LT) 41.28/18.83 new_primPlusNat1(Zero, Succ(x0)) 41.28/18.83 new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) 41.28/18.83 new_sizeFM(EmptyFM, x0, x1, x2) 41.28/18.83 41.28/18.83 We have to consider all minimal (P,Q,R)-chains. 41.28/18.83 ---------------------------------------- 41.28/18.83 41.28/18.83 (32) DependencyGraphProof (EQUIVALENT) 41.28/18.83 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 0 SCCs with 6 less nodes. 41.28/18.83 ---------------------------------------- 41.28/18.83 41.28/18.83 (33) 41.28/18.83 TRUE 41.28/18.83 41.28/18.83 ---------------------------------------- 41.28/18.83 41.28/18.83 (34) 41.28/18.83 Obligation: 41.28/18.83 Q DP problem: 41.28/18.83 The TRS P consists of the following rules: 41.28/18.83 41.28/18.83 new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, ge, app(app(ty_Either, bbb), bbc)) -> new_ltEs0(yvy79002, yvy80002, bbb, bbc) 41.28/18.83 new_ltEs2(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bca) -> new_compare(yvy79001, yvy80001, bca) 41.28/18.83 new_compare20(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(app(app(ty_@3, ec), ed), ee)), dh), de) -> new_ltEs1(yvy79000, yvy80000, ec, ed, ee) 41.28/18.83 new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), app(app(ty_Either, baa), bab)), gf), de) -> new_lt0(yvy79001, yvy80001, baa, bab) 41.28/18.83 new_compare20(Right(yvy7900), Right(yvy8000), False, bdc, app(app(ty_Either, bdf), bdg)) -> new_ltEs0(yvy7900, yvy8000, bdf, bdg) 41.28/18.83 new_ltEs0(Right(yvy79000), Right(yvy80000), eh, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs1(yvy79000, yvy80000, ff, fg, fh) 41.28/18.83 new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, cb), app(app(ty_@2, cc), cd)), de) -> new_ltEs(yvy79001, yvy80001, cc, cd) 41.28/18.83 new_ltEs0(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, ec), ed), ee), dh) -> new_ltEs1(yvy79000, yvy80000, ec, ed, ee) 41.28/18.83 new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, cb), app(ty_Maybe, dd)), de) -> new_ltEs3(yvy79001, yvy80001, dd) 41.28/18.83 new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(ty_[], hd)), ge), gf), de) -> new_lt2(yvy79000, yvy80000, hd) 41.28/18.83 new_lt3(yvy79000, yvy80000, ca) -> new_compare22(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, ca), ca) 41.28/18.83 new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), ge), app(ty_[], bbg)), de) -> new_ltEs2(yvy79002, yvy80002, bbg) 41.28/18.83 new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(ty_Maybe, ca)), bb), de) -> new_compare22(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, ca), ca) 41.28/18.83 new_compare20(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, eh), app(app(ty_@2, fa), fb)), de) -> new_ltEs(yvy79000, yvy80000, fa, fb) 41.28/18.83 new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(app(ty_Either, gg), gh), ge, gf) -> new_lt0(yvy79000, yvy80000, gg, gh) 41.28/18.83 new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, app(app(app(ty_@3, bac), bad), bae), gf) -> new_lt1(yvy79001, yvy80001, bac, bad, bae) 41.28/18.83 new_ltEs3(Just(yvy79000), Just(yvy80000), app(ty_[], bda)) -> new_ltEs2(yvy79000, yvy80000, bda) 41.28/18.83 new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), app(ty_[], baf)), gf), de) -> new_lt2(yvy79001, yvy80001, baf) 41.28/18.83 new_primCompAux(yvy79000, yvy80000, yvy256, app(app(ty_@2, bee), bef)) -> new_compare0(yvy79000, yvy80000, bee, bef) 41.28/18.83 new_lt(yvy79000, yvy80000, h, ba) -> new_compare2(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, h, ba), h, ba) 41.28/18.83 new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, app(ty_[], baf), gf) -> new_lt2(yvy79001, yvy80001, baf) 41.28/18.83 new_ltEs0(Left(yvy79000), Left(yvy80000), app(ty_[], ef), dh) -> new_ltEs2(yvy79000, yvy80000, ef) 41.28/18.83 new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(app(ty_@2, gc), gd), ge, gf) -> new_lt(yvy79000, yvy80000, gc, gd) 41.28/18.83 new_ltEs0(Left(yvy79000), Left(yvy80000), app(app(ty_@2, df), dg), dh) -> new_ltEs(yvy79000, yvy80000, df, dg) 41.28/18.83 new_compare20(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, eh), app(ty_Maybe, gb)), de) -> new_ltEs3(yvy79000, yvy80000, gb) 41.28/18.83 new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), app(ty_Maybe, bag)), gf), de) -> new_lt3(yvy79001, yvy80001, bag) 41.28/18.83 new_compare20(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(app(ty_Either, ea), eb)), dh), de) -> new_ltEs0(yvy79000, yvy80000, ea, eb) 41.28/18.83 new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), ge), app(app(ty_Either, bbb), bbc)), de) -> new_ltEs0(yvy79002, yvy80002, bbb, bbc) 41.28/18.83 new_compare20(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, eh), app(ty_[], ga)), de) -> new_ltEs2(yvy79000, yvy80000, ga) 41.28/18.83 new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, ge, app(ty_[], bbg)) -> new_ltEs2(yvy79002, yvy80002, bbg) 41.28/18.83 new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(app(ty_Either, bc), bd), bb) -> new_compare20(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.83 new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs1(yvy79001, yvy80001, cg, da, db) 41.28/18.83 new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, cb), app(ty_[], dc)), de) -> new_ltEs2(yvy79001, yvy80001, dc) 41.28/18.83 new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(ty_Maybe, he)), ge), gf), de) -> new_lt3(yvy79000, yvy80000, he) 41.28/18.83 new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(ty_Maybe, ca), bb) -> new_compare22(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, ca), ca) 41.28/18.83 new_compare20(Right(yvy7900), Right(yvy8000), False, bdc, app(ty_Maybe, bed)) -> new_ltEs3(yvy7900, yvy8000, bed) 41.28/18.83 new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(ty_Maybe, he), ge, gf) -> new_lt3(yvy79000, yvy80000, he) 41.28/18.83 new_lt1(yvy79000, yvy80000, be, bf, bg) -> new_compare21(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, be, bf, bg), be, bf, bg) 41.28/18.83 new_ltEs3(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bcd), bce)) -> new_ltEs0(yvy79000, yvy80000, bcd, bce) 41.28/18.83 new_compare20(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(ty_Maybe, bdb)), de) -> new_ltEs3(yvy79000, yvy80000, bdb) 41.28/18.83 new_ltEs3(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bcb), bcc)) -> new_ltEs(yvy79000, yvy80000, bcb, bcc) 41.28/18.83 new_lt2(yvy79000, yvy80000, bh) -> new_compare(yvy79000, yvy80000, bh) 41.28/18.83 new_ltEs0(Right(yvy79000), Right(yvy80000), eh, app(ty_[], ga)) -> new_ltEs2(yvy79000, yvy80000, ga) 41.28/18.83 new_compare0(yvy79000, yvy80000, h, ba) -> new_compare2(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, h, ba), h, ba) 41.28/18.83 new_compare20(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(app(ty_@2, df), dg)), dh), de) -> new_ltEs(yvy79000, yvy80000, df, dg) 41.28/18.83 new_primCompAux(yvy79000, yvy80000, yvy256, app(app(ty_Either, beg), beh)) -> new_compare1(yvy79000, yvy80000, beg, beh) 41.28/18.83 new_compare20(Right(yvy7900), Right(yvy8000), False, bdc, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs1(yvy7900, yvy8000, bdh, bea, beb) 41.28/18.83 new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(app(ty_@2, h), ba), bb) -> new_compare2(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, h, ba), h, ba) 41.28/18.83 new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(yvy79001, yvy80001, cc, cd) 41.28/18.83 new_ltEs2(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bca) -> new_primCompAux(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, bca), bca) 41.28/18.83 new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(app(app(ty_@3, ha), hb), hc), ge, gf) -> new_lt1(yvy79000, yvy80000, ha, hb, hc) 41.28/18.83 new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, app(app(ty_Either, baa), bab), gf) -> new_lt0(yvy79001, yvy80001, baa, bab) 41.28/18.83 new_compare(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bca) -> new_primCompAux(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, bca), bca) 41.28/18.83 new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, ge, app(app(ty_@2, bah), bba)) -> new_ltEs(yvy79002, yvy80002, bah, bba) 41.28/18.83 new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(ty_[], bh)), bb), de) -> new_compare(yvy79000, yvy80000, bh) 41.28/18.83 new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(app(ty_@2, h), ba)), bb), de) -> new_compare2(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, h, ba), h, ba) 41.28/18.83 new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(app(app(ty_@3, be), bf), bg)), bb), de) -> new_compare21(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, be, bf, bg), be, bf, bg) 41.28/18.83 new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(ty_[], bh), bb) -> new_compare(yvy79000, yvy80000, bh) 41.28/18.83 new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(app(app(ty_@3, ha), hb), hc)), ge), gf), de) -> new_lt1(yvy79000, yvy80000, ha, hb, hc) 41.28/18.83 new_compare1(yvy79000, yvy80000, bc, bd) -> new_compare20(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.83 new_ltEs0(Right(yvy79000), Right(yvy80000), eh, app(app(ty_@2, fa), fb)) -> new_ltEs(yvy79000, yvy80000, fa, fb) 41.28/18.83 new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, app(app(ty_@2, hg), hh), gf) -> new_lt(yvy79001, yvy80001, hg, hh) 41.28/18.83 new_primCompAux(yvy79000, yvy80000, yvy256, app(ty_Maybe, bfe)) -> new_compare5(yvy79000, yvy80000, bfe) 41.28/18.83 new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(app(ty_@2, gc), gd)), ge), gf), de) -> new_lt(yvy79000, yvy80000, gc, gd) 41.28/18.83 new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, cb), app(app(app(ty_@3, cg), da), db)), de) -> new_ltEs1(yvy79001, yvy80001, cg, da, db) 41.28/18.83 new_compare20(Left(:(yvy79000, yvy79001)), Left(:(yvy80000, yvy80001)), False, app(ty_[], bca), de) -> new_compare(yvy79001, yvy80001, bca) 41.28/18.83 new_compare20(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, eh), app(app(app(ty_@3, ff), fg), fh)), de) -> new_ltEs1(yvy79000, yvy80000, ff, fg, fh) 41.28/18.83 new_ltEs0(Left(yvy79000), Left(yvy80000), app(ty_Maybe, eg), dh) -> new_ltEs3(yvy79000, yvy80000, eg) 41.28/18.83 new_compare20(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(ty_Maybe, eg)), dh), de) -> new_ltEs3(yvy79000, yvy80000, eg) 41.28/18.83 new_compare20(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, eh), app(app(ty_Either, fc), fd)), de) -> new_ltEs0(yvy79000, yvy80000, fc, fd) 41.28/18.83 new_ltEs3(Just(yvy79000), Just(yvy80000), app(ty_Maybe, bdb)) -> new_ltEs3(yvy79000, yvy80000, bdb) 41.28/18.83 new_primCompAux(yvy79000, yvy80000, yvy256, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_compare4(yvy79000, yvy80000, bfa, bfb, bfc) 41.28/18.83 new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), cb, app(ty_Maybe, dd)) -> new_ltEs3(yvy79001, yvy80001, dd) 41.28/18.83 new_ltEs0(Right(yvy79000), Right(yvy80000), eh, app(app(ty_Either, fc), fd)) -> new_ltEs0(yvy79000, yvy80000, fc, fd) 41.28/18.83 new_compare20(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(app(app(ty_@3, bcf), bcg), bch)), de) -> new_ltEs1(yvy79000, yvy80000, bcf, bcg, bch) 41.28/18.83 new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(app(ty_Either, gg), gh)), ge), gf), de) -> new_lt0(yvy79000, yvy80000, gg, gh) 41.28/18.83 new_compare21(yvy79000, yvy80000, False, be, bf, bg) -> new_ltEs1(yvy79000, yvy80000, be, bf, bg) 41.28/18.83 new_compare20(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(ty_[], ef)), dh), de) -> new_ltEs2(yvy79000, yvy80000, ef) 41.28/18.83 new_ltEs0(Left(yvy79000), Left(yvy80000), app(app(ty_Either, ea), eb), dh) -> new_ltEs0(yvy79000, yvy80000, ea, eb) 41.28/18.83 new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), cb, app(app(ty_Either, ce), cf)) -> new_ltEs0(yvy79001, yvy80001, ce, cf) 41.28/18.83 new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), ge), app(app(ty_@2, bah), bba)), de) -> new_ltEs(yvy79002, yvy80002, bah, bba) 41.28/18.83 new_ltEs3(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs1(yvy79000, yvy80000, bcf, bcg, bch) 41.28/18.83 new_primCompAux(yvy79000, yvy80000, yvy256, app(ty_[], bfd)) -> new_compare(yvy79000, yvy80000, bfd) 41.28/18.83 new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), app(app(ty_@2, hg), hh)), gf), de) -> new_lt(yvy79001, yvy80001, hg, hh) 41.28/18.83 new_compare20(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(app(ty_@2, bcb), bcc)), de) -> new_ltEs(yvy79000, yvy80000, bcb, bcc) 41.28/18.83 new_compare20(Right(yvy7900), Right(yvy8000), False, bdc, app(ty_[], bec)) -> new_ltEs2(yvy7900, yvy8000, bec) 41.28/18.83 new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), ge), app(ty_Maybe, bbh)), de) -> new_ltEs3(yvy79002, yvy80002, bbh) 41.28/18.83 new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, app(ty_Maybe, bag), gf) -> new_lt3(yvy79001, yvy80001, bag) 41.28/18.83 new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), app(app(app(ty_@3, bac), bad), bae)), gf), de) -> new_lt1(yvy79001, yvy80001, bac, bad, bae) 41.28/18.83 new_compare4(yvy79000, yvy80000, be, bf, bg) -> new_compare21(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, be, bf, bg), be, bf, bg) 41.28/18.83 new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, ge, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs1(yvy79002, yvy80002, bbd, bbe, bbf) 41.28/18.83 new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, ge, app(ty_Maybe, bbh)) -> new_ltEs3(yvy79002, yvy80002, bbh) 41.28/18.83 new_compare(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bca) -> new_compare(yvy79001, yvy80001, bca) 41.28/18.83 new_compare20(Right(yvy7900), Right(yvy8000), False, bdc, app(app(ty_@2, bdd), bde)) -> new_ltEs(yvy7900, yvy8000, bdd, bde) 41.28/18.83 new_ltEs0(Right(yvy79000), Right(yvy80000), eh, app(ty_Maybe, gb)) -> new_ltEs3(yvy79000, yvy80000, gb) 41.28/18.83 new_compare2(yvy79000, yvy80000, False, h, ba) -> new_ltEs(yvy79000, yvy80000, h, ba) 41.28/18.83 new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(app(app(ty_@3, be), bf), bg), bb) -> new_compare21(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, be, bf, bg), be, bf, bg) 41.28/18.83 new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, cb), app(app(ty_Either, ce), cf)), de) -> new_ltEs0(yvy79001, yvy80001, ce, cf) 41.28/18.83 new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(ty_[], hd), ge, gf) -> new_lt2(yvy79000, yvy80000, hd) 41.28/18.83 new_compare22(yvy79000, yvy80000, False, ca) -> new_ltEs3(yvy79000, yvy80000, ca) 41.28/18.83 new_compare20(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(app(ty_Either, bcd), bce)), de) -> new_ltEs0(yvy79000, yvy80000, bcd, bce) 41.28/18.83 new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(app(ty_Either, bc), bd)), bb), de) -> new_compare20(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.83 new_compare5(yvy79000, yvy80000, ca) -> new_compare22(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, ca), ca) 41.28/18.83 new_compare20(Left(:(yvy79000, yvy79001)), Left(:(yvy80000, yvy80001)), False, app(ty_[], bca), de) -> new_primCompAux(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, bca), bca) 41.28/18.83 new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), ge), app(app(app(ty_@3, bbd), bbe), bbf)), de) -> new_ltEs1(yvy79002, yvy80002, bbd, bbe, bbf) 41.28/18.83 new_compare20(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(ty_[], bda)), de) -> new_ltEs2(yvy79000, yvy80000, bda) 41.28/18.83 new_lt0(yvy79000, yvy80000, bc, bd) -> new_compare20(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.83 new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), cb, app(ty_[], dc)) -> new_ltEs2(yvy79001, yvy80001, dc) 41.28/18.83 41.28/18.83 The TRS R consists of the following rules: 41.28/18.83 41.28/18.83 new_ltEs20(yvy79002, yvy80002, app(ty_[], bbg)) -> new_ltEs11(yvy79002, yvy80002, bbg) 41.28/18.83 new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT 41.28/18.83 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 41.28/18.83 new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.83 new_ltEs21(yvy79001, yvy80001, ty_Bool) -> new_ltEs8(yvy79001, yvy80001) 41.28/18.83 new_esEs24(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 41.28/18.83 new_ltEs12(Right(yvy79000), Right(yvy80000), eh, ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.83 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Ordering, bff) -> new_esEs8(yvy4000, yvy3000) 41.28/18.83 new_pePe(True, yvy255) -> True 41.28/18.83 new_esEs25(yvy79001, yvy80001, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs6(yvy79001, yvy80001, bac, bad, bae) 41.28/18.83 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Ratio, cgg)) -> new_ltEs13(yvy79000, yvy80000, cgg) 41.28/18.83 new_ltEs12(Right(yvy79000), Right(yvy80000), eh, app(ty_Ratio, caf)) -> new_ltEs13(yvy79000, yvy80000, caf) 41.28/18.83 new_esEs19(yvy4001, yvy3001, app(ty_Ratio, cdf)) -> new_esEs17(yvy4001, yvy3001, cdf) 41.28/18.83 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.83 new_ltEs12(Right(yvy79000), Right(yvy80000), eh, ty_Double) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.83 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 41.28/18.83 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.83 new_esEs27(yvy4001, yvy3001, app(app(ty_Either, ddb), ddc)) -> new_esEs5(yvy4001, yvy3001, ddb, ddc) 41.28/18.83 new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT 41.28/18.83 new_lt18(yvy79000, yvy80000, app(ty_Maybe, he)) -> new_lt6(yvy79000, yvy80000, he) 41.28/18.83 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.83 new_esEs9(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 41.28/18.83 new_lt20(yvy79000, yvy80000, app(app(ty_Either, bc), bd)) -> new_lt17(yvy79000, yvy80000, bc, bd) 41.28/18.83 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.83 new_esEs24(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 41.28/18.83 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cgd)) -> new_esEs7(yvy4000, yvy3000, cgd) 41.28/18.83 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Char, bff) -> new_esEs11(yvy4000, yvy3000) 41.28/18.83 new_esEs28(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 41.28/18.83 new_ltEs12(Left(yvy79000), Right(yvy80000), eh, dh) -> True 41.28/18.83 new_ltEs21(yvy79001, yvy80001, ty_Char) -> new_ltEs6(yvy79001, yvy80001) 41.28/18.83 new_esEs28(yvy79000, yvy80000, app(ty_Maybe, ca)) -> new_esEs7(yvy79000, yvy80000, ca) 41.28/18.83 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Ratio, cae), dh) -> new_ltEs13(yvy79000, yvy80000, cae) 41.28/18.83 new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.83 new_esEs18(yvy4000, yvy3000, app(app(ty_@2, cbd), cbe)) -> new_esEs4(yvy4000, yvy3000, cbd, cbe) 41.28/18.83 new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt16(yvy79001, yvy80001) 41.28/18.83 new_lt19(yvy79001, yvy80001, app(app(ty_Either, baa), bab)) -> new_lt17(yvy79001, yvy80001, baa, bab) 41.28/18.83 new_esEs26(yvy4000, yvy3000, app(ty_[], dbg)) -> new_esEs15(yvy4000, yvy3000, dbg) 41.28/18.83 new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt4(yvy79001, yvy80001) 41.28/18.83 new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.83 new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) 41.28/18.83 new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.83 new_compare14(yvy79000, yvy80000, app(ty_[], bfd)) -> new_compare3(yvy79000, yvy80000, bfd) 41.28/18.83 new_compare3([], [], bca) -> EQ 41.28/18.83 new_esEs28(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 41.28/18.83 new_esEs8(GT, GT) -> True 41.28/18.83 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 41.28/18.83 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 41.28/18.83 new_ltEs19(yvy7900, yvy8000, app(ty_[], bec)) -> new_ltEs11(yvy7900, yvy8000, bec) 41.28/18.83 new_ltEs18(yvy7900, yvy8000, app(app(ty_@2, cb), bb)) -> new_ltEs4(yvy7900, yvy8000, cb, bb) 41.28/18.83 new_fsEs(yvy244) -> new_not(new_esEs8(yvy244, GT)) 41.28/18.83 new_esEs25(yvy79001, yvy80001, app(ty_Ratio, dba)) -> new_esEs17(yvy79001, yvy80001, dba) 41.28/18.83 new_compare210(yvy790, yvy800, True, bdc, de) -> EQ 41.28/18.83 new_lt20(yvy79000, yvy80000, app(app(ty_@2, h), ba)) -> new_lt13(yvy79000, yvy80000, h, ba) 41.28/18.83 new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare18(yvy7900, yvy8000)) 41.28/18.83 new_esEs24(yvy79000, yvy80000, app(app(ty_@2, gc), gd)) -> new_esEs4(yvy79000, yvy80000, gc, gd) 41.28/18.83 new_lt18(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 41.28/18.83 new_compare28(yvy79000, yvy80000, False, ca) -> new_compare113(yvy79000, yvy80000, new_ltEs17(yvy79000, yvy80000, ca), ca) 41.28/18.83 new_lt18(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 41.28/18.83 new_esEs8(EQ, EQ) -> True 41.28/18.83 new_ltEs11(yvy7900, yvy8000, bca) -> new_fsEs(new_compare3(yvy7900, yvy8000, bca)) 41.28/18.83 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.83 new_esEs20(yvy4002, yvy3002, app(ty_Ratio, ceh)) -> new_esEs17(yvy4002, yvy3002, ceh) 41.28/18.83 new_ltEs20(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) 41.28/18.83 new_esEs5(Right(yvy4000), Right(yvy3000), bha, app(app(ty_@2, bhb), bhc)) -> new_esEs4(yvy4000, yvy3000, bhb, bhc) 41.28/18.83 new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.83 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.83 new_compare13(yvy79000, yvy80000, be, bf, bg) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, be, bf, bg), be, bf, bg) 41.28/18.83 new_esEs5(Right(yvy4000), Right(yvy3000), bha, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.83 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bcd), bce)) -> new_ltEs12(yvy79000, yvy80000, bcd, bce) 41.28/18.83 new_not(True) -> False 41.28/18.83 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.83 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.83 new_compare210(Left(yvy7900), Right(yvy8000), False, bdc, de) -> LT 41.28/18.83 new_lt18(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 41.28/18.83 new_compare14(yvy79000, yvy80000, ty_Ordering) -> new_compare25(yvy79000, yvy80000) 41.28/18.83 new_compare24(yvy79000, yvy80000, False) -> new_compare11(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000)) 41.28/18.83 new_primCompAux00(yvy260, LT) -> LT 41.28/18.83 new_primCmpNat0(Zero, Zero) -> EQ 41.28/18.83 new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs6(yvy4000, yvy3000, chf, chg, chh) 41.28/18.83 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Integer, dh) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.83 new_esEs28(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 41.28/18.83 new_compare11(yvy79000, yvy80000, False) -> GT 41.28/18.83 new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 41.28/18.83 new_esEs21(yvy4000, yvy3000, app(ty_Ratio, daa)) -> new_esEs17(yvy4000, yvy3000, daa) 41.28/18.83 new_esEs20(yvy4002, yvy3002, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs6(yvy4002, yvy3002, cee, cef, ceg) 41.28/18.83 new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 41.28/18.83 new_esEs5(Right(yvy4000), Right(yvy3000), bha, app(ty_[], bhd)) -> new_esEs15(yvy4000, yvy3000, bhd) 41.28/18.83 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Char, dh) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.83 new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 41.28/18.83 new_esEs19(yvy4001, yvy3001, app(app(ty_@2, ccf), ccg)) -> new_esEs4(yvy4001, yvy3001, ccf, ccg) 41.28/18.83 new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.83 new_lt18(yvy79000, yvy80000, app(app(ty_Either, gg), gh)) -> new_lt17(yvy79000, yvy80000, gg, gh) 41.28/18.83 new_primEqNat0(Succ(yvy40000), Zero) -> False 41.28/18.83 new_primEqNat0(Zero, Succ(yvy30000)) -> False 41.28/18.83 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_[], bga), bff) -> new_esEs15(yvy4000, yvy3000, bga) 41.28/18.83 new_esEs14(@0, @0) -> True 41.28/18.83 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.83 new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 41.28/18.83 new_compare10(yvy79000, yvy80000, True, h, ba) -> LT 41.28/18.83 new_ltEs18(yvy7900, yvy8000, app(ty_[], bca)) -> new_ltEs11(yvy7900, yvy8000, bca) 41.28/18.83 new_esEs5(Right(yvy4000), Right(yvy3000), bha, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.83 new_primCompAux00(yvy260, GT) -> GT 41.28/18.83 new_compare28(yvy79000, yvy80000, True, ca) -> EQ 41.28/18.83 new_esEs25(yvy79001, yvy80001, ty_Double) -> new_esEs13(yvy79001, yvy80001) 41.28/18.83 new_ltEs21(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) 41.28/18.83 new_primCmpNat2(Zero, yvy7900) -> LT 41.28/18.83 new_esEs20(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) 41.28/18.83 new_esEs25(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) 41.28/18.83 new_ltEs12(Right(yvy79000), Right(yvy80000), eh, ty_@0) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.83 new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT 41.28/18.83 new_ltEs20(yvy79002, yvy80002, app(app(ty_@2, bah), bba)) -> new_ltEs4(yvy79002, yvy80002, bah, bba) 41.28/18.83 new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 41.28/18.83 new_esEs20(yvy4002, yvy3002, app(app(ty_@2, cdh), cea)) -> new_esEs4(yvy4002, yvy3002, cdh, cea) 41.28/18.83 new_ltEs18(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 41.28/18.83 new_ltEs21(yvy79001, yvy80001, ty_Int) -> new_ltEs7(yvy79001, yvy80001) 41.28/18.83 new_compare3(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bca) -> new_primCompAux0(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, bca), bca) 41.28/18.83 new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 41.28/18.83 new_ltEs5(LT, GT) -> True 41.28/18.83 new_ltEs18(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 41.28/18.83 new_primPlusNat1(Succ(yvy20100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20100, yvy3000000))) 41.28/18.83 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.83 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs9(yvy79000, yvy80000, bcf, bcg, bch) 41.28/18.83 new_esEs5(Right(yvy4000), Right(yvy3000), bha, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.83 new_primCmpNat0(Zero, Succ(yvy80000)) -> LT 41.28/18.83 new_ltEs20(yvy79002, yvy80002, ty_Bool) -> new_ltEs8(yvy79002, yvy80002) 41.28/18.83 new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, cdc), cdd), cde)) -> new_esEs6(yvy4001, yvy3001, cdc, cdd, cde) 41.28/18.83 new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 41.28/18.83 new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, bdd), bde)) -> new_ltEs4(yvy7900, yvy8000, bdd, bde) 41.28/18.83 new_esEs5(Right(yvy4000), Right(yvy3000), bha, app(ty_Maybe, cac)) -> new_esEs7(yvy4000, yvy3000, cac) 41.28/18.83 new_compare110(yvy79000, yvy80000, False, be, bf, bg) -> GT 41.28/18.83 new_primCmpNat0(Succ(yvy79000), Zero) -> GT 41.28/18.83 new_compare3([], :(yvy80000, yvy80001), bca) -> LT 41.28/18.83 new_pePe(False, yvy255) -> yvy255 41.28/18.83 new_ltEs17(Nothing, Nothing, cgf) -> True 41.28/18.83 new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 41.28/18.83 new_compare27(yvy79000, yvy80000, False, be, bf, bg) -> new_compare110(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, be, bf, bg), be, bf, bg) 41.28/18.83 new_esEs7(Nothing, Just(yvy3000), cfb) -> False 41.28/18.83 new_esEs7(Just(yvy4000), Nothing, cfb) -> False 41.28/18.83 new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 41.28/18.83 new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 41.28/18.83 new_ltEs12(Right(yvy79000), Right(yvy80000), eh, ty_Float) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.83 new_ltEs17(Nothing, Just(yvy80000), cgf) -> True 41.28/18.83 new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 41.28/18.83 new_ltEs17(Just(yvy79000), Nothing, cgf) -> False 41.28/18.83 new_esEs12(False, False) -> True 41.28/18.83 new_ltEs20(yvy79002, yvy80002, app(ty_Maybe, bbh)) -> new_ltEs17(yvy79002, yvy80002, bbh) 41.28/18.83 new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 41.28/18.83 new_compare114(yvy227, yvy228, True, dac, dad) -> LT 41.28/18.83 new_compare112(yvy234, yvy235, True, cag, cah) -> LT 41.28/18.83 new_primCmpNat1(yvy7900, Zero) -> GT 41.28/18.83 new_compare14(yvy79000, yvy80000, ty_Char) -> new_compare8(yvy79000, yvy80000) 41.28/18.83 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cff), cfg)) -> new_esEs5(yvy4000, yvy3000, cff, cfg) 41.28/18.83 new_lt18(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 41.28/18.83 new_lt15(yvy79000, yvy80000) -> new_esEs8(new_compare25(yvy79000, yvy80000), LT) 41.28/18.83 new_esEs25(yvy79001, yvy80001, ty_Integer) -> new_esEs10(yvy79001, yvy80001) 41.28/18.83 new_ltEs12(Right(yvy79000), Right(yvy80000), eh, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs9(yvy79000, yvy80000, ff, fg, fh) 41.28/18.83 new_compare23(yvy79000, yvy80000, False, h, ba) -> new_compare10(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000, h, ba), h, ba) 41.28/18.83 new_esEs25(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) 41.28/18.83 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_[], ef), dh) -> new_ltEs11(yvy79000, yvy80000, ef) 41.28/18.83 new_esEs25(yvy79001, yvy80001, app(ty_[], baf)) -> new_esEs15(yvy79001, yvy80001, baf) 41.28/18.83 new_compare113(yvy79000, yvy80000, True, ca) -> LT 41.28/18.83 new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 41.28/18.83 new_ltEs7(yvy7900, yvy8000) -> new_fsEs(new_compare7(yvy7900, yvy8000)) 41.28/18.83 new_lt20(yvy79000, yvy80000, app(ty_[], bh)) -> new_lt11(yvy79000, yvy80000, bh) 41.28/18.83 new_compare23(yvy79000, yvy80000, True, h, ba) -> EQ 41.28/18.83 new_esEs8(LT, EQ) -> False 41.28/18.83 new_esEs8(EQ, LT) -> False 41.28/18.83 new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 41.28/18.83 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bfg), bfh), bff) -> new_esEs4(yvy4000, yvy3000, bfg, bfh) 41.28/18.83 new_esEs21(yvy4000, yvy3000, app(app(ty_@2, cha), chb)) -> new_esEs4(yvy4000, yvy3000, cha, chb) 41.28/18.83 new_ltEs21(yvy79001, yvy80001, app(app(app(ty_@3, cg), da), db)) -> new_ltEs9(yvy79001, yvy80001, cg, da, db) 41.28/18.83 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 41.28/18.83 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 41.28/18.83 new_ltEs12(Right(yvy79000), Right(yvy80000), eh, app(app(ty_@2, fa), fb)) -> new_ltEs4(yvy79000, yvy80000, fa, fb) 41.28/18.83 new_esEs7(Nothing, Nothing, cfb) -> True 41.28/18.83 new_esEs13(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 41.28/18.83 new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 41.28/18.83 new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.83 new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt9(yvy79001, yvy80001) 41.28/18.83 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, dce)) -> new_esEs17(yvy4000, yvy3000, dce) 41.28/18.83 new_ltEs12(Right(yvy79000), Right(yvy80000), eh, ty_Int) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.83 new_esEs25(yvy79001, yvy80001, app(app(ty_@2, hg), hh)) -> new_esEs4(yvy79001, yvy80001, hg, hh) 41.28/18.83 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_Either, ea), eb), dh) -> new_ltEs12(yvy79000, yvy80000, ea, eb) 41.28/18.83 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare7(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) 41.28/18.83 new_esEs5(Right(yvy4000), Right(yvy3000), bha, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.83 new_ltEs18(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 41.28/18.83 new_ltEs18(yvy7900, yvy8000, app(app(ty_Either, eh), dh)) -> new_ltEs12(yvy7900, yvy8000, eh, dh) 41.28/18.83 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.83 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.83 new_esEs24(yvy79000, yvy80000, app(app(ty_Either, gg), gh)) -> new_esEs5(yvy79000, yvy80000, gg, gh) 41.28/18.83 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.83 new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, bed)) -> new_ltEs17(yvy7900, yvy8000, bed) 41.28/18.83 new_esEs25(yvy79001, yvy80001, ty_Ordering) -> new_esEs8(yvy79001, yvy80001) 41.28/18.83 new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT 41.28/18.83 new_esEs20(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) 41.28/18.83 new_compare114(yvy227, yvy228, False, dac, dad) -> GT 41.28/18.83 new_ltEs20(yvy79002, yvy80002, ty_@0) -> new_ltEs16(yvy79002, yvy80002) 41.28/18.83 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.83 new_esEs25(yvy79001, yvy80001, app(ty_Maybe, bag)) -> new_esEs7(yvy79001, yvy80001, bag) 41.28/18.83 new_ltEs8(True, False) -> False 41.28/18.83 new_esEs15([], [], cgh) -> True 41.28/18.83 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Bool, dh) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.83 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.83 new_esEs24(yvy79000, yvy80000, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs6(yvy79000, yvy80000, ha, hb, hc) 41.28/18.83 new_lt4(yvy240, yvy239) -> new_esEs8(new_compare7(yvy240, yvy239), LT) 41.28/18.83 new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt10(yvy79001, yvy80001) 41.28/18.83 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 41.28/18.83 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 41.28/18.83 new_ltEs8(False, False) -> True 41.28/18.83 new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) 41.28/18.83 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs6(yvy4000, yvy3000, cfh, cga, cgb) 41.28/18.83 new_compare14(yvy79000, yvy80000, app(app(ty_@2, bee), bef)) -> new_compare16(yvy79000, yvy80000, bee, bef) 41.28/18.83 new_lt18(yvy79000, yvy80000, app(ty_Ratio, dah)) -> new_lt14(yvy79000, yvy80000, dah) 41.28/18.83 new_ltEs5(EQ, EQ) -> True 41.28/18.83 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bgb), bgc), bff) -> new_esEs5(yvy4000, yvy3000, bgb, bgc) 41.28/18.83 new_ltEs18(yvy7900, yvy8000, app(app(app(ty_@3, hf), ge), gf)) -> new_ltEs9(yvy7900, yvy8000, hf, ge, gf) 41.28/18.83 new_compare27(yvy79000, yvy80000, True, be, bf, bg) -> EQ 41.28/18.83 new_lt19(yvy79001, yvy80001, app(ty_[], baf)) -> new_lt11(yvy79001, yvy80001, baf) 41.28/18.83 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Bool, bff) -> new_esEs12(yvy4000, yvy3000) 41.28/18.83 new_ltEs18(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 41.28/18.83 new_compare15(yvy79000, yvy80000) -> new_compare29(yvy79000, yvy80000, new_esEs12(yvy79000, yvy80000)) 41.28/18.83 new_esEs21(yvy4000, yvy3000, app(app(ty_Either, chd), che)) -> new_esEs5(yvy4000, yvy3000, chd, che) 41.28/18.83 new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.83 new_compare7(yvy79, yvy80) -> new_primCmpInt(yvy79, yvy80) 41.28/18.83 new_esEs8(LT, LT) -> True 41.28/18.83 new_compare111(yvy79000, yvy80000, True) -> LT 41.28/18.83 new_esEs28(yvy79000, yvy80000, app(ty_[], bh)) -> new_esEs15(yvy79000, yvy80000, bh) 41.28/18.83 new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 41.28/18.83 new_lt18(yvy79000, yvy80000, app(ty_[], hd)) -> new_lt11(yvy79000, yvy80000, hd) 41.28/18.83 new_lt6(yvy79000, yvy80000, ca) -> new_esEs8(new_compare12(yvy79000, yvy80000, ca), LT) 41.28/18.83 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.83 new_esEs24(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 41.28/18.83 new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs9(yvy7900, yvy8000, bdh, bea, beb) 41.28/18.83 new_primPlusNat1(Succ(yvy20100), Zero) -> Succ(yvy20100) 41.28/18.83 new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 41.28/18.83 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cfc), cfd)) -> new_esEs4(yvy4000, yvy3000, cfc, cfd) 41.28/18.83 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Maybe, bdb)) -> new_ltEs17(yvy79000, yvy80000, bdb) 41.28/18.83 new_compare14(yvy79000, yvy80000, app(app(ty_Either, beg), beh)) -> new_compare19(yvy79000, yvy80000, beg, beh) 41.28/18.83 new_ltEs21(yvy79001, yvy80001, ty_Double) -> new_ltEs14(yvy79001, yvy80001) 41.28/18.83 new_compare14(yvy79000, yvy80000, ty_Integer) -> new_compare26(yvy79000, yvy80000) 41.28/18.83 new_esEs24(yvy79000, yvy80000, app(ty_Maybe, he)) -> new_esEs7(yvy79000, yvy80000, he) 41.28/18.83 new_esEs25(yvy79001, yvy80001, ty_Bool) -> new_esEs12(yvy79001, yvy80001) 41.28/18.83 new_esEs24(yvy79000, yvy80000, app(ty_Ratio, dah)) -> new_esEs17(yvy79000, yvy80000, dah) 41.28/18.83 new_esEs24(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 41.28/18.83 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.83 new_ltEs5(LT, LT) -> True 41.28/18.83 new_ltEs20(yvy79002, yvy80002, ty_Double) -> new_ltEs14(yvy79002, yvy80002) 41.28/18.83 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.83 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Integer, bff) -> new_esEs10(yvy4000, yvy3000) 41.28/18.83 new_ltEs5(LT, EQ) -> True 41.28/18.83 new_compare14(yvy79000, yvy80000, ty_Double) -> new_compare18(yvy79000, yvy80000) 41.28/18.83 new_compare14(yvy79000, yvy80000, ty_@0) -> new_compare9(yvy79000, yvy80000) 41.28/18.83 new_ltEs21(yvy79001, yvy80001, app(ty_Maybe, dd)) -> new_ltEs17(yvy79001, yvy80001, dd) 41.28/18.83 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.83 new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.83 new_ltEs8(False, True) -> True 41.28/18.83 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cgc)) -> new_esEs17(yvy4000, yvy3000, cgc) 41.28/18.83 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.83 new_compare14(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) 41.28/18.83 new_esEs27(yvy4001, yvy3001, app(ty_[], dda)) -> new_esEs15(yvy4001, yvy3001, dda) 41.28/18.83 new_ltEs6(yvy7900, yvy8000) -> new_fsEs(new_compare8(yvy7900, yvy8000)) 41.28/18.83 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.83 new_ltEs12(Right(yvy79000), Right(yvy80000), eh, app(app(ty_Either, fc), fd)) -> new_ltEs12(yvy79000, yvy80000, fc, fd) 41.28/18.83 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.83 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.83 new_ltEs20(yvy79002, yvy80002, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs9(yvy79002, yvy80002, bbd, bbe, bbf) 41.28/18.83 new_esEs19(yvy4001, yvy3001, app(app(ty_Either, cda), cdb)) -> new_esEs5(yvy4001, yvy3001, cda, cdb) 41.28/18.83 new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt12(yvy79001, yvy80001) 41.28/18.83 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Double, dh) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.83 new_esEs27(yvy4001, yvy3001, app(ty_Ratio, ddg)) -> new_esEs17(yvy4001, yvy3001, ddg) 41.28/18.83 new_esEs5(Right(yvy4000), Right(yvy3000), bha, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs6(yvy4000, yvy3000, bhg, bhh, caa) 41.28/18.83 new_esEs28(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 41.28/18.83 new_ltEs12(Right(yvy79000), Left(yvy80000), eh, dh) -> False 41.28/18.83 new_esEs24(yvy79000, yvy80000, app(ty_[], hd)) -> new_esEs15(yvy79000, yvy80000, hd) 41.28/18.83 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Ratio, bgg), bff) -> new_esEs17(yvy4000, yvy3000, bgg) 41.28/18.83 new_esEs5(Right(yvy4000), Right(yvy3000), bha, app(ty_Ratio, cab)) -> new_esEs17(yvy4000, yvy3000, cab) 41.28/18.83 new_esEs17(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), dag) -> new_asAs(new_esEs22(yvy4000, yvy3000, dag), new_esEs23(yvy4001, yvy3001, dag)) 41.28/18.83 new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 41.28/18.83 new_compare210(Left(yvy7900), Left(yvy8000), False, bdc, de) -> new_compare114(yvy7900, yvy8000, new_ltEs18(yvy7900, yvy8000, bdc), bdc, de) 41.28/18.83 new_sr0(Integer(yvy800000), Integer(yvy790010)) -> Integer(new_primMulInt(yvy800000, yvy790010)) 41.28/18.83 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, ec), ed), ee), dh) -> new_ltEs9(yvy79000, yvy80000, ec, ed, ee) 41.28/18.83 new_esEs28(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 41.28/18.83 new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs6(yvy4001, yvy3001, ddd, dde, ddf) 41.28/18.83 new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.83 new_esEs28(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 41.28/18.83 new_ltEs21(yvy79001, yvy80001, app(ty_Ratio, dea)) -> new_ltEs13(yvy79001, yvy80001, dea) 41.28/18.83 new_lt9(yvy79000, yvy80000) -> new_esEs8(new_compare8(yvy79000, yvy80000), LT) 41.28/18.83 new_ltEs21(yvy79001, yvy80001, ty_@0) -> new_ltEs16(yvy79001, yvy80001) 41.28/18.83 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.83 new_esEs20(yvy4002, yvy3002, ty_Int) -> new_esEs9(yvy4002, yvy3002) 41.28/18.83 new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.83 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.83 new_esEs25(yvy79001, yvy80001, ty_Int) -> new_esEs9(yvy79001, yvy80001) 41.28/18.83 new_ltEs21(yvy79001, yvy80001, app(app(ty_Either, ce), cf)) -> new_ltEs12(yvy79001, yvy80001, ce, cf) 41.28/18.83 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.83 new_lt5(yvy79000, yvy80000) -> new_esEs8(new_compare9(yvy79000, yvy80000), LT) 41.28/18.83 new_asAs(True, yvy222) -> yvy222 41.28/18.83 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 41.28/18.83 new_compare10(yvy79000, yvy80000, False, h, ba) -> GT 41.28/18.83 new_ltEs5(GT, LT) -> False 41.28/18.83 new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, ge, gf) -> new_pePe(new_lt18(yvy79000, yvy80000, hf), new_asAs(new_esEs24(yvy79000, yvy80000, hf), new_pePe(new_lt19(yvy79001, yvy80001, ge), new_asAs(new_esEs25(yvy79001, yvy80001, ge), new_ltEs20(yvy79002, yvy80002, gf))))) 41.28/18.83 new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.83 new_esEs24(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 41.28/18.83 new_compare14(yvy79000, yvy80000, ty_Int) -> new_compare7(yvy79000, yvy80000) 41.28/18.83 new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.83 new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, be), bf), bg)) -> new_lt7(yvy79000, yvy80000, be, bf, bg) 41.28/18.83 new_esEs20(yvy4002, yvy3002, app(ty_[], ceb)) -> new_esEs15(yvy4002, yvy3002, ceb) 41.28/18.83 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.83 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.83 new_lt10(yvy79000, yvy80000) -> new_esEs8(new_compare18(yvy79000, yvy80000), LT) 41.28/18.83 new_esEs24(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 41.28/18.83 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.83 new_ltEs8(True, True) -> True 41.28/18.83 new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat1(yvy7900, yvy800) 41.28/18.83 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_@2, df), dg), dh) -> new_ltEs4(yvy79000, yvy80000, df, dg) 41.28/18.83 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare26(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) 41.28/18.83 new_compare8(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.83 new_esEs5(Right(yvy4000), Right(yvy3000), bha, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.83 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Ordering, dh) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.83 new_primCompAux00(yvy260, EQ) -> yvy260 41.28/18.83 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 41.28/18.83 new_esEs12(False, True) -> False 41.28/18.83 new_esEs12(True, False) -> False 41.28/18.83 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.83 new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt15(yvy79001, yvy80001) 41.28/18.83 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Float, bff) -> new_esEs16(yvy4000, yvy3000) 41.28/18.83 new_primMulNat0(Zero, Zero) -> Zero 41.28/18.83 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Double, bff) -> new_esEs13(yvy4000, yvy3000) 41.28/18.83 new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, bac), bad), bae)) -> new_lt7(yvy79001, yvy80001, bac, bad, bae) 41.28/18.83 new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) 41.28/18.83 new_esEs12(True, True) -> True 41.28/18.83 new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.83 new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.83 new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 41.28/18.83 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Int, bff) -> new_esEs9(yvy4000, yvy3000) 41.28/18.83 new_compare111(yvy79000, yvy80000, False) -> GT 41.28/18.83 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_@0, dh) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.83 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.83 new_compare9(@0, @0) -> EQ 41.28/18.83 new_esEs15(:(yvy4000, yvy4001), [], cgh) -> False 41.28/18.83 new_esEs15([], :(yvy3000, yvy3001), cgh) -> False 41.28/18.83 new_esEs20(yvy4002, yvy3002, app(app(ty_Either, cec), ced)) -> new_esEs5(yvy4002, yvy3002, cec, ced) 41.28/18.83 new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, daf)) -> new_ltEs13(yvy7900, yvy8000, daf) 41.28/18.83 new_esEs5(Right(yvy4000), Right(yvy3000), bha, app(app(ty_Either, bhe), bhf)) -> new_esEs5(yvy4000, yvy3000, bhe, bhf) 41.28/18.83 new_esEs24(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 41.28/18.83 new_ltEs5(EQ, LT) -> False 41.28/18.83 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, bdf), bdg)) -> new_ltEs12(yvy7900, yvy8000, bdf, bdg) 41.28/18.83 new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 41.28/18.83 new_ltEs12(Right(yvy79000), Right(yvy80000), eh, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.83 new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.83 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.83 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], cfe)) -> new_esEs15(yvy4000, yvy3000, cfe) 41.28/18.83 new_ltEs12(Right(yvy79000), Right(yvy80000), eh, app(ty_Maybe, gb)) -> new_ltEs17(yvy79000, yvy80000, gb) 41.28/18.83 new_primCompAux0(yvy79000, yvy80000, yvy256, bca) -> new_primCompAux00(yvy256, new_compare14(yvy79000, yvy80000, bca)) 41.28/18.83 new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.83 new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.83 new_lt17(yvy79000, yvy80000, bc, bd) -> new_esEs8(new_compare19(yvy79000, yvy80000, bc, bd), LT) 41.28/18.83 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 41.28/18.83 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 41.28/18.83 new_esEs24(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 41.28/18.83 new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt8(yvy79001, yvy80001) 41.28/18.83 new_ltEs20(yvy79002, yvy80002, app(app(ty_Either, bbb), bbc)) -> new_ltEs12(yvy79002, yvy80002, bbb, bbc) 41.28/18.83 new_ltEs12(Right(yvy79000), Right(yvy80000), eh, ty_Char) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.83 new_lt19(yvy79001, yvy80001, app(ty_Ratio, dba)) -> new_lt14(yvy79001, yvy80001, dba) 41.28/18.83 new_ltEs20(yvy79002, yvy80002, app(ty_Ratio, dbb)) -> new_ltEs13(yvy79002, yvy80002, dbb) 41.28/18.83 new_esEs20(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 41.28/18.83 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.83 new_esEs20(yvy4002, yvy3002, ty_Double) -> new_esEs13(yvy4002, yvy3002) 41.28/18.83 new_ltEs18(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 41.28/18.83 new_esEs21(yvy4000, yvy3000, app(ty_Maybe, dab)) -> new_esEs7(yvy4000, yvy3000, dab) 41.28/18.83 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, dbe), dbf)) -> new_esEs4(yvy4000, yvy3000, dbe, dbf) 41.28/18.83 new_compare14(yvy79000, yvy80000, app(ty_Ratio, cad)) -> new_compare17(yvy79000, yvy80000, cad) 41.28/18.83 new_compare24(yvy79000, yvy80000, True) -> EQ 41.28/18.83 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.83 new_esEs18(yvy4000, yvy3000, app(ty_[], cbf)) -> new_esEs15(yvy4000, yvy3000, cbf) 41.28/18.83 new_ltEs18(yvy7900, yvy8000, app(ty_Maybe, cgf)) -> new_ltEs17(yvy7900, yvy8000, cgf) 41.28/18.83 new_esEs25(yvy79001, yvy80001, app(app(ty_Either, baa), bab)) -> new_esEs5(yvy79001, yvy80001, baa, bab) 41.28/18.83 new_lt18(yvy79000, yvy80000, app(app(app(ty_@3, ha), hb), hc)) -> new_lt7(yvy79000, yvy80000, ha, hb, hc) 41.28/18.83 new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 41.28/18.83 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 41.28/18.83 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 41.28/18.83 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.83 new_lt20(yvy79000, yvy80000, app(ty_Ratio, cge)) -> new_lt14(yvy79000, yvy80000, cge) 41.28/18.83 new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.83 new_ltEs12(Right(yvy79000), Right(yvy80000), eh, app(ty_[], ga)) -> new_ltEs11(yvy79000, yvy80000, ga) 41.28/18.83 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, dcf)) -> new_esEs7(yvy4000, yvy3000, dcf) 41.28/18.83 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 41.28/18.83 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Maybe, eg), dh) -> new_ltEs17(yvy79000, yvy80000, eg) 41.28/18.83 new_lt18(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 41.28/18.83 new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 41.28/18.83 new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) 41.28/18.83 new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt5(yvy79001, yvy80001) 41.28/18.83 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, dbh), dca)) -> new_esEs5(yvy4000, yvy3000, dbh, dca) 41.28/18.83 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat1(yvy8000, Zero) 41.28/18.83 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bgd), bge), bgf), bff) -> new_esEs6(yvy4000, yvy3000, bgd, bge, bgf) 41.28/18.83 new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) 41.28/18.83 new_lt18(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 41.28/18.83 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.83 new_compare110(yvy79000, yvy80000, True, be, bf, bg) -> LT 41.28/18.83 new_compare14(yvy79000, yvy80000, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_compare13(yvy79000, yvy80000, bfa, bfb, bfc) 41.28/18.83 new_esEs15(:(yvy4000, yvy4001), :(yvy3000, yvy3001), cgh) -> new_asAs(new_esEs21(yvy4000, yvy3000, cgh), new_esEs15(yvy4001, yvy3001, cgh)) 41.28/18.83 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs6(yvy4000, yvy3000, dcb, dcc, dcd) 41.28/18.83 new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 41.28/18.83 new_esEs27(yvy4001, yvy3001, app(ty_Maybe, ddh)) -> new_esEs7(yvy4001, yvy3001, ddh) 41.28/18.83 new_compare12(yvy79000, yvy80000, ca) -> new_compare28(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, ca), ca) 41.28/18.83 new_compare112(yvy234, yvy235, False, cag, cah) -> GT 41.28/18.83 new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, cca), ccb), ccc)) -> new_esEs6(yvy4000, yvy3000, cca, ccb, ccc) 41.28/18.83 new_ltEs21(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) 41.28/18.83 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bgh), bff) -> new_esEs7(yvy4000, yvy3000, bgh) 41.28/18.83 new_ltEs5(EQ, GT) -> True 41.28/18.83 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Float, dh) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.83 new_ltEs20(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) 41.28/18.83 new_not(False) -> True 41.28/18.83 new_esEs28(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 41.28/18.83 new_esEs18(yvy4000, yvy3000, app(app(ty_Either, cbg), cbh)) -> new_esEs5(yvy4000, yvy3000, cbg, cbh) 41.28/18.83 new_ltEs12(Right(yvy79000), Right(yvy80000), eh, ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.83 new_compare25(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs8(yvy79000, yvy80000)) 41.28/18.83 new_ltEs13(yvy7900, yvy8000, dae) -> new_fsEs(new_compare17(yvy7900, yvy8000, dae)) 41.28/18.83 new_esEs25(yvy79001, yvy80001, ty_@0) -> new_esEs14(yvy79001, yvy80001) 41.28/18.83 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), dbc, dbd) -> new_asAs(new_esEs26(yvy4000, yvy3000, dbc), new_esEs27(yvy4001, yvy3001, dbd)) 41.28/18.83 new_esEs20(yvy4002, yvy3002, app(ty_Maybe, cfa)) -> new_esEs7(yvy4002, yvy3002, cfa) 41.28/18.83 new_ltEs5(GT, GT) -> True 41.28/18.83 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bcb), bcc)) -> new_ltEs4(yvy79000, yvy80000, bcb, bcc) 41.28/18.83 new_esEs8(LT, GT) -> False 41.28/18.83 new_esEs8(GT, LT) -> False 41.28/18.83 new_compare29(yvy79000, yvy80000, True) -> EQ 41.28/18.83 new_esEs5(Left(yvy4000), Right(yvy3000), bha, bff) -> False 41.28/18.83 new_esEs5(Right(yvy4000), Left(yvy3000), bha, bff) -> False 41.28/18.83 new_esEs20(yvy4002, yvy3002, ty_Bool) -> new_esEs12(yvy4002, yvy3002) 41.28/18.83 new_lt19(yvy79001, yvy80001, app(ty_Maybe, bag)) -> new_lt6(yvy79001, yvy80001, bag) 41.28/18.83 new_lt13(yvy79000, yvy80000, h, ba) -> new_esEs8(new_compare16(yvy79000, yvy80000, h, ba), LT) 41.28/18.83 new_ltEs21(yvy79001, yvy80001, ty_Ordering) -> new_ltEs5(yvy79001, yvy80001) 41.28/18.83 new_esEs19(yvy4001, yvy3001, app(ty_[], cch)) -> new_esEs15(yvy4001, yvy3001, cch) 41.28/18.83 new_ltEs18(yvy7900, yvy8000, app(ty_Ratio, dae)) -> new_ltEs13(yvy7900, yvy8000, dae) 41.28/18.83 new_compare14(yvy79000, yvy80000, app(ty_Maybe, bfe)) -> new_compare12(yvy79000, yvy80000, bfe) 41.28/18.83 new_lt8(yvy79000, yvy80000) -> new_esEs8(new_compare26(yvy79000, yvy80000), LT) 41.28/18.83 new_compare113(yvy79000, yvy80000, False, ca) -> GT 41.28/18.83 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.83 new_primPlusNat0(Succ(yvy2010), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2010, yvy300000))) 41.28/18.83 new_lt14(yvy79000, yvy80000, cge) -> new_esEs8(new_compare17(yvy79000, yvy80000, cge), LT) 41.28/18.83 new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 41.28/18.83 new_esEs19(yvy4001, yvy3001, app(ty_Maybe, cdg)) -> new_esEs7(yvy4001, yvy3001, cdg) 41.28/18.83 new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 41.28/18.83 new_ltEs20(yvy79002, yvy80002, ty_Char) -> new_ltEs6(yvy79002, yvy80002) 41.28/18.83 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 41.28/18.83 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 41.28/18.83 new_lt12(yvy79000, yvy80000) -> new_esEs8(new_compare6(yvy79000, yvy80000), LT) 41.28/18.83 new_lt16(yvy79000, yvy80000) -> new_esEs8(new_compare15(yvy79000, yvy80000), LT) 41.28/18.83 new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 41.28/18.83 new_primPlusNat1(Zero, Zero) -> Zero 41.28/18.83 new_esEs6(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cba, cbb, cbc) -> new_asAs(new_esEs18(yvy4000, yvy3000, cba), new_asAs(new_esEs19(yvy4001, yvy3001, cbb), new_esEs20(yvy4002, yvy3002, cbc))) 41.28/18.83 new_esEs20(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 41.28/18.83 new_ltEs18(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 41.28/18.83 new_ltEs20(yvy79002, yvy80002, ty_Int) -> new_ltEs7(yvy79002, yvy80002) 41.28/18.83 new_ltEs21(yvy79001, yvy80001, app(app(ty_@2, cc), cd)) -> new_ltEs4(yvy79001, yvy80001, cc, cd) 41.28/18.83 new_esEs27(yvy4001, yvy3001, app(app(ty_@2, dcg), dch)) -> new_esEs4(yvy4001, yvy3001, dcg, dch) 41.28/18.83 new_lt18(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 41.28/18.83 new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 41.28/18.83 new_esEs28(yvy79000, yvy80000, app(ty_Ratio, cge)) -> new_esEs17(yvy79000, yvy80000, cge) 41.28/18.83 new_compare11(yvy79000, yvy80000, True) -> LT 41.28/18.83 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.83 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.83 new_ltEs4(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), cb, bb) -> new_pePe(new_lt20(yvy79000, yvy80000, cb), new_asAs(new_esEs28(yvy79000, yvy80000, cb), new_ltEs21(yvy79001, yvy80001, bb))) 41.28/18.83 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 41.28/18.83 new_lt19(yvy79001, yvy80001, app(app(ty_@2, hg), hh)) -> new_lt13(yvy79001, yvy80001, hg, hh) 41.28/18.83 new_compare16(yvy79000, yvy80000, h, ba) -> new_compare23(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, h, ba), h, ba) 41.28/18.83 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 41.28/18.83 new_esEs28(yvy79000, yvy80000, app(app(ty_@2, h), ba)) -> new_esEs4(yvy79000, yvy80000, h, ba) 41.28/18.83 new_primCmpNat0(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.83 new_esEs20(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) 41.28/18.83 new_compare19(yvy79000, yvy80000, bc, bd) -> new_compare210(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.83 new_compare3(:(yvy79000, yvy79001), [], bca) -> GT 41.28/18.83 new_compare14(yvy79000, yvy80000, ty_Bool) -> new_compare15(yvy79000, yvy80000) 41.28/18.83 new_esEs28(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 41.28/18.83 new_esEs5(Left(yvy4000), Left(yvy3000), ty_@0, bff) -> new_esEs14(yvy4000, yvy3000) 41.28/18.83 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_[], bda)) -> new_ltEs11(yvy79000, yvy80000, bda) 41.28/18.83 new_compare26(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) 41.28/18.83 new_ltEs18(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 41.28/18.83 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 41.28/18.83 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 41.28/18.83 new_primCmpNat1(yvy7900, Succ(yvy8000)) -> new_primCmpNat0(yvy7900, yvy8000) 41.28/18.83 new_esEs18(yvy4000, yvy3000, app(ty_Maybe, cce)) -> new_esEs7(yvy4000, yvy3000, cce) 41.28/18.83 new_lt20(yvy79000, yvy80000, app(ty_Maybe, ca)) -> new_lt6(yvy79000, yvy80000, ca) 41.28/18.83 new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 41.28/18.83 new_primEqNat0(Zero, Zero) -> True 41.28/18.83 new_esEs28(yvy79000, yvy80000, app(app(ty_Either, bc), bd)) -> new_esEs5(yvy79000, yvy80000, bc, bd) 41.28/18.83 new_compare210(Right(yvy7900), Right(yvy8000), False, bdc, de) -> new_compare112(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, de), bdc, de) 41.28/18.83 new_esEs21(yvy4000, yvy3000, app(ty_[], chc)) -> new_esEs15(yvy4000, yvy3000, chc) 41.28/18.83 new_esEs5(Right(yvy4000), Right(yvy3000), bha, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.83 new_lt11(yvy79000, yvy80000, bh) -> new_esEs8(new_compare3(yvy79000, yvy80000, bh), LT) 41.28/18.83 new_esEs28(yvy79000, yvy80000, app(app(app(ty_@3, be), bf), bg)) -> new_esEs6(yvy79000, yvy80000, be, bf, bg) 41.28/18.83 new_compare29(yvy79000, yvy80000, False) -> new_compare111(yvy79000, yvy80000, new_ltEs8(yvy79000, yvy80000)) 41.28/18.83 new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 41.28/18.83 new_esEs5(Right(yvy4000), Right(yvy3000), bha, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.83 new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.83 new_asAs(False, yvy222) -> False 41.28/18.83 new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 41.28/18.83 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.83 new_lt7(yvy79000, yvy80000, be, bf, bg) -> new_esEs8(new_compare13(yvy79000, yvy80000, be, bf, bg), LT) 41.28/18.83 new_ltEs5(GT, EQ) -> False 41.28/18.83 new_ltEs20(yvy79002, yvy80002, ty_Ordering) -> new_ltEs5(yvy79002, yvy80002) 41.28/18.83 new_esEs18(yvy4000, yvy3000, app(ty_Ratio, ccd)) -> new_esEs17(yvy4000, yvy3000, ccd) 41.28/18.83 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.83 new_esEs5(Right(yvy4000), Right(yvy3000), bha, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.83 new_ltEs21(yvy79001, yvy80001, app(ty_[], dc)) -> new_ltEs11(yvy79001, yvy80001, dc) 41.28/18.83 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Int, dh) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.83 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.83 new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 41.28/18.83 new_lt18(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 41.28/18.83 new_lt18(yvy79000, yvy80000, app(app(ty_@2, gc), gd)) -> new_lt13(yvy79000, yvy80000, gc, gd) 41.28/18.83 new_esEs8(EQ, GT) -> False 41.28/18.83 new_esEs8(GT, EQ) -> False 41.28/18.83 new_compare210(Right(yvy7900), Left(yvy8000), False, bdc, de) -> GT 41.28/18.83 new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.83 new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat0(yvy8000, yvy7900) 41.28/18.83 new_ltEs16(yvy7900, yvy8000) -> new_fsEs(new_compare9(yvy7900, yvy8000)) 41.28/18.83 new_ltEs18(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 41.28/18.83 41.28/18.83 The set Q consists of the following terms: 41.28/18.83 41.28/18.83 new_ltEs18(x0, x1, ty_Bool) 41.28/18.83 new_ltEs21(x0, x1, ty_Ordering) 41.28/18.83 new_esEs28(x0, x1, ty_Integer) 41.28/18.83 new_esEs8(EQ, EQ) 41.28/18.83 new_esEs21(x0, x1, ty_Int) 41.28/18.83 new_ltEs20(x0, x1, ty_Char) 41.28/18.83 new_compare14(x0, x1, app(ty_[], x2)) 41.28/18.83 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 41.28/18.83 new_esEs26(x0, x1, ty_Float) 41.28/18.83 new_compare110(x0, x1, True, x2, x3, x4) 41.28/18.83 new_esEs5(Left(x0), Right(x1), x2, x3) 41.28/18.83 new_esEs5(Right(x0), Left(x1), x2, x3) 41.28/18.83 new_esEs25(x0, x1, app(ty_[], x2)) 41.28/18.83 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.83 new_primMulInt(Neg(x0), Neg(x1)) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), ty_Char) 41.28/18.83 new_ltEs18(x0, x1, ty_@0) 41.28/18.83 new_ltEs21(x0, x1, ty_Double) 41.28/18.83 new_lt18(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_compare210(x0, x1, True, x2, x3) 41.28/18.83 new_primPlusNat1(Zero, Zero) 41.28/18.83 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.83 new_ltEs15(x0, x1) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.83 new_esEs24(x0, x1, ty_Integer) 41.28/18.83 new_esEs25(x0, x1, ty_Float) 41.28/18.83 new_esEs18(x0, x1, ty_Integer) 41.28/18.83 new_compare14(x0, x1, ty_Ordering) 41.28/18.83 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 41.28/18.83 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.83 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 41.28/18.83 new_primCompAux00(x0, GT) 41.28/18.83 new_primEqInt(Pos(Zero), Pos(Zero)) 41.28/18.83 new_primMulInt(Pos(x0), Pos(x1)) 41.28/18.83 new_esEs21(x0, x1, ty_Double) 41.28/18.83 new_esEs15(:(x0, x1), :(x2, x3), x4) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.83 new_compare29(x0, x1, False) 41.28/18.83 new_esEs27(x0, x1, ty_Float) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), ty_Int) 41.28/18.83 new_primCmpNat0(Zero, Succ(x0)) 41.28/18.83 new_compare14(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), ty_@0) 41.28/18.83 new_esEs21(x0, x1, ty_Char) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.83 new_ltEs21(x0, x1, ty_Int) 41.28/18.83 new_primEqInt(Neg(Zero), Neg(Zero)) 41.28/18.83 new_compare3([], :(x0, x1), x2) 41.28/18.83 new_primCmpNat0(Succ(x0), Succ(x1)) 41.28/18.83 new_compare11(x0, x1, False) 41.28/18.83 new_ltEs7(x0, x1) 41.28/18.83 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_primPlusNat0(Zero, x0) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 41.28/18.83 new_compare28(x0, x1, False, x2) 41.28/18.83 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.83 new_esEs15([], [], x0) 41.28/18.83 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_esEs28(x0, x1, ty_Bool) 41.28/18.83 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_sr(x0, x1) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.83 new_esEs12(False, True) 41.28/18.83 new_esEs12(True, False) 41.28/18.83 new_ltEs20(x0, x1, ty_Double) 41.28/18.83 new_ltEs5(LT, GT) 41.28/18.83 new_ltEs5(GT, LT) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), ty_Bool) 41.28/18.83 new_primCmpNat2(Succ(x0), x1) 41.28/18.83 new_ltEs20(x0, x1, ty_@0) 41.28/18.83 new_lt12(x0, x1) 41.28/18.83 new_lt11(x0, x1, x2) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.83 new_ltEs8(False, False) 41.28/18.83 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_primCmpNat2(Zero, x0) 41.28/18.83 new_esEs18(x0, x1, ty_@0) 41.28/18.83 new_compare26(Integer(x0), Integer(x1)) 41.28/18.83 new_lt7(x0, x1, x2, x3, x4) 41.28/18.83 new_esEs24(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_esEs19(x0, x1, ty_Integer) 41.28/18.83 new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.83 new_ltEs21(x0, x1, ty_Char) 41.28/18.83 new_esEs18(x0, x1, ty_Bool) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), ty_Double) 41.28/18.83 new_compare27(x0, x1, True, x2, x3, x4) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.83 new_esEs7(Just(x0), Just(x1), ty_@0) 41.28/18.83 new_compare29(x0, x1, True) 41.28/18.83 new_ltEs20(x0, x1, ty_Bool) 41.28/18.83 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_compare112(x0, x1, False, x2, x3) 41.28/18.83 new_esEs7(Just(x0), Just(x1), ty_Bool) 41.28/18.83 new_esEs18(x0, x1, ty_Float) 41.28/18.83 new_lt10(x0, x1) 41.28/18.83 new_lt18(x0, x1, ty_Float) 41.28/18.83 new_esEs28(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.83 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_primEqInt(Pos(Zero), Neg(Zero)) 41.28/18.83 new_primEqInt(Neg(Zero), Pos(Zero)) 41.28/18.83 new_lt18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_esEs21(x0, x1, ty_Ordering) 41.28/18.83 new_ltEs20(x0, x1, ty_Int) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 41.28/18.83 new_ltEs18(x0, x1, ty_Integer) 41.28/18.83 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.83 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.83 new_esEs7(Just(x0), Just(x1), ty_Int) 41.28/18.83 new_compare113(x0, x1, False, x2) 41.28/18.83 new_compare28(x0, x1, True, x2) 41.28/18.83 new_lt20(x0, x1, ty_Double) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.83 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs25(x0, x1, ty_@0) 41.28/18.83 new_compare23(x0, x1, False, x2, x3) 41.28/18.83 new_esEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.83 new_esEs7(Just(x0), Just(x1), ty_Char) 41.28/18.83 new_compare210(Right(x0), Right(x1), False, x2, x3) 41.28/18.83 new_esEs28(x0, x1, ty_@0) 41.28/18.83 new_esEs7(Just(x0), Just(x1), ty_Double) 41.28/18.83 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs28(x0, x1, ty_Float) 41.28/18.83 new_primEqNat0(Succ(x0), Zero) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.83 new_compare14(x0, x1, ty_@0) 41.28/18.83 new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.83 new_primMulNat0(Succ(x0), Succ(x1)) 41.28/18.83 new_esEs20(x0, x1, ty_Float) 41.28/18.83 new_ltEs18(x0, x1, ty_Float) 41.28/18.83 new_esEs28(x0, x1, ty_Int) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.83 new_compare114(x0, x1, False, x2, x3) 41.28/18.83 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.83 new_ltEs21(x0, x1, ty_Bool) 41.28/18.83 new_esEs22(x0, x1, ty_Integer) 41.28/18.83 new_lt18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 41.28/18.83 new_ltEs19(x0, x1, ty_Ordering) 41.28/18.83 new_compare12(x0, x1, x2) 41.28/18.83 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.83 new_ltEs20(x0, x1, ty_Integer) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.83 new_esEs28(x0, x1, ty_Char) 41.28/18.83 new_primEqNat0(Succ(x0), Succ(x1)) 41.28/18.83 new_esEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.83 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.83 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_lt20(x0, x1, ty_Float) 41.28/18.83 new_compare24(x0, x1, True) 41.28/18.83 new_esEs7(Just(x0), Just(x1), ty_Integer) 41.28/18.83 new_ltEs17(Just(x0), Just(x1), ty_Integer) 41.28/18.83 new_ltEs18(x0, x1, ty_Int) 41.28/18.83 new_esEs21(x0, x1, ty_Bool) 41.28/18.83 new_primPlusNat0(Succ(x0), x1) 41.28/18.83 new_esEs7(Nothing, Nothing, x0) 41.28/18.83 new_esEs25(x0, x1, ty_Bool) 41.28/18.83 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 41.28/18.83 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.83 new_esEs20(x0, x1, ty_Int) 41.28/18.83 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.83 new_ltEs5(EQ, GT) 41.28/18.83 new_ltEs5(GT, EQ) 41.28/18.83 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.83 new_compare23(x0, x1, True, x2, x3) 41.28/18.83 new_compare112(x0, x1, True, x2, x3) 41.28/18.83 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.83 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.83 new_ltEs18(x0, x1, ty_Char) 41.28/18.83 new_compare14(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_esEs20(x0, x1, ty_Char) 41.28/18.84 new_primMulNat0(Succ(x0), Zero) 41.28/18.84 new_esEs8(GT, GT) 41.28/18.84 new_sr0(Integer(x0), Integer(x1)) 41.28/18.84 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.84 new_ltEs12(Left(x0), Right(x1), x2, x3) 41.28/18.84 new_ltEs12(Right(x0), Left(x1), x2, x3) 41.28/18.84 new_esEs8(LT, EQ) 41.28/18.84 new_esEs8(EQ, LT) 41.28/18.84 new_lt20(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_ltEs19(x0, x1, ty_Float) 41.28/18.84 new_primCmpInt(Neg(Zero), Neg(Zero)) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), ty_Ordering) 41.28/18.84 new_esEs27(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs7(Just(x0), Just(x1), ty_Ordering) 41.28/18.84 new_esEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_compare25(x0, x1) 41.28/18.84 new_esEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs8(LT, LT) 41.28/18.84 new_ltEs19(x0, x1, ty_Char) 41.28/18.84 new_primCmpInt(Pos(Zero), Neg(Zero)) 41.28/18.84 new_primCmpInt(Neg(Zero), Pos(Zero)) 41.28/18.84 new_esEs24(x0, x1, ty_Double) 41.28/18.84 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.84 new_ltEs20(x0, x1, ty_Ordering) 41.28/18.84 new_esEs24(x0, x1, ty_@0) 41.28/18.84 new_compare11(x0, x1, True) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.84 new_lt19(x0, x1, ty_Double) 41.28/18.84 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs26(x0, x1, app(ty_[], x2)) 41.28/18.84 new_esEs18(x0, x1, app(ty_[], x2)) 41.28/18.84 new_ltEs8(True, False) 41.28/18.84 new_ltEs8(False, True) 41.28/18.84 new_ltEs19(x0, x1, ty_Int) 41.28/18.84 new_esEs25(x0, x1, ty_Integer) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.84 new_lt8(x0, x1) 41.28/18.84 new_esEs24(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 41.28/18.84 new_ltEs11(x0, x1, x2) 41.28/18.84 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_esEs27(x0, x1, ty_@0) 41.28/18.84 new_esEs28(x0, x1, ty_Ordering) 41.28/18.84 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_compare3(:(x0, x1), [], x2) 41.28/18.84 new_pePe(True, x0) 41.28/18.84 new_esEs19(x0, x1, ty_Double) 41.28/18.84 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 41.28/18.84 new_esEs19(x0, x1, ty_@0) 41.28/18.84 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs21(x0, x1, ty_Float) 41.28/18.84 new_esEs25(x0, x1, ty_Ordering) 41.28/18.84 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 41.28/18.84 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 41.28/18.84 new_asAs(False, x0) 41.28/18.84 new_fsEs(x0) 41.28/18.84 new_compare16(x0, x1, x2, x3) 41.28/18.84 new_lt13(x0, x1, x2, x3) 41.28/18.84 new_primPlusNat1(Succ(x0), Succ(x1)) 41.28/18.84 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.84 new_esEs17(:%(x0, x1), :%(x2, x3), x4) 41.28/18.84 new_esEs28(x0, x1, app(ty_[], x2)) 41.28/18.84 new_lt19(x0, x1, ty_@0) 41.28/18.84 new_lt18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs24(x0, x1, app(ty_[], x2)) 41.28/18.84 new_ltEs19(x0, x1, ty_Bool) 41.28/18.84 new_compare10(x0, x1, True, x2, x3) 41.28/18.84 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs27(x0, x1, ty_Double) 41.28/18.84 new_compare14(x0, x1, ty_Double) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 41.28/18.84 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_lt18(x0, x1, ty_Int) 41.28/18.84 new_esEs20(x0, x1, ty_Bool) 41.28/18.84 new_esEs26(x0, x1, ty_Ordering) 41.28/18.84 new_compare3(:(x0, x1), :(x2, x3), x4) 41.28/18.84 new_esEs22(x0, x1, ty_Int) 41.28/18.84 new_ltEs19(x0, x1, ty_@0) 41.28/18.84 new_compare10(x0, x1, False, x2, x3) 41.28/18.84 new_compare24(x0, x1, False) 41.28/18.84 new_esEs27(x0, x1, ty_Int) 41.28/18.84 new_primCompAux00(x0, LT) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 41.28/18.84 new_esEs20(x0, x1, ty_@0) 41.28/18.84 new_compare14(x0, x1, ty_Float) 41.28/18.84 new_lt20(x0, x1, ty_Integer) 41.28/18.84 new_primCmpNat0(Succ(x0), Zero) 41.28/18.84 new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.84 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_primMulNat0(Zero, Zero) 41.28/18.84 new_ltEs17(Nothing, Nothing, x0) 41.28/18.84 new_lt4(x0, x1) 41.28/18.84 new_compare3([], [], x0) 41.28/18.84 new_esEs27(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_lt20(x0, x1, ty_Bool) 41.28/18.84 new_ltEs21(x0, x1, ty_Float) 41.28/18.84 new_esEs20(x0, x1, app(ty_[], x2)) 41.28/18.84 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 41.28/18.84 new_pePe(False, x0) 41.28/18.84 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_lt6(x0, x1, x2) 41.28/18.84 new_ltEs14(x0, x1) 41.28/18.84 new_esEs15(:(x0, x1), [], x2) 41.28/18.84 new_compare9(@0, @0) 41.28/18.84 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.84 new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_compare8(Char(x0), Char(x1)) 41.28/18.84 new_esEs21(x0, x1, app(ty_[], x2)) 41.28/18.84 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs27(x0, x1, app(ty_[], x2)) 41.28/18.84 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.84 new_esEs23(x0, x1, ty_Int) 41.28/18.84 new_esEs7(Nothing, Just(x0), x1) 41.28/18.84 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_ltEs21(x0, x1, app(ty_[], x2)) 41.28/18.84 new_esEs25(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_compare13(x0, x1, x2, x3, x4) 41.28/18.84 new_compare210(Left(x0), Left(x1), False, x2, x3) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.84 new_esEs25(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.84 new_lt19(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 41.28/18.84 new_ltEs19(x0, x1, ty_Integer) 41.28/18.84 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 41.28/18.84 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_lt19(x0, x1, ty_Ordering) 41.28/18.84 new_compare14(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.84 new_not(True) 41.28/18.84 new_ltEs20(x0, x1, ty_Float) 41.28/18.84 new_lt9(x0, x1) 41.28/18.84 new_esEs19(x0, x1, app(ty_[], x2)) 41.28/18.84 new_ltEs17(Just(x0), Nothing, x1) 41.28/18.84 new_ltEs13(x0, x1, x2) 41.28/18.84 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_primCmpNat1(x0, Zero) 41.28/18.84 new_esEs18(x0, x1, ty_Double) 41.28/18.84 new_esEs8(EQ, GT) 41.28/18.84 new_esEs8(GT, EQ) 41.28/18.84 new_esEs12(False, False) 41.28/18.84 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.84 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.84 new_compare14(x0, x1, ty_Integer) 41.28/18.84 new_esEs24(x0, x1, ty_Ordering) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 41.28/18.84 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 41.28/18.84 new_compare14(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 41.28/18.84 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 41.28/18.84 new_ltEs6(x0, x1) 41.28/18.84 new_esEs28(x0, x1, ty_Double) 41.28/18.84 new_esEs7(Just(x0), Just(x1), ty_Float) 41.28/18.84 new_lt14(x0, x1, x2) 41.28/18.84 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_primCompAux0(x0, x1, x2, x3) 41.28/18.84 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.84 new_esEs20(x0, x1, ty_Integer) 41.28/18.84 new_esEs27(x0, x1, ty_Ordering) 41.28/18.84 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.84 new_lt15(x0, x1) 41.28/18.84 new_lt18(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.84 new_lt19(x0, x1, ty_Integer) 41.28/18.84 new_esEs26(x0, x1, ty_Int) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 41.28/18.84 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_compare111(x0, x1, False) 41.28/18.84 new_lt18(x0, x1, ty_Double) 41.28/18.84 new_esEs25(x0, x1, ty_Double) 41.28/18.84 new_lt18(x0, x1, ty_Char) 41.28/18.84 new_lt20(x0, x1, ty_Char) 41.28/18.84 new_lt20(x0, x1, ty_@0) 41.28/18.84 new_esEs25(x0, x1, ty_Char) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 41.28/18.84 new_lt18(x0, x1, ty_@0) 41.28/18.84 new_esEs19(x0, x1, ty_Ordering) 41.28/18.84 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_lt18(x0, x1, app(ty_[], x2)) 41.28/18.84 new_esEs18(x0, x1, ty_Int) 41.28/18.84 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs26(x0, x1, ty_Double) 41.28/18.84 new_esEs26(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs26(x0, x1, ty_Char) 41.28/18.84 new_lt20(x0, x1, ty_Int) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.84 new_esEs11(Char(x0), Char(x1)) 41.28/18.84 new_ltEs5(LT, LT) 41.28/18.84 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_esEs25(x0, x1, ty_Int) 41.28/18.84 new_primCmpInt(Pos(Zero), Pos(Zero)) 41.28/18.84 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.84 new_esEs28(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.84 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 41.28/18.84 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_esEs18(x0, x1, ty_Char) 41.28/18.84 new_esEs21(x0, x1, ty_Integer) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.84 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_esEs14(@0, @0) 41.28/18.84 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_ltEs18(x0, x1, ty_Double) 41.28/18.84 new_esEs20(x0, x1, ty_Ordering) 41.28/18.84 new_ltEs18(x0, x1, ty_Ordering) 41.28/18.84 new_esEs24(x0, x1, ty_Char) 41.28/18.84 new_ltEs5(LT, EQ) 41.28/18.84 new_ltEs5(EQ, LT) 41.28/18.84 new_esEs20(x0, x1, ty_Double) 41.28/18.84 new_esEs27(x0, x1, ty_Integer) 41.28/18.84 new_ltEs5(GT, GT) 41.28/18.84 new_ltEs19(x0, x1, ty_Double) 41.28/18.84 new_esEs26(x0, x1, ty_Bool) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.84 new_compare15(x0, x1) 41.28/18.84 new_compare14(x0, x1, ty_Bool) 41.28/18.84 new_compare210(Left(x0), Right(x1), False, x2, x3) 41.28/18.84 new_esEs26(x0, x1, ty_@0) 41.28/18.84 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_compare210(Right(x0), Left(x1), False, x2, x3) 41.28/18.84 new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 41.28/18.84 new_lt19(x0, x1, app(ty_[], x2)) 41.28/18.84 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 41.28/18.84 new_lt18(x0, x1, ty_Integer) 41.28/18.84 new_esEs10(Integer(x0), Integer(x1)) 41.28/18.84 new_esEs8(LT, GT) 41.28/18.84 new_esEs8(GT, LT) 41.28/18.84 new_esEs9(x0, x1) 41.28/18.84 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_lt20(x0, x1, app(ty_[], x2)) 41.28/18.84 new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_ltEs21(x0, x1, ty_Integer) 41.28/18.84 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.84 new_lt20(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_lt18(x0, x1, ty_Bool) 41.28/18.84 new_compare17(:%(x0, x1), :%(x2, x3), ty_Int) 41.28/18.84 new_lt17(x0, x1, x2, x3) 41.28/18.84 new_esEs26(x0, x1, ty_Integer) 41.28/18.84 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 41.28/18.84 new_compare27(x0, x1, False, x2, x3, x4) 41.28/18.84 new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs23(x0, x1, ty_Integer) 41.28/18.84 new_lt19(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_compare113(x0, x1, True, x2) 41.28/18.84 new_ltEs21(x0, x1, ty_@0) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.84 new_asAs(True, x0) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 41.28/18.84 new_ltEs18(x0, x1, app(ty_[], x2)) 41.28/18.84 new_lt16(x0, x1) 41.28/18.84 new_esEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_primCompAux00(x0, EQ) 41.28/18.84 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.84 new_compare111(x0, x1, True) 41.28/18.84 new_compare110(x0, x1, False, x2, x3, x4) 41.28/18.84 new_esEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_esEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_primPlusNat1(Zero, Succ(x0)) 41.28/18.84 new_esEs24(x0, x1, ty_Float) 41.28/18.84 new_primEqNat0(Zero, Zero) 41.28/18.84 new_compare14(x0, x1, ty_Char) 41.28/18.84 new_esEs24(x0, x1, ty_Bool) 41.28/18.84 new_lt19(x0, x1, ty_Bool) 41.28/18.84 new_esEs12(True, True) 41.28/18.84 new_not(False) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), ty_Float) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 41.28/18.84 new_esEs7(Just(x0), Nothing, x1) 41.28/18.84 new_esEs15([], :(x0, x1), x2) 41.28/18.84 new_ltEs17(Nothing, Just(x0), x1) 41.28/18.84 new_primPlusNat1(Succ(x0), Zero) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.84 new_compare14(x0, x1, ty_Int) 41.28/18.84 new_esEs19(x0, x1, ty_Bool) 41.28/18.84 new_esEs21(x0, x1, ty_@0) 41.28/18.84 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_compare17(:%(x0, x1), :%(x2, x3), ty_Integer) 41.28/18.84 new_ltEs10(x0, x1) 41.28/18.84 new_ltEs8(True, True) 41.28/18.84 new_esEs19(x0, x1, ty_Float) 41.28/18.84 new_ltEs20(x0, x1, app(ty_[], x2)) 41.28/18.84 new_lt19(x0, x1, ty_Float) 41.28/18.84 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_esEs13(Double(x0, x1), Double(x2, x3)) 41.28/18.84 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.84 new_esEs24(x0, x1, ty_Int) 41.28/18.84 new_ltEs5(EQ, EQ) 41.28/18.84 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_esEs27(x0, x1, ty_Bool) 41.28/18.84 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.84 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.84 new_lt5(x0, x1) 41.28/18.84 new_esEs16(Float(x0, x1), Float(x2, x3)) 41.28/18.84 new_lt18(x0, x1, ty_Ordering) 41.28/18.84 new_esEs19(x0, x1, ty_Char) 41.28/18.84 new_lt19(x0, x1, ty_Char) 41.28/18.84 new_esEs18(x0, x1, ty_Ordering) 41.28/18.84 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.84 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.84 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_ltEs19(x0, x1, app(ty_[], x2)) 41.28/18.84 new_lt20(x0, x1, ty_Ordering) 41.28/18.84 new_esEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_ltEs16(x0, x1) 41.28/18.84 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 41.28/18.84 new_primCmpNat1(x0, Succ(x1)) 41.28/18.84 new_primMulInt(Pos(x0), Neg(x1)) 41.28/18.84 new_primMulInt(Neg(x0), Pos(x1)) 41.28/18.84 new_esEs19(x0, x1, ty_Int) 41.28/18.84 new_esEs26(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_compare7(x0, x1) 41.28/18.84 new_esEs27(x0, x1, ty_Char) 41.28/18.84 new_primMulNat0(Zero, Succ(x0)) 41.28/18.84 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.84 new_primCmpNat0(Zero, Zero) 41.28/18.84 new_primEqNat0(Zero, Succ(x0)) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.84 new_compare114(x0, x1, True, x2, x3) 41.28/18.84 new_compare19(x0, x1, x2, x3) 41.28/18.84 new_lt19(x0, x1, ty_Int) 41.28/18.84 41.28/18.84 We have to consider all minimal (P,Q,R)-chains. 41.28/18.84 ---------------------------------------- 41.28/18.84 41.28/18.84 (35) QDPSizeChangeProof (EQUIVALENT) 41.28/18.84 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. 41.28/18.84 41.28/18.84 From the DPs we obtained the following set of size-change graphs: 41.28/18.84 *new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, ge, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs1(yvy79002, yvy80002, bbd, bbe, bbf) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, ge, app(ty_[], bbg)) -> new_ltEs2(yvy79002, yvy80002, bbg) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_lt0(yvy79000, yvy80000, bc, bd) -> new_compare20(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, ge, app(app(ty_Either, bbb), bbc)) -> new_ltEs0(yvy79002, yvy80002, bbb, bbc) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs1(yvy79001, yvy80001, cg, da, db) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), cb, app(ty_[], dc)) -> new_ltEs2(yvy79001, yvy80001, dc) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(app(ty_Either, bc), bd), bb) -> new_compare20(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), cb, app(app(ty_Either, ce), cf)) -> new_ltEs0(yvy79001, yvy80001, ce, cf) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs3(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs1(yvy79000, yvy80000, bcf, bcg, bch) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs3(Just(yvy79000), Just(yvy80000), app(ty_[], bda)) -> new_ltEs2(yvy79000, yvy80000, bda) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs3(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bcd), bce)) -> new_ltEs0(yvy79000, yvy80000, bcd, bce) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_lt2(yvy79000, yvy80000, bh) -> new_compare(yvy79000, yvy80000, bh) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare22(yvy79000, yvy80000, False, ca) -> new_ltEs3(yvy79000, yvy80000, ca) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_lt1(yvy79000, yvy80000, be, bf, bg) -> new_compare21(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, be, bf, bg), be, bf, bg) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, ge, app(ty_Maybe, bbh)) -> new_ltEs3(yvy79002, yvy80002, bbh) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), cb, app(ty_Maybe, dd)) -> new_ltEs3(yvy79001, yvy80001, dd) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs3(Just(yvy79000), Just(yvy80000), app(ty_Maybe, bdb)) -> new_ltEs3(yvy79000, yvy80000, bdb) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs3(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bcb), bcc)) -> new_ltEs(yvy79000, yvy80000, bcb, bcc) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bca) -> new_primCompAux(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, bca), bca) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bca) -> new_compare(yvy79001, yvy80001, bca) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs2(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bca) -> new_primCompAux(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, bca), bca) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs2(:(yvy79000, yvy79001), :(yvy80000, yvy80001), bca) -> new_compare(yvy79001, yvy80001, bca) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare0(yvy79000, yvy80000, h, ba) -> new_compare2(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, h, ba), h, ba) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(:(yvy79000, yvy79001)), Left(:(yvy80000, yvy80001)), False, app(ty_[], bca), de) -> new_primCompAux(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, bca), bca) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare2(yvy79000, yvy80000, False, h, ba) -> new_ltEs(yvy79000, yvy80000, h, ba) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_lt(yvy79000, yvy80000, h, ba) -> new_compare2(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, h, ba), h, ba) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_lt3(yvy79000, yvy80000, ca) -> new_compare22(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, ca), ca) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare21(yvy79000, yvy80000, False, be, bf, bg) -> new_ltEs1(yvy79000, yvy80000, be, bf, bg) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, ge, app(app(ty_@2, bah), bba)) -> new_ltEs(yvy79002, yvy80002, bah, bba) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(app(ty_Either, bc), bd)), bb), de) -> new_compare20(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare1(yvy79000, yvy80000, bc, bd) -> new_compare20(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(yvy79001, yvy80001, cc, cd) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_primCompAux(yvy79000, yvy80000, yvy256, app(app(ty_@2, bee), bef)) -> new_compare0(yvy79000, yvy80000, bee, bef) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(ty_[], bh), bb) -> new_compare(yvy79000, yvy80000, bh) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_primCompAux(yvy79000, yvy80000, yvy256, app(ty_[], bfd)) -> new_compare(yvy79000, yvy80000, bfd) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_primCompAux(yvy79000, yvy80000, yvy256, app(app(ty_Either, beg), beh)) -> new_compare1(yvy79000, yvy80000, beg, beh) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare5(yvy79000, yvy80000, ca) -> new_compare22(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, ca), ca) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare4(yvy79000, yvy80000, be, bf, bg) -> new_compare21(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, be, bf, bg), be, bf, bg) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(app(app(ty_@3, be), bf), bg), bb) -> new_compare21(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, be, bf, bg), be, bf, bg) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(app(app(ty_@3, be), bf), bg)), bb), de) -> new_compare21(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, be, bf, bg), be, bf, bg) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 41.28/18.84 41.28/18.84 41.28/18.84 *new_primCompAux(yvy79000, yvy80000, yvy256, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_compare4(yvy79000, yvy80000, bfa, bfb, bfc) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_primCompAux(yvy79000, yvy80000, yvy256, app(ty_Maybe, bfe)) -> new_compare5(yvy79000, yvy80000, bfe) 41.28/18.84 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(app(ty_@2, h), ba), bb) -> new_compare2(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, h, ba), h, ba) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), app(ty_Maybe, ca), bb) -> new_compare22(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, ca), ca) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(app(ty_@2, h), ba)), bb), de) -> new_compare2(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, h, ba), h, ba) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(ty_Maybe, ca)), bb), de) -> new_compare22(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, ca), ca) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs0(Right(yvy79000), Right(yvy80000), eh, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs1(yvy79000, yvy80000, ff, fg, fh) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs0(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, ec), ed), ee), dh) -> new_ltEs1(yvy79000, yvy80000, ec, ed, ee) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs0(Left(yvy79000), Left(yvy80000), app(ty_[], ef), dh) -> new_ltEs2(yvy79000, yvy80000, ef) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs0(Right(yvy79000), Right(yvy80000), eh, app(ty_[], ga)) -> new_ltEs2(yvy79000, yvy80000, ga) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs0(Right(yvy79000), Right(yvy80000), eh, app(app(ty_Either, fc), fd)) -> new_ltEs0(yvy79000, yvy80000, fc, fd) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs0(Left(yvy79000), Left(yvy80000), app(app(ty_Either, ea), eb), dh) -> new_ltEs0(yvy79000, yvy80000, ea, eb) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs0(Left(yvy79000), Left(yvy80000), app(ty_Maybe, eg), dh) -> new_ltEs3(yvy79000, yvy80000, eg) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs0(Right(yvy79000), Right(yvy80000), eh, app(ty_Maybe, gb)) -> new_ltEs3(yvy79000, yvy80000, gb) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs0(Left(yvy79000), Left(yvy80000), app(app(ty_@2, df), dg), dh) -> new_ltEs(yvy79000, yvy80000, df, dg) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs0(Right(yvy79000), Right(yvy80000), eh, app(app(ty_@2, fa), fb)) -> new_ltEs(yvy79000, yvy80000, fa, fb) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(app(app(ty_@3, ec), ed), ee)), dh), de) -> new_ltEs1(yvy79000, yvy80000, ec, ed, ee) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Right(yvy7900), Right(yvy8000), False, bdc, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs1(yvy7900, yvy8000, bdh, bea, beb) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, cb), app(app(app(ty_@3, cg), da), db)), de) -> new_ltEs1(yvy79001, yvy80001, cg, da, db) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, eh), app(app(app(ty_@3, ff), fg), fh)), de) -> new_ltEs1(yvy79000, yvy80000, ff, fg, fh) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(app(app(ty_@3, bcf), bcg), bch)), de) -> new_ltEs1(yvy79000, yvy80000, bcf, bcg, bch) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), ge), app(app(app(ty_@3, bbd), bbe), bbf)), de) -> new_ltEs1(yvy79002, yvy80002, bbd, bbe, bbf) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), ge), app(ty_[], bbg)), de) -> new_ltEs2(yvy79002, yvy80002, bbg) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, eh), app(ty_[], ga)), de) -> new_ltEs2(yvy79000, yvy80000, ga) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, cb), app(ty_[], dc)), de) -> new_ltEs2(yvy79001, yvy80001, dc) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(ty_[], ef)), dh), de) -> new_ltEs2(yvy79000, yvy80000, ef) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Right(yvy7900), Right(yvy8000), False, bdc, app(ty_[], bec)) -> new_ltEs2(yvy7900, yvy8000, bec) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(ty_[], bda)), de) -> new_ltEs2(yvy79000, yvy80000, bda) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(ty_Maybe, he), ge, gf) -> new_lt3(yvy79000, yvy80000, he) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, app(ty_Maybe, bag), gf) -> new_lt3(yvy79001, yvy80001, bag) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(app(ty_@2, gc), gd), ge, gf) -> new_lt(yvy79000, yvy80000, gc, gd) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, app(app(ty_@2, hg), hh), gf) -> new_lt(yvy79001, yvy80001, hg, hh) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, app(app(app(ty_@3, bac), bad), bae), gf) -> new_lt1(yvy79001, yvy80001, bac, bad, bae) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(app(app(ty_@3, ha), hb), hc), ge, gf) -> new_lt1(yvy79000, yvy80000, ha, hb, hc) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, app(ty_[], baf), gf) -> new_lt2(yvy79001, yvy80001, baf) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(ty_[], hd), ge, gf) -> new_lt2(yvy79000, yvy80000, hd) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), app(app(ty_Either, gg), gh), ge, gf) -> new_lt0(yvy79000, yvy80000, gg, gh) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_ltEs1(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), hf, app(app(ty_Either, baa), bab), gf) -> new_lt0(yvy79001, yvy80001, baa, bab) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Right(yvy7900), Right(yvy8000), False, bdc, app(app(ty_Either, bdf), bdg)) -> new_ltEs0(yvy7900, yvy8000, bdf, bdg) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(app(ty_Either, ea), eb)), dh), de) -> new_ltEs0(yvy79000, yvy80000, ea, eb) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), ge), app(app(ty_Either, bbb), bbc)), de) -> new_ltEs0(yvy79002, yvy80002, bbb, bbc) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, eh), app(app(ty_Either, fc), fd)), de) -> new_ltEs0(yvy79000, yvy80000, fc, fd) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, cb), app(app(ty_Either, ce), cf)), de) -> new_ltEs0(yvy79001, yvy80001, ce, cf) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(app(ty_Either, bcd), bce)), de) -> new_ltEs0(yvy79000, yvy80000, bcd, bce) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), app(ty_Maybe, bag)), gf), de) -> new_lt3(yvy79001, yvy80001, bag) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(ty_Maybe, he)), ge), gf), de) -> new_lt3(yvy79000, yvy80000, he) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, cb), app(ty_Maybe, dd)), de) -> new_ltEs3(yvy79001, yvy80001, dd) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, eh), app(ty_Maybe, gb)), de) -> new_ltEs3(yvy79000, yvy80000, gb) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Right(yvy7900), Right(yvy8000), False, bdc, app(ty_Maybe, bed)) -> new_ltEs3(yvy7900, yvy8000, bed) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(ty_Maybe, bdb)), de) -> new_ltEs3(yvy79000, yvy80000, bdb) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(ty_Maybe, eg)), dh), de) -> new_ltEs3(yvy79000, yvy80000, eg) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), ge), app(ty_Maybe, bbh)), de) -> new_ltEs3(yvy79002, yvy80002, bbh) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(app(ty_@2, gc), gd)), ge), gf), de) -> new_lt(yvy79000, yvy80000, gc, gd) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), app(app(ty_@2, hg), hh)), gf), de) -> new_lt(yvy79001, yvy80001, hg, hh) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, cb), app(app(ty_@2, cc), cd)), de) -> new_ltEs(yvy79001, yvy80001, cc, cd) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(Right(yvy79000)), Left(Right(yvy80000)), False, app(app(ty_Either, eh), app(app(ty_@2, fa), fb)), de) -> new_ltEs(yvy79000, yvy80000, fa, fb) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(Left(yvy79000)), Left(Left(yvy80000)), False, app(app(ty_Either, app(app(ty_@2, df), dg)), dh), de) -> new_ltEs(yvy79000, yvy80000, df, dg) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), ge), app(app(ty_@2, bah), bba)), de) -> new_ltEs(yvy79002, yvy80002, bah, bba) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(Just(yvy79000)), Left(Just(yvy80000)), False, app(ty_Maybe, app(app(ty_@2, bcb), bcc)), de) -> new_ltEs(yvy79000, yvy80000, bcb, bcc) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Right(yvy7900), Right(yvy8000), False, bdc, app(app(ty_@2, bdd), bde)) -> new_ltEs(yvy7900, yvy8000, bdd, bde) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(app(app(ty_@3, ha), hb), hc)), ge), gf), de) -> new_lt1(yvy79000, yvy80000, ha, hb, hc) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), app(app(app(ty_@3, bac), bad), bae)), gf), de) -> new_lt1(yvy79001, yvy80001, bac, bad, bae) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(ty_[], hd)), ge), gf), de) -> new_lt2(yvy79000, yvy80000, hd) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), app(ty_[], baf)), gf), de) -> new_lt2(yvy79001, yvy80001, baf) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@2(yvy79000, yvy79001)), Left(@2(yvy80000, yvy80001)), False, app(app(ty_@2, app(ty_[], bh)), bb), de) -> new_compare(yvy79000, yvy80000, bh) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(:(yvy79000, yvy79001)), Left(:(yvy80000, yvy80001)), False, app(ty_[], bca), de) -> new_compare(yvy79001, yvy80001, bca) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, hf), app(app(ty_Either, baa), bab)), gf), de) -> new_lt0(yvy79001, yvy80001, baa, bab) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 *new_compare20(Left(@3(yvy79000, yvy79001, yvy79002)), Left(@3(yvy80000, yvy80001, yvy80002)), False, app(app(app(ty_@3, app(app(ty_Either, gg), gh)), ge), gf), de) -> new_lt0(yvy79000, yvy80000, gg, gh) 41.28/18.84 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.84 41.28/18.84 41.28/18.84 ---------------------------------------- 41.28/18.84 41.28/18.84 (36) 41.28/18.84 YES 41.28/18.84 41.28/18.84 ---------------------------------------- 41.28/18.84 41.28/18.84 (37) 41.28/18.84 Obligation: 41.28/18.84 Q DP problem: 41.28/18.84 The TRS P consists of the following rules: 41.28/18.84 41.28/18.84 new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Left(yvy400), yvy41, h, ba, bb) 41.28/18.84 new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C11(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt1(yvy400, yvy500, h, ba), h, ba, bb) 41.28/18.84 new_addToFM_C(Branch(Left(yvy500), yvy51, yvy52, yvy53, yvy54), Right(yvy400), yvy41, h, ba, bb) -> new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare210(Right(yvy400), Left(yvy500), False, h, ba), LT), h, ba, bb) 41.28/18.84 new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Right(yvy400), yvy41, h, ba, bb) 41.28/18.84 new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Left(yvy400), yvy41, h, ba, bb) 41.28/18.84 new_addToFM_C(Branch(Right(yvy500), yvy51, yvy52, yvy53, yvy54), Left(yvy400), yvy41, h, ba, bb) -> new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare210(Left(yvy400), Right(yvy500), False, h, ba), LT), h, ba, bb) 41.28/18.84 new_addToFM_C(Branch(Left(yvy500), yvy51, yvy52, yvy53, yvy54), Left(yvy400), yvy41, h, ba, bb) -> new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare210(Left(yvy400), Left(yvy500), new_esEs29(yvy400, yvy500, h), h, ba), LT), h, ba, bb) 41.28/18.84 new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt0(yvy400, yvy500, h, ba), h, ba, bb) 41.28/18.84 new_addToFM_C(Branch(Right(yvy500), yvy51, yvy52, yvy53, yvy54), Right(yvy400), yvy41, h, ba, bb) -> new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare210(Right(yvy400), Right(yvy500), new_esEs30(yvy400, yvy500, ba), h, ba), LT), h, ba, bb) 41.28/18.84 new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Right(yvy400), yvy41, h, ba, bb) 41.28/18.84 new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt2(yvy400, yvy500, h, ba), h, ba, bb) 41.28/18.84 new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt(yvy400, yvy500, h, ba), h, ba, bb) 41.28/18.84 new_addToFM_C11(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Right(yvy400), yvy41, h, ba, bb) 41.28/18.84 new_addToFM_C1(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Left(yvy400), yvy41, h, ba, bb) 41.28/18.84 new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Left(yvy400), yvy41, h, ba, bb) 41.28/18.84 new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Right(yvy400), yvy41, h, ba, bb) 41.28/18.84 41.28/18.84 The TRS R consists of the following rules: 41.28/18.84 41.28/18.84 new_ltEs20(yvy79002, yvy80002, app(ty_[], dga)) -> new_ltEs11(yvy79002, yvy80002, dga) 41.28/18.84 new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT 41.28/18.84 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 41.28/18.84 new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.84 new_ltEs21(yvy79001, yvy80001, ty_Bool) -> new_ltEs8(yvy79001, yvy80001) 41.28/18.84 new_esEs24(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 41.28/18.84 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.84 new_pePe(True, yvy255) -> True 41.28/18.84 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Ordering, bhe) -> new_esEs8(yvy4000, yvy3000) 41.28/18.84 new_esEs25(yvy79001, yvy80001, app(app(app(ty_@3, ded), dee), def)) -> new_esEs6(yvy79001, yvy80001, ded, dee, def) 41.28/18.84 new_esEs30(yvy400, yvy500, ty_Ordering) -> new_esEs8(yvy400, yvy500) 41.28/18.84 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Ratio, hc)) -> new_ltEs13(yvy79000, yvy80000, hc) 41.28/18.84 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(ty_Ratio, cdh)) -> new_ltEs13(yvy79000, yvy80000, cdh) 41.28/18.84 new_esEs19(yvy4001, yvy3001, app(ty_Ratio, chg)) -> new_esEs17(yvy4001, yvy3001, chg) 41.28/18.84 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.84 new_esEs30(yvy400, yvy500, app(app(ty_@2, dbc), dbd)) -> new_esEs4(yvy400, yvy500, dbc, dbd) 41.28/18.84 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Double) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.84 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 41.28/18.84 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.84 new_esEs27(yvy4001, yvy3001, app(app(ty_Either, bgf), bgg)) -> new_esEs5(yvy4001, yvy3001, bgf, bgg) 41.28/18.84 new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT 41.28/18.84 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.84 new_lt18(yvy79000, yvy80000, app(ty_Maybe, ddf)) -> new_lt6(yvy79000, yvy80000, ddf) 41.28/18.84 new_esEs9(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 41.28/18.84 new_lt20(yvy79000, yvy80000, app(app(ty_Either, bed), bee)) -> new_lt17(yvy79000, yvy80000, bed, bee) 41.28/18.84 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.84 new_esEs24(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 41.28/18.84 new_esEs30(yvy400, yvy500, ty_Char) -> new_esEs11(yvy400, yvy500) 41.28/18.84 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, gd)) -> new_esEs7(yvy4000, yvy3000, gd) 41.28/18.84 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Char, bhe) -> new_esEs11(yvy4000, yvy3000) 41.28/18.84 new_esEs28(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 41.28/18.84 new_ltEs12(Left(yvy79000), Right(yvy80000), bce, bcf) -> True 41.28/18.84 new_ltEs21(yvy79001, yvy80001, ty_Char) -> new_ltEs6(yvy79001, yvy80001) 41.28/18.84 new_esEs28(yvy79000, yvy80000, app(ty_Maybe, eh)) -> new_esEs7(yvy79000, yvy80000, eh) 41.28/18.84 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Ratio, ccf), bcf) -> new_ltEs13(yvy79000, yvy80000, ccf) 41.28/18.84 new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.84 new_esEs18(yvy4000, yvy3000, app(app(ty_@2, cfe), cff)) -> new_esEs4(yvy4000, yvy3000, cfe, cff) 41.28/18.84 new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt16(yvy79001, yvy80001) 41.28/18.84 new_lt19(yvy79001, yvy80001, app(app(ty_Either, deb), dec)) -> new_lt17(yvy79001, yvy80001, deb, dec) 41.28/18.84 new_esEs26(yvy4000, yvy3000, app(ty_[], bfc)) -> new_esEs15(yvy4000, yvy3000, bfc) 41.28/18.84 new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt4(yvy79001, yvy80001) 41.28/18.84 new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.84 new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) 41.28/18.84 new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.84 new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs13(yvy20, yvy15) 41.28/18.84 new_compare14(yvy79000, yvy80000, app(ty_[], cf)) -> new_compare3(yvy79000, yvy80000, cf) 41.28/18.84 new_compare3([], [], be) -> EQ 41.28/18.84 new_esEs28(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 41.28/18.84 new_ltEs19(yvy7900, yvy8000, app(ty_[], beb)) -> new_ltEs11(yvy7900, yvy8000, beb) 41.28/18.84 new_esEs8(GT, GT) -> True 41.28/18.84 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 41.28/18.84 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 41.28/18.84 new_ltEs18(yvy7900, yvy8000, app(app(ty_@2, bcb), bcc)) -> new_ltEs4(yvy7900, yvy8000, bcb, bcc) 41.28/18.84 new_fsEs(yvy244) -> new_not(new_esEs8(yvy244, GT)) 41.28/18.84 new_esEs25(yvy79001, yvy80001, app(ty_Ratio, dea)) -> new_esEs17(yvy79001, yvy80001, dea) 41.28/18.84 new_compare210(yvy790, yvy800, True, bbh, bca) -> EQ 41.28/18.84 new_esEs31(yvy35, yvy30, app(ty_Ratio, ef)) -> new_esEs17(yvy35, yvy30, ef) 41.28/18.84 new_esEs32(yvy20, yvy15, app(ty_[], dge)) -> new_esEs15(yvy20, yvy15, dge) 41.28/18.84 new_lt20(yvy79000, yvy80000, app(app(ty_@2, bc), bd)) -> new_lt13(yvy79000, yvy80000, bc, bd) 41.28/18.84 new_esEs29(yvy400, yvy500, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs6(yvy400, yvy500, ceh, cfa, cfb) 41.28/18.84 new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare18(yvy7900, yvy8000)) 41.28/18.84 new_esEs24(yvy79000, yvy80000, app(app(ty_@2, dce), dcf)) -> new_esEs4(yvy79000, yvy80000, dce, dcf) 41.28/18.84 new_lt18(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 41.28/18.84 new_compare28(yvy79000, yvy80000, False, eh) -> new_compare113(yvy79000, yvy80000, new_ltEs17(yvy79000, yvy80000, eh), eh) 41.28/18.84 new_lt18(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 41.28/18.84 new_esEs8(EQ, EQ) -> True 41.28/18.84 new_ltEs11(yvy7900, yvy8000, be) -> new_fsEs(new_compare3(yvy7900, yvy8000, be)) 41.28/18.84 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.84 new_esEs20(yvy4002, yvy3002, app(ty_Ratio, dba)) -> new_esEs17(yvy4002, yvy3002, dba) 41.28/18.84 new_ltEs20(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) 41.28/18.84 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(app(ty_@2, cba), cbb)) -> new_esEs4(yvy4000, yvy3000, cba, cbb) 41.28/18.84 new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.84 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.84 new_compare13(yvy79000, yvy80000, da, db, dc) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, da, db, dc), da, db, dc) 41.28/18.84 new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) 41.28/18.84 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.84 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_Either, hd), he)) -> new_ltEs12(yvy79000, yvy80000, hd, he) 41.28/18.84 new_not(True) -> False 41.28/18.84 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.84 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.84 new_compare210(Left(yvy7900), Right(yvy8000), False, bbh, bca) -> LT 41.28/18.84 new_lt18(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 41.28/18.84 new_compare14(yvy79000, yvy80000, ty_Ordering) -> new_compare25(yvy79000, yvy80000) 41.28/18.84 new_compare24(yvy79000, yvy80000, False) -> new_compare11(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000)) 41.28/18.84 new_primCompAux00(yvy260, LT) -> LT 41.28/18.84 new_primCmpNat0(Zero, Zero) -> EQ 41.28/18.84 new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs6(yvy4000, yvy3000, bba, bbb, bbc) 41.28/18.84 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Integer, bcf) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.84 new_esEs28(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 41.28/18.84 new_compare11(yvy79000, yvy80000, False) -> GT 41.28/18.84 new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 41.28/18.84 new_esEs21(yvy4000, yvy3000, app(ty_Ratio, bbd)) -> new_esEs17(yvy4000, yvy3000, bbd) 41.28/18.84 new_esEs20(yvy4002, yvy3002, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs6(yvy4002, yvy3002, daf, dag, dah) 41.28/18.84 new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 41.28/18.84 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(ty_[], cbc)) -> new_esEs15(yvy4000, yvy3000, cbc) 41.28/18.84 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Char, bcf) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.84 new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 41.28/18.84 new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.84 new_esEs19(yvy4001, yvy3001, app(app(ty_@2, cgg), cgh)) -> new_esEs4(yvy4001, yvy3001, cgg, cgh) 41.28/18.84 new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) 41.28/18.84 new_lt18(yvy79000, yvy80000, app(app(ty_Either, dch), dda)) -> new_lt17(yvy79000, yvy80000, dch, dda) 41.28/18.84 new_primEqNat0(Succ(yvy40000), Zero) -> False 41.28/18.84 new_primEqNat0(Zero, Succ(yvy30000)) -> False 41.28/18.84 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_[], bhh), bhe) -> new_esEs15(yvy4000, yvy3000, bhh) 41.28/18.84 new_esEs14(@0, @0) -> True 41.28/18.84 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.84 new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 41.28/18.84 new_compare10(yvy79000, yvy80000, True, bc, bd) -> LT 41.28/18.84 new_ltEs18(yvy7900, yvy8000, app(ty_[], be)) -> new_ltEs11(yvy7900, yvy8000, be) 41.28/18.84 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.84 new_primCompAux00(yvy260, GT) -> GT 41.28/18.84 new_compare28(yvy79000, yvy80000, True, eh) -> EQ 41.28/18.84 new_esEs25(yvy79001, yvy80001, ty_Double) -> new_esEs13(yvy79001, yvy80001) 41.28/18.84 new_ltEs21(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) 41.28/18.84 new_primCmpNat2(Zero, yvy7900) -> LT 41.28/18.84 new_esEs20(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) 41.28/18.84 new_esEs25(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) 41.28/18.84 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_@0) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.84 new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 41.28/18.84 new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT 41.28/18.84 new_ltEs20(yvy79002, yvy80002, app(app(ty_@2, dfa), dfb)) -> new_ltEs4(yvy79002, yvy80002, dfa, dfb) 41.28/18.84 new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 41.28/18.84 new_esEs20(yvy4002, yvy3002, app(app(ty_@2, daa), dab)) -> new_esEs4(yvy4002, yvy3002, daa, dab) 41.28/18.84 new_ltEs18(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 41.28/18.84 new_ltEs21(yvy79001, yvy80001, ty_Int) -> new_ltEs7(yvy79001, yvy80001) 41.28/18.84 new_compare3(:(yvy79000, yvy79001), :(yvy80000, yvy80001), be) -> new_primCompAux0(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, be), be) 41.28/18.84 new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs13(yvy35, yvy30) 41.28/18.84 new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 41.28/18.84 new_ltEs5(LT, GT) -> True 41.28/18.84 new_ltEs18(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 41.28/18.84 new_primPlusNat1(Succ(yvy20100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20100, yvy3000000))) 41.28/18.84 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.84 new_gt2(yvy35, yvy30, dd, de) -> new_esEs8(new_compare30(yvy35, yvy30, dd, de), GT) 41.28/18.84 new_esEs31(yvy35, yvy30, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs6(yvy35, yvy30, ec, ed, ee) 41.28/18.84 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, hf), hg), hh)) -> new_ltEs9(yvy79000, yvy80000, hf, hg, hh) 41.28/18.84 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.84 new_primCmpNat0(Zero, Succ(yvy80000)) -> LT 41.28/18.84 new_ltEs20(yvy79002, yvy80002, ty_Bool) -> new_ltEs8(yvy79002, yvy80002) 41.28/18.84 new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, chd), che), chf)) -> new_esEs6(yvy4001, yvy3001, chd, che, chf) 41.28/18.84 new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 41.28/18.84 new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, bdb), bdc)) -> new_ltEs4(yvy7900, yvy8000, bdb, bdc) 41.28/18.84 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(ty_Maybe, ccb)) -> new_esEs7(yvy4000, yvy3000, ccb) 41.28/18.84 new_compare110(yvy79000, yvy80000, False, da, db, dc) -> GT 41.28/18.84 new_primCmpNat0(Succ(yvy79000), Zero) -> GT 41.28/18.84 new_pePe(False, yvy255) -> yvy255 41.28/18.84 new_ltEs17(Nothing, Nothing, gh) -> True 41.28/18.84 new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 41.28/18.84 new_compare3([], :(yvy80000, yvy80001), be) -> LT 41.28/18.84 new_esEs7(Nothing, Just(yvy3000), fa) -> False 41.28/18.84 new_esEs7(Just(yvy4000), Nothing, fa) -> False 41.28/18.84 new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 41.28/18.84 new_compare27(yvy79000, yvy80000, False, da, db, dc) -> new_compare110(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, da, db, dc), da, db, dc) 41.28/18.84 new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 41.28/18.84 new_ltEs17(Nothing, Just(yvy80000), gh) -> True 41.28/18.84 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Float) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.84 new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 41.28/18.84 new_ltEs17(Just(yvy79000), Nothing, gh) -> False 41.28/18.84 new_esEs12(False, False) -> True 41.28/18.84 new_ltEs20(yvy79002, yvy80002, app(ty_Maybe, dgb)) -> new_ltEs17(yvy79002, yvy80002, dgb) 41.28/18.84 new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 41.28/18.84 new_compare114(yvy227, yvy228, True, bbf, bbg) -> LT 41.28/18.84 new_primCmpNat1(yvy7900, Zero) -> GT 41.28/18.84 new_compare112(yvy234, yvy235, True, cfc, cfd) -> LT 41.28/18.84 new_compare14(yvy79000, yvy80000, ty_Char) -> new_compare8(yvy79000, yvy80000) 41.28/18.84 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, ff), fg)) -> new_esEs5(yvy4000, yvy3000, ff, fg) 41.28/18.84 new_lt18(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 41.28/18.84 new_lt15(yvy79000, yvy80000) -> new_esEs8(new_compare25(yvy79000, yvy80000), LT) 41.28/18.84 new_esEs25(yvy79001, yvy80001, ty_Integer) -> new_esEs10(yvy79001, yvy80001) 41.28/18.84 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs9(yvy79000, yvy80000, cec, ced, cee) 41.28/18.84 new_compare23(yvy79000, yvy80000, False, bc, bd) -> new_compare10(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.84 new_gt1(yvy400, yvy300, h, ba) -> new_esEs8(new_compare33(yvy400, yvy300, h, ba), GT) 41.28/18.84 new_esEs25(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) 41.28/18.84 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_[], cdd), bcf) -> new_ltEs11(yvy79000, yvy80000, cdd) 41.28/18.84 new_esEs25(yvy79001, yvy80001, app(ty_[], deg)) -> new_esEs15(yvy79001, yvy80001, deg) 41.28/18.84 new_compare113(yvy79000, yvy80000, True, eh) -> LT 41.28/18.84 new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 41.28/18.84 new_ltEs7(yvy7900, yvy8000) -> new_fsEs(new_compare7(yvy7900, yvy8000)) 41.28/18.84 new_lt20(yvy79000, yvy80000, app(ty_[], ccc)) -> new_lt11(yvy79000, yvy80000, ccc) 41.28/18.84 new_compare23(yvy79000, yvy80000, True, bc, bd) -> EQ 41.28/18.84 new_esEs8(LT, EQ) -> False 41.28/18.84 new_esEs8(EQ, LT) -> False 41.28/18.84 new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 41.28/18.84 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bhf), bhg), bhe) -> new_esEs4(yvy4000, yvy3000, bhf, bhg) 41.28/18.84 new_esEs21(yvy4000, yvy3000, app(app(ty_@2, bad), bae)) -> new_esEs4(yvy4000, yvy3000, bad, bae) 41.28/18.84 new_ltEs21(yvy79001, yvy80001, app(app(app(ty_@3, eab), eac), ead)) -> new_ltEs9(yvy79001, yvy80001, eab, eac, ead) 41.28/18.84 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 41.28/18.84 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 41.28/18.84 new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs6(yvy20, yvy15, dgh, dha, dhb) 41.28/18.84 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(app(ty_@2, cdf), cdg)) -> new_ltEs4(yvy79000, yvy80000, cdf, cdg) 41.28/18.84 new_esEs7(Nothing, Nothing, fa) -> True 41.28/18.84 new_esEs13(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 41.28/18.84 new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 41.28/18.84 new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.84 new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt9(yvy79001, yvy80001) 41.28/18.84 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, bga)) -> new_esEs17(yvy4000, yvy3000, bga) 41.28/18.84 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Int) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.84 new_esEs25(yvy79001, yvy80001, app(app(ty_@2, ddg), ddh)) -> new_esEs4(yvy79001, yvy80001, ddg, ddh) 41.28/18.84 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_Either, ccg), cch), bcf) -> new_ltEs12(yvy79000, yvy80000, ccg, cch) 41.28/18.84 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare7(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) 41.28/18.84 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.84 new_ltEs18(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 41.28/18.84 new_ltEs18(yvy7900, yvy8000, app(app(ty_Either, bce), bcf)) -> new_ltEs12(yvy7900, yvy8000, bce, bcf) 41.28/18.84 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.84 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.84 new_esEs24(yvy79000, yvy80000, app(app(ty_Either, dch), dda)) -> new_esEs5(yvy79000, yvy80000, dch, dda) 41.28/18.84 new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, bec)) -> new_ltEs17(yvy7900, yvy8000, bec) 41.28/18.84 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.84 new_esEs25(yvy79001, yvy80001, ty_Ordering) -> new_esEs8(yvy79001, yvy80001) 41.28/18.84 new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs14(yvy35, yvy30) 41.28/18.84 new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT 41.28/18.84 new_compare114(yvy227, yvy228, False, bbf, bbg) -> GT 41.28/18.84 new_esEs20(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) 41.28/18.84 new_ltEs20(yvy79002, yvy80002, ty_@0) -> new_ltEs16(yvy79002, yvy80002) 41.28/18.84 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.84 new_esEs25(yvy79001, yvy80001, app(ty_Maybe, deh)) -> new_esEs7(yvy79001, yvy80001, deh) 41.28/18.84 new_ltEs8(True, False) -> False 41.28/18.84 new_esEs15([], [], bac) -> True 41.28/18.84 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Bool, bcf) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.84 new_esEs32(yvy20, yvy15, app(app(ty_Either, dgf), dgg)) -> new_esEs5(yvy20, yvy15, dgf, dgg) 41.28/18.84 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.84 new_esEs24(yvy79000, yvy80000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs6(yvy79000, yvy80000, ddb, ddc, ddd) 41.28/18.84 new_lt4(yvy240, yvy239) -> new_esEs8(new_compare7(yvy240, yvy239), LT) 41.28/18.84 new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt10(yvy79001, yvy80001) 41.28/18.84 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 41.28/18.84 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 41.28/18.84 new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs13(yvy400, yvy500) 41.28/18.84 new_ltEs8(False, False) -> True 41.28/18.84 new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) 41.28/18.84 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, fh), ga), gb)) -> new_esEs6(yvy4000, yvy3000, fh, ga, gb) 41.28/18.84 new_compare14(yvy79000, yvy80000, app(app(ty_@2, bf), bg)) -> new_compare16(yvy79000, yvy80000, bf, bg) 41.28/18.84 new_lt18(yvy79000, yvy80000, app(ty_Ratio, dcg)) -> new_lt14(yvy79000, yvy80000, dcg) 41.28/18.84 new_ltEs5(EQ, EQ) -> True 41.28/18.84 new_ltEs18(yvy7900, yvy8000, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs9(yvy7900, yvy8000, bcg, bch, bda) 41.28/18.84 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_Either, caa), cab), bhe) -> new_esEs5(yvy4000, yvy3000, caa, cab) 41.28/18.84 new_compare27(yvy79000, yvy80000, True, da, db, dc) -> EQ 41.28/18.84 new_lt19(yvy79001, yvy80001, app(ty_[], deg)) -> new_lt11(yvy79001, yvy80001, deg) 41.28/18.84 new_ltEs18(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 41.28/18.84 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Bool, bhe) -> new_esEs12(yvy4000, yvy3000) 41.28/18.84 new_compare15(yvy79000, yvy80000) -> new_compare29(yvy79000, yvy80000, new_esEs12(yvy79000, yvy80000)) 41.28/18.84 new_esEs21(yvy4000, yvy3000, app(app(ty_Either, bag), bah)) -> new_esEs5(yvy4000, yvy3000, bag, bah) 41.28/18.84 new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.84 new_compare7(yvy79, yvy80) -> new_primCmpInt(yvy79, yvy80) 41.28/18.84 new_esEs8(LT, LT) -> True 41.28/18.84 new_compare111(yvy79000, yvy80000, True) -> LT 41.28/18.84 new_esEs28(yvy79000, yvy80000, app(ty_[], ccc)) -> new_esEs15(yvy79000, yvy80000, ccc) 41.28/18.84 new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 41.28/18.84 new_lt18(yvy79000, yvy80000, app(ty_[], dde)) -> new_lt11(yvy79000, yvy80000, dde) 41.28/18.84 new_lt6(yvy79000, yvy80000, eh) -> new_esEs8(new_compare12(yvy79000, yvy80000, eh), LT) 41.28/18.84 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.84 new_esEs24(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 41.28/18.84 new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs9(yvy7900, yvy8000, bdg, bdh, bea) 41.28/18.84 new_primPlusNat1(Succ(yvy20100), Zero) -> Succ(yvy20100) 41.28/18.84 new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 41.28/18.84 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) 41.28/18.84 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Maybe, bab)) -> new_ltEs17(yvy79000, yvy80000, bab) 41.28/18.84 new_esEs30(yvy400, yvy500, ty_@0) -> new_esEs14(yvy400, yvy500) 41.28/18.84 new_compare14(yvy79000, yvy80000, app(app(ty_Either, ca), cb)) -> new_compare19(yvy79000, yvy80000, ca, cb) 41.28/18.84 new_ltEs21(yvy79001, yvy80001, ty_Double) -> new_ltEs14(yvy79001, yvy80001) 41.28/18.84 new_compare14(yvy79000, yvy80000, ty_Integer) -> new_compare26(yvy79000, yvy80000) 41.28/18.84 new_esEs24(yvy79000, yvy80000, app(ty_Maybe, ddf)) -> new_esEs7(yvy79000, yvy80000, ddf) 41.28/18.84 new_esEs25(yvy79001, yvy80001, ty_Bool) -> new_esEs12(yvy79001, yvy80001) 41.28/18.84 new_esEs24(yvy79000, yvy80000, app(ty_Ratio, dcg)) -> new_esEs17(yvy79000, yvy80000, dcg) 41.28/18.84 new_esEs24(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 41.28/18.84 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.84 new_ltEs5(LT, LT) -> True 41.28/18.84 new_ltEs20(yvy79002, yvy80002, ty_Double) -> new_ltEs14(yvy79002, yvy80002) 41.28/18.84 new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs14(yvy400, yvy500) 41.28/18.84 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.84 new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs9(yvy20, yvy15) 41.28/18.84 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Integer, bhe) -> new_esEs10(yvy4000, yvy3000) 41.28/18.84 new_ltEs5(LT, EQ) -> True 41.28/18.84 new_compare14(yvy79000, yvy80000, ty_Double) -> new_compare18(yvy79000, yvy80000) 41.28/18.84 new_compare14(yvy79000, yvy80000, ty_@0) -> new_compare9(yvy79000, yvy80000) 41.28/18.84 new_ltEs21(yvy79001, yvy80001, app(ty_Maybe, eaf)) -> new_ltEs17(yvy79001, yvy80001, eaf) 41.28/18.84 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.84 new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.84 new_ltEs8(False, True) -> True 41.28/18.84 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, gc)) -> new_esEs17(yvy4000, yvy3000, gc) 41.28/18.84 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.84 new_compare14(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) 41.28/18.84 new_esEs27(yvy4001, yvy3001, app(ty_[], bge)) -> new_esEs15(yvy4001, yvy3001, bge) 41.28/18.84 new_ltEs6(yvy7900, yvy8000) -> new_fsEs(new_compare8(yvy7900, yvy8000)) 41.28/18.84 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.84 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.84 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.84 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(app(ty_Either, cea), ceb)) -> new_ltEs12(yvy79000, yvy80000, cea, ceb) 41.28/18.84 new_ltEs20(yvy79002, yvy80002, app(app(app(ty_@3, dff), dfg), dfh)) -> new_ltEs9(yvy79002, yvy80002, dff, dfg, dfh) 41.28/18.84 new_esEs19(yvy4001, yvy3001, app(app(ty_Either, chb), chc)) -> new_esEs5(yvy4001, yvy3001, chb, chc) 41.28/18.84 new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt12(yvy79001, yvy80001) 41.28/18.84 new_esEs27(yvy4001, yvy3001, app(ty_Ratio, bhc)) -> new_esEs17(yvy4001, yvy3001, bhc) 41.28/18.84 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Double, bcf) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.84 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs6(yvy4000, yvy3000, cbf, cbg, cbh) 41.28/18.84 new_esEs28(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 41.28/18.84 new_ltEs12(Right(yvy79000), Left(yvy80000), bce, bcf) -> False 41.28/18.84 new_esEs24(yvy79000, yvy80000, app(ty_[], dde)) -> new_esEs15(yvy79000, yvy80000, dde) 41.28/18.84 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Ratio, caf), bhe) -> new_esEs17(yvy4000, yvy3000, caf) 41.28/18.84 new_esEs30(yvy400, yvy500, app(ty_[], dbe)) -> new_esEs15(yvy400, yvy500, dbe) 41.28/18.84 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(ty_Ratio, cca)) -> new_esEs17(yvy4000, yvy3000, cca) 41.28/18.84 new_esEs17(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bef) -> new_asAs(new_esEs22(yvy4000, yvy3000, bef), new_esEs23(yvy4001, yvy3001, bef)) 41.28/18.84 new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 41.28/18.84 new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 41.28/18.84 new_compare210(Left(yvy7900), Left(yvy8000), False, bbh, bca) -> new_compare114(yvy7900, yvy8000, new_ltEs18(yvy7900, yvy8000, bbh), bbh, bca) 41.28/18.84 new_sr0(Integer(yvy800000), Integer(yvy790010)) -> Integer(new_primMulInt(yvy800000, yvy790010)) 41.28/18.84 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, cda), cdb), cdc), bcf) -> new_ltEs9(yvy79000, yvy80000, cda, cdb, cdc) 41.28/18.84 new_esEs28(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 41.28/18.84 new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs6(yvy4001, yvy3001, bgh, bha, bhb) 41.28/18.84 new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.84 new_esEs28(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 41.28/18.84 new_ltEs21(yvy79001, yvy80001, app(ty_Ratio, dhg)) -> new_ltEs13(yvy79001, yvy80001, dhg) 41.28/18.84 new_lt9(yvy79000, yvy80000) -> new_esEs8(new_compare8(yvy79000, yvy80000), LT) 41.28/18.84 new_ltEs21(yvy79001, yvy80001, ty_@0) -> new_ltEs16(yvy79001, yvy80001) 41.28/18.84 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.84 new_esEs20(yvy4002, yvy3002, ty_Int) -> new_esEs9(yvy4002, yvy3002) 41.28/18.84 new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.84 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.84 new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs12(yvy20, yvy15) 41.28/18.84 new_esEs25(yvy79001, yvy80001, ty_Int) -> new_esEs9(yvy79001, yvy80001) 41.28/18.84 new_ltEs21(yvy79001, yvy80001, app(app(ty_Either, dhh), eaa)) -> new_ltEs12(yvy79001, yvy80001, dhh, eaa) 41.28/18.84 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.84 new_lt5(yvy79000, yvy80000) -> new_esEs8(new_compare9(yvy79000, yvy80000), LT) 41.28/18.84 new_asAs(True, yvy222) -> yvy222 41.28/18.84 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 41.28/18.84 new_compare10(yvy79000, yvy80000, False, bc, bd) -> GT 41.28/18.84 new_ltEs5(GT, LT) -> False 41.28/18.84 new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), bcg, bch, bda) -> new_pePe(new_lt18(yvy79000, yvy80000, bcg), new_asAs(new_esEs24(yvy79000, yvy80000, bcg), new_pePe(new_lt19(yvy79001, yvy80001, bch), new_asAs(new_esEs25(yvy79001, yvy80001, bch), new_ltEs20(yvy79002, yvy80002, bda))))) 41.28/18.84 new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.84 new_esEs24(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 41.28/18.84 new_compare14(yvy79000, yvy80000, ty_Int) -> new_compare7(yvy79000, yvy80000) 41.28/18.84 new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.84 new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, da), db), dc)) -> new_lt7(yvy79000, yvy80000, da, db, dc) 41.28/18.84 new_esEs20(yvy4002, yvy3002, app(ty_[], dac)) -> new_esEs15(yvy4002, yvy3002, dac) 41.28/18.84 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.84 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.84 new_lt10(yvy79000, yvy80000) -> new_esEs8(new_compare18(yvy79000, yvy80000), LT) 41.28/18.84 new_esEs24(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 41.28/18.84 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.84 new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) 41.28/18.84 new_ltEs8(True, True) -> True 41.28/18.84 new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat1(yvy7900, yvy800) 41.28/18.84 new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs9(yvy35, yvy30) 41.28/18.84 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_@2, ccd), cce), bcf) -> new_ltEs4(yvy79000, yvy80000, ccd, cce) 41.28/18.84 new_esEs29(yvy400, yvy500, app(app(ty_Either, cah), bhe)) -> new_esEs5(yvy400, yvy500, cah, bhe) 41.28/18.84 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare26(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) 41.28/18.84 new_compare8(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.84 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.84 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Ordering, bcf) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.84 new_primCompAux00(yvy260, EQ) -> yvy260 41.28/18.84 new_esEs12(False, True) -> False 41.28/18.84 new_esEs12(True, False) -> False 41.28/18.84 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 41.28/18.84 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.84 new_esEs30(yvy400, yvy500, ty_Float) -> new_esEs16(yvy400, yvy500) 41.28/18.84 new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt15(yvy79001, yvy80001) 41.28/18.84 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Float, bhe) -> new_esEs16(yvy4000, yvy3000) 41.28/18.84 new_primMulNat0(Zero, Zero) -> Zero 41.28/18.84 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Double, bhe) -> new_esEs13(yvy4000, yvy3000) 41.28/18.84 new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, ded), dee), def)) -> new_lt7(yvy79001, yvy80001, ded, dee, def) 41.28/18.84 new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) 41.28/18.84 new_esEs30(yvy400, yvy500, ty_Double) -> new_esEs13(yvy400, yvy500) 41.28/18.84 new_esEs12(True, True) -> True 41.28/18.84 new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.84 new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.84 new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 41.28/18.84 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Int, bhe) -> new_esEs9(yvy4000, yvy3000) 41.28/18.84 new_compare111(yvy79000, yvy80000, False) -> GT 41.28/18.84 new_esEs30(yvy400, yvy500, ty_Int) -> new_esEs9(yvy400, yvy500) 41.28/18.84 new_esEs31(yvy35, yvy30, app(ty_Maybe, eg)) -> new_esEs7(yvy35, yvy30, eg) 41.28/18.84 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.84 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_@0, bcf) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.84 new_compare9(@0, @0) -> EQ 41.28/18.84 new_esEs15(:(yvy4000, yvy4001), [], bac) -> False 41.28/18.84 new_esEs15([], :(yvy3000, yvy3001), bac) -> False 41.28/18.84 new_esEs20(yvy4002, yvy3002, app(app(ty_Either, dad), dae)) -> new_esEs5(yvy4002, yvy3002, dad, dae) 41.28/18.84 new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, bdd)) -> new_ltEs13(yvy7900, yvy8000, bdd) 41.28/18.84 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(app(ty_Either, cbd), cbe)) -> new_esEs5(yvy4000, yvy3000, cbd, cbe) 41.28/18.84 new_esEs24(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 41.28/18.84 new_ltEs5(EQ, LT) -> False 41.28/18.84 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, bde), bdf)) -> new_ltEs12(yvy7900, yvy8000, bde, bdf) 41.28/18.84 new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 41.28/18.84 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.84 new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.84 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.84 new_esEs29(yvy400, yvy500, app(ty_[], bac)) -> new_esEs15(yvy400, yvy500, bac) 41.28/18.84 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], fd)) -> new_esEs15(yvy4000, yvy3000, fd) 41.28/18.84 new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) 41.28/18.84 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(ty_Maybe, ceg)) -> new_ltEs17(yvy79000, yvy80000, ceg) 41.28/18.84 new_primCompAux0(yvy79000, yvy80000, yvy256, be) -> new_primCompAux00(yvy256, new_compare14(yvy79000, yvy80000, be)) 41.28/18.84 new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.84 new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.84 new_lt17(yvy79000, yvy80000, bed, bee) -> new_esEs8(new_compare19(yvy79000, yvy80000, bed, bee), LT) 41.28/18.84 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 41.28/18.84 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 41.28/18.84 new_esEs24(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 41.28/18.84 new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt8(yvy79001, yvy80001) 41.28/18.84 new_ltEs20(yvy79002, yvy80002, app(app(ty_Either, dfd), dfe)) -> new_ltEs12(yvy79002, yvy80002, dfd, dfe) 41.28/18.84 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Char) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.84 new_lt19(yvy79001, yvy80001, app(ty_Ratio, dea)) -> new_lt14(yvy79001, yvy80001, dea) 41.28/18.84 new_ltEs20(yvy79002, yvy80002, app(ty_Ratio, dfc)) -> new_ltEs13(yvy79002, yvy80002, dfc) 41.28/18.84 new_esEs20(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 41.28/18.84 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.84 new_ltEs18(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 41.28/18.84 new_esEs20(yvy4002, yvy3002, ty_Double) -> new_esEs13(yvy4002, yvy3002) 41.28/18.84 new_esEs21(yvy4000, yvy3000, app(ty_Maybe, bbe)) -> new_esEs7(yvy4000, yvy3000, bbe) 41.28/18.84 new_esEs32(yvy20, yvy15, app(app(ty_@2, dgc), dgd)) -> new_esEs4(yvy20, yvy15, dgc, dgd) 41.28/18.84 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, bfa), bfb)) -> new_esEs4(yvy4000, yvy3000, bfa, bfb) 41.28/18.84 new_compare14(yvy79000, yvy80000, app(ty_Ratio, bh)) -> new_compare17(yvy79000, yvy80000, bh) 41.28/18.84 new_compare24(yvy79000, yvy80000, True) -> EQ 41.28/18.84 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.84 new_ltEs18(yvy7900, yvy8000, app(ty_Maybe, gh)) -> new_ltEs17(yvy7900, yvy8000, gh) 41.28/18.84 new_esEs18(yvy4000, yvy3000, app(ty_[], cfg)) -> new_esEs15(yvy4000, yvy3000, cfg) 41.28/18.84 new_esEs25(yvy79001, yvy80001, app(app(ty_Either, deb), dec)) -> new_esEs5(yvy79001, yvy80001, deb, dec) 41.28/18.84 new_lt18(yvy79000, yvy80000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_lt7(yvy79000, yvy80000, ddb, ddc, ddd) 41.28/18.84 new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 41.28/18.84 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.84 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 41.28/18.84 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 41.28/18.84 new_lt20(yvy79000, yvy80000, app(ty_Ratio, gg)) -> new_lt14(yvy79000, yvy80000, gg) 41.28/18.84 new_gt0(yvy400, yvy300, h, ba) -> new_esEs8(new_compare32(yvy400, yvy300, h, ba), GT) 41.28/18.84 new_esEs32(yvy20, yvy15, app(ty_Maybe, dhd)) -> new_esEs7(yvy20, yvy15, dhd) 41.28/18.84 new_esEs31(yvy35, yvy30, app(app(ty_Either, ea), eb)) -> new_esEs5(yvy35, yvy30, ea, eb) 41.28/18.84 new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.84 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(ty_[], cef)) -> new_ltEs11(yvy79000, yvy80000, cef) 41.28/18.84 new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs9(yvy400, yvy500) 41.28/18.84 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, bgb)) -> new_esEs7(yvy4000, yvy3000, bgb) 41.28/18.84 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 41.28/18.84 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Maybe, cde), bcf) -> new_ltEs17(yvy79000, yvy80000, cde) 41.28/18.84 new_lt18(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 41.28/18.84 new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 41.28/18.84 new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) 41.28/18.84 new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt5(yvy79001, yvy80001) 41.28/18.84 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, bfd), bfe)) -> new_esEs5(yvy4000, yvy3000, bfd, bfe) 41.28/18.84 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat1(yvy8000, Zero) 41.28/18.84 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cac), cad), cae), bhe) -> new_esEs6(yvy4000, yvy3000, cac, cad, cae) 41.28/18.84 new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) 41.28/18.84 new_lt18(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 41.28/18.84 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.84 new_compare110(yvy79000, yvy80000, True, da, db, dc) -> LT 41.28/18.84 new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) 41.28/18.84 new_compare14(yvy79000, yvy80000, app(app(app(ty_@3, cc), cd), ce)) -> new_compare13(yvy79000, yvy80000, cc, cd, ce) 41.28/18.84 new_esEs15(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bac) -> new_asAs(new_esEs21(yvy4000, yvy3000, bac), new_esEs15(yvy4001, yvy3001, bac)) 41.28/18.84 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs6(yvy4000, yvy3000, bff, bfg, bfh) 41.28/18.84 new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 41.28/18.84 new_esEs27(yvy4001, yvy3001, app(ty_Maybe, bhd)) -> new_esEs7(yvy4001, yvy3001, bhd) 41.28/18.84 new_compare12(yvy79000, yvy80000, eh) -> new_compare28(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, eh), eh) 41.28/18.84 new_compare112(yvy234, yvy235, False, cfc, cfd) -> GT 41.28/18.84 new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs6(yvy4000, yvy3000, cgb, cgc, cgd) 41.28/18.84 new_ltEs21(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) 41.28/18.84 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cag), bhe) -> new_esEs7(yvy4000, yvy3000, cag) 41.28/18.84 new_ltEs5(EQ, GT) -> True 41.28/18.84 new_esEs31(yvy35, yvy30, app(app(ty_@2, df), dg)) -> new_esEs4(yvy35, yvy30, df, dg) 41.28/18.84 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Float, bcf) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.84 new_ltEs20(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) 41.28/18.84 new_not(False) -> True 41.28/18.84 new_esEs28(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 41.28/18.84 new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs16(yvy400, yvy500) 41.28/18.84 new_esEs18(yvy4000, yvy3000, app(app(ty_Either, cfh), cga)) -> new_esEs5(yvy4000, yvy3000, cfh, cga) 41.28/18.84 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.84 new_compare25(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs8(yvy79000, yvy80000)) 41.28/18.84 new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs8(yvy35, yvy30) 41.28/18.84 new_ltEs13(yvy7900, yvy8000, bcd) -> new_fsEs(new_compare17(yvy7900, yvy8000, bcd)) 41.28/18.84 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), beg, beh) -> new_asAs(new_esEs26(yvy4000, yvy3000, beg), new_esEs27(yvy4001, yvy3001, beh)) 41.28/18.84 new_esEs25(yvy79001, yvy80001, ty_@0) -> new_esEs14(yvy79001, yvy80001) 41.28/18.84 new_esEs20(yvy4002, yvy3002, app(ty_Maybe, dbb)) -> new_esEs7(yvy4002, yvy3002, dbb) 41.28/18.84 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_@2, ha), hb)) -> new_ltEs4(yvy79000, yvy80000, ha, hb) 41.28/18.84 new_ltEs5(GT, GT) -> True 41.28/18.84 new_esEs8(LT, GT) -> False 41.28/18.84 new_esEs8(GT, LT) -> False 41.28/18.84 new_compare29(yvy79000, yvy80000, True) -> EQ 41.28/18.84 new_esEs31(yvy35, yvy30, app(ty_[], dh)) -> new_esEs15(yvy35, yvy30, dh) 41.28/18.84 new_esEs32(yvy20, yvy15, app(ty_Ratio, dhc)) -> new_esEs17(yvy20, yvy15, dhc) 41.28/18.84 new_esEs5(Left(yvy4000), Right(yvy3000), cah, bhe) -> False 41.28/18.84 new_esEs5(Right(yvy4000), Left(yvy3000), cah, bhe) -> False 41.28/18.84 new_esEs20(yvy4002, yvy3002, ty_Bool) -> new_esEs12(yvy4002, yvy3002) 41.28/18.84 new_lt19(yvy79001, yvy80001, app(ty_Maybe, deh)) -> new_lt6(yvy79001, yvy80001, deh) 41.28/18.84 new_lt13(yvy79000, yvy80000, bc, bd) -> new_esEs8(new_compare16(yvy79000, yvy80000, bc, bd), LT) 41.28/18.84 new_ltEs21(yvy79001, yvy80001, ty_Ordering) -> new_ltEs5(yvy79001, yvy80001) 41.28/18.84 new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs10(yvy35, yvy30) 41.28/18.84 new_esEs19(yvy4001, yvy3001, app(ty_[], cha)) -> new_esEs15(yvy4001, yvy3001, cha) 41.28/18.84 new_ltEs18(yvy7900, yvy8000, app(ty_Ratio, bcd)) -> new_ltEs13(yvy7900, yvy8000, bcd) 41.28/18.84 new_compare14(yvy79000, yvy80000, app(ty_Maybe, cg)) -> new_compare12(yvy79000, yvy80000, cg) 41.28/18.84 new_lt8(yvy79000, yvy80000) -> new_esEs8(new_compare26(yvy79000, yvy80000), LT) 41.28/18.84 new_compare113(yvy79000, yvy80000, False, eh) -> GT 41.28/18.84 new_esEs30(yvy400, yvy500, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs6(yvy400, yvy500, dbh, dca, dcb) 41.28/18.84 new_esEs30(yvy400, yvy500, app(app(ty_Either, dbf), dbg)) -> new_esEs5(yvy400, yvy500, dbf, dbg) 41.28/18.84 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.84 new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs12(yvy400, yvy500) 41.28/18.84 new_primPlusNat0(Succ(yvy2010), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2010, yvy300000))) 41.28/18.84 new_lt14(yvy79000, yvy80000, gg) -> new_esEs8(new_compare17(yvy79000, yvy80000, gg), LT) 41.28/18.84 new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 41.28/18.84 new_esEs19(yvy4001, yvy3001, app(ty_Maybe, chh)) -> new_esEs7(yvy4001, yvy3001, chh) 41.28/18.84 new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 41.28/18.84 new_ltEs20(yvy79002, yvy80002, ty_Char) -> new_ltEs6(yvy79002, yvy80002) 41.28/18.84 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 41.28/18.84 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 41.28/18.84 new_lt16(yvy79000, yvy80000) -> new_esEs8(new_compare15(yvy79000, yvy80000), LT) 41.28/18.84 new_lt12(yvy79000, yvy80000) -> new_esEs8(new_compare6(yvy79000, yvy80000), LT) 41.28/18.84 new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 41.28/18.84 new_primPlusNat1(Zero, Zero) -> Zero 41.28/18.84 new_esEs6(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ceh, cfa, cfb) -> new_asAs(new_esEs18(yvy4000, yvy3000, ceh), new_asAs(new_esEs19(yvy4001, yvy3001, cfa), new_esEs20(yvy4002, yvy3002, cfb))) 41.28/18.84 new_esEs20(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 41.28/18.84 new_ltEs18(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 41.28/18.84 new_ltEs20(yvy79002, yvy80002, ty_Int) -> new_ltEs7(yvy79002, yvy80002) 41.28/18.84 new_ltEs21(yvy79001, yvy80001, app(app(ty_@2, dhe), dhf)) -> new_ltEs4(yvy79001, yvy80001, dhe, dhf) 41.28/18.84 new_esEs27(yvy4001, yvy3001, app(app(ty_@2, bgc), bgd)) -> new_esEs4(yvy4001, yvy3001, bgc, bgd) 41.28/18.84 new_lt18(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 41.28/18.84 new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 41.28/18.84 new_esEs28(yvy79000, yvy80000, app(ty_Ratio, gg)) -> new_esEs17(yvy79000, yvy80000, gg) 41.28/18.84 new_compare11(yvy79000, yvy80000, True) -> LT 41.28/18.84 new_esEs30(yvy400, yvy500, app(ty_Maybe, dcd)) -> new_esEs7(yvy400, yvy500, dcd) 41.28/18.84 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.84 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.84 new_esEs30(yvy400, yvy500, ty_Bool) -> new_esEs12(yvy400, yvy500) 41.28/18.84 new_ltEs4(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), bcb, bcc) -> new_pePe(new_lt20(yvy79000, yvy80000, bcb), new_asAs(new_esEs28(yvy79000, yvy80000, bcb), new_ltEs21(yvy79001, yvy80001, bcc))) 41.28/18.84 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 41.28/18.84 new_lt19(yvy79001, yvy80001, app(app(ty_@2, ddg), ddh)) -> new_lt13(yvy79001, yvy80001, ddg, ddh) 41.28/18.84 new_compare31(yvy20, yvy15, ge, gf) -> new_compare210(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, ge), ge, gf) 41.28/18.84 new_compare16(yvy79000, yvy80000, bc, bd) -> new_compare23(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.84 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 41.28/18.84 new_esEs28(yvy79000, yvy80000, app(app(ty_@2, bc), bd)) -> new_esEs4(yvy79000, yvy80000, bc, bd) 41.28/18.84 new_primCmpNat0(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.84 new_esEs20(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) 41.28/18.84 new_compare19(yvy79000, yvy80000, bed, bee) -> new_compare210(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bed, bee), bed, bee) 41.28/18.84 new_compare30(yvy35, yvy30, dd, de) -> new_compare210(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, de), dd, de) 41.28/18.84 new_compare3(:(yvy79000, yvy79001), [], be) -> GT 41.28/18.84 new_compare14(yvy79000, yvy80000, ty_Bool) -> new_compare15(yvy79000, yvy80000) 41.28/18.84 new_esEs28(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 41.28/18.84 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_[], baa)) -> new_ltEs11(yvy79000, yvy80000, baa) 41.28/18.84 new_esEs5(Left(yvy4000), Left(yvy3000), ty_@0, bhe) -> new_esEs14(yvy4000, yvy3000) 41.28/18.84 new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs11(yvy400, yvy500) 41.28/18.84 new_compare26(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) 41.28/18.84 new_gt(yvy20, yvy15, ge, gf) -> new_esEs8(new_compare31(yvy20, yvy15, ge, gf), GT) 41.28/18.84 new_ltEs18(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 41.28/18.84 new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs10(yvy400, yvy500) 41.28/18.84 new_compare32(yvy400, yvy300, h, ba) -> new_compare210(Left(yvy400), Right(yvy300), False, h, ba) 41.28/18.84 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 41.28/18.84 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 41.28/18.84 new_primCmpNat1(yvy7900, Succ(yvy8000)) -> new_primCmpNat0(yvy7900, yvy8000) 41.28/18.84 new_esEs18(yvy4000, yvy3000, app(ty_Maybe, cgf)) -> new_esEs7(yvy4000, yvy3000, cgf) 41.28/18.84 new_esEs29(yvy400, yvy500, app(app(ty_@2, beg), beh)) -> new_esEs4(yvy400, yvy500, beg, beh) 41.28/18.84 new_lt20(yvy79000, yvy80000, app(ty_Maybe, eh)) -> new_lt6(yvy79000, yvy80000, eh) 41.28/18.84 new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 41.28/18.84 new_primEqNat0(Zero, Zero) -> True 41.28/18.84 new_esEs28(yvy79000, yvy80000, app(app(ty_Either, bed), bee)) -> new_esEs5(yvy79000, yvy80000, bed, bee) 41.28/18.84 new_compare210(Right(yvy7900), Right(yvy8000), False, bbh, bca) -> new_compare112(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, bca), bbh, bca) 41.28/18.84 new_esEs21(yvy4000, yvy3000, app(ty_[], baf)) -> new_esEs15(yvy4000, yvy3000, baf) 41.28/18.84 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.84 new_lt11(yvy79000, yvy80000, ccc) -> new_esEs8(new_compare3(yvy79000, yvy80000, ccc), LT) 41.28/18.84 new_esEs28(yvy79000, yvy80000, app(app(app(ty_@3, da), db), dc)) -> new_esEs6(yvy79000, yvy80000, da, db, dc) 41.28/18.84 new_compare29(yvy79000, yvy80000, False) -> new_compare111(yvy79000, yvy80000, new_ltEs8(yvy79000, yvy80000)) 41.28/18.84 new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs8(yvy400, yvy500) 41.28/18.84 new_compare33(yvy400, yvy300, h, ba) -> new_compare210(Right(yvy400), Left(yvy300), False, h, ba) 41.28/18.84 new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 41.28/18.84 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.84 new_esEs29(yvy400, yvy500, app(ty_Ratio, bef)) -> new_esEs17(yvy400, yvy500, bef) 41.28/18.84 new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.84 new_asAs(False, yvy222) -> False 41.28/18.84 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.84 new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 41.28/18.84 new_lt7(yvy79000, yvy80000, da, db, dc) -> new_esEs8(new_compare13(yvy79000, yvy80000, da, db, dc), LT) 41.28/18.84 new_esEs30(yvy400, yvy500, app(ty_Ratio, dcc)) -> new_esEs17(yvy400, yvy500, dcc) 41.28/18.84 new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs12(yvy35, yvy30) 41.28/18.84 new_ltEs5(GT, EQ) -> False 41.28/18.84 new_ltEs20(yvy79002, yvy80002, ty_Ordering) -> new_ltEs5(yvy79002, yvy80002) 41.28/18.84 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.84 new_esEs18(yvy4000, yvy3000, app(ty_Ratio, cge)) -> new_esEs17(yvy4000, yvy3000, cge) 41.28/18.84 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.84 new_esEs29(yvy400, yvy500, app(ty_Maybe, fa)) -> new_esEs7(yvy400, yvy500, fa) 41.28/18.84 new_esEs30(yvy400, yvy500, ty_Integer) -> new_esEs10(yvy400, yvy500) 41.28/18.84 new_ltEs21(yvy79001, yvy80001, app(ty_[], eae)) -> new_ltEs11(yvy79001, yvy80001, eae) 41.28/18.84 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Int, bcf) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.84 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.84 new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 41.28/18.84 new_lt18(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 41.28/18.84 new_lt18(yvy79000, yvy80000, app(app(ty_@2, dce), dcf)) -> new_lt13(yvy79000, yvy80000, dce, dcf) 41.28/18.84 new_compare210(Right(yvy7900), Left(yvy8000), False, bbh, bca) -> GT 41.28/18.84 new_esEs8(EQ, GT) -> False 41.28/18.84 new_esEs8(GT, EQ) -> False 41.28/18.84 new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.84 new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat0(yvy8000, yvy7900) 41.28/18.84 new_ltEs18(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 41.28/18.84 new_ltEs16(yvy7900, yvy8000) -> new_fsEs(new_compare9(yvy7900, yvy8000)) 41.28/18.84 41.28/18.84 The set Q consists of the following terms: 41.28/18.84 41.28/18.84 new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_ltEs18(x0, x1, ty_Bool) 41.28/18.84 new_ltEs21(x0, x1, ty_Ordering) 41.28/18.84 new_esEs28(x0, x1, ty_Integer) 41.28/18.84 new_esEs8(EQ, EQ) 41.28/18.84 new_esEs7(Nothing, Nothing, x0) 41.28/18.84 new_esEs21(x0, x1, ty_Int) 41.28/18.84 new_ltEs20(x0, x1, ty_Char) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.84 new_lt18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_compare12(x0, x1, x2) 41.28/18.84 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_esEs26(x0, x1, ty_Float) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 41.28/18.84 new_primMulInt(Neg(x0), Neg(x1)) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), ty_Char) 41.28/18.84 new_ltEs18(x0, x1, ty_@0) 41.28/18.84 new_ltEs21(x0, x1, ty_Double) 41.28/18.84 new_primPlusNat1(Zero, Zero) 41.28/18.84 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_esEs30(x0, x1, ty_Bool) 41.28/18.84 new_compare14(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_ltEs15(x0, x1) 41.28/18.84 new_compare110(x0, x1, True, x2, x3, x4) 41.28/18.84 new_compare3(:(x0, x1), [], x2) 41.28/18.84 new_esEs24(x0, x1, ty_Integer) 41.28/18.84 new_esEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_esEs25(x0, x1, ty_Float) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.84 new_esEs18(x0, x1, ty_Integer) 41.28/18.84 new_compare14(x0, x1, ty_Ordering) 41.28/18.84 new_esEs15(:(x0, x1), [], x2) 41.28/18.84 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 41.28/18.84 new_esEs30(x0, x1, ty_Integer) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.84 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_esEs25(x0, x1, app(ty_[], x2)) 41.28/18.84 new_compare210(x0, x1, True, x2, x3) 41.28/18.84 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_compare14(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.84 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.84 new_primCompAux00(x0, GT) 41.28/18.84 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_primEqInt(Pos(Zero), Pos(Zero)) 41.28/18.84 new_primMulInt(Pos(x0), Pos(x1)) 41.28/18.84 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_esEs21(x0, x1, ty_Double) 41.28/18.84 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs32(x0, x1, ty_Integer) 41.28/18.84 new_compare29(x0, x1, False) 41.28/18.84 new_lt11(x0, x1, x2) 41.28/18.84 new_esEs27(x0, x1, ty_Float) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), ty_Int) 41.28/18.84 new_primCmpNat0(Zero, Succ(x0)) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), ty_@0) 41.28/18.84 new_esEs21(x0, x1, ty_Char) 41.28/18.84 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.84 new_esEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_esEs32(x0, x1, ty_Float) 41.28/18.84 new_ltEs21(x0, x1, ty_Int) 41.28/18.84 new_primEqInt(Neg(Zero), Neg(Zero)) 41.28/18.84 new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.84 new_primCmpNat0(Succ(x0), Succ(x1)) 41.28/18.84 new_compare11(x0, x1, False) 41.28/18.84 new_ltEs7(x0, x1) 41.28/18.84 new_esEs27(x0, x1, app(ty_[], x2)) 41.28/18.84 new_primPlusNat0(Zero, x0) 41.28/18.84 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.84 new_esEs28(x0, x1, ty_Bool) 41.28/18.84 new_sr(x0, x1) 41.28/18.84 new_esEs12(False, True) 41.28/18.84 new_esEs12(True, False) 41.28/18.84 new_ltEs20(x0, x1, ty_Double) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.84 new_ltEs5(LT, GT) 41.28/18.84 new_ltEs5(GT, LT) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), ty_Bool) 41.28/18.84 new_esEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_esEs30(x0, x1, app(ty_[], x2)) 41.28/18.84 new_compare33(x0, x1, x2, x3) 41.28/18.84 new_primCmpNat2(Succ(x0), x1) 41.28/18.84 new_ltEs20(x0, x1, ty_@0) 41.28/18.84 new_esEs28(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_lt12(x0, x1) 41.28/18.84 new_ltEs8(False, False) 41.28/18.84 new_esEs5(Left(x0), Right(x1), x2, x3) 41.28/18.84 new_esEs5(Right(x0), Left(x1), x2, x3) 41.28/18.84 new_primCmpNat2(Zero, x0) 41.28/18.84 new_esEs18(x0, x1, ty_@0) 41.28/18.84 new_compare26(Integer(x0), Integer(x1)) 41.28/18.84 new_esEs28(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_esEs32(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.84 new_esEs31(x0, x1, ty_Bool) 41.28/18.84 new_esEs19(x0, x1, ty_Integer) 41.28/18.84 new_esEs24(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_ltEs21(x0, x1, ty_Char) 41.28/18.84 new_esEs18(x0, x1, ty_Bool) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), ty_Double) 41.28/18.84 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.84 new_esEs7(Just(x0), Just(x1), ty_@0) 41.28/18.84 new_compare28(x0, x1, False, x2) 41.28/18.84 new_compare29(x0, x1, True) 41.28/18.84 new_ltEs20(x0, x1, ty_Bool) 41.28/18.84 new_esEs7(Just(x0), Just(x1), ty_Bool) 41.28/18.84 new_esEs18(x0, x1, ty_Float) 41.28/18.84 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_lt10(x0, x1) 41.28/18.84 new_lt18(x0, x1, ty_Float) 41.28/18.84 new_esEs30(x0, x1, ty_Char) 41.28/18.84 new_primEqInt(Pos(Zero), Neg(Zero)) 41.28/18.84 new_primEqInt(Neg(Zero), Pos(Zero)) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.84 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_esEs21(x0, x1, ty_Ordering) 41.28/18.84 new_ltEs12(Left(x0), Right(x1), x2, x3) 41.28/18.84 new_ltEs12(Right(x0), Left(x1), x2, x3) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.84 new_ltEs20(x0, x1, ty_Int) 41.28/18.84 new_ltEs18(x0, x1, ty_Integer) 41.28/18.84 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.84 new_esEs31(x0, x1, ty_Double) 41.28/18.84 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.84 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.84 new_esEs7(Just(x0), Just(x1), ty_Int) 41.28/18.84 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_lt19(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 41.28/18.84 new_esEs31(x0, x1, ty_Char) 41.28/18.84 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.84 new_lt20(x0, x1, ty_Double) 41.28/18.84 new_esEs30(x0, x1, ty_@0) 41.28/18.84 new_esEs31(x0, x1, ty_@0) 41.28/18.84 new_compare30(x0, x1, x2, x3) 41.28/18.84 new_lt17(x0, x1, x2, x3) 41.28/18.84 new_esEs25(x0, x1, ty_@0) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 41.28/18.84 new_esEs7(Just(x0), Just(x1), ty_Char) 41.28/18.84 new_esEs29(x0, x1, ty_Integer) 41.28/18.84 new_esEs28(x0, x1, ty_@0) 41.28/18.84 new_esEs31(x0, x1, ty_Int) 41.28/18.84 new_gt1(x0, x1, x2, x3) 41.28/18.84 new_esEs7(Just(x0), Just(x1), ty_Double) 41.28/18.84 new_esEs15([], :(x0, x1), x2) 41.28/18.84 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_esEs24(x0, x1, app(ty_[], x2)) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 41.28/18.84 new_esEs28(x0, x1, ty_Float) 41.28/18.84 new_esEs19(x0, x1, app(ty_[], x2)) 41.28/18.84 new_esEs30(x0, x1, ty_Int) 41.28/18.84 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_primEqNat0(Succ(x0), Zero) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.84 new_compare14(x0, x1, ty_@0) 41.28/18.84 new_esEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_primMulNat0(Succ(x0), Succ(x1)) 41.28/18.84 new_esEs20(x0, x1, ty_Float) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.84 new_esEs25(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_ltEs18(x0, x1, ty_Float) 41.28/18.84 new_compare114(x0, x1, False, x2, x3) 41.28/18.84 new_esEs28(x0, x1, ty_Int) 41.28/18.84 new_ltEs21(x0, x1, ty_Bool) 41.28/18.84 new_esEs22(x0, x1, ty_Integer) 41.28/18.84 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_ltEs19(x0, x1, ty_Ordering) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 41.28/18.84 new_gt0(x0, x1, x2, x3) 41.28/18.84 new_ltEs20(x0, x1, ty_Integer) 41.28/18.84 new_esEs28(x0, x1, ty_Char) 41.28/18.84 new_primEqNat0(Succ(x0), Succ(x1)) 41.28/18.84 new_esEs30(x0, x1, ty_Float) 41.28/18.84 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs18(x0, x1, app(ty_[], x2)) 41.28/18.84 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_lt20(x0, x1, ty_Float) 41.28/18.84 new_compare24(x0, x1, True) 41.28/18.84 new_compare14(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs7(Just(x0), Just(x1), ty_Integer) 41.28/18.84 new_compare19(x0, x1, x2, x3) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), ty_Integer) 41.28/18.84 new_ltEs18(x0, x1, ty_Int) 41.28/18.84 new_esEs21(x0, x1, ty_Bool) 41.28/18.84 new_primPlusNat0(Succ(x0), x1) 41.28/18.84 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.84 new_esEs25(x0, x1, ty_Bool) 41.28/18.84 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 41.28/18.84 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.84 new_esEs20(x0, x1, ty_Int) 41.28/18.84 new_ltEs5(EQ, GT) 41.28/18.84 new_ltEs5(GT, EQ) 41.28/18.84 new_esEs29(x0, x1, ty_Bool) 41.28/18.84 new_compare14(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.84 new_lt6(x0, x1, x2) 41.28/18.84 new_ltEs18(x0, x1, ty_Char) 41.28/18.84 new_esEs20(x0, x1, ty_Char) 41.28/18.84 new_ltEs17(Nothing, Just(x0), x1) 41.28/18.84 new_primMulNat0(Succ(x0), Zero) 41.28/18.84 new_esEs29(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_ltEs20(x0, x1, app(ty_[], x2)) 41.28/18.84 new_ltEs19(x0, x1, app(ty_[], x2)) 41.28/18.84 new_esEs8(GT, GT) 41.28/18.84 new_gt2(x0, x1, x2, x3) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.84 new_sr0(Integer(x0), Integer(x1)) 41.28/18.84 new_esEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs8(LT, EQ) 41.28/18.84 new_esEs8(EQ, LT) 41.28/18.84 new_ltEs19(x0, x1, ty_Float) 41.28/18.84 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.84 new_esEs15(:(x0, x1), :(x2, x3), x4) 41.28/18.84 new_primCmpInt(Neg(Zero), Neg(Zero)) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), ty_Ordering) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.84 new_esEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.84 new_compare14(x0, x1, app(ty_[], x2)) 41.28/18.84 new_esEs7(Just(x0), Just(x1), ty_Ordering) 41.28/18.84 new_compare25(x0, x1) 41.28/18.84 new_esEs8(LT, LT) 41.28/18.84 new_ltEs19(x0, x1, ty_Char) 41.28/18.84 new_esEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_primCmpInt(Pos(Zero), Neg(Zero)) 41.28/18.84 new_primCmpInt(Neg(Zero), Pos(Zero)) 41.28/18.84 new_esEs24(x0, x1, ty_Double) 41.28/18.84 new_esEs31(x0, x1, ty_Ordering) 41.28/18.84 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_ltEs20(x0, x1, ty_Ordering) 41.28/18.84 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs24(x0, x1, ty_@0) 41.28/18.84 new_compare11(x0, x1, True) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.84 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_lt20(x0, x1, app(ty_[], x2)) 41.28/18.84 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_esEs32(x0, x1, ty_Int) 41.28/18.84 new_lt19(x0, x1, ty_Double) 41.28/18.84 new_esEs26(x0, x1, app(ty_[], x2)) 41.28/18.84 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_ltEs8(True, False) 41.28/18.84 new_ltEs8(False, True) 41.28/18.84 new_ltEs19(x0, x1, ty_Int) 41.28/18.84 new_esEs25(x0, x1, ty_Integer) 41.28/18.84 new_compare27(x0, x1, False, x2, x3, x4) 41.28/18.84 new_lt8(x0, x1) 41.28/18.84 new_esEs31(x0, x1, ty_Integer) 41.28/18.84 new_esEs29(x0, x1, app(ty_[], x2)) 41.28/18.84 new_esEs27(x0, x1, ty_@0) 41.28/18.84 new_esEs24(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_compare3([], :(x0, x1), x2) 41.28/18.84 new_esEs28(x0, x1, ty_Ordering) 41.28/18.84 new_pePe(True, x0) 41.28/18.84 new_esEs19(x0, x1, ty_Double) 41.28/18.84 new_esEs31(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs19(x0, x1, ty_@0) 41.28/18.84 new_esEs32(x0, x1, ty_Char) 41.28/18.84 new_esEs21(x0, x1, ty_Float) 41.28/18.84 new_esEs25(x0, x1, ty_Ordering) 41.28/18.84 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 41.28/18.84 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 41.28/18.84 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_asAs(False, x0) 41.28/18.84 new_fsEs(x0) 41.28/18.84 new_esEs30(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 41.28/18.84 new_compare16(x0, x1, x2, x3) 41.28/18.84 new_esEs32(x0, x1, ty_Bool) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 41.28/18.84 new_primPlusNat1(Succ(x0), Succ(x1)) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.84 new_lt7(x0, x1, x2, x3, x4) 41.28/18.84 new_lt19(x0, x1, ty_@0) 41.28/18.84 new_lt13(x0, x1, x2, x3) 41.28/18.84 new_compare10(x0, x1, True, x2, x3) 41.28/18.84 new_ltEs19(x0, x1, ty_Bool) 41.28/18.84 new_esEs29(x0, x1, ty_Float) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.84 new_esEs27(x0, x1, ty_Double) 41.28/18.84 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_compare14(x0, x1, ty_Double) 41.28/18.84 new_compare113(x0, x1, True, x2) 41.28/18.84 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_lt18(x0, x1, ty_Int) 41.28/18.84 new_esEs20(x0, x1, ty_Bool) 41.28/18.84 new_compare3([], [], x0) 41.28/18.84 new_compare114(x0, x1, True, x2, x3) 41.28/18.84 new_esEs26(x0, x1, ty_Ordering) 41.28/18.84 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_esEs22(x0, x1, ty_Int) 41.28/18.84 new_ltEs19(x0, x1, ty_@0) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 41.28/18.84 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.84 new_compare24(x0, x1, False) 41.28/18.84 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.84 new_esEs27(x0, x1, ty_Int) 41.28/18.84 new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_primCompAux00(x0, LT) 41.28/18.84 new_esEs20(x0, x1, ty_@0) 41.28/18.84 new_compare14(x0, x1, ty_Float) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.84 new_lt20(x0, x1, ty_Integer) 41.28/18.84 new_primCmpNat0(Succ(x0), Zero) 41.28/18.84 new_primMulNat0(Zero, Zero) 41.28/18.84 new_lt4(x0, x1) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 41.28/18.84 new_esEs29(x0, x1, ty_Ordering) 41.28/18.84 new_esEs27(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs29(x0, x1, ty_Int) 41.28/18.84 new_lt20(x0, x1, ty_Bool) 41.28/18.84 new_ltEs21(x0, x1, ty_Float) 41.28/18.84 new_pePe(False, x0) 41.28/18.84 new_ltEs18(x0, x1, app(ty_[], x2)) 41.28/18.84 new_esEs29(x0, x1, ty_Double) 41.28/18.84 new_ltEs14(x0, x1) 41.28/18.84 new_compare9(@0, @0) 41.28/18.84 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.84 new_esEs28(x0, x1, app(ty_[], x2)) 41.28/18.84 new_compare8(Char(x0), Char(x1)) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.84 new_esEs20(x0, x1, app(ty_[], x2)) 41.28/18.84 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 41.28/18.84 new_esEs29(x0, x1, ty_Char) 41.28/18.84 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_compare23(x0, x1, True, x2, x3) 41.28/18.84 new_esEs23(x0, x1, ty_Int) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.84 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs32(x0, x1, ty_Ordering) 41.28/18.84 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_ltEs13(x0, x1, x2) 41.28/18.84 new_esEs7(Just(x0), Nothing, x1) 41.28/18.84 new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.84 new_ltEs19(x0, x1, ty_Integer) 41.28/18.84 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 41.28/18.84 new_esEs25(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_lt19(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_lt18(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_lt19(x0, x1, ty_Ordering) 41.28/18.84 new_lt20(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_not(True) 41.28/18.84 new_ltEs20(x0, x1, ty_Float) 41.28/18.84 new_lt9(x0, x1) 41.28/18.84 new_esEs15([], [], x0) 41.28/18.84 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 41.28/18.84 new_primCmpNat1(x0, Zero) 41.28/18.84 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_lt20(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs18(x0, x1, ty_Double) 41.28/18.84 new_esEs29(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs8(EQ, GT) 41.28/18.84 new_esEs8(GT, EQ) 41.28/18.84 new_esEs12(False, False) 41.28/18.84 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.84 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.84 new_compare14(x0, x1, ty_Integer) 41.28/18.84 new_esEs24(x0, x1, ty_Ordering) 41.28/18.84 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 41.28/18.84 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 41.28/18.84 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 41.28/18.84 new_compare32(x0, x1, x2, x3) 41.28/18.84 new_ltEs6(x0, x1) 41.28/18.84 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.84 new_esEs28(x0, x1, ty_Double) 41.28/18.84 new_esEs7(Just(x0), Just(x1), ty_Float) 41.28/18.84 new_lt18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.84 new_esEs20(x0, x1, ty_Integer) 41.28/18.84 new_compare210(Left(x0), Right(x1), False, x2, x3) 41.28/18.84 new_compare210(Right(x0), Left(x1), False, x2, x3) 41.28/18.84 new_compare28(x0, x1, True, x2) 41.28/18.84 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.84 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_esEs31(x0, x1, ty_Float) 41.28/18.84 new_esEs27(x0, x1, ty_Ordering) 41.28/18.84 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 41.28/18.84 new_lt15(x0, x1) 41.28/18.84 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.84 new_lt19(x0, x1, ty_Integer) 41.28/18.84 new_esEs31(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_esEs26(x0, x1, ty_Int) 41.28/18.84 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.84 new_compare111(x0, x1, False) 41.28/18.84 new_lt18(x0, x1, ty_Double) 41.28/18.84 new_esEs25(x0, x1, ty_Double) 41.28/18.84 new_lt18(x0, x1, ty_Char) 41.28/18.84 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs30(x0, x1, ty_Double) 41.28/18.84 new_lt20(x0, x1, ty_Char) 41.28/18.84 new_lt20(x0, x1, ty_@0) 41.28/18.84 new_esEs25(x0, x1, ty_Char) 41.28/18.84 new_lt18(x0, x1, ty_@0) 41.28/18.84 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs19(x0, x1, ty_Ordering) 41.28/18.84 new_compare112(x0, x1, False, x2, x3) 41.28/18.84 new_esEs31(x0, x1, app(ty_[], x2)) 41.28/18.84 new_esEs18(x0, x1, ty_Int) 41.28/18.84 new_esEs21(x0, x1, app(ty_[], x2)) 41.28/18.84 new_compare23(x0, x1, False, x2, x3) 41.28/18.84 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.84 new_esEs26(x0, x1, ty_Double) 41.28/18.84 new_esEs26(x0, x1, ty_Char) 41.28/18.84 new_lt20(x0, x1, ty_Int) 41.28/18.84 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_compare210(Left(x0), Left(x1), False, x2, x3) 41.28/18.84 new_compare3(:(x0, x1), :(x2, x3), x4) 41.28/18.84 new_esEs11(Char(x0), Char(x1)) 41.28/18.84 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs30(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_ltEs5(LT, LT) 41.28/18.84 new_esEs26(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs25(x0, x1, ty_Int) 41.28/18.84 new_primCmpInt(Pos(Zero), Pos(Zero)) 41.28/18.84 new_compare113(x0, x1, False, x2) 41.28/18.84 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_esEs18(x0, x1, ty_Char) 41.28/18.84 new_compare110(x0, x1, False, x2, x3, x4) 41.28/18.84 new_esEs21(x0, x1, ty_Integer) 41.28/18.84 new_compare31(x0, x1, x2, x3) 41.28/18.84 new_esEs32(x0, x1, app(ty_[], x2)) 41.28/18.84 new_esEs14(@0, @0) 41.28/18.84 new_ltEs18(x0, x1, ty_Double) 41.28/18.84 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_esEs20(x0, x1, ty_Ordering) 41.28/18.84 new_ltEs18(x0, x1, ty_Ordering) 41.28/18.84 new_esEs24(x0, x1, ty_Char) 41.28/18.84 new_ltEs5(LT, EQ) 41.28/18.84 new_ltEs5(EQ, LT) 41.28/18.84 new_esEs20(x0, x1, ty_Double) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.84 new_compare10(x0, x1, False, x2, x3) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 41.28/18.84 new_esEs27(x0, x1, ty_Integer) 41.28/18.84 new_ltEs5(GT, GT) 41.28/18.84 new_ltEs19(x0, x1, ty_Double) 41.28/18.84 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_esEs26(x0, x1, ty_Bool) 41.28/18.84 new_compare15(x0, x1) 41.28/18.84 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.84 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 41.28/18.84 new_compare14(x0, x1, ty_Bool) 41.28/18.84 new_esEs26(x0, x1, ty_@0) 41.28/18.84 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_esEs32(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 41.28/18.84 new_lt18(x0, x1, ty_Integer) 41.28/18.84 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_esEs10(Integer(x0), Integer(x1)) 41.28/18.84 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 41.28/18.84 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 41.28/18.84 new_esEs8(LT, GT) 41.28/18.84 new_esEs8(GT, LT) 41.28/18.84 new_esEs9(x0, x1) 41.28/18.84 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_lt19(x0, x1, app(ty_[], x2)) 41.28/18.84 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.84 new_ltEs21(x0, x1, ty_Integer) 41.28/18.84 new_lt18(x0, x1, ty_Bool) 41.28/18.84 new_compare17(:%(x0, x1), :%(x2, x3), ty_Int) 41.28/18.84 new_esEs26(x0, x1, ty_Integer) 41.28/18.84 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 41.28/18.84 new_esEs32(x0, x1, ty_@0) 41.28/18.84 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.84 new_ltEs17(Just(x0), Nothing, x1) 41.28/18.84 new_gt(x0, x1, x2, x3) 41.28/18.84 new_esEs27(x0, x1, app(ty_Maybe, x2)) 41.28/18.84 new_lt18(x0, x1, app(ty_Ratio, x2)) 41.28/18.84 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.84 new_esEs23(x0, x1, ty_Integer) 41.28/18.84 new_compare210(Right(x0), Right(x1), False, x2, x3) 41.28/18.85 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 41.28/18.85 new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.85 new_ltEs21(x0, x1, ty_@0) 41.28/18.85 new_asAs(True, x0) 41.28/18.85 new_compare112(x0, x1, True, x2, x3) 41.28/18.85 new_lt16(x0, x1) 41.28/18.85 new_primCompAux00(x0, EQ) 41.28/18.85 new_ltEs11(x0, x1, x2) 41.28/18.85 new_compare111(x0, x1, True) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.85 new_primPlusNat1(Zero, Succ(x0)) 41.28/18.85 new_esEs24(x0, x1, ty_Float) 41.28/18.85 new_primEqNat0(Zero, Zero) 41.28/18.85 new_compare14(x0, x1, ty_Char) 41.28/18.85 new_compare27(x0, x1, True, x2, x3, x4) 41.28/18.85 new_esEs24(x0, x1, ty_Bool) 41.28/18.85 new_esEs7(Nothing, Just(x0), x1) 41.28/18.85 new_lt19(x0, x1, ty_Bool) 41.28/18.85 new_esEs12(True, True) 41.28/18.85 new_primCompAux0(x0, x1, x2, x3) 41.28/18.85 new_not(False) 41.28/18.85 new_ltEs17(Just(x0), Just(x1), ty_Float) 41.28/18.85 new_lt18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 41.28/18.85 new_esEs17(:%(x0, x1), :%(x2, x3), x4) 41.28/18.85 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.85 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_primPlusNat1(Succ(x0), Zero) 41.28/18.85 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.85 new_compare14(x0, x1, ty_Int) 41.28/18.85 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_esEs19(x0, x1, ty_Bool) 41.28/18.85 new_esEs21(x0, x1, ty_@0) 41.28/18.85 new_compare17(:%(x0, x1), :%(x2, x3), ty_Integer) 41.28/18.85 new_ltEs10(x0, x1) 41.28/18.85 new_esEs32(x0, x1, ty_Double) 41.28/18.85 new_ltEs8(True, True) 41.28/18.85 new_esEs19(x0, x1, ty_Float) 41.28/18.85 new_lt19(x0, x1, ty_Float) 41.28/18.85 new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.85 new_compare13(x0, x1, x2, x3, x4) 41.28/18.85 new_esEs13(Double(x0, x1), Double(x2, x3)) 41.28/18.85 new_esEs24(x0, x1, ty_Int) 41.28/18.85 new_ltEs5(EQ, EQ) 41.28/18.85 new_esEs29(x0, x1, ty_@0) 41.28/18.85 new_esEs27(x0, x1, ty_Bool) 41.28/18.85 new_esEs26(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.85 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.85 new_lt5(x0, x1) 41.28/18.85 new_esEs16(Float(x0, x1), Float(x2, x3)) 41.28/18.85 new_lt18(x0, x1, ty_Ordering) 41.28/18.85 new_esEs19(x0, x1, ty_Char) 41.28/18.85 new_lt19(x0, x1, ty_Char) 41.28/18.85 new_esEs18(x0, x1, ty_Ordering) 41.28/18.85 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.85 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.85 new_ltEs21(x0, x1, app(ty_[], x2)) 41.28/18.85 new_lt20(x0, x1, ty_Ordering) 41.28/18.85 new_esEs30(x0, x1, ty_Ordering) 41.28/18.85 new_lt14(x0, x1, x2) 41.28/18.85 new_ltEs17(Nothing, Nothing, x0) 41.28/18.85 new_ltEs16(x0, x1) 41.28/18.85 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 41.28/18.85 new_primCmpNat1(x0, Succ(x1)) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.85 new_primMulInt(Pos(x0), Neg(x1)) 41.28/18.85 new_primMulInt(Neg(x0), Pos(x1)) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.85 new_esEs19(x0, x1, ty_Int) 41.28/18.85 new_compare7(x0, x1) 41.28/18.85 new_esEs27(x0, x1, ty_Char) 41.28/18.85 new_primMulNat0(Zero, Succ(x0)) 41.28/18.85 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.85 new_primCmpNat0(Zero, Zero) 41.28/18.85 new_primEqNat0(Zero, Succ(x0)) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 41.28/18.85 new_lt18(x0, x1, app(ty_[], x2)) 41.28/18.85 new_lt19(x0, x1, ty_Int) 41.28/18.85 41.28/18.85 We have to consider all minimal (P,Q,R)-chains. 41.28/18.85 ---------------------------------------- 41.28/18.85 41.28/18.85 (38) DependencyGraphProof (EQUIVALENT) 41.28/18.85 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 41.28/18.85 ---------------------------------------- 41.28/18.85 41.28/18.85 (39) 41.28/18.85 Complex Obligation (AND) 41.28/18.85 41.28/18.85 ---------------------------------------- 41.28/18.85 41.28/18.85 (40) 41.28/18.85 Obligation: 41.28/18.85 Q DP problem: 41.28/18.85 The TRS P consists of the following rules: 41.28/18.85 41.28/18.85 new_addToFM_C11(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Right(yvy400), yvy41, h, ba, bb) 41.28/18.85 new_addToFM_C(Branch(Left(yvy500), yvy51, yvy52, yvy53, yvy54), Right(yvy400), yvy41, h, ba, bb) -> new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare210(Right(yvy400), Left(yvy500), False, h, ba), LT), h, ba, bb) 41.28/18.85 new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C11(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt1(yvy400, yvy500, h, ba), h, ba, bb) 41.28/18.85 new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Right(yvy400), yvy41, h, ba, bb) 41.28/18.85 new_addToFM_C(Branch(Right(yvy500), yvy51, yvy52, yvy53, yvy54), Right(yvy400), yvy41, h, ba, bb) -> new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare210(Right(yvy400), Right(yvy500), new_esEs30(yvy400, yvy500, ba), h, ba), LT), h, ba, bb) 41.28/18.85 new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Right(yvy400), yvy41, h, ba, bb) 41.28/18.85 new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt2(yvy400, yvy500, h, ba), h, ba, bb) 41.28/18.85 new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Right(yvy400), yvy41, h, ba, bb) 41.28/18.85 41.28/18.85 The TRS R consists of the following rules: 41.28/18.85 41.28/18.85 new_ltEs20(yvy79002, yvy80002, app(ty_[], dga)) -> new_ltEs11(yvy79002, yvy80002, dga) 41.28/18.85 new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT 41.28/18.85 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 41.28/18.85 new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, ty_Bool) -> new_ltEs8(yvy79001, yvy80001) 41.28/18.85 new_esEs24(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.85 new_pePe(True, yvy255) -> True 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Ordering, bhe) -> new_esEs8(yvy4000, yvy3000) 41.28/18.85 new_esEs25(yvy79001, yvy80001, app(app(app(ty_@3, ded), dee), def)) -> new_esEs6(yvy79001, yvy80001, ded, dee, def) 41.28/18.85 new_esEs30(yvy400, yvy500, ty_Ordering) -> new_esEs8(yvy400, yvy500) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Ratio, hc)) -> new_ltEs13(yvy79000, yvy80000, hc) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(ty_Ratio, cdh)) -> new_ltEs13(yvy79000, yvy80000, cdh) 41.28/18.85 new_esEs19(yvy4001, yvy3001, app(ty_Ratio, chg)) -> new_esEs17(yvy4001, yvy3001, chg) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.85 new_esEs30(yvy400, yvy500, app(app(ty_@2, dbc), dbd)) -> new_esEs4(yvy400, yvy500, dbc, dbd) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Double) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.85 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 41.28/18.85 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.85 new_esEs27(yvy4001, yvy3001, app(app(ty_Either, bgf), bgg)) -> new_esEs5(yvy4001, yvy3001, bgf, bgg) 41.28/18.85 new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT 41.28/18.85 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.85 new_lt18(yvy79000, yvy80000, app(ty_Maybe, ddf)) -> new_lt6(yvy79000, yvy80000, ddf) 41.28/18.85 new_esEs9(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 41.28/18.85 new_lt20(yvy79000, yvy80000, app(app(ty_Either, bed), bee)) -> new_lt17(yvy79000, yvy80000, bed, bee) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.85 new_esEs24(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 41.28/18.85 new_esEs30(yvy400, yvy500, ty_Char) -> new_esEs11(yvy400, yvy500) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, gd)) -> new_esEs7(yvy4000, yvy3000, gd) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Char, bhe) -> new_esEs11(yvy4000, yvy3000) 41.28/18.85 new_esEs28(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 41.28/18.85 new_ltEs12(Left(yvy79000), Right(yvy80000), bce, bcf) -> True 41.28/18.85 new_ltEs21(yvy79001, yvy80001, ty_Char) -> new_ltEs6(yvy79001, yvy80001) 41.28/18.85 new_esEs28(yvy79000, yvy80000, app(ty_Maybe, eh)) -> new_esEs7(yvy79000, yvy80000, eh) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Ratio, ccf), bcf) -> new_ltEs13(yvy79000, yvy80000, ccf) 41.28/18.85 new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.85 new_esEs18(yvy4000, yvy3000, app(app(ty_@2, cfe), cff)) -> new_esEs4(yvy4000, yvy3000, cfe, cff) 41.28/18.85 new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt16(yvy79001, yvy80001) 41.28/18.85 new_lt19(yvy79001, yvy80001, app(app(ty_Either, deb), dec)) -> new_lt17(yvy79001, yvy80001, deb, dec) 41.28/18.85 new_esEs26(yvy4000, yvy3000, app(ty_[], bfc)) -> new_esEs15(yvy4000, yvy3000, bfc) 41.28/18.85 new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt4(yvy79001, yvy80001) 41.28/18.85 new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.85 new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) 41.28/18.85 new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.85 new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs13(yvy20, yvy15) 41.28/18.85 new_compare14(yvy79000, yvy80000, app(ty_[], cf)) -> new_compare3(yvy79000, yvy80000, cf) 41.28/18.85 new_compare3([], [], be) -> EQ 41.28/18.85 new_esEs28(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, app(ty_[], beb)) -> new_ltEs11(yvy7900, yvy8000, beb) 41.28/18.85 new_esEs8(GT, GT) -> True 41.28/18.85 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 41.28/18.85 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 41.28/18.85 new_ltEs18(yvy7900, yvy8000, app(app(ty_@2, bcb), bcc)) -> new_ltEs4(yvy7900, yvy8000, bcb, bcc) 41.28/18.85 new_fsEs(yvy244) -> new_not(new_esEs8(yvy244, GT)) 41.28/18.85 new_esEs25(yvy79001, yvy80001, app(ty_Ratio, dea)) -> new_esEs17(yvy79001, yvy80001, dea) 41.28/18.85 new_compare210(yvy790, yvy800, True, bbh, bca) -> EQ 41.28/18.85 new_esEs31(yvy35, yvy30, app(ty_Ratio, ef)) -> new_esEs17(yvy35, yvy30, ef) 41.28/18.85 new_esEs32(yvy20, yvy15, app(ty_[], dge)) -> new_esEs15(yvy20, yvy15, dge) 41.28/18.85 new_lt20(yvy79000, yvy80000, app(app(ty_@2, bc), bd)) -> new_lt13(yvy79000, yvy80000, bc, bd) 41.28/18.85 new_esEs29(yvy400, yvy500, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs6(yvy400, yvy500, ceh, cfa, cfb) 41.28/18.85 new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare18(yvy7900, yvy8000)) 41.28/18.85 new_esEs24(yvy79000, yvy80000, app(app(ty_@2, dce), dcf)) -> new_esEs4(yvy79000, yvy80000, dce, dcf) 41.28/18.85 new_lt18(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 41.28/18.85 new_compare28(yvy79000, yvy80000, False, eh) -> new_compare113(yvy79000, yvy80000, new_ltEs17(yvy79000, yvy80000, eh), eh) 41.28/18.85 new_lt18(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 41.28/18.85 new_esEs8(EQ, EQ) -> True 41.28/18.85 new_ltEs11(yvy7900, yvy8000, be) -> new_fsEs(new_compare3(yvy7900, yvy8000, be)) 41.28/18.85 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.85 new_esEs20(yvy4002, yvy3002, app(ty_Ratio, dba)) -> new_esEs17(yvy4002, yvy3002, dba) 41.28/18.85 new_ltEs20(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(app(ty_@2, cba), cbb)) -> new_esEs4(yvy4000, yvy3000, cba, cbb) 41.28/18.85 new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.85 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.85 new_compare13(yvy79000, yvy80000, da, db, dc) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, da, db, dc), da, db, dc) 41.28/18.85 new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_Either, hd), he)) -> new_ltEs12(yvy79000, yvy80000, hd, he) 41.28/18.85 new_not(True) -> False 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.85 new_compare210(Left(yvy7900), Right(yvy8000), False, bbh, bca) -> LT 41.28/18.85 new_lt18(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 41.28/18.85 new_compare14(yvy79000, yvy80000, ty_Ordering) -> new_compare25(yvy79000, yvy80000) 41.28/18.85 new_compare24(yvy79000, yvy80000, False) -> new_compare11(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000)) 41.28/18.85 new_primCompAux00(yvy260, LT) -> LT 41.28/18.85 new_primCmpNat0(Zero, Zero) -> EQ 41.28/18.85 new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs6(yvy4000, yvy3000, bba, bbb, bbc) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Integer, bcf) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.85 new_esEs28(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 41.28/18.85 new_compare11(yvy79000, yvy80000, False) -> GT 41.28/18.85 new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 41.28/18.85 new_esEs21(yvy4000, yvy3000, app(ty_Ratio, bbd)) -> new_esEs17(yvy4000, yvy3000, bbd) 41.28/18.85 new_esEs20(yvy4002, yvy3002, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs6(yvy4002, yvy3002, daf, dag, dah) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(ty_[], cbc)) -> new_esEs15(yvy4000, yvy3000, cbc) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Char, bcf) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.85 new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 41.28/18.85 new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.85 new_esEs19(yvy4001, yvy3001, app(app(ty_@2, cgg), cgh)) -> new_esEs4(yvy4001, yvy3001, cgg, cgh) 41.28/18.85 new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) 41.28/18.85 new_lt18(yvy79000, yvy80000, app(app(ty_Either, dch), dda)) -> new_lt17(yvy79000, yvy80000, dch, dda) 41.28/18.85 new_primEqNat0(Succ(yvy40000), Zero) -> False 41.28/18.85 new_primEqNat0(Zero, Succ(yvy30000)) -> False 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_[], bhh), bhe) -> new_esEs15(yvy4000, yvy3000, bhh) 41.28/18.85 new_esEs14(@0, @0) -> True 41.28/18.85 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 41.28/18.85 new_compare10(yvy79000, yvy80000, True, bc, bd) -> LT 41.28/18.85 new_ltEs18(yvy7900, yvy8000, app(ty_[], be)) -> new_ltEs11(yvy7900, yvy8000, be) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.85 new_primCompAux00(yvy260, GT) -> GT 41.28/18.85 new_compare28(yvy79000, yvy80000, True, eh) -> EQ 41.28/18.85 new_esEs25(yvy79001, yvy80001, ty_Double) -> new_esEs13(yvy79001, yvy80001) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) 41.28/18.85 new_primCmpNat2(Zero, yvy7900) -> LT 41.28/18.85 new_esEs20(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) 41.28/18.85 new_esEs25(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_@0) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.85 new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 41.28/18.85 new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT 41.28/18.85 new_ltEs20(yvy79002, yvy80002, app(app(ty_@2, dfa), dfb)) -> new_ltEs4(yvy79002, yvy80002, dfa, dfb) 41.28/18.85 new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 41.28/18.85 new_esEs20(yvy4002, yvy3002, app(app(ty_@2, daa), dab)) -> new_esEs4(yvy4002, yvy3002, daa, dab) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, ty_Int) -> new_ltEs7(yvy79001, yvy80001) 41.28/18.85 new_compare3(:(yvy79000, yvy79001), :(yvy80000, yvy80001), be) -> new_primCompAux0(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, be), be) 41.28/18.85 new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs13(yvy35, yvy30) 41.28/18.85 new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 41.28/18.85 new_ltEs5(LT, GT) -> True 41.28/18.85 new_ltEs18(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 41.28/18.85 new_primPlusNat1(Succ(yvy20100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20100, yvy3000000))) 41.28/18.85 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.85 new_gt2(yvy35, yvy30, dd, de) -> new_esEs8(new_compare30(yvy35, yvy30, dd, de), GT) 41.28/18.85 new_esEs31(yvy35, yvy30, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs6(yvy35, yvy30, ec, ed, ee) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, hf), hg), hh)) -> new_ltEs9(yvy79000, yvy80000, hf, hg, hh) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.85 new_primCmpNat0(Zero, Succ(yvy80000)) -> LT 41.28/18.85 new_ltEs20(yvy79002, yvy80002, ty_Bool) -> new_ltEs8(yvy79002, yvy80002) 41.28/18.85 new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, chd), che), chf)) -> new_esEs6(yvy4001, yvy3001, chd, che, chf) 41.28/18.85 new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, bdb), bdc)) -> new_ltEs4(yvy7900, yvy8000, bdb, bdc) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(ty_Maybe, ccb)) -> new_esEs7(yvy4000, yvy3000, ccb) 41.28/18.85 new_compare110(yvy79000, yvy80000, False, da, db, dc) -> GT 41.28/18.85 new_primCmpNat0(Succ(yvy79000), Zero) -> GT 41.28/18.85 new_pePe(False, yvy255) -> yvy255 41.28/18.85 new_ltEs17(Nothing, Nothing, gh) -> True 41.28/18.85 new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 41.28/18.85 new_compare3([], :(yvy80000, yvy80001), be) -> LT 41.28/18.85 new_esEs7(Nothing, Just(yvy3000), fa) -> False 41.28/18.85 new_esEs7(Just(yvy4000), Nothing, fa) -> False 41.28/18.85 new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 41.28/18.85 new_compare27(yvy79000, yvy80000, False, da, db, dc) -> new_compare110(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, da, db, dc), da, db, dc) 41.28/18.85 new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 41.28/18.85 new_ltEs17(Nothing, Just(yvy80000), gh) -> True 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Float) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.85 new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 41.28/18.85 new_ltEs17(Just(yvy79000), Nothing, gh) -> False 41.28/18.85 new_esEs12(False, False) -> True 41.28/18.85 new_ltEs20(yvy79002, yvy80002, app(ty_Maybe, dgb)) -> new_ltEs17(yvy79002, yvy80002, dgb) 41.28/18.85 new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 41.28/18.85 new_compare114(yvy227, yvy228, True, bbf, bbg) -> LT 41.28/18.85 new_primCmpNat1(yvy7900, Zero) -> GT 41.28/18.85 new_compare112(yvy234, yvy235, True, cfc, cfd) -> LT 41.28/18.85 new_compare14(yvy79000, yvy80000, ty_Char) -> new_compare8(yvy79000, yvy80000) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, ff), fg)) -> new_esEs5(yvy4000, yvy3000, ff, fg) 41.28/18.85 new_lt18(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 41.28/18.85 new_lt15(yvy79000, yvy80000) -> new_esEs8(new_compare25(yvy79000, yvy80000), LT) 41.28/18.85 new_esEs25(yvy79001, yvy80001, ty_Integer) -> new_esEs10(yvy79001, yvy80001) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs9(yvy79000, yvy80000, cec, ced, cee) 41.28/18.85 new_compare23(yvy79000, yvy80000, False, bc, bd) -> new_compare10(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.85 new_gt1(yvy400, yvy300, h, ba) -> new_esEs8(new_compare33(yvy400, yvy300, h, ba), GT) 41.28/18.85 new_esEs25(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_[], cdd), bcf) -> new_ltEs11(yvy79000, yvy80000, cdd) 41.28/18.85 new_esEs25(yvy79001, yvy80001, app(ty_[], deg)) -> new_esEs15(yvy79001, yvy80001, deg) 41.28/18.85 new_compare113(yvy79000, yvy80000, True, eh) -> LT 41.28/18.85 new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 41.28/18.85 new_ltEs7(yvy7900, yvy8000) -> new_fsEs(new_compare7(yvy7900, yvy8000)) 41.28/18.85 new_lt20(yvy79000, yvy80000, app(ty_[], ccc)) -> new_lt11(yvy79000, yvy80000, ccc) 41.28/18.85 new_compare23(yvy79000, yvy80000, True, bc, bd) -> EQ 41.28/18.85 new_esEs8(LT, EQ) -> False 41.28/18.85 new_esEs8(EQ, LT) -> False 41.28/18.85 new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bhf), bhg), bhe) -> new_esEs4(yvy4000, yvy3000, bhf, bhg) 41.28/18.85 new_esEs21(yvy4000, yvy3000, app(app(ty_@2, bad), bae)) -> new_esEs4(yvy4000, yvy3000, bad, bae) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, app(app(app(ty_@3, eab), eac), ead)) -> new_ltEs9(yvy79001, yvy80001, eab, eac, ead) 41.28/18.85 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 41.28/18.85 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 41.28/18.85 new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs6(yvy20, yvy15, dgh, dha, dhb) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(app(ty_@2, cdf), cdg)) -> new_ltEs4(yvy79000, yvy80000, cdf, cdg) 41.28/18.85 new_esEs7(Nothing, Nothing, fa) -> True 41.28/18.85 new_esEs13(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 41.28/18.85 new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 41.28/18.85 new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.85 new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt9(yvy79001, yvy80001) 41.28/18.85 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, bga)) -> new_esEs17(yvy4000, yvy3000, bga) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Int) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.85 new_esEs25(yvy79001, yvy80001, app(app(ty_@2, ddg), ddh)) -> new_esEs4(yvy79001, yvy80001, ddg, ddh) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_Either, ccg), cch), bcf) -> new_ltEs12(yvy79000, yvy80000, ccg, cch) 41.28/18.85 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare7(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, app(app(ty_Either, bce), bcf)) -> new_ltEs12(yvy7900, yvy8000, bce, bcf) 41.28/18.85 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.85 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.85 new_esEs24(yvy79000, yvy80000, app(app(ty_Either, dch), dda)) -> new_esEs5(yvy79000, yvy80000, dch, dda) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, bec)) -> new_ltEs17(yvy7900, yvy8000, bec) 41.28/18.85 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.85 new_esEs25(yvy79001, yvy80001, ty_Ordering) -> new_esEs8(yvy79001, yvy80001) 41.28/18.85 new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs14(yvy35, yvy30) 41.28/18.85 new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT 41.28/18.85 new_compare114(yvy227, yvy228, False, bbf, bbg) -> GT 41.28/18.85 new_esEs20(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) 41.28/18.85 new_ltEs20(yvy79002, yvy80002, ty_@0) -> new_ltEs16(yvy79002, yvy80002) 41.28/18.85 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.85 new_esEs25(yvy79001, yvy80001, app(ty_Maybe, deh)) -> new_esEs7(yvy79001, yvy80001, deh) 41.28/18.85 new_ltEs8(True, False) -> False 41.28/18.85 new_esEs15([], [], bac) -> True 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Bool, bcf) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.85 new_esEs32(yvy20, yvy15, app(app(ty_Either, dgf), dgg)) -> new_esEs5(yvy20, yvy15, dgf, dgg) 41.28/18.85 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.85 new_esEs24(yvy79000, yvy80000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs6(yvy79000, yvy80000, ddb, ddc, ddd) 41.28/18.85 new_lt4(yvy240, yvy239) -> new_esEs8(new_compare7(yvy240, yvy239), LT) 41.28/18.85 new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt10(yvy79001, yvy80001) 41.28/18.85 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 41.28/18.85 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 41.28/18.85 new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs13(yvy400, yvy500) 41.28/18.85 new_ltEs8(False, False) -> True 41.28/18.85 new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, fh), ga), gb)) -> new_esEs6(yvy4000, yvy3000, fh, ga, gb) 41.28/18.85 new_compare14(yvy79000, yvy80000, app(app(ty_@2, bf), bg)) -> new_compare16(yvy79000, yvy80000, bf, bg) 41.28/18.85 new_lt18(yvy79000, yvy80000, app(ty_Ratio, dcg)) -> new_lt14(yvy79000, yvy80000, dcg) 41.28/18.85 new_ltEs5(EQ, EQ) -> True 41.28/18.85 new_ltEs18(yvy7900, yvy8000, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs9(yvy7900, yvy8000, bcg, bch, bda) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_Either, caa), cab), bhe) -> new_esEs5(yvy4000, yvy3000, caa, cab) 41.28/18.85 new_compare27(yvy79000, yvy80000, True, da, db, dc) -> EQ 41.28/18.85 new_lt19(yvy79001, yvy80001, app(ty_[], deg)) -> new_lt11(yvy79001, yvy80001, deg) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Bool, bhe) -> new_esEs12(yvy4000, yvy3000) 41.28/18.85 new_compare15(yvy79000, yvy80000) -> new_compare29(yvy79000, yvy80000, new_esEs12(yvy79000, yvy80000)) 41.28/18.85 new_esEs21(yvy4000, yvy3000, app(app(ty_Either, bag), bah)) -> new_esEs5(yvy4000, yvy3000, bag, bah) 41.28/18.85 new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.85 new_compare7(yvy79, yvy80) -> new_primCmpInt(yvy79, yvy80) 41.28/18.85 new_esEs8(LT, LT) -> True 41.28/18.85 new_compare111(yvy79000, yvy80000, True) -> LT 41.28/18.85 new_esEs28(yvy79000, yvy80000, app(ty_[], ccc)) -> new_esEs15(yvy79000, yvy80000, ccc) 41.28/18.85 new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 41.28/18.85 new_lt18(yvy79000, yvy80000, app(ty_[], dde)) -> new_lt11(yvy79000, yvy80000, dde) 41.28/18.85 new_lt6(yvy79000, yvy80000, eh) -> new_esEs8(new_compare12(yvy79000, yvy80000, eh), LT) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.85 new_esEs24(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs9(yvy7900, yvy8000, bdg, bdh, bea) 41.28/18.85 new_primPlusNat1(Succ(yvy20100), Zero) -> Succ(yvy20100) 41.28/18.85 new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Maybe, bab)) -> new_ltEs17(yvy79000, yvy80000, bab) 41.28/18.85 new_esEs30(yvy400, yvy500, ty_@0) -> new_esEs14(yvy400, yvy500) 41.28/18.85 new_compare14(yvy79000, yvy80000, app(app(ty_Either, ca), cb)) -> new_compare19(yvy79000, yvy80000, ca, cb) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, ty_Double) -> new_ltEs14(yvy79001, yvy80001) 41.28/18.85 new_compare14(yvy79000, yvy80000, ty_Integer) -> new_compare26(yvy79000, yvy80000) 41.28/18.85 new_esEs24(yvy79000, yvy80000, app(ty_Maybe, ddf)) -> new_esEs7(yvy79000, yvy80000, ddf) 41.28/18.85 new_esEs25(yvy79001, yvy80001, ty_Bool) -> new_esEs12(yvy79001, yvy80001) 41.28/18.85 new_esEs24(yvy79000, yvy80000, app(ty_Ratio, dcg)) -> new_esEs17(yvy79000, yvy80000, dcg) 41.28/18.85 new_esEs24(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.85 new_ltEs5(LT, LT) -> True 41.28/18.85 new_ltEs20(yvy79002, yvy80002, ty_Double) -> new_ltEs14(yvy79002, yvy80002) 41.28/18.85 new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs14(yvy400, yvy500) 41.28/18.85 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.85 new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs9(yvy20, yvy15) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Integer, bhe) -> new_esEs10(yvy4000, yvy3000) 41.28/18.85 new_ltEs5(LT, EQ) -> True 41.28/18.85 new_compare14(yvy79000, yvy80000, ty_Double) -> new_compare18(yvy79000, yvy80000) 41.28/18.85 new_compare14(yvy79000, yvy80000, ty_@0) -> new_compare9(yvy79000, yvy80000) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, app(ty_Maybe, eaf)) -> new_ltEs17(yvy79001, yvy80001, eaf) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.85 new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.85 new_ltEs8(False, True) -> True 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, gc)) -> new_esEs17(yvy4000, yvy3000, gc) 41.28/18.85 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.85 new_compare14(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) 41.28/18.85 new_esEs27(yvy4001, yvy3001, app(ty_[], bge)) -> new_esEs15(yvy4001, yvy3001, bge) 41.28/18.85 new_ltEs6(yvy7900, yvy8000) -> new_fsEs(new_compare8(yvy7900, yvy8000)) 41.28/18.85 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.85 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.85 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(app(ty_Either, cea), ceb)) -> new_ltEs12(yvy79000, yvy80000, cea, ceb) 41.28/18.85 new_ltEs20(yvy79002, yvy80002, app(app(app(ty_@3, dff), dfg), dfh)) -> new_ltEs9(yvy79002, yvy80002, dff, dfg, dfh) 41.28/18.85 new_esEs19(yvy4001, yvy3001, app(app(ty_Either, chb), chc)) -> new_esEs5(yvy4001, yvy3001, chb, chc) 41.28/18.85 new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt12(yvy79001, yvy80001) 41.28/18.85 new_esEs27(yvy4001, yvy3001, app(ty_Ratio, bhc)) -> new_esEs17(yvy4001, yvy3001, bhc) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Double, bcf) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs6(yvy4000, yvy3000, cbf, cbg, cbh) 41.28/18.85 new_esEs28(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 41.28/18.85 new_ltEs12(Right(yvy79000), Left(yvy80000), bce, bcf) -> False 41.28/18.85 new_esEs24(yvy79000, yvy80000, app(ty_[], dde)) -> new_esEs15(yvy79000, yvy80000, dde) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Ratio, caf), bhe) -> new_esEs17(yvy4000, yvy3000, caf) 41.28/18.85 new_esEs30(yvy400, yvy500, app(ty_[], dbe)) -> new_esEs15(yvy400, yvy500, dbe) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(ty_Ratio, cca)) -> new_esEs17(yvy4000, yvy3000, cca) 41.28/18.85 new_esEs17(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bef) -> new_asAs(new_esEs22(yvy4000, yvy3000, bef), new_esEs23(yvy4001, yvy3001, bef)) 41.28/18.85 new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 41.28/18.85 new_compare210(Left(yvy7900), Left(yvy8000), False, bbh, bca) -> new_compare114(yvy7900, yvy8000, new_ltEs18(yvy7900, yvy8000, bbh), bbh, bca) 41.28/18.85 new_sr0(Integer(yvy800000), Integer(yvy790010)) -> Integer(new_primMulInt(yvy800000, yvy790010)) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, cda), cdb), cdc), bcf) -> new_ltEs9(yvy79000, yvy80000, cda, cdb, cdc) 41.28/18.85 new_esEs28(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 41.28/18.85 new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs6(yvy4001, yvy3001, bgh, bha, bhb) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.85 new_esEs28(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, app(ty_Ratio, dhg)) -> new_ltEs13(yvy79001, yvy80001, dhg) 41.28/18.85 new_lt9(yvy79000, yvy80000) -> new_esEs8(new_compare8(yvy79000, yvy80000), LT) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, ty_@0) -> new_ltEs16(yvy79001, yvy80001) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.85 new_esEs20(yvy4002, yvy3002, ty_Int) -> new_esEs9(yvy4002, yvy3002) 41.28/18.85 new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.85 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.85 new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs12(yvy20, yvy15) 41.28/18.85 new_esEs25(yvy79001, yvy80001, ty_Int) -> new_esEs9(yvy79001, yvy80001) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, app(app(ty_Either, dhh), eaa)) -> new_ltEs12(yvy79001, yvy80001, dhh, eaa) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.85 new_lt5(yvy79000, yvy80000) -> new_esEs8(new_compare9(yvy79000, yvy80000), LT) 41.28/18.85 new_asAs(True, yvy222) -> yvy222 41.28/18.85 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 41.28/18.85 new_compare10(yvy79000, yvy80000, False, bc, bd) -> GT 41.28/18.85 new_ltEs5(GT, LT) -> False 41.28/18.85 new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), bcg, bch, bda) -> new_pePe(new_lt18(yvy79000, yvy80000, bcg), new_asAs(new_esEs24(yvy79000, yvy80000, bcg), new_pePe(new_lt19(yvy79001, yvy80001, bch), new_asAs(new_esEs25(yvy79001, yvy80001, bch), new_ltEs20(yvy79002, yvy80002, bda))))) 41.28/18.85 new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.85 new_esEs24(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 41.28/18.85 new_compare14(yvy79000, yvy80000, ty_Int) -> new_compare7(yvy79000, yvy80000) 41.28/18.85 new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.85 new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, da), db), dc)) -> new_lt7(yvy79000, yvy80000, da, db, dc) 41.28/18.85 new_esEs20(yvy4002, yvy3002, app(ty_[], dac)) -> new_esEs15(yvy4002, yvy3002, dac) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.85 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.85 new_lt10(yvy79000, yvy80000) -> new_esEs8(new_compare18(yvy79000, yvy80000), LT) 41.28/18.85 new_esEs24(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 41.28/18.85 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.85 new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) 41.28/18.85 new_ltEs8(True, True) -> True 41.28/18.85 new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat1(yvy7900, yvy800) 41.28/18.85 new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs9(yvy35, yvy30) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_@2, ccd), cce), bcf) -> new_ltEs4(yvy79000, yvy80000, ccd, cce) 41.28/18.85 new_esEs29(yvy400, yvy500, app(app(ty_Either, cah), bhe)) -> new_esEs5(yvy400, yvy500, cah, bhe) 41.28/18.85 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare26(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) 41.28/18.85 new_compare8(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Ordering, bcf) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.85 new_primCompAux00(yvy260, EQ) -> yvy260 41.28/18.85 new_esEs12(False, True) -> False 41.28/18.85 new_esEs12(True, False) -> False 41.28/18.85 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.85 new_esEs30(yvy400, yvy500, ty_Float) -> new_esEs16(yvy400, yvy500) 41.28/18.85 new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt15(yvy79001, yvy80001) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Float, bhe) -> new_esEs16(yvy4000, yvy3000) 41.28/18.85 new_primMulNat0(Zero, Zero) -> Zero 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Double, bhe) -> new_esEs13(yvy4000, yvy3000) 41.28/18.85 new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, ded), dee), def)) -> new_lt7(yvy79001, yvy80001, ded, dee, def) 41.28/18.85 new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) 41.28/18.85 new_esEs30(yvy400, yvy500, ty_Double) -> new_esEs13(yvy400, yvy500) 41.28/18.85 new_esEs12(True, True) -> True 41.28/18.85 new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.85 new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.85 new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Int, bhe) -> new_esEs9(yvy4000, yvy3000) 41.28/18.85 new_compare111(yvy79000, yvy80000, False) -> GT 41.28/18.85 new_esEs30(yvy400, yvy500, ty_Int) -> new_esEs9(yvy400, yvy500) 41.28/18.85 new_esEs31(yvy35, yvy30, app(ty_Maybe, eg)) -> new_esEs7(yvy35, yvy30, eg) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_@0, bcf) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.85 new_compare9(@0, @0) -> EQ 41.28/18.85 new_esEs15(:(yvy4000, yvy4001), [], bac) -> False 41.28/18.85 new_esEs15([], :(yvy3000, yvy3001), bac) -> False 41.28/18.85 new_esEs20(yvy4002, yvy3002, app(app(ty_Either, dad), dae)) -> new_esEs5(yvy4002, yvy3002, dad, dae) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, bdd)) -> new_ltEs13(yvy7900, yvy8000, bdd) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(app(ty_Either, cbd), cbe)) -> new_esEs5(yvy4000, yvy3000, cbd, cbe) 41.28/18.85 new_esEs24(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 41.28/18.85 new_ltEs5(EQ, LT) -> False 41.28/18.85 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, bde), bdf)) -> new_ltEs12(yvy7900, yvy8000, bde, bdf) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.85 new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.85 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.85 new_esEs29(yvy400, yvy500, app(ty_[], bac)) -> new_esEs15(yvy400, yvy500, bac) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], fd)) -> new_esEs15(yvy4000, yvy3000, fd) 41.28/18.85 new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(ty_Maybe, ceg)) -> new_ltEs17(yvy79000, yvy80000, ceg) 41.28/18.85 new_primCompAux0(yvy79000, yvy80000, yvy256, be) -> new_primCompAux00(yvy256, new_compare14(yvy79000, yvy80000, be)) 41.28/18.85 new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.85 new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.85 new_lt17(yvy79000, yvy80000, bed, bee) -> new_esEs8(new_compare19(yvy79000, yvy80000, bed, bee), LT) 41.28/18.85 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 41.28/18.85 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 41.28/18.85 new_esEs24(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 41.28/18.85 new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt8(yvy79001, yvy80001) 41.28/18.85 new_ltEs20(yvy79002, yvy80002, app(app(ty_Either, dfd), dfe)) -> new_ltEs12(yvy79002, yvy80002, dfd, dfe) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Char) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.85 new_lt19(yvy79001, yvy80001, app(ty_Ratio, dea)) -> new_lt14(yvy79001, yvy80001, dea) 41.28/18.85 new_ltEs20(yvy79002, yvy80002, app(ty_Ratio, dfc)) -> new_ltEs13(yvy79002, yvy80002, dfc) 41.28/18.85 new_esEs20(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 41.28/18.85 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 41.28/18.85 new_esEs20(yvy4002, yvy3002, ty_Double) -> new_esEs13(yvy4002, yvy3002) 41.28/18.85 new_esEs21(yvy4000, yvy3000, app(ty_Maybe, bbe)) -> new_esEs7(yvy4000, yvy3000, bbe) 41.28/18.85 new_esEs32(yvy20, yvy15, app(app(ty_@2, dgc), dgd)) -> new_esEs4(yvy20, yvy15, dgc, dgd) 41.28/18.85 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, bfa), bfb)) -> new_esEs4(yvy4000, yvy3000, bfa, bfb) 41.28/18.85 new_compare14(yvy79000, yvy80000, app(ty_Ratio, bh)) -> new_compare17(yvy79000, yvy80000, bh) 41.28/18.85 new_compare24(yvy79000, yvy80000, True) -> EQ 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, app(ty_Maybe, gh)) -> new_ltEs17(yvy7900, yvy8000, gh) 41.28/18.85 new_esEs18(yvy4000, yvy3000, app(ty_[], cfg)) -> new_esEs15(yvy4000, yvy3000, cfg) 41.28/18.85 new_esEs25(yvy79001, yvy80001, app(app(ty_Either, deb), dec)) -> new_esEs5(yvy79001, yvy80001, deb, dec) 41.28/18.85 new_lt18(yvy79000, yvy80000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_lt7(yvy79000, yvy80000, ddb, ddc, ddd) 41.28/18.85 new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 41.28/18.85 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.85 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 41.28/18.85 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 41.28/18.85 new_lt20(yvy79000, yvy80000, app(ty_Ratio, gg)) -> new_lt14(yvy79000, yvy80000, gg) 41.28/18.85 new_gt0(yvy400, yvy300, h, ba) -> new_esEs8(new_compare32(yvy400, yvy300, h, ba), GT) 41.28/18.85 new_esEs32(yvy20, yvy15, app(ty_Maybe, dhd)) -> new_esEs7(yvy20, yvy15, dhd) 41.28/18.85 new_esEs31(yvy35, yvy30, app(app(ty_Either, ea), eb)) -> new_esEs5(yvy35, yvy30, ea, eb) 41.28/18.85 new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(ty_[], cef)) -> new_ltEs11(yvy79000, yvy80000, cef) 41.28/18.85 new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs9(yvy400, yvy500) 41.28/18.85 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, bgb)) -> new_esEs7(yvy4000, yvy3000, bgb) 41.28/18.85 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Maybe, cde), bcf) -> new_ltEs17(yvy79000, yvy80000, cde) 41.28/18.85 new_lt18(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 41.28/18.85 new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 41.28/18.85 new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) 41.28/18.85 new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt5(yvy79001, yvy80001) 41.28/18.85 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, bfd), bfe)) -> new_esEs5(yvy4000, yvy3000, bfd, bfe) 41.28/18.85 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat1(yvy8000, Zero) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cac), cad), cae), bhe) -> new_esEs6(yvy4000, yvy3000, cac, cad, cae) 41.28/18.85 new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) 41.28/18.85 new_lt18(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 41.28/18.85 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.85 new_compare110(yvy79000, yvy80000, True, da, db, dc) -> LT 41.28/18.85 new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) 41.28/18.85 new_compare14(yvy79000, yvy80000, app(app(app(ty_@3, cc), cd), ce)) -> new_compare13(yvy79000, yvy80000, cc, cd, ce) 41.28/18.85 new_esEs15(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bac) -> new_asAs(new_esEs21(yvy4000, yvy3000, bac), new_esEs15(yvy4001, yvy3001, bac)) 41.28/18.85 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs6(yvy4000, yvy3000, bff, bfg, bfh) 41.28/18.85 new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 41.28/18.85 new_esEs27(yvy4001, yvy3001, app(ty_Maybe, bhd)) -> new_esEs7(yvy4001, yvy3001, bhd) 41.28/18.85 new_compare12(yvy79000, yvy80000, eh) -> new_compare28(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, eh), eh) 41.28/18.85 new_compare112(yvy234, yvy235, False, cfc, cfd) -> GT 41.28/18.85 new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs6(yvy4000, yvy3000, cgb, cgc, cgd) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cag), bhe) -> new_esEs7(yvy4000, yvy3000, cag) 41.28/18.85 new_ltEs5(EQ, GT) -> True 41.28/18.85 new_esEs31(yvy35, yvy30, app(app(ty_@2, df), dg)) -> new_esEs4(yvy35, yvy30, df, dg) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Float, bcf) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.85 new_ltEs20(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) 41.28/18.85 new_not(False) -> True 41.28/18.85 new_esEs28(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 41.28/18.85 new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs16(yvy400, yvy500) 41.28/18.85 new_esEs18(yvy4000, yvy3000, app(app(ty_Either, cfh), cga)) -> new_esEs5(yvy4000, yvy3000, cfh, cga) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.85 new_compare25(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs8(yvy79000, yvy80000)) 41.28/18.85 new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs8(yvy35, yvy30) 41.28/18.85 new_ltEs13(yvy7900, yvy8000, bcd) -> new_fsEs(new_compare17(yvy7900, yvy8000, bcd)) 41.28/18.85 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), beg, beh) -> new_asAs(new_esEs26(yvy4000, yvy3000, beg), new_esEs27(yvy4001, yvy3001, beh)) 41.28/18.85 new_esEs25(yvy79001, yvy80001, ty_@0) -> new_esEs14(yvy79001, yvy80001) 41.28/18.85 new_esEs20(yvy4002, yvy3002, app(ty_Maybe, dbb)) -> new_esEs7(yvy4002, yvy3002, dbb) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_@2, ha), hb)) -> new_ltEs4(yvy79000, yvy80000, ha, hb) 41.28/18.85 new_ltEs5(GT, GT) -> True 41.28/18.85 new_esEs8(LT, GT) -> False 41.28/18.85 new_esEs8(GT, LT) -> False 41.28/18.85 new_compare29(yvy79000, yvy80000, True) -> EQ 41.28/18.85 new_esEs31(yvy35, yvy30, app(ty_[], dh)) -> new_esEs15(yvy35, yvy30, dh) 41.28/18.85 new_esEs32(yvy20, yvy15, app(ty_Ratio, dhc)) -> new_esEs17(yvy20, yvy15, dhc) 41.28/18.85 new_esEs5(Left(yvy4000), Right(yvy3000), cah, bhe) -> False 41.28/18.85 new_esEs5(Right(yvy4000), Left(yvy3000), cah, bhe) -> False 41.28/18.85 new_esEs20(yvy4002, yvy3002, ty_Bool) -> new_esEs12(yvy4002, yvy3002) 41.28/18.85 new_lt19(yvy79001, yvy80001, app(ty_Maybe, deh)) -> new_lt6(yvy79001, yvy80001, deh) 41.28/18.85 new_lt13(yvy79000, yvy80000, bc, bd) -> new_esEs8(new_compare16(yvy79000, yvy80000, bc, bd), LT) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, ty_Ordering) -> new_ltEs5(yvy79001, yvy80001) 41.28/18.85 new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs10(yvy35, yvy30) 41.28/18.85 new_esEs19(yvy4001, yvy3001, app(ty_[], cha)) -> new_esEs15(yvy4001, yvy3001, cha) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, app(ty_Ratio, bcd)) -> new_ltEs13(yvy7900, yvy8000, bcd) 41.28/18.85 new_compare14(yvy79000, yvy80000, app(ty_Maybe, cg)) -> new_compare12(yvy79000, yvy80000, cg) 41.28/18.85 new_lt8(yvy79000, yvy80000) -> new_esEs8(new_compare26(yvy79000, yvy80000), LT) 41.28/18.85 new_compare113(yvy79000, yvy80000, False, eh) -> GT 41.28/18.85 new_esEs30(yvy400, yvy500, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs6(yvy400, yvy500, dbh, dca, dcb) 41.28/18.85 new_esEs30(yvy400, yvy500, app(app(ty_Either, dbf), dbg)) -> new_esEs5(yvy400, yvy500, dbf, dbg) 41.28/18.85 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.85 new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs12(yvy400, yvy500) 41.28/18.85 new_primPlusNat0(Succ(yvy2010), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2010, yvy300000))) 41.28/18.85 new_lt14(yvy79000, yvy80000, gg) -> new_esEs8(new_compare17(yvy79000, yvy80000, gg), LT) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 41.28/18.85 new_esEs19(yvy4001, yvy3001, app(ty_Maybe, chh)) -> new_esEs7(yvy4001, yvy3001, chh) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 41.28/18.85 new_ltEs20(yvy79002, yvy80002, ty_Char) -> new_ltEs6(yvy79002, yvy80002) 41.28/18.85 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 41.28/18.85 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 41.28/18.85 new_lt16(yvy79000, yvy80000) -> new_esEs8(new_compare15(yvy79000, yvy80000), LT) 41.28/18.85 new_lt12(yvy79000, yvy80000) -> new_esEs8(new_compare6(yvy79000, yvy80000), LT) 41.28/18.85 new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 41.28/18.85 new_primPlusNat1(Zero, Zero) -> Zero 41.28/18.85 new_esEs6(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ceh, cfa, cfb) -> new_asAs(new_esEs18(yvy4000, yvy3000, ceh), new_asAs(new_esEs19(yvy4001, yvy3001, cfa), new_esEs20(yvy4002, yvy3002, cfb))) 41.28/18.85 new_esEs20(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 41.28/18.85 new_ltEs20(yvy79002, yvy80002, ty_Int) -> new_ltEs7(yvy79002, yvy80002) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, app(app(ty_@2, dhe), dhf)) -> new_ltEs4(yvy79001, yvy80001, dhe, dhf) 41.28/18.85 new_esEs27(yvy4001, yvy3001, app(app(ty_@2, bgc), bgd)) -> new_esEs4(yvy4001, yvy3001, bgc, bgd) 41.28/18.85 new_lt18(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 41.28/18.85 new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 41.28/18.85 new_esEs28(yvy79000, yvy80000, app(ty_Ratio, gg)) -> new_esEs17(yvy79000, yvy80000, gg) 41.28/18.85 new_compare11(yvy79000, yvy80000, True) -> LT 41.28/18.85 new_esEs30(yvy400, yvy500, app(ty_Maybe, dcd)) -> new_esEs7(yvy400, yvy500, dcd) 41.28/18.85 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.85 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.85 new_esEs30(yvy400, yvy500, ty_Bool) -> new_esEs12(yvy400, yvy500) 41.28/18.85 new_ltEs4(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), bcb, bcc) -> new_pePe(new_lt20(yvy79000, yvy80000, bcb), new_asAs(new_esEs28(yvy79000, yvy80000, bcb), new_ltEs21(yvy79001, yvy80001, bcc))) 41.28/18.85 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 41.28/18.85 new_lt19(yvy79001, yvy80001, app(app(ty_@2, ddg), ddh)) -> new_lt13(yvy79001, yvy80001, ddg, ddh) 41.28/18.85 new_compare31(yvy20, yvy15, ge, gf) -> new_compare210(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, ge), ge, gf) 41.28/18.85 new_compare16(yvy79000, yvy80000, bc, bd) -> new_compare23(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.85 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 41.28/18.85 new_esEs28(yvy79000, yvy80000, app(app(ty_@2, bc), bd)) -> new_esEs4(yvy79000, yvy80000, bc, bd) 41.28/18.85 new_primCmpNat0(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.85 new_esEs20(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) 41.28/18.85 new_compare19(yvy79000, yvy80000, bed, bee) -> new_compare210(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bed, bee), bed, bee) 41.28/18.85 new_compare30(yvy35, yvy30, dd, de) -> new_compare210(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, de), dd, de) 41.28/18.85 new_compare3(:(yvy79000, yvy79001), [], be) -> GT 41.28/18.85 new_compare14(yvy79000, yvy80000, ty_Bool) -> new_compare15(yvy79000, yvy80000) 41.28/18.85 new_esEs28(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_[], baa)) -> new_ltEs11(yvy79000, yvy80000, baa) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), ty_@0, bhe) -> new_esEs14(yvy4000, yvy3000) 41.28/18.85 new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs11(yvy400, yvy500) 41.28/18.85 new_compare26(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) 41.28/18.85 new_gt(yvy20, yvy15, ge, gf) -> new_esEs8(new_compare31(yvy20, yvy15, ge, gf), GT) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 41.28/18.85 new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs10(yvy400, yvy500) 41.28/18.85 new_compare32(yvy400, yvy300, h, ba) -> new_compare210(Left(yvy400), Right(yvy300), False, h, ba) 41.28/18.85 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 41.28/18.85 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 41.28/18.85 new_primCmpNat1(yvy7900, Succ(yvy8000)) -> new_primCmpNat0(yvy7900, yvy8000) 41.28/18.85 new_esEs18(yvy4000, yvy3000, app(ty_Maybe, cgf)) -> new_esEs7(yvy4000, yvy3000, cgf) 41.28/18.85 new_esEs29(yvy400, yvy500, app(app(ty_@2, beg), beh)) -> new_esEs4(yvy400, yvy500, beg, beh) 41.28/18.85 new_lt20(yvy79000, yvy80000, app(ty_Maybe, eh)) -> new_lt6(yvy79000, yvy80000, eh) 41.28/18.85 new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 41.28/18.85 new_primEqNat0(Zero, Zero) -> True 41.28/18.85 new_esEs28(yvy79000, yvy80000, app(app(ty_Either, bed), bee)) -> new_esEs5(yvy79000, yvy80000, bed, bee) 41.28/18.85 new_compare210(Right(yvy7900), Right(yvy8000), False, bbh, bca) -> new_compare112(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, bca), bbh, bca) 41.28/18.85 new_esEs21(yvy4000, yvy3000, app(ty_[], baf)) -> new_esEs15(yvy4000, yvy3000, baf) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.85 new_lt11(yvy79000, yvy80000, ccc) -> new_esEs8(new_compare3(yvy79000, yvy80000, ccc), LT) 41.28/18.85 new_esEs28(yvy79000, yvy80000, app(app(app(ty_@3, da), db), dc)) -> new_esEs6(yvy79000, yvy80000, da, db, dc) 41.28/18.85 new_compare29(yvy79000, yvy80000, False) -> new_compare111(yvy79000, yvy80000, new_ltEs8(yvy79000, yvy80000)) 41.28/18.85 new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs8(yvy400, yvy500) 41.28/18.85 new_compare33(yvy400, yvy300, h, ba) -> new_compare210(Right(yvy400), Left(yvy300), False, h, ba) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.85 new_esEs29(yvy400, yvy500, app(ty_Ratio, bef)) -> new_esEs17(yvy400, yvy500, bef) 41.28/18.85 new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.85 new_asAs(False, yvy222) -> False 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.85 new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 41.28/18.85 new_lt7(yvy79000, yvy80000, da, db, dc) -> new_esEs8(new_compare13(yvy79000, yvy80000, da, db, dc), LT) 41.28/18.85 new_esEs30(yvy400, yvy500, app(ty_Ratio, dcc)) -> new_esEs17(yvy400, yvy500, dcc) 41.28/18.85 new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs12(yvy35, yvy30) 41.28/18.85 new_ltEs5(GT, EQ) -> False 41.28/18.85 new_ltEs20(yvy79002, yvy80002, ty_Ordering) -> new_ltEs5(yvy79002, yvy80002) 41.28/18.85 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.85 new_esEs18(yvy4000, yvy3000, app(ty_Ratio, cge)) -> new_esEs17(yvy4000, yvy3000, cge) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.85 new_esEs29(yvy400, yvy500, app(ty_Maybe, fa)) -> new_esEs7(yvy400, yvy500, fa) 41.28/18.85 new_esEs30(yvy400, yvy500, ty_Integer) -> new_esEs10(yvy400, yvy500) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, app(ty_[], eae)) -> new_ltEs11(yvy79001, yvy80001, eae) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Int, bcf) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.85 new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 41.28/18.85 new_lt18(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 41.28/18.85 new_lt18(yvy79000, yvy80000, app(app(ty_@2, dce), dcf)) -> new_lt13(yvy79000, yvy80000, dce, dcf) 41.28/18.85 new_compare210(Right(yvy7900), Left(yvy8000), False, bbh, bca) -> GT 41.28/18.85 new_esEs8(EQ, GT) -> False 41.28/18.85 new_esEs8(GT, EQ) -> False 41.28/18.85 new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.85 new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat0(yvy8000, yvy7900) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 41.28/18.85 new_ltEs16(yvy7900, yvy8000) -> new_fsEs(new_compare9(yvy7900, yvy8000)) 41.28/18.85 41.28/18.85 The set Q consists of the following terms: 41.28/18.85 41.28/18.85 new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_ltEs18(x0, x1, ty_Bool) 41.28/18.85 new_ltEs21(x0, x1, ty_Ordering) 41.28/18.85 new_esEs28(x0, x1, ty_Integer) 41.28/18.85 new_esEs8(EQ, EQ) 41.28/18.85 new_esEs7(Nothing, Nothing, x0) 41.28/18.85 new_esEs21(x0, x1, ty_Int) 41.28/18.85 new_ltEs20(x0, x1, ty_Char) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.85 new_lt18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_compare12(x0, x1, x2) 41.28/18.85 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_esEs26(x0, x1, ty_Float) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 41.28/18.85 new_primMulInt(Neg(x0), Neg(x1)) 41.28/18.85 new_ltEs17(Just(x0), Just(x1), ty_Char) 41.28/18.85 new_ltEs18(x0, x1, ty_@0) 41.28/18.85 new_ltEs21(x0, x1, ty_Double) 41.28/18.85 new_primPlusNat1(Zero, Zero) 41.28/18.85 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_esEs30(x0, x1, ty_Bool) 41.28/18.85 new_compare14(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_ltEs15(x0, x1) 41.28/18.85 new_compare110(x0, x1, True, x2, x3, x4) 41.28/18.85 new_compare3(:(x0, x1), [], x2) 41.28/18.85 new_esEs24(x0, x1, ty_Integer) 41.28/18.85 new_esEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_esEs25(x0, x1, ty_Float) 41.28/18.85 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.85 new_esEs18(x0, x1, ty_Integer) 41.28/18.85 new_compare14(x0, x1, ty_Ordering) 41.28/18.85 new_esEs15(:(x0, x1), [], x2) 41.28/18.85 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 41.28/18.85 new_esEs30(x0, x1, ty_Integer) 41.28/18.85 new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.85 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_esEs25(x0, x1, app(ty_[], x2)) 41.28/18.85 new_compare210(x0, x1, True, x2, x3) 41.28/18.85 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_compare14(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.85 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 41.28/18.85 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.85 new_primCompAux00(x0, GT) 41.28/18.85 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_primEqInt(Pos(Zero), Pos(Zero)) 41.28/18.85 new_primMulInt(Pos(x0), Pos(x1)) 41.28/18.85 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_esEs21(x0, x1, ty_Double) 41.28/18.85 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_esEs32(x0, x1, ty_Integer) 41.28/18.85 new_compare29(x0, x1, False) 41.28/18.85 new_lt11(x0, x1, x2) 41.28/18.85 new_esEs27(x0, x1, ty_Float) 41.28/18.85 new_ltEs17(Just(x0), Just(x1), ty_Int) 41.28/18.85 new_primCmpNat0(Zero, Succ(x0)) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 41.28/18.85 new_ltEs17(Just(x0), Just(x1), ty_@0) 41.28/18.85 new_esEs21(x0, x1, ty_Char) 41.28/18.85 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.85 new_esEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_esEs32(x0, x1, ty_Float) 41.28/18.85 new_ltEs21(x0, x1, ty_Int) 41.28/18.85 new_primEqInt(Neg(Zero), Neg(Zero)) 41.28/18.85 new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.85 new_primCmpNat0(Succ(x0), Succ(x1)) 41.28/18.85 new_compare11(x0, x1, False) 41.28/18.85 new_ltEs7(x0, x1) 41.28/18.85 new_esEs27(x0, x1, app(ty_[], x2)) 41.28/18.85 new_primPlusNat0(Zero, x0) 41.28/18.85 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.85 new_esEs28(x0, x1, ty_Bool) 41.28/18.85 new_sr(x0, x1) 41.28/18.85 new_esEs12(False, True) 41.28/18.85 new_esEs12(True, False) 41.28/18.85 new_ltEs20(x0, x1, ty_Double) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.85 new_ltEs5(LT, GT) 41.28/18.85 new_ltEs5(GT, LT) 41.28/18.85 new_ltEs17(Just(x0), Just(x1), ty_Bool) 41.28/18.85 new_esEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_esEs30(x0, x1, app(ty_[], x2)) 41.28/18.85 new_compare33(x0, x1, x2, x3) 41.28/18.85 new_primCmpNat2(Succ(x0), x1) 41.28/18.85 new_ltEs20(x0, x1, ty_@0) 41.28/18.85 new_esEs28(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_lt12(x0, x1) 41.28/18.85 new_ltEs8(False, False) 41.28/18.85 new_esEs5(Left(x0), Right(x1), x2, x3) 41.28/18.85 new_esEs5(Right(x0), Left(x1), x2, x3) 41.28/18.85 new_primCmpNat2(Zero, x0) 41.28/18.85 new_esEs18(x0, x1, ty_@0) 41.28/18.85 new_compare26(Integer(x0), Integer(x1)) 41.28/18.85 new_esEs28(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_esEs32(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.85 new_esEs31(x0, x1, ty_Bool) 41.28/18.85 new_esEs19(x0, x1, ty_Integer) 41.28/18.85 new_esEs24(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_ltEs21(x0, x1, ty_Char) 41.28/18.85 new_esEs18(x0, x1, ty_Bool) 41.28/18.85 new_ltEs17(Just(x0), Just(x1), ty_Double) 41.28/18.85 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 41.28/18.85 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.85 new_esEs7(Just(x0), Just(x1), ty_@0) 41.28/18.85 new_compare28(x0, x1, False, x2) 41.28/18.85 new_compare29(x0, x1, True) 41.28/18.85 new_ltEs20(x0, x1, ty_Bool) 41.28/18.85 new_esEs7(Just(x0), Just(x1), ty_Bool) 41.28/18.85 new_esEs18(x0, x1, ty_Float) 41.28/18.85 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_lt10(x0, x1) 41.28/18.85 new_lt18(x0, x1, ty_Float) 41.28/18.85 new_esEs30(x0, x1, ty_Char) 41.28/18.85 new_primEqInt(Pos(Zero), Neg(Zero)) 41.28/18.85 new_primEqInt(Neg(Zero), Pos(Zero)) 41.28/18.85 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.85 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_esEs21(x0, x1, ty_Ordering) 41.28/18.85 new_ltEs12(Left(x0), Right(x1), x2, x3) 41.28/18.85 new_ltEs12(Right(x0), Left(x1), x2, x3) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.85 new_ltEs20(x0, x1, ty_Int) 41.28/18.85 new_ltEs18(x0, x1, ty_Integer) 41.28/18.85 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.85 new_esEs31(x0, x1, ty_Double) 41.28/18.85 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.85 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.85 new_esEs7(Just(x0), Just(x1), ty_Int) 41.28/18.85 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_lt19(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 41.28/18.85 new_esEs31(x0, x1, ty_Char) 41.28/18.85 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.85 new_lt20(x0, x1, ty_Double) 41.28/18.85 new_esEs30(x0, x1, ty_@0) 41.28/18.85 new_esEs31(x0, x1, ty_@0) 41.28/18.85 new_compare30(x0, x1, x2, x3) 41.28/18.85 new_lt17(x0, x1, x2, x3) 41.28/18.85 new_esEs25(x0, x1, ty_@0) 41.28/18.85 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 41.28/18.85 new_esEs7(Just(x0), Just(x1), ty_Char) 41.28/18.85 new_esEs29(x0, x1, ty_Integer) 41.28/18.85 new_esEs28(x0, x1, ty_@0) 41.28/18.85 new_esEs31(x0, x1, ty_Int) 41.28/18.85 new_gt1(x0, x1, x2, x3) 41.28/18.85 new_esEs7(Just(x0), Just(x1), ty_Double) 41.28/18.85 new_esEs15([], :(x0, x1), x2) 41.28/18.85 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_esEs24(x0, x1, app(ty_[], x2)) 41.28/18.85 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 41.28/18.85 new_esEs28(x0, x1, ty_Float) 41.28/18.85 new_esEs19(x0, x1, app(ty_[], x2)) 41.28/18.85 new_esEs30(x0, x1, ty_Int) 41.28/18.85 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_primEqNat0(Succ(x0), Zero) 41.28/18.85 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.85 new_compare14(x0, x1, ty_@0) 41.28/18.85 new_esEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_primMulNat0(Succ(x0), Succ(x1)) 41.28/18.85 new_esEs20(x0, x1, ty_Float) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.85 new_esEs25(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_ltEs18(x0, x1, ty_Float) 41.28/18.85 new_compare114(x0, x1, False, x2, x3) 41.28/18.85 new_esEs28(x0, x1, ty_Int) 41.28/18.85 new_ltEs21(x0, x1, ty_Bool) 41.28/18.85 new_esEs22(x0, x1, ty_Integer) 41.28/18.85 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_ltEs19(x0, x1, ty_Ordering) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 41.28/18.85 new_gt0(x0, x1, x2, x3) 41.28/18.85 new_ltEs20(x0, x1, ty_Integer) 41.28/18.85 new_esEs28(x0, x1, ty_Char) 41.28/18.85 new_primEqNat0(Succ(x0), Succ(x1)) 41.28/18.85 new_esEs30(x0, x1, ty_Float) 41.28/18.85 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_esEs18(x0, x1, app(ty_[], x2)) 41.28/18.85 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_esEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_lt20(x0, x1, ty_Float) 41.28/18.85 new_compare24(x0, x1, True) 41.28/18.85 new_compare14(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_esEs7(Just(x0), Just(x1), ty_Integer) 41.28/18.85 new_compare19(x0, x1, x2, x3) 41.28/18.85 new_ltEs17(Just(x0), Just(x1), ty_Integer) 41.28/18.85 new_ltEs18(x0, x1, ty_Int) 41.28/18.85 new_esEs21(x0, x1, ty_Bool) 41.28/18.85 new_primPlusNat0(Succ(x0), x1) 41.28/18.85 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.85 new_esEs25(x0, x1, ty_Bool) 41.28/18.85 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 41.28/18.85 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.85 new_esEs20(x0, x1, ty_Int) 41.28/18.85 new_ltEs5(EQ, GT) 41.28/18.85 new_ltEs5(GT, EQ) 41.28/18.85 new_esEs29(x0, x1, ty_Bool) 41.28/18.85 new_compare14(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.85 new_lt6(x0, x1, x2) 41.28/18.85 new_ltEs18(x0, x1, ty_Char) 41.28/18.85 new_esEs20(x0, x1, ty_Char) 41.28/18.85 new_ltEs17(Nothing, Just(x0), x1) 41.28/18.85 new_primMulNat0(Succ(x0), Zero) 41.28/18.85 new_esEs29(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_ltEs20(x0, x1, app(ty_[], x2)) 41.28/18.85 new_ltEs19(x0, x1, app(ty_[], x2)) 41.28/18.85 new_esEs8(GT, GT) 41.28/18.85 new_gt2(x0, x1, x2, x3) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.85 new_sr0(Integer(x0), Integer(x1)) 41.28/18.85 new_esEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_esEs8(LT, EQ) 41.28/18.85 new_esEs8(EQ, LT) 41.28/18.85 new_ltEs19(x0, x1, ty_Float) 41.28/18.85 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.85 new_esEs15(:(x0, x1), :(x2, x3), x4) 41.28/18.85 new_primCmpInt(Neg(Zero), Neg(Zero)) 41.28/18.85 new_ltEs17(Just(x0), Just(x1), ty_Ordering) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.85 new_esEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.85 new_compare14(x0, x1, app(ty_[], x2)) 41.28/18.85 new_esEs7(Just(x0), Just(x1), ty_Ordering) 41.28/18.85 new_compare25(x0, x1) 41.28/18.85 new_esEs8(LT, LT) 41.28/18.85 new_ltEs19(x0, x1, ty_Char) 41.28/18.85 new_esEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_primCmpInt(Pos(Zero), Neg(Zero)) 41.28/18.85 new_primCmpInt(Neg(Zero), Pos(Zero)) 41.28/18.85 new_esEs24(x0, x1, ty_Double) 41.28/18.85 new_esEs31(x0, x1, ty_Ordering) 41.28/18.85 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_ltEs20(x0, x1, ty_Ordering) 41.28/18.85 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_esEs24(x0, x1, ty_@0) 41.28/18.85 new_compare11(x0, x1, True) 41.28/18.85 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.85 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_lt20(x0, x1, app(ty_[], x2)) 41.28/18.85 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_esEs32(x0, x1, ty_Int) 41.28/18.85 new_lt19(x0, x1, ty_Double) 41.28/18.85 new_esEs26(x0, x1, app(ty_[], x2)) 41.28/18.85 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_ltEs8(True, False) 41.28/18.85 new_ltEs8(False, True) 41.28/18.85 new_ltEs19(x0, x1, ty_Int) 41.28/18.85 new_esEs25(x0, x1, ty_Integer) 41.28/18.85 new_compare27(x0, x1, False, x2, x3, x4) 41.28/18.85 new_lt8(x0, x1) 41.28/18.85 new_esEs31(x0, x1, ty_Integer) 41.28/18.85 new_esEs29(x0, x1, app(ty_[], x2)) 41.28/18.85 new_esEs27(x0, x1, ty_@0) 41.28/18.85 new_esEs24(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_compare3([], :(x0, x1), x2) 41.28/18.85 new_esEs28(x0, x1, ty_Ordering) 41.28/18.85 new_pePe(True, x0) 41.28/18.85 new_esEs19(x0, x1, ty_Double) 41.28/18.85 new_esEs31(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_esEs19(x0, x1, ty_@0) 41.28/18.85 new_esEs32(x0, x1, ty_Char) 41.28/18.85 new_esEs21(x0, x1, ty_Float) 41.28/18.85 new_esEs25(x0, x1, ty_Ordering) 41.28/18.85 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 41.28/18.85 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 41.28/18.85 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_asAs(False, x0) 41.28/18.85 new_fsEs(x0) 41.28/18.85 new_esEs30(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 41.28/18.85 new_compare16(x0, x1, x2, x3) 41.28/18.85 new_esEs32(x0, x1, ty_Bool) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 41.28/18.85 new_primPlusNat1(Succ(x0), Succ(x1)) 41.28/18.85 new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.85 new_lt7(x0, x1, x2, x3, x4) 41.28/18.85 new_lt19(x0, x1, ty_@0) 41.28/18.85 new_lt13(x0, x1, x2, x3) 41.28/18.85 new_compare10(x0, x1, True, x2, x3) 41.28/18.85 new_ltEs19(x0, x1, ty_Bool) 41.28/18.85 new_esEs29(x0, x1, ty_Float) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.85 new_esEs27(x0, x1, ty_Double) 41.28/18.85 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_compare14(x0, x1, ty_Double) 41.28/18.85 new_compare113(x0, x1, True, x2) 41.28/18.85 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_lt18(x0, x1, ty_Int) 41.28/18.85 new_esEs20(x0, x1, ty_Bool) 41.28/18.85 new_compare3([], [], x0) 41.28/18.85 new_compare114(x0, x1, True, x2, x3) 41.28/18.85 new_esEs26(x0, x1, ty_Ordering) 41.28/18.85 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_esEs22(x0, x1, ty_Int) 41.28/18.85 new_ltEs19(x0, x1, ty_@0) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 41.28/18.85 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.85 new_compare24(x0, x1, False) 41.28/18.85 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.85 new_esEs27(x0, x1, ty_Int) 41.28/18.85 new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_primCompAux00(x0, LT) 41.28/18.85 new_esEs20(x0, x1, ty_@0) 41.28/18.85 new_compare14(x0, x1, ty_Float) 41.28/18.85 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.85 new_lt20(x0, x1, ty_Integer) 41.28/18.85 new_primCmpNat0(Succ(x0), Zero) 41.28/18.85 new_primMulNat0(Zero, Zero) 41.28/18.85 new_lt4(x0, x1) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 41.28/18.85 new_esEs29(x0, x1, ty_Ordering) 41.28/18.85 new_esEs27(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_esEs29(x0, x1, ty_Int) 41.28/18.85 new_lt20(x0, x1, ty_Bool) 41.28/18.85 new_ltEs21(x0, x1, ty_Float) 41.28/18.85 new_pePe(False, x0) 41.28/18.85 new_ltEs18(x0, x1, app(ty_[], x2)) 41.28/18.85 new_esEs29(x0, x1, ty_Double) 41.28/18.85 new_ltEs14(x0, x1) 41.28/18.85 new_compare9(@0, @0) 41.28/18.85 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.85 new_esEs28(x0, x1, app(ty_[], x2)) 41.28/18.85 new_compare8(Char(x0), Char(x1)) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.85 new_esEs20(x0, x1, app(ty_[], x2)) 41.28/18.85 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 41.28/18.85 new_esEs29(x0, x1, ty_Char) 41.28/18.85 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_compare23(x0, x1, True, x2, x3) 41.28/18.85 new_esEs23(x0, x1, ty_Int) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.85 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.85 new_esEs32(x0, x1, ty_Ordering) 41.28/18.85 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_ltEs13(x0, x1, x2) 41.28/18.85 new_esEs7(Just(x0), Nothing, x1) 41.28/18.85 new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.85 new_ltEs19(x0, x1, ty_Integer) 41.28/18.85 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 41.28/18.85 new_esEs25(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_lt19(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_lt18(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_lt19(x0, x1, ty_Ordering) 41.28/18.85 new_lt20(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_not(True) 41.28/18.85 new_ltEs20(x0, x1, ty_Float) 41.28/18.85 new_lt9(x0, x1) 41.28/18.85 new_esEs15([], [], x0) 41.28/18.85 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 41.28/18.85 new_primCmpNat1(x0, Zero) 41.28/18.85 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_lt20(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_esEs18(x0, x1, ty_Double) 41.28/18.85 new_esEs29(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_esEs8(EQ, GT) 41.28/18.85 new_esEs8(GT, EQ) 41.28/18.85 new_esEs12(False, False) 41.28/18.85 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.85 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.85 new_compare14(x0, x1, ty_Integer) 41.28/18.85 new_esEs24(x0, x1, ty_Ordering) 41.28/18.85 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 41.28/18.85 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 41.28/18.85 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 41.28/18.85 new_compare32(x0, x1, x2, x3) 41.28/18.85 new_ltEs6(x0, x1) 41.28/18.85 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.85 new_esEs28(x0, x1, ty_Double) 41.28/18.85 new_esEs7(Just(x0), Just(x1), ty_Float) 41.28/18.85 new_lt18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.85 new_esEs20(x0, x1, ty_Integer) 41.28/18.85 new_compare210(Left(x0), Right(x1), False, x2, x3) 41.28/18.85 new_compare210(Right(x0), Left(x1), False, x2, x3) 41.28/18.85 new_compare28(x0, x1, True, x2) 41.28/18.85 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.85 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_esEs31(x0, x1, ty_Float) 41.28/18.85 new_esEs27(x0, x1, ty_Ordering) 41.28/18.85 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 41.28/18.85 new_lt15(x0, x1) 41.28/18.85 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.85 new_lt19(x0, x1, ty_Integer) 41.28/18.85 new_esEs31(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_esEs26(x0, x1, ty_Int) 41.28/18.85 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.85 new_compare111(x0, x1, False) 41.28/18.85 new_lt18(x0, x1, ty_Double) 41.28/18.85 new_esEs25(x0, x1, ty_Double) 41.28/18.85 new_lt18(x0, x1, ty_Char) 41.28/18.85 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_esEs30(x0, x1, ty_Double) 41.28/18.85 new_lt20(x0, x1, ty_Char) 41.28/18.85 new_lt20(x0, x1, ty_@0) 41.28/18.85 new_esEs25(x0, x1, ty_Char) 41.28/18.85 new_lt18(x0, x1, ty_@0) 41.28/18.85 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_esEs19(x0, x1, ty_Ordering) 41.28/18.85 new_compare112(x0, x1, False, x2, x3) 41.28/18.85 new_esEs31(x0, x1, app(ty_[], x2)) 41.28/18.85 new_esEs18(x0, x1, ty_Int) 41.28/18.85 new_esEs21(x0, x1, app(ty_[], x2)) 41.28/18.85 new_compare23(x0, x1, False, x2, x3) 41.28/18.85 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.85 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.85 new_esEs26(x0, x1, ty_Double) 41.28/18.85 new_esEs26(x0, x1, ty_Char) 41.28/18.85 new_lt20(x0, x1, ty_Int) 41.28/18.85 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_compare210(Left(x0), Left(x1), False, x2, x3) 41.28/18.85 new_compare3(:(x0, x1), :(x2, x3), x4) 41.28/18.85 new_esEs11(Char(x0), Char(x1)) 41.28/18.85 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_esEs30(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_ltEs5(LT, LT) 41.28/18.85 new_esEs26(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_esEs25(x0, x1, ty_Int) 41.28/18.85 new_primCmpInt(Pos(Zero), Pos(Zero)) 41.28/18.85 new_compare113(x0, x1, False, x2) 41.28/18.85 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_esEs18(x0, x1, ty_Char) 41.28/18.85 new_compare110(x0, x1, False, x2, x3, x4) 41.28/18.85 new_esEs21(x0, x1, ty_Integer) 41.28/18.85 new_compare31(x0, x1, x2, x3) 41.28/18.85 new_esEs32(x0, x1, app(ty_[], x2)) 41.28/18.85 new_esEs14(@0, @0) 41.28/18.85 new_ltEs18(x0, x1, ty_Double) 41.28/18.85 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_esEs20(x0, x1, ty_Ordering) 41.28/18.85 new_ltEs18(x0, x1, ty_Ordering) 41.28/18.85 new_esEs24(x0, x1, ty_Char) 41.28/18.85 new_ltEs5(LT, EQ) 41.28/18.85 new_ltEs5(EQ, LT) 41.28/18.85 new_esEs20(x0, x1, ty_Double) 41.28/18.85 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.85 new_compare10(x0, x1, False, x2, x3) 41.28/18.85 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 41.28/18.85 new_esEs27(x0, x1, ty_Integer) 41.28/18.85 new_ltEs5(GT, GT) 41.28/18.85 new_ltEs19(x0, x1, ty_Double) 41.28/18.85 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_esEs26(x0, x1, ty_Bool) 41.28/18.85 new_compare15(x0, x1) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.85 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 41.28/18.85 new_compare14(x0, x1, ty_Bool) 41.28/18.85 new_esEs26(x0, x1, ty_@0) 41.28/18.85 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_esEs32(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 41.28/18.85 new_lt18(x0, x1, ty_Integer) 41.28/18.85 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_esEs10(Integer(x0), Integer(x1)) 41.28/18.85 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 41.28/18.85 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 41.28/18.85 new_esEs8(LT, GT) 41.28/18.85 new_esEs8(GT, LT) 41.28/18.85 new_esEs9(x0, x1) 41.28/18.85 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_lt19(x0, x1, app(ty_[], x2)) 41.28/18.85 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_ltEs21(x0, x1, ty_Integer) 41.28/18.85 new_lt18(x0, x1, ty_Bool) 41.28/18.85 new_compare17(:%(x0, x1), :%(x2, x3), ty_Int) 41.28/18.85 new_esEs26(x0, x1, ty_Integer) 41.28/18.85 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 41.28/18.85 new_esEs32(x0, x1, ty_@0) 41.28/18.85 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_ltEs17(Just(x0), Nothing, x1) 41.28/18.85 new_gt(x0, x1, x2, x3) 41.28/18.85 new_esEs27(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_lt18(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_esEs23(x0, x1, ty_Integer) 41.28/18.85 new_compare210(Right(x0), Right(x1), False, x2, x3) 41.28/18.85 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 41.28/18.85 new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.85 new_ltEs21(x0, x1, ty_@0) 41.28/18.85 new_asAs(True, x0) 41.28/18.85 new_compare112(x0, x1, True, x2, x3) 41.28/18.85 new_lt16(x0, x1) 41.28/18.85 new_primCompAux00(x0, EQ) 41.28/18.85 new_ltEs11(x0, x1, x2) 41.28/18.85 new_compare111(x0, x1, True) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.85 new_primPlusNat1(Zero, Succ(x0)) 41.28/18.85 new_esEs24(x0, x1, ty_Float) 41.28/18.85 new_primEqNat0(Zero, Zero) 41.28/18.85 new_compare14(x0, x1, ty_Char) 41.28/18.85 new_compare27(x0, x1, True, x2, x3, x4) 41.28/18.85 new_esEs24(x0, x1, ty_Bool) 41.28/18.85 new_esEs7(Nothing, Just(x0), x1) 41.28/18.85 new_lt19(x0, x1, ty_Bool) 41.28/18.85 new_esEs12(True, True) 41.28/18.85 new_primCompAux0(x0, x1, x2, x3) 41.28/18.85 new_not(False) 41.28/18.85 new_ltEs17(Just(x0), Just(x1), ty_Float) 41.28/18.85 new_lt18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 41.28/18.85 new_esEs17(:%(x0, x1), :%(x2, x3), x4) 41.28/18.85 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.85 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_primPlusNat1(Succ(x0), Zero) 41.28/18.85 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.85 new_compare14(x0, x1, ty_Int) 41.28/18.85 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.85 new_esEs19(x0, x1, ty_Bool) 41.28/18.85 new_esEs21(x0, x1, ty_@0) 41.28/18.85 new_compare17(:%(x0, x1), :%(x2, x3), ty_Integer) 41.28/18.85 new_ltEs10(x0, x1) 41.28/18.85 new_esEs32(x0, x1, ty_Double) 41.28/18.85 new_ltEs8(True, True) 41.28/18.85 new_esEs19(x0, x1, ty_Float) 41.28/18.85 new_lt19(x0, x1, ty_Float) 41.28/18.85 new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.85 new_compare13(x0, x1, x2, x3, x4) 41.28/18.85 new_esEs13(Double(x0, x1), Double(x2, x3)) 41.28/18.85 new_esEs24(x0, x1, ty_Int) 41.28/18.85 new_ltEs5(EQ, EQ) 41.28/18.85 new_esEs29(x0, x1, ty_@0) 41.28/18.85 new_esEs27(x0, x1, ty_Bool) 41.28/18.85 new_esEs26(x0, x1, app(ty_Maybe, x2)) 41.28/18.85 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.85 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.85 new_lt5(x0, x1) 41.28/18.85 new_esEs16(Float(x0, x1), Float(x2, x3)) 41.28/18.85 new_lt18(x0, x1, ty_Ordering) 41.28/18.85 new_esEs19(x0, x1, ty_Char) 41.28/18.85 new_lt19(x0, x1, ty_Char) 41.28/18.85 new_esEs18(x0, x1, ty_Ordering) 41.28/18.85 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.85 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.85 new_ltEs21(x0, x1, app(ty_[], x2)) 41.28/18.85 new_lt20(x0, x1, ty_Ordering) 41.28/18.85 new_esEs30(x0, x1, ty_Ordering) 41.28/18.85 new_lt14(x0, x1, x2) 41.28/18.85 new_ltEs17(Nothing, Nothing, x0) 41.28/18.85 new_ltEs16(x0, x1) 41.28/18.85 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 41.28/18.85 new_primCmpNat1(x0, Succ(x1)) 41.28/18.85 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.85 new_primMulInt(Pos(x0), Neg(x1)) 41.28/18.85 new_primMulInt(Neg(x0), Pos(x1)) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.85 new_esEs19(x0, x1, ty_Int) 41.28/18.85 new_compare7(x0, x1) 41.28/18.85 new_esEs27(x0, x1, ty_Char) 41.28/18.85 new_primMulNat0(Zero, Succ(x0)) 41.28/18.85 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.85 new_primCmpNat0(Zero, Zero) 41.28/18.85 new_primEqNat0(Zero, Succ(x0)) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 41.28/18.85 new_lt18(x0, x1, app(ty_[], x2)) 41.28/18.85 new_lt19(x0, x1, ty_Int) 41.28/18.85 41.28/18.85 We have to consider all minimal (P,Q,R)-chains. 41.28/18.85 ---------------------------------------- 41.28/18.85 41.28/18.85 (41) QDPSizeChangeProof (EQUIVALENT) 41.28/18.85 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. 41.28/18.85 41.28/18.85 From the DPs we obtained the following set of size-change graphs: 41.28/18.85 *new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C11(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt1(yvy400, yvy500, h, ba), h, ba, bb) 41.28/18.85 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 41.28/18.85 41.28/18.85 41.28/18.85 *new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Right(yvy400), yvy41, h, ba, bb) 41.28/18.85 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 41.28/18.85 41.28/18.85 41.28/18.85 *new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt2(yvy400, yvy500, h, ba), h, ba, bb) 41.28/18.85 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 41.28/18.85 41.28/18.85 41.28/18.85 *new_addToFM_C(Branch(Left(yvy500), yvy51, yvy52, yvy53, yvy54), Right(yvy400), yvy41, h, ba, bb) -> new_addToFM_C21(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare210(Right(yvy400), Left(yvy500), False, h, ba), LT), h, ba, bb) 41.28/18.85 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 41.28/18.85 41.28/18.85 41.28/18.85 *new_addToFM_C(Branch(Right(yvy500), yvy51, yvy52, yvy53, yvy54), Right(yvy400), yvy41, h, ba, bb) -> new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare210(Right(yvy400), Right(yvy500), new_esEs30(yvy400, yvy500, ba), h, ba), LT), h, ba, bb) 41.28/18.85 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 41.28/18.85 41.28/18.85 41.28/18.85 *new_addToFM_C11(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Right(yvy400), yvy41, h, ba, bb) 41.28/18.85 The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 41.28/18.85 41.28/18.85 41.28/18.85 *new_addToFM_C22(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Right(yvy400), yvy41, h, ba, bb) 41.28/18.85 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 41.28/18.85 41.28/18.85 41.28/18.85 *new_addToFM_C12(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Right(yvy400), yvy41, h, ba, bb) 41.28/18.85 The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 41.28/18.85 41.28/18.85 41.28/18.85 ---------------------------------------- 41.28/18.85 41.28/18.85 (42) 41.28/18.85 YES 41.28/18.85 41.28/18.85 ---------------------------------------- 41.28/18.85 41.28/18.85 (43) 41.28/18.85 Obligation: 41.28/18.85 Q DP problem: 41.28/18.85 The TRS P consists of the following rules: 41.28/18.85 41.28/18.85 new_addToFM_C(Branch(Right(yvy500), yvy51, yvy52, yvy53, yvy54), Left(yvy400), yvy41, h, ba, bb) -> new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare210(Left(yvy400), Right(yvy500), False, h, ba), LT), h, ba, bb) 41.28/18.85 new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt0(yvy400, yvy500, h, ba), h, ba, bb) 41.28/18.85 new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Left(yvy400), yvy41, h, ba, bb) 41.28/18.85 new_addToFM_C(Branch(Left(yvy500), yvy51, yvy52, yvy53, yvy54), Left(yvy400), yvy41, h, ba, bb) -> new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare210(Left(yvy400), Left(yvy500), new_esEs29(yvy400, yvy500, h), h, ba), LT), h, ba, bb) 41.28/18.85 new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Left(yvy400), yvy41, h, ba, bb) 41.28/18.85 new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt(yvy400, yvy500, h, ba), h, ba, bb) 41.28/18.85 new_addToFM_C1(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Left(yvy400), yvy41, h, ba, bb) 41.28/18.85 new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Left(yvy400), yvy41, h, ba, bb) 41.28/18.85 41.28/18.85 The TRS R consists of the following rules: 41.28/18.85 41.28/18.85 new_ltEs20(yvy79002, yvy80002, app(ty_[], dga)) -> new_ltEs11(yvy79002, yvy80002, dga) 41.28/18.85 new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT 41.28/18.85 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 41.28/18.85 new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, ty_Bool) -> new_ltEs8(yvy79001, yvy80001) 41.28/18.85 new_esEs24(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.85 new_pePe(True, yvy255) -> True 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Ordering, bhe) -> new_esEs8(yvy4000, yvy3000) 41.28/18.85 new_esEs25(yvy79001, yvy80001, app(app(app(ty_@3, ded), dee), def)) -> new_esEs6(yvy79001, yvy80001, ded, dee, def) 41.28/18.85 new_esEs30(yvy400, yvy500, ty_Ordering) -> new_esEs8(yvy400, yvy500) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Ratio, hc)) -> new_ltEs13(yvy79000, yvy80000, hc) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(ty_Ratio, cdh)) -> new_ltEs13(yvy79000, yvy80000, cdh) 41.28/18.85 new_esEs19(yvy4001, yvy3001, app(ty_Ratio, chg)) -> new_esEs17(yvy4001, yvy3001, chg) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.85 new_esEs30(yvy400, yvy500, app(app(ty_@2, dbc), dbd)) -> new_esEs4(yvy400, yvy500, dbc, dbd) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Double) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.85 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 41.28/18.85 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.85 new_esEs27(yvy4001, yvy3001, app(app(ty_Either, bgf), bgg)) -> new_esEs5(yvy4001, yvy3001, bgf, bgg) 41.28/18.85 new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT 41.28/18.85 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.85 new_lt18(yvy79000, yvy80000, app(ty_Maybe, ddf)) -> new_lt6(yvy79000, yvy80000, ddf) 41.28/18.85 new_esEs9(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 41.28/18.85 new_lt20(yvy79000, yvy80000, app(app(ty_Either, bed), bee)) -> new_lt17(yvy79000, yvy80000, bed, bee) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.85 new_esEs24(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 41.28/18.85 new_esEs30(yvy400, yvy500, ty_Char) -> new_esEs11(yvy400, yvy500) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, gd)) -> new_esEs7(yvy4000, yvy3000, gd) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Char, bhe) -> new_esEs11(yvy4000, yvy3000) 41.28/18.85 new_esEs28(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 41.28/18.85 new_ltEs12(Left(yvy79000), Right(yvy80000), bce, bcf) -> True 41.28/18.85 new_ltEs21(yvy79001, yvy80001, ty_Char) -> new_ltEs6(yvy79001, yvy80001) 41.28/18.85 new_esEs28(yvy79000, yvy80000, app(ty_Maybe, eh)) -> new_esEs7(yvy79000, yvy80000, eh) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Ratio, ccf), bcf) -> new_ltEs13(yvy79000, yvy80000, ccf) 41.28/18.85 new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.85 new_esEs18(yvy4000, yvy3000, app(app(ty_@2, cfe), cff)) -> new_esEs4(yvy4000, yvy3000, cfe, cff) 41.28/18.85 new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt16(yvy79001, yvy80001) 41.28/18.85 new_lt19(yvy79001, yvy80001, app(app(ty_Either, deb), dec)) -> new_lt17(yvy79001, yvy80001, deb, dec) 41.28/18.85 new_esEs26(yvy4000, yvy3000, app(ty_[], bfc)) -> new_esEs15(yvy4000, yvy3000, bfc) 41.28/18.85 new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt4(yvy79001, yvy80001) 41.28/18.85 new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.85 new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) 41.28/18.85 new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.85 new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs13(yvy20, yvy15) 41.28/18.85 new_compare14(yvy79000, yvy80000, app(ty_[], cf)) -> new_compare3(yvy79000, yvy80000, cf) 41.28/18.85 new_compare3([], [], be) -> EQ 41.28/18.85 new_esEs28(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, app(ty_[], beb)) -> new_ltEs11(yvy7900, yvy8000, beb) 41.28/18.85 new_esEs8(GT, GT) -> True 41.28/18.85 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 41.28/18.85 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 41.28/18.85 new_ltEs18(yvy7900, yvy8000, app(app(ty_@2, bcb), bcc)) -> new_ltEs4(yvy7900, yvy8000, bcb, bcc) 41.28/18.85 new_fsEs(yvy244) -> new_not(new_esEs8(yvy244, GT)) 41.28/18.85 new_esEs25(yvy79001, yvy80001, app(ty_Ratio, dea)) -> new_esEs17(yvy79001, yvy80001, dea) 41.28/18.85 new_compare210(yvy790, yvy800, True, bbh, bca) -> EQ 41.28/18.85 new_esEs31(yvy35, yvy30, app(ty_Ratio, ef)) -> new_esEs17(yvy35, yvy30, ef) 41.28/18.85 new_esEs32(yvy20, yvy15, app(ty_[], dge)) -> new_esEs15(yvy20, yvy15, dge) 41.28/18.85 new_lt20(yvy79000, yvy80000, app(app(ty_@2, bc), bd)) -> new_lt13(yvy79000, yvy80000, bc, bd) 41.28/18.85 new_esEs29(yvy400, yvy500, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs6(yvy400, yvy500, ceh, cfa, cfb) 41.28/18.85 new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare18(yvy7900, yvy8000)) 41.28/18.85 new_esEs24(yvy79000, yvy80000, app(app(ty_@2, dce), dcf)) -> new_esEs4(yvy79000, yvy80000, dce, dcf) 41.28/18.85 new_lt18(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 41.28/18.85 new_compare28(yvy79000, yvy80000, False, eh) -> new_compare113(yvy79000, yvy80000, new_ltEs17(yvy79000, yvy80000, eh), eh) 41.28/18.85 new_lt18(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 41.28/18.85 new_esEs8(EQ, EQ) -> True 41.28/18.85 new_ltEs11(yvy7900, yvy8000, be) -> new_fsEs(new_compare3(yvy7900, yvy8000, be)) 41.28/18.85 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.85 new_esEs20(yvy4002, yvy3002, app(ty_Ratio, dba)) -> new_esEs17(yvy4002, yvy3002, dba) 41.28/18.85 new_ltEs20(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(app(ty_@2, cba), cbb)) -> new_esEs4(yvy4000, yvy3000, cba, cbb) 41.28/18.85 new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.85 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.85 new_compare13(yvy79000, yvy80000, da, db, dc) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, da, db, dc), da, db, dc) 41.28/18.85 new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_Either, hd), he)) -> new_ltEs12(yvy79000, yvy80000, hd, he) 41.28/18.85 new_not(True) -> False 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.85 new_compare210(Left(yvy7900), Right(yvy8000), False, bbh, bca) -> LT 41.28/18.85 new_lt18(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 41.28/18.85 new_compare14(yvy79000, yvy80000, ty_Ordering) -> new_compare25(yvy79000, yvy80000) 41.28/18.85 new_compare24(yvy79000, yvy80000, False) -> new_compare11(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000)) 41.28/18.85 new_primCompAux00(yvy260, LT) -> LT 41.28/18.85 new_primCmpNat0(Zero, Zero) -> EQ 41.28/18.85 new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs6(yvy4000, yvy3000, bba, bbb, bbc) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Integer, bcf) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.85 new_esEs28(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 41.28/18.85 new_compare11(yvy79000, yvy80000, False) -> GT 41.28/18.85 new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 41.28/18.85 new_esEs21(yvy4000, yvy3000, app(ty_Ratio, bbd)) -> new_esEs17(yvy4000, yvy3000, bbd) 41.28/18.85 new_esEs20(yvy4002, yvy3002, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs6(yvy4002, yvy3002, daf, dag, dah) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(ty_[], cbc)) -> new_esEs15(yvy4000, yvy3000, cbc) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Char, bcf) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.85 new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 41.28/18.85 new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.85 new_esEs19(yvy4001, yvy3001, app(app(ty_@2, cgg), cgh)) -> new_esEs4(yvy4001, yvy3001, cgg, cgh) 41.28/18.85 new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) 41.28/18.85 new_lt18(yvy79000, yvy80000, app(app(ty_Either, dch), dda)) -> new_lt17(yvy79000, yvy80000, dch, dda) 41.28/18.85 new_primEqNat0(Succ(yvy40000), Zero) -> False 41.28/18.85 new_primEqNat0(Zero, Succ(yvy30000)) -> False 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_[], bhh), bhe) -> new_esEs15(yvy4000, yvy3000, bhh) 41.28/18.85 new_esEs14(@0, @0) -> True 41.28/18.85 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 41.28/18.85 new_compare10(yvy79000, yvy80000, True, bc, bd) -> LT 41.28/18.85 new_ltEs18(yvy7900, yvy8000, app(ty_[], be)) -> new_ltEs11(yvy7900, yvy8000, be) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.85 new_primCompAux00(yvy260, GT) -> GT 41.28/18.85 new_compare28(yvy79000, yvy80000, True, eh) -> EQ 41.28/18.85 new_esEs25(yvy79001, yvy80001, ty_Double) -> new_esEs13(yvy79001, yvy80001) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) 41.28/18.85 new_primCmpNat2(Zero, yvy7900) -> LT 41.28/18.85 new_esEs20(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) 41.28/18.85 new_esEs25(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_@0) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.85 new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 41.28/18.85 new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT 41.28/18.85 new_ltEs20(yvy79002, yvy80002, app(app(ty_@2, dfa), dfb)) -> new_ltEs4(yvy79002, yvy80002, dfa, dfb) 41.28/18.85 new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 41.28/18.85 new_esEs20(yvy4002, yvy3002, app(app(ty_@2, daa), dab)) -> new_esEs4(yvy4002, yvy3002, daa, dab) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, ty_Int) -> new_ltEs7(yvy79001, yvy80001) 41.28/18.85 new_compare3(:(yvy79000, yvy79001), :(yvy80000, yvy80001), be) -> new_primCompAux0(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, be), be) 41.28/18.85 new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs13(yvy35, yvy30) 41.28/18.85 new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 41.28/18.85 new_ltEs5(LT, GT) -> True 41.28/18.85 new_ltEs18(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 41.28/18.85 new_primPlusNat1(Succ(yvy20100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20100, yvy3000000))) 41.28/18.85 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.85 new_gt2(yvy35, yvy30, dd, de) -> new_esEs8(new_compare30(yvy35, yvy30, dd, de), GT) 41.28/18.85 new_esEs31(yvy35, yvy30, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs6(yvy35, yvy30, ec, ed, ee) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, hf), hg), hh)) -> new_ltEs9(yvy79000, yvy80000, hf, hg, hh) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.85 new_primCmpNat0(Zero, Succ(yvy80000)) -> LT 41.28/18.85 new_ltEs20(yvy79002, yvy80002, ty_Bool) -> new_ltEs8(yvy79002, yvy80002) 41.28/18.85 new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, chd), che), chf)) -> new_esEs6(yvy4001, yvy3001, chd, che, chf) 41.28/18.85 new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, bdb), bdc)) -> new_ltEs4(yvy7900, yvy8000, bdb, bdc) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(ty_Maybe, ccb)) -> new_esEs7(yvy4000, yvy3000, ccb) 41.28/18.85 new_compare110(yvy79000, yvy80000, False, da, db, dc) -> GT 41.28/18.85 new_primCmpNat0(Succ(yvy79000), Zero) -> GT 41.28/18.85 new_pePe(False, yvy255) -> yvy255 41.28/18.85 new_ltEs17(Nothing, Nothing, gh) -> True 41.28/18.85 new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 41.28/18.85 new_compare3([], :(yvy80000, yvy80001), be) -> LT 41.28/18.85 new_esEs7(Nothing, Just(yvy3000), fa) -> False 41.28/18.85 new_esEs7(Just(yvy4000), Nothing, fa) -> False 41.28/18.85 new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 41.28/18.85 new_compare27(yvy79000, yvy80000, False, da, db, dc) -> new_compare110(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, da, db, dc), da, db, dc) 41.28/18.85 new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 41.28/18.85 new_ltEs17(Nothing, Just(yvy80000), gh) -> True 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Float) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.85 new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 41.28/18.85 new_ltEs17(Just(yvy79000), Nothing, gh) -> False 41.28/18.85 new_esEs12(False, False) -> True 41.28/18.85 new_ltEs20(yvy79002, yvy80002, app(ty_Maybe, dgb)) -> new_ltEs17(yvy79002, yvy80002, dgb) 41.28/18.85 new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 41.28/18.85 new_compare114(yvy227, yvy228, True, bbf, bbg) -> LT 41.28/18.85 new_primCmpNat1(yvy7900, Zero) -> GT 41.28/18.85 new_compare112(yvy234, yvy235, True, cfc, cfd) -> LT 41.28/18.85 new_compare14(yvy79000, yvy80000, ty_Char) -> new_compare8(yvy79000, yvy80000) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, ff), fg)) -> new_esEs5(yvy4000, yvy3000, ff, fg) 41.28/18.85 new_lt18(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 41.28/18.85 new_lt15(yvy79000, yvy80000) -> new_esEs8(new_compare25(yvy79000, yvy80000), LT) 41.28/18.85 new_esEs25(yvy79001, yvy80001, ty_Integer) -> new_esEs10(yvy79001, yvy80001) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs9(yvy79000, yvy80000, cec, ced, cee) 41.28/18.85 new_compare23(yvy79000, yvy80000, False, bc, bd) -> new_compare10(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.85 new_gt1(yvy400, yvy300, h, ba) -> new_esEs8(new_compare33(yvy400, yvy300, h, ba), GT) 41.28/18.85 new_esEs25(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_[], cdd), bcf) -> new_ltEs11(yvy79000, yvy80000, cdd) 41.28/18.85 new_esEs25(yvy79001, yvy80001, app(ty_[], deg)) -> new_esEs15(yvy79001, yvy80001, deg) 41.28/18.85 new_compare113(yvy79000, yvy80000, True, eh) -> LT 41.28/18.85 new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 41.28/18.85 new_ltEs7(yvy7900, yvy8000) -> new_fsEs(new_compare7(yvy7900, yvy8000)) 41.28/18.85 new_lt20(yvy79000, yvy80000, app(ty_[], ccc)) -> new_lt11(yvy79000, yvy80000, ccc) 41.28/18.85 new_compare23(yvy79000, yvy80000, True, bc, bd) -> EQ 41.28/18.85 new_esEs8(LT, EQ) -> False 41.28/18.85 new_esEs8(EQ, LT) -> False 41.28/18.85 new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bhf), bhg), bhe) -> new_esEs4(yvy4000, yvy3000, bhf, bhg) 41.28/18.85 new_esEs21(yvy4000, yvy3000, app(app(ty_@2, bad), bae)) -> new_esEs4(yvy4000, yvy3000, bad, bae) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, app(app(app(ty_@3, eab), eac), ead)) -> new_ltEs9(yvy79001, yvy80001, eab, eac, ead) 41.28/18.85 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 41.28/18.85 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 41.28/18.85 new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs6(yvy20, yvy15, dgh, dha, dhb) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(app(ty_@2, cdf), cdg)) -> new_ltEs4(yvy79000, yvy80000, cdf, cdg) 41.28/18.85 new_esEs7(Nothing, Nothing, fa) -> True 41.28/18.85 new_esEs13(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 41.28/18.85 new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 41.28/18.85 new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.85 new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt9(yvy79001, yvy80001) 41.28/18.85 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, bga)) -> new_esEs17(yvy4000, yvy3000, bga) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Int) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.85 new_esEs25(yvy79001, yvy80001, app(app(ty_@2, ddg), ddh)) -> new_esEs4(yvy79001, yvy80001, ddg, ddh) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_Either, ccg), cch), bcf) -> new_ltEs12(yvy79000, yvy80000, ccg, cch) 41.28/18.85 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare7(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, app(app(ty_Either, bce), bcf)) -> new_ltEs12(yvy7900, yvy8000, bce, bcf) 41.28/18.85 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.85 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.85 new_esEs24(yvy79000, yvy80000, app(app(ty_Either, dch), dda)) -> new_esEs5(yvy79000, yvy80000, dch, dda) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, bec)) -> new_ltEs17(yvy7900, yvy8000, bec) 41.28/18.85 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.85 new_esEs25(yvy79001, yvy80001, ty_Ordering) -> new_esEs8(yvy79001, yvy80001) 41.28/18.85 new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs14(yvy35, yvy30) 41.28/18.85 new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT 41.28/18.85 new_compare114(yvy227, yvy228, False, bbf, bbg) -> GT 41.28/18.85 new_esEs20(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) 41.28/18.85 new_ltEs20(yvy79002, yvy80002, ty_@0) -> new_ltEs16(yvy79002, yvy80002) 41.28/18.85 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.85 new_esEs25(yvy79001, yvy80001, app(ty_Maybe, deh)) -> new_esEs7(yvy79001, yvy80001, deh) 41.28/18.85 new_ltEs8(True, False) -> False 41.28/18.85 new_esEs15([], [], bac) -> True 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Bool, bcf) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.85 new_esEs32(yvy20, yvy15, app(app(ty_Either, dgf), dgg)) -> new_esEs5(yvy20, yvy15, dgf, dgg) 41.28/18.85 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.85 new_esEs24(yvy79000, yvy80000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs6(yvy79000, yvy80000, ddb, ddc, ddd) 41.28/18.85 new_lt4(yvy240, yvy239) -> new_esEs8(new_compare7(yvy240, yvy239), LT) 41.28/18.85 new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt10(yvy79001, yvy80001) 41.28/18.85 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 41.28/18.85 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 41.28/18.85 new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs13(yvy400, yvy500) 41.28/18.85 new_ltEs8(False, False) -> True 41.28/18.85 new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, fh), ga), gb)) -> new_esEs6(yvy4000, yvy3000, fh, ga, gb) 41.28/18.85 new_compare14(yvy79000, yvy80000, app(app(ty_@2, bf), bg)) -> new_compare16(yvy79000, yvy80000, bf, bg) 41.28/18.85 new_lt18(yvy79000, yvy80000, app(ty_Ratio, dcg)) -> new_lt14(yvy79000, yvy80000, dcg) 41.28/18.85 new_ltEs5(EQ, EQ) -> True 41.28/18.85 new_ltEs18(yvy7900, yvy8000, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs9(yvy7900, yvy8000, bcg, bch, bda) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_Either, caa), cab), bhe) -> new_esEs5(yvy4000, yvy3000, caa, cab) 41.28/18.85 new_compare27(yvy79000, yvy80000, True, da, db, dc) -> EQ 41.28/18.85 new_lt19(yvy79001, yvy80001, app(ty_[], deg)) -> new_lt11(yvy79001, yvy80001, deg) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Bool, bhe) -> new_esEs12(yvy4000, yvy3000) 41.28/18.85 new_compare15(yvy79000, yvy80000) -> new_compare29(yvy79000, yvy80000, new_esEs12(yvy79000, yvy80000)) 41.28/18.85 new_esEs21(yvy4000, yvy3000, app(app(ty_Either, bag), bah)) -> new_esEs5(yvy4000, yvy3000, bag, bah) 41.28/18.85 new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.85 new_compare7(yvy79, yvy80) -> new_primCmpInt(yvy79, yvy80) 41.28/18.85 new_esEs8(LT, LT) -> True 41.28/18.85 new_compare111(yvy79000, yvy80000, True) -> LT 41.28/18.85 new_esEs28(yvy79000, yvy80000, app(ty_[], ccc)) -> new_esEs15(yvy79000, yvy80000, ccc) 41.28/18.85 new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 41.28/18.85 new_lt18(yvy79000, yvy80000, app(ty_[], dde)) -> new_lt11(yvy79000, yvy80000, dde) 41.28/18.85 new_lt6(yvy79000, yvy80000, eh) -> new_esEs8(new_compare12(yvy79000, yvy80000, eh), LT) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.85 new_esEs24(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs9(yvy7900, yvy8000, bdg, bdh, bea) 41.28/18.85 new_primPlusNat1(Succ(yvy20100), Zero) -> Succ(yvy20100) 41.28/18.85 new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, fb), fc)) -> new_esEs4(yvy4000, yvy3000, fb, fc) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Maybe, bab)) -> new_ltEs17(yvy79000, yvy80000, bab) 41.28/18.85 new_esEs30(yvy400, yvy500, ty_@0) -> new_esEs14(yvy400, yvy500) 41.28/18.85 new_compare14(yvy79000, yvy80000, app(app(ty_Either, ca), cb)) -> new_compare19(yvy79000, yvy80000, ca, cb) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, ty_Double) -> new_ltEs14(yvy79001, yvy80001) 41.28/18.85 new_compare14(yvy79000, yvy80000, ty_Integer) -> new_compare26(yvy79000, yvy80000) 41.28/18.85 new_esEs24(yvy79000, yvy80000, app(ty_Maybe, ddf)) -> new_esEs7(yvy79000, yvy80000, ddf) 41.28/18.85 new_esEs25(yvy79001, yvy80001, ty_Bool) -> new_esEs12(yvy79001, yvy80001) 41.28/18.85 new_esEs24(yvy79000, yvy80000, app(ty_Ratio, dcg)) -> new_esEs17(yvy79000, yvy80000, dcg) 41.28/18.85 new_esEs24(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.85 new_ltEs5(LT, LT) -> True 41.28/18.85 new_ltEs20(yvy79002, yvy80002, ty_Double) -> new_ltEs14(yvy79002, yvy80002) 41.28/18.85 new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs14(yvy400, yvy500) 41.28/18.85 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.85 new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs9(yvy20, yvy15) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Integer, bhe) -> new_esEs10(yvy4000, yvy3000) 41.28/18.85 new_ltEs5(LT, EQ) -> True 41.28/18.85 new_compare14(yvy79000, yvy80000, ty_Double) -> new_compare18(yvy79000, yvy80000) 41.28/18.85 new_compare14(yvy79000, yvy80000, ty_@0) -> new_compare9(yvy79000, yvy80000) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, app(ty_Maybe, eaf)) -> new_ltEs17(yvy79001, yvy80001, eaf) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.85 new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.85 new_ltEs8(False, True) -> True 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, gc)) -> new_esEs17(yvy4000, yvy3000, gc) 41.28/18.85 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.85 new_compare14(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) 41.28/18.85 new_esEs27(yvy4001, yvy3001, app(ty_[], bge)) -> new_esEs15(yvy4001, yvy3001, bge) 41.28/18.85 new_ltEs6(yvy7900, yvy8000) -> new_fsEs(new_compare8(yvy7900, yvy8000)) 41.28/18.85 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.85 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.85 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(app(ty_Either, cea), ceb)) -> new_ltEs12(yvy79000, yvy80000, cea, ceb) 41.28/18.85 new_ltEs20(yvy79002, yvy80002, app(app(app(ty_@3, dff), dfg), dfh)) -> new_ltEs9(yvy79002, yvy80002, dff, dfg, dfh) 41.28/18.85 new_esEs19(yvy4001, yvy3001, app(app(ty_Either, chb), chc)) -> new_esEs5(yvy4001, yvy3001, chb, chc) 41.28/18.85 new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt12(yvy79001, yvy80001) 41.28/18.85 new_esEs27(yvy4001, yvy3001, app(ty_Ratio, bhc)) -> new_esEs17(yvy4001, yvy3001, bhc) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Double, bcf) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs6(yvy4000, yvy3000, cbf, cbg, cbh) 41.28/18.85 new_esEs28(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 41.28/18.85 new_ltEs12(Right(yvy79000), Left(yvy80000), bce, bcf) -> False 41.28/18.85 new_esEs24(yvy79000, yvy80000, app(ty_[], dde)) -> new_esEs15(yvy79000, yvy80000, dde) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Ratio, caf), bhe) -> new_esEs17(yvy4000, yvy3000, caf) 41.28/18.85 new_esEs30(yvy400, yvy500, app(ty_[], dbe)) -> new_esEs15(yvy400, yvy500, dbe) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(ty_Ratio, cca)) -> new_esEs17(yvy4000, yvy3000, cca) 41.28/18.85 new_esEs17(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bef) -> new_asAs(new_esEs22(yvy4000, yvy3000, bef), new_esEs23(yvy4001, yvy3001, bef)) 41.28/18.85 new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 41.28/18.85 new_compare210(Left(yvy7900), Left(yvy8000), False, bbh, bca) -> new_compare114(yvy7900, yvy8000, new_ltEs18(yvy7900, yvy8000, bbh), bbh, bca) 41.28/18.85 new_sr0(Integer(yvy800000), Integer(yvy790010)) -> Integer(new_primMulInt(yvy800000, yvy790010)) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, cda), cdb), cdc), bcf) -> new_ltEs9(yvy79000, yvy80000, cda, cdb, cdc) 41.28/18.85 new_esEs28(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 41.28/18.85 new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs6(yvy4001, yvy3001, bgh, bha, bhb) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.85 new_esEs28(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, app(ty_Ratio, dhg)) -> new_ltEs13(yvy79001, yvy80001, dhg) 41.28/18.85 new_lt9(yvy79000, yvy80000) -> new_esEs8(new_compare8(yvy79000, yvy80000), LT) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, ty_@0) -> new_ltEs16(yvy79001, yvy80001) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.85 new_esEs20(yvy4002, yvy3002, ty_Int) -> new_esEs9(yvy4002, yvy3002) 41.28/18.85 new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.85 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.85 new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs12(yvy20, yvy15) 41.28/18.85 new_esEs25(yvy79001, yvy80001, ty_Int) -> new_esEs9(yvy79001, yvy80001) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, app(app(ty_Either, dhh), eaa)) -> new_ltEs12(yvy79001, yvy80001, dhh, eaa) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.85 new_lt5(yvy79000, yvy80000) -> new_esEs8(new_compare9(yvy79000, yvy80000), LT) 41.28/18.85 new_asAs(True, yvy222) -> yvy222 41.28/18.85 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 41.28/18.85 new_compare10(yvy79000, yvy80000, False, bc, bd) -> GT 41.28/18.85 new_ltEs5(GT, LT) -> False 41.28/18.85 new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), bcg, bch, bda) -> new_pePe(new_lt18(yvy79000, yvy80000, bcg), new_asAs(new_esEs24(yvy79000, yvy80000, bcg), new_pePe(new_lt19(yvy79001, yvy80001, bch), new_asAs(new_esEs25(yvy79001, yvy80001, bch), new_ltEs20(yvy79002, yvy80002, bda))))) 41.28/18.85 new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.85 new_esEs24(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 41.28/18.85 new_compare14(yvy79000, yvy80000, ty_Int) -> new_compare7(yvy79000, yvy80000) 41.28/18.85 new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.85 new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, da), db), dc)) -> new_lt7(yvy79000, yvy80000, da, db, dc) 41.28/18.85 new_esEs20(yvy4002, yvy3002, app(ty_[], dac)) -> new_esEs15(yvy4002, yvy3002, dac) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.85 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.85 new_lt10(yvy79000, yvy80000) -> new_esEs8(new_compare18(yvy79000, yvy80000), LT) 41.28/18.85 new_esEs24(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 41.28/18.85 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.85 new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) 41.28/18.85 new_ltEs8(True, True) -> True 41.28/18.85 new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat1(yvy7900, yvy800) 41.28/18.85 new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs9(yvy35, yvy30) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_@2, ccd), cce), bcf) -> new_ltEs4(yvy79000, yvy80000, ccd, cce) 41.28/18.85 new_esEs29(yvy400, yvy500, app(app(ty_Either, cah), bhe)) -> new_esEs5(yvy400, yvy500, cah, bhe) 41.28/18.85 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare26(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) 41.28/18.85 new_compare8(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Ordering, bcf) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.85 new_primCompAux00(yvy260, EQ) -> yvy260 41.28/18.85 new_esEs12(False, True) -> False 41.28/18.85 new_esEs12(True, False) -> False 41.28/18.85 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.85 new_esEs30(yvy400, yvy500, ty_Float) -> new_esEs16(yvy400, yvy500) 41.28/18.85 new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt15(yvy79001, yvy80001) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Float, bhe) -> new_esEs16(yvy4000, yvy3000) 41.28/18.85 new_primMulNat0(Zero, Zero) -> Zero 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Double, bhe) -> new_esEs13(yvy4000, yvy3000) 41.28/18.85 new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, ded), dee), def)) -> new_lt7(yvy79001, yvy80001, ded, dee, def) 41.28/18.85 new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) 41.28/18.85 new_esEs30(yvy400, yvy500, ty_Double) -> new_esEs13(yvy400, yvy500) 41.28/18.85 new_esEs12(True, True) -> True 41.28/18.85 new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.85 new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.85 new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Int, bhe) -> new_esEs9(yvy4000, yvy3000) 41.28/18.85 new_compare111(yvy79000, yvy80000, False) -> GT 41.28/18.85 new_esEs30(yvy400, yvy500, ty_Int) -> new_esEs9(yvy400, yvy500) 41.28/18.85 new_esEs31(yvy35, yvy30, app(ty_Maybe, eg)) -> new_esEs7(yvy35, yvy30, eg) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_@0, bcf) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.85 new_compare9(@0, @0) -> EQ 41.28/18.85 new_esEs15(:(yvy4000, yvy4001), [], bac) -> False 41.28/18.85 new_esEs15([], :(yvy3000, yvy3001), bac) -> False 41.28/18.85 new_esEs20(yvy4002, yvy3002, app(app(ty_Either, dad), dae)) -> new_esEs5(yvy4002, yvy3002, dad, dae) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, bdd)) -> new_ltEs13(yvy7900, yvy8000, bdd) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, app(app(ty_Either, cbd), cbe)) -> new_esEs5(yvy4000, yvy3000, cbd, cbe) 41.28/18.85 new_esEs24(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 41.28/18.85 new_ltEs5(EQ, LT) -> False 41.28/18.85 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, bde), bdf)) -> new_ltEs12(yvy7900, yvy8000, bde, bdf) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.85 new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.85 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.85 new_esEs29(yvy400, yvy500, app(ty_[], bac)) -> new_esEs15(yvy400, yvy500, bac) 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], fd)) -> new_esEs15(yvy4000, yvy3000, fd) 41.28/18.85 new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(ty_Maybe, ceg)) -> new_ltEs17(yvy79000, yvy80000, ceg) 41.28/18.85 new_primCompAux0(yvy79000, yvy80000, yvy256, be) -> new_primCompAux00(yvy256, new_compare14(yvy79000, yvy80000, be)) 41.28/18.85 new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.85 new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.85 new_lt17(yvy79000, yvy80000, bed, bee) -> new_esEs8(new_compare19(yvy79000, yvy80000, bed, bee), LT) 41.28/18.85 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 41.28/18.85 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 41.28/18.85 new_esEs24(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 41.28/18.85 new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt8(yvy79001, yvy80001) 41.28/18.85 new_ltEs20(yvy79002, yvy80002, app(app(ty_Either, dfd), dfe)) -> new_ltEs12(yvy79002, yvy80002, dfd, dfe) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Char) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.85 new_lt19(yvy79001, yvy80001, app(ty_Ratio, dea)) -> new_lt14(yvy79001, yvy80001, dea) 41.28/18.85 new_ltEs20(yvy79002, yvy80002, app(ty_Ratio, dfc)) -> new_ltEs13(yvy79002, yvy80002, dfc) 41.28/18.85 new_esEs20(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 41.28/18.85 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 41.28/18.85 new_esEs20(yvy4002, yvy3002, ty_Double) -> new_esEs13(yvy4002, yvy3002) 41.28/18.85 new_esEs21(yvy4000, yvy3000, app(ty_Maybe, bbe)) -> new_esEs7(yvy4000, yvy3000, bbe) 41.28/18.85 new_esEs32(yvy20, yvy15, app(app(ty_@2, dgc), dgd)) -> new_esEs4(yvy20, yvy15, dgc, dgd) 41.28/18.85 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, bfa), bfb)) -> new_esEs4(yvy4000, yvy3000, bfa, bfb) 41.28/18.85 new_compare14(yvy79000, yvy80000, app(ty_Ratio, bh)) -> new_compare17(yvy79000, yvy80000, bh) 41.28/18.85 new_compare24(yvy79000, yvy80000, True) -> EQ 41.28/18.85 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, app(ty_Maybe, gh)) -> new_ltEs17(yvy7900, yvy8000, gh) 41.28/18.85 new_esEs18(yvy4000, yvy3000, app(ty_[], cfg)) -> new_esEs15(yvy4000, yvy3000, cfg) 41.28/18.85 new_esEs25(yvy79001, yvy80001, app(app(ty_Either, deb), dec)) -> new_esEs5(yvy79001, yvy80001, deb, dec) 41.28/18.85 new_lt18(yvy79000, yvy80000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_lt7(yvy79000, yvy80000, ddb, ddc, ddd) 41.28/18.85 new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 41.28/18.85 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.85 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 41.28/18.85 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 41.28/18.85 new_lt20(yvy79000, yvy80000, app(ty_Ratio, gg)) -> new_lt14(yvy79000, yvy80000, gg) 41.28/18.85 new_gt0(yvy400, yvy300, h, ba) -> new_esEs8(new_compare32(yvy400, yvy300, h, ba), GT) 41.28/18.85 new_esEs32(yvy20, yvy15, app(ty_Maybe, dhd)) -> new_esEs7(yvy20, yvy15, dhd) 41.28/18.85 new_esEs31(yvy35, yvy30, app(app(ty_Either, ea), eb)) -> new_esEs5(yvy35, yvy30, ea, eb) 41.28/18.85 new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, app(ty_[], cef)) -> new_ltEs11(yvy79000, yvy80000, cef) 41.28/18.85 new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs9(yvy400, yvy500) 41.28/18.85 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, bgb)) -> new_esEs7(yvy4000, yvy3000, bgb) 41.28/18.85 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Maybe, cde), bcf) -> new_ltEs17(yvy79000, yvy80000, cde) 41.28/18.85 new_lt18(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 41.28/18.85 new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 41.28/18.85 new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) 41.28/18.85 new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt5(yvy79001, yvy80001) 41.28/18.85 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, bfd), bfe)) -> new_esEs5(yvy4000, yvy3000, bfd, bfe) 41.28/18.85 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat1(yvy8000, Zero) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cac), cad), cae), bhe) -> new_esEs6(yvy4000, yvy3000, cac, cad, cae) 41.28/18.85 new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) 41.28/18.85 new_lt18(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 41.28/18.85 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.85 new_compare110(yvy79000, yvy80000, True, da, db, dc) -> LT 41.28/18.85 new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) 41.28/18.85 new_compare14(yvy79000, yvy80000, app(app(app(ty_@3, cc), cd), ce)) -> new_compare13(yvy79000, yvy80000, cc, cd, ce) 41.28/18.85 new_esEs15(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bac) -> new_asAs(new_esEs21(yvy4000, yvy3000, bac), new_esEs15(yvy4001, yvy3001, bac)) 41.28/18.85 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs6(yvy4000, yvy3000, bff, bfg, bfh) 41.28/18.85 new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 41.28/18.85 new_esEs27(yvy4001, yvy3001, app(ty_Maybe, bhd)) -> new_esEs7(yvy4001, yvy3001, bhd) 41.28/18.85 new_compare12(yvy79000, yvy80000, eh) -> new_compare28(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, eh), eh) 41.28/18.85 new_compare112(yvy234, yvy235, False, cfc, cfd) -> GT 41.28/18.85 new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs6(yvy4000, yvy3000, cgb, cgc, cgd) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cag), bhe) -> new_esEs7(yvy4000, yvy3000, cag) 41.28/18.85 new_ltEs5(EQ, GT) -> True 41.28/18.85 new_esEs31(yvy35, yvy30, app(app(ty_@2, df), dg)) -> new_esEs4(yvy35, yvy30, df, dg) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Float, bcf) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.85 new_ltEs20(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) 41.28/18.85 new_not(False) -> True 41.28/18.85 new_esEs28(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 41.28/18.85 new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs16(yvy400, yvy500) 41.28/18.85 new_esEs18(yvy4000, yvy3000, app(app(ty_Either, cfh), cga)) -> new_esEs5(yvy4000, yvy3000, cfh, cga) 41.28/18.85 new_ltEs12(Right(yvy79000), Right(yvy80000), bce, ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.85 new_compare25(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs8(yvy79000, yvy80000)) 41.28/18.85 new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs8(yvy35, yvy30) 41.28/18.85 new_ltEs13(yvy7900, yvy8000, bcd) -> new_fsEs(new_compare17(yvy7900, yvy8000, bcd)) 41.28/18.85 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), beg, beh) -> new_asAs(new_esEs26(yvy4000, yvy3000, beg), new_esEs27(yvy4001, yvy3001, beh)) 41.28/18.85 new_esEs25(yvy79001, yvy80001, ty_@0) -> new_esEs14(yvy79001, yvy80001) 41.28/18.85 new_esEs20(yvy4002, yvy3002, app(ty_Maybe, dbb)) -> new_esEs7(yvy4002, yvy3002, dbb) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_@2, ha), hb)) -> new_ltEs4(yvy79000, yvy80000, ha, hb) 41.28/18.85 new_ltEs5(GT, GT) -> True 41.28/18.85 new_esEs8(LT, GT) -> False 41.28/18.85 new_esEs8(GT, LT) -> False 41.28/18.85 new_compare29(yvy79000, yvy80000, True) -> EQ 41.28/18.85 new_esEs31(yvy35, yvy30, app(ty_[], dh)) -> new_esEs15(yvy35, yvy30, dh) 41.28/18.85 new_esEs32(yvy20, yvy15, app(ty_Ratio, dhc)) -> new_esEs17(yvy20, yvy15, dhc) 41.28/18.85 new_esEs5(Left(yvy4000), Right(yvy3000), cah, bhe) -> False 41.28/18.85 new_esEs5(Right(yvy4000), Left(yvy3000), cah, bhe) -> False 41.28/18.85 new_esEs20(yvy4002, yvy3002, ty_Bool) -> new_esEs12(yvy4002, yvy3002) 41.28/18.85 new_lt19(yvy79001, yvy80001, app(ty_Maybe, deh)) -> new_lt6(yvy79001, yvy80001, deh) 41.28/18.85 new_lt13(yvy79000, yvy80000, bc, bd) -> new_esEs8(new_compare16(yvy79000, yvy80000, bc, bd), LT) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, ty_Ordering) -> new_ltEs5(yvy79001, yvy80001) 41.28/18.85 new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs10(yvy35, yvy30) 41.28/18.85 new_esEs19(yvy4001, yvy3001, app(ty_[], cha)) -> new_esEs15(yvy4001, yvy3001, cha) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, app(ty_Ratio, bcd)) -> new_ltEs13(yvy7900, yvy8000, bcd) 41.28/18.85 new_compare14(yvy79000, yvy80000, app(ty_Maybe, cg)) -> new_compare12(yvy79000, yvy80000, cg) 41.28/18.85 new_lt8(yvy79000, yvy80000) -> new_esEs8(new_compare26(yvy79000, yvy80000), LT) 41.28/18.85 new_compare113(yvy79000, yvy80000, False, eh) -> GT 41.28/18.85 new_esEs30(yvy400, yvy500, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs6(yvy400, yvy500, dbh, dca, dcb) 41.28/18.85 new_esEs30(yvy400, yvy500, app(app(ty_Either, dbf), dbg)) -> new_esEs5(yvy400, yvy500, dbf, dbg) 41.28/18.85 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.85 new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs12(yvy400, yvy500) 41.28/18.85 new_primPlusNat0(Succ(yvy2010), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2010, yvy300000))) 41.28/18.85 new_lt14(yvy79000, yvy80000, gg) -> new_esEs8(new_compare17(yvy79000, yvy80000, gg), LT) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 41.28/18.85 new_esEs19(yvy4001, yvy3001, app(ty_Maybe, chh)) -> new_esEs7(yvy4001, yvy3001, chh) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 41.28/18.85 new_ltEs20(yvy79002, yvy80002, ty_Char) -> new_ltEs6(yvy79002, yvy80002) 41.28/18.85 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 41.28/18.85 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 41.28/18.85 new_lt16(yvy79000, yvy80000) -> new_esEs8(new_compare15(yvy79000, yvy80000), LT) 41.28/18.85 new_lt12(yvy79000, yvy80000) -> new_esEs8(new_compare6(yvy79000, yvy80000), LT) 41.28/18.85 new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 41.28/18.85 new_primPlusNat1(Zero, Zero) -> Zero 41.28/18.85 new_esEs6(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), ceh, cfa, cfb) -> new_asAs(new_esEs18(yvy4000, yvy3000, ceh), new_asAs(new_esEs19(yvy4001, yvy3001, cfa), new_esEs20(yvy4002, yvy3002, cfb))) 41.28/18.85 new_esEs20(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 41.28/18.85 new_ltEs20(yvy79002, yvy80002, ty_Int) -> new_ltEs7(yvy79002, yvy80002) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, app(app(ty_@2, dhe), dhf)) -> new_ltEs4(yvy79001, yvy80001, dhe, dhf) 41.28/18.85 new_esEs27(yvy4001, yvy3001, app(app(ty_@2, bgc), bgd)) -> new_esEs4(yvy4001, yvy3001, bgc, bgd) 41.28/18.85 new_lt18(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 41.28/18.85 new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 41.28/18.85 new_esEs28(yvy79000, yvy80000, app(ty_Ratio, gg)) -> new_esEs17(yvy79000, yvy80000, gg) 41.28/18.85 new_compare11(yvy79000, yvy80000, True) -> LT 41.28/18.85 new_esEs30(yvy400, yvy500, app(ty_Maybe, dcd)) -> new_esEs7(yvy400, yvy500, dcd) 41.28/18.85 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.85 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.85 new_esEs30(yvy400, yvy500, ty_Bool) -> new_esEs12(yvy400, yvy500) 41.28/18.85 new_ltEs4(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), bcb, bcc) -> new_pePe(new_lt20(yvy79000, yvy80000, bcb), new_asAs(new_esEs28(yvy79000, yvy80000, bcb), new_ltEs21(yvy79001, yvy80001, bcc))) 41.28/18.85 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 41.28/18.85 new_lt19(yvy79001, yvy80001, app(app(ty_@2, ddg), ddh)) -> new_lt13(yvy79001, yvy80001, ddg, ddh) 41.28/18.85 new_compare31(yvy20, yvy15, ge, gf) -> new_compare210(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, ge), ge, gf) 41.28/18.85 new_compare16(yvy79000, yvy80000, bc, bd) -> new_compare23(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.85 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 41.28/18.85 new_esEs28(yvy79000, yvy80000, app(app(ty_@2, bc), bd)) -> new_esEs4(yvy79000, yvy80000, bc, bd) 41.28/18.85 new_primCmpNat0(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.85 new_esEs20(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) 41.28/18.85 new_compare19(yvy79000, yvy80000, bed, bee) -> new_compare210(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bed, bee), bed, bee) 41.28/18.85 new_compare30(yvy35, yvy30, dd, de) -> new_compare210(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, de), dd, de) 41.28/18.85 new_compare3(:(yvy79000, yvy79001), [], be) -> GT 41.28/18.85 new_compare14(yvy79000, yvy80000, ty_Bool) -> new_compare15(yvy79000, yvy80000) 41.28/18.85 new_esEs28(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_[], baa)) -> new_ltEs11(yvy79000, yvy80000, baa) 41.28/18.85 new_esEs5(Left(yvy4000), Left(yvy3000), ty_@0, bhe) -> new_esEs14(yvy4000, yvy3000) 41.28/18.85 new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs11(yvy400, yvy500) 41.28/18.85 new_compare26(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) 41.28/18.85 new_gt(yvy20, yvy15, ge, gf) -> new_esEs8(new_compare31(yvy20, yvy15, ge, gf), GT) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 41.28/18.85 new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs10(yvy400, yvy500) 41.28/18.85 new_compare32(yvy400, yvy300, h, ba) -> new_compare210(Left(yvy400), Right(yvy300), False, h, ba) 41.28/18.85 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 41.28/18.85 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 41.28/18.85 new_primCmpNat1(yvy7900, Succ(yvy8000)) -> new_primCmpNat0(yvy7900, yvy8000) 41.28/18.85 new_esEs18(yvy4000, yvy3000, app(ty_Maybe, cgf)) -> new_esEs7(yvy4000, yvy3000, cgf) 41.28/18.85 new_esEs29(yvy400, yvy500, app(app(ty_@2, beg), beh)) -> new_esEs4(yvy400, yvy500, beg, beh) 41.28/18.85 new_lt20(yvy79000, yvy80000, app(ty_Maybe, eh)) -> new_lt6(yvy79000, yvy80000, eh) 41.28/18.85 new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 41.28/18.85 new_primEqNat0(Zero, Zero) -> True 41.28/18.85 new_esEs28(yvy79000, yvy80000, app(app(ty_Either, bed), bee)) -> new_esEs5(yvy79000, yvy80000, bed, bee) 41.28/18.85 new_compare210(Right(yvy7900), Right(yvy8000), False, bbh, bca) -> new_compare112(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, bca), bbh, bca) 41.28/18.85 new_esEs21(yvy4000, yvy3000, app(ty_[], baf)) -> new_esEs15(yvy4000, yvy3000, baf) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.85 new_lt11(yvy79000, yvy80000, ccc) -> new_esEs8(new_compare3(yvy79000, yvy80000, ccc), LT) 41.28/18.85 new_esEs28(yvy79000, yvy80000, app(app(app(ty_@3, da), db), dc)) -> new_esEs6(yvy79000, yvy80000, da, db, dc) 41.28/18.85 new_compare29(yvy79000, yvy80000, False) -> new_compare111(yvy79000, yvy80000, new_ltEs8(yvy79000, yvy80000)) 41.28/18.85 new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs8(yvy400, yvy500) 41.28/18.85 new_compare33(yvy400, yvy300, h, ba) -> new_compare210(Right(yvy400), Left(yvy300), False, h, ba) 41.28/18.85 new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.85 new_esEs29(yvy400, yvy500, app(ty_Ratio, bef)) -> new_esEs17(yvy400, yvy500, bef) 41.28/18.85 new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.85 new_asAs(False, yvy222) -> False 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.85 new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 41.28/18.85 new_lt7(yvy79000, yvy80000, da, db, dc) -> new_esEs8(new_compare13(yvy79000, yvy80000, da, db, dc), LT) 41.28/18.85 new_esEs30(yvy400, yvy500, app(ty_Ratio, dcc)) -> new_esEs17(yvy400, yvy500, dcc) 41.28/18.85 new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs12(yvy35, yvy30) 41.28/18.85 new_ltEs5(GT, EQ) -> False 41.28/18.85 new_ltEs20(yvy79002, yvy80002, ty_Ordering) -> new_ltEs5(yvy79002, yvy80002) 41.28/18.85 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.85 new_esEs18(yvy4000, yvy3000, app(ty_Ratio, cge)) -> new_esEs17(yvy4000, yvy3000, cge) 41.28/18.85 new_esEs5(Right(yvy4000), Right(yvy3000), cah, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.85 new_esEs29(yvy400, yvy500, app(ty_Maybe, fa)) -> new_esEs7(yvy400, yvy500, fa) 41.28/18.85 new_esEs30(yvy400, yvy500, ty_Integer) -> new_esEs10(yvy400, yvy500) 41.28/18.85 new_ltEs21(yvy79001, yvy80001, app(ty_[], eae)) -> new_ltEs11(yvy79001, yvy80001, eae) 41.28/18.85 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Int, bcf) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.85 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.85 new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 41.28/18.85 new_lt18(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 41.28/18.85 new_lt18(yvy79000, yvy80000, app(app(ty_@2, dce), dcf)) -> new_lt13(yvy79000, yvy80000, dce, dcf) 41.28/18.85 new_compare210(Right(yvy7900), Left(yvy8000), False, bbh, bca) -> GT 41.28/18.85 new_esEs8(EQ, GT) -> False 41.28/18.85 new_esEs8(GT, EQ) -> False 41.28/18.85 new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.85 new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat0(yvy8000, yvy7900) 41.28/18.85 new_ltEs18(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 41.28/18.85 new_ltEs16(yvy7900, yvy8000) -> new_fsEs(new_compare9(yvy7900, yvy8000)) 41.28/18.85 41.28/18.85 The set Q consists of the following terms: 41.28/18.85 41.28/18.85 new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.85 new_ltEs18(x0, x1, ty_Bool) 41.28/18.85 new_ltEs21(x0, x1, ty_Ordering) 41.28/18.85 new_esEs28(x0, x1, ty_Integer) 41.28/18.85 new_esEs8(EQ, EQ) 41.28/18.85 new_esEs7(Nothing, Nothing, x0) 41.28/18.85 new_esEs21(x0, x1, ty_Int) 41.28/18.85 new_ltEs20(x0, x1, ty_Char) 41.28/18.85 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.85 new_lt18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_compare12(x0, x1, x2) 41.28/18.85 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.85 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.85 new_esEs26(x0, x1, ty_Float) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 41.28/18.86 new_primMulInt(Neg(x0), Neg(x1)) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), ty_Char) 41.28/18.86 new_ltEs18(x0, x1, ty_@0) 41.28/18.86 new_ltEs21(x0, x1, ty_Double) 41.28/18.86 new_primPlusNat1(Zero, Zero) 41.28/18.86 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_esEs30(x0, x1, ty_Bool) 41.28/18.86 new_compare14(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_ltEs15(x0, x1) 41.28/18.86 new_compare110(x0, x1, True, x2, x3, x4) 41.28/18.86 new_compare3(:(x0, x1), [], x2) 41.28/18.86 new_esEs24(x0, x1, ty_Integer) 41.28/18.86 new_esEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs25(x0, x1, ty_Float) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.86 new_esEs18(x0, x1, ty_Integer) 41.28/18.86 new_compare14(x0, x1, ty_Ordering) 41.28/18.86 new_esEs15(:(x0, x1), [], x2) 41.28/18.86 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 41.28/18.86 new_esEs30(x0, x1, ty_Integer) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.86 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs25(x0, x1, app(ty_[], x2)) 41.28/18.86 new_compare210(x0, x1, True, x2, x3) 41.28/18.86 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_compare14(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.86 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.86 new_primCompAux00(x0, GT) 41.28/18.86 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_primEqInt(Pos(Zero), Pos(Zero)) 41.28/18.86 new_primMulInt(Pos(x0), Pos(x1)) 41.28/18.86 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs21(x0, x1, ty_Double) 41.28/18.86 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs32(x0, x1, ty_Integer) 41.28/18.86 new_compare29(x0, x1, False) 41.28/18.86 new_lt11(x0, x1, x2) 41.28/18.86 new_esEs27(x0, x1, ty_Float) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), ty_Int) 41.28/18.86 new_primCmpNat0(Zero, Succ(x0)) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), ty_@0) 41.28/18.86 new_esEs21(x0, x1, ty_Char) 41.28/18.86 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.86 new_esEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs32(x0, x1, ty_Float) 41.28/18.86 new_ltEs21(x0, x1, ty_Int) 41.28/18.86 new_primEqInt(Neg(Zero), Neg(Zero)) 41.28/18.86 new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.86 new_primCmpNat0(Succ(x0), Succ(x1)) 41.28/18.86 new_compare11(x0, x1, False) 41.28/18.86 new_ltEs7(x0, x1) 41.28/18.86 new_esEs27(x0, x1, app(ty_[], x2)) 41.28/18.86 new_primPlusNat0(Zero, x0) 41.28/18.86 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.86 new_esEs28(x0, x1, ty_Bool) 41.28/18.86 new_sr(x0, x1) 41.28/18.86 new_esEs12(False, True) 41.28/18.86 new_esEs12(True, False) 41.28/18.86 new_ltEs20(x0, x1, ty_Double) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.86 new_ltEs5(LT, GT) 41.28/18.86 new_ltEs5(GT, LT) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), ty_Bool) 41.28/18.86 new_esEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs30(x0, x1, app(ty_[], x2)) 41.28/18.86 new_compare33(x0, x1, x2, x3) 41.28/18.86 new_primCmpNat2(Succ(x0), x1) 41.28/18.86 new_ltEs20(x0, x1, ty_@0) 41.28/18.86 new_esEs28(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_lt12(x0, x1) 41.28/18.86 new_ltEs8(False, False) 41.28/18.86 new_esEs5(Left(x0), Right(x1), x2, x3) 41.28/18.86 new_esEs5(Right(x0), Left(x1), x2, x3) 41.28/18.86 new_primCmpNat2(Zero, x0) 41.28/18.86 new_esEs18(x0, x1, ty_@0) 41.28/18.86 new_compare26(Integer(x0), Integer(x1)) 41.28/18.86 new_esEs28(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs32(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.86 new_esEs31(x0, x1, ty_Bool) 41.28/18.86 new_esEs19(x0, x1, ty_Integer) 41.28/18.86 new_esEs24(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_ltEs21(x0, x1, ty_Char) 41.28/18.86 new_esEs18(x0, x1, ty_Bool) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), ty_Double) 41.28/18.86 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.86 new_esEs7(Just(x0), Just(x1), ty_@0) 41.28/18.86 new_compare28(x0, x1, False, x2) 41.28/18.86 new_compare29(x0, x1, True) 41.28/18.86 new_ltEs20(x0, x1, ty_Bool) 41.28/18.86 new_esEs7(Just(x0), Just(x1), ty_Bool) 41.28/18.86 new_esEs18(x0, x1, ty_Float) 41.28/18.86 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_lt10(x0, x1) 41.28/18.86 new_lt18(x0, x1, ty_Float) 41.28/18.86 new_esEs30(x0, x1, ty_Char) 41.28/18.86 new_primEqInt(Pos(Zero), Neg(Zero)) 41.28/18.86 new_primEqInt(Neg(Zero), Pos(Zero)) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.86 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs21(x0, x1, ty_Ordering) 41.28/18.86 new_ltEs12(Left(x0), Right(x1), x2, x3) 41.28/18.86 new_ltEs12(Right(x0), Left(x1), x2, x3) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.86 new_ltEs20(x0, x1, ty_Int) 41.28/18.86 new_ltEs18(x0, x1, ty_Integer) 41.28/18.86 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.86 new_esEs31(x0, x1, ty_Double) 41.28/18.86 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.86 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.86 new_esEs7(Just(x0), Just(x1), ty_Int) 41.28/18.86 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_lt19(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 41.28/18.86 new_esEs31(x0, x1, ty_Char) 41.28/18.86 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.86 new_lt20(x0, x1, ty_Double) 41.28/18.86 new_esEs30(x0, x1, ty_@0) 41.28/18.86 new_esEs31(x0, x1, ty_@0) 41.28/18.86 new_compare30(x0, x1, x2, x3) 41.28/18.86 new_lt17(x0, x1, x2, x3) 41.28/18.86 new_esEs25(x0, x1, ty_@0) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 41.28/18.86 new_esEs7(Just(x0), Just(x1), ty_Char) 41.28/18.86 new_esEs29(x0, x1, ty_Integer) 41.28/18.86 new_esEs28(x0, x1, ty_@0) 41.28/18.86 new_esEs31(x0, x1, ty_Int) 41.28/18.86 new_gt1(x0, x1, x2, x3) 41.28/18.86 new_esEs7(Just(x0), Just(x1), ty_Double) 41.28/18.86 new_esEs15([], :(x0, x1), x2) 41.28/18.86 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs24(x0, x1, app(ty_[], x2)) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 41.28/18.86 new_esEs28(x0, x1, ty_Float) 41.28/18.86 new_esEs19(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs30(x0, x1, ty_Int) 41.28/18.86 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_primEqNat0(Succ(x0), Zero) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.86 new_compare14(x0, x1, ty_@0) 41.28/18.86 new_esEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_primMulNat0(Succ(x0), Succ(x1)) 41.28/18.86 new_esEs20(x0, x1, ty_Float) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.86 new_esEs25(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_ltEs18(x0, x1, ty_Float) 41.28/18.86 new_compare114(x0, x1, False, x2, x3) 41.28/18.86 new_esEs28(x0, x1, ty_Int) 41.28/18.86 new_ltEs21(x0, x1, ty_Bool) 41.28/18.86 new_esEs22(x0, x1, ty_Integer) 41.28/18.86 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_ltEs19(x0, x1, ty_Ordering) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 41.28/18.86 new_gt0(x0, x1, x2, x3) 41.28/18.86 new_ltEs20(x0, x1, ty_Integer) 41.28/18.86 new_esEs28(x0, x1, ty_Char) 41.28/18.86 new_primEqNat0(Succ(x0), Succ(x1)) 41.28/18.86 new_esEs30(x0, x1, ty_Float) 41.28/18.86 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs18(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_lt20(x0, x1, ty_Float) 41.28/18.86 new_compare24(x0, x1, True) 41.28/18.86 new_compare14(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs7(Just(x0), Just(x1), ty_Integer) 41.28/18.86 new_compare19(x0, x1, x2, x3) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), ty_Integer) 41.28/18.86 new_ltEs18(x0, x1, ty_Int) 41.28/18.86 new_esEs21(x0, x1, ty_Bool) 41.28/18.86 new_primPlusNat0(Succ(x0), x1) 41.28/18.86 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.86 new_esEs25(x0, x1, ty_Bool) 41.28/18.86 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 41.28/18.86 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.86 new_esEs20(x0, x1, ty_Int) 41.28/18.86 new_ltEs5(EQ, GT) 41.28/18.86 new_ltEs5(GT, EQ) 41.28/18.86 new_esEs29(x0, x1, ty_Bool) 41.28/18.86 new_compare14(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.86 new_lt6(x0, x1, x2) 41.28/18.86 new_ltEs18(x0, x1, ty_Char) 41.28/18.86 new_esEs20(x0, x1, ty_Char) 41.28/18.86 new_ltEs17(Nothing, Just(x0), x1) 41.28/18.86 new_primMulNat0(Succ(x0), Zero) 41.28/18.86 new_esEs29(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_ltEs20(x0, x1, app(ty_[], x2)) 41.28/18.86 new_ltEs19(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs8(GT, GT) 41.28/18.86 new_gt2(x0, x1, x2, x3) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.86 new_sr0(Integer(x0), Integer(x1)) 41.28/18.86 new_esEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs8(LT, EQ) 41.28/18.86 new_esEs8(EQ, LT) 41.28/18.86 new_ltEs19(x0, x1, ty_Float) 41.28/18.86 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.86 new_esEs15(:(x0, x1), :(x2, x3), x4) 41.28/18.86 new_primCmpInt(Neg(Zero), Neg(Zero)) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), ty_Ordering) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.86 new_esEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.86 new_compare14(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs7(Just(x0), Just(x1), ty_Ordering) 41.28/18.86 new_compare25(x0, x1) 41.28/18.86 new_esEs8(LT, LT) 41.28/18.86 new_ltEs19(x0, x1, ty_Char) 41.28/18.86 new_esEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_primCmpInt(Pos(Zero), Neg(Zero)) 41.28/18.86 new_primCmpInt(Neg(Zero), Pos(Zero)) 41.28/18.86 new_esEs24(x0, x1, ty_Double) 41.28/18.86 new_esEs31(x0, x1, ty_Ordering) 41.28/18.86 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_ltEs20(x0, x1, ty_Ordering) 41.28/18.86 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs24(x0, x1, ty_@0) 41.28/18.86 new_compare11(x0, x1, True) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.86 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_lt20(x0, x1, app(ty_[], x2)) 41.28/18.86 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs32(x0, x1, ty_Int) 41.28/18.86 new_lt19(x0, x1, ty_Double) 41.28/18.86 new_esEs26(x0, x1, app(ty_[], x2)) 41.28/18.86 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_ltEs8(True, False) 41.28/18.86 new_ltEs8(False, True) 41.28/18.86 new_ltEs19(x0, x1, ty_Int) 41.28/18.86 new_esEs25(x0, x1, ty_Integer) 41.28/18.86 new_compare27(x0, x1, False, x2, x3, x4) 41.28/18.86 new_lt8(x0, x1) 41.28/18.86 new_esEs31(x0, x1, ty_Integer) 41.28/18.86 new_esEs29(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs27(x0, x1, ty_@0) 41.28/18.86 new_esEs24(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_compare3([], :(x0, x1), x2) 41.28/18.86 new_esEs28(x0, x1, ty_Ordering) 41.28/18.86 new_pePe(True, x0) 41.28/18.86 new_esEs19(x0, x1, ty_Double) 41.28/18.86 new_esEs31(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs19(x0, x1, ty_@0) 41.28/18.86 new_esEs32(x0, x1, ty_Char) 41.28/18.86 new_esEs21(x0, x1, ty_Float) 41.28/18.86 new_esEs25(x0, x1, ty_Ordering) 41.28/18.86 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 41.28/18.86 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 41.28/18.86 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_asAs(False, x0) 41.28/18.86 new_fsEs(x0) 41.28/18.86 new_esEs30(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 41.28/18.86 new_compare16(x0, x1, x2, x3) 41.28/18.86 new_esEs32(x0, x1, ty_Bool) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 41.28/18.86 new_primPlusNat1(Succ(x0), Succ(x1)) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.86 new_lt7(x0, x1, x2, x3, x4) 41.28/18.86 new_lt19(x0, x1, ty_@0) 41.28/18.86 new_lt13(x0, x1, x2, x3) 41.28/18.86 new_compare10(x0, x1, True, x2, x3) 41.28/18.86 new_ltEs19(x0, x1, ty_Bool) 41.28/18.86 new_esEs29(x0, x1, ty_Float) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.86 new_esEs27(x0, x1, ty_Double) 41.28/18.86 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_compare14(x0, x1, ty_Double) 41.28/18.86 new_compare113(x0, x1, True, x2) 41.28/18.86 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_lt18(x0, x1, ty_Int) 41.28/18.86 new_esEs20(x0, x1, ty_Bool) 41.28/18.86 new_compare3([], [], x0) 41.28/18.86 new_compare114(x0, x1, True, x2, x3) 41.28/18.86 new_esEs26(x0, x1, ty_Ordering) 41.28/18.86 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs22(x0, x1, ty_Int) 41.28/18.86 new_ltEs19(x0, x1, ty_@0) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 41.28/18.86 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.86 new_compare24(x0, x1, False) 41.28/18.86 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.86 new_esEs27(x0, x1, ty_Int) 41.28/18.86 new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_primCompAux00(x0, LT) 41.28/18.86 new_esEs20(x0, x1, ty_@0) 41.28/18.86 new_compare14(x0, x1, ty_Float) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.86 new_lt20(x0, x1, ty_Integer) 41.28/18.86 new_primCmpNat0(Succ(x0), Zero) 41.28/18.86 new_primMulNat0(Zero, Zero) 41.28/18.86 new_lt4(x0, x1) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 41.28/18.86 new_esEs29(x0, x1, ty_Ordering) 41.28/18.86 new_esEs27(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs29(x0, x1, ty_Int) 41.28/18.86 new_lt20(x0, x1, ty_Bool) 41.28/18.86 new_ltEs21(x0, x1, ty_Float) 41.28/18.86 new_pePe(False, x0) 41.28/18.86 new_ltEs18(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs29(x0, x1, ty_Double) 41.28/18.86 new_ltEs14(x0, x1) 41.28/18.86 new_compare9(@0, @0) 41.28/18.86 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.86 new_esEs28(x0, x1, app(ty_[], x2)) 41.28/18.86 new_compare8(Char(x0), Char(x1)) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.86 new_esEs20(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 41.28/18.86 new_esEs29(x0, x1, ty_Char) 41.28/18.86 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_compare23(x0, x1, True, x2, x3) 41.28/18.86 new_esEs23(x0, x1, ty_Int) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.86 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs32(x0, x1, ty_Ordering) 41.28/18.86 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_ltEs13(x0, x1, x2) 41.28/18.86 new_esEs7(Just(x0), Nothing, x1) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.86 new_ltEs19(x0, x1, ty_Integer) 41.28/18.86 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 41.28/18.86 new_esEs25(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_lt19(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_lt18(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_lt19(x0, x1, ty_Ordering) 41.28/18.86 new_lt20(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_not(True) 41.28/18.86 new_ltEs20(x0, x1, ty_Float) 41.28/18.86 new_lt9(x0, x1) 41.28/18.86 new_esEs15([], [], x0) 41.28/18.86 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 41.28/18.86 new_primCmpNat1(x0, Zero) 41.28/18.86 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_lt20(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs18(x0, x1, ty_Double) 41.28/18.86 new_esEs29(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs8(EQ, GT) 41.28/18.86 new_esEs8(GT, EQ) 41.28/18.86 new_esEs12(False, False) 41.28/18.86 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.86 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.86 new_compare14(x0, x1, ty_Integer) 41.28/18.86 new_esEs24(x0, x1, ty_Ordering) 41.28/18.86 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 41.28/18.86 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 41.28/18.86 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 41.28/18.86 new_compare32(x0, x1, x2, x3) 41.28/18.86 new_ltEs6(x0, x1) 41.28/18.86 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.86 new_esEs28(x0, x1, ty_Double) 41.28/18.86 new_esEs7(Just(x0), Just(x1), ty_Float) 41.28/18.86 new_lt18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.86 new_esEs20(x0, x1, ty_Integer) 41.28/18.86 new_compare210(Left(x0), Right(x1), False, x2, x3) 41.28/18.86 new_compare210(Right(x0), Left(x1), False, x2, x3) 41.28/18.86 new_compare28(x0, x1, True, x2) 41.28/18.86 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.86 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs31(x0, x1, ty_Float) 41.28/18.86 new_esEs27(x0, x1, ty_Ordering) 41.28/18.86 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 41.28/18.86 new_lt15(x0, x1) 41.28/18.86 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.86 new_lt19(x0, x1, ty_Integer) 41.28/18.86 new_esEs31(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs26(x0, x1, ty_Int) 41.28/18.86 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.86 new_compare111(x0, x1, False) 41.28/18.86 new_lt18(x0, x1, ty_Double) 41.28/18.86 new_esEs25(x0, x1, ty_Double) 41.28/18.86 new_lt18(x0, x1, ty_Char) 41.28/18.86 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs30(x0, x1, ty_Double) 41.28/18.86 new_lt20(x0, x1, ty_Char) 41.28/18.86 new_lt20(x0, x1, ty_@0) 41.28/18.86 new_esEs25(x0, x1, ty_Char) 41.28/18.86 new_lt18(x0, x1, ty_@0) 41.28/18.86 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs19(x0, x1, ty_Ordering) 41.28/18.86 new_compare112(x0, x1, False, x2, x3) 41.28/18.86 new_esEs31(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs18(x0, x1, ty_Int) 41.28/18.86 new_esEs21(x0, x1, app(ty_[], x2)) 41.28/18.86 new_compare23(x0, x1, False, x2, x3) 41.28/18.86 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.86 new_esEs26(x0, x1, ty_Double) 41.28/18.86 new_esEs26(x0, x1, ty_Char) 41.28/18.86 new_lt20(x0, x1, ty_Int) 41.28/18.86 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_compare210(Left(x0), Left(x1), False, x2, x3) 41.28/18.86 new_compare3(:(x0, x1), :(x2, x3), x4) 41.28/18.86 new_esEs11(Char(x0), Char(x1)) 41.28/18.86 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs30(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_ltEs5(LT, LT) 41.28/18.86 new_esEs26(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs25(x0, x1, ty_Int) 41.28/18.86 new_primCmpInt(Pos(Zero), Pos(Zero)) 41.28/18.86 new_compare113(x0, x1, False, x2) 41.28/18.86 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs18(x0, x1, ty_Char) 41.28/18.86 new_compare110(x0, x1, False, x2, x3, x4) 41.28/18.86 new_esEs21(x0, x1, ty_Integer) 41.28/18.86 new_compare31(x0, x1, x2, x3) 41.28/18.86 new_esEs32(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs14(@0, @0) 41.28/18.86 new_ltEs18(x0, x1, ty_Double) 41.28/18.86 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs20(x0, x1, ty_Ordering) 41.28/18.86 new_ltEs18(x0, x1, ty_Ordering) 41.28/18.86 new_esEs24(x0, x1, ty_Char) 41.28/18.86 new_ltEs5(LT, EQ) 41.28/18.86 new_ltEs5(EQ, LT) 41.28/18.86 new_esEs20(x0, x1, ty_Double) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.86 new_compare10(x0, x1, False, x2, x3) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 41.28/18.86 new_esEs27(x0, x1, ty_Integer) 41.28/18.86 new_ltEs5(GT, GT) 41.28/18.86 new_ltEs19(x0, x1, ty_Double) 41.28/18.86 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs26(x0, x1, ty_Bool) 41.28/18.86 new_compare15(x0, x1) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.86 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 41.28/18.86 new_compare14(x0, x1, ty_Bool) 41.28/18.86 new_esEs26(x0, x1, ty_@0) 41.28/18.86 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs32(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 41.28/18.86 new_lt18(x0, x1, ty_Integer) 41.28/18.86 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_esEs10(Integer(x0), Integer(x1)) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 41.28/18.86 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 41.28/18.86 new_esEs8(LT, GT) 41.28/18.86 new_esEs8(GT, LT) 41.28/18.86 new_esEs9(x0, x1) 41.28/18.86 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_lt19(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_ltEs21(x0, x1, ty_Integer) 41.28/18.86 new_lt18(x0, x1, ty_Bool) 41.28/18.86 new_compare17(:%(x0, x1), :%(x2, x3), ty_Int) 41.28/18.86 new_esEs26(x0, x1, ty_Integer) 41.28/18.86 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 41.28/18.86 new_esEs32(x0, x1, ty_@0) 41.28/18.86 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_ltEs17(Just(x0), Nothing, x1) 41.28/18.86 new_gt(x0, x1, x2, x3) 41.28/18.86 new_esEs27(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_lt18(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs23(x0, x1, ty_Integer) 41.28/18.86 new_compare210(Right(x0), Right(x1), False, x2, x3) 41.28/18.86 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 41.28/18.86 new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.86 new_ltEs21(x0, x1, ty_@0) 41.28/18.86 new_asAs(True, x0) 41.28/18.86 new_compare112(x0, x1, True, x2, x3) 41.28/18.86 new_lt16(x0, x1) 41.28/18.86 new_primCompAux00(x0, EQ) 41.28/18.86 new_ltEs11(x0, x1, x2) 41.28/18.86 new_compare111(x0, x1, True) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.86 new_primPlusNat1(Zero, Succ(x0)) 41.28/18.86 new_esEs24(x0, x1, ty_Float) 41.28/18.86 new_primEqNat0(Zero, Zero) 41.28/18.86 new_compare14(x0, x1, ty_Char) 41.28/18.86 new_compare27(x0, x1, True, x2, x3, x4) 41.28/18.86 new_esEs24(x0, x1, ty_Bool) 41.28/18.86 new_esEs7(Nothing, Just(x0), x1) 41.28/18.86 new_lt19(x0, x1, ty_Bool) 41.28/18.86 new_esEs12(True, True) 41.28/18.86 new_primCompAux0(x0, x1, x2, x3) 41.28/18.86 new_not(False) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), ty_Float) 41.28/18.86 new_lt18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 41.28/18.86 new_esEs17(:%(x0, x1), :%(x2, x3), x4) 41.28/18.86 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.86 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_primPlusNat1(Succ(x0), Zero) 41.28/18.86 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.86 new_compare14(x0, x1, ty_Int) 41.28/18.86 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs19(x0, x1, ty_Bool) 41.28/18.86 new_esEs21(x0, x1, ty_@0) 41.28/18.86 new_compare17(:%(x0, x1), :%(x2, x3), ty_Integer) 41.28/18.86 new_ltEs10(x0, x1) 41.28/18.86 new_esEs32(x0, x1, ty_Double) 41.28/18.86 new_ltEs8(True, True) 41.28/18.86 new_esEs19(x0, x1, ty_Float) 41.28/18.86 new_lt19(x0, x1, ty_Float) 41.28/18.86 new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.86 new_compare13(x0, x1, x2, x3, x4) 41.28/18.86 new_esEs13(Double(x0, x1), Double(x2, x3)) 41.28/18.86 new_esEs24(x0, x1, ty_Int) 41.28/18.86 new_ltEs5(EQ, EQ) 41.28/18.86 new_esEs29(x0, x1, ty_@0) 41.28/18.86 new_esEs27(x0, x1, ty_Bool) 41.28/18.86 new_esEs26(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.86 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.86 new_lt5(x0, x1) 41.28/18.86 new_esEs16(Float(x0, x1), Float(x2, x3)) 41.28/18.86 new_lt18(x0, x1, ty_Ordering) 41.28/18.86 new_esEs19(x0, x1, ty_Char) 41.28/18.86 new_lt19(x0, x1, ty_Char) 41.28/18.86 new_esEs18(x0, x1, ty_Ordering) 41.28/18.86 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.86 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.86 new_ltEs21(x0, x1, app(ty_[], x2)) 41.28/18.86 new_lt20(x0, x1, ty_Ordering) 41.28/18.86 new_esEs30(x0, x1, ty_Ordering) 41.28/18.86 new_lt14(x0, x1, x2) 41.28/18.86 new_ltEs17(Nothing, Nothing, x0) 41.28/18.86 new_ltEs16(x0, x1) 41.28/18.86 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 41.28/18.86 new_primCmpNat1(x0, Succ(x1)) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.86 new_primMulInt(Pos(x0), Neg(x1)) 41.28/18.86 new_primMulInt(Neg(x0), Pos(x1)) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.86 new_esEs19(x0, x1, ty_Int) 41.28/18.86 new_compare7(x0, x1) 41.28/18.86 new_esEs27(x0, x1, ty_Char) 41.28/18.86 new_primMulNat0(Zero, Succ(x0)) 41.28/18.86 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.86 new_primCmpNat0(Zero, Zero) 41.28/18.86 new_primEqNat0(Zero, Succ(x0)) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 41.28/18.86 new_lt18(x0, x1, app(ty_[], x2)) 41.28/18.86 new_lt19(x0, x1, ty_Int) 41.28/18.86 41.28/18.86 We have to consider all minimal (P,Q,R)-chains. 41.28/18.86 ---------------------------------------- 41.28/18.86 41.28/18.86 (44) QDPSizeChangeProof (EQUIVALENT) 41.28/18.86 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. 41.28/18.86 41.28/18.86 From the DPs we obtained the following set of size-change graphs: 41.28/18.86 *new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Left(yvy400), yvy41, h, ba, bb) 41.28/18.86 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 41.28/18.86 41.28/18.86 41.28/18.86 *new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt0(yvy400, yvy500, h, ba), h, ba, bb) 41.28/18.86 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 41.28/18.86 41.28/18.86 41.28/18.86 *new_addToFM_C10(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Left(yvy400), yvy41, h, ba, bb) 41.28/18.86 The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 41.28/18.86 41.28/18.86 41.28/18.86 *new_addToFM_C(Branch(Right(yvy500), yvy51, yvy52, yvy53, yvy54), Left(yvy400), yvy41, h, ba, bb) -> new_addToFM_C20(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare210(Left(yvy400), Right(yvy500), False, h, ba), LT), h, ba, bb) 41.28/18.86 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 41.28/18.86 41.28/18.86 41.28/18.86 *new_addToFM_C(Branch(Left(yvy500), yvy51, yvy52, yvy53, yvy54), Left(yvy400), yvy41, h, ba, bb) -> new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare210(Left(yvy400), Left(yvy500), new_esEs29(yvy400, yvy500, h), h, ba), LT), h, ba, bb) 41.28/18.86 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10, 6 >= 11 41.28/18.86 41.28/18.86 41.28/18.86 *new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C1(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt(yvy400, yvy500, h, ba), h, ba, bb) 41.28/18.86 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10, 11 >= 11 41.28/18.86 41.28/18.86 41.28/18.86 *new_addToFM_C2(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy53, Left(yvy400), yvy41, h, ba, bb) 41.28/18.86 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 41.28/18.86 41.28/18.86 41.28/18.86 *new_addToFM_C1(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_addToFM_C(yvy54, Left(yvy400), yvy41, h, ba, bb) 41.28/18.86 The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5, 11 >= 6 41.28/18.86 41.28/18.86 41.28/18.86 ---------------------------------------- 41.28/18.86 41.28/18.86 (45) 41.28/18.86 YES 41.28/18.86 41.28/18.86 ---------------------------------------- 41.28/18.86 41.28/18.86 (46) 41.28/18.86 Obligation: 41.28/18.86 Q DP problem: 41.28/18.86 The TRS P consists of the following rules: 41.28/18.86 41.28/18.86 new_splitLT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Left(yvy400), Left(yvy300), new_esEs35(yvy400, yvy300, h), h, ba), LT), h, ba, bb) 41.28/18.86 new_splitLT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_gt0(yvy400, yvy300, h, ba), h, ba, bb) 41.28/18.86 new_splitLT20(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Left(yvy400), h, ba, bb) 41.28/18.86 new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bf, bg, bh) -> new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bf, bg), bf, bg, bh) 41.28/18.86 new_splitLT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Right(yvy400), Left(yvy300), False, h, ba), LT), h, ba, bb) 41.28/18.86 new_splitLT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitLT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Left(yvy400), Right(yvy300), False, h, ba), LT), h, ba, bb) 41.28/18.86 new_splitLT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitLT0(yvy34, yvy400, h, ba, bb) 41.28/18.86 new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Right(yvy400), h, ba, bb) 41.28/18.86 new_splitLT2(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bc, bd, be) -> new_splitLT(yvy18, yvy20, bc, bd, be) 41.28/18.86 new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bf, bg, bh) -> new_splitLT0(yvy34, yvy35, bf, bg, bh) 41.28/18.86 new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitLT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, yvy300, h, ba), h, ba, bb) 41.28/18.86 new_splitLT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitLT22(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Right(yvy400), Right(yvy300), new_esEs36(yvy400, yvy300, ba), h, ba), LT), h, ba, bb) 41.28/18.86 new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitLT(yvy34, yvy400, h, ba, bb) 41.28/18.86 new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bf, bg, bh) -> new_splitLT0(yvy33, yvy35, bf, bg, bh) 41.28/18.86 new_splitLT2(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bc, bd, be) -> new_splitLT1(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_gt(yvy20, yvy15, bc, bd), bc, bd, be) 41.28/18.86 new_splitLT1(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bc, bd, be) -> new_splitLT(yvy19, yvy20, bc, bd, be) 41.28/18.86 new_splitLT(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Left(yvy400), h, ba, bb) 41.28/18.86 new_splitLT21(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Right(yvy400), h, ba, bb) 41.28/18.86 41.28/18.86 The TRS R consists of the following rules: 41.28/18.86 41.28/18.86 new_ltEs20(yvy79002, yvy80002, app(ty_[], dgc)) -> new_ltEs11(yvy79002, yvy80002, dgc) 41.28/18.86 new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT 41.28/18.86 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 41.28/18.86 new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.86 new_ltEs21(yvy79001, yvy80001, ty_Bool) -> new_ltEs8(yvy79001, yvy80001) 41.28/18.86 new_esEs24(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.86 new_pePe(True, yvy255) -> True 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Ordering, cba) -> new_esEs8(yvy4000, yvy3000) 41.28/18.86 new_esEs25(yvy79001, yvy80001, app(app(app(ty_@3, def), deg), deh)) -> new_esEs6(yvy79001, yvy80001, def, deg, deh) 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Ratio, bag)) -> new_ltEs13(yvy79000, yvy80000, bag) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(ty_Ratio, cfd)) -> new_ltEs13(yvy79000, yvy80000, cfd) 41.28/18.86 new_esEs19(yvy4001, yvy3001, app(ty_Ratio, dbc)) -> new_esEs17(yvy4001, yvy3001, dbc) 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Double) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.86 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 41.28/18.86 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.86 new_esEs27(yvy4001, yvy3001, app(app(ty_Either, cab), cac)) -> new_esEs5(yvy4001, yvy3001, cab, cac) 41.28/18.86 new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT 41.28/18.86 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.86 new_lt18(yvy79000, yvy80000, app(ty_Maybe, ddh)) -> new_lt6(yvy79000, yvy80000, ddh) 41.28/18.86 new_esEs9(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 41.28/18.86 new_lt20(yvy79000, yvy80000, app(app(ty_Either, bfh), bga)) -> new_lt17(yvy79000, yvy80000, bfh, bga) 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.86 new_esEs36(yvy400, yvy300, ty_Double) -> new_esEs13(yvy400, yvy300) 41.28/18.86 new_esEs24(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, bab)) -> new_esEs7(yvy4000, yvy3000, bab) 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Char, cba) -> new_esEs11(yvy4000, yvy3000) 41.28/18.86 new_esEs28(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 41.28/18.86 new_ltEs12(Left(yvy79000), Right(yvy80000), bea, beb) -> True 41.28/18.86 new_ltEs21(yvy79001, yvy80001, ty_Char) -> new_ltEs6(yvy79001, yvy80001) 41.28/18.86 new_esEs28(yvy79000, yvy80000, app(ty_Maybe, gg)) -> new_esEs7(yvy79000, yvy80000, gg) 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Ratio, ceb), beb) -> new_ltEs13(yvy79000, yvy80000, ceb) 41.28/18.86 new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.86 new_esEs18(yvy4000, yvy3000, app(app(ty_@2, cha), chb)) -> new_esEs4(yvy4000, yvy3000, cha, chb) 41.28/18.86 new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt16(yvy79001, yvy80001) 41.28/18.86 new_lt19(yvy79001, yvy80001, app(app(ty_Either, ded), dee)) -> new_lt17(yvy79001, yvy80001, ded, dee) 41.28/18.86 new_esEs26(yvy4000, yvy3000, app(ty_[], bgg)) -> new_esEs15(yvy4000, yvy3000, bgg) 41.28/18.86 new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt4(yvy79001, yvy80001) 41.28/18.86 new_esEs36(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 41.28/18.86 new_esEs35(yvy400, yvy300, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(yvy400, yvy300, cgf, cgg, cgh) 41.28/18.86 new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.86 new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) 41.28/18.86 new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.86 new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs13(yvy20, yvy15) 41.28/18.86 new_compare14(yvy79000, yvy80000, app(ty_[], eg)) -> new_compare3(yvy79000, yvy80000, eg) 41.28/18.86 new_compare3([], [], df) -> EQ 41.28/18.86 new_esEs28(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 41.28/18.86 new_ltEs19(yvy7900, yvy8000, app(ty_[], bff)) -> new_ltEs11(yvy7900, yvy8000, bff) 41.28/18.86 new_esEs8(GT, GT) -> True 41.28/18.86 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 41.28/18.86 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 41.28/18.86 new_ltEs18(yvy7900, yvy8000, app(app(ty_@2, bdf), bdg)) -> new_ltEs4(yvy7900, yvy8000, bdf, bdg) 41.28/18.86 new_fsEs(yvy244) -> new_not(new_esEs8(yvy244, GT)) 41.28/18.86 new_esEs25(yvy79001, yvy80001, app(ty_Ratio, dec)) -> new_esEs17(yvy79001, yvy80001, dec) 41.28/18.86 new_compare210(yvy790, yvy800, True, bdd, bde) -> EQ 41.28/18.86 new_esEs31(yvy35, yvy30, app(ty_Ratio, ge)) -> new_esEs17(yvy35, yvy30, ge) 41.28/18.86 new_esEs32(yvy20, yvy15, app(ty_[], dgg)) -> new_esEs15(yvy20, yvy15, dgg) 41.28/18.86 new_lt20(yvy79000, yvy80000, app(app(ty_@2, dd), de)) -> new_lt13(yvy79000, yvy80000, dd, de) 41.28/18.86 new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare18(yvy7900, yvy8000)) 41.28/18.86 new_esEs24(yvy79000, yvy80000, app(app(ty_@2, dcg), dch)) -> new_esEs4(yvy79000, yvy80000, dcg, dch) 41.28/18.86 new_lt18(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 41.28/18.86 new_compare28(yvy79000, yvy80000, False, gg) -> new_compare113(yvy79000, yvy80000, new_ltEs17(yvy79000, yvy80000, gg), gg) 41.28/18.86 new_lt18(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 41.28/18.86 new_esEs8(EQ, EQ) -> True 41.28/18.86 new_ltEs11(yvy7900, yvy8000, df) -> new_fsEs(new_compare3(yvy7900, yvy8000, df)) 41.28/18.86 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.86 new_esEs20(yvy4002, yvy3002, app(ty_Ratio, dce)) -> new_esEs17(yvy4002, yvy3002, dce) 41.28/18.86 new_ltEs20(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(app(ty_@2, cce), ccf)) -> new_esEs4(yvy4000, yvy3000, cce, ccf) 41.28/18.86 new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.86 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.86 new_compare13(yvy79000, yvy80000, fa, fb, fc) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, fa, fb, fc), fa, fb, fc) 41.28/18.86 new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bah), bba)) -> new_ltEs12(yvy79000, yvy80000, bah, bba) 41.28/18.86 new_not(True) -> False 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.86 new_compare210(Left(yvy7900), Right(yvy8000), False, bdd, bde) -> LT 41.28/18.86 new_lt18(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 41.28/18.86 new_compare14(yvy79000, yvy80000, ty_Ordering) -> new_compare25(yvy79000, yvy80000) 41.28/18.86 new_compare24(yvy79000, yvy80000, False) -> new_compare11(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000)) 41.28/18.86 new_primCompAux00(yvy260, LT) -> LT 41.28/18.86 new_primCmpNat0(Zero, Zero) -> EQ 41.28/18.86 new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs6(yvy4000, yvy3000, bce, bcf, bcg) 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Integer, beb) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.86 new_esEs28(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 41.28/18.86 new_esEs36(yvy400, yvy300, app(ty_[], cc)) -> new_esEs15(yvy400, yvy300, cc) 41.28/18.86 new_compare11(yvy79000, yvy80000, False) -> GT 41.28/18.86 new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 41.28/18.86 new_esEs21(yvy4000, yvy3000, app(ty_Ratio, bch)) -> new_esEs17(yvy4000, yvy3000, bch) 41.28/18.86 new_esEs20(yvy4002, yvy3002, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs6(yvy4002, yvy3002, dcb, dcc, dcd) 41.28/18.86 new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(ty_[], ccg)) -> new_esEs15(yvy4000, yvy3000, ccg) 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Char, beb) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.86 new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 41.28/18.86 new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.86 new_esEs19(yvy4001, yvy3001, app(app(ty_@2, dac), dad)) -> new_esEs4(yvy4001, yvy3001, dac, dad) 41.28/18.86 new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) 41.28/18.86 new_lt18(yvy79000, yvy80000, app(app(ty_Either, ddb), ddc)) -> new_lt17(yvy79000, yvy80000, ddb, ddc) 41.28/18.86 new_esEs36(yvy400, yvy300, app(app(app(ty_@3, cf), cg), da)) -> new_esEs6(yvy400, yvy300, cf, cg, da) 41.28/18.86 new_primEqNat0(Succ(yvy40000), Zero) -> False 41.28/18.86 new_primEqNat0(Zero, Succ(yvy30000)) -> False 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_[], cbd), cba) -> new_esEs15(yvy4000, yvy3000, cbd) 41.28/18.86 new_esEs14(@0, @0) -> True 41.28/18.86 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.86 new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 41.28/18.86 new_compare10(yvy79000, yvy80000, True, dd, de) -> LT 41.28/18.86 new_ltEs18(yvy7900, yvy8000, app(ty_[], df)) -> new_ltEs11(yvy7900, yvy8000, df) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.86 new_primCompAux00(yvy260, GT) -> GT 41.28/18.86 new_compare28(yvy79000, yvy80000, True, gg) -> EQ 41.28/18.86 new_esEs25(yvy79001, yvy80001, ty_Double) -> new_esEs13(yvy79001, yvy80001) 41.28/18.86 new_ltEs21(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) 41.28/18.86 new_primCmpNat2(Zero, yvy7900) -> LT 41.28/18.86 new_esEs20(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) 41.28/18.86 new_esEs25(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_@0) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.86 new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 41.28/18.86 new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT 41.28/18.86 new_ltEs20(yvy79002, yvy80002, app(app(ty_@2, dfc), dfd)) -> new_ltEs4(yvy79002, yvy80002, dfc, dfd) 41.28/18.86 new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 41.28/18.86 new_esEs20(yvy4002, yvy3002, app(app(ty_@2, dbe), dbf)) -> new_esEs4(yvy4002, yvy3002, dbe, dbf) 41.28/18.86 new_ltEs18(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 41.28/18.86 new_ltEs21(yvy79001, yvy80001, ty_Int) -> new_ltEs7(yvy79001, yvy80001) 41.28/18.86 new_compare3(:(yvy79000, yvy79001), :(yvy80000, yvy80001), df) -> new_primCompAux0(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, df), df) 41.28/18.86 new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs13(yvy35, yvy30) 41.28/18.86 new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 41.28/18.86 new_ltEs5(LT, GT) -> True 41.28/18.86 new_ltEs18(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 41.28/18.86 new_primPlusNat1(Succ(yvy20100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20100, yvy3000000))) 41.28/18.86 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.86 new_gt2(yvy35, yvy30, bf, bg) -> new_esEs8(new_compare30(yvy35, yvy30, bf, bg), GT) 41.28/18.86 new_esEs31(yvy35, yvy30, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs6(yvy35, yvy30, gb, gc, gd) 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs9(yvy79000, yvy80000, bbb, bbc, bbd) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.86 new_primCmpNat0(Zero, Succ(yvy80000)) -> LT 41.28/18.86 new_ltEs20(yvy79002, yvy80002, ty_Bool) -> new_ltEs8(yvy79002, yvy80002) 41.28/18.86 new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs6(yvy4001, yvy3001, dah, dba, dbb) 41.28/18.86 new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 41.28/18.86 new_esEs36(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) 41.28/18.86 new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, bef), beg)) -> new_ltEs4(yvy7900, yvy8000, bef, beg) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(ty_Maybe, cdf)) -> new_esEs7(yvy4000, yvy3000, cdf) 41.28/18.86 new_compare110(yvy79000, yvy80000, False, fa, fb, fc) -> GT 41.28/18.86 new_primCmpNat0(Succ(yvy79000), Zero) -> GT 41.28/18.86 new_pePe(False, yvy255) -> yvy255 41.28/18.86 new_ltEs17(Nothing, Nothing, bad) -> True 41.28/18.86 new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 41.28/18.86 new_compare3([], :(yvy80000, yvy80001), df) -> LT 41.28/18.86 new_esEs35(yvy400, yvy300, app(ty_Maybe, gh)) -> new_esEs7(yvy400, yvy300, gh) 41.28/18.86 new_esEs7(Nothing, Just(yvy3000), gh) -> False 41.28/18.86 new_esEs7(Just(yvy4000), Nothing, gh) -> False 41.28/18.86 new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 41.28/18.86 new_compare27(yvy79000, yvy80000, False, fa, fb, fc) -> new_compare110(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, fa, fb, fc), fa, fb, fc) 41.28/18.86 new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 41.28/18.86 new_ltEs17(Nothing, Just(yvy80000), bad) -> True 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Float) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.86 new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 41.28/18.86 new_ltEs17(Just(yvy79000), Nothing, bad) -> False 41.28/18.86 new_esEs35(yvy400, yvy300, ty_Bool) -> new_esEs12(yvy400, yvy300) 41.28/18.86 new_esEs12(False, False) -> True 41.28/18.86 new_ltEs20(yvy79002, yvy80002, app(ty_Maybe, dgd)) -> new_ltEs17(yvy79002, yvy80002, dgd) 41.28/18.86 new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 41.28/18.86 new_compare114(yvy227, yvy228, True, bdb, bdc) -> LT 41.28/18.86 new_esEs35(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) 41.28/18.86 new_primCmpNat1(yvy7900, Zero) -> GT 41.28/18.86 new_compare112(yvy234, yvy235, True, cgd, cge) -> LT 41.28/18.86 new_compare14(yvy79000, yvy80000, ty_Char) -> new_compare8(yvy79000, yvy80000) 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, hd), he)) -> new_esEs5(yvy4000, yvy3000, hd, he) 41.28/18.86 new_lt18(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 41.28/18.86 new_lt15(yvy79000, yvy80000) -> new_esEs8(new_compare25(yvy79000, yvy80000), LT) 41.28/18.86 new_esEs25(yvy79001, yvy80001, ty_Integer) -> new_esEs10(yvy79001, yvy80001) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs9(yvy79000, yvy80000, cfg, cfh, cga) 41.28/18.86 new_compare23(yvy79000, yvy80000, False, dd, de) -> new_compare10(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000, dd, de), dd, de) 41.28/18.86 new_gt1(yvy400, yvy300, h, ba) -> new_esEs8(new_compare33(yvy400, yvy300, h, ba), GT) 41.28/18.86 new_esEs25(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_[], ceh), beb) -> new_ltEs11(yvy79000, yvy80000, ceh) 41.28/18.86 new_esEs25(yvy79001, yvy80001, app(ty_[], dfa)) -> new_esEs15(yvy79001, yvy80001, dfa) 41.28/18.86 new_compare113(yvy79000, yvy80000, True, gg) -> LT 41.28/18.86 new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 41.28/18.86 new_ltEs7(yvy7900, yvy8000) -> new_fsEs(new_compare7(yvy7900, yvy8000)) 41.28/18.86 new_lt20(yvy79000, yvy80000, app(ty_[], cdg)) -> new_lt11(yvy79000, yvy80000, cdg) 41.28/18.86 new_compare23(yvy79000, yvy80000, True, dd, de) -> EQ 41.28/18.86 new_esEs8(LT, EQ) -> False 41.28/18.86 new_esEs8(EQ, LT) -> False 41.28/18.86 new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cbb), cbc), cba) -> new_esEs4(yvy4000, yvy3000, cbb, cbc) 41.28/18.86 new_esEs21(yvy4000, yvy3000, app(app(ty_@2, bbh), bca)) -> new_esEs4(yvy4000, yvy3000, bbh, bca) 41.28/18.86 new_ltEs21(yvy79001, yvy80001, app(app(app(ty_@3, ead), eae), eaf)) -> new_ltEs9(yvy79001, yvy80001, ead, eae, eaf) 41.28/18.86 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 41.28/18.86 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 41.28/18.86 new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs6(yvy20, yvy15, dhb, dhc, dhd) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(app(ty_@2, cfb), cfc)) -> new_ltEs4(yvy79000, yvy80000, cfb, cfc) 41.28/18.86 new_esEs7(Nothing, Nothing, gh) -> True 41.28/18.86 new_esEs13(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 41.28/18.86 new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 41.28/18.86 new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.86 new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt9(yvy79001, yvy80001) 41.28/18.86 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, bhe)) -> new_esEs17(yvy4000, yvy3000, bhe) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Int) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.86 new_esEs25(yvy79001, yvy80001, app(app(ty_@2, dea), deb)) -> new_esEs4(yvy79001, yvy80001, dea, deb) 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_Either, cec), ced), beb) -> new_ltEs12(yvy79000, yvy80000, cec, ced) 41.28/18.86 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare7(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) 41.28/18.86 new_esEs35(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.86 new_ltEs18(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 41.28/18.86 new_ltEs18(yvy7900, yvy8000, app(app(ty_Either, bea), beb)) -> new_ltEs12(yvy7900, yvy8000, bea, beb) 41.28/18.86 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.86 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.86 new_esEs24(yvy79000, yvy80000, app(app(ty_Either, ddb), ddc)) -> new_esEs5(yvy79000, yvy80000, ddb, ddc) 41.28/18.86 new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, bfg)) -> new_ltEs17(yvy7900, yvy8000, bfg) 41.28/18.86 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.86 new_esEs25(yvy79001, yvy80001, ty_Ordering) -> new_esEs8(yvy79001, yvy80001) 41.28/18.86 new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs14(yvy35, yvy30) 41.28/18.86 new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT 41.28/18.86 new_compare114(yvy227, yvy228, False, bdb, bdc) -> GT 41.28/18.86 new_esEs20(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) 41.28/18.86 new_ltEs20(yvy79002, yvy80002, ty_@0) -> new_ltEs16(yvy79002, yvy80002) 41.28/18.86 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.86 new_esEs25(yvy79001, yvy80001, app(ty_Maybe, dfb)) -> new_esEs7(yvy79001, yvy80001, dfb) 41.28/18.86 new_ltEs8(True, False) -> False 41.28/18.86 new_esEs15([], [], bbg) -> True 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Bool, beb) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.86 new_esEs32(yvy20, yvy15, app(app(ty_Either, dgh), dha)) -> new_esEs5(yvy20, yvy15, dgh, dha) 41.28/18.86 new_esEs36(yvy400, yvy300, app(app(ty_@2, ca), cb)) -> new_esEs4(yvy400, yvy300, ca, cb) 41.28/18.86 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.86 new_esEs24(yvy79000, yvy80000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs6(yvy79000, yvy80000, ddd, dde, ddf) 41.28/18.86 new_lt4(yvy240, yvy239) -> new_esEs8(new_compare7(yvy240, yvy239), LT) 41.28/18.86 new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt10(yvy79001, yvy80001) 41.28/18.86 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 41.28/18.86 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 41.28/18.86 new_ltEs8(False, False) -> True 41.28/18.86 new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, hf), hg), hh)) -> new_esEs6(yvy4000, yvy3000, hf, hg, hh) 41.28/18.86 new_compare14(yvy79000, yvy80000, app(app(ty_@2, dg), dh)) -> new_compare16(yvy79000, yvy80000, dg, dh) 41.28/18.86 new_esEs36(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) 41.28/18.86 new_lt18(yvy79000, yvy80000, app(ty_Ratio, dda)) -> new_lt14(yvy79000, yvy80000, dda) 41.28/18.86 new_ltEs5(EQ, EQ) -> True 41.28/18.86 new_ltEs18(yvy7900, yvy8000, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs9(yvy7900, yvy8000, bec, bed, bee) 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_Either, cbe), cbf), cba) -> new_esEs5(yvy4000, yvy3000, cbe, cbf) 41.28/18.86 new_compare27(yvy79000, yvy80000, True, fa, fb, fc) -> EQ 41.28/18.86 new_lt19(yvy79001, yvy80001, app(ty_[], dfa)) -> new_lt11(yvy79001, yvy80001, dfa) 41.28/18.86 new_ltEs18(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Bool, cba) -> new_esEs12(yvy4000, yvy3000) 41.28/18.86 new_compare15(yvy79000, yvy80000) -> new_compare29(yvy79000, yvy80000, new_esEs12(yvy79000, yvy80000)) 41.28/18.86 new_esEs21(yvy4000, yvy3000, app(app(ty_Either, bcc), bcd)) -> new_esEs5(yvy4000, yvy3000, bcc, bcd) 41.28/18.86 new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.86 new_compare7(yvy79, yvy80) -> new_primCmpInt(yvy79, yvy80) 41.28/18.86 new_esEs35(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) 41.28/18.86 new_esEs8(LT, LT) -> True 41.28/18.86 new_esEs35(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) 41.28/18.86 new_compare111(yvy79000, yvy80000, True) -> LT 41.28/18.86 new_esEs28(yvy79000, yvy80000, app(ty_[], cdg)) -> new_esEs15(yvy79000, yvy80000, cdg) 41.28/18.86 new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 41.28/18.86 new_lt18(yvy79000, yvy80000, app(ty_[], ddg)) -> new_lt11(yvy79000, yvy80000, ddg) 41.28/18.86 new_lt6(yvy79000, yvy80000, gg) -> new_esEs8(new_compare12(yvy79000, yvy80000, gg), LT) 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.86 new_esEs24(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 41.28/18.86 new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs9(yvy7900, yvy8000, bfc, bfd, bfe) 41.28/18.86 new_primPlusNat1(Succ(yvy20100), Zero) -> Succ(yvy20100) 41.28/18.86 new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, ha), hb)) -> new_esEs4(yvy4000, yvy3000, ha, hb) 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Maybe, bbf)) -> new_ltEs17(yvy79000, yvy80000, bbf) 41.28/18.86 new_compare14(yvy79000, yvy80000, app(app(ty_Either, eb), ec)) -> new_compare19(yvy79000, yvy80000, eb, ec) 41.28/18.86 new_ltEs21(yvy79001, yvy80001, ty_Double) -> new_ltEs14(yvy79001, yvy80001) 41.28/18.86 new_esEs35(yvy400, yvy300, app(app(ty_@2, bgc), bgd)) -> new_esEs4(yvy400, yvy300, bgc, bgd) 41.28/18.86 new_compare14(yvy79000, yvy80000, ty_Integer) -> new_compare26(yvy79000, yvy80000) 41.28/18.86 new_esEs24(yvy79000, yvy80000, app(ty_Maybe, ddh)) -> new_esEs7(yvy79000, yvy80000, ddh) 41.28/18.86 new_esEs25(yvy79001, yvy80001, ty_Bool) -> new_esEs12(yvy79001, yvy80001) 41.28/18.86 new_esEs24(yvy79000, yvy80000, app(ty_Ratio, dda)) -> new_esEs17(yvy79000, yvy80000, dda) 41.28/18.86 new_esEs36(yvy400, yvy300, app(ty_Ratio, db)) -> new_esEs17(yvy400, yvy300, db) 41.28/18.86 new_esEs24(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.86 new_ltEs5(LT, LT) -> True 41.28/18.86 new_ltEs20(yvy79002, yvy80002, ty_Double) -> new_ltEs14(yvy79002, yvy80002) 41.28/18.86 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.86 new_esEs35(yvy400, yvy300, app(ty_Ratio, bgb)) -> new_esEs17(yvy400, yvy300, bgb) 41.28/18.86 new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs9(yvy20, yvy15) 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Integer, cba) -> new_esEs10(yvy4000, yvy3000) 41.28/18.86 new_ltEs5(LT, EQ) -> True 41.28/18.86 new_esEs36(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 41.28/18.86 new_compare14(yvy79000, yvy80000, ty_Double) -> new_compare18(yvy79000, yvy80000) 41.28/18.86 new_compare14(yvy79000, yvy80000, ty_@0) -> new_compare9(yvy79000, yvy80000) 41.28/18.86 new_ltEs21(yvy79001, yvy80001, app(ty_Maybe, eah)) -> new_ltEs17(yvy79001, yvy80001, eah) 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.86 new_esEs36(yvy400, yvy300, ty_Bool) -> new_esEs12(yvy400, yvy300) 41.28/18.86 new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.86 new_esEs36(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) 41.28/18.86 new_ltEs8(False, True) -> True 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, baa)) -> new_esEs17(yvy4000, yvy3000, baa) 41.28/18.86 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.86 new_compare14(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) 41.28/18.86 new_esEs27(yvy4001, yvy3001, app(ty_[], caa)) -> new_esEs15(yvy4001, yvy3001, caa) 41.28/18.86 new_ltEs6(yvy7900, yvy8000) -> new_fsEs(new_compare8(yvy7900, yvy8000)) 41.28/18.86 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.86 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.86 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(app(ty_Either, cfe), cff)) -> new_ltEs12(yvy79000, yvy80000, cfe, cff) 41.28/18.86 new_ltEs20(yvy79002, yvy80002, app(app(app(ty_@3, dfh), dga), dgb)) -> new_ltEs9(yvy79002, yvy80002, dfh, dga, dgb) 41.28/18.86 new_esEs19(yvy4001, yvy3001, app(app(ty_Either, daf), dag)) -> new_esEs5(yvy4001, yvy3001, daf, dag) 41.28/18.86 new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt12(yvy79001, yvy80001) 41.28/18.86 new_esEs27(yvy4001, yvy3001, app(ty_Ratio, cag)) -> new_esEs17(yvy4001, yvy3001, cag) 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Double, beb) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs6(yvy4000, yvy3000, cdb, cdc, cdd) 41.28/18.86 new_esEs28(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 41.28/18.86 new_ltEs12(Right(yvy79000), Left(yvy80000), bea, beb) -> False 41.28/18.86 new_esEs24(yvy79000, yvy80000, app(ty_[], ddg)) -> new_esEs15(yvy79000, yvy80000, ddg) 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Ratio, ccb), cba) -> new_esEs17(yvy4000, yvy3000, ccb) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(ty_Ratio, cde)) -> new_esEs17(yvy4000, yvy3000, cde) 41.28/18.86 new_esEs17(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bgb) -> new_asAs(new_esEs22(yvy4000, yvy3000, bgb), new_esEs23(yvy4001, yvy3001, bgb)) 41.28/18.86 new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 41.28/18.86 new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 41.28/18.86 new_compare210(Left(yvy7900), Left(yvy8000), False, bdd, bde) -> new_compare114(yvy7900, yvy8000, new_ltEs18(yvy7900, yvy8000, bdd), bdd, bde) 41.28/18.86 new_sr0(Integer(yvy800000), Integer(yvy790010)) -> Integer(new_primMulInt(yvy800000, yvy790010)) 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, cee), cef), ceg), beb) -> new_ltEs9(yvy79000, yvy80000, cee, cef, ceg) 41.28/18.86 new_esEs28(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 41.28/18.86 new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs6(yvy4001, yvy3001, cad, cae, caf) 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.86 new_esEs28(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 41.28/18.86 new_ltEs21(yvy79001, yvy80001, app(ty_Ratio, eaa)) -> new_ltEs13(yvy79001, yvy80001, eaa) 41.28/18.86 new_lt9(yvy79000, yvy80000) -> new_esEs8(new_compare8(yvy79000, yvy80000), LT) 41.28/18.86 new_ltEs21(yvy79001, yvy80001, ty_@0) -> new_ltEs16(yvy79001, yvy80001) 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.86 new_esEs20(yvy4002, yvy3002, ty_Int) -> new_esEs9(yvy4002, yvy3002) 41.28/18.86 new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.86 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.86 new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs12(yvy20, yvy15) 41.28/18.86 new_esEs25(yvy79001, yvy80001, ty_Int) -> new_esEs9(yvy79001, yvy80001) 41.28/18.86 new_ltEs21(yvy79001, yvy80001, app(app(ty_Either, eab), eac)) -> new_ltEs12(yvy79001, yvy80001, eab, eac) 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.86 new_lt5(yvy79000, yvy80000) -> new_esEs8(new_compare9(yvy79000, yvy80000), LT) 41.28/18.86 new_asAs(True, yvy222) -> yvy222 41.28/18.86 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 41.28/18.86 new_compare10(yvy79000, yvy80000, False, dd, de) -> GT 41.28/18.86 new_ltEs5(GT, LT) -> False 41.28/18.86 new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), bec, bed, bee) -> new_pePe(new_lt18(yvy79000, yvy80000, bec), new_asAs(new_esEs24(yvy79000, yvy80000, bec), new_pePe(new_lt19(yvy79001, yvy80001, bed), new_asAs(new_esEs25(yvy79001, yvy80001, bed), new_ltEs20(yvy79002, yvy80002, bee))))) 41.28/18.86 new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.86 new_esEs24(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 41.28/18.86 new_compare14(yvy79000, yvy80000, ty_Int) -> new_compare7(yvy79000, yvy80000) 41.28/18.86 new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.86 new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, fa), fb), fc)) -> new_lt7(yvy79000, yvy80000, fa, fb, fc) 41.28/18.86 new_esEs36(yvy400, yvy300, app(ty_Maybe, dc)) -> new_esEs7(yvy400, yvy300, dc) 41.28/18.86 new_esEs20(yvy4002, yvy3002, app(ty_[], dbg)) -> new_esEs15(yvy4002, yvy3002, dbg) 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.86 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.86 new_lt10(yvy79000, yvy80000) -> new_esEs8(new_compare18(yvy79000, yvy80000), LT) 41.28/18.86 new_esEs24(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 41.28/18.86 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.86 new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) 41.28/18.86 new_ltEs8(True, True) -> True 41.28/18.86 new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat1(yvy7900, yvy800) 41.28/18.86 new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs9(yvy35, yvy30) 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_@2, cdh), cea), beb) -> new_ltEs4(yvy79000, yvy80000, cdh, cea) 41.28/18.86 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare26(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) 41.28/18.86 new_compare8(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.86 new_esEs35(yvy400, yvy300, app(app(ty_Either, ccd), cba)) -> new_esEs5(yvy400, yvy300, ccd, cba) 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Ordering, beb) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.86 new_primCompAux00(yvy260, EQ) -> yvy260 41.28/18.86 new_esEs12(False, True) -> False 41.28/18.86 new_esEs12(True, False) -> False 41.28/18.86 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.86 new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt15(yvy79001, yvy80001) 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Float, cba) -> new_esEs16(yvy4000, yvy3000) 41.28/18.86 new_primMulNat0(Zero, Zero) -> Zero 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Double, cba) -> new_esEs13(yvy4000, yvy3000) 41.28/18.86 new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, def), deg), deh)) -> new_lt7(yvy79001, yvy80001, def, deg, deh) 41.28/18.86 new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) 41.28/18.86 new_esEs12(True, True) -> True 41.28/18.86 new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.86 new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.86 new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Int, cba) -> new_esEs9(yvy4000, yvy3000) 41.28/18.86 new_compare111(yvy79000, yvy80000, False) -> GT 41.28/18.86 new_esEs31(yvy35, yvy30, app(ty_Maybe, gf)) -> new_esEs7(yvy35, yvy30, gf) 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_@0, beb) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.86 new_compare9(@0, @0) -> EQ 41.28/18.86 new_esEs15(:(yvy4000, yvy4001), [], bbg) -> False 41.28/18.86 new_esEs15([], :(yvy3000, yvy3001), bbg) -> False 41.28/18.86 new_esEs20(yvy4002, yvy3002, app(app(ty_Either, dbh), dca)) -> new_esEs5(yvy4002, yvy3002, dbh, dca) 41.28/18.86 new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, beh)) -> new_ltEs13(yvy7900, yvy8000, beh) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(app(ty_Either, cch), cda)) -> new_esEs5(yvy4000, yvy3000, cch, cda) 41.28/18.86 new_esEs24(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 41.28/18.86 new_ltEs5(EQ, LT) -> False 41.28/18.86 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, bfa), bfb)) -> new_ltEs12(yvy7900, yvy8000, bfa, bfb) 41.28/18.86 new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.86 new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.86 new_esEs35(yvy400, yvy300, app(ty_[], bbg)) -> new_esEs15(yvy400, yvy300, bbg) 41.28/18.86 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], hc)) -> new_esEs15(yvy4000, yvy3000, hc) 41.28/18.86 new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(ty_Maybe, cgc)) -> new_ltEs17(yvy79000, yvy80000, cgc) 41.28/18.86 new_primCompAux0(yvy79000, yvy80000, yvy256, df) -> new_primCompAux00(yvy256, new_compare14(yvy79000, yvy80000, df)) 41.28/18.86 new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.86 new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.86 new_lt17(yvy79000, yvy80000, bfh, bga) -> new_esEs8(new_compare19(yvy79000, yvy80000, bfh, bga), LT) 41.28/18.86 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 41.28/18.86 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 41.28/18.86 new_esEs24(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 41.28/18.86 new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt8(yvy79001, yvy80001) 41.28/18.86 new_ltEs20(yvy79002, yvy80002, app(app(ty_Either, dff), dfg)) -> new_ltEs12(yvy79002, yvy80002, dff, dfg) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Char) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.86 new_lt19(yvy79001, yvy80001, app(ty_Ratio, dec)) -> new_lt14(yvy79001, yvy80001, dec) 41.28/18.86 new_ltEs20(yvy79002, yvy80002, app(ty_Ratio, dfe)) -> new_ltEs13(yvy79002, yvy80002, dfe) 41.28/18.86 new_esEs20(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 41.28/18.86 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.86 new_ltEs18(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 41.28/18.86 new_esEs20(yvy4002, yvy3002, ty_Double) -> new_esEs13(yvy4002, yvy3002) 41.28/18.86 new_esEs21(yvy4000, yvy3000, app(ty_Maybe, bda)) -> new_esEs7(yvy4000, yvy3000, bda) 41.28/18.86 new_esEs32(yvy20, yvy15, app(app(ty_@2, dge), dgf)) -> new_esEs4(yvy20, yvy15, dge, dgf) 41.28/18.86 new_esEs36(yvy400, yvy300, app(app(ty_Either, cd), ce)) -> new_esEs5(yvy400, yvy300, cd, ce) 41.28/18.86 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, bge), bgf)) -> new_esEs4(yvy4000, yvy3000, bge, bgf) 41.28/18.86 new_compare14(yvy79000, yvy80000, app(ty_Ratio, ea)) -> new_compare17(yvy79000, yvy80000, ea) 41.28/18.86 new_compare24(yvy79000, yvy80000, True) -> EQ 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.86 new_ltEs18(yvy7900, yvy8000, app(ty_Maybe, bad)) -> new_ltEs17(yvy7900, yvy8000, bad) 41.28/18.86 new_esEs18(yvy4000, yvy3000, app(ty_[], chc)) -> new_esEs15(yvy4000, yvy3000, chc) 41.28/18.86 new_esEs25(yvy79001, yvy80001, app(app(ty_Either, ded), dee)) -> new_esEs5(yvy79001, yvy80001, ded, dee) 41.28/18.86 new_lt18(yvy79000, yvy80000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_lt7(yvy79000, yvy80000, ddd, dde, ddf) 41.28/18.86 new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 41.28/18.86 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.86 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 41.28/18.86 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 41.28/18.86 new_lt20(yvy79000, yvy80000, app(ty_Ratio, bac)) -> new_lt14(yvy79000, yvy80000, bac) 41.28/18.86 new_gt0(yvy400, yvy300, h, ba) -> new_esEs8(new_compare32(yvy400, yvy300, h, ba), GT) 41.28/18.86 new_esEs32(yvy20, yvy15, app(ty_Maybe, dhf)) -> new_esEs7(yvy20, yvy15, dhf) 41.28/18.86 new_esEs31(yvy35, yvy30, app(app(ty_Either, fh), ga)) -> new_esEs5(yvy35, yvy30, fh, ga) 41.28/18.86 new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(ty_[], cgb)) -> new_ltEs11(yvy79000, yvy80000, cgb) 41.28/18.86 new_esEs35(yvy400, yvy300, ty_Int) -> new_esEs9(yvy400, yvy300) 41.28/18.86 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, bhf)) -> new_esEs7(yvy4000, yvy3000, bhf) 41.28/18.86 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Maybe, cfa), beb) -> new_ltEs17(yvy79000, yvy80000, cfa) 41.28/18.86 new_lt18(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 41.28/18.86 new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 41.28/18.86 new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) 41.28/18.86 new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt5(yvy79001, yvy80001) 41.28/18.86 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, bgh), bha)) -> new_esEs5(yvy4000, yvy3000, bgh, bha) 41.28/18.86 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat1(yvy8000, Zero) 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cbg), cbh), cca), cba) -> new_esEs6(yvy4000, yvy3000, cbg, cbh, cca) 41.28/18.86 new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) 41.28/18.86 new_lt18(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 41.28/18.86 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.86 new_compare110(yvy79000, yvy80000, True, fa, fb, fc) -> LT 41.28/18.86 new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) 41.28/18.86 new_compare14(yvy79000, yvy80000, app(app(app(ty_@3, ed), ee), ef)) -> new_compare13(yvy79000, yvy80000, ed, ee, ef) 41.28/18.86 new_esEs15(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bbg) -> new_asAs(new_esEs21(yvy4000, yvy3000, bbg), new_esEs15(yvy4001, yvy3001, bbg)) 41.28/18.86 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs6(yvy4000, yvy3000, bhb, bhc, bhd) 41.28/18.86 new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 41.28/18.86 new_esEs35(yvy400, yvy300, ty_Double) -> new_esEs13(yvy400, yvy300) 41.28/18.86 new_esEs27(yvy4001, yvy3001, app(ty_Maybe, cah)) -> new_esEs7(yvy4001, yvy3001, cah) 41.28/18.86 new_compare12(yvy79000, yvy80000, gg) -> new_compare28(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, gg), gg) 41.28/18.86 new_compare112(yvy234, yvy235, False, cgd, cge) -> GT 41.28/18.86 new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs6(yvy4000, yvy3000, chf, chg, chh) 41.28/18.86 new_ltEs21(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Maybe, ccc), cba) -> new_esEs7(yvy4000, yvy3000, ccc) 41.28/18.86 new_ltEs5(EQ, GT) -> True 41.28/18.86 new_esEs31(yvy35, yvy30, app(app(ty_@2, fd), ff)) -> new_esEs4(yvy35, yvy30, fd, ff) 41.28/18.86 new_esEs35(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Float, beb) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.86 new_ltEs20(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) 41.28/18.86 new_not(False) -> True 41.28/18.86 new_esEs28(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 41.28/18.86 new_esEs18(yvy4000, yvy3000, app(app(ty_Either, chd), che)) -> new_esEs5(yvy4000, yvy3000, chd, che) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.86 new_compare25(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs8(yvy79000, yvy80000)) 41.28/18.86 new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs8(yvy35, yvy30) 41.28/18.86 new_ltEs13(yvy7900, yvy8000, bdh) -> new_fsEs(new_compare17(yvy7900, yvy8000, bdh)) 41.28/18.86 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bgc, bgd) -> new_asAs(new_esEs26(yvy4000, yvy3000, bgc), new_esEs27(yvy4001, yvy3001, bgd)) 41.28/18.86 new_esEs25(yvy79001, yvy80001, ty_@0) -> new_esEs14(yvy79001, yvy80001) 41.28/18.86 new_esEs20(yvy4002, yvy3002, app(ty_Maybe, dcf)) -> new_esEs7(yvy4002, yvy3002, dcf) 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bae), baf)) -> new_ltEs4(yvy79000, yvy80000, bae, baf) 41.28/18.86 new_ltEs5(GT, GT) -> True 41.28/18.86 new_esEs8(LT, GT) -> False 41.28/18.86 new_esEs8(GT, LT) -> False 41.28/18.86 new_compare29(yvy79000, yvy80000, True) -> EQ 41.28/18.86 new_esEs31(yvy35, yvy30, app(ty_[], fg)) -> new_esEs15(yvy35, yvy30, fg) 41.28/18.86 new_esEs32(yvy20, yvy15, app(ty_Ratio, dhe)) -> new_esEs17(yvy20, yvy15, dhe) 41.28/18.86 new_esEs5(Left(yvy4000), Right(yvy3000), ccd, cba) -> False 41.28/18.86 new_esEs5(Right(yvy4000), Left(yvy3000), ccd, cba) -> False 41.28/18.86 new_esEs20(yvy4002, yvy3002, ty_Bool) -> new_esEs12(yvy4002, yvy3002) 41.28/18.86 new_lt19(yvy79001, yvy80001, app(ty_Maybe, dfb)) -> new_lt6(yvy79001, yvy80001, dfb) 41.28/18.86 new_lt13(yvy79000, yvy80000, dd, de) -> new_esEs8(new_compare16(yvy79000, yvy80000, dd, de), LT) 41.28/18.86 new_ltEs21(yvy79001, yvy80001, ty_Ordering) -> new_ltEs5(yvy79001, yvy80001) 41.28/18.86 new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs10(yvy35, yvy30) 41.28/18.86 new_esEs19(yvy4001, yvy3001, app(ty_[], dae)) -> new_esEs15(yvy4001, yvy3001, dae) 41.28/18.86 new_ltEs18(yvy7900, yvy8000, app(ty_Ratio, bdh)) -> new_ltEs13(yvy7900, yvy8000, bdh) 41.28/18.86 new_compare14(yvy79000, yvy80000, app(ty_Maybe, eh)) -> new_compare12(yvy79000, yvy80000, eh) 41.28/18.86 new_lt8(yvy79000, yvy80000) -> new_esEs8(new_compare26(yvy79000, yvy80000), LT) 41.28/18.86 new_compare113(yvy79000, yvy80000, False, gg) -> GT 41.28/18.86 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.86 new_primPlusNat0(Succ(yvy2010), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2010, yvy300000))) 41.28/18.86 new_lt14(yvy79000, yvy80000, bac) -> new_esEs8(new_compare17(yvy79000, yvy80000, bac), LT) 41.28/18.86 new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 41.28/18.86 new_esEs19(yvy4001, yvy3001, app(ty_Maybe, dbd)) -> new_esEs7(yvy4001, yvy3001, dbd) 41.28/18.86 new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 41.28/18.86 new_ltEs20(yvy79002, yvy80002, ty_Char) -> new_ltEs6(yvy79002, yvy80002) 41.28/18.86 new_esEs36(yvy400, yvy300, ty_Int) -> new_esEs9(yvy400, yvy300) 41.28/18.86 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 41.28/18.86 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 41.28/18.86 new_lt16(yvy79000, yvy80000) -> new_esEs8(new_compare15(yvy79000, yvy80000), LT) 41.28/18.86 new_lt12(yvy79000, yvy80000) -> new_esEs8(new_compare6(yvy79000, yvy80000), LT) 41.28/18.86 new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 41.28/18.86 new_primPlusNat1(Zero, Zero) -> Zero 41.28/18.86 new_esEs6(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cgf, cgg, cgh) -> new_asAs(new_esEs18(yvy4000, yvy3000, cgf), new_asAs(new_esEs19(yvy4001, yvy3001, cgg), new_esEs20(yvy4002, yvy3002, cgh))) 41.28/18.86 new_esEs20(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 41.28/18.86 new_ltEs18(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 41.28/18.86 new_ltEs20(yvy79002, yvy80002, ty_Int) -> new_ltEs7(yvy79002, yvy80002) 41.28/18.86 new_ltEs21(yvy79001, yvy80001, app(app(ty_@2, dhg), dhh)) -> new_ltEs4(yvy79001, yvy80001, dhg, dhh) 41.28/18.86 new_esEs27(yvy4001, yvy3001, app(app(ty_@2, bhg), bhh)) -> new_esEs4(yvy4001, yvy3001, bhg, bhh) 41.28/18.86 new_lt18(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 41.28/18.86 new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 41.28/18.86 new_esEs28(yvy79000, yvy80000, app(ty_Ratio, bac)) -> new_esEs17(yvy79000, yvy80000, bac) 41.28/18.86 new_compare11(yvy79000, yvy80000, True) -> LT 41.28/18.86 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.86 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.86 new_ltEs4(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), bdf, bdg) -> new_pePe(new_lt20(yvy79000, yvy80000, bdf), new_asAs(new_esEs28(yvy79000, yvy80000, bdf), new_ltEs21(yvy79001, yvy80001, bdg))) 41.28/18.86 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 41.28/18.86 new_lt19(yvy79001, yvy80001, app(app(ty_@2, dea), deb)) -> new_lt13(yvy79001, yvy80001, dea, deb) 41.28/18.86 new_compare31(yvy20, yvy15, bc, bd) -> new_compare210(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, bc), bc, bd) 41.28/18.86 new_compare16(yvy79000, yvy80000, dd, de) -> new_compare23(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, dd, de), dd, de) 41.28/18.86 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 41.28/18.86 new_esEs28(yvy79000, yvy80000, app(app(ty_@2, dd), de)) -> new_esEs4(yvy79000, yvy80000, dd, de) 41.28/18.86 new_primCmpNat0(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.86 new_esEs20(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) 41.28/18.86 new_compare19(yvy79000, yvy80000, bfh, bga) -> new_compare210(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bfh, bga), bfh, bga) 41.28/18.86 new_compare30(yvy35, yvy30, bf, bg) -> new_compare210(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, bg), bf, bg) 41.28/18.86 new_compare3(:(yvy79000, yvy79001), [], df) -> GT 41.28/18.86 new_compare14(yvy79000, yvy80000, ty_Bool) -> new_compare15(yvy79000, yvy80000) 41.28/18.86 new_esEs28(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_[], bbe)) -> new_ltEs11(yvy79000, yvy80000, bbe) 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), ty_@0, cba) -> new_esEs14(yvy4000, yvy3000) 41.28/18.86 new_compare26(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) 41.28/18.86 new_gt(yvy20, yvy15, bc, bd) -> new_esEs8(new_compare31(yvy20, yvy15, bc, bd), GT) 41.28/18.86 new_ltEs18(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 41.28/18.86 new_compare32(yvy400, yvy300, h, ba) -> new_compare210(Left(yvy400), Right(yvy300), False, h, ba) 41.28/18.86 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 41.28/18.86 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 41.28/18.86 new_primCmpNat1(yvy7900, Succ(yvy8000)) -> new_primCmpNat0(yvy7900, yvy8000) 41.28/18.86 new_esEs18(yvy4000, yvy3000, app(ty_Maybe, dab)) -> new_esEs7(yvy4000, yvy3000, dab) 41.28/18.86 new_lt20(yvy79000, yvy80000, app(ty_Maybe, gg)) -> new_lt6(yvy79000, yvy80000, gg) 41.28/18.86 new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 41.28/18.86 new_primEqNat0(Zero, Zero) -> True 41.28/18.86 new_esEs28(yvy79000, yvy80000, app(app(ty_Either, bfh), bga)) -> new_esEs5(yvy79000, yvy80000, bfh, bga) 41.28/18.86 new_compare210(Right(yvy7900), Right(yvy8000), False, bdd, bde) -> new_compare112(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, bde), bdd, bde) 41.28/18.86 new_esEs21(yvy4000, yvy3000, app(ty_[], bcb)) -> new_esEs15(yvy4000, yvy3000, bcb) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.86 new_lt11(yvy79000, yvy80000, cdg) -> new_esEs8(new_compare3(yvy79000, yvy80000, cdg), LT) 41.28/18.86 new_esEs28(yvy79000, yvy80000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs6(yvy79000, yvy80000, fa, fb, fc) 41.28/18.86 new_compare29(yvy79000, yvy80000, False) -> new_compare111(yvy79000, yvy80000, new_ltEs8(yvy79000, yvy80000)) 41.28/18.86 new_compare33(yvy400, yvy300, h, ba) -> new_compare210(Right(yvy400), Left(yvy300), False, h, ba) 41.28/18.86 new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.86 new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.86 new_asAs(False, yvy222) -> False 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.86 new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 41.28/18.86 new_lt7(yvy79000, yvy80000, fa, fb, fc) -> new_esEs8(new_compare13(yvy79000, yvy80000, fa, fb, fc), LT) 41.28/18.86 new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs12(yvy35, yvy30) 41.28/18.86 new_ltEs5(GT, EQ) -> False 41.28/18.86 new_ltEs20(yvy79002, yvy80002, ty_Ordering) -> new_ltEs5(yvy79002, yvy80002) 41.28/18.86 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.86 new_esEs18(yvy4000, yvy3000, app(ty_Ratio, daa)) -> new_esEs17(yvy4000, yvy3000, daa) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.86 new_ltEs21(yvy79001, yvy80001, app(ty_[], eag)) -> new_ltEs11(yvy79001, yvy80001, eag) 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Int, beb) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.86 new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 41.28/18.86 new_lt18(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 41.28/18.86 new_lt18(yvy79000, yvy80000, app(app(ty_@2, dcg), dch)) -> new_lt13(yvy79000, yvy80000, dcg, dch) 41.28/18.86 new_compare210(Right(yvy7900), Left(yvy8000), False, bdd, bde) -> GT 41.28/18.86 new_esEs8(EQ, GT) -> False 41.28/18.86 new_esEs8(GT, EQ) -> False 41.28/18.86 new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.86 new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat0(yvy8000, yvy7900) 41.28/18.86 new_ltEs18(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 41.28/18.86 new_ltEs16(yvy7900, yvy8000) -> new_fsEs(new_compare9(yvy7900, yvy8000)) 41.28/18.86 41.28/18.86 The set Q consists of the following terms: 41.28/18.86 41.28/18.86 new_ltEs18(x0, x1, ty_Bool) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.86 new_ltEs21(x0, x1, ty_Ordering) 41.28/18.86 new_esEs31(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs28(x0, x1, ty_Integer) 41.28/18.86 new_esEs8(EQ, EQ) 41.28/18.86 new_compare3(:(x0, x1), :(x2, x3), x4) 41.28/18.86 new_esEs21(x0, x1, ty_Int) 41.28/18.86 new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_ltEs20(x0, x1, ty_Char) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.86 new_ltEs17(Nothing, Nothing, x0) 41.28/18.86 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs26(x0, x1, ty_Float) 41.28/18.86 new_esEs36(x0, x1, ty_Bool) 41.28/18.86 new_ltEs18(x0, x1, app(ty_[], x2)) 41.28/18.86 new_primMulInt(Neg(x0), Neg(x1)) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), ty_Char) 41.28/18.86 new_ltEs18(x0, x1, ty_@0) 41.28/18.86 new_ltEs21(x0, x1, ty_Double) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 41.28/18.86 new_compare28(x0, x1, False, x2) 41.28/18.86 new_primPlusNat1(Zero, Zero) 41.28/18.86 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_ltEs15(x0, x1) 41.28/18.86 new_ltEs12(Left(x0), Right(x1), x2, x3) 41.28/18.86 new_ltEs12(Right(x0), Left(x1), x2, x3) 41.28/18.86 new_esEs24(x0, x1, ty_Integer) 41.28/18.86 new_esEs25(x0, x1, ty_Float) 41.28/18.86 new_esEs18(x0, x1, ty_Integer) 41.28/18.86 new_compare14(x0, x1, ty_Ordering) 41.28/18.86 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 41.28/18.86 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.86 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 41.28/18.86 new_lt20(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_primCompAux00(x0, GT) 41.28/18.86 new_esEs36(x0, x1, ty_Integer) 41.28/18.86 new_esEs19(x0, x1, app(ty_[], x2)) 41.28/18.86 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_primEqInt(Pos(Zero), Pos(Zero)) 41.28/18.86 new_primMulInt(Pos(x0), Pos(x1)) 41.28/18.86 new_esEs25(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs21(x0, x1, ty_Double) 41.28/18.86 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs32(x0, x1, ty_Integer) 41.28/18.86 new_compare3([], [], x0) 41.28/18.86 new_compare29(x0, x1, False) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.86 new_esEs27(x0, x1, ty_Float) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), ty_Int) 41.28/18.86 new_primCmpNat0(Zero, Succ(x0)) 41.28/18.86 new_compare13(x0, x1, x2, x3, x4) 41.28/18.86 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), ty_@0) 41.28/18.86 new_esEs21(x0, x1, ty_Char) 41.28/18.86 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_lt17(x0, x1, x2, x3) 41.28/18.86 new_esEs32(x0, x1, ty_Float) 41.28/18.86 new_esEs32(x0, x1, app(ty_[], x2)) 41.28/18.86 new_ltEs21(x0, x1, ty_Int) 41.28/18.86 new_primEqInt(Neg(Zero), Neg(Zero)) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.86 new_primCmpNat0(Succ(x0), Succ(x1)) 41.28/18.86 new_compare11(x0, x1, False) 41.28/18.86 new_ltEs7(x0, x1) 41.28/18.86 new_primPlusNat0(Zero, x0) 41.28/18.86 new_esEs36(x0, x1, ty_@0) 41.28/18.86 new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.86 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.86 new_compare27(x0, x1, False, x2, x3, x4) 41.28/18.86 new_esEs28(x0, x1, ty_Bool) 41.28/18.86 new_sr(x0, x1) 41.28/18.86 new_esEs12(False, True) 41.28/18.86 new_esEs12(True, False) 41.28/18.86 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_ltEs20(x0, x1, ty_Double) 41.28/18.86 new_esEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_ltEs5(LT, GT) 41.28/18.86 new_ltEs5(GT, LT) 41.28/18.86 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.86 new_lt14(x0, x1, x2) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), ty_Bool) 41.28/18.86 new_lt19(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_compare33(x0, x1, x2, x3) 41.28/18.86 new_primCmpNat2(Succ(x0), x1) 41.28/18.86 new_ltEs20(x0, x1, ty_@0) 41.28/18.86 new_ltEs20(x0, x1, app(ty_[], x2)) 41.28/18.86 new_lt12(x0, x1) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 41.28/18.86 new_ltEs8(False, False) 41.28/18.86 new_esEs15([], [], x0) 41.28/18.86 new_primCmpNat2(Zero, x0) 41.28/18.86 new_esEs18(x0, x1, ty_@0) 41.28/18.86 new_compare26(Integer(x0), Integer(x1)) 41.28/18.86 new_primCompAux0(x0, x1, x2, x3) 41.28/18.86 new_esEs36(x0, x1, ty_Char) 41.28/18.86 new_esEs31(x0, x1, ty_Bool) 41.28/18.86 new_esEs19(x0, x1, ty_Integer) 41.28/18.86 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_ltEs21(x0, x1, ty_Char) 41.28/18.86 new_esEs18(x0, x1, ty_Bool) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), ty_Double) 41.28/18.86 new_compare14(x0, x1, app(ty_[], x2)) 41.28/18.86 new_compare14(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs7(Just(x0), Just(x1), ty_@0) 41.28/18.86 new_compare10(x0, x1, True, x2, x3) 41.28/18.86 new_compare29(x0, x1, True) 41.28/18.86 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.86 new_ltEs20(x0, x1, ty_Bool) 41.28/18.86 new_esEs28(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs7(Just(x0), Just(x1), ty_Bool) 41.28/18.86 new_esEs18(x0, x1, ty_Float) 41.28/18.86 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.86 new_lt10(x0, x1) 41.28/18.86 new_lt18(x0, x1, ty_Float) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 41.28/18.86 new_primEqInt(Pos(Zero), Neg(Zero)) 41.28/18.86 new_primEqInt(Neg(Zero), Pos(Zero)) 41.28/18.86 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_ltEs17(Just(x0), Nothing, x1) 41.28/18.86 new_esEs21(x0, x1, ty_Ordering) 41.28/18.86 new_ltEs20(x0, x1, ty_Int) 41.28/18.86 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 41.28/18.86 new_ltEs18(x0, x1, ty_Integer) 41.28/18.86 new_esEs31(x0, x1, ty_Double) 41.28/18.86 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.86 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.86 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs7(Just(x0), Just(x1), ty_Int) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.86 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.86 new_esEs31(x0, x1, ty_Char) 41.28/18.86 new_lt20(x0, x1, ty_Double) 41.28/18.86 new_lt18(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs31(x0, x1, ty_@0) 41.28/18.86 new_esEs25(x0, x1, ty_@0) 41.28/18.86 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs7(Just(x0), Just(x1), ty_Char) 41.28/18.86 new_esEs28(x0, x1, ty_@0) 41.28/18.86 new_esEs31(x0, x1, ty_Int) 41.28/18.86 new_gt1(x0, x1, x2, x3) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.86 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.86 new_esEs7(Just(x0), Just(x1), ty_Double) 41.28/18.86 new_esEs7(Nothing, Just(x0), x1) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.86 new_ltEs21(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs28(x0, x1, ty_Float) 41.28/18.86 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 41.28/18.86 new_primEqNat0(Succ(x0), Zero) 41.28/18.86 new_esEs28(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs36(x0, x1, ty_Ordering) 41.28/18.86 new_compare14(x0, x1, ty_@0) 41.28/18.86 new_primMulNat0(Succ(x0), Succ(x1)) 41.28/18.86 new_compare23(x0, x1, False, x2, x3) 41.28/18.86 new_esEs20(x0, x1, ty_Float) 41.28/18.86 new_ltEs18(x0, x1, ty_Float) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 41.28/18.86 new_esEs28(x0, x1, ty_Int) 41.28/18.86 new_esEs35(x0, x1, ty_Ordering) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 41.28/18.86 new_ltEs21(x0, x1, ty_Bool) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.86 new_esEs22(x0, x1, ty_Integer) 41.28/18.86 new_ltEs19(x0, x1, ty_Ordering) 41.28/18.86 new_compare114(x0, x1, False, x2, x3) 41.28/18.86 new_esEs15(:(x0, x1), [], x2) 41.28/18.86 new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.86 new_gt0(x0, x1, x2, x3) 41.28/18.86 new_ltEs20(x0, x1, ty_Integer) 41.28/18.86 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_ltEs13(x0, x1, x2) 41.28/18.86 new_esEs28(x0, x1, ty_Char) 41.28/18.86 new_primEqNat0(Succ(x0), Succ(x1)) 41.28/18.86 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_esEs27(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs36(x0, x1, ty_Double) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.86 new_esEs35(x0, x1, ty_Int) 41.28/18.86 new_lt20(x0, x1, ty_Float) 41.28/18.86 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_compare24(x0, x1, True) 41.28/18.86 new_esEs7(Just(x0), Just(x1), ty_Integer) 41.28/18.86 new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), ty_Integer) 41.28/18.86 new_ltEs18(x0, x1, ty_Int) 41.28/18.86 new_esEs21(x0, x1, ty_Bool) 41.28/18.86 new_primPlusNat0(Succ(x0), x1) 41.28/18.86 new_esEs25(x0, x1, ty_Bool) 41.28/18.86 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 41.28/18.86 new_esEs20(x0, x1, ty_Int) 41.28/18.86 new_ltEs5(EQ, GT) 41.28/18.86 new_ltEs5(GT, EQ) 41.28/18.86 new_esEs35(x0, x1, ty_Char) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_esEs7(Just(x0), Nothing, x1) 41.28/18.86 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_compare28(x0, x1, True, x2) 41.28/18.86 new_ltEs18(x0, x1, ty_Char) 41.28/18.86 new_esEs5(Left(x0), Right(x1), x2, x3) 41.28/18.86 new_esEs5(Right(x0), Left(x1), x2, x3) 41.28/18.86 new_esEs20(x0, x1, ty_Char) 41.28/18.86 new_primMulNat0(Succ(x0), Zero) 41.28/18.86 new_esEs20(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs8(GT, GT) 41.28/18.86 new_sr0(Integer(x0), Integer(x1)) 41.28/18.86 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.86 new_esEs8(LT, EQ) 41.28/18.86 new_esEs8(EQ, LT) 41.28/18.86 new_ltEs19(x0, x1, ty_Float) 41.28/18.86 new_compare112(x0, x1, False, x2, x3) 41.28/18.86 new_esEs15(:(x0, x1), :(x2, x3), x4) 41.28/18.86 new_primCmpInt(Neg(Zero), Neg(Zero)) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), ty_Ordering) 41.28/18.86 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs7(Just(x0), Just(x1), ty_Ordering) 41.28/18.86 new_compare25(x0, x1) 41.28/18.86 new_esEs8(LT, LT) 41.28/18.86 new_ltEs19(x0, x1, ty_Char) 41.28/18.86 new_primCmpInt(Pos(Zero), Neg(Zero)) 41.28/18.86 new_primCmpInt(Neg(Zero), Pos(Zero)) 41.28/18.86 new_esEs24(x0, x1, ty_Double) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 41.28/18.86 new_esEs31(x0, x1, ty_Ordering) 41.28/18.86 new_ltEs20(x0, x1, ty_Ordering) 41.28/18.86 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs24(x0, x1, ty_@0) 41.28/18.86 new_compare11(x0, x1, True) 41.28/18.86 new_esEs32(x0, x1, ty_Int) 41.28/18.86 new_lt19(x0, x1, ty_Double) 41.28/18.86 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_compare10(x0, x1, False, x2, x3) 41.28/18.86 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_ltEs17(Nothing, Just(x0), x1) 41.28/18.86 new_ltEs8(True, False) 41.28/18.86 new_ltEs8(False, True) 41.28/18.86 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_ltEs19(x0, x1, ty_Int) 41.28/18.86 new_esEs25(x0, x1, ty_Integer) 41.28/18.86 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_lt8(x0, x1) 41.28/18.86 new_esEs31(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs31(x0, x1, ty_Integer) 41.28/18.86 new_esEs27(x0, x1, ty_@0) 41.28/18.86 new_esEs28(x0, x1, ty_Ordering) 41.28/18.86 new_esEs32(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_pePe(True, x0) 41.28/18.86 new_esEs19(x0, x1, ty_Double) 41.28/18.86 new_esEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs19(x0, x1, ty_@0) 41.28/18.86 new_esEs32(x0, x1, ty_Char) 41.28/18.86 new_esEs35(x0, x1, ty_Integer) 41.28/18.86 new_esEs21(x0, x1, ty_Float) 41.28/18.86 new_esEs25(x0, x1, ty_Ordering) 41.28/18.86 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 41.28/18.86 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 41.28/18.86 new_esEs21(x0, x1, app(ty_[], x2)) 41.28/18.86 new_asAs(False, x0) 41.28/18.86 new_fsEs(x0) 41.28/18.86 new_esEs36(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 41.28/18.86 new_esEs32(x0, x1, ty_Bool) 41.28/18.86 new_esEs36(x0, x1, app(ty_[], x2)) 41.28/18.86 new_primPlusNat1(Succ(x0), Succ(x1)) 41.28/18.86 new_lt19(x0, x1, ty_@0) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 41.28/18.86 new_ltEs19(x0, x1, ty_Bool) 41.28/18.86 new_lt18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs27(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_compare110(x0, x1, True, x2, x3, x4) 41.28/18.86 new_esEs27(x0, x1, ty_Double) 41.28/18.86 new_compare14(x0, x1, ty_Double) 41.28/18.86 new_lt18(x0, x1, ty_Int) 41.28/18.86 new_esEs20(x0, x1, ty_Bool) 41.28/18.86 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs26(x0, x1, ty_Ordering) 41.28/18.86 new_esEs22(x0, x1, ty_Int) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.86 new_compare3([], :(x0, x1), x2) 41.28/18.86 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_ltEs19(x0, x1, ty_@0) 41.28/18.86 new_compare24(x0, x1, False) 41.28/18.86 new_compare112(x0, x1, True, x2, x3) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.86 new_esEs27(x0, x1, ty_Int) 41.28/18.86 new_esEs35(x0, x1, ty_Bool) 41.28/18.86 new_primCompAux00(x0, LT) 41.28/18.86 new_esEs20(x0, x1, ty_@0) 41.28/18.86 new_compare23(x0, x1, True, x2, x3) 41.28/18.86 new_compare14(x0, x1, ty_Float) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 41.28/18.86 new_lt20(x0, x1, ty_Integer) 41.28/18.86 new_primCmpNat0(Succ(x0), Zero) 41.28/18.86 new_primMulNat0(Zero, Zero) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.86 new_lt18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_compare16(x0, x1, x2, x3) 41.28/18.86 new_lt4(x0, x1) 41.28/18.86 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs15([], :(x0, x1), x2) 41.28/18.86 new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_lt20(x0, x1, ty_Bool) 41.28/18.86 new_ltEs21(x0, x1, ty_Float) 41.28/18.86 new_lt6(x0, x1, x2) 41.28/18.86 new_compare14(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_pePe(False, x0) 41.28/18.86 new_esEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_ltEs14(x0, x1) 41.28/18.86 new_compare9(@0, @0) 41.28/18.86 new_compare8(Char(x0), Char(x1)) 41.28/18.86 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs23(x0, x1, ty_Int) 41.28/18.86 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.86 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.86 new_esEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs32(x0, x1, ty_Ordering) 41.28/18.86 new_lt18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_compare14(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_ltEs19(x0, x1, ty_Integer) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.86 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.86 new_esEs28(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 41.28/18.86 new_gt2(x0, x1, x2, x3) 41.28/18.86 new_esEs31(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs24(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_lt19(x0, x1, ty_Ordering) 41.28/18.86 new_compare210(Left(x0), Right(x1), False, x2, x3) 41.28/18.86 new_compare210(Right(x0), Left(x1), False, x2, x3) 41.28/18.86 new_not(True) 41.28/18.86 new_ltEs20(x0, x1, ty_Float) 41.28/18.86 new_lt13(x0, x1, x2, x3) 41.28/18.86 new_lt9(x0, x1) 41.28/18.86 new_esEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_lt20(x0, x1, app(ty_[], x2)) 41.28/18.86 new_primCmpNat1(x0, Zero) 41.28/18.86 new_compare27(x0, x1, True, x2, x3, x4) 41.28/18.86 new_esEs17(:%(x0, x1), :%(x2, x3), x4) 41.28/18.86 new_esEs18(x0, x1, ty_Double) 41.28/18.86 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_esEs8(EQ, GT) 41.28/18.86 new_esEs8(GT, EQ) 41.28/18.86 new_esEs12(False, False) 41.28/18.86 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.86 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.86 new_compare14(x0, x1, ty_Integer) 41.28/18.86 new_esEs24(x0, x1, ty_Ordering) 41.28/18.86 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.86 new_esEs25(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 41.28/18.86 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 41.28/18.86 new_ltEs19(x0, x1, app(ty_[], x2)) 41.28/18.86 new_compare32(x0, x1, x2, x3) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.86 new_ltEs6(x0, x1) 41.28/18.86 new_esEs28(x0, x1, ty_Double) 41.28/18.86 new_esEs7(Just(x0), Just(x1), ty_Float) 41.28/18.86 new_esEs20(x0, x1, ty_Integer) 41.28/18.86 new_compare113(x0, x1, True, x2) 41.28/18.86 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_lt20(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs31(x0, x1, ty_Float) 41.28/18.86 new_esEs27(x0, x1, ty_Ordering) 41.28/18.86 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 41.28/18.86 new_lt15(x0, x1) 41.28/18.86 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.86 new_esEs32(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_compare210(Right(x0), Right(x1), False, x2, x3) 41.28/18.86 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_lt19(x0, x1, ty_Integer) 41.28/18.86 new_esEs26(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.86 new_lt7(x0, x1, x2, x3, x4) 41.28/18.86 new_esEs36(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 41.28/18.86 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 41.28/18.86 new_esEs26(x0, x1, ty_Int) 41.28/18.86 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.86 new_compare111(x0, x1, False) 41.28/18.86 new_esEs35(x0, x1, ty_@0) 41.28/18.86 new_lt18(x0, x1, ty_Double) 41.28/18.86 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs25(x0, x1, ty_Double) 41.28/18.86 new_lt18(x0, x1, ty_Char) 41.28/18.86 new_lt20(x0, x1, ty_Char) 41.28/18.86 new_lt20(x0, x1, ty_@0) 41.28/18.86 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs25(x0, x1, ty_Char) 41.28/18.86 new_lt18(x0, x1, ty_@0) 41.28/18.86 new_esEs19(x0, x1, ty_Ordering) 41.28/18.86 new_esEs18(x0, x1, ty_Int) 41.28/18.86 new_esEs18(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs35(x0, x1, ty_Float) 41.28/18.86 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs26(x0, x1, ty_Double) 41.28/18.86 new_esEs25(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs26(x0, x1, ty_Char) 41.28/18.86 new_esEs27(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_lt20(x0, x1, ty_Int) 41.28/18.86 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 41.28/18.86 new_esEs11(Char(x0), Char(x1)) 41.28/18.86 new_compare210(x0, x1, True, x2, x3) 41.28/18.86 new_ltEs5(LT, LT) 41.28/18.86 new_compare114(x0, x1, True, x2, x3) 41.28/18.86 new_esEs25(x0, x1, ty_Int) 41.28/18.86 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_primCmpInt(Pos(Zero), Pos(Zero)) 41.28/18.86 new_esEs35(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 41.28/18.86 new_esEs18(x0, x1, ty_Char) 41.28/18.86 new_esEs21(x0, x1, ty_Integer) 41.28/18.86 new_lt19(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs14(@0, @0) 41.28/18.86 new_ltEs18(x0, x1, ty_Double) 41.28/18.86 new_compare31(x0, x1, x2, x3) 41.28/18.86 new_esEs20(x0, x1, ty_Ordering) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.86 new_ltEs18(x0, x1, ty_Ordering) 41.28/18.86 new_esEs24(x0, x1, ty_Char) 41.28/18.86 new_esEs36(x0, x1, ty_Float) 41.28/18.86 new_ltEs5(LT, EQ) 41.28/18.86 new_ltEs5(EQ, LT) 41.28/18.86 new_esEs20(x0, x1, ty_Double) 41.28/18.86 new_esEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs24(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs27(x0, x1, ty_Integer) 41.28/18.86 new_ltEs5(GT, GT) 41.28/18.86 new_ltEs19(x0, x1, ty_Double) 41.28/18.86 new_esEs26(x0, x1, ty_Bool) 41.28/18.86 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_compare15(x0, x1) 41.28/18.86 new_compare30(x0, x1, x2, x3) 41.28/18.86 new_compare14(x0, x1, ty_Bool) 41.28/18.86 new_esEs26(x0, x1, ty_@0) 41.28/18.86 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_lt19(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 41.28/18.86 new_lt18(x0, x1, ty_Integer) 41.28/18.86 new_esEs10(Integer(x0), Integer(x1)) 41.28/18.86 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.86 new_esEs8(LT, GT) 41.28/18.86 new_esEs8(GT, LT) 41.28/18.86 new_esEs9(x0, x1) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.86 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_ltEs21(x0, x1, ty_Integer) 41.28/18.86 new_lt18(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_lt18(x0, x1, ty_Bool) 41.28/18.86 new_compare17(:%(x0, x1), :%(x2, x3), ty_Int) 41.28/18.86 new_esEs26(x0, x1, ty_Integer) 41.28/18.86 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.86 new_esEs36(x0, x1, ty_Int) 41.28/18.86 new_esEs32(x0, x1, ty_@0) 41.28/18.86 new_compare210(Left(x0), Left(x1), False, x2, x3) 41.28/18.86 new_esEs23(x0, x1, ty_Integer) 41.28/18.86 new_gt(x0, x1, x2, x3) 41.28/18.86 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_compare110(x0, x1, False, x2, x3, x4) 41.28/18.86 new_ltEs21(x0, x1, ty_@0) 41.28/18.86 new_asAs(True, x0) 41.28/18.86 new_esEs35(x0, x1, ty_Double) 41.28/18.86 new_compare12(x0, x1, x2) 41.28/18.86 new_esEs26(x0, x1, app(ty_[], x2)) 41.28/18.86 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_lt16(x0, x1) 41.28/18.86 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_primCompAux00(x0, EQ) 41.28/18.86 new_compare111(x0, x1, True) 41.28/18.86 new_primPlusNat1(Zero, Succ(x0)) 41.28/18.86 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.86 new_esEs7(Nothing, Nothing, x0) 41.28/18.86 new_esEs24(x0, x1, ty_Float) 41.28/18.86 new_primEqNat0(Zero, Zero) 41.28/18.86 new_compare14(x0, x1, ty_Char) 41.28/18.86 new_esEs24(x0, x1, ty_Bool) 41.28/18.86 new_lt19(x0, x1, ty_Bool) 41.28/18.86 new_esEs12(True, True) 41.28/18.86 new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.86 new_not(False) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), ty_Float) 41.28/18.86 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.86 new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.86 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_compare113(x0, x1, False, x2) 41.28/18.86 new_esEs24(x0, x1, app(ty_[], x2)) 41.28/18.86 new_primPlusNat1(Succ(x0), Zero) 41.28/18.86 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.86 new_compare14(x0, x1, ty_Int) 41.28/18.86 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.86 new_esEs19(x0, x1, ty_Bool) 41.28/18.86 new_esEs21(x0, x1, ty_@0) 41.28/18.86 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.86 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_compare17(:%(x0, x1), :%(x2, x3), ty_Integer) 41.28/18.86 new_ltEs10(x0, x1) 41.28/18.86 new_esEs32(x0, x1, ty_Double) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.86 new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 41.28/18.86 new_ltEs8(True, True) 41.28/18.86 new_compare19(x0, x1, x2, x3) 41.28/18.86 new_esEs19(x0, x1, ty_Float) 41.28/18.86 new_lt19(x0, x1, ty_Float) 41.28/18.86 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.86 new_esEs13(Double(x0, x1), Double(x2, x3)) 41.28/18.86 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_compare3(:(x0, x1), [], x2) 41.28/18.86 new_esEs24(x0, x1, ty_Int) 41.28/18.86 new_ltEs5(EQ, EQ) 41.28/18.86 new_esEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_esEs26(x0, x1, app(ty_Ratio, x2)) 41.28/18.86 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 new_esEs27(x0, x1, ty_Bool) 41.28/18.86 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.86 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.86 new_esEs35(x0, x1, app(ty_[], x2)) 41.28/18.86 new_lt5(x0, x1) 41.28/18.86 new_esEs16(Float(x0, x1), Float(x2, x3)) 41.28/18.86 new_lt18(x0, x1, ty_Ordering) 41.28/18.86 new_esEs19(x0, x1, ty_Char) 41.28/18.86 new_esEs35(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_lt19(x0, x1, ty_Char) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.86 new_ltEs11(x0, x1, x2) 41.28/18.86 new_esEs18(x0, x1, ty_Ordering) 41.28/18.86 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.86 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.86 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.86 new_lt18(x0, x1, app(ty_Maybe, x2)) 41.28/18.86 new_lt20(x0, x1, ty_Ordering) 41.28/18.86 new_ltEs16(x0, x1) 41.28/18.86 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 41.28/18.86 new_primCmpNat1(x0, Succ(x1)) 41.28/18.86 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_primMulInt(Pos(x0), Neg(x1)) 41.28/18.86 new_primMulInt(Neg(x0), Pos(x1)) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 41.28/18.86 new_esEs19(x0, x1, ty_Int) 41.28/18.86 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.86 new_compare14(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.86 new_compare7(x0, x1) 41.28/18.86 new_esEs27(x0, x1, ty_Char) 41.28/18.86 new_primMulNat0(Zero, Succ(x0)) 41.28/18.86 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.86 new_primCmpNat0(Zero, Zero) 41.28/18.86 new_primEqNat0(Zero, Succ(x0)) 41.28/18.86 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.86 new_lt11(x0, x1, x2) 41.28/18.86 new_lt19(x0, x1, ty_Int) 41.28/18.86 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.86 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.86 41.28/18.86 We have to consider all minimal (P,Q,R)-chains. 41.28/18.86 ---------------------------------------- 41.28/18.86 41.28/18.86 (47) DependencyGraphProof (EQUIVALENT) 41.28/18.86 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 41.28/18.86 ---------------------------------------- 41.28/18.86 41.28/18.86 (48) 41.28/18.86 Complex Obligation (AND) 41.28/18.86 41.28/18.86 ---------------------------------------- 41.28/18.86 41.28/18.86 (49) 41.28/18.86 Obligation: 41.28/18.86 Q DP problem: 41.28/18.86 The TRS P consists of the following rules: 41.28/18.86 41.28/18.86 new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bf, bg, bh) -> new_splitLT0(yvy34, yvy35, bf, bg, bh) 41.28/18.86 new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Right(yvy400), h, ba, bb) 41.28/18.86 new_splitLT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Right(yvy400), Left(yvy300), False, h, ba), LT), h, ba, bb) 41.28/18.86 new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitLT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, yvy300, h, ba), h, ba, bb) 41.28/18.86 new_splitLT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitLT0(yvy34, yvy400, h, ba, bb) 41.28/18.86 new_splitLT21(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Right(yvy400), h, ba, bb) 41.28/18.86 new_splitLT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitLT22(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Right(yvy400), Right(yvy300), new_esEs36(yvy400, yvy300, ba), h, ba), LT), h, ba, bb) 41.28/18.86 new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bf, bg, bh) -> new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bf, bg), bf, bg, bh) 41.28/18.86 new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bf, bg, bh) -> new_splitLT0(yvy33, yvy35, bf, bg, bh) 41.28/18.86 41.28/18.86 The TRS R consists of the following rules: 41.28/18.86 41.28/18.86 new_ltEs20(yvy79002, yvy80002, app(ty_[], dgc)) -> new_ltEs11(yvy79002, yvy80002, dgc) 41.28/18.86 new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT 41.28/18.86 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 41.28/18.86 new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.86 new_ltEs21(yvy79001, yvy80001, ty_Bool) -> new_ltEs8(yvy79001, yvy80001) 41.28/18.86 new_esEs24(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.86 new_pePe(True, yvy255) -> True 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Ordering, cba) -> new_esEs8(yvy4000, yvy3000) 41.28/18.86 new_esEs25(yvy79001, yvy80001, app(app(app(ty_@3, def), deg), deh)) -> new_esEs6(yvy79001, yvy80001, def, deg, deh) 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Ratio, bag)) -> new_ltEs13(yvy79000, yvy80000, bag) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(ty_Ratio, cfd)) -> new_ltEs13(yvy79000, yvy80000, cfd) 41.28/18.86 new_esEs19(yvy4001, yvy3001, app(ty_Ratio, dbc)) -> new_esEs17(yvy4001, yvy3001, dbc) 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Double) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.86 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 41.28/18.86 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.86 new_esEs27(yvy4001, yvy3001, app(app(ty_Either, cab), cac)) -> new_esEs5(yvy4001, yvy3001, cab, cac) 41.28/18.86 new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT 41.28/18.86 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.86 new_lt18(yvy79000, yvy80000, app(ty_Maybe, ddh)) -> new_lt6(yvy79000, yvy80000, ddh) 41.28/18.86 new_esEs9(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 41.28/18.86 new_lt20(yvy79000, yvy80000, app(app(ty_Either, bfh), bga)) -> new_lt17(yvy79000, yvy80000, bfh, bga) 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.86 new_esEs36(yvy400, yvy300, ty_Double) -> new_esEs13(yvy400, yvy300) 41.28/18.86 new_esEs24(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 41.28/18.86 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, bab)) -> new_esEs7(yvy4000, yvy3000, bab) 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Char, cba) -> new_esEs11(yvy4000, yvy3000) 41.28/18.86 new_esEs28(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 41.28/18.86 new_ltEs12(Left(yvy79000), Right(yvy80000), bea, beb) -> True 41.28/18.86 new_ltEs21(yvy79001, yvy80001, ty_Char) -> new_ltEs6(yvy79001, yvy80001) 41.28/18.86 new_esEs28(yvy79000, yvy80000, app(ty_Maybe, gg)) -> new_esEs7(yvy79000, yvy80000, gg) 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Ratio, ceb), beb) -> new_ltEs13(yvy79000, yvy80000, ceb) 41.28/18.86 new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.86 new_esEs18(yvy4000, yvy3000, app(app(ty_@2, cha), chb)) -> new_esEs4(yvy4000, yvy3000, cha, chb) 41.28/18.86 new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt16(yvy79001, yvy80001) 41.28/18.86 new_lt19(yvy79001, yvy80001, app(app(ty_Either, ded), dee)) -> new_lt17(yvy79001, yvy80001, ded, dee) 41.28/18.86 new_esEs26(yvy4000, yvy3000, app(ty_[], bgg)) -> new_esEs15(yvy4000, yvy3000, bgg) 41.28/18.86 new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt4(yvy79001, yvy80001) 41.28/18.86 new_esEs36(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 41.28/18.86 new_esEs35(yvy400, yvy300, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(yvy400, yvy300, cgf, cgg, cgh) 41.28/18.86 new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.86 new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) 41.28/18.86 new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.86 new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs13(yvy20, yvy15) 41.28/18.86 new_compare14(yvy79000, yvy80000, app(ty_[], eg)) -> new_compare3(yvy79000, yvy80000, eg) 41.28/18.86 new_compare3([], [], df) -> EQ 41.28/18.86 new_esEs28(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 41.28/18.86 new_ltEs19(yvy7900, yvy8000, app(ty_[], bff)) -> new_ltEs11(yvy7900, yvy8000, bff) 41.28/18.86 new_esEs8(GT, GT) -> True 41.28/18.86 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 41.28/18.86 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 41.28/18.86 new_ltEs18(yvy7900, yvy8000, app(app(ty_@2, bdf), bdg)) -> new_ltEs4(yvy7900, yvy8000, bdf, bdg) 41.28/18.86 new_fsEs(yvy244) -> new_not(new_esEs8(yvy244, GT)) 41.28/18.86 new_esEs25(yvy79001, yvy80001, app(ty_Ratio, dec)) -> new_esEs17(yvy79001, yvy80001, dec) 41.28/18.86 new_compare210(yvy790, yvy800, True, bdd, bde) -> EQ 41.28/18.86 new_esEs31(yvy35, yvy30, app(ty_Ratio, ge)) -> new_esEs17(yvy35, yvy30, ge) 41.28/18.86 new_esEs32(yvy20, yvy15, app(ty_[], dgg)) -> new_esEs15(yvy20, yvy15, dgg) 41.28/18.86 new_lt20(yvy79000, yvy80000, app(app(ty_@2, dd), de)) -> new_lt13(yvy79000, yvy80000, dd, de) 41.28/18.86 new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare18(yvy7900, yvy8000)) 41.28/18.86 new_esEs24(yvy79000, yvy80000, app(app(ty_@2, dcg), dch)) -> new_esEs4(yvy79000, yvy80000, dcg, dch) 41.28/18.86 new_lt18(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 41.28/18.86 new_compare28(yvy79000, yvy80000, False, gg) -> new_compare113(yvy79000, yvy80000, new_ltEs17(yvy79000, yvy80000, gg), gg) 41.28/18.86 new_lt18(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 41.28/18.86 new_esEs8(EQ, EQ) -> True 41.28/18.86 new_ltEs11(yvy7900, yvy8000, df) -> new_fsEs(new_compare3(yvy7900, yvy8000, df)) 41.28/18.86 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.86 new_esEs20(yvy4002, yvy3002, app(ty_Ratio, dce)) -> new_esEs17(yvy4002, yvy3002, dce) 41.28/18.86 new_ltEs20(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(app(ty_@2, cce), ccf)) -> new_esEs4(yvy4000, yvy3000, cce, ccf) 41.28/18.86 new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.86 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.86 new_compare13(yvy79000, yvy80000, fa, fb, fc) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, fa, fb, fc), fa, fb, fc) 41.28/18.86 new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bah), bba)) -> new_ltEs12(yvy79000, yvy80000, bah, bba) 41.28/18.86 new_not(True) -> False 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.86 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.86 new_compare210(Left(yvy7900), Right(yvy8000), False, bdd, bde) -> LT 41.28/18.86 new_lt18(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 41.28/18.86 new_compare14(yvy79000, yvy80000, ty_Ordering) -> new_compare25(yvy79000, yvy80000) 41.28/18.86 new_compare24(yvy79000, yvy80000, False) -> new_compare11(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000)) 41.28/18.86 new_primCompAux00(yvy260, LT) -> LT 41.28/18.86 new_primCmpNat0(Zero, Zero) -> EQ 41.28/18.86 new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs6(yvy4000, yvy3000, bce, bcf, bcg) 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Integer, beb) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.86 new_esEs28(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 41.28/18.86 new_esEs36(yvy400, yvy300, app(ty_[], cc)) -> new_esEs15(yvy400, yvy300, cc) 41.28/18.86 new_compare11(yvy79000, yvy80000, False) -> GT 41.28/18.86 new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 41.28/18.86 new_esEs21(yvy4000, yvy3000, app(ty_Ratio, bch)) -> new_esEs17(yvy4000, yvy3000, bch) 41.28/18.86 new_esEs20(yvy4002, yvy3002, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs6(yvy4002, yvy3002, dcb, dcc, dcd) 41.28/18.86 new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(ty_[], ccg)) -> new_esEs15(yvy4000, yvy3000, ccg) 41.28/18.86 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Char, beb) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.86 new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 41.28/18.86 new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.86 new_esEs19(yvy4001, yvy3001, app(app(ty_@2, dac), dad)) -> new_esEs4(yvy4001, yvy3001, dac, dad) 41.28/18.86 new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) 41.28/18.86 new_lt18(yvy79000, yvy80000, app(app(ty_Either, ddb), ddc)) -> new_lt17(yvy79000, yvy80000, ddb, ddc) 41.28/18.86 new_esEs36(yvy400, yvy300, app(app(app(ty_@3, cf), cg), da)) -> new_esEs6(yvy400, yvy300, cf, cg, da) 41.28/18.86 new_primEqNat0(Succ(yvy40000), Zero) -> False 41.28/18.86 new_primEqNat0(Zero, Succ(yvy30000)) -> False 41.28/18.86 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_[], cbd), cba) -> new_esEs15(yvy4000, yvy3000, cbd) 41.28/18.86 new_esEs14(@0, @0) -> True 41.28/18.86 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.86 new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 41.28/18.86 new_compare10(yvy79000, yvy80000, True, dd, de) -> LT 41.28/18.86 new_ltEs18(yvy7900, yvy8000, app(ty_[], df)) -> new_ltEs11(yvy7900, yvy8000, df) 41.28/18.86 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.86 new_primCompAux00(yvy260, GT) -> GT 41.28/18.86 new_compare28(yvy79000, yvy80000, True, gg) -> EQ 41.28/18.86 new_esEs25(yvy79001, yvy80001, ty_Double) -> new_esEs13(yvy79001, yvy80001) 41.28/18.86 new_ltEs21(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) 41.28/18.86 new_primCmpNat2(Zero, yvy7900) -> LT 41.28/18.86 new_esEs20(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) 41.28/18.86 new_esEs25(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) 41.28/18.86 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_@0) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.86 new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 41.28/18.86 new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT 41.28/18.86 new_ltEs20(yvy79002, yvy80002, app(app(ty_@2, dfc), dfd)) -> new_ltEs4(yvy79002, yvy80002, dfc, dfd) 41.28/18.86 new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 41.28/18.86 new_esEs20(yvy4002, yvy3002, app(app(ty_@2, dbe), dbf)) -> new_esEs4(yvy4002, yvy3002, dbe, dbf) 41.28/18.86 new_ltEs18(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, ty_Int) -> new_ltEs7(yvy79001, yvy80001) 41.28/18.87 new_compare3(:(yvy79000, yvy79001), :(yvy80000, yvy80001), df) -> new_primCompAux0(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, df), df) 41.28/18.87 new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs13(yvy35, yvy30) 41.28/18.87 new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 41.28/18.87 new_ltEs5(LT, GT) -> True 41.28/18.87 new_ltEs18(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 41.28/18.87 new_primPlusNat1(Succ(yvy20100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20100, yvy3000000))) 41.28/18.87 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.87 new_gt2(yvy35, yvy30, bf, bg) -> new_esEs8(new_compare30(yvy35, yvy30, bf, bg), GT) 41.28/18.87 new_esEs31(yvy35, yvy30, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs6(yvy35, yvy30, gb, gc, gd) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs9(yvy79000, yvy80000, bbb, bbc, bbd) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.87 new_primCmpNat0(Zero, Succ(yvy80000)) -> LT 41.28/18.87 new_ltEs20(yvy79002, yvy80002, ty_Bool) -> new_ltEs8(yvy79002, yvy80002) 41.28/18.87 new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs6(yvy4001, yvy3001, dah, dba, dbb) 41.28/18.87 new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 41.28/18.87 new_esEs36(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, bef), beg)) -> new_ltEs4(yvy7900, yvy8000, bef, beg) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(ty_Maybe, cdf)) -> new_esEs7(yvy4000, yvy3000, cdf) 41.28/18.87 new_compare110(yvy79000, yvy80000, False, fa, fb, fc) -> GT 41.28/18.87 new_primCmpNat0(Succ(yvy79000), Zero) -> GT 41.28/18.87 new_pePe(False, yvy255) -> yvy255 41.28/18.87 new_ltEs17(Nothing, Nothing, bad) -> True 41.28/18.87 new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 41.28/18.87 new_compare3([], :(yvy80000, yvy80001), df) -> LT 41.28/18.87 new_esEs35(yvy400, yvy300, app(ty_Maybe, gh)) -> new_esEs7(yvy400, yvy300, gh) 41.28/18.87 new_esEs7(Nothing, Just(yvy3000), gh) -> False 41.28/18.87 new_esEs7(Just(yvy4000), Nothing, gh) -> False 41.28/18.87 new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 41.28/18.87 new_compare27(yvy79000, yvy80000, False, fa, fb, fc) -> new_compare110(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, fa, fb, fc), fa, fb, fc) 41.28/18.87 new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 41.28/18.87 new_ltEs17(Nothing, Just(yvy80000), bad) -> True 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Float) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.87 new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 41.28/18.87 new_ltEs17(Just(yvy79000), Nothing, bad) -> False 41.28/18.87 new_esEs35(yvy400, yvy300, ty_Bool) -> new_esEs12(yvy400, yvy300) 41.28/18.87 new_esEs12(False, False) -> True 41.28/18.87 new_ltEs20(yvy79002, yvy80002, app(ty_Maybe, dgd)) -> new_ltEs17(yvy79002, yvy80002, dgd) 41.28/18.87 new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 41.28/18.87 new_compare114(yvy227, yvy228, True, bdb, bdc) -> LT 41.28/18.87 new_esEs35(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) 41.28/18.87 new_primCmpNat1(yvy7900, Zero) -> GT 41.28/18.87 new_compare112(yvy234, yvy235, True, cgd, cge) -> LT 41.28/18.87 new_compare14(yvy79000, yvy80000, ty_Char) -> new_compare8(yvy79000, yvy80000) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, hd), he)) -> new_esEs5(yvy4000, yvy3000, hd, he) 41.28/18.87 new_lt18(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 41.28/18.87 new_lt15(yvy79000, yvy80000) -> new_esEs8(new_compare25(yvy79000, yvy80000), LT) 41.28/18.87 new_esEs25(yvy79001, yvy80001, ty_Integer) -> new_esEs10(yvy79001, yvy80001) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs9(yvy79000, yvy80000, cfg, cfh, cga) 41.28/18.87 new_compare23(yvy79000, yvy80000, False, dd, de) -> new_compare10(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000, dd, de), dd, de) 41.28/18.87 new_gt1(yvy400, yvy300, h, ba) -> new_esEs8(new_compare33(yvy400, yvy300, h, ba), GT) 41.28/18.87 new_esEs25(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_[], ceh), beb) -> new_ltEs11(yvy79000, yvy80000, ceh) 41.28/18.87 new_esEs25(yvy79001, yvy80001, app(ty_[], dfa)) -> new_esEs15(yvy79001, yvy80001, dfa) 41.28/18.87 new_compare113(yvy79000, yvy80000, True, gg) -> LT 41.28/18.87 new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 41.28/18.87 new_ltEs7(yvy7900, yvy8000) -> new_fsEs(new_compare7(yvy7900, yvy8000)) 41.28/18.87 new_lt20(yvy79000, yvy80000, app(ty_[], cdg)) -> new_lt11(yvy79000, yvy80000, cdg) 41.28/18.87 new_compare23(yvy79000, yvy80000, True, dd, de) -> EQ 41.28/18.87 new_esEs8(LT, EQ) -> False 41.28/18.87 new_esEs8(EQ, LT) -> False 41.28/18.87 new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cbb), cbc), cba) -> new_esEs4(yvy4000, yvy3000, cbb, cbc) 41.28/18.87 new_esEs21(yvy4000, yvy3000, app(app(ty_@2, bbh), bca)) -> new_esEs4(yvy4000, yvy3000, bbh, bca) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, app(app(app(ty_@3, ead), eae), eaf)) -> new_ltEs9(yvy79001, yvy80001, ead, eae, eaf) 41.28/18.87 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 41.28/18.87 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 41.28/18.87 new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs6(yvy20, yvy15, dhb, dhc, dhd) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(app(ty_@2, cfb), cfc)) -> new_ltEs4(yvy79000, yvy80000, cfb, cfc) 41.28/18.87 new_esEs7(Nothing, Nothing, gh) -> True 41.28/18.87 new_esEs13(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 41.28/18.87 new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 41.28/18.87 new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.87 new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt9(yvy79001, yvy80001) 41.28/18.87 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, bhe)) -> new_esEs17(yvy4000, yvy3000, bhe) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Int) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.87 new_esEs25(yvy79001, yvy80001, app(app(ty_@2, dea), deb)) -> new_esEs4(yvy79001, yvy80001, dea, deb) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_Either, cec), ced), beb) -> new_ltEs12(yvy79000, yvy80000, cec, ced) 41.28/18.87 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare7(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) 41.28/18.87 new_esEs35(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, app(app(ty_Either, bea), beb)) -> new_ltEs12(yvy7900, yvy8000, bea, beb) 41.28/18.87 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.87 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.87 new_esEs24(yvy79000, yvy80000, app(app(ty_Either, ddb), ddc)) -> new_esEs5(yvy79000, yvy80000, ddb, ddc) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, bfg)) -> new_ltEs17(yvy7900, yvy8000, bfg) 41.28/18.87 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.87 new_esEs25(yvy79001, yvy80001, ty_Ordering) -> new_esEs8(yvy79001, yvy80001) 41.28/18.87 new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs14(yvy35, yvy30) 41.28/18.87 new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT 41.28/18.87 new_compare114(yvy227, yvy228, False, bdb, bdc) -> GT 41.28/18.87 new_esEs20(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) 41.28/18.87 new_ltEs20(yvy79002, yvy80002, ty_@0) -> new_ltEs16(yvy79002, yvy80002) 41.28/18.87 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.87 new_esEs25(yvy79001, yvy80001, app(ty_Maybe, dfb)) -> new_esEs7(yvy79001, yvy80001, dfb) 41.28/18.87 new_ltEs8(True, False) -> False 41.28/18.87 new_esEs15([], [], bbg) -> True 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Bool, beb) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.87 new_esEs32(yvy20, yvy15, app(app(ty_Either, dgh), dha)) -> new_esEs5(yvy20, yvy15, dgh, dha) 41.28/18.87 new_esEs36(yvy400, yvy300, app(app(ty_@2, ca), cb)) -> new_esEs4(yvy400, yvy300, ca, cb) 41.28/18.87 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.87 new_esEs24(yvy79000, yvy80000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs6(yvy79000, yvy80000, ddd, dde, ddf) 41.28/18.87 new_lt4(yvy240, yvy239) -> new_esEs8(new_compare7(yvy240, yvy239), LT) 41.28/18.87 new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt10(yvy79001, yvy80001) 41.28/18.87 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 41.28/18.87 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 41.28/18.87 new_ltEs8(False, False) -> True 41.28/18.87 new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, hf), hg), hh)) -> new_esEs6(yvy4000, yvy3000, hf, hg, hh) 41.28/18.87 new_compare14(yvy79000, yvy80000, app(app(ty_@2, dg), dh)) -> new_compare16(yvy79000, yvy80000, dg, dh) 41.28/18.87 new_esEs36(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) 41.28/18.87 new_lt18(yvy79000, yvy80000, app(ty_Ratio, dda)) -> new_lt14(yvy79000, yvy80000, dda) 41.28/18.87 new_ltEs5(EQ, EQ) -> True 41.28/18.87 new_ltEs18(yvy7900, yvy8000, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs9(yvy7900, yvy8000, bec, bed, bee) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_Either, cbe), cbf), cba) -> new_esEs5(yvy4000, yvy3000, cbe, cbf) 41.28/18.87 new_compare27(yvy79000, yvy80000, True, fa, fb, fc) -> EQ 41.28/18.87 new_lt19(yvy79001, yvy80001, app(ty_[], dfa)) -> new_lt11(yvy79001, yvy80001, dfa) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Bool, cba) -> new_esEs12(yvy4000, yvy3000) 41.28/18.87 new_compare15(yvy79000, yvy80000) -> new_compare29(yvy79000, yvy80000, new_esEs12(yvy79000, yvy80000)) 41.28/18.87 new_esEs21(yvy4000, yvy3000, app(app(ty_Either, bcc), bcd)) -> new_esEs5(yvy4000, yvy3000, bcc, bcd) 41.28/18.87 new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.87 new_compare7(yvy79, yvy80) -> new_primCmpInt(yvy79, yvy80) 41.28/18.87 new_esEs35(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) 41.28/18.87 new_esEs8(LT, LT) -> True 41.28/18.87 new_esEs35(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) 41.28/18.87 new_compare111(yvy79000, yvy80000, True) -> LT 41.28/18.87 new_esEs28(yvy79000, yvy80000, app(ty_[], cdg)) -> new_esEs15(yvy79000, yvy80000, cdg) 41.28/18.87 new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 41.28/18.87 new_lt18(yvy79000, yvy80000, app(ty_[], ddg)) -> new_lt11(yvy79000, yvy80000, ddg) 41.28/18.87 new_lt6(yvy79000, yvy80000, gg) -> new_esEs8(new_compare12(yvy79000, yvy80000, gg), LT) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.87 new_esEs24(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs9(yvy7900, yvy8000, bfc, bfd, bfe) 41.28/18.87 new_primPlusNat1(Succ(yvy20100), Zero) -> Succ(yvy20100) 41.28/18.87 new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, ha), hb)) -> new_esEs4(yvy4000, yvy3000, ha, hb) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Maybe, bbf)) -> new_ltEs17(yvy79000, yvy80000, bbf) 41.28/18.87 new_compare14(yvy79000, yvy80000, app(app(ty_Either, eb), ec)) -> new_compare19(yvy79000, yvy80000, eb, ec) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, ty_Double) -> new_ltEs14(yvy79001, yvy80001) 41.28/18.87 new_esEs35(yvy400, yvy300, app(app(ty_@2, bgc), bgd)) -> new_esEs4(yvy400, yvy300, bgc, bgd) 41.28/18.87 new_compare14(yvy79000, yvy80000, ty_Integer) -> new_compare26(yvy79000, yvy80000) 41.28/18.87 new_esEs24(yvy79000, yvy80000, app(ty_Maybe, ddh)) -> new_esEs7(yvy79000, yvy80000, ddh) 41.28/18.87 new_esEs25(yvy79001, yvy80001, ty_Bool) -> new_esEs12(yvy79001, yvy80001) 41.28/18.87 new_esEs24(yvy79000, yvy80000, app(ty_Ratio, dda)) -> new_esEs17(yvy79000, yvy80000, dda) 41.28/18.87 new_esEs36(yvy400, yvy300, app(ty_Ratio, db)) -> new_esEs17(yvy400, yvy300, db) 41.28/18.87 new_esEs24(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.87 new_ltEs5(LT, LT) -> True 41.28/18.87 new_ltEs20(yvy79002, yvy80002, ty_Double) -> new_ltEs14(yvy79002, yvy80002) 41.28/18.87 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.87 new_esEs35(yvy400, yvy300, app(ty_Ratio, bgb)) -> new_esEs17(yvy400, yvy300, bgb) 41.28/18.87 new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs9(yvy20, yvy15) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Integer, cba) -> new_esEs10(yvy4000, yvy3000) 41.28/18.87 new_ltEs5(LT, EQ) -> True 41.28/18.87 new_esEs36(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 41.28/18.87 new_compare14(yvy79000, yvy80000, ty_Double) -> new_compare18(yvy79000, yvy80000) 41.28/18.87 new_compare14(yvy79000, yvy80000, ty_@0) -> new_compare9(yvy79000, yvy80000) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, app(ty_Maybe, eah)) -> new_ltEs17(yvy79001, yvy80001, eah) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.87 new_esEs36(yvy400, yvy300, ty_Bool) -> new_esEs12(yvy400, yvy300) 41.28/18.87 new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.87 new_esEs36(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) 41.28/18.87 new_ltEs8(False, True) -> True 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, baa)) -> new_esEs17(yvy4000, yvy3000, baa) 41.28/18.87 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.87 new_compare14(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) 41.28/18.87 new_esEs27(yvy4001, yvy3001, app(ty_[], caa)) -> new_esEs15(yvy4001, yvy3001, caa) 41.28/18.87 new_ltEs6(yvy7900, yvy8000) -> new_fsEs(new_compare8(yvy7900, yvy8000)) 41.28/18.87 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.87 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.87 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(app(ty_Either, cfe), cff)) -> new_ltEs12(yvy79000, yvy80000, cfe, cff) 41.28/18.87 new_ltEs20(yvy79002, yvy80002, app(app(app(ty_@3, dfh), dga), dgb)) -> new_ltEs9(yvy79002, yvy80002, dfh, dga, dgb) 41.28/18.87 new_esEs19(yvy4001, yvy3001, app(app(ty_Either, daf), dag)) -> new_esEs5(yvy4001, yvy3001, daf, dag) 41.28/18.87 new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt12(yvy79001, yvy80001) 41.28/18.87 new_esEs27(yvy4001, yvy3001, app(ty_Ratio, cag)) -> new_esEs17(yvy4001, yvy3001, cag) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Double, beb) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs6(yvy4000, yvy3000, cdb, cdc, cdd) 41.28/18.87 new_esEs28(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 41.28/18.87 new_ltEs12(Right(yvy79000), Left(yvy80000), bea, beb) -> False 41.28/18.87 new_esEs24(yvy79000, yvy80000, app(ty_[], ddg)) -> new_esEs15(yvy79000, yvy80000, ddg) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Ratio, ccb), cba) -> new_esEs17(yvy4000, yvy3000, ccb) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(ty_Ratio, cde)) -> new_esEs17(yvy4000, yvy3000, cde) 41.28/18.87 new_esEs17(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bgb) -> new_asAs(new_esEs22(yvy4000, yvy3000, bgb), new_esEs23(yvy4001, yvy3001, bgb)) 41.28/18.87 new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 41.28/18.87 new_compare210(Left(yvy7900), Left(yvy8000), False, bdd, bde) -> new_compare114(yvy7900, yvy8000, new_ltEs18(yvy7900, yvy8000, bdd), bdd, bde) 41.28/18.87 new_sr0(Integer(yvy800000), Integer(yvy790010)) -> Integer(new_primMulInt(yvy800000, yvy790010)) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, cee), cef), ceg), beb) -> new_ltEs9(yvy79000, yvy80000, cee, cef, ceg) 41.28/18.87 new_esEs28(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 41.28/18.87 new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs6(yvy4001, yvy3001, cad, cae, caf) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.87 new_esEs28(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, app(ty_Ratio, eaa)) -> new_ltEs13(yvy79001, yvy80001, eaa) 41.28/18.87 new_lt9(yvy79000, yvy80000) -> new_esEs8(new_compare8(yvy79000, yvy80000), LT) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, ty_@0) -> new_ltEs16(yvy79001, yvy80001) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.87 new_esEs20(yvy4002, yvy3002, ty_Int) -> new_esEs9(yvy4002, yvy3002) 41.28/18.87 new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.87 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.87 new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs12(yvy20, yvy15) 41.28/18.87 new_esEs25(yvy79001, yvy80001, ty_Int) -> new_esEs9(yvy79001, yvy80001) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, app(app(ty_Either, eab), eac)) -> new_ltEs12(yvy79001, yvy80001, eab, eac) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.87 new_lt5(yvy79000, yvy80000) -> new_esEs8(new_compare9(yvy79000, yvy80000), LT) 41.28/18.87 new_asAs(True, yvy222) -> yvy222 41.28/18.87 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 41.28/18.87 new_compare10(yvy79000, yvy80000, False, dd, de) -> GT 41.28/18.87 new_ltEs5(GT, LT) -> False 41.28/18.87 new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), bec, bed, bee) -> new_pePe(new_lt18(yvy79000, yvy80000, bec), new_asAs(new_esEs24(yvy79000, yvy80000, bec), new_pePe(new_lt19(yvy79001, yvy80001, bed), new_asAs(new_esEs25(yvy79001, yvy80001, bed), new_ltEs20(yvy79002, yvy80002, bee))))) 41.28/18.87 new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.87 new_esEs24(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 41.28/18.87 new_compare14(yvy79000, yvy80000, ty_Int) -> new_compare7(yvy79000, yvy80000) 41.28/18.87 new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.87 new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, fa), fb), fc)) -> new_lt7(yvy79000, yvy80000, fa, fb, fc) 41.28/18.87 new_esEs36(yvy400, yvy300, app(ty_Maybe, dc)) -> new_esEs7(yvy400, yvy300, dc) 41.28/18.87 new_esEs20(yvy4002, yvy3002, app(ty_[], dbg)) -> new_esEs15(yvy4002, yvy3002, dbg) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.87 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.87 new_lt10(yvy79000, yvy80000) -> new_esEs8(new_compare18(yvy79000, yvy80000), LT) 41.28/18.87 new_esEs24(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 41.28/18.87 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.87 new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) 41.28/18.87 new_ltEs8(True, True) -> True 41.28/18.87 new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat1(yvy7900, yvy800) 41.28/18.87 new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs9(yvy35, yvy30) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_@2, cdh), cea), beb) -> new_ltEs4(yvy79000, yvy80000, cdh, cea) 41.28/18.87 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare26(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) 41.28/18.87 new_compare8(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.87 new_esEs35(yvy400, yvy300, app(app(ty_Either, ccd), cba)) -> new_esEs5(yvy400, yvy300, ccd, cba) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Ordering, beb) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.87 new_primCompAux00(yvy260, EQ) -> yvy260 41.28/18.87 new_esEs12(False, True) -> False 41.28/18.87 new_esEs12(True, False) -> False 41.28/18.87 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.87 new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt15(yvy79001, yvy80001) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Float, cba) -> new_esEs16(yvy4000, yvy3000) 41.28/18.87 new_primMulNat0(Zero, Zero) -> Zero 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Double, cba) -> new_esEs13(yvy4000, yvy3000) 41.28/18.87 new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, def), deg), deh)) -> new_lt7(yvy79001, yvy80001, def, deg, deh) 41.28/18.87 new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) 41.28/18.87 new_esEs12(True, True) -> True 41.28/18.87 new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.87 new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.87 new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Int, cba) -> new_esEs9(yvy4000, yvy3000) 41.28/18.87 new_compare111(yvy79000, yvy80000, False) -> GT 41.28/18.87 new_esEs31(yvy35, yvy30, app(ty_Maybe, gf)) -> new_esEs7(yvy35, yvy30, gf) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_@0, beb) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.87 new_compare9(@0, @0) -> EQ 41.28/18.87 new_esEs15(:(yvy4000, yvy4001), [], bbg) -> False 41.28/18.87 new_esEs15([], :(yvy3000, yvy3001), bbg) -> False 41.28/18.87 new_esEs20(yvy4002, yvy3002, app(app(ty_Either, dbh), dca)) -> new_esEs5(yvy4002, yvy3002, dbh, dca) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, beh)) -> new_ltEs13(yvy7900, yvy8000, beh) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(app(ty_Either, cch), cda)) -> new_esEs5(yvy4000, yvy3000, cch, cda) 41.28/18.87 new_esEs24(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 41.28/18.87 new_ltEs5(EQ, LT) -> False 41.28/18.87 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, bfa), bfb)) -> new_ltEs12(yvy7900, yvy8000, bfa, bfb) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.87 new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.87 new_esEs35(yvy400, yvy300, app(ty_[], bbg)) -> new_esEs15(yvy400, yvy300, bbg) 41.28/18.87 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], hc)) -> new_esEs15(yvy4000, yvy3000, hc) 41.28/18.87 new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(ty_Maybe, cgc)) -> new_ltEs17(yvy79000, yvy80000, cgc) 41.28/18.87 new_primCompAux0(yvy79000, yvy80000, yvy256, df) -> new_primCompAux00(yvy256, new_compare14(yvy79000, yvy80000, df)) 41.28/18.87 new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.87 new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.87 new_lt17(yvy79000, yvy80000, bfh, bga) -> new_esEs8(new_compare19(yvy79000, yvy80000, bfh, bga), LT) 41.28/18.87 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 41.28/18.87 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 41.28/18.87 new_esEs24(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 41.28/18.87 new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt8(yvy79001, yvy80001) 41.28/18.87 new_ltEs20(yvy79002, yvy80002, app(app(ty_Either, dff), dfg)) -> new_ltEs12(yvy79002, yvy80002, dff, dfg) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Char) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.87 new_lt19(yvy79001, yvy80001, app(ty_Ratio, dec)) -> new_lt14(yvy79001, yvy80001, dec) 41.28/18.87 new_ltEs20(yvy79002, yvy80002, app(ty_Ratio, dfe)) -> new_ltEs13(yvy79002, yvy80002, dfe) 41.28/18.87 new_esEs20(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 41.28/18.87 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 41.28/18.87 new_esEs20(yvy4002, yvy3002, ty_Double) -> new_esEs13(yvy4002, yvy3002) 41.28/18.87 new_esEs21(yvy4000, yvy3000, app(ty_Maybe, bda)) -> new_esEs7(yvy4000, yvy3000, bda) 41.28/18.87 new_esEs32(yvy20, yvy15, app(app(ty_@2, dge), dgf)) -> new_esEs4(yvy20, yvy15, dge, dgf) 41.28/18.87 new_esEs36(yvy400, yvy300, app(app(ty_Either, cd), ce)) -> new_esEs5(yvy400, yvy300, cd, ce) 41.28/18.87 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, bge), bgf)) -> new_esEs4(yvy4000, yvy3000, bge, bgf) 41.28/18.87 new_compare14(yvy79000, yvy80000, app(ty_Ratio, ea)) -> new_compare17(yvy79000, yvy80000, ea) 41.28/18.87 new_compare24(yvy79000, yvy80000, True) -> EQ 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, app(ty_Maybe, bad)) -> new_ltEs17(yvy7900, yvy8000, bad) 41.28/18.87 new_esEs18(yvy4000, yvy3000, app(ty_[], chc)) -> new_esEs15(yvy4000, yvy3000, chc) 41.28/18.87 new_esEs25(yvy79001, yvy80001, app(app(ty_Either, ded), dee)) -> new_esEs5(yvy79001, yvy80001, ded, dee) 41.28/18.87 new_lt18(yvy79000, yvy80000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_lt7(yvy79000, yvy80000, ddd, dde, ddf) 41.28/18.87 new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 41.28/18.87 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.87 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 41.28/18.87 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 41.28/18.87 new_lt20(yvy79000, yvy80000, app(ty_Ratio, bac)) -> new_lt14(yvy79000, yvy80000, bac) 41.28/18.87 new_gt0(yvy400, yvy300, h, ba) -> new_esEs8(new_compare32(yvy400, yvy300, h, ba), GT) 41.28/18.87 new_esEs32(yvy20, yvy15, app(ty_Maybe, dhf)) -> new_esEs7(yvy20, yvy15, dhf) 41.28/18.87 new_esEs31(yvy35, yvy30, app(app(ty_Either, fh), ga)) -> new_esEs5(yvy35, yvy30, fh, ga) 41.28/18.87 new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(ty_[], cgb)) -> new_ltEs11(yvy79000, yvy80000, cgb) 41.28/18.87 new_esEs35(yvy400, yvy300, ty_Int) -> new_esEs9(yvy400, yvy300) 41.28/18.87 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, bhf)) -> new_esEs7(yvy4000, yvy3000, bhf) 41.28/18.87 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Maybe, cfa), beb) -> new_ltEs17(yvy79000, yvy80000, cfa) 41.28/18.87 new_lt18(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 41.28/18.87 new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 41.28/18.87 new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) 41.28/18.87 new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt5(yvy79001, yvy80001) 41.28/18.87 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, bgh), bha)) -> new_esEs5(yvy4000, yvy3000, bgh, bha) 41.28/18.87 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat1(yvy8000, Zero) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cbg), cbh), cca), cba) -> new_esEs6(yvy4000, yvy3000, cbg, cbh, cca) 41.28/18.87 new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) 41.28/18.87 new_lt18(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 41.28/18.87 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.87 new_compare110(yvy79000, yvy80000, True, fa, fb, fc) -> LT 41.28/18.87 new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) 41.28/18.87 new_compare14(yvy79000, yvy80000, app(app(app(ty_@3, ed), ee), ef)) -> new_compare13(yvy79000, yvy80000, ed, ee, ef) 41.28/18.87 new_esEs15(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bbg) -> new_asAs(new_esEs21(yvy4000, yvy3000, bbg), new_esEs15(yvy4001, yvy3001, bbg)) 41.28/18.87 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs6(yvy4000, yvy3000, bhb, bhc, bhd) 41.28/18.87 new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 41.28/18.87 new_esEs35(yvy400, yvy300, ty_Double) -> new_esEs13(yvy400, yvy300) 41.28/18.87 new_esEs27(yvy4001, yvy3001, app(ty_Maybe, cah)) -> new_esEs7(yvy4001, yvy3001, cah) 41.28/18.87 new_compare12(yvy79000, yvy80000, gg) -> new_compare28(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, gg), gg) 41.28/18.87 new_compare112(yvy234, yvy235, False, cgd, cge) -> GT 41.28/18.87 new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs6(yvy4000, yvy3000, chf, chg, chh) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Maybe, ccc), cba) -> new_esEs7(yvy4000, yvy3000, ccc) 41.28/18.87 new_ltEs5(EQ, GT) -> True 41.28/18.87 new_esEs31(yvy35, yvy30, app(app(ty_@2, fd), ff)) -> new_esEs4(yvy35, yvy30, fd, ff) 41.28/18.87 new_esEs35(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Float, beb) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.87 new_ltEs20(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) 41.28/18.87 new_not(False) -> True 41.28/18.87 new_esEs28(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 41.28/18.87 new_esEs18(yvy4000, yvy3000, app(app(ty_Either, chd), che)) -> new_esEs5(yvy4000, yvy3000, chd, che) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.87 new_compare25(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs8(yvy79000, yvy80000)) 41.28/18.87 new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs8(yvy35, yvy30) 41.28/18.87 new_ltEs13(yvy7900, yvy8000, bdh) -> new_fsEs(new_compare17(yvy7900, yvy8000, bdh)) 41.28/18.87 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bgc, bgd) -> new_asAs(new_esEs26(yvy4000, yvy3000, bgc), new_esEs27(yvy4001, yvy3001, bgd)) 41.28/18.87 new_esEs25(yvy79001, yvy80001, ty_@0) -> new_esEs14(yvy79001, yvy80001) 41.28/18.87 new_esEs20(yvy4002, yvy3002, app(ty_Maybe, dcf)) -> new_esEs7(yvy4002, yvy3002, dcf) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bae), baf)) -> new_ltEs4(yvy79000, yvy80000, bae, baf) 41.28/18.87 new_ltEs5(GT, GT) -> True 41.28/18.87 new_esEs8(LT, GT) -> False 41.28/18.87 new_esEs8(GT, LT) -> False 41.28/18.87 new_compare29(yvy79000, yvy80000, True) -> EQ 41.28/18.87 new_esEs31(yvy35, yvy30, app(ty_[], fg)) -> new_esEs15(yvy35, yvy30, fg) 41.28/18.87 new_esEs32(yvy20, yvy15, app(ty_Ratio, dhe)) -> new_esEs17(yvy20, yvy15, dhe) 41.28/18.87 new_esEs5(Left(yvy4000), Right(yvy3000), ccd, cba) -> False 41.28/18.87 new_esEs5(Right(yvy4000), Left(yvy3000), ccd, cba) -> False 41.28/18.87 new_esEs20(yvy4002, yvy3002, ty_Bool) -> new_esEs12(yvy4002, yvy3002) 41.28/18.87 new_lt19(yvy79001, yvy80001, app(ty_Maybe, dfb)) -> new_lt6(yvy79001, yvy80001, dfb) 41.28/18.87 new_lt13(yvy79000, yvy80000, dd, de) -> new_esEs8(new_compare16(yvy79000, yvy80000, dd, de), LT) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, ty_Ordering) -> new_ltEs5(yvy79001, yvy80001) 41.28/18.87 new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs10(yvy35, yvy30) 41.28/18.87 new_esEs19(yvy4001, yvy3001, app(ty_[], dae)) -> new_esEs15(yvy4001, yvy3001, dae) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, app(ty_Ratio, bdh)) -> new_ltEs13(yvy7900, yvy8000, bdh) 41.28/18.87 new_compare14(yvy79000, yvy80000, app(ty_Maybe, eh)) -> new_compare12(yvy79000, yvy80000, eh) 41.28/18.87 new_lt8(yvy79000, yvy80000) -> new_esEs8(new_compare26(yvy79000, yvy80000), LT) 41.28/18.87 new_compare113(yvy79000, yvy80000, False, gg) -> GT 41.28/18.87 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.87 new_primPlusNat0(Succ(yvy2010), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2010, yvy300000))) 41.28/18.87 new_lt14(yvy79000, yvy80000, bac) -> new_esEs8(new_compare17(yvy79000, yvy80000, bac), LT) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 41.28/18.87 new_esEs19(yvy4001, yvy3001, app(ty_Maybe, dbd)) -> new_esEs7(yvy4001, yvy3001, dbd) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 41.28/18.87 new_ltEs20(yvy79002, yvy80002, ty_Char) -> new_ltEs6(yvy79002, yvy80002) 41.28/18.87 new_esEs36(yvy400, yvy300, ty_Int) -> new_esEs9(yvy400, yvy300) 41.28/18.87 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 41.28/18.87 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 41.28/18.87 new_lt16(yvy79000, yvy80000) -> new_esEs8(new_compare15(yvy79000, yvy80000), LT) 41.28/18.87 new_lt12(yvy79000, yvy80000) -> new_esEs8(new_compare6(yvy79000, yvy80000), LT) 41.28/18.87 new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 41.28/18.87 new_primPlusNat1(Zero, Zero) -> Zero 41.28/18.87 new_esEs6(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cgf, cgg, cgh) -> new_asAs(new_esEs18(yvy4000, yvy3000, cgf), new_asAs(new_esEs19(yvy4001, yvy3001, cgg), new_esEs20(yvy4002, yvy3002, cgh))) 41.28/18.87 new_esEs20(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 41.28/18.87 new_ltEs20(yvy79002, yvy80002, ty_Int) -> new_ltEs7(yvy79002, yvy80002) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, app(app(ty_@2, dhg), dhh)) -> new_ltEs4(yvy79001, yvy80001, dhg, dhh) 41.28/18.87 new_esEs27(yvy4001, yvy3001, app(app(ty_@2, bhg), bhh)) -> new_esEs4(yvy4001, yvy3001, bhg, bhh) 41.28/18.87 new_lt18(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 41.28/18.87 new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 41.28/18.87 new_esEs28(yvy79000, yvy80000, app(ty_Ratio, bac)) -> new_esEs17(yvy79000, yvy80000, bac) 41.28/18.87 new_compare11(yvy79000, yvy80000, True) -> LT 41.28/18.87 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.87 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.87 new_ltEs4(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), bdf, bdg) -> new_pePe(new_lt20(yvy79000, yvy80000, bdf), new_asAs(new_esEs28(yvy79000, yvy80000, bdf), new_ltEs21(yvy79001, yvy80001, bdg))) 41.28/18.87 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 41.28/18.87 new_lt19(yvy79001, yvy80001, app(app(ty_@2, dea), deb)) -> new_lt13(yvy79001, yvy80001, dea, deb) 41.28/18.87 new_compare31(yvy20, yvy15, bc, bd) -> new_compare210(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, bc), bc, bd) 41.28/18.87 new_compare16(yvy79000, yvy80000, dd, de) -> new_compare23(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, dd, de), dd, de) 41.28/18.87 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 41.28/18.87 new_esEs28(yvy79000, yvy80000, app(app(ty_@2, dd), de)) -> new_esEs4(yvy79000, yvy80000, dd, de) 41.28/18.87 new_primCmpNat0(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.87 new_esEs20(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) 41.28/18.87 new_compare19(yvy79000, yvy80000, bfh, bga) -> new_compare210(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bfh, bga), bfh, bga) 41.28/18.87 new_compare30(yvy35, yvy30, bf, bg) -> new_compare210(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, bg), bf, bg) 41.28/18.87 new_compare3(:(yvy79000, yvy79001), [], df) -> GT 41.28/18.87 new_compare14(yvy79000, yvy80000, ty_Bool) -> new_compare15(yvy79000, yvy80000) 41.28/18.87 new_esEs28(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_[], bbe)) -> new_ltEs11(yvy79000, yvy80000, bbe) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), ty_@0, cba) -> new_esEs14(yvy4000, yvy3000) 41.28/18.87 new_compare26(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) 41.28/18.87 new_gt(yvy20, yvy15, bc, bd) -> new_esEs8(new_compare31(yvy20, yvy15, bc, bd), GT) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 41.28/18.87 new_compare32(yvy400, yvy300, h, ba) -> new_compare210(Left(yvy400), Right(yvy300), False, h, ba) 41.28/18.87 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 41.28/18.87 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 41.28/18.87 new_primCmpNat1(yvy7900, Succ(yvy8000)) -> new_primCmpNat0(yvy7900, yvy8000) 41.28/18.87 new_esEs18(yvy4000, yvy3000, app(ty_Maybe, dab)) -> new_esEs7(yvy4000, yvy3000, dab) 41.28/18.87 new_lt20(yvy79000, yvy80000, app(ty_Maybe, gg)) -> new_lt6(yvy79000, yvy80000, gg) 41.28/18.87 new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 41.28/18.87 new_primEqNat0(Zero, Zero) -> True 41.28/18.87 new_esEs28(yvy79000, yvy80000, app(app(ty_Either, bfh), bga)) -> new_esEs5(yvy79000, yvy80000, bfh, bga) 41.28/18.87 new_compare210(Right(yvy7900), Right(yvy8000), False, bdd, bde) -> new_compare112(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, bde), bdd, bde) 41.28/18.87 new_esEs21(yvy4000, yvy3000, app(ty_[], bcb)) -> new_esEs15(yvy4000, yvy3000, bcb) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.87 new_lt11(yvy79000, yvy80000, cdg) -> new_esEs8(new_compare3(yvy79000, yvy80000, cdg), LT) 41.28/18.87 new_esEs28(yvy79000, yvy80000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs6(yvy79000, yvy80000, fa, fb, fc) 41.28/18.87 new_compare29(yvy79000, yvy80000, False) -> new_compare111(yvy79000, yvy80000, new_ltEs8(yvy79000, yvy80000)) 41.28/18.87 new_compare33(yvy400, yvy300, h, ba) -> new_compare210(Right(yvy400), Left(yvy300), False, h, ba) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.87 new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.87 new_asAs(False, yvy222) -> False 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.87 new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 41.28/18.87 new_lt7(yvy79000, yvy80000, fa, fb, fc) -> new_esEs8(new_compare13(yvy79000, yvy80000, fa, fb, fc), LT) 41.28/18.87 new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs12(yvy35, yvy30) 41.28/18.87 new_ltEs5(GT, EQ) -> False 41.28/18.87 new_ltEs20(yvy79002, yvy80002, ty_Ordering) -> new_ltEs5(yvy79002, yvy80002) 41.28/18.87 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.87 new_esEs18(yvy4000, yvy3000, app(ty_Ratio, daa)) -> new_esEs17(yvy4000, yvy3000, daa) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, app(ty_[], eag)) -> new_ltEs11(yvy79001, yvy80001, eag) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Int, beb) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.87 new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 41.28/18.87 new_lt18(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 41.28/18.87 new_lt18(yvy79000, yvy80000, app(app(ty_@2, dcg), dch)) -> new_lt13(yvy79000, yvy80000, dcg, dch) 41.28/18.87 new_compare210(Right(yvy7900), Left(yvy8000), False, bdd, bde) -> GT 41.28/18.87 new_esEs8(EQ, GT) -> False 41.28/18.87 new_esEs8(GT, EQ) -> False 41.28/18.87 new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.87 new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat0(yvy8000, yvy7900) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 41.28/18.87 new_ltEs16(yvy7900, yvy8000) -> new_fsEs(new_compare9(yvy7900, yvy8000)) 41.28/18.87 41.28/18.87 The set Q consists of the following terms: 41.28/18.87 41.28/18.87 new_ltEs18(x0, x1, ty_Bool) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.87 new_ltEs21(x0, x1, ty_Ordering) 41.28/18.87 new_esEs31(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_esEs28(x0, x1, ty_Integer) 41.28/18.87 new_esEs8(EQ, EQ) 41.28/18.87 new_compare3(:(x0, x1), :(x2, x3), x4) 41.28/18.87 new_esEs21(x0, x1, ty_Int) 41.28/18.87 new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_ltEs20(x0, x1, ty_Char) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.87 new_ltEs17(Nothing, Nothing, x0) 41.28/18.87 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_esEs26(x0, x1, ty_Float) 41.28/18.87 new_esEs36(x0, x1, ty_Bool) 41.28/18.87 new_ltEs18(x0, x1, app(ty_[], x2)) 41.28/18.87 new_primMulInt(Neg(x0), Neg(x1)) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), ty_Char) 41.28/18.87 new_ltEs18(x0, x1, ty_@0) 41.28/18.87 new_ltEs21(x0, x1, ty_Double) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 41.28/18.87 new_compare28(x0, x1, False, x2) 41.28/18.87 new_primPlusNat1(Zero, Zero) 41.28/18.87 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_ltEs15(x0, x1) 41.28/18.87 new_ltEs12(Left(x0), Right(x1), x2, x3) 41.28/18.87 new_ltEs12(Right(x0), Left(x1), x2, x3) 41.28/18.87 new_esEs24(x0, x1, ty_Integer) 41.28/18.87 new_esEs25(x0, x1, ty_Float) 41.28/18.87 new_esEs18(x0, x1, ty_Integer) 41.28/18.87 new_compare14(x0, x1, ty_Ordering) 41.28/18.87 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 41.28/18.87 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.87 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 41.28/18.87 new_lt20(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_primCompAux00(x0, GT) 41.28/18.87 new_esEs36(x0, x1, ty_Integer) 41.28/18.87 new_esEs19(x0, x1, app(ty_[], x2)) 41.28/18.87 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_primEqInt(Pos(Zero), Pos(Zero)) 41.28/18.87 new_primMulInt(Pos(x0), Pos(x1)) 41.28/18.87 new_esEs25(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_esEs21(x0, x1, ty_Double) 41.28/18.87 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_esEs32(x0, x1, ty_Integer) 41.28/18.87 new_compare3([], [], x0) 41.28/18.87 new_compare29(x0, x1, False) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.87 new_esEs27(x0, x1, ty_Float) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), ty_Int) 41.28/18.87 new_primCmpNat0(Zero, Succ(x0)) 41.28/18.87 new_compare13(x0, x1, x2, x3, x4) 41.28/18.87 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), ty_@0) 41.28/18.87 new_esEs21(x0, x1, ty_Char) 41.28/18.87 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_lt17(x0, x1, x2, x3) 41.28/18.87 new_esEs32(x0, x1, ty_Float) 41.28/18.87 new_esEs32(x0, x1, app(ty_[], x2)) 41.28/18.87 new_ltEs21(x0, x1, ty_Int) 41.28/18.87 new_primEqInt(Neg(Zero), Neg(Zero)) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.87 new_primCmpNat0(Succ(x0), Succ(x1)) 41.28/18.87 new_compare11(x0, x1, False) 41.28/18.87 new_ltEs7(x0, x1) 41.28/18.87 new_primPlusNat0(Zero, x0) 41.28/18.87 new_esEs36(x0, x1, ty_@0) 41.28/18.87 new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.87 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.87 new_compare27(x0, x1, False, x2, x3, x4) 41.28/18.87 new_esEs28(x0, x1, ty_Bool) 41.28/18.87 new_sr(x0, x1) 41.28/18.87 new_esEs12(False, True) 41.28/18.87 new_esEs12(True, False) 41.28/18.87 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_ltEs20(x0, x1, ty_Double) 41.28/18.87 new_esEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_ltEs5(LT, GT) 41.28/18.87 new_ltEs5(GT, LT) 41.28/18.87 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.87 new_lt14(x0, x1, x2) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), ty_Bool) 41.28/18.87 new_lt19(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_compare33(x0, x1, x2, x3) 41.28/18.87 new_primCmpNat2(Succ(x0), x1) 41.28/18.87 new_ltEs20(x0, x1, ty_@0) 41.28/18.87 new_ltEs20(x0, x1, app(ty_[], x2)) 41.28/18.87 new_lt12(x0, x1) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 41.28/18.87 new_ltEs8(False, False) 41.28/18.87 new_esEs15([], [], x0) 41.28/18.87 new_primCmpNat2(Zero, x0) 41.28/18.87 new_esEs18(x0, x1, ty_@0) 41.28/18.87 new_compare26(Integer(x0), Integer(x1)) 41.28/18.87 new_primCompAux0(x0, x1, x2, x3) 41.28/18.87 new_esEs36(x0, x1, ty_Char) 41.28/18.87 new_esEs31(x0, x1, ty_Bool) 41.28/18.87 new_esEs19(x0, x1, ty_Integer) 41.28/18.87 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_ltEs21(x0, x1, ty_Char) 41.28/18.87 new_esEs18(x0, x1, ty_Bool) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), ty_Double) 41.28/18.87 new_compare14(x0, x1, app(ty_[], x2)) 41.28/18.87 new_compare14(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_esEs7(Just(x0), Just(x1), ty_@0) 41.28/18.87 new_compare10(x0, x1, True, x2, x3) 41.28/18.87 new_compare29(x0, x1, True) 41.28/18.87 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.87 new_ltEs20(x0, x1, ty_Bool) 41.28/18.87 new_esEs28(x0, x1, app(ty_[], x2)) 41.28/18.87 new_esEs7(Just(x0), Just(x1), ty_Bool) 41.28/18.87 new_esEs18(x0, x1, ty_Float) 41.28/18.87 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.87 new_lt10(x0, x1) 41.28/18.87 new_lt18(x0, x1, ty_Float) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 41.28/18.87 new_primEqInt(Pos(Zero), Neg(Zero)) 41.28/18.87 new_primEqInt(Neg(Zero), Pos(Zero)) 41.28/18.87 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_ltEs17(Just(x0), Nothing, x1) 41.28/18.87 new_esEs21(x0, x1, ty_Ordering) 41.28/18.87 new_ltEs20(x0, x1, ty_Int) 41.28/18.87 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 41.28/18.87 new_ltEs18(x0, x1, ty_Integer) 41.28/18.87 new_esEs31(x0, x1, ty_Double) 41.28/18.87 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.87 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.87 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_esEs7(Just(x0), Just(x1), ty_Int) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.87 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.87 new_esEs31(x0, x1, ty_Char) 41.28/18.87 new_lt20(x0, x1, ty_Double) 41.28/18.87 new_lt18(x0, x1, app(ty_[], x2)) 41.28/18.87 new_esEs31(x0, x1, ty_@0) 41.28/18.87 new_esEs25(x0, x1, ty_@0) 41.28/18.87 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_esEs7(Just(x0), Just(x1), ty_Char) 41.28/18.87 new_esEs28(x0, x1, ty_@0) 41.28/18.87 new_esEs31(x0, x1, ty_Int) 41.28/18.87 new_gt1(x0, x1, x2, x3) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.87 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.87 new_esEs7(Just(x0), Just(x1), ty_Double) 41.28/18.87 new_esEs7(Nothing, Just(x0), x1) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.87 new_ltEs21(x0, x1, app(ty_[], x2)) 41.28/18.87 new_esEs28(x0, x1, ty_Float) 41.28/18.87 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 41.28/18.87 new_primEqNat0(Succ(x0), Zero) 41.28/18.87 new_esEs28(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_esEs36(x0, x1, ty_Ordering) 41.28/18.87 new_compare14(x0, x1, ty_@0) 41.28/18.87 new_primMulNat0(Succ(x0), Succ(x1)) 41.28/18.87 new_compare23(x0, x1, False, x2, x3) 41.28/18.87 new_esEs20(x0, x1, ty_Float) 41.28/18.87 new_ltEs18(x0, x1, ty_Float) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 41.28/18.87 new_esEs28(x0, x1, ty_Int) 41.28/18.87 new_esEs35(x0, x1, ty_Ordering) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 41.28/18.87 new_ltEs21(x0, x1, ty_Bool) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.87 new_esEs22(x0, x1, ty_Integer) 41.28/18.87 new_ltEs19(x0, x1, ty_Ordering) 41.28/18.87 new_compare114(x0, x1, False, x2, x3) 41.28/18.87 new_esEs15(:(x0, x1), [], x2) 41.28/18.87 new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.87 new_gt0(x0, x1, x2, x3) 41.28/18.87 new_ltEs20(x0, x1, ty_Integer) 41.28/18.87 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_ltEs13(x0, x1, x2) 41.28/18.87 new_esEs28(x0, x1, ty_Char) 41.28/18.87 new_primEqNat0(Succ(x0), Succ(x1)) 41.28/18.87 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_esEs27(x0, x1, app(ty_[], x2)) 41.28/18.87 new_esEs36(x0, x1, ty_Double) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.87 new_esEs35(x0, x1, ty_Int) 41.28/18.87 new_lt20(x0, x1, ty_Float) 41.28/18.87 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_compare24(x0, x1, True) 41.28/18.87 new_esEs7(Just(x0), Just(x1), ty_Integer) 41.28/18.87 new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), ty_Integer) 41.28/18.87 new_ltEs18(x0, x1, ty_Int) 41.28/18.87 new_esEs21(x0, x1, ty_Bool) 41.28/18.87 new_primPlusNat0(Succ(x0), x1) 41.28/18.87 new_esEs25(x0, x1, ty_Bool) 41.28/18.87 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 41.28/18.87 new_esEs20(x0, x1, ty_Int) 41.28/18.87 new_ltEs5(EQ, GT) 41.28/18.87 new_ltEs5(GT, EQ) 41.28/18.87 new_esEs35(x0, x1, ty_Char) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_esEs7(Just(x0), Nothing, x1) 41.28/18.87 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_compare28(x0, x1, True, x2) 41.28/18.87 new_ltEs18(x0, x1, ty_Char) 41.28/18.87 new_esEs5(Left(x0), Right(x1), x2, x3) 41.28/18.87 new_esEs5(Right(x0), Left(x1), x2, x3) 41.28/18.87 new_esEs20(x0, x1, ty_Char) 41.28/18.87 new_primMulNat0(Succ(x0), Zero) 41.28/18.87 new_esEs20(x0, x1, app(ty_[], x2)) 41.28/18.87 new_esEs8(GT, GT) 41.28/18.87 new_sr0(Integer(x0), Integer(x1)) 41.28/18.87 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.87 new_esEs8(LT, EQ) 41.28/18.87 new_esEs8(EQ, LT) 41.28/18.87 new_ltEs19(x0, x1, ty_Float) 41.28/18.87 new_compare112(x0, x1, False, x2, x3) 41.28/18.87 new_esEs15(:(x0, x1), :(x2, x3), x4) 41.28/18.87 new_primCmpInt(Neg(Zero), Neg(Zero)) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), ty_Ordering) 41.28/18.87 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_esEs7(Just(x0), Just(x1), ty_Ordering) 41.28/18.87 new_compare25(x0, x1) 41.28/18.87 new_esEs8(LT, LT) 41.28/18.87 new_ltEs19(x0, x1, ty_Char) 41.28/18.87 new_primCmpInt(Pos(Zero), Neg(Zero)) 41.28/18.87 new_primCmpInt(Neg(Zero), Pos(Zero)) 41.28/18.87 new_esEs24(x0, x1, ty_Double) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 41.28/18.87 new_esEs31(x0, x1, ty_Ordering) 41.28/18.87 new_ltEs20(x0, x1, ty_Ordering) 41.28/18.87 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_esEs24(x0, x1, ty_@0) 41.28/18.87 new_compare11(x0, x1, True) 41.28/18.87 new_esEs32(x0, x1, ty_Int) 41.28/18.87 new_lt19(x0, x1, ty_Double) 41.28/18.87 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_compare10(x0, x1, False, x2, x3) 41.28/18.87 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_ltEs17(Nothing, Just(x0), x1) 41.28/18.87 new_ltEs8(True, False) 41.28/18.87 new_ltEs8(False, True) 41.28/18.87 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_ltEs19(x0, x1, ty_Int) 41.28/18.87 new_esEs25(x0, x1, ty_Integer) 41.28/18.87 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_lt8(x0, x1) 41.28/18.87 new_esEs31(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_esEs31(x0, x1, ty_Integer) 41.28/18.87 new_esEs27(x0, x1, ty_@0) 41.28/18.87 new_esEs28(x0, x1, ty_Ordering) 41.28/18.87 new_esEs32(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_pePe(True, x0) 41.28/18.87 new_esEs19(x0, x1, ty_Double) 41.28/18.87 new_esEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_esEs19(x0, x1, ty_@0) 41.28/18.87 new_esEs32(x0, x1, ty_Char) 41.28/18.87 new_esEs35(x0, x1, ty_Integer) 41.28/18.87 new_esEs21(x0, x1, ty_Float) 41.28/18.87 new_esEs25(x0, x1, ty_Ordering) 41.28/18.87 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 41.28/18.87 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 41.28/18.87 new_esEs21(x0, x1, app(ty_[], x2)) 41.28/18.87 new_asAs(False, x0) 41.28/18.87 new_fsEs(x0) 41.28/18.87 new_esEs36(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 41.28/18.87 new_esEs32(x0, x1, ty_Bool) 41.28/18.87 new_esEs36(x0, x1, app(ty_[], x2)) 41.28/18.87 new_primPlusNat1(Succ(x0), Succ(x1)) 41.28/18.87 new_lt19(x0, x1, ty_@0) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 41.28/18.87 new_ltEs19(x0, x1, ty_Bool) 41.28/18.87 new_lt18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_esEs27(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_compare110(x0, x1, True, x2, x3, x4) 41.28/18.87 new_esEs27(x0, x1, ty_Double) 41.28/18.87 new_compare14(x0, x1, ty_Double) 41.28/18.87 new_lt18(x0, x1, ty_Int) 41.28/18.87 new_esEs20(x0, x1, ty_Bool) 41.28/18.87 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_esEs26(x0, x1, ty_Ordering) 41.28/18.87 new_esEs22(x0, x1, ty_Int) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.87 new_compare3([], :(x0, x1), x2) 41.28/18.87 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_ltEs19(x0, x1, ty_@0) 41.28/18.87 new_compare24(x0, x1, False) 41.28/18.87 new_compare112(x0, x1, True, x2, x3) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.87 new_esEs27(x0, x1, ty_Int) 41.28/18.87 new_esEs35(x0, x1, ty_Bool) 41.28/18.87 new_primCompAux00(x0, LT) 41.28/18.87 new_esEs20(x0, x1, ty_@0) 41.28/18.87 new_compare23(x0, x1, True, x2, x3) 41.28/18.87 new_compare14(x0, x1, ty_Float) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 41.28/18.87 new_lt20(x0, x1, ty_Integer) 41.28/18.87 new_primCmpNat0(Succ(x0), Zero) 41.28/18.87 new_primMulNat0(Zero, Zero) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.87 new_lt18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_compare16(x0, x1, x2, x3) 41.28/18.87 new_lt4(x0, x1) 41.28/18.87 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_esEs15([], :(x0, x1), x2) 41.28/18.87 new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_lt20(x0, x1, ty_Bool) 41.28/18.87 new_ltEs21(x0, x1, ty_Float) 41.28/18.87 new_lt6(x0, x1, x2) 41.28/18.87 new_compare14(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_pePe(False, x0) 41.28/18.87 new_esEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_ltEs14(x0, x1) 41.28/18.87 new_compare9(@0, @0) 41.28/18.87 new_compare8(Char(x0), Char(x1)) 41.28/18.87 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.87 new_esEs23(x0, x1, ty_Int) 41.28/18.87 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.87 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_esEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.87 new_esEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_esEs32(x0, x1, ty_Ordering) 41.28/18.87 new_lt18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_compare14(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_ltEs19(x0, x1, ty_Integer) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.87 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.87 new_esEs28(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 41.28/18.87 new_gt2(x0, x1, x2, x3) 41.28/18.87 new_esEs31(x0, x1, app(ty_[], x2)) 41.28/18.87 new_esEs24(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_lt19(x0, x1, ty_Ordering) 41.28/18.87 new_compare210(Left(x0), Right(x1), False, x2, x3) 41.28/18.87 new_compare210(Right(x0), Left(x1), False, x2, x3) 41.28/18.87 new_not(True) 41.28/18.87 new_ltEs20(x0, x1, ty_Float) 41.28/18.87 new_lt13(x0, x1, x2, x3) 41.28/18.87 new_lt9(x0, x1) 41.28/18.87 new_esEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_lt20(x0, x1, app(ty_[], x2)) 41.28/18.87 new_primCmpNat1(x0, Zero) 41.28/18.87 new_compare27(x0, x1, True, x2, x3, x4) 41.28/18.87 new_esEs17(:%(x0, x1), :%(x2, x3), x4) 41.28/18.87 new_esEs18(x0, x1, ty_Double) 41.28/18.87 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_esEs8(EQ, GT) 41.28/18.87 new_esEs8(GT, EQ) 41.28/18.87 new_esEs12(False, False) 41.28/18.87 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.87 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.87 new_compare14(x0, x1, ty_Integer) 41.28/18.87 new_esEs24(x0, x1, ty_Ordering) 41.28/18.87 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.87 new_esEs25(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 41.28/18.87 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 41.28/18.87 new_ltEs19(x0, x1, app(ty_[], x2)) 41.28/18.87 new_compare32(x0, x1, x2, x3) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.87 new_ltEs6(x0, x1) 41.28/18.87 new_esEs28(x0, x1, ty_Double) 41.28/18.87 new_esEs7(Just(x0), Just(x1), ty_Float) 41.28/18.87 new_esEs20(x0, x1, ty_Integer) 41.28/18.87 new_compare113(x0, x1, True, x2) 41.28/18.87 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_lt20(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_esEs31(x0, x1, ty_Float) 41.28/18.87 new_esEs27(x0, x1, ty_Ordering) 41.28/18.87 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 41.28/18.87 new_lt15(x0, x1) 41.28/18.87 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.87 new_esEs32(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_compare210(Right(x0), Right(x1), False, x2, x3) 41.28/18.87 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_lt19(x0, x1, ty_Integer) 41.28/18.87 new_esEs26(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.87 new_lt7(x0, x1, x2, x3, x4) 41.28/18.87 new_esEs36(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 41.28/18.87 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 41.28/18.87 new_esEs26(x0, x1, ty_Int) 41.28/18.87 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.87 new_compare111(x0, x1, False) 41.28/18.87 new_esEs35(x0, x1, ty_@0) 41.28/18.87 new_lt18(x0, x1, ty_Double) 41.28/18.87 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_esEs25(x0, x1, ty_Double) 41.28/18.87 new_lt18(x0, x1, ty_Char) 41.28/18.87 new_lt20(x0, x1, ty_Char) 41.28/18.87 new_lt20(x0, x1, ty_@0) 41.28/18.87 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_esEs25(x0, x1, ty_Char) 41.28/18.87 new_lt18(x0, x1, ty_@0) 41.28/18.87 new_esEs19(x0, x1, ty_Ordering) 41.28/18.87 new_esEs18(x0, x1, ty_Int) 41.28/18.87 new_esEs18(x0, x1, app(ty_[], x2)) 41.28/18.87 new_esEs35(x0, x1, ty_Float) 41.28/18.87 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_esEs26(x0, x1, ty_Double) 41.28/18.87 new_esEs25(x0, x1, app(ty_[], x2)) 41.28/18.87 new_esEs26(x0, x1, ty_Char) 41.28/18.87 new_esEs27(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_lt20(x0, x1, ty_Int) 41.28/18.87 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 41.28/18.87 new_esEs11(Char(x0), Char(x1)) 41.28/18.87 new_compare210(x0, x1, True, x2, x3) 41.28/18.87 new_ltEs5(LT, LT) 41.28/18.87 new_compare114(x0, x1, True, x2, x3) 41.28/18.87 new_esEs25(x0, x1, ty_Int) 41.28/18.87 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_primCmpInt(Pos(Zero), Pos(Zero)) 41.28/18.87 new_esEs35(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 41.28/18.87 new_esEs18(x0, x1, ty_Char) 41.28/18.87 new_esEs21(x0, x1, ty_Integer) 41.28/18.87 new_lt19(x0, x1, app(ty_[], x2)) 41.28/18.87 new_esEs14(@0, @0) 41.28/18.87 new_ltEs18(x0, x1, ty_Double) 41.28/18.87 new_compare31(x0, x1, x2, x3) 41.28/18.87 new_esEs20(x0, x1, ty_Ordering) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.87 new_ltEs18(x0, x1, ty_Ordering) 41.28/18.87 new_esEs24(x0, x1, ty_Char) 41.28/18.87 new_esEs36(x0, x1, ty_Float) 41.28/18.87 new_ltEs5(LT, EQ) 41.28/18.87 new_ltEs5(EQ, LT) 41.28/18.87 new_esEs20(x0, x1, ty_Double) 41.28/18.87 new_esEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_esEs24(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_esEs27(x0, x1, ty_Integer) 41.28/18.87 new_ltEs5(GT, GT) 41.28/18.87 new_ltEs19(x0, x1, ty_Double) 41.28/18.87 new_esEs26(x0, x1, ty_Bool) 41.28/18.87 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_compare15(x0, x1) 41.28/18.87 new_compare30(x0, x1, x2, x3) 41.28/18.87 new_compare14(x0, x1, ty_Bool) 41.28/18.87 new_esEs26(x0, x1, ty_@0) 41.28/18.87 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_lt19(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 41.28/18.87 new_lt18(x0, x1, ty_Integer) 41.28/18.87 new_esEs10(Integer(x0), Integer(x1)) 41.28/18.87 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.87 new_esEs8(LT, GT) 41.28/18.87 new_esEs8(GT, LT) 41.28/18.87 new_esEs9(x0, x1) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.87 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_ltEs21(x0, x1, ty_Integer) 41.28/18.87 new_lt18(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_lt18(x0, x1, ty_Bool) 41.28/18.87 new_compare17(:%(x0, x1), :%(x2, x3), ty_Int) 41.28/18.87 new_esEs26(x0, x1, ty_Integer) 41.28/18.87 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.87 new_esEs36(x0, x1, ty_Int) 41.28/18.87 new_esEs32(x0, x1, ty_@0) 41.28/18.87 new_compare210(Left(x0), Left(x1), False, x2, x3) 41.28/18.87 new_esEs23(x0, x1, ty_Integer) 41.28/18.87 new_gt(x0, x1, x2, x3) 41.28/18.87 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_compare110(x0, x1, False, x2, x3, x4) 41.28/18.87 new_ltEs21(x0, x1, ty_@0) 41.28/18.87 new_asAs(True, x0) 41.28/18.87 new_esEs35(x0, x1, ty_Double) 41.28/18.87 new_compare12(x0, x1, x2) 41.28/18.87 new_esEs26(x0, x1, app(ty_[], x2)) 41.28/18.87 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_lt16(x0, x1) 41.28/18.87 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_primCompAux00(x0, EQ) 41.28/18.87 new_compare111(x0, x1, True) 41.28/18.87 new_primPlusNat1(Zero, Succ(x0)) 41.28/18.87 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.87 new_esEs7(Nothing, Nothing, x0) 41.28/18.87 new_esEs24(x0, x1, ty_Float) 41.28/18.87 new_primEqNat0(Zero, Zero) 41.28/18.87 new_compare14(x0, x1, ty_Char) 41.28/18.87 new_esEs24(x0, x1, ty_Bool) 41.28/18.87 new_lt19(x0, x1, ty_Bool) 41.28/18.87 new_esEs12(True, True) 41.28/18.87 new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.87 new_not(False) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), ty_Float) 41.28/18.87 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.87 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_compare113(x0, x1, False, x2) 41.28/18.87 new_esEs24(x0, x1, app(ty_[], x2)) 41.28/18.87 new_primPlusNat1(Succ(x0), Zero) 41.28/18.87 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.87 new_compare14(x0, x1, ty_Int) 41.28/18.87 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_esEs19(x0, x1, ty_Bool) 41.28/18.87 new_esEs21(x0, x1, ty_@0) 41.28/18.87 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.87 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_compare17(:%(x0, x1), :%(x2, x3), ty_Integer) 41.28/18.87 new_ltEs10(x0, x1) 41.28/18.87 new_esEs32(x0, x1, ty_Double) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.87 new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 41.28/18.87 new_ltEs8(True, True) 41.28/18.87 new_compare19(x0, x1, x2, x3) 41.28/18.87 new_esEs19(x0, x1, ty_Float) 41.28/18.87 new_lt19(x0, x1, ty_Float) 41.28/18.87 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.87 new_esEs13(Double(x0, x1), Double(x2, x3)) 41.28/18.87 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_compare3(:(x0, x1), [], x2) 41.28/18.87 new_esEs24(x0, x1, ty_Int) 41.28/18.87 new_ltEs5(EQ, EQ) 41.28/18.87 new_esEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_esEs26(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_esEs27(x0, x1, ty_Bool) 41.28/18.87 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.87 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.87 new_esEs35(x0, x1, app(ty_[], x2)) 41.28/18.87 new_lt5(x0, x1) 41.28/18.87 new_esEs16(Float(x0, x1), Float(x2, x3)) 41.28/18.87 new_lt18(x0, x1, ty_Ordering) 41.28/18.87 new_esEs19(x0, x1, ty_Char) 41.28/18.87 new_esEs35(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_lt19(x0, x1, ty_Char) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.87 new_ltEs11(x0, x1, x2) 41.28/18.87 new_esEs18(x0, x1, ty_Ordering) 41.28/18.87 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.87 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.87 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.87 new_lt18(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_lt20(x0, x1, ty_Ordering) 41.28/18.87 new_ltEs16(x0, x1) 41.28/18.87 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 41.28/18.87 new_primCmpNat1(x0, Succ(x1)) 41.28/18.87 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_primMulInt(Pos(x0), Neg(x1)) 41.28/18.87 new_primMulInt(Neg(x0), Pos(x1)) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 41.28/18.87 new_esEs19(x0, x1, ty_Int) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.87 new_compare14(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_compare7(x0, x1) 41.28/18.87 new_esEs27(x0, x1, ty_Char) 41.28/18.87 new_primMulNat0(Zero, Succ(x0)) 41.28/18.87 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.87 new_primCmpNat0(Zero, Zero) 41.28/18.87 new_primEqNat0(Zero, Succ(x0)) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.87 new_lt11(x0, x1, x2) 41.28/18.87 new_lt19(x0, x1, ty_Int) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.87 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 41.28/18.87 We have to consider all minimal (P,Q,R)-chains. 41.28/18.87 ---------------------------------------- 41.28/18.87 41.28/18.87 (50) QDPSizeChangeProof (EQUIVALENT) 41.28/18.87 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. 41.28/18.87 41.28/18.87 From the DPs we obtained the following set of size-change graphs: 41.28/18.87 *new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Right(yvy400), h, ba, bb) 41.28/18.87 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8, 5 >= 9 41.28/18.87 41.28/18.87 41.28/18.87 *new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bf, bg, bh) -> new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bf, bg), bf, bg, bh) 41.28/18.87 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 41.28/18.87 41.28/18.87 41.28/18.87 *new_splitLT21(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Right(yvy400), h, ba, bb) 41.28/18.87 The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 8 >= 7, 9 >= 8, 10 >= 9 41.28/18.87 41.28/18.87 41.28/18.87 *new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitLT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, yvy300, h, ba), h, ba, bb) 41.28/18.87 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 41.28/18.87 41.28/18.87 41.28/18.87 *new_splitLT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitLT21(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Right(yvy400), Left(yvy300), False, h, ba), LT), h, ba, bb) 41.28/18.87 The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9, 9 >= 10 41.28/18.87 41.28/18.87 41.28/18.87 *new_splitLT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitLT22(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Right(yvy400), Right(yvy300), new_esEs36(yvy400, yvy300, ba), h, ba), LT), h, ba, bb) 41.28/18.87 The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9, 9 >= 10 41.28/18.87 41.28/18.87 41.28/18.87 *new_splitLT11(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitLT0(yvy34, yvy400, h, ba, bb) 41.28/18.87 The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 41.28/18.87 41.28/18.87 41.28/18.87 *new_splitLT22(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bf, bg, bh) -> new_splitLT0(yvy33, yvy35, bf, bg, bh) 41.28/18.87 The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 41.28/18.87 41.28/18.87 41.28/18.87 *new_splitLT12(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bf, bg, bh) -> new_splitLT0(yvy34, yvy35, bf, bg, bh) 41.28/18.87 The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 41.28/18.87 41.28/18.87 41.28/18.87 ---------------------------------------- 41.28/18.87 41.28/18.87 (51) 41.28/18.87 YES 41.28/18.87 41.28/18.87 ---------------------------------------- 41.28/18.87 41.28/18.87 (52) 41.28/18.87 Obligation: 41.28/18.87 Q DP problem: 41.28/18.87 The TRS P consists of the following rules: 41.28/18.87 41.28/18.87 new_splitLT2(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bc, bd, be) -> new_splitLT(yvy18, yvy20, bc, bd, be) 41.28/18.87 new_splitLT(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Left(yvy400), h, ba, bb) 41.28/18.87 new_splitLT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Left(yvy400), Left(yvy300), new_esEs35(yvy400, yvy300, h), h, ba), LT), h, ba, bb) 41.28/18.87 new_splitLT2(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bc, bd, be) -> new_splitLT1(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_gt(yvy20, yvy15, bc, bd), bc, bd, be) 41.28/18.87 new_splitLT1(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bc, bd, be) -> new_splitLT(yvy19, yvy20, bc, bd, be) 41.28/18.87 new_splitLT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitLT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Left(yvy400), Right(yvy300), False, h, ba), LT), h, ba, bb) 41.28/18.87 new_splitLT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_gt0(yvy400, yvy300, h, ba), h, ba, bb) 41.28/18.87 new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitLT(yvy34, yvy400, h, ba, bb) 41.28/18.87 new_splitLT20(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Left(yvy400), h, ba, bb) 41.28/18.87 41.28/18.87 The TRS R consists of the following rules: 41.28/18.87 41.28/18.87 new_ltEs20(yvy79002, yvy80002, app(ty_[], dgc)) -> new_ltEs11(yvy79002, yvy80002, dgc) 41.28/18.87 new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT 41.28/18.87 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 41.28/18.87 new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, ty_Bool) -> new_ltEs8(yvy79001, yvy80001) 41.28/18.87 new_esEs24(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.87 new_pePe(True, yvy255) -> True 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Ordering, cba) -> new_esEs8(yvy4000, yvy3000) 41.28/18.87 new_esEs25(yvy79001, yvy80001, app(app(app(ty_@3, def), deg), deh)) -> new_esEs6(yvy79001, yvy80001, def, deg, deh) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Ratio, bag)) -> new_ltEs13(yvy79000, yvy80000, bag) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(ty_Ratio, cfd)) -> new_ltEs13(yvy79000, yvy80000, cfd) 41.28/18.87 new_esEs19(yvy4001, yvy3001, app(ty_Ratio, dbc)) -> new_esEs17(yvy4001, yvy3001, dbc) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Double) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.87 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 41.28/18.87 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.87 new_esEs27(yvy4001, yvy3001, app(app(ty_Either, cab), cac)) -> new_esEs5(yvy4001, yvy3001, cab, cac) 41.28/18.87 new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT 41.28/18.87 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.87 new_lt18(yvy79000, yvy80000, app(ty_Maybe, ddh)) -> new_lt6(yvy79000, yvy80000, ddh) 41.28/18.87 new_esEs9(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 41.28/18.87 new_lt20(yvy79000, yvy80000, app(app(ty_Either, bfh), bga)) -> new_lt17(yvy79000, yvy80000, bfh, bga) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.87 new_esEs36(yvy400, yvy300, ty_Double) -> new_esEs13(yvy400, yvy300) 41.28/18.87 new_esEs24(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, bab)) -> new_esEs7(yvy4000, yvy3000, bab) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Char, cba) -> new_esEs11(yvy4000, yvy3000) 41.28/18.87 new_esEs28(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 41.28/18.87 new_ltEs12(Left(yvy79000), Right(yvy80000), bea, beb) -> True 41.28/18.87 new_ltEs21(yvy79001, yvy80001, ty_Char) -> new_ltEs6(yvy79001, yvy80001) 41.28/18.87 new_esEs28(yvy79000, yvy80000, app(ty_Maybe, gg)) -> new_esEs7(yvy79000, yvy80000, gg) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Ratio, ceb), beb) -> new_ltEs13(yvy79000, yvy80000, ceb) 41.28/18.87 new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.87 new_esEs18(yvy4000, yvy3000, app(app(ty_@2, cha), chb)) -> new_esEs4(yvy4000, yvy3000, cha, chb) 41.28/18.87 new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt16(yvy79001, yvy80001) 41.28/18.87 new_lt19(yvy79001, yvy80001, app(app(ty_Either, ded), dee)) -> new_lt17(yvy79001, yvy80001, ded, dee) 41.28/18.87 new_esEs26(yvy4000, yvy3000, app(ty_[], bgg)) -> new_esEs15(yvy4000, yvy3000, bgg) 41.28/18.87 new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt4(yvy79001, yvy80001) 41.28/18.87 new_esEs36(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 41.28/18.87 new_esEs35(yvy400, yvy300, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(yvy400, yvy300, cgf, cgg, cgh) 41.28/18.87 new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.87 new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) 41.28/18.87 new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.87 new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs13(yvy20, yvy15) 41.28/18.87 new_compare14(yvy79000, yvy80000, app(ty_[], eg)) -> new_compare3(yvy79000, yvy80000, eg) 41.28/18.87 new_compare3([], [], df) -> EQ 41.28/18.87 new_esEs28(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, app(ty_[], bff)) -> new_ltEs11(yvy7900, yvy8000, bff) 41.28/18.87 new_esEs8(GT, GT) -> True 41.28/18.87 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 41.28/18.87 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 41.28/18.87 new_ltEs18(yvy7900, yvy8000, app(app(ty_@2, bdf), bdg)) -> new_ltEs4(yvy7900, yvy8000, bdf, bdg) 41.28/18.87 new_fsEs(yvy244) -> new_not(new_esEs8(yvy244, GT)) 41.28/18.87 new_esEs25(yvy79001, yvy80001, app(ty_Ratio, dec)) -> new_esEs17(yvy79001, yvy80001, dec) 41.28/18.87 new_compare210(yvy790, yvy800, True, bdd, bde) -> EQ 41.28/18.87 new_esEs31(yvy35, yvy30, app(ty_Ratio, ge)) -> new_esEs17(yvy35, yvy30, ge) 41.28/18.87 new_esEs32(yvy20, yvy15, app(ty_[], dgg)) -> new_esEs15(yvy20, yvy15, dgg) 41.28/18.87 new_lt20(yvy79000, yvy80000, app(app(ty_@2, dd), de)) -> new_lt13(yvy79000, yvy80000, dd, de) 41.28/18.87 new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare18(yvy7900, yvy8000)) 41.28/18.87 new_esEs24(yvy79000, yvy80000, app(app(ty_@2, dcg), dch)) -> new_esEs4(yvy79000, yvy80000, dcg, dch) 41.28/18.87 new_lt18(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 41.28/18.87 new_compare28(yvy79000, yvy80000, False, gg) -> new_compare113(yvy79000, yvy80000, new_ltEs17(yvy79000, yvy80000, gg), gg) 41.28/18.87 new_lt18(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 41.28/18.87 new_esEs8(EQ, EQ) -> True 41.28/18.87 new_ltEs11(yvy7900, yvy8000, df) -> new_fsEs(new_compare3(yvy7900, yvy8000, df)) 41.28/18.87 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.87 new_esEs20(yvy4002, yvy3002, app(ty_Ratio, dce)) -> new_esEs17(yvy4002, yvy3002, dce) 41.28/18.87 new_ltEs20(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(app(ty_@2, cce), ccf)) -> new_esEs4(yvy4000, yvy3000, cce, ccf) 41.28/18.87 new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.87 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.87 new_compare13(yvy79000, yvy80000, fa, fb, fc) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, fa, fb, fc), fa, fb, fc) 41.28/18.87 new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bah), bba)) -> new_ltEs12(yvy79000, yvy80000, bah, bba) 41.28/18.87 new_not(True) -> False 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.87 new_compare210(Left(yvy7900), Right(yvy8000), False, bdd, bde) -> LT 41.28/18.87 new_lt18(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 41.28/18.87 new_compare14(yvy79000, yvy80000, ty_Ordering) -> new_compare25(yvy79000, yvy80000) 41.28/18.87 new_compare24(yvy79000, yvy80000, False) -> new_compare11(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000)) 41.28/18.87 new_primCompAux00(yvy260, LT) -> LT 41.28/18.87 new_primCmpNat0(Zero, Zero) -> EQ 41.28/18.87 new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs6(yvy4000, yvy3000, bce, bcf, bcg) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Integer, beb) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.87 new_esEs28(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 41.28/18.87 new_esEs36(yvy400, yvy300, app(ty_[], cc)) -> new_esEs15(yvy400, yvy300, cc) 41.28/18.87 new_compare11(yvy79000, yvy80000, False) -> GT 41.28/18.87 new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 41.28/18.87 new_esEs21(yvy4000, yvy3000, app(ty_Ratio, bch)) -> new_esEs17(yvy4000, yvy3000, bch) 41.28/18.87 new_esEs20(yvy4002, yvy3002, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs6(yvy4002, yvy3002, dcb, dcc, dcd) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(ty_[], ccg)) -> new_esEs15(yvy4000, yvy3000, ccg) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Char, beb) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.87 new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 41.28/18.87 new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.87 new_esEs19(yvy4001, yvy3001, app(app(ty_@2, dac), dad)) -> new_esEs4(yvy4001, yvy3001, dac, dad) 41.28/18.87 new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) 41.28/18.87 new_lt18(yvy79000, yvy80000, app(app(ty_Either, ddb), ddc)) -> new_lt17(yvy79000, yvy80000, ddb, ddc) 41.28/18.87 new_esEs36(yvy400, yvy300, app(app(app(ty_@3, cf), cg), da)) -> new_esEs6(yvy400, yvy300, cf, cg, da) 41.28/18.87 new_primEqNat0(Succ(yvy40000), Zero) -> False 41.28/18.87 new_primEqNat0(Zero, Succ(yvy30000)) -> False 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_[], cbd), cba) -> new_esEs15(yvy4000, yvy3000, cbd) 41.28/18.87 new_esEs14(@0, @0) -> True 41.28/18.87 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 41.28/18.87 new_compare10(yvy79000, yvy80000, True, dd, de) -> LT 41.28/18.87 new_ltEs18(yvy7900, yvy8000, app(ty_[], df)) -> new_ltEs11(yvy7900, yvy8000, df) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.87 new_primCompAux00(yvy260, GT) -> GT 41.28/18.87 new_compare28(yvy79000, yvy80000, True, gg) -> EQ 41.28/18.87 new_esEs25(yvy79001, yvy80001, ty_Double) -> new_esEs13(yvy79001, yvy80001) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) 41.28/18.87 new_primCmpNat2(Zero, yvy7900) -> LT 41.28/18.87 new_esEs20(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) 41.28/18.87 new_esEs25(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_@0) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.87 new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 41.28/18.87 new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT 41.28/18.87 new_ltEs20(yvy79002, yvy80002, app(app(ty_@2, dfc), dfd)) -> new_ltEs4(yvy79002, yvy80002, dfc, dfd) 41.28/18.87 new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 41.28/18.87 new_esEs20(yvy4002, yvy3002, app(app(ty_@2, dbe), dbf)) -> new_esEs4(yvy4002, yvy3002, dbe, dbf) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, ty_Int) -> new_ltEs7(yvy79001, yvy80001) 41.28/18.87 new_compare3(:(yvy79000, yvy79001), :(yvy80000, yvy80001), df) -> new_primCompAux0(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, df), df) 41.28/18.87 new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs13(yvy35, yvy30) 41.28/18.87 new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 41.28/18.87 new_ltEs5(LT, GT) -> True 41.28/18.87 new_ltEs18(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 41.28/18.87 new_primPlusNat1(Succ(yvy20100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20100, yvy3000000))) 41.28/18.87 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.87 new_gt2(yvy35, yvy30, bf, bg) -> new_esEs8(new_compare30(yvy35, yvy30, bf, bg), GT) 41.28/18.87 new_esEs31(yvy35, yvy30, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs6(yvy35, yvy30, gb, gc, gd) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs9(yvy79000, yvy80000, bbb, bbc, bbd) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.87 new_primCmpNat0(Zero, Succ(yvy80000)) -> LT 41.28/18.87 new_ltEs20(yvy79002, yvy80002, ty_Bool) -> new_ltEs8(yvy79002, yvy80002) 41.28/18.87 new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs6(yvy4001, yvy3001, dah, dba, dbb) 41.28/18.87 new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 41.28/18.87 new_esEs36(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, bef), beg)) -> new_ltEs4(yvy7900, yvy8000, bef, beg) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(ty_Maybe, cdf)) -> new_esEs7(yvy4000, yvy3000, cdf) 41.28/18.87 new_compare110(yvy79000, yvy80000, False, fa, fb, fc) -> GT 41.28/18.87 new_primCmpNat0(Succ(yvy79000), Zero) -> GT 41.28/18.87 new_pePe(False, yvy255) -> yvy255 41.28/18.87 new_ltEs17(Nothing, Nothing, bad) -> True 41.28/18.87 new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 41.28/18.87 new_compare3([], :(yvy80000, yvy80001), df) -> LT 41.28/18.87 new_esEs35(yvy400, yvy300, app(ty_Maybe, gh)) -> new_esEs7(yvy400, yvy300, gh) 41.28/18.87 new_esEs7(Nothing, Just(yvy3000), gh) -> False 41.28/18.87 new_esEs7(Just(yvy4000), Nothing, gh) -> False 41.28/18.87 new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 41.28/18.87 new_compare27(yvy79000, yvy80000, False, fa, fb, fc) -> new_compare110(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, fa, fb, fc), fa, fb, fc) 41.28/18.87 new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 41.28/18.87 new_ltEs17(Nothing, Just(yvy80000), bad) -> True 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Float) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.87 new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 41.28/18.87 new_ltEs17(Just(yvy79000), Nothing, bad) -> False 41.28/18.87 new_esEs35(yvy400, yvy300, ty_Bool) -> new_esEs12(yvy400, yvy300) 41.28/18.87 new_esEs12(False, False) -> True 41.28/18.87 new_ltEs20(yvy79002, yvy80002, app(ty_Maybe, dgd)) -> new_ltEs17(yvy79002, yvy80002, dgd) 41.28/18.87 new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 41.28/18.87 new_compare114(yvy227, yvy228, True, bdb, bdc) -> LT 41.28/18.87 new_esEs35(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) 41.28/18.87 new_primCmpNat1(yvy7900, Zero) -> GT 41.28/18.87 new_compare112(yvy234, yvy235, True, cgd, cge) -> LT 41.28/18.87 new_compare14(yvy79000, yvy80000, ty_Char) -> new_compare8(yvy79000, yvy80000) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, hd), he)) -> new_esEs5(yvy4000, yvy3000, hd, he) 41.28/18.87 new_lt18(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 41.28/18.87 new_lt15(yvy79000, yvy80000) -> new_esEs8(new_compare25(yvy79000, yvy80000), LT) 41.28/18.87 new_esEs25(yvy79001, yvy80001, ty_Integer) -> new_esEs10(yvy79001, yvy80001) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs9(yvy79000, yvy80000, cfg, cfh, cga) 41.28/18.87 new_compare23(yvy79000, yvy80000, False, dd, de) -> new_compare10(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000, dd, de), dd, de) 41.28/18.87 new_gt1(yvy400, yvy300, h, ba) -> new_esEs8(new_compare33(yvy400, yvy300, h, ba), GT) 41.28/18.87 new_esEs25(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_[], ceh), beb) -> new_ltEs11(yvy79000, yvy80000, ceh) 41.28/18.87 new_esEs25(yvy79001, yvy80001, app(ty_[], dfa)) -> new_esEs15(yvy79001, yvy80001, dfa) 41.28/18.87 new_compare113(yvy79000, yvy80000, True, gg) -> LT 41.28/18.87 new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 41.28/18.87 new_ltEs7(yvy7900, yvy8000) -> new_fsEs(new_compare7(yvy7900, yvy8000)) 41.28/18.87 new_lt20(yvy79000, yvy80000, app(ty_[], cdg)) -> new_lt11(yvy79000, yvy80000, cdg) 41.28/18.87 new_compare23(yvy79000, yvy80000, True, dd, de) -> EQ 41.28/18.87 new_esEs8(LT, EQ) -> False 41.28/18.87 new_esEs8(EQ, LT) -> False 41.28/18.87 new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cbb), cbc), cba) -> new_esEs4(yvy4000, yvy3000, cbb, cbc) 41.28/18.87 new_esEs21(yvy4000, yvy3000, app(app(ty_@2, bbh), bca)) -> new_esEs4(yvy4000, yvy3000, bbh, bca) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, app(app(app(ty_@3, ead), eae), eaf)) -> new_ltEs9(yvy79001, yvy80001, ead, eae, eaf) 41.28/18.87 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 41.28/18.87 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 41.28/18.87 new_esEs32(yvy20, yvy15, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs6(yvy20, yvy15, dhb, dhc, dhd) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(app(ty_@2, cfb), cfc)) -> new_ltEs4(yvy79000, yvy80000, cfb, cfc) 41.28/18.87 new_esEs7(Nothing, Nothing, gh) -> True 41.28/18.87 new_esEs13(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 41.28/18.87 new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 41.28/18.87 new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.87 new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt9(yvy79001, yvy80001) 41.28/18.87 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, bhe)) -> new_esEs17(yvy4000, yvy3000, bhe) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Int) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.87 new_esEs25(yvy79001, yvy80001, app(app(ty_@2, dea), deb)) -> new_esEs4(yvy79001, yvy80001, dea, deb) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_Either, cec), ced), beb) -> new_ltEs12(yvy79000, yvy80000, cec, ced) 41.28/18.87 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare7(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) 41.28/18.87 new_esEs35(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, app(app(ty_Either, bea), beb)) -> new_ltEs12(yvy7900, yvy8000, bea, beb) 41.28/18.87 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.87 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.87 new_esEs24(yvy79000, yvy80000, app(app(ty_Either, ddb), ddc)) -> new_esEs5(yvy79000, yvy80000, ddb, ddc) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, bfg)) -> new_ltEs17(yvy7900, yvy8000, bfg) 41.28/18.87 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.87 new_esEs25(yvy79001, yvy80001, ty_Ordering) -> new_esEs8(yvy79001, yvy80001) 41.28/18.87 new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs14(yvy35, yvy30) 41.28/18.87 new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT 41.28/18.87 new_compare114(yvy227, yvy228, False, bdb, bdc) -> GT 41.28/18.87 new_esEs20(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) 41.28/18.87 new_ltEs20(yvy79002, yvy80002, ty_@0) -> new_ltEs16(yvy79002, yvy80002) 41.28/18.87 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.87 new_esEs25(yvy79001, yvy80001, app(ty_Maybe, dfb)) -> new_esEs7(yvy79001, yvy80001, dfb) 41.28/18.87 new_ltEs8(True, False) -> False 41.28/18.87 new_esEs15([], [], bbg) -> True 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Bool, beb) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.87 new_esEs32(yvy20, yvy15, app(app(ty_Either, dgh), dha)) -> new_esEs5(yvy20, yvy15, dgh, dha) 41.28/18.87 new_esEs36(yvy400, yvy300, app(app(ty_@2, ca), cb)) -> new_esEs4(yvy400, yvy300, ca, cb) 41.28/18.87 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.87 new_esEs24(yvy79000, yvy80000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs6(yvy79000, yvy80000, ddd, dde, ddf) 41.28/18.87 new_lt4(yvy240, yvy239) -> new_esEs8(new_compare7(yvy240, yvy239), LT) 41.28/18.87 new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt10(yvy79001, yvy80001) 41.28/18.87 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 41.28/18.87 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 41.28/18.87 new_ltEs8(False, False) -> True 41.28/18.87 new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, hf), hg), hh)) -> new_esEs6(yvy4000, yvy3000, hf, hg, hh) 41.28/18.87 new_compare14(yvy79000, yvy80000, app(app(ty_@2, dg), dh)) -> new_compare16(yvy79000, yvy80000, dg, dh) 41.28/18.87 new_esEs36(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) 41.28/18.87 new_lt18(yvy79000, yvy80000, app(ty_Ratio, dda)) -> new_lt14(yvy79000, yvy80000, dda) 41.28/18.87 new_ltEs5(EQ, EQ) -> True 41.28/18.87 new_ltEs18(yvy7900, yvy8000, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs9(yvy7900, yvy8000, bec, bed, bee) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_Either, cbe), cbf), cba) -> new_esEs5(yvy4000, yvy3000, cbe, cbf) 41.28/18.87 new_compare27(yvy79000, yvy80000, True, fa, fb, fc) -> EQ 41.28/18.87 new_lt19(yvy79001, yvy80001, app(ty_[], dfa)) -> new_lt11(yvy79001, yvy80001, dfa) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Bool, cba) -> new_esEs12(yvy4000, yvy3000) 41.28/18.87 new_compare15(yvy79000, yvy80000) -> new_compare29(yvy79000, yvy80000, new_esEs12(yvy79000, yvy80000)) 41.28/18.87 new_esEs21(yvy4000, yvy3000, app(app(ty_Either, bcc), bcd)) -> new_esEs5(yvy4000, yvy3000, bcc, bcd) 41.28/18.87 new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.87 new_compare7(yvy79, yvy80) -> new_primCmpInt(yvy79, yvy80) 41.28/18.87 new_esEs35(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) 41.28/18.87 new_esEs8(LT, LT) -> True 41.28/18.87 new_esEs35(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) 41.28/18.87 new_compare111(yvy79000, yvy80000, True) -> LT 41.28/18.87 new_esEs28(yvy79000, yvy80000, app(ty_[], cdg)) -> new_esEs15(yvy79000, yvy80000, cdg) 41.28/18.87 new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 41.28/18.87 new_lt18(yvy79000, yvy80000, app(ty_[], ddg)) -> new_lt11(yvy79000, yvy80000, ddg) 41.28/18.87 new_lt6(yvy79000, yvy80000, gg) -> new_esEs8(new_compare12(yvy79000, yvy80000, gg), LT) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.87 new_esEs24(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs9(yvy7900, yvy8000, bfc, bfd, bfe) 41.28/18.87 new_primPlusNat1(Succ(yvy20100), Zero) -> Succ(yvy20100) 41.28/18.87 new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, ha), hb)) -> new_esEs4(yvy4000, yvy3000, ha, hb) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Maybe, bbf)) -> new_ltEs17(yvy79000, yvy80000, bbf) 41.28/18.87 new_compare14(yvy79000, yvy80000, app(app(ty_Either, eb), ec)) -> new_compare19(yvy79000, yvy80000, eb, ec) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, ty_Double) -> new_ltEs14(yvy79001, yvy80001) 41.28/18.87 new_esEs35(yvy400, yvy300, app(app(ty_@2, bgc), bgd)) -> new_esEs4(yvy400, yvy300, bgc, bgd) 41.28/18.87 new_compare14(yvy79000, yvy80000, ty_Integer) -> new_compare26(yvy79000, yvy80000) 41.28/18.87 new_esEs24(yvy79000, yvy80000, app(ty_Maybe, ddh)) -> new_esEs7(yvy79000, yvy80000, ddh) 41.28/18.87 new_esEs25(yvy79001, yvy80001, ty_Bool) -> new_esEs12(yvy79001, yvy80001) 41.28/18.87 new_esEs24(yvy79000, yvy80000, app(ty_Ratio, dda)) -> new_esEs17(yvy79000, yvy80000, dda) 41.28/18.87 new_esEs36(yvy400, yvy300, app(ty_Ratio, db)) -> new_esEs17(yvy400, yvy300, db) 41.28/18.87 new_esEs24(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.87 new_ltEs5(LT, LT) -> True 41.28/18.87 new_ltEs20(yvy79002, yvy80002, ty_Double) -> new_ltEs14(yvy79002, yvy80002) 41.28/18.87 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.87 new_esEs35(yvy400, yvy300, app(ty_Ratio, bgb)) -> new_esEs17(yvy400, yvy300, bgb) 41.28/18.87 new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs9(yvy20, yvy15) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Integer, cba) -> new_esEs10(yvy4000, yvy3000) 41.28/18.87 new_ltEs5(LT, EQ) -> True 41.28/18.87 new_esEs36(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 41.28/18.87 new_compare14(yvy79000, yvy80000, ty_Double) -> new_compare18(yvy79000, yvy80000) 41.28/18.87 new_compare14(yvy79000, yvy80000, ty_@0) -> new_compare9(yvy79000, yvy80000) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, app(ty_Maybe, eah)) -> new_ltEs17(yvy79001, yvy80001, eah) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.87 new_esEs36(yvy400, yvy300, ty_Bool) -> new_esEs12(yvy400, yvy300) 41.28/18.87 new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.87 new_esEs36(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) 41.28/18.87 new_ltEs8(False, True) -> True 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, baa)) -> new_esEs17(yvy4000, yvy3000, baa) 41.28/18.87 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.87 new_compare14(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) 41.28/18.87 new_esEs27(yvy4001, yvy3001, app(ty_[], caa)) -> new_esEs15(yvy4001, yvy3001, caa) 41.28/18.87 new_ltEs6(yvy7900, yvy8000) -> new_fsEs(new_compare8(yvy7900, yvy8000)) 41.28/18.87 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.87 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.87 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(app(ty_Either, cfe), cff)) -> new_ltEs12(yvy79000, yvy80000, cfe, cff) 41.28/18.87 new_ltEs20(yvy79002, yvy80002, app(app(app(ty_@3, dfh), dga), dgb)) -> new_ltEs9(yvy79002, yvy80002, dfh, dga, dgb) 41.28/18.87 new_esEs19(yvy4001, yvy3001, app(app(ty_Either, daf), dag)) -> new_esEs5(yvy4001, yvy3001, daf, dag) 41.28/18.87 new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt12(yvy79001, yvy80001) 41.28/18.87 new_esEs27(yvy4001, yvy3001, app(ty_Ratio, cag)) -> new_esEs17(yvy4001, yvy3001, cag) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Double, beb) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs6(yvy4000, yvy3000, cdb, cdc, cdd) 41.28/18.87 new_esEs28(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 41.28/18.87 new_ltEs12(Right(yvy79000), Left(yvy80000), bea, beb) -> False 41.28/18.87 new_esEs24(yvy79000, yvy80000, app(ty_[], ddg)) -> new_esEs15(yvy79000, yvy80000, ddg) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Ratio, ccb), cba) -> new_esEs17(yvy4000, yvy3000, ccb) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(ty_Ratio, cde)) -> new_esEs17(yvy4000, yvy3000, cde) 41.28/18.87 new_esEs17(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), bgb) -> new_asAs(new_esEs22(yvy4000, yvy3000, bgb), new_esEs23(yvy4001, yvy3001, bgb)) 41.28/18.87 new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 41.28/18.87 new_compare210(Left(yvy7900), Left(yvy8000), False, bdd, bde) -> new_compare114(yvy7900, yvy8000, new_ltEs18(yvy7900, yvy8000, bdd), bdd, bde) 41.28/18.87 new_sr0(Integer(yvy800000), Integer(yvy790010)) -> Integer(new_primMulInt(yvy800000, yvy790010)) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, cee), cef), ceg), beb) -> new_ltEs9(yvy79000, yvy80000, cee, cef, ceg) 41.28/18.87 new_esEs28(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 41.28/18.87 new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs6(yvy4001, yvy3001, cad, cae, caf) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.87 new_esEs28(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, app(ty_Ratio, eaa)) -> new_ltEs13(yvy79001, yvy80001, eaa) 41.28/18.87 new_lt9(yvy79000, yvy80000) -> new_esEs8(new_compare8(yvy79000, yvy80000), LT) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, ty_@0) -> new_ltEs16(yvy79001, yvy80001) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.87 new_esEs20(yvy4002, yvy3002, ty_Int) -> new_esEs9(yvy4002, yvy3002) 41.28/18.87 new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.87 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.87 new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs12(yvy20, yvy15) 41.28/18.87 new_esEs25(yvy79001, yvy80001, ty_Int) -> new_esEs9(yvy79001, yvy80001) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, app(app(ty_Either, eab), eac)) -> new_ltEs12(yvy79001, yvy80001, eab, eac) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.87 new_lt5(yvy79000, yvy80000) -> new_esEs8(new_compare9(yvy79000, yvy80000), LT) 41.28/18.87 new_asAs(True, yvy222) -> yvy222 41.28/18.87 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 41.28/18.87 new_compare10(yvy79000, yvy80000, False, dd, de) -> GT 41.28/18.87 new_ltEs5(GT, LT) -> False 41.28/18.87 new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), bec, bed, bee) -> new_pePe(new_lt18(yvy79000, yvy80000, bec), new_asAs(new_esEs24(yvy79000, yvy80000, bec), new_pePe(new_lt19(yvy79001, yvy80001, bed), new_asAs(new_esEs25(yvy79001, yvy80001, bed), new_ltEs20(yvy79002, yvy80002, bee))))) 41.28/18.87 new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.87 new_esEs24(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 41.28/18.87 new_compare14(yvy79000, yvy80000, ty_Int) -> new_compare7(yvy79000, yvy80000) 41.28/18.87 new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.87 new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, fa), fb), fc)) -> new_lt7(yvy79000, yvy80000, fa, fb, fc) 41.28/18.87 new_esEs36(yvy400, yvy300, app(ty_Maybe, dc)) -> new_esEs7(yvy400, yvy300, dc) 41.28/18.87 new_esEs20(yvy4002, yvy3002, app(ty_[], dbg)) -> new_esEs15(yvy4002, yvy3002, dbg) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.87 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.87 new_lt10(yvy79000, yvy80000) -> new_esEs8(new_compare18(yvy79000, yvy80000), LT) 41.28/18.87 new_esEs24(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 41.28/18.87 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.87 new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) 41.28/18.87 new_ltEs8(True, True) -> True 41.28/18.87 new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat1(yvy7900, yvy800) 41.28/18.87 new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs9(yvy35, yvy30) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_@2, cdh), cea), beb) -> new_ltEs4(yvy79000, yvy80000, cdh, cea) 41.28/18.87 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare26(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) 41.28/18.87 new_compare8(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.87 new_esEs35(yvy400, yvy300, app(app(ty_Either, ccd), cba)) -> new_esEs5(yvy400, yvy300, ccd, cba) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Ordering, beb) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.87 new_primCompAux00(yvy260, EQ) -> yvy260 41.28/18.87 new_esEs12(False, True) -> False 41.28/18.87 new_esEs12(True, False) -> False 41.28/18.87 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.87 new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt15(yvy79001, yvy80001) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Float, cba) -> new_esEs16(yvy4000, yvy3000) 41.28/18.87 new_primMulNat0(Zero, Zero) -> Zero 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Double, cba) -> new_esEs13(yvy4000, yvy3000) 41.28/18.87 new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, def), deg), deh)) -> new_lt7(yvy79001, yvy80001, def, deg, deh) 41.28/18.87 new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) 41.28/18.87 new_esEs12(True, True) -> True 41.28/18.87 new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.87 new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.87 new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Int, cba) -> new_esEs9(yvy4000, yvy3000) 41.28/18.87 new_compare111(yvy79000, yvy80000, False) -> GT 41.28/18.87 new_esEs31(yvy35, yvy30, app(ty_Maybe, gf)) -> new_esEs7(yvy35, yvy30, gf) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_@0, beb) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.87 new_compare9(@0, @0) -> EQ 41.28/18.87 new_esEs15(:(yvy4000, yvy4001), [], bbg) -> False 41.28/18.87 new_esEs15([], :(yvy3000, yvy3001), bbg) -> False 41.28/18.87 new_esEs20(yvy4002, yvy3002, app(app(ty_Either, dbh), dca)) -> new_esEs5(yvy4002, yvy3002, dbh, dca) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, beh)) -> new_ltEs13(yvy7900, yvy8000, beh) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, app(app(ty_Either, cch), cda)) -> new_esEs5(yvy4000, yvy3000, cch, cda) 41.28/18.87 new_esEs24(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 41.28/18.87 new_ltEs5(EQ, LT) -> False 41.28/18.87 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, bfa), bfb)) -> new_ltEs12(yvy7900, yvy8000, bfa, bfb) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.87 new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.87 new_esEs35(yvy400, yvy300, app(ty_[], bbg)) -> new_esEs15(yvy400, yvy300, bbg) 41.28/18.87 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], hc)) -> new_esEs15(yvy4000, yvy3000, hc) 41.28/18.87 new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(ty_Maybe, cgc)) -> new_ltEs17(yvy79000, yvy80000, cgc) 41.28/18.87 new_primCompAux0(yvy79000, yvy80000, yvy256, df) -> new_primCompAux00(yvy256, new_compare14(yvy79000, yvy80000, df)) 41.28/18.87 new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.87 new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.87 new_lt17(yvy79000, yvy80000, bfh, bga) -> new_esEs8(new_compare19(yvy79000, yvy80000, bfh, bga), LT) 41.28/18.87 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 41.28/18.87 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 41.28/18.87 new_esEs24(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 41.28/18.87 new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt8(yvy79001, yvy80001) 41.28/18.87 new_ltEs20(yvy79002, yvy80002, app(app(ty_Either, dff), dfg)) -> new_ltEs12(yvy79002, yvy80002, dff, dfg) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Char) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.87 new_lt19(yvy79001, yvy80001, app(ty_Ratio, dec)) -> new_lt14(yvy79001, yvy80001, dec) 41.28/18.87 new_ltEs20(yvy79002, yvy80002, app(ty_Ratio, dfe)) -> new_ltEs13(yvy79002, yvy80002, dfe) 41.28/18.87 new_esEs20(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 41.28/18.87 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 41.28/18.87 new_esEs20(yvy4002, yvy3002, ty_Double) -> new_esEs13(yvy4002, yvy3002) 41.28/18.87 new_esEs21(yvy4000, yvy3000, app(ty_Maybe, bda)) -> new_esEs7(yvy4000, yvy3000, bda) 41.28/18.87 new_esEs32(yvy20, yvy15, app(app(ty_@2, dge), dgf)) -> new_esEs4(yvy20, yvy15, dge, dgf) 41.28/18.87 new_esEs36(yvy400, yvy300, app(app(ty_Either, cd), ce)) -> new_esEs5(yvy400, yvy300, cd, ce) 41.28/18.87 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, bge), bgf)) -> new_esEs4(yvy4000, yvy3000, bge, bgf) 41.28/18.87 new_compare14(yvy79000, yvy80000, app(ty_Ratio, ea)) -> new_compare17(yvy79000, yvy80000, ea) 41.28/18.87 new_compare24(yvy79000, yvy80000, True) -> EQ 41.28/18.87 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, app(ty_Maybe, bad)) -> new_ltEs17(yvy7900, yvy8000, bad) 41.28/18.87 new_esEs18(yvy4000, yvy3000, app(ty_[], chc)) -> new_esEs15(yvy4000, yvy3000, chc) 41.28/18.87 new_esEs25(yvy79001, yvy80001, app(app(ty_Either, ded), dee)) -> new_esEs5(yvy79001, yvy80001, ded, dee) 41.28/18.87 new_lt18(yvy79000, yvy80000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_lt7(yvy79000, yvy80000, ddd, dde, ddf) 41.28/18.87 new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 41.28/18.87 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.87 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 41.28/18.87 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 41.28/18.87 new_lt20(yvy79000, yvy80000, app(ty_Ratio, bac)) -> new_lt14(yvy79000, yvy80000, bac) 41.28/18.87 new_gt0(yvy400, yvy300, h, ba) -> new_esEs8(new_compare32(yvy400, yvy300, h, ba), GT) 41.28/18.87 new_esEs32(yvy20, yvy15, app(ty_Maybe, dhf)) -> new_esEs7(yvy20, yvy15, dhf) 41.28/18.87 new_esEs31(yvy35, yvy30, app(app(ty_Either, fh), ga)) -> new_esEs5(yvy35, yvy30, fh, ga) 41.28/18.87 new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, app(ty_[], cgb)) -> new_ltEs11(yvy79000, yvy80000, cgb) 41.28/18.87 new_esEs35(yvy400, yvy300, ty_Int) -> new_esEs9(yvy400, yvy300) 41.28/18.87 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, bhf)) -> new_esEs7(yvy4000, yvy3000, bhf) 41.28/18.87 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Maybe, cfa), beb) -> new_ltEs17(yvy79000, yvy80000, cfa) 41.28/18.87 new_lt18(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 41.28/18.87 new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 41.28/18.87 new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) 41.28/18.87 new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt5(yvy79001, yvy80001) 41.28/18.87 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, bgh), bha)) -> new_esEs5(yvy4000, yvy3000, bgh, bha) 41.28/18.87 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat1(yvy8000, Zero) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cbg), cbh), cca), cba) -> new_esEs6(yvy4000, yvy3000, cbg, cbh, cca) 41.28/18.87 new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) 41.28/18.87 new_lt18(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 41.28/18.87 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.87 new_compare110(yvy79000, yvy80000, True, fa, fb, fc) -> LT 41.28/18.87 new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) 41.28/18.87 new_compare14(yvy79000, yvy80000, app(app(app(ty_@3, ed), ee), ef)) -> new_compare13(yvy79000, yvy80000, ed, ee, ef) 41.28/18.87 new_esEs15(:(yvy4000, yvy4001), :(yvy3000, yvy3001), bbg) -> new_asAs(new_esEs21(yvy4000, yvy3000, bbg), new_esEs15(yvy4001, yvy3001, bbg)) 41.28/18.87 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs6(yvy4000, yvy3000, bhb, bhc, bhd) 41.28/18.87 new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 41.28/18.87 new_esEs35(yvy400, yvy300, ty_Double) -> new_esEs13(yvy400, yvy300) 41.28/18.87 new_esEs27(yvy4001, yvy3001, app(ty_Maybe, cah)) -> new_esEs7(yvy4001, yvy3001, cah) 41.28/18.87 new_compare12(yvy79000, yvy80000, gg) -> new_compare28(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, gg), gg) 41.28/18.87 new_compare112(yvy234, yvy235, False, cgd, cge) -> GT 41.28/18.87 new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs6(yvy4000, yvy3000, chf, chg, chh) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Maybe, ccc), cba) -> new_esEs7(yvy4000, yvy3000, ccc) 41.28/18.87 new_ltEs5(EQ, GT) -> True 41.28/18.87 new_esEs31(yvy35, yvy30, app(app(ty_@2, fd), ff)) -> new_esEs4(yvy35, yvy30, fd, ff) 41.28/18.87 new_esEs35(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Float, beb) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.87 new_ltEs20(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) 41.28/18.87 new_not(False) -> True 41.28/18.87 new_esEs28(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 41.28/18.87 new_esEs18(yvy4000, yvy3000, app(app(ty_Either, chd), che)) -> new_esEs5(yvy4000, yvy3000, chd, che) 41.28/18.87 new_ltEs12(Right(yvy79000), Right(yvy80000), bea, ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.87 new_compare25(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs8(yvy79000, yvy80000)) 41.28/18.87 new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs8(yvy35, yvy30) 41.28/18.87 new_ltEs13(yvy7900, yvy8000, bdh) -> new_fsEs(new_compare17(yvy7900, yvy8000, bdh)) 41.28/18.87 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bgc, bgd) -> new_asAs(new_esEs26(yvy4000, yvy3000, bgc), new_esEs27(yvy4001, yvy3001, bgd)) 41.28/18.87 new_esEs25(yvy79001, yvy80001, ty_@0) -> new_esEs14(yvy79001, yvy80001) 41.28/18.87 new_esEs20(yvy4002, yvy3002, app(ty_Maybe, dcf)) -> new_esEs7(yvy4002, yvy3002, dcf) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bae), baf)) -> new_ltEs4(yvy79000, yvy80000, bae, baf) 41.28/18.87 new_ltEs5(GT, GT) -> True 41.28/18.87 new_esEs8(LT, GT) -> False 41.28/18.87 new_esEs8(GT, LT) -> False 41.28/18.87 new_compare29(yvy79000, yvy80000, True) -> EQ 41.28/18.87 new_esEs31(yvy35, yvy30, app(ty_[], fg)) -> new_esEs15(yvy35, yvy30, fg) 41.28/18.87 new_esEs32(yvy20, yvy15, app(ty_Ratio, dhe)) -> new_esEs17(yvy20, yvy15, dhe) 41.28/18.87 new_esEs5(Left(yvy4000), Right(yvy3000), ccd, cba) -> False 41.28/18.87 new_esEs5(Right(yvy4000), Left(yvy3000), ccd, cba) -> False 41.28/18.87 new_esEs20(yvy4002, yvy3002, ty_Bool) -> new_esEs12(yvy4002, yvy3002) 41.28/18.87 new_lt19(yvy79001, yvy80001, app(ty_Maybe, dfb)) -> new_lt6(yvy79001, yvy80001, dfb) 41.28/18.87 new_lt13(yvy79000, yvy80000, dd, de) -> new_esEs8(new_compare16(yvy79000, yvy80000, dd, de), LT) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, ty_Ordering) -> new_ltEs5(yvy79001, yvy80001) 41.28/18.87 new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs10(yvy35, yvy30) 41.28/18.87 new_esEs19(yvy4001, yvy3001, app(ty_[], dae)) -> new_esEs15(yvy4001, yvy3001, dae) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, app(ty_Ratio, bdh)) -> new_ltEs13(yvy7900, yvy8000, bdh) 41.28/18.87 new_compare14(yvy79000, yvy80000, app(ty_Maybe, eh)) -> new_compare12(yvy79000, yvy80000, eh) 41.28/18.87 new_lt8(yvy79000, yvy80000) -> new_esEs8(new_compare26(yvy79000, yvy80000), LT) 41.28/18.87 new_compare113(yvy79000, yvy80000, False, gg) -> GT 41.28/18.87 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.87 new_primPlusNat0(Succ(yvy2010), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2010, yvy300000))) 41.28/18.87 new_lt14(yvy79000, yvy80000, bac) -> new_esEs8(new_compare17(yvy79000, yvy80000, bac), LT) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 41.28/18.87 new_esEs19(yvy4001, yvy3001, app(ty_Maybe, dbd)) -> new_esEs7(yvy4001, yvy3001, dbd) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 41.28/18.87 new_ltEs20(yvy79002, yvy80002, ty_Char) -> new_ltEs6(yvy79002, yvy80002) 41.28/18.87 new_esEs36(yvy400, yvy300, ty_Int) -> new_esEs9(yvy400, yvy300) 41.28/18.87 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 41.28/18.87 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 41.28/18.87 new_lt16(yvy79000, yvy80000) -> new_esEs8(new_compare15(yvy79000, yvy80000), LT) 41.28/18.87 new_lt12(yvy79000, yvy80000) -> new_esEs8(new_compare6(yvy79000, yvy80000), LT) 41.28/18.87 new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 41.28/18.87 new_primPlusNat1(Zero, Zero) -> Zero 41.28/18.87 new_esEs6(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cgf, cgg, cgh) -> new_asAs(new_esEs18(yvy4000, yvy3000, cgf), new_asAs(new_esEs19(yvy4001, yvy3001, cgg), new_esEs20(yvy4002, yvy3002, cgh))) 41.28/18.87 new_esEs20(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 41.28/18.87 new_ltEs20(yvy79002, yvy80002, ty_Int) -> new_ltEs7(yvy79002, yvy80002) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, app(app(ty_@2, dhg), dhh)) -> new_ltEs4(yvy79001, yvy80001, dhg, dhh) 41.28/18.87 new_esEs27(yvy4001, yvy3001, app(app(ty_@2, bhg), bhh)) -> new_esEs4(yvy4001, yvy3001, bhg, bhh) 41.28/18.87 new_lt18(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 41.28/18.87 new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 41.28/18.87 new_esEs28(yvy79000, yvy80000, app(ty_Ratio, bac)) -> new_esEs17(yvy79000, yvy80000, bac) 41.28/18.87 new_compare11(yvy79000, yvy80000, True) -> LT 41.28/18.87 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.87 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.87 new_ltEs4(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), bdf, bdg) -> new_pePe(new_lt20(yvy79000, yvy80000, bdf), new_asAs(new_esEs28(yvy79000, yvy80000, bdf), new_ltEs21(yvy79001, yvy80001, bdg))) 41.28/18.87 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 41.28/18.87 new_lt19(yvy79001, yvy80001, app(app(ty_@2, dea), deb)) -> new_lt13(yvy79001, yvy80001, dea, deb) 41.28/18.87 new_compare31(yvy20, yvy15, bc, bd) -> new_compare210(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, bc), bc, bd) 41.28/18.87 new_compare16(yvy79000, yvy80000, dd, de) -> new_compare23(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, dd, de), dd, de) 41.28/18.87 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 41.28/18.87 new_esEs28(yvy79000, yvy80000, app(app(ty_@2, dd), de)) -> new_esEs4(yvy79000, yvy80000, dd, de) 41.28/18.87 new_primCmpNat0(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.87 new_esEs20(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) 41.28/18.87 new_compare19(yvy79000, yvy80000, bfh, bga) -> new_compare210(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bfh, bga), bfh, bga) 41.28/18.87 new_compare30(yvy35, yvy30, bf, bg) -> new_compare210(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, bg), bf, bg) 41.28/18.87 new_compare3(:(yvy79000, yvy79001), [], df) -> GT 41.28/18.87 new_compare14(yvy79000, yvy80000, ty_Bool) -> new_compare15(yvy79000, yvy80000) 41.28/18.87 new_esEs28(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_[], bbe)) -> new_ltEs11(yvy79000, yvy80000, bbe) 41.28/18.87 new_esEs5(Left(yvy4000), Left(yvy3000), ty_@0, cba) -> new_esEs14(yvy4000, yvy3000) 41.28/18.87 new_compare26(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) 41.28/18.87 new_gt(yvy20, yvy15, bc, bd) -> new_esEs8(new_compare31(yvy20, yvy15, bc, bd), GT) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 41.28/18.87 new_compare32(yvy400, yvy300, h, ba) -> new_compare210(Left(yvy400), Right(yvy300), False, h, ba) 41.28/18.87 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 41.28/18.87 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 41.28/18.87 new_primCmpNat1(yvy7900, Succ(yvy8000)) -> new_primCmpNat0(yvy7900, yvy8000) 41.28/18.87 new_esEs18(yvy4000, yvy3000, app(ty_Maybe, dab)) -> new_esEs7(yvy4000, yvy3000, dab) 41.28/18.87 new_lt20(yvy79000, yvy80000, app(ty_Maybe, gg)) -> new_lt6(yvy79000, yvy80000, gg) 41.28/18.87 new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 41.28/18.87 new_primEqNat0(Zero, Zero) -> True 41.28/18.87 new_esEs28(yvy79000, yvy80000, app(app(ty_Either, bfh), bga)) -> new_esEs5(yvy79000, yvy80000, bfh, bga) 41.28/18.87 new_compare210(Right(yvy7900), Right(yvy8000), False, bdd, bde) -> new_compare112(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, bde), bdd, bde) 41.28/18.87 new_esEs21(yvy4000, yvy3000, app(ty_[], bcb)) -> new_esEs15(yvy4000, yvy3000, bcb) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.87 new_lt11(yvy79000, yvy80000, cdg) -> new_esEs8(new_compare3(yvy79000, yvy80000, cdg), LT) 41.28/18.87 new_esEs28(yvy79000, yvy80000, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs6(yvy79000, yvy80000, fa, fb, fc) 41.28/18.87 new_compare29(yvy79000, yvy80000, False) -> new_compare111(yvy79000, yvy80000, new_ltEs8(yvy79000, yvy80000)) 41.28/18.87 new_compare33(yvy400, yvy300, h, ba) -> new_compare210(Right(yvy400), Left(yvy300), False, h, ba) 41.28/18.87 new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.87 new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.87 new_asAs(False, yvy222) -> False 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.87 new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 41.28/18.87 new_lt7(yvy79000, yvy80000, fa, fb, fc) -> new_esEs8(new_compare13(yvy79000, yvy80000, fa, fb, fc), LT) 41.28/18.87 new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs12(yvy35, yvy30) 41.28/18.87 new_ltEs5(GT, EQ) -> False 41.28/18.87 new_ltEs20(yvy79002, yvy80002, ty_Ordering) -> new_ltEs5(yvy79002, yvy80002) 41.28/18.87 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.87 new_esEs18(yvy4000, yvy3000, app(ty_Ratio, daa)) -> new_esEs17(yvy4000, yvy3000, daa) 41.28/18.87 new_esEs5(Right(yvy4000), Right(yvy3000), ccd, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.87 new_ltEs21(yvy79001, yvy80001, app(ty_[], eag)) -> new_ltEs11(yvy79001, yvy80001, eag) 41.28/18.87 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Int, beb) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.87 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.87 new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 41.28/18.87 new_lt18(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 41.28/18.87 new_lt18(yvy79000, yvy80000, app(app(ty_@2, dcg), dch)) -> new_lt13(yvy79000, yvy80000, dcg, dch) 41.28/18.87 new_compare210(Right(yvy7900), Left(yvy8000), False, bdd, bde) -> GT 41.28/18.87 new_esEs8(EQ, GT) -> False 41.28/18.87 new_esEs8(GT, EQ) -> False 41.28/18.87 new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.87 new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat0(yvy8000, yvy7900) 41.28/18.87 new_ltEs18(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 41.28/18.87 new_ltEs16(yvy7900, yvy8000) -> new_fsEs(new_compare9(yvy7900, yvy8000)) 41.28/18.87 41.28/18.87 The set Q consists of the following terms: 41.28/18.87 41.28/18.87 new_ltEs18(x0, x1, ty_Bool) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.87 new_ltEs21(x0, x1, ty_Ordering) 41.28/18.87 new_esEs31(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_esEs28(x0, x1, ty_Integer) 41.28/18.87 new_esEs8(EQ, EQ) 41.28/18.87 new_compare3(:(x0, x1), :(x2, x3), x4) 41.28/18.87 new_esEs21(x0, x1, ty_Int) 41.28/18.87 new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_ltEs20(x0, x1, ty_Char) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.87 new_ltEs17(Nothing, Nothing, x0) 41.28/18.87 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_esEs26(x0, x1, ty_Float) 41.28/18.87 new_esEs36(x0, x1, ty_Bool) 41.28/18.87 new_ltEs18(x0, x1, app(ty_[], x2)) 41.28/18.87 new_primMulInt(Neg(x0), Neg(x1)) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), ty_Char) 41.28/18.87 new_ltEs18(x0, x1, ty_@0) 41.28/18.87 new_ltEs21(x0, x1, ty_Double) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 41.28/18.87 new_compare28(x0, x1, False, x2) 41.28/18.87 new_primPlusNat1(Zero, Zero) 41.28/18.87 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_ltEs15(x0, x1) 41.28/18.87 new_ltEs12(Left(x0), Right(x1), x2, x3) 41.28/18.87 new_ltEs12(Right(x0), Left(x1), x2, x3) 41.28/18.87 new_esEs24(x0, x1, ty_Integer) 41.28/18.87 new_esEs25(x0, x1, ty_Float) 41.28/18.87 new_esEs18(x0, x1, ty_Integer) 41.28/18.87 new_compare14(x0, x1, ty_Ordering) 41.28/18.87 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 41.28/18.87 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.87 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 41.28/18.87 new_lt20(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_primCompAux00(x0, GT) 41.28/18.87 new_esEs36(x0, x1, ty_Integer) 41.28/18.87 new_esEs19(x0, x1, app(ty_[], x2)) 41.28/18.87 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_primEqInt(Pos(Zero), Pos(Zero)) 41.28/18.87 new_primMulInt(Pos(x0), Pos(x1)) 41.28/18.87 new_esEs25(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_esEs21(x0, x1, ty_Double) 41.28/18.87 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_esEs32(x0, x1, ty_Integer) 41.28/18.87 new_compare3([], [], x0) 41.28/18.87 new_compare29(x0, x1, False) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.87 new_esEs27(x0, x1, ty_Float) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), ty_Int) 41.28/18.87 new_primCmpNat0(Zero, Succ(x0)) 41.28/18.87 new_compare13(x0, x1, x2, x3, x4) 41.28/18.87 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), ty_@0) 41.28/18.87 new_esEs21(x0, x1, ty_Char) 41.28/18.87 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_lt17(x0, x1, x2, x3) 41.28/18.87 new_esEs32(x0, x1, ty_Float) 41.28/18.87 new_esEs32(x0, x1, app(ty_[], x2)) 41.28/18.87 new_ltEs21(x0, x1, ty_Int) 41.28/18.87 new_primEqInt(Neg(Zero), Neg(Zero)) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.87 new_primCmpNat0(Succ(x0), Succ(x1)) 41.28/18.87 new_compare11(x0, x1, False) 41.28/18.87 new_ltEs7(x0, x1) 41.28/18.87 new_primPlusNat0(Zero, x0) 41.28/18.87 new_esEs36(x0, x1, ty_@0) 41.28/18.87 new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.87 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.87 new_compare27(x0, x1, False, x2, x3, x4) 41.28/18.87 new_esEs28(x0, x1, ty_Bool) 41.28/18.87 new_sr(x0, x1) 41.28/18.87 new_esEs12(False, True) 41.28/18.87 new_esEs12(True, False) 41.28/18.87 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_ltEs20(x0, x1, ty_Double) 41.28/18.87 new_esEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_ltEs5(LT, GT) 41.28/18.87 new_ltEs5(GT, LT) 41.28/18.87 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.87 new_lt14(x0, x1, x2) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), ty_Bool) 41.28/18.87 new_lt19(x0, x1, app(ty_Maybe, x2)) 41.28/18.87 new_compare33(x0, x1, x2, x3) 41.28/18.87 new_primCmpNat2(Succ(x0), x1) 41.28/18.87 new_ltEs20(x0, x1, ty_@0) 41.28/18.87 new_ltEs20(x0, x1, app(ty_[], x2)) 41.28/18.87 new_lt12(x0, x1) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 41.28/18.87 new_ltEs8(False, False) 41.28/18.87 new_esEs15([], [], x0) 41.28/18.87 new_primCmpNat2(Zero, x0) 41.28/18.87 new_esEs18(x0, x1, ty_@0) 41.28/18.87 new_compare26(Integer(x0), Integer(x1)) 41.28/18.87 new_primCompAux0(x0, x1, x2, x3) 41.28/18.87 new_esEs36(x0, x1, ty_Char) 41.28/18.87 new_esEs31(x0, x1, ty_Bool) 41.28/18.87 new_esEs19(x0, x1, ty_Integer) 41.28/18.87 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_ltEs21(x0, x1, ty_Char) 41.28/18.87 new_esEs18(x0, x1, ty_Bool) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), ty_Double) 41.28/18.87 new_compare14(x0, x1, app(ty_[], x2)) 41.28/18.87 new_compare14(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_esEs7(Just(x0), Just(x1), ty_@0) 41.28/18.87 new_compare10(x0, x1, True, x2, x3) 41.28/18.87 new_compare29(x0, x1, True) 41.28/18.87 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.87 new_ltEs20(x0, x1, ty_Bool) 41.28/18.87 new_esEs28(x0, x1, app(ty_[], x2)) 41.28/18.87 new_esEs7(Just(x0), Just(x1), ty_Bool) 41.28/18.87 new_esEs18(x0, x1, ty_Float) 41.28/18.87 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.87 new_lt10(x0, x1) 41.28/18.87 new_lt18(x0, x1, ty_Float) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 41.28/18.87 new_primEqInt(Pos(Zero), Neg(Zero)) 41.28/18.87 new_primEqInt(Neg(Zero), Pos(Zero)) 41.28/18.87 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_ltEs17(Just(x0), Nothing, x1) 41.28/18.87 new_esEs21(x0, x1, ty_Ordering) 41.28/18.87 new_ltEs20(x0, x1, ty_Int) 41.28/18.87 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 41.28/18.87 new_ltEs18(x0, x1, ty_Integer) 41.28/18.87 new_esEs31(x0, x1, ty_Double) 41.28/18.87 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.87 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.87 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_esEs7(Just(x0), Just(x1), ty_Int) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.87 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.87 new_esEs31(x0, x1, ty_Char) 41.28/18.87 new_lt20(x0, x1, ty_Double) 41.28/18.87 new_lt18(x0, x1, app(ty_[], x2)) 41.28/18.87 new_esEs31(x0, x1, ty_@0) 41.28/18.87 new_esEs25(x0, x1, ty_@0) 41.28/18.87 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_esEs7(Just(x0), Just(x1), ty_Char) 41.28/18.87 new_esEs28(x0, x1, ty_@0) 41.28/18.87 new_esEs31(x0, x1, ty_Int) 41.28/18.87 new_gt1(x0, x1, x2, x3) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.87 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.87 new_esEs7(Just(x0), Just(x1), ty_Double) 41.28/18.87 new_esEs7(Nothing, Just(x0), x1) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.87 new_ltEs21(x0, x1, app(ty_[], x2)) 41.28/18.87 new_esEs28(x0, x1, ty_Float) 41.28/18.87 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 41.28/18.87 new_primEqNat0(Succ(x0), Zero) 41.28/18.87 new_esEs28(x0, x1, app(ty_Ratio, x2)) 41.28/18.87 new_esEs36(x0, x1, ty_Ordering) 41.28/18.87 new_compare14(x0, x1, ty_@0) 41.28/18.87 new_primMulNat0(Succ(x0), Succ(x1)) 41.28/18.87 new_compare23(x0, x1, False, x2, x3) 41.28/18.87 new_esEs20(x0, x1, ty_Float) 41.28/18.87 new_ltEs18(x0, x1, ty_Float) 41.28/18.87 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 41.28/18.87 new_esEs28(x0, x1, ty_Int) 41.28/18.87 new_esEs35(x0, x1, ty_Ordering) 41.28/18.87 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 41.28/18.87 new_ltEs21(x0, x1, ty_Bool) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.87 new_esEs22(x0, x1, ty_Integer) 41.28/18.87 new_ltEs19(x0, x1, ty_Ordering) 41.28/18.87 new_compare114(x0, x1, False, x2, x3) 41.28/18.87 new_esEs15(:(x0, x1), [], x2) 41.28/18.87 new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.87 new_gt0(x0, x1, x2, x3) 41.28/18.87 new_ltEs20(x0, x1, ty_Integer) 41.28/18.87 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_ltEs13(x0, x1, x2) 41.28/18.87 new_esEs28(x0, x1, ty_Char) 41.28/18.87 new_primEqNat0(Succ(x0), Succ(x1)) 41.28/18.87 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_esEs27(x0, x1, app(ty_[], x2)) 41.28/18.87 new_esEs36(x0, x1, ty_Double) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.87 new_esEs35(x0, x1, ty_Int) 41.28/18.87 new_lt20(x0, x1, ty_Float) 41.28/18.87 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_compare24(x0, x1, True) 41.28/18.87 new_esEs7(Just(x0), Just(x1), ty_Integer) 41.28/18.87 new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), ty_Integer) 41.28/18.87 new_ltEs18(x0, x1, ty_Int) 41.28/18.87 new_esEs21(x0, x1, ty_Bool) 41.28/18.87 new_primPlusNat0(Succ(x0), x1) 41.28/18.87 new_esEs25(x0, x1, ty_Bool) 41.28/18.87 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 41.28/18.87 new_esEs20(x0, x1, ty_Int) 41.28/18.87 new_ltEs5(EQ, GT) 41.28/18.87 new_ltEs5(GT, EQ) 41.28/18.87 new_esEs35(x0, x1, ty_Char) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_esEs7(Just(x0), Nothing, x1) 41.28/18.87 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.87 new_compare28(x0, x1, True, x2) 41.28/18.87 new_ltEs18(x0, x1, ty_Char) 41.28/18.87 new_esEs5(Left(x0), Right(x1), x2, x3) 41.28/18.87 new_esEs5(Right(x0), Left(x1), x2, x3) 41.28/18.87 new_esEs20(x0, x1, ty_Char) 41.28/18.87 new_primMulNat0(Succ(x0), Zero) 41.28/18.87 new_esEs20(x0, x1, app(ty_[], x2)) 41.28/18.87 new_esEs8(GT, GT) 41.28/18.87 new_sr0(Integer(x0), Integer(x1)) 41.28/18.87 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.87 new_esEs8(LT, EQ) 41.28/18.87 new_esEs8(EQ, LT) 41.28/18.87 new_ltEs19(x0, x1, ty_Float) 41.28/18.87 new_compare112(x0, x1, False, x2, x3) 41.28/18.87 new_esEs15(:(x0, x1), :(x2, x3), x4) 41.28/18.87 new_primCmpInt(Neg(Zero), Neg(Zero)) 41.28/18.87 new_ltEs17(Just(x0), Just(x1), ty_Ordering) 41.28/18.87 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.87 new_esEs7(Just(x0), Just(x1), ty_Ordering) 41.28/18.87 new_compare25(x0, x1) 41.28/18.87 new_esEs8(LT, LT) 41.28/18.87 new_ltEs19(x0, x1, ty_Char) 41.28/18.87 new_primCmpInt(Pos(Zero), Neg(Zero)) 41.28/18.87 new_primCmpInt(Neg(Zero), Pos(Zero)) 41.28/18.87 new_esEs24(x0, x1, ty_Double) 41.28/18.87 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 41.28/18.87 new_esEs31(x0, x1, ty_Ordering) 41.28/18.87 new_ltEs20(x0, x1, ty_Ordering) 41.28/18.87 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.87 new_esEs24(x0, x1, ty_@0) 41.28/18.87 new_compare11(x0, x1, True) 41.28/18.87 new_esEs32(x0, x1, ty_Int) 41.28/18.88 new_lt19(x0, x1, ty_Double) 41.28/18.88 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_compare10(x0, x1, False, x2, x3) 41.28/18.88 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_ltEs17(Nothing, Just(x0), x1) 41.28/18.88 new_ltEs8(True, False) 41.28/18.88 new_ltEs8(False, True) 41.28/18.88 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_ltEs19(x0, x1, ty_Int) 41.28/18.88 new_esEs25(x0, x1, ty_Integer) 41.28/18.88 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_lt8(x0, x1) 41.28/18.88 new_esEs31(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_esEs31(x0, x1, ty_Integer) 41.28/18.88 new_esEs27(x0, x1, ty_@0) 41.28/18.88 new_esEs28(x0, x1, ty_Ordering) 41.28/18.88 new_esEs32(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_pePe(True, x0) 41.28/18.88 new_esEs19(x0, x1, ty_Double) 41.28/18.88 new_esEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_esEs19(x0, x1, ty_@0) 41.28/18.88 new_esEs32(x0, x1, ty_Char) 41.28/18.88 new_esEs35(x0, x1, ty_Integer) 41.28/18.88 new_esEs21(x0, x1, ty_Float) 41.28/18.88 new_esEs25(x0, x1, ty_Ordering) 41.28/18.88 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 41.28/18.88 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 41.28/18.88 new_esEs21(x0, x1, app(ty_[], x2)) 41.28/18.88 new_asAs(False, x0) 41.28/18.88 new_fsEs(x0) 41.28/18.88 new_esEs36(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 41.28/18.88 new_esEs32(x0, x1, ty_Bool) 41.28/18.88 new_esEs36(x0, x1, app(ty_[], x2)) 41.28/18.88 new_primPlusNat1(Succ(x0), Succ(x1)) 41.28/18.88 new_lt19(x0, x1, ty_@0) 41.28/18.88 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 41.28/18.88 new_ltEs19(x0, x1, ty_Bool) 41.28/18.88 new_lt18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_esEs27(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_compare110(x0, x1, True, x2, x3, x4) 41.28/18.88 new_esEs27(x0, x1, ty_Double) 41.28/18.88 new_compare14(x0, x1, ty_Double) 41.28/18.88 new_lt18(x0, x1, ty_Int) 41.28/18.88 new_esEs20(x0, x1, ty_Bool) 41.28/18.88 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_esEs26(x0, x1, ty_Ordering) 41.28/18.88 new_esEs22(x0, x1, ty_Int) 41.28/18.88 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.88 new_compare3([], :(x0, x1), x2) 41.28/18.88 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_ltEs19(x0, x1, ty_@0) 41.28/18.88 new_compare24(x0, x1, False) 41.28/18.88 new_compare112(x0, x1, True, x2, x3) 41.28/18.88 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.88 new_esEs27(x0, x1, ty_Int) 41.28/18.88 new_esEs35(x0, x1, ty_Bool) 41.28/18.88 new_primCompAux00(x0, LT) 41.28/18.88 new_esEs20(x0, x1, ty_@0) 41.28/18.88 new_compare23(x0, x1, True, x2, x3) 41.28/18.88 new_compare14(x0, x1, ty_Float) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 41.28/18.88 new_lt20(x0, x1, ty_Integer) 41.28/18.88 new_primCmpNat0(Succ(x0), Zero) 41.28/18.88 new_primMulNat0(Zero, Zero) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.88 new_lt18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_compare16(x0, x1, x2, x3) 41.28/18.88 new_lt4(x0, x1) 41.28/18.88 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_esEs15([], :(x0, x1), x2) 41.28/18.88 new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_lt20(x0, x1, ty_Bool) 41.28/18.88 new_ltEs21(x0, x1, ty_Float) 41.28/18.88 new_lt6(x0, x1, x2) 41.28/18.88 new_compare14(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_pePe(False, x0) 41.28/18.88 new_esEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_ltEs14(x0, x1) 41.28/18.88 new_compare9(@0, @0) 41.28/18.88 new_compare8(Char(x0), Char(x1)) 41.28/18.88 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 41.28/18.88 new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.88 new_esEs23(x0, x1, ty_Int) 41.28/18.88 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.88 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_esEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.88 new_esEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_esEs32(x0, x1, ty_Ordering) 41.28/18.88 new_lt18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_compare14(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_ltEs19(x0, x1, ty_Integer) 41.28/18.88 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.88 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.88 new_esEs28(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 41.28/18.88 new_gt2(x0, x1, x2, x3) 41.28/18.88 new_esEs31(x0, x1, app(ty_[], x2)) 41.28/18.88 new_esEs24(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_lt19(x0, x1, ty_Ordering) 41.28/18.88 new_compare210(Left(x0), Right(x1), False, x2, x3) 41.28/18.88 new_compare210(Right(x0), Left(x1), False, x2, x3) 41.28/18.88 new_not(True) 41.28/18.88 new_ltEs20(x0, x1, ty_Float) 41.28/18.88 new_lt13(x0, x1, x2, x3) 41.28/18.88 new_lt9(x0, x1) 41.28/18.88 new_esEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_lt20(x0, x1, app(ty_[], x2)) 41.28/18.88 new_primCmpNat1(x0, Zero) 41.28/18.88 new_compare27(x0, x1, True, x2, x3, x4) 41.28/18.88 new_esEs17(:%(x0, x1), :%(x2, x3), x4) 41.28/18.88 new_esEs18(x0, x1, ty_Double) 41.28/18.88 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_esEs8(EQ, GT) 41.28/18.88 new_esEs8(GT, EQ) 41.28/18.88 new_esEs12(False, False) 41.28/18.88 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.88 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.88 new_compare14(x0, x1, ty_Integer) 41.28/18.88 new_esEs24(x0, x1, ty_Ordering) 41.28/18.88 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 41.28/18.88 new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.88 new_esEs25(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 41.28/18.88 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 41.28/18.88 new_ltEs19(x0, x1, app(ty_[], x2)) 41.28/18.88 new_compare32(x0, x1, x2, x3) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.88 new_ltEs6(x0, x1) 41.28/18.88 new_esEs28(x0, x1, ty_Double) 41.28/18.88 new_esEs7(Just(x0), Just(x1), ty_Float) 41.28/18.88 new_esEs20(x0, x1, ty_Integer) 41.28/18.88 new_compare113(x0, x1, True, x2) 41.28/18.88 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_lt20(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_esEs31(x0, x1, ty_Float) 41.28/18.88 new_esEs27(x0, x1, ty_Ordering) 41.28/18.88 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 41.28/18.88 new_lt15(x0, x1) 41.28/18.88 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.88 new_esEs32(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_compare210(Right(x0), Right(x1), False, x2, x3) 41.28/18.88 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_lt19(x0, x1, ty_Integer) 41.28/18.88 new_esEs26(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.88 new_lt7(x0, x1, x2, x3, x4) 41.28/18.88 new_esEs36(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 41.28/18.88 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 41.28/18.88 new_esEs26(x0, x1, ty_Int) 41.28/18.88 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 41.28/18.88 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.88 new_compare111(x0, x1, False) 41.28/18.88 new_esEs35(x0, x1, ty_@0) 41.28/18.88 new_lt18(x0, x1, ty_Double) 41.28/18.88 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_esEs25(x0, x1, ty_Double) 41.28/18.88 new_lt18(x0, x1, ty_Char) 41.28/18.88 new_lt20(x0, x1, ty_Char) 41.28/18.88 new_lt20(x0, x1, ty_@0) 41.28/18.88 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_esEs25(x0, x1, ty_Char) 41.28/18.88 new_lt18(x0, x1, ty_@0) 41.28/18.88 new_esEs19(x0, x1, ty_Ordering) 41.28/18.88 new_esEs18(x0, x1, ty_Int) 41.28/18.88 new_esEs18(x0, x1, app(ty_[], x2)) 41.28/18.88 new_esEs35(x0, x1, ty_Float) 41.28/18.88 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_esEs26(x0, x1, ty_Double) 41.28/18.88 new_esEs25(x0, x1, app(ty_[], x2)) 41.28/18.88 new_esEs26(x0, x1, ty_Char) 41.28/18.88 new_esEs27(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_lt20(x0, x1, ty_Int) 41.28/18.88 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 41.28/18.88 new_esEs11(Char(x0), Char(x1)) 41.28/18.88 new_compare210(x0, x1, True, x2, x3) 41.28/18.88 new_ltEs5(LT, LT) 41.28/18.88 new_compare114(x0, x1, True, x2, x3) 41.28/18.88 new_esEs25(x0, x1, ty_Int) 41.28/18.88 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_primCmpInt(Pos(Zero), Pos(Zero)) 41.28/18.88 new_esEs35(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.88 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 41.28/18.88 new_esEs18(x0, x1, ty_Char) 41.28/18.88 new_esEs21(x0, x1, ty_Integer) 41.28/18.88 new_lt19(x0, x1, app(ty_[], x2)) 41.28/18.88 new_esEs14(@0, @0) 41.28/18.88 new_ltEs18(x0, x1, ty_Double) 41.28/18.88 new_compare31(x0, x1, x2, x3) 41.28/18.88 new_esEs20(x0, x1, ty_Ordering) 41.28/18.88 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.88 new_ltEs18(x0, x1, ty_Ordering) 41.28/18.88 new_esEs24(x0, x1, ty_Char) 41.28/18.88 new_esEs36(x0, x1, ty_Float) 41.28/18.88 new_ltEs5(LT, EQ) 41.28/18.88 new_ltEs5(EQ, LT) 41.28/18.88 new_esEs20(x0, x1, ty_Double) 41.28/18.88 new_esEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_esEs24(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_esEs27(x0, x1, ty_Integer) 41.28/18.88 new_ltEs5(GT, GT) 41.28/18.88 new_ltEs19(x0, x1, ty_Double) 41.28/18.88 new_esEs26(x0, x1, ty_Bool) 41.28/18.88 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_compare15(x0, x1) 41.28/18.88 new_compare30(x0, x1, x2, x3) 41.28/18.88 new_compare14(x0, x1, ty_Bool) 41.28/18.88 new_esEs26(x0, x1, ty_@0) 41.28/18.88 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_lt19(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 41.28/18.88 new_lt18(x0, x1, ty_Integer) 41.28/18.88 new_esEs10(Integer(x0), Integer(x1)) 41.28/18.88 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.88 new_esEs8(LT, GT) 41.28/18.88 new_esEs8(GT, LT) 41.28/18.88 new_esEs9(x0, x1) 41.28/18.88 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.88 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_ltEs21(x0, x1, ty_Integer) 41.28/18.88 new_lt18(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_lt18(x0, x1, ty_Bool) 41.28/18.88 new_compare17(:%(x0, x1), :%(x2, x3), ty_Int) 41.28/18.88 new_esEs26(x0, x1, ty_Integer) 41.28/18.88 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.88 new_esEs36(x0, x1, ty_Int) 41.28/18.88 new_esEs32(x0, x1, ty_@0) 41.28/18.88 new_compare210(Left(x0), Left(x1), False, x2, x3) 41.28/18.88 new_esEs23(x0, x1, ty_Integer) 41.28/18.88 new_gt(x0, x1, x2, x3) 41.28/18.88 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_compare110(x0, x1, False, x2, x3, x4) 41.28/18.88 new_ltEs21(x0, x1, ty_@0) 41.28/18.88 new_asAs(True, x0) 41.28/18.88 new_esEs35(x0, x1, ty_Double) 41.28/18.88 new_compare12(x0, x1, x2) 41.28/18.88 new_esEs26(x0, x1, app(ty_[], x2)) 41.28/18.88 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_lt16(x0, x1) 41.28/18.88 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_primCompAux00(x0, EQ) 41.28/18.88 new_compare111(x0, x1, True) 41.28/18.88 new_primPlusNat1(Zero, Succ(x0)) 41.28/18.88 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.88 new_esEs7(Nothing, Nothing, x0) 41.28/18.88 new_esEs24(x0, x1, ty_Float) 41.28/18.88 new_primEqNat0(Zero, Zero) 41.28/18.88 new_compare14(x0, x1, ty_Char) 41.28/18.88 new_esEs24(x0, x1, ty_Bool) 41.28/18.88 new_lt19(x0, x1, ty_Bool) 41.28/18.88 new_esEs12(True, True) 41.28/18.88 new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.88 new_not(False) 41.28/18.88 new_ltEs17(Just(x0), Just(x1), ty_Float) 41.28/18.88 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.88 new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.88 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_compare113(x0, x1, False, x2) 41.28/18.88 new_esEs24(x0, x1, app(ty_[], x2)) 41.28/18.88 new_primPlusNat1(Succ(x0), Zero) 41.28/18.88 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.88 new_compare14(x0, x1, ty_Int) 41.28/18.88 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_esEs19(x0, x1, ty_Bool) 41.28/18.88 new_esEs21(x0, x1, ty_@0) 41.28/18.88 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.88 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_compare17(:%(x0, x1), :%(x2, x3), ty_Integer) 41.28/18.88 new_ltEs10(x0, x1) 41.28/18.88 new_esEs32(x0, x1, ty_Double) 41.28/18.88 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.88 new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.88 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 41.28/18.88 new_ltEs8(True, True) 41.28/18.88 new_compare19(x0, x1, x2, x3) 41.28/18.88 new_esEs19(x0, x1, ty_Float) 41.28/18.88 new_lt19(x0, x1, ty_Float) 41.28/18.88 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 41.28/18.88 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.88 new_esEs13(Double(x0, x1), Double(x2, x3)) 41.28/18.88 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_compare3(:(x0, x1), [], x2) 41.28/18.88 new_esEs24(x0, x1, ty_Int) 41.28/18.88 new_ltEs5(EQ, EQ) 41.28/18.88 new_esEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_esEs26(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_esEs27(x0, x1, ty_Bool) 41.28/18.88 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.88 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.88 new_esEs35(x0, x1, app(ty_[], x2)) 41.28/18.88 new_lt5(x0, x1) 41.28/18.88 new_esEs16(Float(x0, x1), Float(x2, x3)) 41.28/18.88 new_lt18(x0, x1, ty_Ordering) 41.28/18.88 new_esEs19(x0, x1, ty_Char) 41.28/18.88 new_esEs35(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_lt19(x0, x1, ty_Char) 41.28/18.88 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 41.28/18.88 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.88 new_ltEs11(x0, x1, x2) 41.28/18.88 new_esEs18(x0, x1, ty_Ordering) 41.28/18.88 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.88 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.88 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.88 new_lt18(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_lt20(x0, x1, ty_Ordering) 41.28/18.88 new_ltEs16(x0, x1) 41.28/18.88 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 41.28/18.88 new_primCmpNat1(x0, Succ(x1)) 41.28/18.88 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_primMulInt(Pos(x0), Neg(x1)) 41.28/18.88 new_primMulInt(Neg(x0), Pos(x1)) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 41.28/18.88 new_esEs19(x0, x1, ty_Int) 41.28/18.88 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.88 new_compare14(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_compare7(x0, x1) 41.28/18.88 new_esEs27(x0, x1, ty_Char) 41.28/18.88 new_primMulNat0(Zero, Succ(x0)) 41.28/18.88 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.88 new_primCmpNat0(Zero, Zero) 41.28/18.88 new_primEqNat0(Zero, Succ(x0)) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.88 new_lt11(x0, x1, x2) 41.28/18.88 new_lt19(x0, x1, ty_Int) 41.28/18.88 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.88 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 41.28/18.88 We have to consider all minimal (P,Q,R)-chains. 41.28/18.88 ---------------------------------------- 41.28/18.88 41.28/18.88 (53) QDPSizeChangeProof (EQUIVALENT) 41.28/18.88 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. 41.28/18.88 41.28/18.88 From the DPs we obtained the following set of size-change graphs: 41.28/18.88 *new_splitLT(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Left(yvy400), h, ba, bb) 41.28/18.88 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8, 5 >= 9 41.28/18.88 41.28/18.88 41.28/18.88 *new_splitLT3(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitLT2(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Left(yvy400), Left(yvy300), new_esEs35(yvy400, yvy300, h), h, ba), LT), h, ba, bb) 41.28/18.88 The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9, 9 >= 10 41.28/18.88 41.28/18.88 41.28/18.88 *new_splitLT3(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitLT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Left(yvy400), Right(yvy300), False, h, ba), LT), h, ba, bb) 41.28/18.88 The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 > 6, 7 >= 8, 8 >= 9, 9 >= 10 41.28/18.88 41.28/18.88 41.28/18.88 *new_splitLT2(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bc, bd, be) -> new_splitLT(yvy18, yvy20, bc, bd, be) 41.28/18.88 The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 41.28/18.88 41.28/18.88 41.28/18.88 *new_splitLT2(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, bc, bd, be) -> new_splitLT1(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_gt(yvy20, yvy15, bc, bd), bc, bd, be) 41.28/18.88 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 41.28/18.88 41.28/18.88 41.28/18.88 *new_splitLT20(yvy300, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy400, True, h, ba, bb) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, Left(yvy400), h, ba, bb) 41.28/18.88 The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 8 >= 7, 9 >= 8, 10 >= 9 41.28/18.88 41.28/18.88 41.28/18.88 *new_splitLT20(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_gt0(yvy400, yvy300, h, ba), h, ba, bb) 41.28/18.88 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 41.28/18.88 41.28/18.88 41.28/18.88 *new_splitLT1(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, bc, bd, be) -> new_splitLT(yvy19, yvy20, bc, bd, be) 41.28/18.88 The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 41.28/18.88 41.28/18.88 41.28/18.88 *new_splitLT10(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitLT(yvy34, yvy400, h, ba, bb) 41.28/18.88 The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4, 10 >= 5 41.28/18.88 41.28/18.88 41.28/18.88 ---------------------------------------- 41.28/18.88 41.28/18.88 (54) 41.28/18.88 YES 41.28/18.88 41.28/18.88 ---------------------------------------- 41.28/18.88 41.28/18.88 (55) 41.28/18.88 Obligation: 41.28/18.88 Q DP problem: 41.28/18.88 The TRS P consists of the following rules: 41.28/18.88 41.28/18.88 new_esEs3(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bde), bdf)) -> new_esEs1(yvy4000, yvy3000, bde, bdf) 41.28/18.88 new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_[], bc), bb) -> new_esEs0(yvy4000, yvy3000, bc) 41.28/18.88 new_esEs1(Left(yvy4000), Left(yvy3000), app(app(ty_Either, fc), fd), fa) -> new_esEs1(yvy4000, yvy3000, fc, fd) 41.28/18.88 new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_Maybe, baf), hf, hg) -> new_esEs3(yvy4000, yvy3000, baf) 41.28/18.88 new_esEs1(Right(yvy4000), Right(yvy3000), gb, app(ty_[], ge)) -> new_esEs0(yvy4000, yvy3000, ge) 41.28/18.88 new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, hf, app(ty_[], bcc)) -> new_esEs0(yvy4002, yvy3002, bcc) 41.28/18.88 new_esEs1(Right(yvy4000), Right(yvy3000), gb, app(ty_Maybe, hc)) -> new_esEs3(yvy4000, yvy3000, hc) 41.28/18.88 new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, hf, app(app(ty_@2, bca), bcb)) -> new_esEs(yvy4002, yvy3002, bca, bcb) 41.28/18.88 new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cb, app(ty_[], ce)) -> new_esEs0(yvy4001, yvy3001, ce) 41.28/18.88 new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, hf, app(ty_Maybe, bda)) -> new_esEs3(yvy4002, yvy3002, bda) 41.28/18.88 new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_@2, hd), he), hf, hg) -> new_esEs(yvy4000, yvy3000, hd, he) 41.28/18.88 new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_[], hh), hf, hg) -> new_esEs0(yvy4000, yvy3000, hh) 41.28/18.88 new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_@2, h), ba), bb) -> new_esEs(yvy4000, yvy3000, h, ba) 41.28/18.88 new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, app(ty_Maybe, bbh), hg) -> new_esEs3(yvy4001, yvy3001, bbh) 41.28/18.88 new_esEs0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_@2, de), df)) -> new_esEs(yvy4000, yvy3000, de, df) 41.28/18.88 new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, app(ty_[], bbb), hg) -> new_esEs0(yvy4001, yvy3001, bbb) 41.28/18.88 new_esEs3(Just(yvy4000), Just(yvy3000), app(ty_Maybe, beb)) -> new_esEs3(yvy4000, yvy3000, beb) 41.28/18.88 new_esEs1(Right(yvy4000), Right(yvy3000), gb, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs2(yvy4000, yvy3000, gh, ha, hb) 41.28/18.88 new_esEs1(Left(yvy4000), Left(yvy3000), app(ty_[], fb), fa) -> new_esEs0(yvy4000, yvy3000, fb) 41.28/18.88 new_esEs0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_Either, dh), ea)) -> new_esEs1(yvy4000, yvy3000, dh, ea) 41.28/18.88 new_esEs0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_[], dg)) -> new_esEs0(yvy4000, yvy3000, dg) 41.28/18.88 new_esEs3(Just(yvy4000), Just(yvy3000), app(ty_[], bdd)) -> new_esEs0(yvy4000, yvy3000, bdd) 41.28/18.88 new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cb, app(ty_Maybe, dd)) -> new_esEs3(yvy4001, yvy3001, dd) 41.28/18.88 new_esEs0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(yvy4000, yvy3000, eb, ec, ed) 41.28/18.88 new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, app(app(app(ty_@3, bbe), bbf), bbg), hg) -> new_esEs2(yvy4001, yvy3001, bbe, bbf, bbg) 41.28/18.88 new_esEs1(Left(yvy4000), Left(yvy3000), app(ty_Maybe, ga), fa) -> new_esEs3(yvy4000, yvy3000, ga) 41.28/18.88 new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_Either, baa), bab), hf, hg) -> new_esEs1(yvy4000, yvy3000, baa, bab) 41.28/18.88 new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_Maybe, ca), bb) -> new_esEs3(yvy4000, yvy3000, ca) 41.28/18.88 new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(app(ty_@3, bac), bad), bae), hf, hg) -> new_esEs2(yvy4000, yvy3000, bac, bad, bae) 41.28/18.88 new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(app(ty_@3, bf), bg), bh), bb) -> new_esEs2(yvy4000, yvy3000, bf, bg, bh) 41.28/18.88 new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cb, app(app(ty_@2, cc), cd)) -> new_esEs(yvy4001, yvy3001, cc, cd) 41.28/18.88 new_esEs0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ef) -> new_esEs0(yvy4001, yvy3001, ef) 41.28/18.88 new_esEs1(Left(yvy4000), Left(yvy3000), app(app(ty_@2, eg), eh), fa) -> new_esEs(yvy4000, yvy3000, eg, eh) 41.28/18.88 new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cb, app(app(ty_Either, cf), cg)) -> new_esEs1(yvy4001, yvy3001, cf, cg) 41.28/18.88 new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cb, app(app(app(ty_@3, da), db), dc)) -> new_esEs2(yvy4001, yvy3001, da, db, dc) 41.28/18.88 new_esEs0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_Maybe, ee)) -> new_esEs3(yvy4000, yvy3000, ee) 41.28/18.88 new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_Either, bd), be), bb) -> new_esEs1(yvy4000, yvy3000, bd, be) 41.28/18.88 new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, app(app(ty_Either, bbc), bbd), hg) -> new_esEs1(yvy4001, yvy3001, bbc, bbd) 41.28/18.88 new_esEs3(Just(yvy4000), Just(yvy3000), app(app(ty_@2, bdb), bdc)) -> new_esEs(yvy4000, yvy3000, bdb, bdc) 41.28/18.88 new_esEs1(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, ff), fg), fh), fa) -> new_esEs2(yvy4000, yvy3000, ff, fg, fh) 41.28/18.88 new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, hf, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs2(yvy4002, yvy3002, bcf, bcg, bch) 41.28/18.88 new_esEs1(Right(yvy4000), Right(yvy3000), gb, app(app(ty_@2, gc), gd)) -> new_esEs(yvy4000, yvy3000, gc, gd) 41.28/18.88 new_esEs1(Right(yvy4000), Right(yvy3000), gb, app(app(ty_Either, gf), gg)) -> new_esEs1(yvy4000, yvy3000, gf, gg) 41.28/18.88 new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, app(app(ty_@2, bah), bba), hg) -> new_esEs(yvy4001, yvy3001, bah, bba) 41.28/18.88 new_esEs3(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs2(yvy4000, yvy3000, bdg, bdh, bea) 41.28/18.88 new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, hf, app(app(ty_Either, bcd), bce)) -> new_esEs1(yvy4002, yvy3002, bcd, bce) 41.28/18.88 41.28/18.88 R is empty. 41.28/18.88 Q is empty. 41.28/18.88 We have to consider all minimal (P,Q,R)-chains. 41.28/18.88 ---------------------------------------- 41.28/18.88 41.28/18.88 (56) QDPSizeChangeProof (EQUIVALENT) 41.28/18.88 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. 41.28/18.88 41.28/18.88 From the DPs we obtained the following set of size-change graphs: 41.28/18.88 *new_esEs0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_Maybe, ee)) -> new_esEs3(yvy4000, yvy3000, ee) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_@2, de), df)) -> new_esEs(yvy4000, yvy3000, de, df) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_Either, dh), ea)) -> new_esEs1(yvy4000, yvy3000, dh, ea) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs3(Just(yvy4000), Just(yvy3000), app(ty_Maybe, beb)) -> new_esEs3(yvy4000, yvy3000, beb) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(yvy4000, yvy3000, eb, ec, ed) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs3(Just(yvy4000), Just(yvy3000), app(app(ty_@2, bdb), bdc)) -> new_esEs(yvy4000, yvy3000, bdb, bdc) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs3(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bde), bdf)) -> new_esEs1(yvy4000, yvy3000, bde, bdf) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs3(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs2(yvy4000, yvy3000, bdg, bdh, bea) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs3(Just(yvy4000), Just(yvy3000), app(ty_[], bdd)) -> new_esEs0(yvy4000, yvy3000, bdd) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs1(Right(yvy4000), Right(yvy3000), gb, app(ty_Maybe, hc)) -> new_esEs3(yvy4000, yvy3000, hc) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs1(Left(yvy4000), Left(yvy3000), app(ty_Maybe, ga), fa) -> new_esEs3(yvy4000, yvy3000, ga) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs1(Left(yvy4000), Left(yvy3000), app(app(ty_@2, eg), eh), fa) -> new_esEs(yvy4000, yvy3000, eg, eh) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs1(Right(yvy4000), Right(yvy3000), gb, app(app(ty_@2, gc), gd)) -> new_esEs(yvy4000, yvy3000, gc, gd) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs1(Left(yvy4000), Left(yvy3000), app(app(ty_Either, fc), fd), fa) -> new_esEs1(yvy4000, yvy3000, fc, fd) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs1(Right(yvy4000), Right(yvy3000), gb, app(app(ty_Either, gf), gg)) -> new_esEs1(yvy4000, yvy3000, gf, gg) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs1(Right(yvy4000), Right(yvy3000), gb, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs2(yvy4000, yvy3000, gh, ha, hb) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs1(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, ff), fg), fh), fa) -> new_esEs2(yvy4000, yvy3000, ff, fg, fh) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs1(Right(yvy4000), Right(yvy3000), gb, app(ty_[], ge)) -> new_esEs0(yvy4000, yvy3000, ge) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs1(Left(yvy4000), Left(yvy3000), app(ty_[], fb), fa) -> new_esEs0(yvy4000, yvy3000, fb) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cb, app(ty_Maybe, dd)) -> new_esEs3(yvy4001, yvy3001, dd) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_Maybe, ca), bb) -> new_esEs3(yvy4000, yvy3000, ca) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_Maybe, baf), hf, hg) -> new_esEs3(yvy4000, yvy3000, baf) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, hf, app(ty_Maybe, bda)) -> new_esEs3(yvy4002, yvy3002, bda) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, app(ty_Maybe, bbh), hg) -> new_esEs3(yvy4001, yvy3001, bbh) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_[], dg)) -> new_esEs0(yvy4000, yvy3000, dg) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs0(:(yvy4000, yvy4001), :(yvy3000, yvy3001), ef) -> new_esEs0(yvy4001, yvy3001, ef) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_@2, h), ba), bb) -> new_esEs(yvy4000, yvy3000, h, ba) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cb, app(app(ty_@2, cc), cd)) -> new_esEs(yvy4001, yvy3001, cc, cd) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, hf, app(app(ty_@2, bca), bcb)) -> new_esEs(yvy4002, yvy3002, bca, bcb) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_@2, hd), he), hf, hg) -> new_esEs(yvy4000, yvy3000, hd, he) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, app(app(ty_@2, bah), bba), hg) -> new_esEs(yvy4001, yvy3001, bah, bba) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cb, app(app(ty_Either, cf), cg)) -> new_esEs1(yvy4001, yvy3001, cf, cg) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_Either, bd), be), bb) -> new_esEs1(yvy4000, yvy3000, bd, be) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_Either, baa), bab), hf, hg) -> new_esEs1(yvy4000, yvy3000, baa, bab) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, app(app(ty_Either, bbc), bbd), hg) -> new_esEs1(yvy4001, yvy3001, bbc, bbd) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, hf, app(app(ty_Either, bcd), bce)) -> new_esEs1(yvy4002, yvy3002, bcd, bce) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(app(ty_@3, bf), bg), bh), bb) -> new_esEs2(yvy4000, yvy3000, bf, bg, bh) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cb, app(app(app(ty_@3, da), db), dc)) -> new_esEs2(yvy4001, yvy3001, da, db, dc) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, app(app(app(ty_@3, bbe), bbf), bbg), hg) -> new_esEs2(yvy4001, yvy3001, bbe, bbf, bbg) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(app(ty_@3, bac), bad), bae), hf, hg) -> new_esEs2(yvy4000, yvy3000, bac, bad, bae) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, hf, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs2(yvy4002, yvy3002, bcf, bcg, bch) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_[], bc), bb) -> new_esEs0(yvy4000, yvy3000, bc) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), cb, app(ty_[], ce)) -> new_esEs0(yvy4001, yvy3001, ce) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, hf, app(ty_[], bcc)) -> new_esEs0(yvy4002, yvy3002, bcc) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_[], hh), hf, hg) -> new_esEs0(yvy4000, yvy3000, hh) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 41.28/18.88 41.28/18.88 41.28/18.88 *new_esEs2(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bag, app(ty_[], bbb), hg) -> new_esEs0(yvy4001, yvy3001, bbb) 41.28/18.88 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 41.28/18.88 41.28/18.88 41.28/18.88 ---------------------------------------- 41.28/18.88 41.28/18.88 (57) 41.28/18.88 YES 41.28/18.88 41.28/18.88 ---------------------------------------- 41.28/18.88 41.28/18.88 (58) 41.28/18.88 Obligation: 41.28/18.88 Q DP problem: 41.28/18.88 The TRS P consists of the following rules: 41.28/18.88 41.28/18.88 new_primMulNat(Succ(yvy400100), Succ(yvy300000)) -> new_primMulNat(yvy400100, Succ(yvy300000)) 41.28/18.88 41.28/18.88 R is empty. 41.28/18.88 Q is empty. 41.28/18.88 We have to consider all minimal (P,Q,R)-chains. 41.28/18.88 ---------------------------------------- 41.28/18.88 41.28/18.88 (59) QDPSizeChangeProof (EQUIVALENT) 41.28/18.88 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. 41.28/18.88 41.28/18.88 From the DPs we obtained the following set of size-change graphs: 41.28/18.88 *new_primMulNat(Succ(yvy400100), Succ(yvy300000)) -> new_primMulNat(yvy400100, Succ(yvy300000)) 41.28/18.88 The graph contains the following edges 1 > 1, 2 >= 2 41.28/18.88 41.28/18.88 41.28/18.88 ---------------------------------------- 41.28/18.88 41.28/18.88 (60) 41.28/18.88 YES 41.28/18.88 41.28/18.88 ---------------------------------------- 41.28/18.88 41.28/18.88 (61) 41.28/18.88 Obligation: 41.28/18.88 Q DP problem: 41.28/18.88 The TRS P consists of the following rules: 41.28/18.88 41.28/18.88 new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba, bb) -> new_plusFM(new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba, bb), yvy44, h, ba, bb) 41.28/18.88 new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba, bb) -> new_plusFM(new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba, bb), yvy43, h, ba, bb) 41.28/18.88 41.28/18.88 The TRS R consists of the following rules: 41.28/18.88 41.28/18.88 new_esEs33(yvy400, yvy300, app(app(ty_Either, baa), bab)) -> new_esEs5(yvy400, yvy300, baa, bab) 41.28/18.88 new_ltEs20(yvy79002, yvy80002, app(ty_[], dhc)) -> new_ltEs11(yvy79002, yvy80002, dhc) 41.28/18.88 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 41.28/18.88 new_ltEs21(yvy79001, yvy80001, ty_Bool) -> new_ltEs8(yvy79001, yvy80001) 41.28/18.88 new_pePe(True, yvy255) -> True 41.28/18.88 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Ordering, bab) -> new_esEs8(yvy4000, yvy3000) 41.28/18.88 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Ratio, bce)) -> new_ltEs13(yvy79000, yvy80000, bce) 41.28/18.88 new_ltEs12(Right(yvy79000), Right(yvy80000), bff, app(ty_Ratio, cgg)) -> new_ltEs13(yvy79000, yvy80000, cgg) 41.28/18.88 new_esEs19(yvy4001, yvy3001, app(ty_Ratio, dcc)) -> new_esEs17(yvy4001, yvy3001, dcc) 41.28/18.88 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.88 new_esEs34(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 41.28/18.88 new_ltEs12(Right(yvy79000), Right(yvy80000), bff, ty_Double) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.88 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 41.28/18.88 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.88 new_esEs33(yvy400, yvy300, ty_Int) -> new_esEs9(yvy400, yvy300) 41.28/18.88 new_splitGT25(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitGT4(yvy34, yvy400, h, ba, bb) 41.28/18.88 new_esEs9(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) 41.28/18.88 new_lt20(yvy79000, yvy80000, app(app(ty_Either, bhe), bhf)) -> new_lt17(yvy79000, yvy80000, bhe, bhf) 41.28/18.88 new_esEs24(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 41.28/18.88 new_esEs30(yvy400, yvy500, ty_Char) -> new_esEs11(yvy400, yvy500) 41.28/18.88 new_splitGT25(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitGT14(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare32(yvy400, yvy300, h, ba), LT), h, ba, bb) 41.28/18.88 new_esEs28(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 41.28/18.88 new_ltEs12(Left(yvy79000), Right(yvy80000), bff, bfg) -> True 41.28/18.88 new_esEs28(yvy79000, yvy80000, app(ty_Maybe, gb)) -> new_esEs7(yvy79000, yvy80000, gb) 41.28/18.88 new_esEs18(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.88 new_lt19(yvy79001, yvy80001, ty_Bool) -> new_lt16(yvy79001, yvy80001) 41.28/18.88 new_splitGT26(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitGT5(yvy34, yvy400, h, ba, bb) 41.28/18.88 new_esEs26(yvy4000, yvy3000, app(ty_[], caa)) -> new_esEs15(yvy4000, yvy3000, caa) 41.28/18.88 new_esEs36(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 41.28/18.88 new_splitLT24(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, fg, fh, ga) -> new_splitLT5(yvy18, yvy20, fg, fh, ga) 41.28/18.88 new_esEs32(yvy20, yvy15, ty_Double) -> new_esEs13(yvy20, yvy15) 41.28/18.88 new_compare14(yvy79000, yvy80000, app(ty_[], dg)) -> new_compare3(yvy79000, yvy80000, dg) 41.28/18.88 new_compare3([], [], ce) -> EQ 41.28/18.88 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT 41.28/18.88 new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs8(new_primCmpInt0(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) 41.28/18.88 new_esEs31(yvy35, yvy30, app(ty_Ratio, fd)) -> new_esEs17(yvy35, yvy30, fd) 41.28/18.88 new_lt20(yvy79000, yvy80000, app(app(ty_@2, bc), bd)) -> new_lt13(yvy79000, yvy80000, bc, bd) 41.28/18.88 new_esEs29(yvy400, yvy500, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs6(yvy400, yvy500, bac, bad, bae) 41.28/18.88 new_ltEs14(yvy7900, yvy8000) -> new_fsEs(new_compare18(yvy7900, yvy8000)) 41.28/18.88 new_esEs24(yvy79000, yvy80000, app(app(ty_@2, ddg), ddh)) -> new_esEs4(yvy79000, yvy80000, ddg, ddh) 41.28/18.88 new_lt18(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 41.28/18.88 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT 41.28/18.88 new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.88 new_ltEs20(yvy79002, yvy80002, ty_Integer) -> new_ltEs10(yvy79002, yvy80002) 41.28/18.88 new_esEs5(Right(yvy4000), Right(yvy3000), baa, app(app(ty_@2, cdh), cea)) -> new_esEs4(yvy4000, yvy3000, cdh, cea) 41.28/18.88 new_esEs32(yvy20, yvy15, ty_Float) -> new_esEs16(yvy20, yvy15) 41.28/18.88 new_esEs5(Right(yvy4000), Right(yvy3000), baa, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.88 new_not(True) -> False 41.28/18.88 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.88 new_lt18(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 41.28/18.88 new_compare24(yvy79000, yvy80000, False) -> new_compare11(yvy79000, yvy80000, new_ltEs5(yvy79000, yvy80000)) 41.28/18.88 new_primCompAux00(yvy260, LT) -> LT 41.28/18.88 new_esEs21(yvy4000, yvy3000, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs6(yvy4000, yvy3000, beb, bec, bed) 41.28/18.88 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Integer, bfg) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.88 new_esEs28(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 41.28/18.88 new_esEs36(yvy400, yvy300, app(ty_[], bba)) -> new_esEs15(yvy400, yvy300, bba) 41.28/18.88 new_ltEs19(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 41.28/18.88 new_esEs21(yvy4000, yvy3000, app(ty_Ratio, bee)) -> new_esEs17(yvy4000, yvy3000, bee) 41.28/18.88 new_mkBalBranch6MkBalBranch4(yvy107, yvy50, yvy51, Branch(yvy540, yvy541, yvy542, yvy543, yvy544), True, h, ba, bb) -> new_mkBalBranch6MkBalBranch01(yvy107, yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, new_lt4(new_sizeFM(yvy543, h, ba, bb), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(yvy544, h, ba, bb))), h, ba, bb) 41.28/18.88 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Char, bfg) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.88 new_esEs19(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 41.28/18.88 new_esEs21(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.88 new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) 41.28/18.88 new_esEs19(yvy4001, yvy3001, app(app(ty_@2, dbc), dbd)) -> new_esEs4(yvy4001, yvy3001, dbc, dbd) 41.28/18.88 new_lt18(yvy79000, yvy80000, app(app(ty_Either, deb), dec)) -> new_lt17(yvy79000, yvy80000, deb, dec) 41.28/18.88 new_esEs36(yvy400, yvy300, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs6(yvy400, yvy300, bbd, bbe, bbf) 41.28/18.88 new_primEqNat0(Succ(yvy40000), Zero) -> False 41.28/18.88 new_primEqNat0(Zero, Succ(yvy30000)) -> False 41.28/18.88 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_[], cch), bab) -> new_esEs15(yvy4000, yvy3000, cch) 41.28/18.88 new_esEs14(@0, @0) -> True 41.28/18.88 new_esEs23(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.88 new_compare10(yvy79000, yvy80000, True, bc, bd) -> LT 41.28/18.88 new_ltEs18(yvy7900, yvy8000, app(ty_[], ce)) -> new_ltEs11(yvy7900, yvy8000, ce) 41.28/18.88 new_splitLT23(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bh, ca, cb) -> new_splitLT4(yvy33, yvy35, bh, ca, cb) 41.28/18.88 new_compare28(yvy79000, yvy80000, True, gb) -> EQ 41.28/18.88 new_esEs25(yvy79001, yvy80001, ty_Double) -> new_esEs13(yvy79001, yvy80001) 41.28/18.88 new_esEs25(yvy79001, yvy80001, ty_Float) -> new_esEs16(yvy79001, yvy80001) 41.28/18.88 new_ltEs12(Right(yvy79000), Right(yvy80000), bff, ty_@0) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.88 new_primCmpInt(Pos(Succ(yvy7900)), Neg(yvy800)) -> GT 41.28/18.88 new_lt20(yvy79000, yvy80000, ty_Char) -> new_lt9(yvy79000, yvy80000) 41.28/18.88 new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb) -> new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) 41.28/18.88 new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb) -> new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_esEs8(new_primCmpInt1(yvy620, yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb), LT), h, ba, bb) 41.28/18.88 new_ltEs21(yvy79001, yvy80001, ty_Int) -> new_ltEs7(yvy79001, yvy80001) 41.28/18.88 new_ltEs5(LT, GT) -> True 41.28/18.88 new_ltEs18(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 41.28/18.88 new_primPlusNat1(Succ(yvy20100), Succ(yvy3000000)) -> Succ(Succ(new_primPlusNat1(yvy20100, yvy3000000))) 41.28/18.88 new_esEs26(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.88 new_gt2(yvy35, yvy30, bh, ca) -> new_esEs8(new_compare30(yvy35, yvy30, bh, ca), GT) 41.28/18.88 new_esEs31(yvy35, yvy30, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs6(yvy35, yvy30, fa, fb, fc) 41.28/18.88 new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), EmptyFM, h, ba, bb) -> new_addToFM(Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy40, yvy41, h, ba, bb) 41.28/18.88 new_primCmpNat0(Zero, Succ(yvy80000)) -> LT 41.28/18.88 new_splitGT5(EmptyFM, yvy400, h, ba, bb) -> new_emptyFM(h, ba, bb) 41.28/18.88 new_esEs19(yvy4001, yvy3001, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs6(yvy4001, yvy3001, dbh, dca, dcb) 41.28/18.88 new_ltEs19(yvy7900, yvy8000, app(app(ty_@2, bgc), bgd)) -> new_ltEs4(yvy7900, yvy8000, bgc, bgd) 41.28/18.88 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 41.28/18.88 new_esEs35(yvy400, yvy300, app(ty_Maybe, gc)) -> new_esEs7(yvy400, yvy300, gc) 41.28/18.88 new_compare3([], :(yvy80000, yvy80001), ce) -> LT 41.28/18.88 new_esEs16(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 41.28/18.88 new_compare27(yvy79000, yvy80000, False, ea, eb, ec) -> new_compare110(yvy79000, yvy80000, new_ltEs9(yvy79000, yvy80000, ea, eb, ec), ea, eb, ec) 41.28/18.88 new_esEs27(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 41.28/18.88 new_ltEs12(Right(yvy79000), Right(yvy80000), bff, ty_Float) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.88 new_splitGT15(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, ccc, ccd, cce) -> new_mkVBalBranch0(Left(yvy45), yvy46, new_splitGT4(yvy48, yvy50, ccc, ccd, cce), yvy49, ccc, ccd, cce) 41.28/18.88 new_lt20(yvy79000, yvy80000, ty_Double) -> new_lt10(yvy79000, yvy80000) 41.28/18.88 new_esEs35(yvy400, yvy300, ty_Bool) -> new_esEs12(yvy400, yvy300) 41.28/18.88 new_ltEs20(yvy79002, yvy80002, app(ty_Maybe, dhd)) -> new_ltEs17(yvy79002, yvy80002, dhd) 41.28/18.88 new_compare114(yvy227, yvy228, True, beg, beh) -> LT 41.28/18.88 new_esEs35(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) 41.28/18.88 new_lt18(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 41.28/18.88 new_lt15(yvy79000, yvy80000) -> new_esEs8(new_compare25(yvy79000, yvy80000), LT) 41.28/18.88 new_ltEs12(Right(yvy79000), Right(yvy80000), bff, app(app(app(ty_@3, chb), chc), chd)) -> new_ltEs9(yvy79000, yvy80000, chb, chc, chd) 41.28/18.88 new_compare23(yvy79000, yvy80000, False, bc, bd) -> new_compare10(yvy79000, yvy80000, new_ltEs4(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.88 new_gt1(yvy400, yvy300, h, ba) -> new_esEs8(new_compare33(yvy400, yvy300, h, ba), GT) 41.28/18.88 new_esEs25(yvy79001, yvy80001, ty_Char) -> new_esEs11(yvy79001, yvy80001) 41.28/18.88 new_compare113(yvy79000, yvy80000, True, gb) -> LT 41.28/18.88 new_splitLT5(EmptyFM, yvy400, h, ba, bb) -> new_emptyFM(h, ba, bb) 41.28/18.88 new_lt20(yvy79000, yvy80000, app(ty_[], cfb)) -> new_lt11(yvy79000, yvy80000, cfb) 41.28/18.88 new_compare23(yvy79000, yvy80000, True, bc, bd) -> EQ 41.28/18.88 new_esEs8(LT, EQ) -> False 41.28/18.88 new_esEs8(EQ, LT) -> False 41.28/18.88 new_esEs21(yvy4000, yvy3000, app(app(ty_@2, bde), bdf)) -> new_esEs4(yvy4000, yvy3000, bde, bdf) 41.28/18.88 new_addToFM0(yvy51, yvy41, bb) -> yvy41 41.28/18.88 new_esEs13(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs9(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) 41.28/18.88 new_esEs19(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 41.28/18.88 new_esEs21(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.88 new_esEs26(yvy4000, yvy3000, app(ty_Ratio, cag)) -> new_esEs17(yvy4000, yvy3000, cag) 41.28/18.88 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Int) -> new_compare7(new_sr(yvy79000, yvy80001), new_sr(yvy80000, yvy79001)) 41.28/18.88 new_esEs5(Right(yvy4000), Right(yvy3000), baa, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.88 new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.88 new_esEs31(yvy35, yvy30, ty_@0) -> new_esEs14(yvy35, yvy30) 41.28/18.88 new_primCmpInt(Neg(Zero), Pos(Succ(yvy8000))) -> LT 41.28/18.88 new_emptyFM(h, ba, bb) -> EmptyFM 41.28/18.88 new_esEs20(yvy4002, yvy3002, ty_Float) -> new_esEs16(yvy4002, yvy3002) 41.28/18.88 new_esEs33(yvy400, yvy300, app(ty_Maybe, gc)) -> new_esEs7(yvy400, yvy300, gc) 41.28/18.88 new_primMulInt(Pos(yvy40010), Pos(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.88 new_esEs25(yvy79001, yvy80001, app(ty_Maybe, dgb)) -> new_esEs7(yvy79001, yvy80001, dgb) 41.28/18.88 new_ltEs8(True, False) -> False 41.28/18.88 new_ps(Neg(yvy2430), Neg(yvy2420)) -> Neg(new_primPlusNat1(yvy2430, yvy2420)) 41.28/18.88 new_esEs36(yvy400, yvy300, app(app(ty_@2, bag), bah)) -> new_esEs4(yvy400, yvy300, bag, bah) 41.28/18.88 new_esEs24(yvy79000, yvy80000, app(app(app(ty_@3, ded), dee), def)) -> new_esEs6(yvy79000, yvy80000, ded, dee, def) 41.28/18.88 new_primMulNat0(Succ(yvy400100), Zero) -> Zero 41.28/18.88 new_primMulNat0(Zero, Succ(yvy300000)) -> Zero 41.28/18.88 new_ltEs8(False, False) -> True 41.28/18.88 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, ha), hb), hc)) -> new_esEs6(yvy4000, yvy3000, ha, hb, hc) 41.28/18.88 new_compare14(yvy79000, yvy80000, app(app(ty_@2, cf), cg)) -> new_compare16(yvy79000, yvy80000, cf, cg) 41.28/18.88 new_esEs34(yvy400, yvy300, app(ty_Ratio, bbg)) -> new_esEs17(yvy400, yvy300, bbg) 41.28/18.88 new_esEs36(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) 41.28/18.88 new_addToFM_C26(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C15(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt2(yvy400, yvy500, h, ba), h, ba, bb) 41.28/18.88 new_primCmpInt0(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt2(yvy6200, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) 41.28/18.88 new_ltEs5(EQ, EQ) -> True 41.28/18.88 new_splitLT5(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba, bb) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, Left(yvy400), h, ba, bb) 41.28/18.88 new_splitLT25(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitLT15(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_gt1(yvy400, yvy300, h, ba), h, ba, bb) 41.28/18.88 new_addToFM_C23(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C13(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt1(yvy400, yvy500, h, ba), h, ba, bb) 41.28/18.88 new_splitLT26(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitLT5(yvy33, yvy400, h, ba, bb) 41.28/18.88 new_addToFM_C16(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> Branch(Left(yvy400), new_addToFM0(yvy51, yvy41, bb), yvy52, yvy53, yvy54) 41.28/18.88 new_compare27(yvy79000, yvy80000, True, ea, eb, ec) -> EQ 41.28/18.88 new_esEs34(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) 41.28/18.88 new_esEs21(yvy4000, yvy3000, app(app(ty_Either, bdh), bea)) -> new_esEs5(yvy4000, yvy3000, bdh, bea) 41.28/18.88 new_compare7(yvy79, yvy80) -> new_primCmpInt(yvy79, yvy80) 41.28/18.88 new_esEs35(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) 41.28/18.88 new_splitGT23(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, be, bf, bg) -> new_splitGT5(yvy64, yvy65, be, bf, bg) 41.28/18.88 new_esEs34(yvy400, yvy300, app(app(ty_@2, bag), bah)) -> new_esEs4(yvy400, yvy300, bag, bah) 41.28/18.88 new_compare111(yvy79000, yvy80000, True) -> LT 41.28/18.88 new_esEs28(yvy79000, yvy80000, app(ty_[], cfb)) -> new_esEs15(yvy79000, yvy80000, cfb) 41.28/18.88 new_lt20(yvy79000, yvy80000, ty_Int) -> new_lt4(yvy79000, yvy80000) 41.28/18.88 new_mkBalBranch6MkBalBranch11(yvy1070, yvy1071, yvy1072, yvy1073, EmptyFM, yvy50, yvy51, yvy54, False, h, ba, bb) -> error([]) 41.28/18.88 new_lt18(yvy79000, yvy80000, app(ty_[], deg)) -> new_lt11(yvy79000, yvy80000, deg) 41.28/18.88 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.88 new_primPlusNat1(Succ(yvy20100), Zero) -> Succ(yvy20100) 41.28/18.88 new_primPlusNat1(Zero, Succ(yvy3000000)) -> Succ(yvy3000000) 41.28/18.88 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_@2, gd), ge)) -> new_esEs4(yvy4000, yvy3000, gd, ge) 41.28/18.88 new_compare14(yvy79000, yvy80000, ty_Integer) -> new_compare26(yvy79000, yvy80000) 41.28/18.88 new_addToFM_C16(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_mkBalBranch(Right(yvy500), yvy51, yvy53, new_addToFM_C0(yvy54, Left(yvy400), yvy41, h, ba, bb), h, ba, bb) 41.28/18.88 new_esEs25(yvy79001, yvy80001, ty_Bool) -> new_esEs12(yvy79001, yvy80001) 41.28/18.88 new_esEs24(yvy79000, yvy80000, app(ty_Ratio, dea)) -> new_esEs17(yvy79000, yvy80000, dea) 41.28/18.88 new_esEs36(yvy400, yvy300, app(ty_Ratio, bbg)) -> new_esEs17(yvy400, yvy300, bbg) 41.28/18.88 new_esEs24(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 41.28/18.88 new_addToFM_C25(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C16(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt0(yvy400, yvy500, h, ba), h, ba, bb) 41.28/18.88 new_ltEs5(LT, LT) -> True 41.28/18.88 new_esEs29(yvy400, yvy500, ty_@0) -> new_esEs14(yvy400, yvy500) 41.28/18.88 new_addToFM_C24(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_mkBalBranch(Left(yvy500), yvy51, new_addToFM_C0(yvy53, Left(yvy400), yvy41, h, ba, bb), yvy54, h, ba, bb) 41.28/18.88 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Integer, bab) -> new_esEs10(yvy4000, yvy3000) 41.28/18.88 new_ltEs5(LT, EQ) -> True 41.28/18.88 new_esEs36(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 41.28/18.88 new_mkBalBranch6MkBalBranch5(yvy107, yvy50, yvy51, yvy54, True, h, ba, bb) -> new_mkBranch(Zero, yvy50, yvy51, yvy107, yvy54, app(app(ty_Either, h), ba), bb) 41.28/18.88 new_compare14(yvy79000, yvy80000, ty_@0) -> new_compare9(yvy79000, yvy80000) 41.28/18.88 new_mkBalBranch6MkBalBranch01(yvy107, yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Zero)), yvy540, yvy541, new_mkBranch(Succ(Succ(Succ(Zero))), yvy50, yvy51, yvy107, yvy543, app(app(ty_Either, h), ba), bb), yvy544, app(app(ty_Either, h), ba), bb) 41.28/18.88 new_splitGT16(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_mkVBalBranch0(Left(yvy300), yvy31, new_splitGT5(yvy33, yvy400, h, ba, bb), yvy34, h, ba, bb) 41.28/18.88 new_esEs34(yvy400, yvy300, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs6(yvy400, yvy300, bbd, bbe, bbf) 41.28/18.88 new_addToFM_C0(Branch(Right(yvy500), yvy51, yvy52, yvy53, yvy54), Right(yvy400), yvy41, h, ba, bb) -> new_addToFM_C26(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare210(Right(yvy400), Right(yvy500), new_esEs30(yvy400, yvy500, ba), h, ba), LT), h, ba, bb) 41.28/18.88 new_esEs21(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.88 new_ltEs8(False, True) -> True 41.28/18.88 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Ratio, hd)) -> new_esEs17(yvy4000, yvy3000, hd) 41.28/18.88 new_primCmpInt1(Succ(yvy6200), yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> new_primCmpInt3(yvy6200, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, Succ(yvy6200), yvy63, yvy64, h, ba, bb)) 41.28/18.88 new_splitGT15(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, False, ccc, ccd, cce) -> yvy49 41.28/18.88 new_splitLT25(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_splitLT4(yvy33, yvy400, h, ba, bb) 41.28/18.88 new_ltEs6(yvy7900, yvy8000) -> new_fsEs(new_compare8(yvy7900, yvy8000)) 41.28/18.88 new_esEs26(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.88 new_esEs34(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 41.28/18.88 new_lt19(yvy79001, yvy80001, ty_Float) -> new_lt12(yvy79001, yvy80001) 41.28/18.88 new_esEs27(yvy4001, yvy3001, app(ty_Ratio, cca)) -> new_esEs17(yvy4001, yvy3001, cca) 41.28/18.88 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Double, bfg) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.88 new_esEs33(yvy400, yvy300, app(ty_Ratio, baf)) -> new_esEs17(yvy400, yvy300, baf) 41.28/18.88 new_splitLT30(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitLT25(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Right(yvy400), Left(yvy300), False, h, ba), LT), h, ba, bb) 41.28/18.88 new_esEs33(yvy400, yvy300, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs6(yvy400, yvy300, bac, bad, bae) 41.28/18.88 new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), yvy53, h, ba, bb), yvy54, h, ba, bb) 41.28/18.88 new_esEs24(yvy79000, yvy80000, app(ty_[], deg)) -> new_esEs15(yvy79000, yvy80000, deg) 41.28/18.88 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Ratio, cdf), bab) -> new_esEs17(yvy4000, yvy3000, cdf) 41.28/18.88 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ 41.28/18.88 new_esEs32(yvy20, yvy15, ty_Integer) -> new_esEs10(yvy20, yvy15) 41.28/18.88 new_compare210(Left(yvy7900), Left(yvy8000), False, bfa, bfb) -> new_compare114(yvy7900, yvy8000, new_ltEs18(yvy7900, yvy8000, bfa), bfa, bfb) 41.28/18.88 new_addToFM_C26(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_mkBalBranch(Right(yvy500), yvy51, new_addToFM_C0(yvy53, Right(yvy400), yvy41, h, ba, bb), yvy54, h, ba, bb) 41.28/18.88 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(app(ty_@3, cfh), cga), cgb), bfg) -> new_ltEs9(yvy79000, yvy80000, cfh, cga, cgb) 41.28/18.88 new_splitLT14(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> yvy33 41.28/18.88 new_esEs27(yvy4001, yvy3001, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs6(yvy4001, yvy3001, cbf, cbg, cbh) 41.28/18.88 new_esEs34(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) 41.28/18.88 new_esEs7(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.88 new_ltEs21(yvy79001, yvy80001, ty_@0) -> new_ltEs16(yvy79001, yvy80001) 41.28/18.88 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.88 new_esEs18(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.88 new_esEs26(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.88 new_esEs32(yvy20, yvy15, ty_Bool) -> new_esEs12(yvy20, yvy15) 41.28/18.88 new_esEs25(yvy79001, yvy80001, ty_Int) -> new_esEs9(yvy79001, yvy80001) 41.28/18.88 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.88 new_lt5(yvy79000, yvy80000) -> new_esEs8(new_compare9(yvy79000, yvy80000), LT) 41.28/18.88 new_esEs10(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) 41.28/18.88 new_compare10(yvy79000, yvy80000, False, bc, bd) -> GT 41.28/18.88 new_ltEs5(GT, LT) -> False 41.28/18.88 new_ltEs9(@3(yvy79000, yvy79001, yvy79002), @3(yvy80000, yvy80001, yvy80002), bfh, bga, bgb) -> new_pePe(new_lt18(yvy79000, yvy80000, bfh), new_asAs(new_esEs24(yvy79000, yvy80000, bfh), new_pePe(new_lt19(yvy79001, yvy80001, bga), new_asAs(new_esEs25(yvy79001, yvy80001, bga), new_ltEs20(yvy79002, yvy80002, bgb))))) 41.28/18.88 new_addToFM_C0(EmptyFM, yvy40, yvy41, h, ba, bb) -> Branch(yvy40, yvy41, Pos(Succ(Zero)), new_emptyFM(h, ba, bb), new_emptyFM(h, ba, bb)) 41.28/18.88 new_lt20(yvy79000, yvy80000, app(app(app(ty_@3, ea), eb), ec)) -> new_lt7(yvy79000, yvy80000, ea, eb, ec) 41.28/18.88 new_esEs20(yvy4002, yvy3002, app(ty_[], dcg)) -> new_esEs15(yvy4002, yvy3002, dcg) 41.28/18.88 new_esEs26(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.88 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 41.28/18.88 new_esEs24(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 41.28/18.88 new_esEs32(yvy20, yvy15, ty_Char) -> new_esEs11(yvy20, yvy15) 41.28/18.88 new_ltEs8(True, True) -> True 41.28/18.88 new_esEs31(yvy35, yvy30, ty_Int) -> new_esEs9(yvy35, yvy30) 41.28/18.88 new_esEs29(yvy400, yvy500, app(app(ty_Either, baa), bab)) -> new_esEs5(yvy400, yvy500, baa, bab) 41.28/18.88 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_@2, cfc), cfd), bfg) -> new_ltEs4(yvy79000, yvy80000, cfc, cfd) 41.28/18.88 new_splitLT30(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitLT23(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Right(yvy400), Right(yvy300), new_esEs36(yvy400, yvy300, ba), h, ba), LT), h, ba, bb) 41.28/18.88 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Ordering, bfg) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.88 new_primCompAux00(yvy260, EQ) -> yvy260 41.28/18.88 new_splitGT14(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_mkVBalBranch0(Right(yvy300), yvy31, new_splitGT4(yvy33, yvy400, h, ba, bb), yvy34, h, ba, bb) 41.28/18.88 new_esEs12(False, True) -> False 41.28/18.88 new_esEs12(True, False) -> False 41.28/18.88 new_lt19(yvy79001, yvy80001, ty_Ordering) -> new_lt15(yvy79001, yvy80001) 41.28/18.88 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Float, bab) -> new_esEs16(yvy4000, yvy3000) 41.28/18.88 new_splitLT30(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitLT24(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Left(yvy400), Left(yvy300), new_esEs35(yvy400, yvy300, h), h, ba), LT), h, ba, bb) 41.28/18.88 new_lt19(yvy79001, yvy80001, app(app(app(ty_@3, dff), dfg), dfh)) -> new_lt7(yvy79001, yvy80001, dff, dfg, dfh) 41.28/18.88 new_esEs27(yvy4001, yvy3001, ty_Ordering) -> new_esEs8(yvy4001, yvy3001) 41.28/18.88 new_splitGT30(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitGT23(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Right(yvy400), Right(yvy300), new_esEs34(yvy400, yvy300, ba), h, ba), GT), h, ba, bb) 41.28/18.88 new_compare111(yvy79000, yvy80000, False) -> GT 41.28/18.88 new_esEs30(yvy400, yvy500, ty_Int) -> new_esEs9(yvy400, yvy500) 41.28/18.88 new_esEs31(yvy35, yvy30, app(ty_Maybe, ff)) -> new_esEs7(yvy35, yvy30, ff) 41.28/18.88 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Int) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.88 new_splitGT13(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, False, be, bf, bg) -> yvy64 41.28/18.88 new_esEs5(Right(yvy4000), Right(yvy3000), baa, app(app(ty_Either, cec), ced)) -> new_esEs5(yvy4000, yvy3000, cec, ced) 41.28/18.88 new_addToFM_C13(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_mkBalBranch(Left(yvy500), yvy51, yvy53, new_addToFM_C0(yvy54, Right(yvy400), yvy41, h, ba, bb), h, ba, bb) 41.28/18.88 new_ltEs5(EQ, LT) -> False 41.28/18.88 new_ltEs19(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 41.28/18.88 new_ltEs12(Right(yvy79000), Right(yvy80000), bff, ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.88 new_esEs32(yvy20, yvy15, ty_Ordering) -> new_esEs8(yvy20, yvy15) 41.28/18.88 new_mkBalBranch(yvy50, yvy51, yvy107, yvy54, h, ba, bb) -> new_mkBalBranch6MkBalBranch5(yvy107, yvy50, yvy51, yvy54, new_lt4(new_ps(new_mkBalBranch6Size_l(yvy107, yvy50, yvy51, yvy54, h, ba, bb), new_mkBalBranch6Size_r(yvy107, yvy50, yvy51, yvy54, h, ba, bb)), Pos(Succ(Succ(Zero)))), h, ba, bb) 41.28/18.88 new_ltEs12(Right(yvy79000), Right(yvy80000), bff, app(ty_Maybe, chf)) -> new_ltEs17(yvy79000, yvy80000, chf) 41.28/18.88 new_esEs33(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) 41.28/18.88 new_esEs18(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.88 new_lt17(yvy79000, yvy80000, bhe, bhf) -> new_esEs8(new_compare19(yvy79000, yvy80000, bhe, bhf), LT) 41.28/18.88 new_esEs24(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 41.28/18.88 new_lt19(yvy79001, yvy80001, ty_Integer) -> new_lt8(yvy79001, yvy80001) 41.28/18.88 new_ltEs12(Right(yvy79000), Right(yvy80000), bff, ty_Char) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.88 new_esEs20(yvy4002, yvy3002, ty_Double) -> new_esEs13(yvy4002, yvy3002) 41.28/18.88 new_ltEs18(yvy7900, yvy8000, app(ty_Maybe, bcb)) -> new_ltEs17(yvy7900, yvy8000, bcb) 41.28/18.88 new_esEs18(yvy4000, yvy3000, app(ty_[], dac)) -> new_esEs15(yvy4000, yvy3000, dac) 41.28/18.88 new_esEs25(yvy79001, yvy80001, app(app(ty_Either, dfd), dfe)) -> new_esEs5(yvy79001, yvy80001, dfd, dfe) 41.28/18.88 new_lt18(yvy79000, yvy80000, app(app(app(ty_@3, ded), dee), def)) -> new_lt7(yvy79000, yvy80000, ded, dee, def) 41.28/18.88 new_esEs27(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 41.28/18.88 new_esEs26(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.88 new_gt0(yvy400, yvy300, h, ba) -> new_esEs8(new_compare32(yvy400, yvy300, h, ba), GT) 41.28/18.88 new_esEs32(yvy20, yvy15, app(ty_Maybe, eaf)) -> new_esEs7(yvy20, yvy15, eaf) 41.28/18.88 new_esEs31(yvy35, yvy30, app(app(ty_Either, eg), eh)) -> new_esEs5(yvy35, yvy30, eg, eh) 41.28/18.88 new_esEs27(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.88 new_splitGT23(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, False, be, bf, bg) -> new_splitGT13(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, new_esEs8(new_compare30(yvy65, yvy60, be, bf), LT), be, bf, bg) 41.28/18.88 new_ltEs12(Right(yvy79000), Right(yvy80000), bff, app(ty_[], che)) -> new_ltEs11(yvy79000, yvy80000, che) 41.28/18.88 new_esEs29(yvy400, yvy500, ty_Int) -> new_esEs9(yvy400, yvy500) 41.28/18.88 new_esEs26(yvy4000, yvy3000, app(ty_Maybe, cah)) -> new_esEs7(yvy4000, yvy3000, cah) 41.28/18.88 new_splitGT30(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitGT24(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Left(yvy400), Left(yvy300), new_esEs33(yvy400, yvy300, h), h, ba), GT), h, ba, bb) 41.28/18.88 new_lt18(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 41.28/18.88 new_lt20(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 41.28/18.88 new_lt19(yvy79001, yvy80001, ty_@0) -> new_lt5(yvy79001, yvy80001) 41.28/18.88 new_esEs26(yvy4000, yvy3000, app(app(ty_Either, cab), cac)) -> new_esEs5(yvy4000, yvy3000, cab, cac) 41.28/18.88 new_mkBalBranch6MkBalBranch3(Branch(yvy1070, yvy1071, yvy1072, yvy1073, yvy1074), yvy50, yvy51, yvy54, True, h, ba, bb) -> new_mkBalBranch6MkBalBranch11(yvy1070, yvy1071, yvy1072, yvy1073, yvy1074, yvy50, yvy51, yvy54, new_lt4(new_sizeFM(yvy1074, h, ba, bb), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(yvy1073, h, ba, bb))), h, ba, bb) 41.28/18.88 new_splitGT13(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, be, bf, bg) -> new_mkVBalBranch0(Right(yvy60), yvy61, new_splitGT5(yvy63, yvy65, be, bf, bg), yvy64, be, bf, bg) 41.28/18.88 new_primCmpInt3(yvy6200, yvy186) -> new_primCmpInt(Neg(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy186) 41.28/18.88 new_splitLT15(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> yvy33 41.28/18.88 new_lt18(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 41.28/18.88 new_sizeFM1(EmptyFM, cc, cd) -> Pos(Zero) 41.28/18.88 new_compare110(yvy79000, yvy80000, True, ea, eb, ec) -> LT 41.28/18.88 new_esEs31(yvy35, yvy30, ty_Char) -> new_esEs11(yvy35, yvy30) 41.28/18.88 new_esEs15(:(yvy4000, yvy4001), :(yvy3000, yvy3001), hh) -> new_asAs(new_esEs21(yvy4000, yvy3000, hh), new_esEs15(yvy4001, yvy3001, hh)) 41.28/18.88 new_esEs26(yvy4000, yvy3000, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs6(yvy4000, yvy3000, cad, cae, caf) 41.28/18.88 new_esEs27(yvy4001, yvy3001, app(ty_Maybe, ccb)) -> new_esEs7(yvy4001, yvy3001, ccb) 41.28/18.88 new_splitLT15(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_mkVBalBranch0(Left(yvy300), yvy31, yvy33, new_splitLT4(yvy34, yvy400, h, ba, bb), h, ba, bb) 41.28/18.88 new_esEs5(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cdg), bab) -> new_esEs7(yvy4000, yvy3000, cdg) 41.28/18.88 new_esEs35(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 41.28/18.88 new_primCmpInt0(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ 41.28/18.88 new_ltEs20(yvy79002, yvy80002, ty_Float) -> new_ltEs15(yvy79002, yvy80002) 41.28/18.88 new_esEs28(yvy79000, yvy80000, ty_Int) -> new_esEs9(yvy79000, yvy80000) 41.28/18.88 new_esEs33(yvy400, yvy300, ty_Bool) -> new_esEs12(yvy400, yvy300) 41.28/18.88 new_ltEs12(Right(yvy79000), Right(yvy80000), bff, ty_Bool) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.88 new_compare25(yvy79000, yvy80000) -> new_compare24(yvy79000, yvy80000, new_esEs8(yvy79000, yvy80000)) 41.28/18.88 new_esEs31(yvy35, yvy30, ty_Ordering) -> new_esEs8(yvy35, yvy30) 41.28/18.88 new_ltEs13(yvy7900, yvy8000, bfe) -> new_fsEs(new_compare17(yvy7900, yvy8000, bfe)) 41.28/18.88 new_mkBalBranch6MkBalBranch3(yvy107, yvy50, yvy51, yvy54, False, h, ba, bb) -> new_mkBranch(Succ(Zero), yvy50, yvy51, yvy107, yvy54, app(app(ty_Either, h), ba), bb) 41.28/18.88 new_esEs8(LT, GT) -> False 41.28/18.88 new_esEs8(GT, LT) -> False 41.28/18.88 new_esEs32(yvy20, yvy15, app(ty_Ratio, eae)) -> new_esEs17(yvy20, yvy15, eae) 41.28/18.88 new_esEs5(Left(yvy4000), Right(yvy3000), baa, bab) -> False 41.28/18.88 new_esEs5(Right(yvy4000), Left(yvy3000), baa, bab) -> False 41.28/18.88 new_lt19(yvy79001, yvy80001, app(ty_Maybe, dgb)) -> new_lt6(yvy79001, yvy80001, dgb) 41.28/18.88 new_lt13(yvy79000, yvy80000, bc, bd) -> new_esEs8(new_compare16(yvy79000, yvy80000, bc, bd), LT) 41.28/18.88 new_esEs31(yvy35, yvy30, ty_Integer) -> new_esEs10(yvy35, yvy30) 41.28/18.88 new_esEs19(yvy4001, yvy3001, app(ty_[], dbe)) -> new_esEs15(yvy4001, yvy3001, dbe) 41.28/18.88 new_lt8(yvy79000, yvy80000) -> new_esEs8(new_compare26(yvy79000, yvy80000), LT) 41.28/18.88 new_splitLT13(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bh, ca, cb) -> yvy33 41.28/18.88 new_esEs30(yvy400, yvy500, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs6(yvy400, yvy500, bbd, bbe, bbf) 41.28/18.88 new_compare113(yvy79000, yvy80000, False, gb) -> GT 41.28/18.88 new_esEs30(yvy400, yvy500, app(app(ty_Either, bbb), bbc)) -> new_esEs5(yvy400, yvy500, bbb, bbc) 41.28/18.88 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.88 new_esEs29(yvy400, yvy500, ty_Bool) -> new_esEs12(yvy400, yvy500) 41.28/18.88 new_primPlusNat0(Succ(yvy2010), yvy300000) -> Succ(Succ(new_primPlusNat1(yvy2010, yvy300000))) 41.28/18.88 new_lt14(yvy79000, yvy80000, bca) -> new_esEs8(new_compare17(yvy79000, yvy80000, bca), LT) 41.28/18.88 new_ltEs19(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 41.28/18.88 new_esEs33(yvy400, yvy300, ty_@0) -> new_esEs14(yvy400, yvy300) 41.28/18.88 new_lt16(yvy79000, yvy80000) -> new_esEs8(new_compare15(yvy79000, yvy80000), LT) 41.28/18.88 new_lt12(yvy79000, yvy80000) -> new_esEs8(new_compare6(yvy79000, yvy80000), LT) 41.28/18.88 new_lt20(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 41.28/18.88 new_primPlusNat1(Zero, Zero) -> Zero 41.28/18.88 new_esEs6(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), bac, bad, bae) -> new_asAs(new_esEs18(yvy4000, yvy3000, bac), new_asAs(new_esEs19(yvy4001, yvy3001, bad), new_esEs20(yvy4002, yvy3002, bae))) 41.28/18.88 new_ltEs21(yvy79001, yvy80001, app(app(ty_@2, eag), eah)) -> new_ltEs4(yvy79001, yvy80001, eag, eah) 41.28/18.88 new_lt18(yvy79000, yvy80000, ty_Ordering) -> new_lt15(yvy79000, yvy80000) 41.28/18.88 new_lt20(yvy79000, yvy80000, ty_@0) -> new_lt5(yvy79000, yvy80000) 41.28/18.88 new_esEs28(yvy79000, yvy80000, app(ty_Ratio, bca)) -> new_esEs17(yvy79000, yvy80000, bca) 41.28/18.88 new_esEs30(yvy400, yvy500, app(ty_Maybe, bbh)) -> new_esEs7(yvy400, yvy500, bbh) 41.28/18.88 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.88 new_compare18(Double(yvy79000, Neg(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.88 new_esEs30(yvy400, yvy500, ty_Bool) -> new_esEs12(yvy400, yvy500) 41.28/18.88 new_addToFM_C15(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> Branch(Right(yvy400), new_addToFM0(yvy51, yvy41, bb), yvy52, yvy53, yvy54) 41.28/18.88 new_mkBalBranch6MkBalBranch4(yvy107, yvy50, yvy51, EmptyFM, True, h, ba, bb) -> error([]) 41.28/18.88 new_primCmpNat0(Succ(yvy79000), Succ(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.88 new_sizeFM(EmptyFM, h, ba, bb) -> Pos(Zero) 41.28/18.88 new_compare19(yvy79000, yvy80000, bhe, bhf) -> new_compare210(yvy79000, yvy80000, new_esEs5(yvy79000, yvy80000, bhe, bhf), bhe, bhf) 41.28/18.88 new_compare30(yvy35, yvy30, bh, ca) -> new_compare210(Right(yvy35), Right(yvy30), new_esEs31(yvy35, yvy30, ca), bh, ca) 41.28/18.88 new_mkBalBranch6MkBalBranch3(EmptyFM, yvy50, yvy51, yvy54, True, h, ba, bb) -> error([]) 41.28/18.88 new_compare3(:(yvy79000, yvy79001), [], ce) -> GT 41.28/18.88 new_primMinusNat0(Zero, Succ(yvy24200)) -> Neg(Succ(yvy24200)) 41.28/18.88 new_esEs28(yvy79000, yvy80000, ty_Ordering) -> new_esEs8(yvy79000, yvy80000) 41.28/18.88 new_esEs5(Left(yvy4000), Left(yvy3000), ty_@0, bab) -> new_esEs14(yvy4000, yvy3000) 41.28/18.88 new_esEs29(yvy400, yvy500, ty_Char) -> new_esEs11(yvy400, yvy500) 41.28/18.88 new_gt(yvy20, yvy15, fg, fh) -> new_esEs8(new_compare31(yvy20, yvy15, fg, fh), GT) 41.28/18.88 new_ltEs18(yvy7900, yvy8000, ty_Float) -> new_ltEs15(yvy7900, yvy8000) 41.28/18.88 new_esEs29(yvy400, yvy500, ty_Integer) -> new_esEs10(yvy400, yvy500) 41.28/18.88 new_compare32(yvy400, yvy300, h, ba) -> new_compare210(Left(yvy400), Right(yvy300), False, h, ba) 41.28/18.88 new_primCmpNat1(yvy7900, Succ(yvy8000)) -> new_primCmpNat0(yvy7900, yvy8000) 41.28/18.88 new_lt20(yvy79000, yvy80000, app(ty_Maybe, gb)) -> new_lt6(yvy79000, yvy80000, gb) 41.28/18.88 new_esEs28(yvy79000, yvy80000, app(app(ty_Either, bhe), bhf)) -> new_esEs5(yvy79000, yvy80000, bhe, bhf) 41.28/18.88 new_compare210(Right(yvy7900), Right(yvy8000), False, bfa, bfb) -> new_compare112(yvy7900, yvy8000, new_ltEs19(yvy7900, yvy8000, bfb), bfa, bfb) 41.28/18.88 new_esEs21(yvy4000, yvy3000, app(ty_[], bdg)) -> new_esEs15(yvy4000, yvy3000, bdg) 41.28/18.88 new_esEs28(yvy79000, yvy80000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs6(yvy79000, yvy80000, ea, eb, ec) 41.28/18.88 new_esEs29(yvy400, yvy500, ty_Ordering) -> new_esEs8(yvy400, yvy500) 41.28/18.88 new_compare33(yvy400, yvy300, h, ba) -> new_compare210(Right(yvy400), Left(yvy300), False, h, ba) 41.28/18.88 new_esEs29(yvy400, yvy500, app(ty_Ratio, baf)) -> new_esEs17(yvy400, yvy500, baf) 41.28/18.88 new_mkVBalBranch3MkVBalBranch21(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt4(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), new_sizeFM(Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), h, ba, bb)), h, ba, bb) 41.28/18.88 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Integer) -> new_ltEs10(yvy79000, yvy80000) 41.28/18.88 new_lt7(yvy79000, yvy80000, ea, eb, ec) -> new_esEs8(new_compare13(yvy79000, yvy80000, ea, eb, ec), LT) 41.28/18.88 new_esEs30(yvy400, yvy500, app(ty_Ratio, bbg)) -> new_esEs17(yvy400, yvy500, bbg) 41.28/18.88 new_esEs31(yvy35, yvy30, ty_Bool) -> new_esEs12(yvy35, yvy30) 41.28/18.88 new_mkBalBranch6MkBalBranch11(yvy1070, yvy1071, yvy1072, yvy1073, Branch(yvy10740, yvy10741, yvy10742, yvy10743, yvy10744), yvy50, yvy51, yvy54, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), yvy10740, yvy10741, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), yvy1070, yvy1071, yvy1073, yvy10743, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), yvy50, yvy51, yvy10744, yvy54, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) 41.28/18.88 new_esEs26(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.88 new_esEs29(yvy400, yvy500, app(ty_Maybe, gc)) -> new_esEs7(yvy400, yvy500, gc) 41.28/18.88 new_esEs30(yvy400, yvy500, ty_Integer) -> new_esEs10(yvy400, yvy500) 41.28/18.88 new_ltEs21(yvy79001, yvy80001, app(ty_[], ebg)) -> new_ltEs11(yvy79001, yvy80001, ebg) 41.28/18.88 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Int, bfg) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.88 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Char) -> new_ltEs6(yvy79000, yvy80000) 41.28/18.88 new_lt20(yvy79000, yvy80000, ty_Float) -> new_lt12(yvy79000, yvy80000) 41.28/18.88 new_sizeFM1(Branch(yvy2810, yvy2811, yvy2812, yvy2813, yvy2814), cc, cd) -> yvy2812 41.28/18.88 new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, new_lt4(new_sr(new_sIZE_RATIO, new_mkVBalBranch3Size_r0(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, h, ba, bb)), new_sizeFM(Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), h, ba, bb)), h, ba, bb) 41.28/18.88 new_lt18(yvy79000, yvy80000, ty_Bool) -> new_lt16(yvy79000, yvy80000) 41.28/18.88 new_compare210(Right(yvy7900), Left(yvy8000), False, bfa, bfb) -> GT 41.28/18.88 new_primCmpNat2(Succ(yvy8000), yvy7900) -> new_primCmpNat0(yvy8000, yvy7900) 41.28/18.88 new_ltEs16(yvy7900, yvy8000) -> new_fsEs(new_compare9(yvy7900, yvy8000)) 41.28/18.88 new_primCmpInt(Neg(Succ(yvy7900)), Pos(yvy800)) -> LT 41.28/18.88 new_esEs27(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.88 new_esEs24(yvy79000, yvy80000, ty_Char) -> new_esEs11(yvy79000, yvy80000) 41.28/18.88 new_ltEs12(Right(yvy79000), Right(yvy80000), bff, ty_Ordering) -> new_ltEs5(yvy79000, yvy80000) 41.28/18.88 new_esEs25(yvy79001, yvy80001, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs6(yvy79001, yvy80001, dff, dfg, dfh) 41.28/18.88 new_splitLT4(EmptyFM, yvy400, h, ba, bb) -> new_emptyFM(h, ba, bb) 41.28/18.88 new_esEs34(yvy400, yvy300, ty_Bool) -> new_esEs12(yvy400, yvy300) 41.28/18.88 new_esEs30(yvy400, yvy500, ty_Ordering) -> new_esEs8(yvy400, yvy500) 41.28/18.88 new_splitGT4(EmptyFM, yvy400, h, ba, bb) -> new_emptyFM(h, ba, bb) 41.28/18.88 new_esEs30(yvy400, yvy500, app(app(ty_@2, bag), bah)) -> new_esEs4(yvy400, yvy500, bag, bah) 41.28/18.88 new_esEs27(yvy4001, yvy3001, app(app(ty_Either, cbd), cbe)) -> new_esEs5(yvy4001, yvy3001, cbd, cbe) 41.28/18.88 new_splitLT23(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, bh, ca, cb) -> new_splitLT13(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt2(yvy35, yvy30, bh, ca), bh, ca, cb) 41.28/18.88 new_primCmpInt(Pos(Zero), Neg(Succ(yvy8000))) -> GT 41.28/18.88 new_esEs26(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.88 new_lt18(yvy79000, yvy80000, app(ty_Maybe, deh)) -> new_lt6(yvy79000, yvy80000, deh) 41.28/18.88 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.88 new_esEs36(yvy400, yvy300, ty_Double) -> new_esEs13(yvy400, yvy300) 41.28/18.88 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_Maybe, he)) -> new_esEs7(yvy4000, yvy3000, he) 41.28/18.88 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Char, bab) -> new_esEs11(yvy4000, yvy3000) 41.28/18.88 new_esEs34(yvy400, yvy300, app(ty_Maybe, bbh)) -> new_esEs7(yvy400, yvy300, bbh) 41.28/18.88 new_ltEs21(yvy79001, yvy80001, ty_Char) -> new_ltEs6(yvy79001, yvy80001) 41.28/18.88 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Ratio, cfe), bfg) -> new_ltEs13(yvy79000, yvy80000, cfe) 41.28/18.88 new_esEs18(yvy4000, yvy3000, app(app(ty_@2, daa), dab)) -> new_esEs4(yvy4000, yvy3000, daa, dab) 41.28/18.88 new_lt19(yvy79001, yvy80001, app(app(ty_Either, dfd), dfe)) -> new_lt17(yvy79001, yvy80001, dfd, dfe) 41.28/18.88 new_lt19(yvy79001, yvy80001, ty_Int) -> new_lt4(yvy79001, yvy80001) 41.28/18.88 new_esEs35(yvy400, yvy300, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs6(yvy400, yvy300, bac, bad, bae) 41.28/18.88 new_esEs18(yvy4000, yvy3000, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.88 new_ltEs15(yvy7900, yvy8000) -> new_fsEs(new_compare6(yvy7900, yvy8000)) 41.28/18.88 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ 41.28/18.88 new_esEs21(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.88 new_esEs28(yvy79000, yvy80000, ty_Integer) -> new_esEs10(yvy79000, yvy80000) 41.28/18.88 new_ltEs19(yvy7900, yvy8000, app(ty_[], bhc)) -> new_ltEs11(yvy7900, yvy8000, bhc) 41.28/18.88 new_esEs8(GT, GT) -> True 41.28/18.88 new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False 41.28/18.88 new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False 41.28/18.88 new_ltEs18(yvy7900, yvy8000, app(app(ty_@2, bfc), bfd)) -> new_ltEs4(yvy7900, yvy8000, bfc, bfd) 41.28/18.88 new_fsEs(yvy244) -> new_not(new_esEs8(yvy244, GT)) 41.28/18.88 new_esEs25(yvy79001, yvy80001, app(ty_Ratio, dfc)) -> new_esEs17(yvy79001, yvy80001, dfc) 41.28/18.88 new_compare210(yvy790, yvy800, True, bfa, bfb) -> EQ 41.28/18.88 new_addToFM_C23(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_mkBalBranch(Left(yvy500), yvy51, new_addToFM_C0(yvy53, Right(yvy400), yvy41, h, ba, bb), yvy54, h, ba, bb) 41.28/18.88 new_esEs32(yvy20, yvy15, app(ty_[], dhg)) -> new_esEs15(yvy20, yvy15, dhg) 41.28/18.88 new_compare28(yvy79000, yvy80000, False, gb) -> new_compare113(yvy79000, yvy80000, new_ltEs17(yvy79000, yvy80000, gb), gb) 41.28/18.88 new_lt18(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 41.28/18.88 new_esEs8(EQ, EQ) -> True 41.28/18.88 new_ltEs11(yvy7900, yvy8000, ce) -> new_fsEs(new_compare3(yvy7900, yvy8000, ce)) 41.28/18.88 new_splitLT16(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, fg, fh, ga) -> yvy18 41.28/18.88 new_esEs20(yvy4002, yvy3002, app(ty_Ratio, dde)) -> new_esEs17(yvy4002, yvy3002, dde) 41.28/18.88 new_primCmpInt2(yvy6200, yvy185) -> new_primCmpInt(Pos(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(Succ(yvy6200), yvy6200), yvy6200), yvy6200), yvy6200)), yvy185) 41.28/18.88 new_esEs21(yvy4000, yvy3000, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.88 new_esEs26(yvy4000, yvy3000, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.88 new_compare13(yvy79000, yvy80000, ea, eb, ec) -> new_compare27(yvy79000, yvy80000, new_esEs6(yvy79000, yvy80000, ea, eb, ec), ea, eb, ec) 41.28/18.88 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_Either, bcf), bcg)) -> new_ltEs12(yvy79000, yvy80000, bcf, bcg) 41.28/18.88 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Double) -> new_ltEs14(yvy79000, yvy80000) 41.28/18.88 new_compare210(Left(yvy7900), Right(yvy8000), False, bfa, bfb) -> LT 41.28/18.88 new_compare14(yvy79000, yvy80000, ty_Ordering) -> new_compare25(yvy79000, yvy80000) 41.28/18.88 new_primCmpNat0(Zero, Zero) -> EQ 41.28/18.88 new_gt3(yvy198, yvy197) -> new_esEs8(new_compare7(yvy198, yvy197), GT) 41.28/18.88 new_compare11(yvy79000, yvy80000, False) -> GT 41.28/18.88 new_esEs20(yvy4002, yvy3002, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs6(yvy4002, yvy3002, ddb, ddc, ddd) 41.28/18.88 new_ltEs19(yvy7900, yvy8000, ty_Integer) -> new_ltEs10(yvy7900, yvy8000) 41.28/18.88 new_esEs5(Right(yvy4000), Right(yvy3000), baa, app(ty_[], ceb)) -> new_esEs15(yvy4000, yvy3000, ceb) 41.28/18.88 new_addToFM_C13(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> Branch(Right(yvy400), new_addToFM0(yvy51, yvy41, bb), yvy52, yvy53, yvy54) 41.28/18.88 new_esEs31(yvy35, yvy30, ty_Float) -> new_esEs16(yvy35, yvy30) 41.28/18.88 new_esEs34(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) 41.28/18.88 new_addToFM(yvy5, yvy40, yvy41, h, ba, bb) -> new_addToFM_C0(yvy5, yvy40, yvy41, h, ba, bb) 41.28/18.88 new_ltEs19(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 41.28/18.88 new_esEs5(Right(yvy4000), Right(yvy3000), baa, ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.88 new_primCompAux00(yvy260, GT) -> GT 41.28/18.88 new_primMinusNat0(Succ(yvy24300), Zero) -> Pos(Succ(yvy24300)) 41.28/18.88 new_ltEs21(yvy79001, yvy80001, ty_Float) -> new_ltEs15(yvy79001, yvy80001) 41.28/18.88 new_primCmpNat2(Zero, yvy7900) -> LT 41.28/18.88 new_esEs20(yvy4002, yvy3002, ty_Ordering) -> new_esEs8(yvy4002, yvy3002) 41.28/18.88 new_addToFM_C14(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> Branch(Left(yvy400), new_addToFM0(yvy51, yvy41, bb), yvy52, yvy53, yvy54) 41.28/18.88 new_esEs32(yvy20, yvy15, ty_@0) -> new_esEs14(yvy20, yvy15) 41.28/18.88 new_splitLT16(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, fg, fh, ga) -> new_mkVBalBranch0(Left(yvy15), yvy16, yvy18, new_splitLT5(yvy19, yvy20, fg, fh, ga), fg, fh, ga) 41.28/18.88 new_ltEs20(yvy79002, yvy80002, app(app(ty_@2, dgc), dgd)) -> new_ltEs4(yvy79002, yvy80002, dgc, dgd) 41.28/18.88 new_esEs20(yvy4002, yvy3002, app(app(ty_@2, dce), dcf)) -> new_esEs4(yvy4002, yvy3002, dce, dcf) 41.28/18.88 new_ltEs18(yvy7900, yvy8000, ty_@0) -> new_ltEs16(yvy7900, yvy8000) 41.28/18.88 new_compare3(:(yvy79000, yvy79001), :(yvy80000, yvy80001), ce) -> new_primCompAux0(yvy79000, yvy80000, new_compare3(yvy79001, yvy80001, ce), ce) 41.28/18.88 new_esEs31(yvy35, yvy30, ty_Double) -> new_esEs13(yvy35, yvy30) 41.28/18.88 new_esEs19(yvy4001, yvy3001, ty_Double) -> new_esEs13(yvy4001, yvy3001) 41.28/18.88 new_mkBalBranch6MkBalBranch11(yvy1070, yvy1071, yvy1072, yvy1073, yvy1074, yvy50, yvy51, yvy54, True, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), yvy1070, yvy1071, yvy1073, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), yvy50, yvy51, yvy1074, yvy54, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) 41.28/18.88 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs9(yvy79000, yvy80000, bch, bda, bdb) 41.28/18.88 new_esEs5(Right(yvy4000), Right(yvy3000), baa, ty_Float) -> new_esEs16(yvy4000, yvy3000) 41.28/18.88 new_ltEs20(yvy79002, yvy80002, ty_Bool) -> new_ltEs8(yvy79002, yvy80002) 41.28/18.88 new_lt20(yvy79000, yvy80000, ty_Integer) -> new_lt8(yvy79000, yvy80000) 41.28/18.88 new_esEs33(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 41.28/18.88 new_esEs36(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) 41.28/18.88 new_splitGT24(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, ccc, ccd, cce) -> new_splitGT4(yvy49, yvy50, ccc, ccd, cce) 41.28/18.88 new_esEs5(Right(yvy4000), Right(yvy3000), baa, app(ty_Maybe, cfa)) -> new_esEs7(yvy4000, yvy3000, cfa) 41.28/18.88 new_compare110(yvy79000, yvy80000, False, ea, eb, ec) -> GT 41.28/18.88 new_primCmpNat0(Succ(yvy79000), Zero) -> GT 41.28/18.88 new_splitLT13(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, bh, ca, cb) -> new_mkVBalBranch0(Right(yvy30), yvy31, yvy33, new_splitLT4(yvy34, yvy35, bh, ca, cb), bh, ca, cb) 41.28/18.88 new_pePe(False, yvy255) -> yvy255 41.28/18.88 new_ltEs17(Nothing, Nothing, bcb) -> True 41.28/18.88 new_esEs27(yvy4001, yvy3001, ty_@0) -> new_esEs14(yvy4001, yvy3001) 41.28/18.88 new_esEs7(Nothing, Just(yvy3000), gc) -> False 41.28/18.88 new_esEs7(Just(yvy4000), Nothing, gc) -> False 41.28/18.88 new_ltEs17(Nothing, Just(yvy80000), bcb) -> True 41.28/18.88 new_splitLT24(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, fg, fh, ga) -> new_splitLT16(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_gt(yvy20, yvy15, fg, fh), fg, fh, ga) 41.28/18.88 new_ltEs17(Just(yvy79000), Nothing, bcb) -> False 41.28/18.88 new_esEs12(False, False) -> True 41.28/18.88 new_splitGT16(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> yvy34 41.28/18.88 new_esEs27(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 41.28/18.88 new_primCmpInt1(Zero, yvy50, yvy51, Pos(Zero), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> EQ 41.28/18.88 new_primCmpNat1(yvy7900, Zero) -> GT 41.28/18.88 new_esEs34(yvy400, yvy300, ty_Int) -> new_esEs9(yvy400, yvy300) 41.28/18.88 new_compare112(yvy234, yvy235, True, chg, chh) -> LT 41.28/18.88 new_compare14(yvy79000, yvy80000, ty_Char) -> new_compare8(yvy79000, yvy80000) 41.28/18.88 new_esEs7(Just(yvy4000), Just(yvy3000), app(app(ty_Either, gg), gh)) -> new_esEs5(yvy4000, yvy3000, gg, gh) 41.28/18.88 new_primMinusNat0(Succ(yvy24300), Succ(yvy24200)) -> new_primMinusNat0(yvy24300, yvy24200) 41.28/18.88 new_esEs25(yvy79001, yvy80001, ty_Integer) -> new_esEs10(yvy79001, yvy80001) 41.28/18.88 new_esEs34(yvy400, yvy300, app(app(ty_Either, bbb), bbc)) -> new_esEs5(yvy400, yvy300, bbb, bbc) 41.28/18.88 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_[], cgc), bfg) -> new_ltEs11(yvy79000, yvy80000, cgc) 41.28/18.88 new_esEs25(yvy79001, yvy80001, app(ty_[], dga)) -> new_esEs15(yvy79001, yvy80001, dga) 41.28/18.88 new_esEs11(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) 41.28/18.88 new_ltEs7(yvy7900, yvy8000) -> new_fsEs(new_compare7(yvy7900, yvy8000)) 41.28/18.88 new_esEs19(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 41.28/18.88 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_@2, ccf), ccg), bab) -> new_esEs4(yvy4000, yvy3000, ccf, ccg) 41.28/18.88 new_ltEs21(yvy79001, yvy80001, app(app(app(ty_@3, ebd), ebe), ebf)) -> new_ltEs9(yvy79001, yvy80001, ebd, ebe, ebf) 41.28/18.88 new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False 41.28/18.88 new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False 41.28/18.88 new_esEs32(yvy20, yvy15, app(app(app(ty_@3, eab), eac), ead)) -> new_esEs6(yvy20, yvy15, eab, eac, ead) 41.28/18.88 new_ltEs12(Right(yvy79000), Right(yvy80000), bff, app(app(ty_@2, cge), cgf)) -> new_ltEs4(yvy79000, yvy80000, cge, cgf) 41.28/18.88 new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, Branch(yvy60, yvy61, Pos(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), app(app(ty_Either, h), ba), bb) 41.28/18.88 new_esEs7(Nothing, Nothing, gc) -> True 41.28/18.88 new_addToFM_C15(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_mkBalBranch(Right(yvy500), yvy51, yvy53, new_addToFM_C0(yvy54, Right(yvy400), yvy41, h, ba, bb), h, ba, bb) 41.28/18.88 new_lt19(yvy79001, yvy80001, ty_Char) -> new_lt9(yvy79001, yvy80001) 41.28/18.88 new_ltEs12(Right(yvy79000), Right(yvy80000), bff, ty_Int) -> new_ltEs7(yvy79000, yvy80000) 41.28/18.88 new_esEs25(yvy79001, yvy80001, app(app(ty_@2, dfa), dfb)) -> new_esEs4(yvy79001, yvy80001, dfa, dfb) 41.28/18.88 new_ltEs12(Left(yvy79000), Left(yvy80000), app(app(ty_Either, cff), cfg), bfg) -> new_ltEs12(yvy79000, yvy80000, cff, cfg) 41.28/18.88 new_esEs35(yvy400, yvy300, ty_Integer) -> new_esEs10(yvy400, yvy300) 41.28/18.88 new_splitGT14(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> yvy34 41.28/18.88 new_sizeFM0(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba, bb) -> yvy52 41.28/18.88 new_ltEs18(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 41.28/18.88 new_ltEs18(yvy7900, yvy8000, app(app(ty_Either, bff), bfg)) -> new_ltEs12(yvy7900, yvy8000, bff, bfg) 41.28/18.88 new_mkBranch(yvy277, yvy278, yvy279, yvy280, yvy281, cc, cd) -> Branch(yvy278, yvy279, new_mkBranchUnbox(yvy281, yvy278, yvy280, new_ps(new_ps(Pos(Succ(Zero)), new_sizeFM1(yvy280, cc, cd)), new_sizeFM1(yvy281, cc, cd)), cc, cd), yvy280, yvy281) 41.28/18.88 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Neg(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Neg(yvy790010), yvy80000)) 41.28/18.88 new_compare6(Float(yvy79000, Neg(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Neg(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.88 new_addToFM_C14(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_mkBalBranch(Left(yvy500), yvy51, yvy53, new_addToFM_C0(yvy54, Left(yvy400), yvy41, h, ba, bb), h, ba, bb) 41.28/18.88 new_esEs24(yvy79000, yvy80000, app(app(ty_Either, deb), dec)) -> new_esEs5(yvy79000, yvy80000, deb, dec) 41.28/18.88 new_ltEs19(yvy7900, yvy8000, app(ty_Maybe, bhd)) -> new_ltEs17(yvy7900, yvy8000, bhd) 41.28/18.88 new_esEs25(yvy79001, yvy80001, ty_Ordering) -> new_esEs8(yvy79001, yvy80001) 41.28/18.88 new_compare114(yvy227, yvy228, False, beg, beh) -> GT 41.28/18.88 new_ltEs20(yvy79002, yvy80002, ty_@0) -> new_ltEs16(yvy79002, yvy80002) 41.28/18.88 new_mkBalBranch6MkBalBranch4(yvy107, yvy50, yvy51, yvy54, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch3(yvy107, yvy50, yvy51, yvy54, new_gt3(new_mkBalBranch6Size_l(yvy107, yvy50, yvy51, yvy54, h, ba, bb), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(yvy107, yvy50, yvy51, yvy54, h, ba, bb))), h, ba, bb) 41.28/18.88 new_esEs15([], [], hh) -> True 41.28/18.88 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Bool, bfg) -> new_ltEs8(yvy79000, yvy80000) 41.28/18.88 new_esEs32(yvy20, yvy15, app(app(ty_Either, dhh), eaa)) -> new_esEs5(yvy20, yvy15, dhh, eaa) 41.28/18.88 new_esEs33(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) 41.28/18.88 new_esEs23(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.88 new_lt4(yvy240, yvy239) -> new_esEs8(new_compare7(yvy240, yvy239), LT) 41.28/18.88 new_lt19(yvy79001, yvy80001, ty_Double) -> new_lt10(yvy79001, yvy80001) 41.28/18.88 new_esEs29(yvy400, yvy500, ty_Double) -> new_esEs13(yvy400, yvy500) 41.28/18.88 new_primPlusNat0(Zero, yvy300000) -> Succ(yvy300000) 41.28/18.88 new_splitLT30(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitLT26(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Left(yvy400), Right(yvy300), False, h, ba), LT), h, ba, bb) 41.28/18.88 new_esEs33(yvy400, yvy300, app(app(ty_@2, hf), hg)) -> new_esEs4(yvy400, yvy300, hf, hg) 41.28/18.88 new_lt18(yvy79000, yvy80000, app(ty_Ratio, dea)) -> new_lt14(yvy79000, yvy80000, dea) 41.28/18.88 new_ltEs18(yvy7900, yvy8000, app(app(app(ty_@3, bfh), bga), bgb)) -> new_ltEs9(yvy7900, yvy8000, bfh, bga, bgb) 41.28/18.88 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(ty_Either, cda), cdb), bab) -> new_esEs5(yvy4000, yvy3000, cda, cdb) 41.28/18.88 new_splitGT26(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitGT16(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare33(yvy400, yvy300, h, ba), LT), h, ba, bb) 41.28/18.88 new_lt19(yvy79001, yvy80001, app(ty_[], dga)) -> new_lt11(yvy79001, yvy80001, dga) 41.28/18.88 new_ltEs18(yvy7900, yvy8000, ty_Bool) -> new_ltEs8(yvy7900, yvy8000) 41.28/18.88 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Bool, bab) -> new_esEs12(yvy4000, yvy3000) 41.28/18.88 new_compare15(yvy79000, yvy80000) -> new_compare29(yvy79000, yvy80000, new_esEs12(yvy79000, yvy80000)) 41.28/18.88 new_esEs22(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.88 new_esEs8(LT, LT) -> True 41.28/18.88 new_esEs35(yvy400, yvy300, ty_Ordering) -> new_esEs8(yvy400, yvy300) 41.28/18.88 new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), app(app(ty_Either, h), ba), bb) 41.28/18.88 new_addToFM_C0(Branch(Right(yvy500), yvy51, yvy52, yvy53, yvy54), Left(yvy400), yvy41, h, ba, bb) -> new_addToFM_C25(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare210(Left(yvy400), Right(yvy500), False, h, ba), LT), h, ba, bb) 41.28/18.88 new_mkBranchUnbox(yvy281, yvy278, yvy280, yvy285, cc, cd) -> yvy285 41.28/18.88 new_lt6(yvy79000, yvy80000, gb) -> new_esEs8(new_compare12(yvy79000, yvy80000, gb), LT) 41.28/18.88 new_esEs24(yvy79000, yvy80000, ty_Bool) -> new_esEs12(yvy79000, yvy80000) 41.28/18.88 new_ltEs19(yvy7900, yvy8000, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs9(yvy7900, yvy8000, bgh, bha, bhb) 41.28/18.88 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_Maybe, bdd)) -> new_ltEs17(yvy79000, yvy80000, bdd) 41.28/18.88 new_esEs30(yvy400, yvy500, ty_@0) -> new_esEs14(yvy400, yvy500) 41.28/18.88 new_compare14(yvy79000, yvy80000, app(app(ty_Either, db), dc)) -> new_compare19(yvy79000, yvy80000, db, dc) 41.28/18.88 new_ltEs21(yvy79001, yvy80001, ty_Double) -> new_ltEs14(yvy79001, yvy80001) 41.28/18.88 new_esEs35(yvy400, yvy300, app(app(ty_@2, hf), hg)) -> new_esEs4(yvy400, yvy300, hf, hg) 41.28/18.88 new_esEs24(yvy79000, yvy80000, app(ty_Maybe, deh)) -> new_esEs7(yvy79000, yvy80000, deh) 41.28/18.88 new_mkBalBranch6Size_l(yvy107, yvy50, yvy51, yvy54, h, ba, bb) -> new_sizeFM(yvy107, h, ba, bb) 41.28/18.88 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.88 new_ltEs20(yvy79002, yvy80002, ty_Double) -> new_ltEs14(yvy79002, yvy80002) 41.28/18.88 new_primCmpInt1(Zero, yvy50, yvy51, Neg(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> GT 41.28/18.88 new_splitGT24(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, False, ccc, ccd, cce) -> new_splitGT15(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, new_esEs8(new_compare31(yvy50, yvy45, ccc, ccd), LT), ccc, ccd, cce) 41.28/18.88 new_primMulInt(Neg(yvy40010), Neg(yvy30000)) -> Pos(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.88 new_esEs33(yvy400, yvy300, ty_Float) -> new_esEs16(yvy400, yvy300) 41.28/18.88 new_esEs35(yvy400, yvy300, app(ty_Ratio, baf)) -> new_esEs17(yvy400, yvy300, baf) 41.28/18.88 new_esEs32(yvy20, yvy15, ty_Int) -> new_esEs9(yvy20, yvy15) 41.28/18.88 new_compare14(yvy79000, yvy80000, ty_Double) -> new_compare18(yvy79000, yvy80000) 41.28/18.88 new_addToFM_C0(Branch(Left(yvy500), yvy51, yvy52, yvy53, yvy54), Left(yvy400), yvy41, h, ba, bb) -> new_addToFM_C24(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare210(Left(yvy400), Left(yvy500), new_esEs29(yvy400, yvy500, h), h, ba), LT), h, ba, bb) 41.28/18.88 new_ltEs21(yvy79001, yvy80001, app(ty_Maybe, ebh)) -> new_ltEs17(yvy79001, yvy80001, ebh) 41.28/18.88 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_@0) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.88 new_esEs36(yvy400, yvy300, ty_Bool) -> new_esEs12(yvy400, yvy300) 41.28/18.88 new_esEs36(yvy400, yvy300, ty_Char) -> new_esEs11(yvy400, yvy300) 41.28/18.88 new_compare18(Double(yvy79000, Pos(yvy790010)), Double(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.88 new_compare14(yvy79000, yvy80000, ty_Float) -> new_compare6(yvy79000, yvy80000) 41.28/18.88 new_esEs27(yvy4001, yvy3001, app(ty_[], cbc)) -> new_esEs15(yvy4001, yvy3001, cbc) 41.28/18.88 new_splitGT30(Left(yvy300), yvy31, yvy32, yvy33, yvy34, Right(yvy400), h, ba, bb) -> new_splitGT26(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Right(yvy400), Left(yvy300), False, h, ba), GT), h, ba, bb) 41.28/18.88 new_esEs34(yvy400, yvy300, ty_Double) -> new_esEs13(yvy400, yvy300) 41.28/18.88 new_primMulInt(Pos(yvy40010), Neg(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.88 new_primMulInt(Neg(yvy40010), Pos(yvy30000)) -> Neg(new_primMulNat0(yvy40010, yvy30000)) 41.28/18.88 new_ltEs12(Right(yvy79000), Right(yvy80000), bff, app(app(ty_Either, cgh), cha)) -> new_ltEs12(yvy79000, yvy80000, cgh, cha) 41.28/18.88 new_ltEs20(yvy79002, yvy80002, app(app(app(ty_@3, dgh), dha), dhb)) -> new_ltEs9(yvy79002, yvy80002, dgh, dha, dhb) 41.28/18.88 new_esEs19(yvy4001, yvy3001, app(app(ty_Either, dbf), dbg)) -> new_esEs5(yvy4001, yvy3001, dbf, dbg) 41.28/18.88 new_mkBalBranch6MkBalBranch01(yvy107, yvy50, yvy51, yvy540, yvy541, yvy542, EmptyFM, yvy544, False, h, ba, bb) -> error([]) 41.28/18.88 new_esEs5(Right(yvy4000), Right(yvy3000), baa, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs6(yvy4000, yvy3000, cee, cef, ceg) 41.28/18.88 new_esEs28(yvy79000, yvy80000, ty_Double) -> new_esEs13(yvy79000, yvy80000) 41.28/18.88 new_ltEs12(Right(yvy79000), Left(yvy80000), bff, bfg) -> False 41.28/18.88 new_esEs30(yvy400, yvy500, app(ty_[], bba)) -> new_esEs15(yvy400, yvy500, bba) 41.28/18.88 new_esEs5(Right(yvy4000), Right(yvy3000), baa, app(ty_Ratio, ceh)) -> new_esEs17(yvy4000, yvy3000, ceh) 41.28/18.88 new_esEs17(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), baf) -> new_asAs(new_esEs22(yvy4000, yvy3000, baf), new_esEs23(yvy4001, yvy3001, baf)) 41.28/18.88 new_ltEs19(yvy7900, yvy8000, ty_Double) -> new_ltEs14(yvy7900, yvy8000) 41.28/18.88 new_sr0(Integer(yvy800000), Integer(yvy790010)) -> Integer(new_primMulInt(yvy800000, yvy790010)) 41.28/18.88 new_splitLT14(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, True, h, ba, bb) -> new_mkVBalBranch0(Right(yvy300), yvy31, yvy33, new_splitLT5(yvy34, yvy400, h, ba, bb), h, ba, bb) 41.28/18.88 new_esEs28(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 41.28/18.88 new_splitLT4(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy400, h, ba, bb) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, Right(yvy400), h, ba, bb) 41.28/18.88 new_esEs28(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 41.28/18.88 new_ltEs21(yvy79001, yvy80001, app(ty_Ratio, eba)) -> new_ltEs13(yvy79001, yvy80001, eba) 41.28/18.88 new_lt9(yvy79000, yvy80000) -> new_esEs8(new_compare8(yvy79000, yvy80000), LT) 41.28/18.88 new_splitLT26(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, False, h, ba, bb) -> new_splitLT14(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_gt0(yvy400, yvy300, h, ba), h, ba, bb) 41.28/18.88 new_esEs20(yvy4002, yvy3002, ty_Int) -> new_esEs9(yvy4002, yvy3002) 41.28/18.88 new_mkBalBranch6Size_r(yvy107, yvy50, yvy51, yvy54, h, ba, bb) -> new_sizeFM(yvy54, h, ba, bb) 41.28/18.88 new_ltEs21(yvy79001, yvy80001, app(app(ty_Either, ebb), ebc)) -> new_ltEs12(yvy79001, yvy80001, ebb, ebc) 41.28/18.88 new_asAs(True, yvy222) -> yvy222 41.28/18.88 new_esEs18(yvy4000, yvy3000, ty_@0) -> new_esEs14(yvy4000, yvy3000) 41.28/18.88 new_esEs24(yvy79000, yvy80000, ty_@0) -> new_esEs14(yvy79000, yvy80000) 41.28/18.88 new_ps(Pos(yvy2430), Pos(yvy2420)) -> Pos(new_primPlusNat1(yvy2430, yvy2420)) 41.28/18.88 new_esEs34(yvy400, yvy300, app(ty_[], bba)) -> new_esEs15(yvy400, yvy300, bba) 41.28/18.88 new_compare14(yvy79000, yvy80000, ty_Int) -> new_compare7(yvy79000, yvy80000) 41.28/18.88 new_esEs21(yvy4000, yvy3000, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.88 new_esEs36(yvy400, yvy300, app(ty_Maybe, bbh)) -> new_esEs7(yvy400, yvy300, bbh) 41.28/18.88 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs13(yvy4000, yvy3000) 41.28/18.88 new_lt10(yvy79000, yvy80000) -> new_esEs8(new_compare18(yvy79000, yvy80000), LT) 41.28/18.88 new_mkVBalBranch3MkVBalBranch22(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, Neg(yvy620), yvy63, yvy64), yvy53, h, ba, bb), yvy54, h, ba, bb) 41.28/18.88 new_esEs19(yvy4001, yvy3001, ty_Int) -> new_esEs9(yvy4001, yvy3001) 41.28/18.88 new_primCmpInt(Pos(Succ(yvy7900)), Pos(yvy800)) -> new_primCmpNat1(yvy7900, yvy800) 41.28/18.88 new_compare17(:%(yvy79000, yvy79001), :%(yvy80000, yvy80001), ty_Integer) -> new_compare26(new_sr0(yvy79000, yvy80001), new_sr0(yvy80000, yvy79001)) 41.28/18.88 new_compare8(Char(yvy79000), Char(yvy80000)) -> new_primCmpNat0(yvy79000, yvy80000) 41.28/18.88 new_esEs5(Right(yvy4000), Right(yvy3000), baa, ty_Ordering) -> new_esEs8(yvy4000, yvy3000) 41.28/18.88 new_esEs35(yvy400, yvy300, app(app(ty_Either, baa), bab)) -> new_esEs5(yvy400, yvy300, baa, bab) 41.28/18.88 new_sr(yvy4001, yvy3000) -> new_primMulInt(yvy4001, yvy3000) 41.28/18.88 new_esEs30(yvy400, yvy500, ty_Float) -> new_esEs16(yvy400, yvy500) 41.28/18.88 new_ltEs17(Just(yvy79000), Just(yvy80000), ty_Float) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.88 new_splitGT30(Right(yvy300), yvy31, yvy32, yvy33, yvy34, Left(yvy400), h, ba, bb) -> new_splitGT25(yvy300, yvy31, yvy32, yvy33, yvy34, yvy400, new_esEs8(new_compare210(Left(yvy400), Right(yvy300), False, h, ba), GT), h, ba, bb) 41.28/18.88 new_primMulNat0(Zero, Zero) -> Zero 41.28/18.88 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Double, bab) -> new_esEs13(yvy4000, yvy3000) 41.28/18.88 new_primCmpInt(Neg(Succ(yvy7900)), Neg(yvy800)) -> new_primCmpNat2(yvy800, yvy7900) 41.28/18.88 new_esEs30(yvy400, yvy500, ty_Double) -> new_esEs13(yvy400, yvy500) 41.28/18.88 new_splitGT5(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba, bb) -> new_splitGT30(yvy340, yvy341, yvy342, yvy343, yvy344, Right(yvy400), h, ba, bb) 41.28/18.88 new_esEs12(True, True) -> True 41.28/18.88 new_esEs22(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.88 new_esEs21(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.88 new_addToFM_C25(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, True, h, ba, bb) -> new_mkBalBranch(Right(yvy500), yvy51, new_addToFM_C0(yvy53, Left(yvy400), yvy41, h, ba, bb), yvy54, h, ba, bb) 41.28/18.88 new_esEs5(Left(yvy4000), Left(yvy3000), ty_Int, bab) -> new_esEs9(yvy4000, yvy3000) 41.28/18.88 new_sizeFM(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba, bb) -> yvy542 41.28/18.88 new_mkVBalBranch3MkVBalBranch12(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb), h, ba, bb) 41.28/18.88 new_addToFM_C24(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, False, h, ba, bb) -> new_addToFM_C14(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_gt(yvy400, yvy500, h, ba), h, ba, bb) 41.28/18.88 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_@0, bfg) -> new_ltEs16(yvy79000, yvy80000) 41.28/18.88 new_compare9(@0, @0) -> EQ 41.28/18.88 new_esEs15(:(yvy4000, yvy4001), [], hh) -> False 41.28/18.88 new_esEs15([], :(yvy3000, yvy3001), hh) -> False 41.28/18.88 new_esEs20(yvy4002, yvy3002, app(app(ty_Either, dch), dda)) -> new_esEs5(yvy4002, yvy3002, dch, dda) 41.28/18.88 new_ltEs19(yvy7900, yvy8000, app(ty_Ratio, bge)) -> new_ltEs13(yvy7900, yvy8000, bge) 41.28/18.88 new_esEs24(yvy79000, yvy80000, ty_Float) -> new_esEs16(yvy79000, yvy80000) 41.28/18.88 new_ltEs19(yvy7900, yvy8000, app(app(ty_Either, bgf), bgg)) -> new_ltEs12(yvy7900, yvy8000, bgf, bgg) 41.28/18.88 new_esEs21(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.88 new_esEs35(yvy400, yvy300, app(ty_[], hh)) -> new_esEs15(yvy400, yvy300, hh) 41.28/18.88 new_compare6(Float(yvy79000, Pos(yvy790010)), Float(yvy80000, Pos(yvy800010))) -> new_compare7(new_sr(yvy79000, Pos(yvy800010)), new_sr(Pos(yvy790010), yvy80000)) 41.28/18.88 new_esEs29(yvy400, yvy500, app(ty_[], hh)) -> new_esEs15(yvy400, yvy500, hh) 41.28/18.88 new_esEs7(Just(yvy4000), Just(yvy3000), app(ty_[], gf)) -> new_esEs15(yvy4000, yvy3000, gf) 41.28/18.88 new_primCompAux0(yvy79000, yvy80000, yvy256, ce) -> new_primCompAux00(yvy256, new_compare14(yvy79000, yvy80000, ce)) 41.28/18.88 new_esEs18(yvy4000, yvy3000, ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.88 new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False 41.28/18.88 new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False 41.28/18.88 new_mkBalBranch6MkBalBranch01(yvy107, yvy50, yvy51, yvy540, yvy541, yvy542, Branch(yvy5430, yvy5431, yvy5432, yvy5433, yvy5434), yvy544, False, h, ba, bb) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), yvy5430, yvy5431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), yvy50, yvy51, yvy107, yvy5433, app(app(ty_Either, h), ba), bb), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), yvy540, yvy541, yvy5434, yvy544, app(app(ty_Either, h), ba), bb), app(app(ty_Either, h), ba), bb) 41.28/18.88 new_ltEs20(yvy79002, yvy80002, app(app(ty_Either, dgf), dgg)) -> new_ltEs12(yvy79002, yvy80002, dgf, dgg) 41.28/18.88 new_lt19(yvy79001, yvy80001, app(ty_Ratio, dfc)) -> new_lt14(yvy79001, yvy80001, dfc) 41.28/18.88 new_ltEs20(yvy79002, yvy80002, app(ty_Ratio, dge)) -> new_ltEs13(yvy79002, yvy80002, dge) 41.28/18.88 new_esEs20(yvy4002, yvy3002, ty_@0) -> new_esEs14(yvy4002, yvy3002) 41.28/18.88 new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) 41.28/18.88 new_ltEs18(yvy7900, yvy8000, ty_Char) -> new_ltEs6(yvy7900, yvy8000) 41.28/18.88 new_esEs21(yvy4000, yvy3000, app(ty_Maybe, bef)) -> new_esEs7(yvy4000, yvy3000, bef) 41.28/18.88 new_esEs32(yvy20, yvy15, app(app(ty_@2, dhe), dhf)) -> new_esEs4(yvy20, yvy15, dhe, dhf) 41.28/18.88 new_esEs36(yvy400, yvy300, app(app(ty_Either, bbb), bbc)) -> new_esEs5(yvy400, yvy300, bbb, bbc) 41.28/18.88 new_esEs26(yvy4000, yvy3000, app(app(ty_@2, bhg), bhh)) -> new_esEs4(yvy4000, yvy3000, bhg, bhh) 41.28/18.88 new_compare14(yvy79000, yvy80000, app(ty_Ratio, da)) -> new_compare17(yvy79000, yvy80000, da) 41.28/18.88 new_compare24(yvy79000, yvy80000, True) -> EQ 41.28/18.88 new_esEs7(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs9(yvy4000, yvy3000) 41.28/18.88 new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False 41.28/18.88 new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False 41.28/18.88 new_lt20(yvy79000, yvy80000, app(ty_Ratio, bca)) -> new_lt14(yvy79000, yvy80000, bca) 41.28/18.88 new_esEs35(yvy400, yvy300, ty_Int) -> new_esEs9(yvy400, yvy300) 41.28/18.88 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 41.28/18.88 new_ltEs12(Left(yvy79000), Left(yvy80000), app(ty_Maybe, cgd), bfg) -> new_ltEs17(yvy79000, yvy80000, cgd) 41.28/18.88 new_ltEs10(yvy7900, yvy8000) -> new_fsEs(new_compare26(yvy7900, yvy8000)) 41.28/18.88 new_primCmpInt(Neg(Zero), Neg(Succ(yvy8000))) -> new_primCmpNat1(yvy8000, Zero) 41.28/18.88 new_esEs5(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cdc), cdd), cde), bab) -> new_esEs6(yvy4000, yvy3000, cdc, cdd, cde) 41.28/18.88 new_primCmpInt(Pos(Zero), Pos(Succ(yvy8000))) -> new_primCmpNat2(Zero, yvy8000) 41.28/18.88 new_esEs19(yvy4001, yvy3001, ty_Integer) -> new_esEs10(yvy4001, yvy3001) 41.28/18.88 new_compare14(yvy79000, yvy80000, app(app(app(ty_@3, dd), de), df)) -> new_compare13(yvy79000, yvy80000, dd, de, df) 41.28/18.88 new_esEs27(yvy4001, yvy3001, ty_Float) -> new_esEs16(yvy4001, yvy3001) 41.28/18.88 new_esEs35(yvy400, yvy300, ty_Double) -> new_esEs13(yvy400, yvy300) 41.28/18.88 new_compare12(yvy79000, yvy80000, gb) -> new_compare28(yvy79000, yvy80000, new_esEs7(yvy79000, yvy80000, gb), gb) 41.28/18.88 new_compare112(yvy234, yvy235, False, chg, chh) -> GT 41.28/18.88 new_esEs18(yvy4000, yvy3000, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs6(yvy4000, yvy3000, daf, dag, dah) 41.28/18.88 new_ltEs21(yvy79001, yvy80001, ty_Integer) -> new_ltEs10(yvy79001, yvy80001) 41.28/18.88 new_ltEs5(EQ, GT) -> True 41.28/18.88 new_esEs31(yvy35, yvy30, app(app(ty_@2, ed), ee)) -> new_esEs4(yvy35, yvy30, ed, ee) 41.28/18.88 new_ltEs12(Left(yvy79000), Left(yvy80000), ty_Float, bfg) -> new_ltEs15(yvy79000, yvy80000) 41.28/18.88 new_not(False) -> True 41.28/18.88 new_esEs29(yvy400, yvy500, ty_Float) -> new_esEs16(yvy400, yvy500) 41.28/18.88 new_esEs18(yvy4000, yvy3000, app(app(ty_Either, dad), dae)) -> new_esEs5(yvy4000, yvy3000, dad, dae) 41.28/18.88 new_esEs33(yvy400, yvy300, ty_Double) -> new_esEs13(yvy400, yvy300) 41.28/18.88 new_esEs4(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), hf, hg) -> new_asAs(new_esEs26(yvy4000, yvy3000, hf), new_esEs27(yvy4001, yvy3001, hg)) 41.28/18.88 new_esEs25(yvy79001, yvy80001, ty_@0) -> new_esEs14(yvy79001, yvy80001) 41.28/18.88 new_esEs20(yvy4002, yvy3002, app(ty_Maybe, ddf)) -> new_esEs7(yvy4002, yvy3002, ddf) 41.28/18.88 new_primCmpInt0(Zero, yvy50, yvy51, Pos(Succ(yvy5200)), yvy53, yvy54, yvy60, yvy61, yvy63, yvy64, h, ba, bb) -> LT 41.28/18.88 new_ltEs17(Just(yvy79000), Just(yvy80000), app(app(ty_@2, bcc), bcd)) -> new_ltEs4(yvy79000, yvy80000, bcc, bcd) 41.28/18.88 new_ltEs5(GT, GT) -> True 41.28/18.88 new_compare29(yvy79000, yvy80000, True) -> EQ 41.28/18.88 new_esEs31(yvy35, yvy30, app(ty_[], ef)) -> new_esEs15(yvy35, yvy30, ef) 41.28/18.88 new_esEs20(yvy4002, yvy3002, ty_Bool) -> new_esEs12(yvy4002, yvy3002) 41.28/18.88 new_ltEs21(yvy79001, yvy80001, ty_Ordering) -> new_ltEs5(yvy79001, yvy80001) 41.28/18.88 new_ltEs18(yvy7900, yvy8000, app(ty_Ratio, bfe)) -> new_ltEs13(yvy7900, yvy8000, bfe) 41.28/18.88 new_compare14(yvy79000, yvy80000, app(ty_Maybe, dh)) -> new_compare12(yvy79000, yvy80000, dh) 41.28/18.88 new_mkVBalBranch0(yvy40, yvy41, EmptyFM, yvy5, h, ba, bb) -> new_addToFM(yvy5, yvy40, yvy41, h, ba, bb) 41.28/18.88 new_esEs19(yvy4001, yvy3001, app(ty_Maybe, dcd)) -> new_esEs7(yvy4001, yvy3001, dcd) 41.28/18.88 new_ltEs19(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 41.28/18.88 new_ltEs20(yvy79002, yvy80002, ty_Char) -> new_ltEs6(yvy79002, yvy80002) 41.28/18.88 new_esEs36(yvy400, yvy300, ty_Int) -> new_esEs9(yvy400, yvy300) 41.28/18.88 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 41.28/18.88 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 41.28/18.88 new_ps(Pos(yvy2430), Neg(yvy2420)) -> new_primMinusNat0(yvy2430, yvy2420) 41.28/18.88 new_ps(Neg(yvy2430), Pos(yvy2420)) -> new_primMinusNat0(yvy2420, yvy2430) 41.28/18.88 new_esEs20(yvy4002, yvy3002, ty_Integer) -> new_esEs10(yvy4002, yvy3002) 41.28/18.88 new_ltEs18(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 41.28/18.88 new_ltEs20(yvy79002, yvy80002, ty_Int) -> new_ltEs7(yvy79002, yvy80002) 41.28/18.88 new_esEs27(yvy4001, yvy3001, app(app(ty_@2, cba), cbb)) -> new_esEs4(yvy4001, yvy3001, cba, cbb) 41.28/18.88 new_addToFM_C0(Branch(Left(yvy500), yvy51, yvy52, yvy53, yvy54), Right(yvy400), yvy41, h, ba, bb) -> new_addToFM_C23(yvy500, yvy51, yvy52, yvy53, yvy54, yvy400, yvy41, new_esEs8(new_compare210(Right(yvy400), Left(yvy500), False, h, ba), LT), h, ba, bb) 41.28/18.88 new_compare11(yvy79000, yvy80000, True) -> LT 41.28/18.88 new_ltEs4(@2(yvy79000, yvy79001), @2(yvy80000, yvy80001), bfc, bfd) -> new_pePe(new_lt20(yvy79000, yvy80000, bfc), new_asAs(new_esEs28(yvy79000, yvy80000, bfc), new_ltEs21(yvy79001, yvy80001, bfd))) 41.28/18.88 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 41.28/18.88 new_lt19(yvy79001, yvy80001, app(app(ty_@2, dfa), dfb)) -> new_lt13(yvy79001, yvy80001, dfa, dfb) 41.28/18.88 new_compare31(yvy20, yvy15, fg, fh) -> new_compare210(Left(yvy20), Left(yvy15), new_esEs32(yvy20, yvy15, fg), fg, fh) 41.28/18.88 new_compare16(yvy79000, yvy80000, bc, bd) -> new_compare23(yvy79000, yvy80000, new_esEs4(yvy79000, yvy80000, bc, bd), bc, bd) 41.28/18.88 new_primMulNat0(Succ(yvy400100), Succ(yvy300000)) -> new_primPlusNat0(new_primMulNat0(yvy400100, Succ(yvy300000)), yvy300000) 41.28/18.88 new_esEs28(yvy79000, yvy80000, app(app(ty_@2, bc), bd)) -> new_esEs4(yvy79000, yvy80000, bc, bd) 41.28/18.88 new_esEs20(yvy4002, yvy3002, ty_Char) -> new_esEs11(yvy4002, yvy3002) 41.28/18.88 new_compare14(yvy79000, yvy80000, ty_Bool) -> new_compare15(yvy79000, yvy80000) 41.28/18.88 new_ltEs17(Just(yvy79000), Just(yvy80000), app(ty_[], bdc)) -> new_ltEs11(yvy79000, yvy80000, bdc) 41.28/18.88 new_compare26(Integer(yvy79000), Integer(yvy80000)) -> new_primCmpInt(yvy79000, yvy80000) 41.28/18.88 new_mkVBalBranch3MkVBalBranch11(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy620, yvy63, yvy64, yvy40, yvy41, True, h, ba, bb) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba, bb), h, ba, bb) 41.28/18.88 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 41.28/18.88 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 41.28/18.88 new_esEs18(yvy4000, yvy3000, app(ty_Maybe, dbb)) -> new_esEs7(yvy4000, yvy3000, dbb) 41.28/18.88 new_esEs29(yvy400, yvy500, app(app(ty_@2, hf), hg)) -> new_esEs4(yvy400, yvy500, hf, hg) 41.28/18.88 new_esEs19(yvy4001, yvy3001, ty_Char) -> new_esEs11(yvy4001, yvy3001) 41.28/18.88 new_primEqNat0(Zero, Zero) -> True 41.28/18.88 new_esEs5(Right(yvy4000), Right(yvy3000), baa, ty_Bool) -> new_esEs12(yvy4000, yvy3000) 41.28/18.88 new_lt11(yvy79000, yvy80000, cfb) -> new_esEs8(new_compare3(yvy79000, yvy80000, cfb), LT) 41.28/18.88 new_compare29(yvy79000, yvy80000, False) -> new_compare111(yvy79000, yvy80000, new_ltEs8(yvy79000, yvy80000)) 41.28/18.88 new_splitGT4(Branch(yvy340, yvy341, yvy342, yvy343, yvy344), yvy400, h, ba, bb) -> new_splitGT30(yvy340, yvy341, yvy342, yvy343, yvy344, Left(yvy400), h, ba, bb) 41.28/18.88 new_ltEs19(yvy7900, yvy8000, ty_Ordering) -> new_ltEs5(yvy7900, yvy8000) 41.28/18.88 new_esEs5(Right(yvy4000), Right(yvy3000), baa, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.88 new_esEs18(yvy4000, yvy3000, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.88 new_asAs(False, yvy222) -> False 41.28/18.88 new_esEs19(yvy4001, yvy3001, ty_Bool) -> new_esEs12(yvy4001, yvy3001) 41.28/18.88 new_ltEs5(GT, EQ) -> False 41.28/18.88 new_ltEs20(yvy79002, yvy80002, ty_Ordering) -> new_ltEs5(yvy79002, yvy80002) 41.28/18.88 new_esEs18(yvy4000, yvy3000, app(ty_Ratio, dba)) -> new_esEs17(yvy4000, yvy3000, dba) 41.28/18.88 new_esEs5(Right(yvy4000), Right(yvy3000), baa, ty_Char) -> new_esEs11(yvy4000, yvy3000) 41.28/18.88 new_lt18(yvy79000, yvy80000, app(app(ty_@2, ddg), ddh)) -> new_lt13(yvy79000, yvy80000, ddg, ddh) 41.28/18.88 new_esEs8(EQ, GT) -> False 41.28/18.88 new_esEs8(GT, EQ) -> False 41.28/18.88 new_esEs18(yvy4000, yvy3000, ty_Integer) -> new_esEs10(yvy4000, yvy3000) 41.28/18.88 new_ltEs18(yvy7900, yvy8000, ty_Int) -> new_ltEs7(yvy7900, yvy8000) 41.28/18.88 new_esEs33(yvy400, yvy300, app(ty_[], hh)) -> new_esEs15(yvy400, yvy300, hh) 41.28/18.88 new_mkBalBranch6MkBalBranch5(yvy107, yvy50, yvy51, yvy54, False, h, ba, bb) -> new_mkBalBranch6MkBalBranch4(yvy107, yvy50, yvy51, yvy54, new_gt3(new_mkBalBranch6Size_r(yvy107, yvy50, yvy51, yvy54, h, ba, bb), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(yvy107, yvy50, yvy51, yvy54, h, ba, bb))), h, ba, bb) 41.28/18.88 41.28/18.88 The set Q consists of the following terms: 41.28/18.88 41.28/18.88 new_compare210(Right(x0), Right(x1), False, x2, x3) 41.28/18.88 new_ltEs18(x0, x1, ty_Bool) 41.28/18.88 new_ltEs21(x0, x1, ty_Ordering) 41.28/18.88 new_splitGT23(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 41.28/18.88 new_ltEs20(x0, x1, ty_Char) 41.28/18.88 new_esEs15(:(x0, x1), [], x2) 41.28/18.88 new_lt11(x0, x1, x2) 41.28/18.88 new_esEs19(x0, x1, app(ty_[], x2)) 41.28/18.88 new_ltEs17(Just(x0), Just(x1), ty_Char) 41.28/18.88 new_primMulInt(Neg(x0), Neg(x1)) 41.28/18.88 new_ltEs18(x0, x1, ty_@0) 41.28/18.88 new_ltEs21(x0, x1, ty_Double) 41.28/18.88 new_esEs34(x0, x1, ty_Bool) 41.28/18.88 new_primPlusNat1(Zero, Zero) 41.28/18.88 new_esEs25(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_esEs32(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_esEs25(x0, x1, ty_Float) 41.28/18.88 new_compare14(x0, x1, ty_Ordering) 41.28/18.88 new_primMinusNat0(Succ(x0), Zero) 41.28/18.88 new_esEs34(x0, x1, ty_Integer) 41.28/18.88 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 41.28/18.88 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.88 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 41.28/18.88 new_primCompAux00(x0, GT) 41.28/18.88 new_primEqInt(Pos(Zero), Pos(Zero)) 41.28/18.88 new_primMulInt(Pos(x0), Pos(x1)) 41.28/18.88 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.88 new_esEs21(x0, x1, ty_Double) 41.28/18.88 new_esEs32(x0, x1, ty_Integer) 41.28/18.88 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_compare29(x0, x1, False) 41.28/18.88 new_esEs27(x0, x1, ty_Float) 41.28/18.88 new_gt3(x0, x1) 41.28/18.88 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_esEs21(x0, x1, ty_Char) 41.28/18.88 new_ltEs21(x0, x1, app(ty_[], x2)) 41.28/18.88 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_esEs32(x0, x1, ty_Float) 41.28/18.88 new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.88 new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.88 new_primEqInt(Neg(Zero), Neg(Zero)) 41.28/18.88 new_primCmpNat0(Succ(x0), Succ(x1)) 41.28/18.88 new_splitLT16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 41.28/18.88 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.88 new_esEs12(False, True) 41.28/18.88 new_esEs12(True, False) 41.28/18.88 new_ltEs20(x0, x1, ty_Double) 41.28/18.88 new_compare210(x0, x1, True, x2, x3) 41.28/18.88 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.88 new_compare33(x0, x1, x2, x3) 41.28/18.88 new_splitGT13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 41.28/18.88 new_ps(Pos(x0), Neg(x1)) 41.28/18.88 new_ps(Neg(x0), Pos(x1)) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 41.28/18.88 new_primCmpNat2(Zero, x0) 41.28/18.88 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.88 new_esEs36(x0, x1, ty_Char) 41.28/18.88 new_esEs19(x0, x1, ty_Integer) 41.28/18.88 new_ltEs21(x0, x1, ty_Char) 41.28/18.88 new_addToFM0(x0, x1, x2) 41.28/18.88 new_addToFM_C23(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 41.28/18.88 new_ltEs17(Just(x0), Just(x1), ty_Double) 41.28/18.88 new_ltEs20(x0, x1, app(ty_[], x2)) 41.28/18.88 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_esEs7(Just(x0), Just(x1), ty_@0) 41.28/18.88 new_esEs7(Just(x0), Just(x1), ty_Bool) 41.28/18.88 new_lt10(x0, x1) 41.28/18.88 new_lt19(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.88 new_esEs30(x0, x1, ty_Char) 41.28/18.88 new_primEqInt(Pos(Zero), Neg(Zero)) 41.28/18.88 new_primEqInt(Neg(Zero), Pos(Zero)) 41.28/18.88 new_esEs21(x0, x1, ty_Ordering) 41.28/18.88 new_lt6(x0, x1, x2) 41.28/18.88 new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 41.28/18.88 new_splitGT26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 41.28/18.88 new_ltEs18(x0, x1, ty_Integer) 41.28/18.88 new_esEs31(x0, x1, ty_Double) 41.28/18.88 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.88 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.88 new_esEs7(Just(x0), Just(x1), ty_Int) 41.28/18.88 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.88 new_esEs31(x0, x1, ty_Char) 41.28/18.88 new_lt20(x0, x1, ty_Double) 41.28/18.88 new_esEs25(x0, x1, ty_@0) 41.28/18.88 new_esEs29(x0, x1, ty_Integer) 41.28/18.88 new_gt1(x0, x1, x2, x3) 41.28/18.88 new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, True, x3, x4, x5) 41.28/18.88 new_esEs28(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_primCmpInt1(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) 41.28/18.88 new_mkBranchUnbox(x0, x1, x2, x3, x4, x5) 41.28/18.88 new_esEs36(x0, x1, ty_Ordering) 41.28/18.88 new_primMulNat0(Succ(x0), Succ(x1)) 41.28/18.88 new_compare31(x0, x1, x2, x3) 41.28/18.88 new_ltEs18(x0, x1, ty_Float) 41.28/18.88 new_esEs35(x0, x1, ty_Ordering) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.88 new_esEs33(x0, x1, ty_Int) 41.28/18.88 new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) 41.28/18.88 new_ltEs19(x0, x1, ty_Ordering) 41.28/18.88 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.88 new_esEs28(x0, x1, ty_Char) 41.28/18.88 new_primEqNat0(Succ(x0), Succ(x1)) 41.28/18.88 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 41.28/18.88 new_esEs21(x0, x1, app(ty_[], x2)) 41.28/18.88 new_esEs36(x0, x1, ty_Double) 41.28/18.88 new_esEs34(x0, x1, ty_Float) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.88 new_lt20(x0, x1, ty_Float) 41.28/18.88 new_compare30(x0, x1, x2, x3) 41.28/18.88 new_esEs7(Just(x0), Just(x1), ty_Integer) 41.28/18.88 new_compare210(Right(x0), Left(x1), False, x2, x3) 41.28/18.88 new_compare210(Left(x0), Right(x1), False, x2, x3) 41.28/18.88 new_ltEs18(x0, x1, ty_Int) 41.28/18.88 new_primPlusNat0(Succ(x0), x1) 41.28/18.88 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_esEs25(x0, x1, ty_Bool) 41.28/18.88 new_compare112(x0, x1, False, x2, x3) 41.28/18.88 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 41.28/18.88 new_esEs20(x0, x1, ty_Int) 41.28/18.88 new_esEs29(x0, x1, ty_Bool) 41.28/18.88 new_splitLT24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 41.28/18.88 new_esEs7(Nothing, Just(x0), x1) 41.28/18.88 new_esEs35(x0, x1, ty_Char) 41.28/18.88 new_compare113(x0, x1, False, x2) 41.28/18.88 new_esEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) 41.28/18.88 new_esEs34(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_esEs8(GT, GT) 41.28/18.88 new_sr0(Integer(x0), Integer(x1)) 41.28/18.88 new_esEs29(x0, x1, app(ty_[], x2)) 41.28/18.88 new_mkVBalBranch3Size_r0(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) 41.28/18.88 new_ltEs19(x0, x1, ty_Float) 41.28/18.88 new_ltEs17(Just(x0), Just(x1), ty_Ordering) 41.28/18.88 new_primCmpInt0(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) 41.28/18.88 new_compare27(x0, x1, True, x2, x3, x4) 41.28/18.88 new_compare210(Left(x0), Left(x1), False, x2, x3) 41.28/18.88 new_ltEs12(Left(x0), Right(x1), x2, x3) 41.28/18.88 new_ltEs12(Right(x0), Left(x1), x2, x3) 41.28/18.88 new_esEs33(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_splitLT4(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) 41.28/18.88 new_splitLT15(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 41.28/18.88 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_ltEs19(x0, x1, ty_Char) 41.28/18.88 new_esEs24(x0, x1, ty_Double) 41.28/18.88 new_primCmpInt1(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) 41.28/18.88 new_esEs31(x0, x1, ty_Ordering) 41.28/18.88 new_ltEs20(x0, x1, ty_Ordering) 41.28/18.88 new_splitLT23(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 41.28/18.88 new_compare11(x0, x1, True) 41.28/18.88 new_splitGT16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 41.28/18.88 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 41.28/18.88 new_esEs32(x0, x1, ty_Int) 41.28/18.88 new_lt19(x0, x1, ty_Double) 41.28/18.88 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_ps(Pos(x0), Pos(x1)) 41.28/18.88 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_esEs27(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_ltEs8(True, False) 41.28/18.88 new_ltEs8(False, True) 41.28/18.88 new_primCmpInt1(Succ(x0), x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12) 41.28/18.88 new_esEs26(x0, x1, app(ty_[], x2)) 41.28/18.88 new_esEs25(x0, x1, ty_Integer) 41.28/18.88 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.88 new_esEs27(x0, x1, ty_@0) 41.28/18.88 new_esEs28(x0, x1, ty_Ordering) 41.28/18.88 new_ltEs17(Nothing, Just(x0), x1) 41.28/18.88 new_esEs19(x0, x1, ty_@0) 41.28/18.88 new_esEs35(x0, x1, ty_Integer) 41.28/18.88 new_ltEs19(x0, x1, app(ty_[], x2)) 41.28/18.88 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_asAs(False, x0) 41.28/18.88 new_compare28(x0, x1, False, x2) 41.28/18.88 new_fsEs(x0) 41.28/18.88 new_addToFM_C25(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 41.28/18.88 new_splitGT14(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 41.28/18.88 new_esEs32(x0, x1, ty_Bool) 41.28/18.88 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 41.28/18.88 new_esEs34(x0, x1, ty_Int) 41.28/18.88 new_lt19(x0, x1, ty_@0) 41.28/18.88 new_lt13(x0, x1, x2, x3) 41.28/18.88 new_compare110(x0, x1, False, x2, x3, x4) 41.28/18.88 new_compare10(x0, x1, True, x2, x3) 41.28/18.88 new_esEs36(x0, x1, app(ty_[], x2)) 41.28/18.88 new_ltEs19(x0, x1, ty_Bool) 41.28/18.88 new_esEs29(x0, x1, ty_Float) 41.28/18.88 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_splitLT25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 41.28/18.88 new_esEs27(x0, x1, ty_Double) 41.28/18.88 new_sizeFM(EmptyFM, x0, x1, x2) 41.28/18.88 new_compare14(x0, x1, ty_Double) 41.28/18.88 new_esEs20(x0, x1, ty_Bool) 41.28/18.88 new_mkVBalBranch0(x0, x1, Branch(x2, x3, Neg(x4), x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13, x14) 41.28/18.88 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.88 new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.88 new_esEs22(x0, x1, ty_Int) 41.28/18.88 new_ltEs19(x0, x1, ty_@0) 41.28/18.88 new_esEs28(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_esEs35(x0, x1, ty_Bool) 41.28/18.88 new_esEs27(x0, x1, ty_Int) 41.28/18.88 new_splitLT26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 41.28/18.88 new_esEs18(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_esEs20(x0, x1, ty_@0) 41.28/18.88 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 41.28/18.88 new_lt20(x0, x1, ty_Integer) 41.28/18.88 new_primCmpNat0(Succ(x0), Zero) 41.28/18.88 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 41.28/18.88 new_splitGT30(Right(x0), x1, x2, x3, x4, Right(x5), x6, x7, x8) 41.28/18.88 new_lt4(x0, x1) 41.28/18.88 new_esEs29(x0, x1, ty_Int) 41.28/18.88 new_lt20(x0, x1, ty_Bool) 41.28/18.88 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 41.28/18.88 new_mkVBalBranch3MkVBalBranch21(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13, x14) 41.28/18.88 new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 41.28/18.88 new_pePe(False, x0) 41.28/18.88 new_compare9(@0, @0) 41.28/18.88 new_ltEs17(Nothing, Nothing, x0) 41.28/18.88 new_addToFM_C26(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 41.28/18.88 new_compare114(x0, x1, True, x2, x3) 41.28/18.88 new_compare8(Char(x0), Char(x1)) 41.28/18.88 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5, x6) 41.28/18.88 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 41.28/18.88 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 41.28/18.88 new_esEs29(x0, x1, ty_Char) 41.28/18.88 new_compare23(x0, x1, True, x2, x3) 41.28/18.88 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_esEs31(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 41.28/18.88 new_esEs35(x0, x1, app(ty_[], x2)) 41.28/18.88 new_ltEs19(x0, x1, ty_Integer) 41.28/18.88 new_lt19(x0, x1, ty_Ordering) 41.28/18.88 new_primCmpInt0(Zero, x0, x1, Neg(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 41.28/18.88 new_not(True) 41.28/18.88 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.88 new_primCmpNat1(x0, Zero) 41.28/18.88 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.88 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.88 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.88 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 41.28/18.88 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 41.28/18.88 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 41.28/18.88 new_ltEs6(x0, x1) 41.28/18.88 new_esEs7(Just(x0), Just(x1), ty_Float) 41.28/18.88 new_mkBalBranch6MkBalBranch3(Branch(x0, x1, x2, x3, x4), x5, x6, x7, True, x8, x9, x10) 41.28/18.88 new_primMinusNat0(Zero, Succ(x0)) 41.28/18.88 new_esEs20(x0, x1, ty_Integer) 41.28/18.88 new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 41.28/18.88 new_esEs36(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_esEs31(x0, x1, ty_Float) 41.28/18.88 new_splitGT16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 41.28/18.88 new_esEs29(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_splitLT4(EmptyFM, x0, x1, x2, x3) 41.28/18.88 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 41.28/18.88 new_lt15(x0, x1) 41.28/18.88 new_primCmpInt1(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) 41.28/18.88 new_compare112(x0, x1, True, x2, x3) 41.28/18.88 new_esEs26(x0, x1, ty_Int) 41.28/18.88 new_compare111(x0, x1, False) 41.28/18.88 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_lt18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_lt18(x0, x1, ty_Double) 41.28/18.88 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_esEs25(x0, x1, ty_Double) 41.28/18.88 new_esEs24(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_lt20(x0, x1, ty_Char) 41.28/18.88 new_lt20(x0, x1, ty_@0) 41.28/18.88 new_esEs25(x0, x1, ty_Char) 41.28/18.88 new_splitLT30(Left(x0), x1, x2, x3, x4, Left(x5), x6, x7, x8) 41.28/18.88 new_esEs18(x0, x1, ty_Int) 41.28/18.88 new_esEs35(x0, x1, ty_Float) 41.28/18.88 new_esEs26(x0, x1, ty_Char) 41.28/18.88 new_lt20(x0, x1, ty_Int) 41.28/18.88 new_splitLT5(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) 41.28/18.88 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5, x6) 41.28/18.88 new_ltEs17(Just(x0), Nothing, x1) 41.28/18.88 new_esEs25(x0, x1, ty_Int) 41.28/18.88 new_compare19(x0, x1, x2, x3) 41.28/18.88 new_esEs18(x0, x1, ty_Char) 41.28/18.88 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 41.28/18.88 new_esEs21(x0, x1, ty_Integer) 41.28/18.88 new_ltEs18(x0, x1, ty_Double) 41.28/18.88 new_ltEs18(x0, x1, ty_Ordering) 41.28/18.88 new_ltEs5(LT, EQ) 41.28/18.88 new_ltEs5(EQ, LT) 41.28/18.88 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_esEs24(x0, x1, ty_Char) 41.28/18.88 new_esEs27(x0, x1, ty_Integer) 41.28/18.88 new_compare110(x0, x1, True, x2, x3, x4) 41.28/18.88 new_ltEs5(GT, GT) 41.28/18.88 new_esEs26(x0, x1, ty_Bool) 41.28/18.88 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8, x9) 41.28/18.88 new_compare15(x0, x1) 41.28/18.88 new_esEs26(x0, x1, ty_@0) 41.28/18.88 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 41.28/18.88 new_esEs36(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 41.28/18.88 new_mkVBalBranch3MkVBalBranch21(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13, x14) 41.28/18.88 new_esEs10(Integer(x0), Integer(x1)) 41.28/18.88 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_esEs8(LT, GT) 41.28/18.88 new_esEs8(GT, LT) 41.28/18.88 new_mkVBalBranch0(x0, x1, EmptyFM, x2, x3, x4, x5) 41.28/18.88 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_compare17(:%(x0, x1), :%(x2, x3), ty_Int) 41.28/18.88 new_esEs26(x0, x1, ty_Integer) 41.28/18.88 new_esEs32(x0, x1, ty_@0) 41.28/18.88 new_lt7(x0, x1, x2, x3, x4) 41.28/18.88 new_esEs28(x0, x1, app(ty_[], x2)) 41.28/18.88 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_esEs33(x0, x1, ty_Ordering) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.88 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.88 new_esEs35(x0, x1, ty_Double) 41.28/18.88 new_lt18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_primCompAux00(x0, EQ) 41.28/18.88 new_compare111(x0, x1, True) 41.28/18.88 new_esEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_lt19(x0, x1, app(ty_[], x2)) 41.28/18.88 new_splitLT30(Right(x0), x1, x2, x3, x4, Right(x5), x6, x7, x8) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.88 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_primPlusNat1(Zero, Succ(x0)) 41.28/18.88 new_addToFM(x0, x1, x2, x3, x4, x5) 41.28/18.88 new_ps(Neg(x0), Neg(x1)) 41.28/18.88 new_esEs24(x0, x1, ty_Float) 41.28/18.88 new_primEqNat0(Zero, Zero) 41.28/18.88 new_esEs24(x0, x1, ty_Bool) 41.28/18.88 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 41.28/18.88 new_esEs12(True, True) 41.28/18.88 new_not(False) 41.28/18.88 new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.88 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_mkVBalBranch3MkVBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13, x14) 41.28/18.88 new_splitGT30(Left(x0), x1, x2, x3, x4, Left(x5), x6, x7, x8) 41.28/18.88 new_esEs19(x0, x1, ty_Bool) 41.28/18.88 new_esEs21(x0, x1, ty_@0) 41.28/18.88 new_compare17(:%(x0, x1), :%(x2, x3), ty_Integer) 41.28/18.88 new_ltEs10(x0, x1) 41.28/18.88 new_compare14(x0, x1, app(ty_[], x2)) 41.28/18.88 new_ltEs8(True, True) 41.28/18.88 new_esEs19(x0, x1, ty_Float) 41.28/18.88 new_lt18(x0, x1, app(ty_[], x2)) 41.28/18.88 new_addToFM_C0(Branch(Left(x0), x1, x2, x3, x4), Left(x5), x6, x7, x8, x9) 41.28/18.88 new_esEs13(Double(x0, x1), Double(x2, x3)) 41.28/18.88 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.88 new_compare3(:(x0, x1), [], x2) 41.28/18.88 new_esEs24(x0, x1, ty_Int) 41.28/18.88 new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 41.28/18.88 new_addToFM_C0(EmptyFM, x0, x1, x2, x3, x4) 41.28/18.88 new_primCmpInt0(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) 41.28/18.88 new_primMinusNat0(Succ(x0), Succ(x1)) 41.28/18.88 new_esEs29(x0, x1, ty_@0) 41.28/18.88 new_primCmpInt2(x0, x1) 41.28/18.88 new_splitGT4(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) 41.28/18.88 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_esEs27(x0, x1, ty_Bool) 41.28/18.88 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 41.28/18.88 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 41.28/18.88 new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 41.28/18.88 new_lt5(x0, x1) 41.28/18.88 new_lt18(x0, x1, ty_Ordering) 41.28/18.88 new_esEs19(x0, x1, ty_Char) 41.28/18.88 new_esEs31(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_esEs34(x0, x1, ty_@0) 41.28/18.88 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 41.28/18.88 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 41.28/18.88 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 41.28/18.88 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 41.28/18.88 new_gt2(x0, x1, x2, x3) 41.28/18.88 new_esEs15([], :(x0, x1), x2) 41.28/18.88 new_primMulInt(Pos(x0), Neg(x1)) 41.28/18.88 new_primMulInt(Neg(x0), Pos(x1)) 41.28/18.88 new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 41.28/18.88 new_mkBalBranch(x0, x1, x2, x3, x4, x5, x6) 41.28/18.88 new_compare114(x0, x1, False, x2, x3) 41.28/18.88 new_esEs19(x0, x1, ty_Int) 41.28/18.88 new_esEs27(x0, x1, ty_Char) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.88 new_esEs28(x0, x1, ty_Integer) 41.28/18.88 new_esEs8(EQ, EQ) 41.28/18.88 new_esEs21(x0, x1, ty_Int) 41.28/18.88 new_splitLT25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 41.28/18.88 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_esEs18(x0, x1, app(ty_[], x2)) 41.28/18.88 new_esEs26(x0, x1, ty_Float) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 41.28/18.88 new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) 41.28/18.88 new_esEs36(x0, x1, ty_Bool) 41.28/18.88 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_esEs30(x0, x1, ty_Bool) 41.28/18.88 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_ltEs15(x0, x1) 41.28/18.88 new_esEs24(x0, x1, ty_Integer) 41.28/18.88 new_esEs18(x0, x1, ty_Integer) 41.28/18.88 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_esEs30(x0, x1, ty_Integer) 41.28/18.88 new_addToFM_C25(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 41.28/18.88 new_esEs24(x0, x1, app(ty_[], x2)) 41.28/18.88 new_esEs36(x0, x1, ty_Integer) 41.28/18.88 new_primMinusNat0(Zero, Zero) 41.28/18.88 new_primCmpInt0(Zero, x0, x1, Neg(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) 41.28/18.88 new_splitGT26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 41.28/18.88 new_esEs31(x0, x1, app(ty_[], x2)) 41.28/18.88 new_ltEs17(Just(x0), Just(x1), ty_Int) 41.28/18.88 new_primCmpNat0(Zero, Succ(x0)) 41.28/18.88 new_ltEs17(Just(x0), Just(x1), ty_@0) 41.28/18.88 new_splitLT15(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 41.28/18.88 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_lt20(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_ltEs21(x0, x1, ty_Int) 41.28/18.88 new_compare11(x0, x1, False) 41.28/18.88 new_ltEs7(x0, x1) 41.28/18.88 new_splitGT14(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 41.28/18.88 new_primPlusNat0(Zero, x0) 41.28/18.88 new_esEs36(x0, x1, ty_@0) 41.28/18.88 new_esEs28(x0, x1, ty_Bool) 41.28/18.88 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 41.28/18.88 new_sr(x0, x1) 41.28/18.88 new_esEs29(x0, x1, app(ty_Maybe, x2)) 41.28/18.88 new_sIZE_RATIO 41.28/18.88 new_ltEs5(LT, GT) 41.28/18.88 new_ltEs5(GT, LT) 41.28/18.88 new_ltEs17(Just(x0), Just(x1), ty_Bool) 41.28/18.88 new_esEs5(Left(x0), Right(x1), x2, x3) 41.28/18.88 new_esEs5(Right(x0), Left(x1), x2, x3) 41.28/18.88 new_splitGT4(EmptyFM, x0, x1, x2, x3) 41.28/18.88 new_sizeFM1(Branch(x0, x1, x2, x3, x4), x5, x6) 41.28/18.88 new_esEs32(x0, x1, app(ty_Ratio, x2)) 41.28/18.88 new_primCmpNat2(Succ(x0), x1) 41.28/18.88 new_ltEs20(x0, x1, ty_@0) 41.28/18.88 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 41.28/18.88 new_compare3([], :(x0, x1), x2) 41.28/18.88 new_lt12(x0, x1) 41.28/18.88 new_ltEs8(False, False) 41.28/18.88 new_esEs18(x0, x1, ty_@0) 41.28/18.88 new_compare26(Integer(x0), Integer(x1)) 41.28/18.88 new_compare27(x0, x1, False, x2, x3, x4) 41.28/18.88 new_addToFM_C23(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 41.28/18.88 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5, x6) 41.28/18.88 new_esEs31(x0, x1, ty_Bool) 41.28/18.88 new_addToFM_C0(Branch(Right(x0), x1, x2, x3, x4), Right(x5), x6, x7, x8, x9) 41.28/18.88 new_esEs18(x0, x1, ty_Bool) 41.28/18.88 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 41.28/18.88 new_compare29(x0, x1, True) 41.28/18.88 new_ltEs20(x0, x1, ty_Bool) 41.28/18.88 new_splitGT13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 41.28/18.88 new_esEs18(x0, x1, ty_Float) 41.28/18.88 new_compare28(x0, x1, True, x2) 41.28/18.88 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.88 new_lt18(x0, x1, ty_Float) 41.28/18.88 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.88 new_esEs7(Just(x0), Nothing, x1) 41.28/18.88 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.88 new_ltEs20(x0, x1, ty_Int) 41.28/18.88 new_esEs33(x0, x1, ty_Double) 41.28/18.88 new_esEs30(x0, x1, ty_@0) 41.28/18.88 new_esEs31(x0, x1, ty_@0) 41.28/18.88 new_esEs17(:%(x0, x1), :%(x2, x3), x4) 41.28/18.89 new_lt19(x0, x1, app(ty_Ratio, x2)) 41.28/18.89 new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), EmptyFM, x7, x8, x9) 41.28/18.89 new_esEs7(Just(x0), Just(x1), ty_Char) 41.28/18.89 new_esEs31(x0, x1, ty_Int) 41.28/18.89 new_esEs28(x0, x1, ty_@0) 41.28/18.89 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.89 new_compare113(x0, x1, True, x2) 41.28/18.89 new_splitGT24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 41.28/18.89 new_esEs7(Just(x0), Just(x1), ty_Double) 41.28/18.89 new_esEs28(x0, x1, ty_Float) 41.28/18.89 new_esEs30(x0, x1, ty_Int) 41.28/18.89 new_ltEs13(x0, x1, x2) 41.28/18.89 new_mkVBalBranch3MkVBalBranch12(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13, x14) 41.28/18.89 new_lt18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.89 new_primEqNat0(Succ(x0), Zero) 41.28/18.89 new_splitGT23(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 41.28/18.89 new_compare14(x0, x1, ty_@0) 41.28/18.89 new_splitLT16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 41.28/18.89 new_esEs20(x0, x1, ty_Float) 41.28/18.89 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.89 new_esEs30(x0, x1, app(ty_Maybe, x2)) 41.28/18.89 new_esEs28(x0, x1, ty_Int) 41.28/18.89 new_ltEs21(x0, x1, ty_Bool) 41.28/18.89 new_esEs34(x0, x1, ty_Ordering) 41.28/18.89 new_esEs22(x0, x1, ty_Integer) 41.28/18.89 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.89 new_addToFM_C0(Branch(Right(x0), x1, x2, x3, x4), Left(x5), x6, x7, x8, x9) 41.28/18.89 new_gt0(x0, x1, x2, x3) 41.28/18.89 new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.89 new_ltEs20(x0, x1, ty_Integer) 41.28/18.89 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.89 new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 41.28/18.89 new_splitLT26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 41.28/18.89 new_esEs30(x0, x1, ty_Float) 41.28/18.89 new_esEs35(x0, x1, ty_Int) 41.28/18.89 new_compare24(x0, x1, True) 41.28/18.89 new_ltEs17(Just(x0), Just(x1), ty_Integer) 41.28/18.89 new_esEs21(x0, x1, ty_Bool) 41.28/18.89 new_esEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.89 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.89 new_gt(x0, x1, x2, x3) 41.28/18.89 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5, x6) 41.28/18.89 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 41.28/18.89 new_esEs33(x0, x1, ty_Float) 41.28/18.89 new_ltEs5(EQ, GT) 41.28/18.89 new_ltEs5(GT, EQ) 41.28/18.89 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.89 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.89 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 41.28/18.89 new_ltEs18(x0, x1, ty_Char) 41.28/18.89 new_esEs20(x0, x1, ty_Char) 41.28/18.89 new_primMulNat0(Succ(x0), Zero) 41.28/18.89 new_addToFM_C24(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 41.28/18.89 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 41.28/18.89 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.89 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 41.28/18.89 new_esEs24(x0, x1, app(ty_Maybe, x2)) 41.28/18.89 new_compare14(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.89 new_esEs8(LT, EQ) 41.28/18.89 new_esEs8(EQ, LT) 41.28/18.89 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.89 new_esEs27(x0, x1, app(ty_[], x2)) 41.28/18.89 new_primCmpInt(Neg(Zero), Neg(Zero)) 41.28/18.89 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13, x14) 41.28/18.89 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.89 new_compare3(:(x0, x1), :(x2, x3), x4) 41.28/18.89 new_esEs7(Just(x0), Just(x1), ty_Ordering) 41.28/18.89 new_compare25(x0, x1) 41.28/18.89 new_splitGT15(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 41.28/18.89 new_lt20(x0, x1, app(ty_[], x2)) 41.28/18.89 new_esEs8(LT, LT) 41.28/18.89 new_primCmpInt(Pos(Zero), Neg(Zero)) 41.28/18.89 new_primCmpInt(Neg(Zero), Pos(Zero)) 41.28/18.89 new_esEs25(x0, x1, app(ty_Ratio, x2)) 41.28/18.89 new_esEs24(x0, x1, ty_@0) 41.28/18.89 new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) 41.28/18.89 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.89 new_ltEs19(x0, x1, ty_Int) 41.28/18.89 new_lt8(x0, x1) 41.28/18.89 new_mkVBalBranch3MkVBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13, x14) 41.28/18.89 new_esEs31(x0, x1, ty_Integer) 41.28/18.89 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.89 new_pePe(True, x0) 41.28/18.89 new_esEs19(x0, x1, ty_Double) 41.28/18.89 new_esEs34(x0, x1, ty_Char) 41.28/18.89 new_esEs32(x0, x1, ty_Char) 41.28/18.89 new_esEs21(x0, x1, ty_Float) 41.28/18.89 new_esEs25(x0, x1, ty_Ordering) 41.28/18.89 new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, True, x7, x8, x9) 41.28/18.89 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.89 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 41.28/18.89 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 41.28/18.89 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.89 new_compare16(x0, x1, x2, x3) 41.28/18.89 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6, x7) 41.28/18.89 new_mkVBalBranch3MkVBalBranch22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13, x14) 41.28/18.89 new_primPlusNat1(Succ(x0), Succ(x1)) 41.28/18.89 new_esEs20(x0, x1, app(ty_[], x2)) 41.28/18.89 new_esEs7(Nothing, Nothing, x0) 41.28/18.89 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.89 new_esEs19(x0, x1, app(ty_Maybe, x2)) 41.28/18.89 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 41.28/18.89 new_lt18(x0, x1, ty_Int) 41.28/18.89 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.89 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 41.28/18.89 new_compare14(x0, x1, app(ty_Maybe, x2)) 41.28/18.89 new_esEs26(x0, x1, ty_Ordering) 41.28/18.89 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.89 new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.89 new_ltEs18(x0, x1, app(ty_[], x2)) 41.28/18.89 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 41.28/18.89 new_compare24(x0, x1, False) 41.28/18.89 new_mkVBalBranch0(x0, x1, Branch(x2, x3, Pos(x4), x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13, x14) 41.28/18.89 new_primCompAux00(x0, LT) 41.28/18.89 new_compare14(x0, x1, ty_Float) 41.28/18.89 new_primMulNat0(Zero, Zero) 41.28/18.89 new_splitLT13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 41.28/18.89 new_esEs29(x0, x1, ty_Ordering) 41.28/18.89 new_ltEs21(x0, x1, ty_Float) 41.28/18.89 new_primCmpInt3(x0, x1) 41.28/18.89 new_esEs29(x0, x1, ty_Double) 41.28/18.89 new_ltEs14(x0, x1) 41.28/18.89 new_splitGT25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 41.28/18.89 new_lt14(x0, x1, x2) 41.28/18.89 new_esEs33(x0, x1, ty_@0) 41.28/18.89 new_primCmpInt1(Zero, x0, x1, Pos(Zero), x2, x3, x4, x5, x6, x7, x8, x9, x10) 41.28/18.89 new_sizeFM1(EmptyFM, x0, x1) 41.28/18.89 new_esEs23(x0, x1, ty_Int) 41.28/18.89 new_esEs33(x0, x1, ty_Integer) 41.28/18.89 new_esEs32(x0, x1, ty_Ordering) 41.28/18.89 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 41.28/18.89 new_splitGT24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 41.28/18.89 new_lt18(x0, x1, app(ty_Maybe, x2)) 41.28/18.89 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.89 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 41.28/18.89 new_esEs25(x0, x1, app(ty_[], x2)) 41.28/18.89 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 41.28/18.89 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 41.28/18.89 new_splitLT14(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 41.28/18.89 new_ltEs20(x0, x1, ty_Float) 41.28/18.89 new_lt9(x0, x1) 41.28/18.89 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.89 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.89 new_esEs18(x0, x1, app(ty_Maybe, x2)) 41.28/18.89 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.89 new_esEs34(x0, x1, app(ty_Ratio, x2)) 41.28/18.89 new_esEs18(x0, x1, ty_Double) 41.28/18.89 new_esEs33(x0, x1, app(ty_Ratio, x2)) 41.28/18.89 new_esEs8(EQ, GT) 41.28/18.89 new_esEs8(GT, EQ) 41.28/18.89 new_esEs12(False, False) 41.28/18.89 new_compare14(x0, x1, ty_Integer) 41.28/18.89 new_esEs24(x0, x1, ty_Ordering) 41.28/18.89 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.89 new_compare32(x0, x1, x2, x3) 41.28/18.89 new_lt20(x0, x1, app(ty_Ratio, x2)) 41.28/18.89 new_esEs28(x0, x1, ty_Double) 41.28/18.89 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 41.28/18.89 new_splitLT30(Left(x0), x1, x2, x3, x4, Right(x5), x6, x7, x8) 41.28/18.89 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.89 new_splitLT30(Right(x0), x1, x2, x3, x4, Left(x5), x6, x7, x8) 41.28/18.89 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 41.28/18.89 new_compare12(x0, x1, x2) 41.28/18.89 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.89 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5, x6) 41.28/18.89 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.89 new_esEs27(x0, x1, ty_Ordering) 41.28/18.89 new_splitLT24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 41.28/18.89 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 41.28/18.89 new_lt19(x0, x1, ty_Integer) 41.28/18.89 new_addToFM_C26(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 41.28/18.89 new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 41.28/18.89 new_esEs33(x0, x1, ty_Char) 41.28/18.89 new_esEs33(x0, x1, app(ty_[], x2)) 41.28/18.89 new_esEs35(x0, x1, ty_@0) 41.28/18.89 new_compare3([], [], x0) 41.28/18.89 new_lt18(x0, x1, ty_Char) 41.28/18.89 new_esEs30(x0, x1, ty_Double) 41.28/18.89 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.89 new_esEs19(x0, x1, app(ty_Ratio, x2)) 41.28/18.89 new_compare13(x0, x1, x2, x3, x4) 41.28/18.89 new_lt18(x0, x1, ty_@0) 41.28/18.89 new_esEs19(x0, x1, ty_Ordering) 41.28/18.89 new_esEs15(:(x0, x1), :(x2, x3), x4) 41.28/18.89 new_compare23(x0, x1, False, x2, x3) 41.28/18.89 new_esEs26(x0, x1, ty_Double) 41.28/18.89 new_primCompAux0(x0, x1, x2, x3) 41.28/18.89 new_esEs26(x0, x1, app(ty_Ratio, x2)) 41.28/18.89 new_esEs33(x0, x1, ty_Bool) 41.28/18.89 new_esEs11(Char(x0), Char(x1)) 41.28/18.89 new_mkBranch(x0, x1, x2, x3, x4, x5, x6) 41.28/18.89 new_ltEs5(LT, LT) 41.28/18.89 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 41.28/18.89 new_primCmpInt(Pos(Zero), Pos(Zero)) 41.28/18.89 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.89 new_esEs14(@0, @0) 41.28/18.89 new_esEs20(x0, x1, ty_Ordering) 41.28/18.89 new_esEs20(x0, x1, ty_Double) 41.28/18.89 new_esEs36(x0, x1, ty_Float) 41.28/18.89 new_compare10(x0, x1, False, x2, x3) 41.28/18.89 new_ltEs19(x0, x1, ty_Double) 41.28/18.89 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 41.28/18.89 new_compare14(x0, x1, ty_Bool) 41.28/18.89 new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9, x10) 41.28/18.89 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 41.28/18.89 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.89 new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 41.28/18.89 new_esEs27(x0, x1, app(ty_Maybe, x2)) 41.28/18.89 new_lt18(x0, x1, ty_Integer) 41.28/18.89 new_esEs9(x0, x1) 41.28/18.89 new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.89 new_ltEs21(x0, x1, ty_Integer) 41.28/18.89 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 41.28/18.89 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9, x10) 41.28/18.89 new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, False, x7, x8, x9) 41.28/18.89 new_lt18(x0, x1, ty_Bool) 41.28/18.89 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 41.28/18.89 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 41.28/18.89 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.89 new_esEs36(x0, x1, ty_Int) 41.28/18.89 new_esEs30(x0, x1, app(ty_[], x2)) 41.28/18.89 new_esEs34(x0, x1, app(ty_[], x2)) 41.28/18.89 new_esEs23(x0, x1, ty_Integer) 41.28/18.89 new_ltEs11(x0, x1, x2) 41.28/18.89 new_splitGT5(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) 41.28/18.89 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 41.28/18.89 new_sizeFM0(x0, x1, x2, x3, x4, x5, x6, x7) 41.28/18.89 new_compare14(x0, x1, app(ty_Ratio, x2)) 41.28/18.89 new_ltEs21(x0, x1, ty_@0) 41.28/18.89 new_asAs(True, x0) 41.28/18.89 new_lt16(x0, x1) 41.28/18.89 new_splitLT5(EmptyFM, x0, x1, x2, x3) 41.28/18.89 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.89 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 41.28/18.89 new_mkVBalBranch3MkVBalBranch22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13, x14) 41.28/18.89 new_esEs35(x0, x1, app(ty_Ratio, x2)) 41.28/18.89 new_addToFM_C0(Branch(Left(x0), x1, x2, x3, x4), Right(x5), x6, x7, x8, x9) 41.28/18.89 new_compare14(x0, x1, ty_Char) 41.28/18.89 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 41.28/18.89 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.89 new_lt19(x0, x1, ty_Bool) 41.28/18.89 new_primCmpInt0(Zero, x0, x1, Pos(Succ(x2)), x3, x4, x5, x6, x7, x8, x9, x10, x11) 41.28/18.89 new_ltEs17(Just(x0), Just(x1), ty_Float) 41.28/18.89 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 41.28/18.89 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10, x11, False, x12, x13, x14) 41.28/18.89 new_esEs32(x0, x1, app(ty_[], x2)) 41.28/18.89 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.89 new_esEs30(x0, x1, app(ty_Ratio, x2)) 41.28/18.89 new_lt18(x0, x1, app(ty_Ratio, x2)) 41.28/18.89 new_mkVBalBranch3MkVBalBranch12(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13, x14) 41.28/18.89 new_primPlusNat1(Succ(x0), Zero) 41.28/18.89 new_compare14(x0, x1, ty_Int) 41.28/18.89 new_splitLT23(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 41.28/18.89 new_esEs35(x0, x1, app(ty_Maybe, x2)) 41.28/18.89 new_emptyFM(x0, x1, x2) 41.28/18.89 new_esEs32(x0, x1, ty_Double) 41.28/18.89 new_lt19(x0, x1, ty_Float) 41.28/18.89 new_splitGT15(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 41.28/18.89 new_splitLT14(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 41.28/18.89 new_splitGT25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 41.28/18.89 new_esEs20(x0, x1, app(ty_Maybe, x2)) 41.28/18.89 new_ltEs5(EQ, EQ) 41.28/18.89 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, EmptyFM, x4, x5, x6, False, x7, x8, x9) 41.28/18.89 new_esEs26(x0, x1, app(ty_Maybe, x2)) 41.28/18.89 new_esEs34(x0, x1, ty_Double) 41.28/18.89 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.89 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 41.28/18.89 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.89 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5, x6) 41.28/18.89 new_esEs16(Float(x0, x1), Float(x2, x3)) 41.28/18.89 new_lt19(x0, x1, ty_Char) 41.28/18.89 new_esEs18(x0, x1, ty_Ordering) 41.28/18.89 new_splitLT13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 41.28/18.89 new_esEs15([], [], x0) 41.28/18.89 new_splitGT30(Left(x0), x1, x2, x3, x4, Right(x5), x6, x7, x8) 41.28/18.89 new_splitGT30(Right(x0), x1, x2, x3, x4, Left(x5), x6, x7, x8) 41.28/18.89 new_compare14(x0, x1, app(app(ty_Either, x2), x3)) 41.28/18.89 new_lt20(x0, x1, ty_Ordering) 41.28/18.89 new_esEs30(x0, x1, ty_Ordering) 41.28/18.89 new_ltEs16(x0, x1) 41.28/18.89 new_primCmpNat1(x0, Succ(x1)) 41.28/18.89 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 41.28/18.89 new_lt17(x0, x1, x2, x3) 41.28/18.89 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 41.28/18.89 new_mkBalBranch6MkBalBranch3(EmptyFM, x0, x1, x2, True, x3, x4, x5) 41.28/18.89 new_compare7(x0, x1) 41.28/18.89 new_primMulNat0(Zero, Succ(x0)) 41.28/18.89 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 41.28/18.89 new_primEqNat0(Zero, Succ(x0)) 41.28/18.89 new_primCmpNat0(Zero, Zero) 41.28/18.89 new_splitGT5(EmptyFM, x0, x1, x2, x3) 41.28/18.89 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 41.28/18.89 new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 41.28/18.89 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 41.28/18.89 new_lt19(x0, x1, ty_Int) 41.28/18.89 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 41.28/18.89 41.28/18.89 We have to consider all minimal (P,Q,R)-chains. 41.28/18.89 ---------------------------------------- 41.28/18.89 41.28/18.89 (62) QDPSizeChangeProof (EQUIVALENT) 41.28/18.89 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. 41.28/18.89 41.28/18.89 From the DPs we obtained the following set of size-change graphs: 41.28/18.89 *new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba, bb) -> new_plusFM(new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba, bb), yvy44, h, ba, bb) 41.28/18.89 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4, 5 >= 5 41.28/18.89 41.28/18.89 41.28/18.89 *new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba, bb) -> new_plusFM(new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba, bb), yvy43, h, ba, bb) 41.28/18.89 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4, 5 >= 5 41.28/18.89 41.28/18.89 41.28/18.89 ---------------------------------------- 41.28/18.89 41.28/18.89 (63) 41.28/18.89 YES 41.28/18.89 41.28/18.89 ---------------------------------------- 41.28/18.89 41.28/18.89 (64) 41.28/18.89 Obligation: 41.28/18.89 Q DP problem: 41.28/18.89 The TRS P consists of the following rules: 41.28/18.89 41.28/18.89 new_primEqNat(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat(yvy40000, yvy30000) 41.28/18.89 41.28/18.89 R is empty. 41.28/18.89 Q is empty. 41.28/18.89 We have to consider all minimal (P,Q,R)-chains. 41.28/18.89 ---------------------------------------- 41.28/18.89 41.28/18.89 (65) QDPSizeChangeProof (EQUIVALENT) 41.28/18.89 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. 41.28/18.89 41.28/18.89 From the DPs we obtained the following set of size-change graphs: 41.28/18.89 *new_primEqNat(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat(yvy40000, yvy30000) 41.28/18.89 The graph contains the following edges 1 > 1, 2 > 2 41.28/18.89 41.28/18.89 41.28/18.89 ---------------------------------------- 41.28/18.89 41.28/18.89 (66) 41.28/18.89 YES 41.28/18.89 41.28/18.89 ---------------------------------------- 41.28/18.89 41.28/18.89 (67) 41.28/18.89 Obligation: 41.28/18.89 Q DP problem: 41.28/18.89 The TRS P consists of the following rules: 41.28/18.89 41.28/18.89 new_primMinusNat(Succ(yvy24300), Succ(yvy24200)) -> new_primMinusNat(yvy24300, yvy24200) 41.28/18.89 41.28/18.89 R is empty. 41.28/18.89 Q is empty. 41.28/18.89 We have to consider all minimal (P,Q,R)-chains. 41.28/18.89 ---------------------------------------- 41.28/18.89 41.28/18.89 (68) QDPSizeChangeProof (EQUIVALENT) 41.28/18.89 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. 41.28/18.89 41.28/18.89 From the DPs we obtained the following set of size-change graphs: 41.28/18.89 *new_primMinusNat(Succ(yvy24300), Succ(yvy24200)) -> new_primMinusNat(yvy24300, yvy24200) 41.28/18.89 The graph contains the following edges 1 > 1, 2 > 2 41.28/18.89 41.28/18.89 41.28/18.89 ---------------------------------------- 41.28/18.89 41.28/18.89 (69) 41.28/18.89 YES 41.28/18.89 41.28/18.89 ---------------------------------------- 41.28/18.89 41.28/18.89 (70) 41.28/18.89 Obligation: 41.28/18.89 Q DP problem: 41.28/18.89 The TRS P consists of the following rules: 41.28/18.89 41.28/18.89 new_primPlusNat(Succ(yvy20100), Succ(yvy3000000)) -> new_primPlusNat(yvy20100, yvy3000000) 41.28/18.89 41.28/18.89 R is empty. 41.28/18.89 Q is empty. 41.28/18.89 We have to consider all minimal (P,Q,R)-chains. 41.28/18.89 ---------------------------------------- 41.28/18.89 41.28/18.89 (71) QDPSizeChangeProof (EQUIVALENT) 41.28/18.89 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. 41.28/18.89 41.28/18.89 From the DPs we obtained the following set of size-change graphs: 41.28/18.89 *new_primPlusNat(Succ(yvy20100), Succ(yvy3000000)) -> new_primPlusNat(yvy20100, yvy3000000) 41.28/18.89 The graph contains the following edges 1 > 1, 2 > 2 41.28/18.89 41.28/18.89 41.28/18.89 ---------------------------------------- 41.28/18.89 41.28/18.89 (72) 41.28/18.89 YES 41.42/18.94 EOF