26.44/12.44 YES 28.98/13.15 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 28.98/13.15 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 28.98/13.15 28.98/13.15 28.98/13.15 H-Termination with start terms of the given HASKELL could be proven: 28.98/13.15 28.98/13.15 (0) HASKELL 28.98/13.15 (1) LR [EQUIVALENT, 0 ms] 28.98/13.15 (2) HASKELL 28.98/13.15 (3) CR [EQUIVALENT, 0 ms] 28.98/13.15 (4) HASKELL 28.98/13.15 (5) IFR [EQUIVALENT, 0 ms] 28.98/13.15 (6) HASKELL 28.98/13.15 (7) BR [EQUIVALENT, 7 ms] 28.98/13.15 (8) HASKELL 28.98/13.15 (9) COR [EQUIVALENT, 0 ms] 28.98/13.15 (10) HASKELL 28.98/13.15 (11) LetRed [EQUIVALENT, 0 ms] 28.98/13.15 (12) HASKELL 28.98/13.15 (13) NumRed [SOUND, 0 ms] 28.98/13.15 (14) HASKELL 28.98/13.15 (15) Narrow [SOUND, 0 ms] 28.98/13.15 (16) AND 28.98/13.15 (17) QDP 28.98/13.15 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.98/13.15 (19) YES 28.98/13.15 (20) QDP 28.98/13.15 (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.98/13.15 (22) YES 28.98/13.15 (23) QDP 28.98/13.15 (24) DependencyGraphProof [EQUIVALENT, 0 ms] 28.98/13.15 (25) AND 28.98/13.15 (26) QDP 28.98/13.15 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.98/13.15 (28) YES 28.98/13.15 (29) QDP 28.98/13.15 (30) TransformationProof [EQUIVALENT, 1641 ms] 28.98/13.15 (31) QDP 28.98/13.15 (32) DependencyGraphProof [EQUIVALENT, 0 ms] 28.98/13.15 (33) QDP 28.98/13.15 (34) TransformationProof [EQUIVALENT, 0 ms] 28.98/13.15 (35) QDP 28.98/13.15 (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.98/13.15 (37) YES 28.98/13.15 (38) QDP 28.98/13.15 (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.98/13.15 (40) YES 28.98/13.15 (41) QDP 28.98/13.15 (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.98/13.15 (43) YES 28.98/13.15 (44) QDP 28.98/13.15 (45) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.98/13.15 (46) YES 28.98/13.15 (47) QDP 28.98/13.15 (48) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.98/13.15 (49) YES 28.98/13.15 (50) QDP 28.98/13.15 (51) QDPSizeChangeProof [EQUIVALENT, 8 ms] 28.98/13.15 (52) YES 28.98/13.15 (53) QDP 28.98/13.15 (54) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.98/13.15 (55) YES 28.98/13.15 (56) QDP 28.98/13.15 (57) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.98/13.15 (58) YES 28.98/13.15 (59) QDP 28.98/13.15 (60) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.98/13.15 (61) YES 28.98/13.15 (62) QDP 28.98/13.15 (63) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.98/13.15 (64) YES 28.98/13.15 (65) QDP 28.98/13.15 (66) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.98/13.15 (67) YES 28.98/13.15 (68) QDP 28.98/13.15 (69) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.98/13.15 (70) YES 28.98/13.15 (71) QDP 28.98/13.15 (72) QDPSizeChangeProof [EQUIVALENT, 0 ms] 28.98/13.15 (73) YES 28.98/13.15 28.98/13.15 28.98/13.15 ---------------------------------------- 28.98/13.15 28.98/13.15 (0) 28.98/13.15 Obligation: 28.98/13.15 mainModule Main 28.98/13.15 module FiniteMap where { 28.98/13.15 import qualified Main; 28.98/13.15 import qualified Maybe; 28.98/13.15 import qualified Prelude; 28.98/13.15 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 28.98/13.15 28.98/13.15 instance (Eq a, Eq b) => Eq FiniteMap b a where { 28.98/13.15 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.98/13.15 } 28.98/13.15 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 28.98/13.15 delFromFM EmptyFM del_key = emptyFM; 28.98/13.15 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 28.98/13.15 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 28.98/13.15 | key == del_key = glueBal fm_l fm_r; 28.98/13.15 28.98/13.15 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 28.98/13.15 delListFromFM fm keys = foldl delFromFM fm keys; 28.98/13.15 28.98/13.15 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 28.98/13.15 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 28.98/13.15 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 28.98/13.15 28.98/13.15 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 28.98/13.15 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 28.98/13.15 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 28.98/13.15 28.98/13.15 emptyFM :: FiniteMap b a; 28.98/13.15 emptyFM = EmptyFM; 28.98/13.15 28.98/13.15 findMax :: FiniteMap a b -> (a,b); 28.98/13.15 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 28.98/13.15 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 28.98/13.15 28.98/13.15 findMin :: FiniteMap a b -> (a,b); 28.98/13.15 findMin (Branch key elt _ EmptyFM _) = (key,elt); 28.98/13.15 findMin (Branch key elt _ fm_l _) = findMin fm_l; 28.98/13.15 28.98/13.15 fmToList :: FiniteMap b a -> [(b,a)]; 28.98/13.15 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 28.98/13.15 28.98/13.15 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 28.98/13.15 foldFM k z EmptyFM = z; 28.98/13.15 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 28.98/13.15 28.98/13.15 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 28.98/13.15 glueBal EmptyFM fm2 = fm2; 28.98/13.15 glueBal fm1 EmptyFM = fm1; 28.98/13.15 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 28.98/13.15 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 28.98/13.15 mid_elt1 = (\(_,mid_elt1) ->mid_elt1) vv2; 28.98/13.15 mid_elt2 = (\(_,mid_elt2) ->mid_elt2) vv3; 28.98/13.15 mid_key1 = (\(mid_key1,_) ->mid_key1) vv2; 28.98/13.15 mid_key2 = (\(mid_key2,_) ->mid_key2) vv3; 28.98/13.15 vv2 = findMax fm1; 28.98/13.15 vv3 = findMin fm2; 28.98/13.15 }; 28.98/13.15 28.98/13.15 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.98/13.15 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 28.98/13.15 | size_r > sIZE_RATIO * size_l = case fm_R of { 28.98/13.15 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 28.98/13.15 | otherwise -> double_L fm_L fm_R; 28.98/13.15 } 28.98/13.15 | size_l > sIZE_RATIO * size_r = case fm_L of { 28.98/13.15 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 28.98/13.15 | otherwise -> double_R fm_L fm_R; 28.98/13.15 } 28.98/13.15 | otherwise = mkBranch 2 key elt fm_L fm_R where { 28.98/13.15 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); 28.98/13.15 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); 28.98/13.15 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; 28.98/13.15 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); 28.98/13.15 size_l = sizeFM fm_L; 28.98/13.15 size_r = sizeFM fm_R; 28.98/13.15 }; 28.98/13.15 28.98/13.15 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 28.98/13.15 mkBranch which key elt fm_l fm_r = let { 28.98/13.15 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 28.98/13.15 } in result where { 28.98/13.15 balance_ok = True; 28.98/13.15 left_ok = case fm_l of { 28.98/13.15 EmptyFM-> True; 28.98/13.15 Branch left_key _ _ _ _-> let { 28.98/13.15 biggest_left_key = fst (findMax fm_l); 28.98/13.15 } in biggest_left_key < key; 28.98/13.15 } ; 28.98/13.15 left_size = sizeFM fm_l; 28.98/13.15 right_ok = case fm_r of { 28.98/13.15 EmptyFM-> True; 28.98/13.15 Branch right_key _ _ _ _-> let { 28.98/13.15 smallest_right_key = fst (findMin fm_r); 28.98/13.15 } in key < smallest_right_key; 28.98/13.15 } ; 28.98/13.15 right_size = sizeFM fm_r; 28.98/13.15 unbox :: Int -> Int; 28.98/13.15 unbox x = x; 28.98/13.15 }; 28.98/13.15 28.98/13.15 sIZE_RATIO :: Int; 28.98/13.15 sIZE_RATIO = 5; 28.98/13.15 28.98/13.15 sizeFM :: FiniteMap b a -> Int; 28.98/13.15 sizeFM EmptyFM = 0; 28.98/13.15 sizeFM (Branch _ _ size _ _) = size; 28.98/13.15 28.98/13.15 } 28.98/13.15 module Maybe where { 28.98/13.15 import qualified FiniteMap; 28.98/13.15 import qualified Main; 28.98/13.15 import qualified Prelude; 28.98/13.15 } 28.98/13.15 module Main where { 28.98/13.15 import qualified FiniteMap; 28.98/13.15 import qualified Maybe; 28.98/13.15 import qualified Prelude; 28.98/13.15 } 28.98/13.15 28.98/13.15 ---------------------------------------- 28.98/13.15 28.98/13.15 (1) LR (EQUIVALENT) 28.98/13.15 Lambda Reductions: 28.98/13.15 The following Lambda expression 28.98/13.15 "\(_,mid_elt2)->mid_elt2" 28.98/13.15 is transformed to 28.98/13.15 "mid_elt20 (_,mid_elt2) = mid_elt2; 28.98/13.15 " 28.98/13.15 The following Lambda expression 28.98/13.15 "\(mid_key2,_)->mid_key2" 28.98/13.15 is transformed to 28.98/13.15 "mid_key20 (mid_key2,_) = mid_key2; 28.98/13.15 " 28.98/13.15 The following Lambda expression 28.98/13.15 "\(mid_key1,_)->mid_key1" 28.98/13.15 is transformed to 28.98/13.15 "mid_key10 (mid_key1,_) = mid_key1; 28.98/13.15 " 28.98/13.15 The following Lambda expression 28.98/13.15 "\(_,mid_elt1)->mid_elt1" 28.98/13.15 is transformed to 28.98/13.15 "mid_elt10 (_,mid_elt1) = mid_elt1; 28.98/13.15 " 28.98/13.15 The following Lambda expression 28.98/13.15 "\keyeltrest->(key,elt) : rest" 28.98/13.15 is transformed to 28.98/13.15 "fmToList0 key elt rest = (key,elt) : rest; 28.98/13.15 " 28.98/13.15 28.98/13.15 ---------------------------------------- 28.98/13.15 28.98/13.15 (2) 28.98/13.15 Obligation: 28.98/13.15 mainModule Main 28.98/13.15 module FiniteMap where { 28.98/13.15 import qualified Main; 28.98/13.15 import qualified Maybe; 28.98/13.15 import qualified Prelude; 28.98/13.15 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 28.98/13.15 28.98/13.15 instance (Eq a, Eq b) => Eq FiniteMap b a where { 28.98/13.15 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 28.98/13.15 } 28.98/13.15 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 28.98/13.15 delFromFM EmptyFM del_key = emptyFM; 28.98/13.15 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 28.98/13.15 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 28.98/13.15 | key == del_key = glueBal fm_l fm_r; 28.98/13.15 28.98/13.15 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 29.30/13.26 delListFromFM fm keys = foldl delFromFM fm keys; 29.30/13.26 29.30/13.26 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 29.30/13.26 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 29.30/13.26 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 29.30/13.26 29.30/13.26 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 29.30/13.26 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 29.30/13.26 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 29.30/13.26 29.30/13.26 emptyFM :: FiniteMap a b; 29.30/13.26 emptyFM = EmptyFM; 29.30/13.26 29.30/13.26 findMax :: FiniteMap a b -> (a,b); 29.30/13.26 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 29.30/13.26 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 29.30/13.26 29.30/13.26 findMin :: FiniteMap b a -> (b,a); 29.30/13.26 findMin (Branch key elt _ EmptyFM _) = (key,elt); 29.30/13.26 findMin (Branch key elt _ fm_l _) = findMin fm_l; 29.30/13.26 29.30/13.26 fmToList :: FiniteMap b a -> [(b,a)]; 29.30/13.26 fmToList fm = foldFM fmToList0 [] fm; 29.30/13.26 29.30/13.26 fmToList0 key elt rest = (key,elt) : rest; 29.30/13.26 29.30/13.26 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 29.30/13.26 foldFM k z EmptyFM = z; 29.30/13.26 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.30/13.26 29.30/13.26 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.30/13.26 glueBal EmptyFM fm2 = fm2; 29.30/13.26 glueBal fm1 EmptyFM = fm1; 29.30/13.26 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 29.30/13.26 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 29.30/13.26 mid_elt1 = mid_elt10 vv2; 29.30/13.26 mid_elt10 (_,mid_elt1) = mid_elt1; 29.30/13.26 mid_elt2 = mid_elt20 vv3; 29.30/13.26 mid_elt20 (_,mid_elt2) = mid_elt2; 29.30/13.26 mid_key1 = mid_key10 vv2; 29.30/13.26 mid_key10 (mid_key1,_) = mid_key1; 29.30/13.26 mid_key2 = mid_key20 vv3; 29.30/13.26 mid_key20 (mid_key2,_) = mid_key2; 29.30/13.26 vv2 = findMax fm1; 29.30/13.26 vv3 = findMin fm2; 29.30/13.26 }; 29.30/13.26 29.30/13.26 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.30/13.26 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 29.30/13.26 | size_r > sIZE_RATIO * size_l = case fm_R of { 29.30/13.26 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 29.30/13.26 | otherwise -> double_L fm_L fm_R; 29.30/13.26 } 29.30/13.26 | size_l > sIZE_RATIO * size_r = case fm_L of { 29.30/13.26 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 29.30/13.26 | otherwise -> double_R fm_L fm_R; 29.30/13.26 } 29.30/13.26 | otherwise = mkBranch 2 key elt fm_L fm_R where { 29.30/13.26 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); 29.30/13.26 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); 29.30/13.26 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; 29.30/13.26 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); 29.30/13.26 size_l = sizeFM fm_L; 29.30/13.26 size_r = sizeFM fm_R; 29.30/13.26 }; 29.30/13.26 29.30/13.26 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.30/13.26 mkBranch which key elt fm_l fm_r = let { 29.30/13.26 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.30/13.26 } in result where { 29.30/13.26 balance_ok = True; 29.30/13.26 left_ok = case fm_l of { 29.30/13.26 EmptyFM-> True; 29.30/13.26 Branch left_key _ _ _ _-> let { 29.30/13.26 biggest_left_key = fst (findMax fm_l); 29.30/13.26 } in biggest_left_key < key; 29.30/13.26 } ; 29.30/13.26 left_size = sizeFM fm_l; 29.30/13.26 right_ok = case fm_r of { 29.30/13.26 EmptyFM-> True; 29.30/13.26 Branch right_key _ _ _ _-> let { 29.30/13.26 smallest_right_key = fst (findMin fm_r); 29.30/13.26 } in key < smallest_right_key; 29.30/13.26 } ; 29.30/13.26 right_size = sizeFM fm_r; 29.30/13.26 unbox :: Int -> Int; 29.30/13.26 unbox x = x; 29.30/13.26 }; 29.30/13.26 29.30/13.26 sIZE_RATIO :: Int; 29.30/13.26 sIZE_RATIO = 5; 29.30/13.26 29.30/13.26 sizeFM :: FiniteMap b a -> Int; 29.30/13.26 sizeFM EmptyFM = 0; 29.30/13.26 sizeFM (Branch _ _ size _ _) = size; 29.30/13.26 29.30/13.26 } 29.30/13.26 module Maybe where { 29.30/13.26 import qualified FiniteMap; 29.30/13.26 import qualified Main; 29.30/13.26 import qualified Prelude; 29.30/13.26 } 29.30/13.26 module Main where { 29.30/13.26 import qualified FiniteMap; 29.30/13.26 import qualified Maybe; 29.30/13.26 import qualified Prelude; 29.30/13.26 } 29.30/13.26 29.30/13.26 ---------------------------------------- 29.30/13.26 29.30/13.26 (3) CR (EQUIVALENT) 29.30/13.26 Case Reductions: 29.30/13.26 The following Case expression 29.30/13.26 "case compare x y of { 29.30/13.26 EQ -> o; 29.30/13.26 LT -> LT; 29.30/13.26 GT -> GT} 29.30/13.26 " 29.30/13.26 is transformed to 29.30/13.26 "primCompAux0 o EQ = o; 29.30/13.26 primCompAux0 o LT = LT; 29.30/13.26 primCompAux0 o GT = GT; 29.30/13.26 " 29.30/13.26 The following Case expression 29.30/13.26 "case fm_r of { 29.30/13.26 EmptyFM -> True; 29.30/13.26 Branch right_key _ _ _ _ -> let { 29.30/13.26 smallest_right_key = fst (findMin fm_r); 29.30/13.26 } in key < smallest_right_key} 29.30/13.26 " 29.30/13.26 is transformed to 29.30/13.26 "right_ok0 fm_r key EmptyFM = True; 29.30/13.26 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 29.30/13.26 smallest_right_key = fst (findMin fm_r); 29.30/13.26 } in key < smallest_right_key; 29.30/13.26 " 29.30/13.26 The following Case expression 29.30/13.26 "case fm_l of { 29.30/13.26 EmptyFM -> True; 29.30/13.26 Branch left_key _ _ _ _ -> let { 29.30/13.26 biggest_left_key = fst (findMax fm_l); 29.30/13.26 } in biggest_left_key < key} 29.30/13.26 " 29.30/13.26 is transformed to 29.30/13.26 "left_ok0 fm_l key EmptyFM = True; 29.30/13.26 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 29.30/13.26 biggest_left_key = fst (findMax fm_l); 29.30/13.26 } in biggest_left_key < key; 29.30/13.26 " 29.30/13.26 The following Case expression 29.30/13.26 "case fm_R of { 29.30/13.26 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 29.30/13.26 " 29.30/13.26 is transformed to 29.30/13.26 "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; 29.30/13.26 " 29.30/13.26 The following Case expression 29.30/13.26 "case fm_L of { 29.30/13.26 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 29.30/13.26 " 29.30/13.26 is transformed to 29.30/13.26 "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; 29.30/13.26 " 29.30/13.26 29.30/13.26 ---------------------------------------- 29.30/13.26 29.30/13.26 (4) 29.30/13.26 Obligation: 29.30/13.26 mainModule Main 29.30/13.26 module FiniteMap where { 29.30/13.26 import qualified Main; 29.30/13.26 import qualified Maybe; 29.30/13.26 import qualified Prelude; 29.30/13.26 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 29.30/13.26 29.30/13.26 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.30/13.26 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.30/13.26 } 29.30/13.26 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 29.30/13.26 delFromFM EmptyFM del_key = emptyFM; 29.30/13.26 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 29.30/13.26 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 29.30/13.26 | key == del_key = glueBal fm_l fm_r; 29.30/13.26 29.30/13.26 delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; 29.30/13.26 delListFromFM fm keys = foldl delFromFM fm keys; 29.30/13.26 29.30/13.26 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 29.30/13.26 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 29.30/13.26 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 29.30/13.26 29.30/13.26 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 29.30/13.26 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 29.30/13.26 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 29.30/13.26 29.30/13.26 emptyFM :: FiniteMap b a; 29.30/13.26 emptyFM = EmptyFM; 29.30/13.26 29.30/13.26 findMax :: FiniteMap a b -> (a,b); 29.30/13.26 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 29.30/13.26 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 29.30/13.26 29.30/13.26 findMin :: FiniteMap b a -> (b,a); 29.30/13.26 findMin (Branch key elt _ EmptyFM _) = (key,elt); 29.30/13.26 findMin (Branch key elt _ fm_l _) = findMin fm_l; 29.30/13.26 29.30/13.26 fmToList :: FiniteMap a b -> [(a,b)]; 29.30/13.26 fmToList fm = foldFM fmToList0 [] fm; 29.30/13.26 29.30/13.26 fmToList0 key elt rest = (key,elt) : rest; 29.30/13.26 29.30/13.26 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 29.30/13.26 foldFM k z EmptyFM = z; 29.30/13.26 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.30/13.26 29.30/13.26 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.30/13.26 glueBal EmptyFM fm2 = fm2; 29.30/13.26 glueBal fm1 EmptyFM = fm1; 29.30/13.26 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 29.30/13.26 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 29.30/13.26 mid_elt1 = mid_elt10 vv2; 29.30/13.26 mid_elt10 (_,mid_elt1) = mid_elt1; 29.30/13.26 mid_elt2 = mid_elt20 vv3; 29.30/13.26 mid_elt20 (_,mid_elt2) = mid_elt2; 29.30/13.26 mid_key1 = mid_key10 vv2; 29.30/13.26 mid_key10 (mid_key1,_) = mid_key1; 29.30/13.26 mid_key2 = mid_key20 vv3; 29.30/13.26 mid_key20 (mid_key2,_) = mid_key2; 29.30/13.26 vv2 = findMax fm1; 29.30/13.26 vv3 = findMin fm2; 29.30/13.26 }; 29.30/13.26 29.30/13.26 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.30/13.26 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 29.30/13.26 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 29.30/13.26 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 29.30/13.26 | otherwise = mkBranch 2 key elt fm_L fm_R where { 29.30/13.27 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); 29.30/13.27 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); 29.30/13.27 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 29.30/13.27 | otherwise = double_L fm_L fm_R; 29.30/13.27 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 29.30/13.27 | otherwise = double_R fm_L fm_R; 29.30/13.27 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; 29.30/13.27 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); 29.30/13.27 size_l = sizeFM fm_L; 29.30/13.27 size_r = sizeFM fm_R; 29.30/13.27 }; 29.30/13.27 29.30/13.27 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.30/13.27 mkBranch which key elt fm_l fm_r = let { 29.30/13.27 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.30/13.27 } in result where { 29.30/13.27 balance_ok = True; 29.30/13.27 left_ok = left_ok0 fm_l key fm_l; 29.30/13.27 left_ok0 fm_l key EmptyFM = True; 29.30/13.27 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 29.30/13.27 biggest_left_key = fst (findMax fm_l); 29.30/13.27 } in biggest_left_key < key; 29.30/13.27 left_size = sizeFM fm_l; 29.30/13.27 right_ok = right_ok0 fm_r key fm_r; 29.30/13.27 right_ok0 fm_r key EmptyFM = True; 29.30/13.27 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 29.30/13.27 smallest_right_key = fst (findMin fm_r); 29.30/13.27 } in key < smallest_right_key; 29.30/13.27 right_size = sizeFM fm_r; 29.30/13.27 unbox :: Int -> Int; 29.30/13.27 unbox x = x; 29.30/13.27 }; 29.30/13.27 29.30/13.27 sIZE_RATIO :: Int; 29.30/13.27 sIZE_RATIO = 5; 29.30/13.27 29.30/13.27 sizeFM :: FiniteMap a b -> Int; 29.30/13.27 sizeFM EmptyFM = 0; 29.30/13.27 sizeFM (Branch _ _ size _ _) = size; 29.30/13.27 29.30/13.27 } 29.30/13.27 module Maybe where { 29.30/13.27 import qualified FiniteMap; 29.30/13.27 import qualified Main; 29.30/13.27 import qualified Prelude; 29.30/13.27 } 29.30/13.27 module Main where { 29.30/13.27 import qualified FiniteMap; 29.30/13.27 import qualified Maybe; 29.30/13.27 import qualified Prelude; 29.30/13.27 } 29.30/13.27 29.30/13.27 ---------------------------------------- 29.30/13.27 29.30/13.27 (5) IFR (EQUIVALENT) 29.30/13.27 If Reductions: 29.30/13.27 The following If expression 29.30/13.27 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 29.30/13.27 is transformed to 29.30/13.27 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 29.30/13.27 primDivNatS0 x y False = Zero; 29.30/13.27 " 29.30/13.27 The following If expression 29.30/13.27 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 29.30/13.27 is transformed to 29.30/13.27 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 29.30/13.27 primModNatS0 x y False = Succ x; 29.30/13.27 " 29.30/13.27 29.30/13.27 ---------------------------------------- 29.30/13.27 29.30/13.27 (6) 29.30/13.27 Obligation: 29.30/13.27 mainModule Main 29.30/13.27 module FiniteMap where { 29.30/13.27 import qualified Main; 29.30/13.27 import qualified Maybe; 29.30/13.27 import qualified Prelude; 29.30/13.27 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 29.30/13.27 29.30/13.27 instance (Eq a, Eq b) => Eq FiniteMap a b where { 29.30/13.27 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.30/13.27 } 29.30/13.27 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 29.30/13.27 delFromFM EmptyFM del_key = emptyFM; 29.30/13.27 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 29.30/13.27 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 29.30/13.27 | key == del_key = glueBal fm_l fm_r; 29.30/13.27 29.30/13.27 delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; 29.30/13.27 delListFromFM fm keys = foldl delFromFM fm keys; 29.30/13.27 29.30/13.27 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 29.30/13.27 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 29.30/13.27 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 29.30/13.27 29.30/13.27 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 29.30/13.27 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 29.30/13.27 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 29.30/13.27 29.30/13.27 emptyFM :: FiniteMap b a; 29.30/13.27 emptyFM = EmptyFM; 29.30/13.27 29.30/13.27 findMax :: FiniteMap a b -> (a,b); 29.30/13.27 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 29.30/13.27 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 29.30/13.27 29.30/13.27 findMin :: FiniteMap b a -> (b,a); 29.30/13.27 findMin (Branch key elt _ EmptyFM _) = (key,elt); 29.30/13.27 findMin (Branch key elt _ fm_l _) = findMin fm_l; 29.30/13.27 29.30/13.27 fmToList :: FiniteMap a b -> [(a,b)]; 29.30/13.27 fmToList fm = foldFM fmToList0 [] fm; 29.30/13.27 29.30/13.27 fmToList0 key elt rest = (key,elt) : rest; 29.30/13.27 29.30/13.27 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 29.30/13.27 foldFM k z EmptyFM = z; 29.30/13.27 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.30/13.27 29.30/13.27 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.30/13.27 glueBal EmptyFM fm2 = fm2; 29.30/13.27 glueBal fm1 EmptyFM = fm1; 29.30/13.27 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 29.30/13.27 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 29.30/13.27 mid_elt1 = mid_elt10 vv2; 29.30/13.27 mid_elt10 (_,mid_elt1) = mid_elt1; 29.30/13.27 mid_elt2 = mid_elt20 vv3; 29.30/13.27 mid_elt20 (_,mid_elt2) = mid_elt2; 29.30/13.27 mid_key1 = mid_key10 vv2; 29.30/13.27 mid_key10 (mid_key1,_) = mid_key1; 29.30/13.27 mid_key2 = mid_key20 vv3; 29.30/13.27 mid_key20 (mid_key2,_) = mid_key2; 29.30/13.27 vv2 = findMax fm1; 29.30/13.27 vv3 = findMin fm2; 29.30/13.27 }; 29.30/13.27 29.30/13.27 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.30/13.27 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 29.30/13.27 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 29.30/13.27 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 29.30/13.27 | otherwise = mkBranch 2 key elt fm_L fm_R where { 29.30/13.27 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); 29.30/13.27 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); 29.30/13.27 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 29.30/13.27 | otherwise = double_L fm_L fm_R; 29.30/13.27 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 29.30/13.27 | otherwise = double_R fm_L fm_R; 29.30/13.27 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; 29.30/13.27 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); 29.30/13.27 size_l = sizeFM fm_L; 29.30/13.27 size_r = sizeFM fm_R; 29.30/13.27 }; 29.30/13.27 29.30/13.27 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.30/13.27 mkBranch which key elt fm_l fm_r = let { 29.30/13.27 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.30/13.27 } in result where { 29.30/13.27 balance_ok = True; 29.30/13.27 left_ok = left_ok0 fm_l key fm_l; 29.30/13.27 left_ok0 fm_l key EmptyFM = True; 29.30/13.27 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 29.30/13.27 biggest_left_key = fst (findMax fm_l); 29.30/13.27 } in biggest_left_key < key; 29.30/13.27 left_size = sizeFM fm_l; 29.30/13.27 right_ok = right_ok0 fm_r key fm_r; 29.30/13.27 right_ok0 fm_r key EmptyFM = True; 29.30/13.27 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 29.30/13.27 smallest_right_key = fst (findMin fm_r); 29.30/13.27 } in key < smallest_right_key; 29.30/13.27 right_size = sizeFM fm_r; 29.30/13.27 unbox :: Int -> Int; 29.30/13.27 unbox x = x; 29.30/13.27 }; 29.30/13.27 29.30/13.27 sIZE_RATIO :: Int; 29.30/13.27 sIZE_RATIO = 5; 29.30/13.27 29.30/13.27 sizeFM :: FiniteMap b a -> Int; 29.30/13.27 sizeFM EmptyFM = 0; 29.30/13.27 sizeFM (Branch _ _ size _ _) = size; 29.30/13.27 29.30/13.27 } 29.30/13.27 module Maybe where { 29.30/13.27 import qualified FiniteMap; 29.30/13.27 import qualified Main; 29.30/13.27 import qualified Prelude; 29.30/13.27 } 29.30/13.27 module Main where { 29.30/13.27 import qualified FiniteMap; 29.30/13.27 import qualified Maybe; 29.30/13.27 import qualified Prelude; 29.30/13.27 } 29.30/13.27 29.30/13.27 ---------------------------------------- 29.30/13.27 29.30/13.27 (7) BR (EQUIVALENT) 29.30/13.27 Replaced joker patterns by fresh variables and removed binding patterns. 29.30/13.27 ---------------------------------------- 29.30/13.27 29.30/13.27 (8) 29.30/13.27 Obligation: 29.30/13.27 mainModule Main 29.30/13.27 module FiniteMap where { 29.30/13.27 import qualified Main; 29.30/13.27 import qualified Maybe; 29.30/13.27 import qualified Prelude; 29.30/13.27 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 29.30/13.27 29.30/13.27 instance (Eq a, Eq b) => Eq FiniteMap a b where { 29.30/13.27 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.30/13.27 } 29.30/13.27 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 29.30/13.27 delFromFM EmptyFM del_key = emptyFM; 29.30/13.27 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 29.30/13.27 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 29.30/13.27 | key == del_key = glueBal fm_l fm_r; 29.30/13.27 29.30/13.27 delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; 29.56/13.32 delListFromFM fm keys = foldl delFromFM fm keys; 29.56/13.32 29.56/13.32 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 29.56/13.32 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 29.56/13.32 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 29.56/13.32 29.56/13.32 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 29.56/13.32 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 29.56/13.32 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 29.56/13.32 29.56/13.32 emptyFM :: FiniteMap b a; 29.56/13.32 emptyFM = EmptyFM; 29.56/13.32 29.56/13.32 findMax :: FiniteMap a b -> (a,b); 29.56/13.32 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 29.56/13.32 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 29.56/13.32 29.56/13.32 findMin :: FiniteMap b a -> (b,a); 29.56/13.32 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 29.56/13.32 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 29.56/13.32 29.56/13.32 fmToList :: FiniteMap a b -> [(a,b)]; 29.56/13.32 fmToList fm = foldFM fmToList0 [] fm; 29.56/13.32 29.56/13.32 fmToList0 key elt rest = (key,elt) : rest; 29.56/13.32 29.56/13.32 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 29.56/13.32 foldFM k z EmptyFM = z; 29.56/13.32 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.56/13.32 29.56/13.32 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.56/13.32 glueBal EmptyFM fm2 = fm2; 29.56/13.32 glueBal fm1 EmptyFM = fm1; 29.56/13.32 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 29.56/13.32 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 29.56/13.32 mid_elt1 = mid_elt10 vv2; 29.56/13.32 mid_elt10 (vyw,mid_elt1) = mid_elt1; 29.56/13.32 mid_elt2 = mid_elt20 vv3; 29.56/13.32 mid_elt20 (vyv,mid_elt2) = mid_elt2; 29.56/13.32 mid_key1 = mid_key10 vv2; 29.56/13.32 mid_key10 (mid_key1,vyx) = mid_key1; 29.56/13.32 mid_key2 = mid_key20 vv3; 29.56/13.32 mid_key20 (mid_key2,vyy) = mid_key2; 29.56/13.32 vv2 = findMax fm1; 29.56/13.32 vv3 = findMin fm2; 29.56/13.32 }; 29.56/13.32 29.56/13.32 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.56/13.32 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 29.56/13.32 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 29.56/13.32 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 29.56/13.32 | otherwise = mkBranch 2 key elt fm_L fm_R where { 29.56/13.32 double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw 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); 29.56/13.32 double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx 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); 29.56/13.32 mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 29.56/13.32 | otherwise = double_L fm_L fm_R; 29.56/13.32 mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 29.56/13.32 | otherwise = double_R fm_L fm_R; 29.56/13.32 single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 29.56/13.32 single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 29.56/13.32 size_l = sizeFM fm_L; 29.56/13.32 size_r = sizeFM fm_R; 29.56/13.32 }; 29.56/13.32 29.56/13.32 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.56/13.32 mkBranch which key elt fm_l fm_r = let { 29.56/13.32 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.56/13.32 } in result where { 29.56/13.32 balance_ok = True; 29.56/13.32 left_ok = left_ok0 fm_l key fm_l; 29.56/13.32 left_ok0 fm_l key EmptyFM = True; 29.56/13.32 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 29.56/13.32 biggest_left_key = fst (findMax fm_l); 29.56/13.32 } in biggest_left_key < key; 29.56/13.32 left_size = sizeFM fm_l; 29.56/13.32 right_ok = right_ok0 fm_r key fm_r; 29.56/13.32 right_ok0 fm_r key EmptyFM = True; 29.56/13.32 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 29.56/13.32 smallest_right_key = fst (findMin fm_r); 29.56/13.32 } in key < smallest_right_key; 29.56/13.32 right_size = sizeFM fm_r; 29.56/13.32 unbox :: Int -> Int; 29.56/13.32 unbox x = x; 29.56/13.32 }; 29.56/13.32 29.56/13.32 sIZE_RATIO :: Int; 29.56/13.32 sIZE_RATIO = 5; 29.56/13.32 29.56/13.32 sizeFM :: FiniteMap b a -> Int; 29.56/13.32 sizeFM EmptyFM = 0; 29.56/13.32 sizeFM (Branch vzu vzv size vzw vzx) = size; 29.56/13.32 29.56/13.32 } 29.56/13.32 module Maybe where { 29.56/13.32 import qualified FiniteMap; 29.56/13.32 import qualified Main; 29.56/13.32 import qualified Prelude; 29.56/13.32 } 29.56/13.32 module Main where { 29.56/13.32 import qualified FiniteMap; 29.56/13.32 import qualified Maybe; 29.56/13.32 import qualified Prelude; 29.56/13.32 } 29.56/13.32 29.56/13.32 ---------------------------------------- 29.56/13.32 29.56/13.32 (9) COR (EQUIVALENT) 29.56/13.32 Cond Reductions: 29.56/13.32 The following Function with conditions 29.56/13.32 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 29.56/13.32 " 29.56/13.32 is transformed to 29.56/13.32 "compare x y = compare3 x y; 29.56/13.32 " 29.56/13.32 "compare2 x y True = EQ; 29.56/13.32 compare2 x y False = compare1 x y (x <= y); 29.56/13.32 " 29.56/13.32 "compare1 x y True = LT; 29.56/13.32 compare1 x y False = compare0 x y otherwise; 29.56/13.32 " 29.56/13.32 "compare0 x y True = GT; 29.56/13.32 " 29.56/13.32 "compare3 x y = compare2 x y (x == y); 29.56/13.32 " 29.56/13.32 The following Function with conditions 29.56/13.32 "absReal x|x >= 0x|otherwise`negate` x; 29.56/13.32 " 29.56/13.32 is transformed to 29.56/13.32 "absReal x = absReal2 x; 29.56/13.32 " 29.56/13.32 "absReal0 x True = `negate` x; 29.56/13.32 " 29.56/13.32 "absReal1 x True = x; 29.56/13.32 absReal1 x False = absReal0 x otherwise; 29.56/13.32 " 29.56/13.32 "absReal2 x = absReal1 x (x >= 0); 29.56/13.32 " 29.56/13.32 The following Function with conditions 29.56/13.32 "gcd' x 0 = x; 29.56/13.32 gcd' x y = gcd' y (x `rem` y); 29.56/13.32 " 29.56/13.32 is transformed to 29.56/13.32 "gcd' x wuy = gcd'2 x wuy; 29.56/13.32 gcd' x y = gcd'0 x y; 29.56/13.32 " 29.56/13.32 "gcd'0 x y = gcd' y (x `rem` y); 29.56/13.32 " 29.56/13.32 "gcd'1 True x wuy = x; 29.56/13.32 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 29.56/13.32 " 29.56/13.32 "gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 29.56/13.32 gcd'2 wvw wvx = gcd'0 wvw wvx; 29.56/13.32 " 29.56/13.32 The following Function with conditions 29.56/13.32 "gcd 0 0 = error []; 29.56/13.32 gcd x y = gcd' (abs x) (abs y) where { 29.56/13.32 gcd' x 0 = x; 29.56/13.32 gcd' x y = gcd' y (x `rem` y); 29.56/13.32 } 29.56/13.32 ; 29.56/13.32 " 29.56/13.32 is transformed to 29.56/13.32 "gcd wvy wvz = gcd3 wvy wvz; 29.56/13.32 gcd x y = gcd0 x y; 29.56/13.32 " 29.56/13.32 "gcd0 x y = gcd' (abs x) (abs y) where { 29.56/13.32 gcd' x wuy = gcd'2 x wuy; 29.56/13.32 gcd' x y = gcd'0 x y; 29.56/13.32 ; 29.56/13.32 gcd'0 x y = gcd' y (x `rem` y); 29.56/13.32 ; 29.56/13.32 gcd'1 True x wuy = x; 29.56/13.32 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 29.56/13.32 ; 29.56/13.32 gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 29.56/13.32 gcd'2 wvw wvx = gcd'0 wvw wvx; 29.56/13.32 } 29.56/13.32 ; 29.56/13.32 " 29.56/13.32 "gcd1 True wvy wvz = error []; 29.56/13.32 gcd1 wwu wwv www = gcd0 wwv www; 29.56/13.32 " 29.56/13.32 "gcd2 True wvy wvz = gcd1 (wvz == 0) wvy wvz; 29.56/13.32 gcd2 wwx wwy wwz = gcd0 wwy wwz; 29.56/13.32 " 29.56/13.32 "gcd3 wvy wvz = gcd2 (wvy == 0) wvy wvz; 29.56/13.32 gcd3 wxu wxv = gcd0 wxu wxv; 29.56/13.32 " 29.56/13.32 The following Function with conditions 29.56/13.32 "undefined |Falseundefined; 29.56/13.32 " 29.56/13.32 is transformed to 29.56/13.32 "undefined = undefined1; 29.56/13.32 " 29.56/13.32 "undefined0 True = undefined; 29.56/13.32 " 29.56/13.32 "undefined1 = undefined0 False; 29.56/13.32 " 29.56/13.32 The following Function with conditions 29.56/13.32 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 29.56/13.32 d = gcd x y; 29.56/13.32 } 29.56/13.32 ; 29.56/13.32 " 29.56/13.32 is transformed to 29.56/13.32 "reduce x y = reduce2 x y; 29.56/13.32 " 29.56/13.32 "reduce2 x y = reduce1 x y (y == 0) where { 29.56/13.32 d = gcd x y; 29.56/13.32 ; 29.56/13.32 reduce0 x y True = x `quot` d :% (y `quot` d); 29.56/13.32 ; 29.56/13.32 reduce1 x y True = error []; 29.56/13.32 reduce1 x y False = reduce0 x y otherwise; 29.56/13.32 } 29.56/13.32 ; 29.56/13.32 " 29.56/13.32 The following Function with conditions 29.56/13.32 "mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 29.56/13.32 " 29.56/13.32 is transformed to 29.56/13.32 "mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 29.56/13.32 " 29.56/13.32 "mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 29.56/13.32 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 29.56/13.32 " 29.56/13.32 "mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 29.56/13.32 " 29.56/13.32 "mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 29.56/13.32 " 29.56/13.32 The following Function with conditions 29.56/13.32 "mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 29.56/13.32 " 29.56/13.32 is transformed to 29.56/13.32 "mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 29.56/13.32 " 29.56/13.32 "mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 29.56/13.32 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 29.56/13.32 " 29.56/13.32 "mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 29.56/13.32 " 29.56/13.32 "mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 29.56/13.32 " 29.56/13.32 The following Function with conditions 29.56/13.32 "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 { 29.56/13.32 double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw 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); 29.56/13.32 ; 29.56/13.32 double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx 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); 29.56/13.32 ; 29.56/13.32 mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 29.56/13.32 ; 29.56/13.32 mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 29.56/13.32 ; 29.56/13.32 single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 29.56/13.32 ; 29.56/13.32 single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 29.56/13.32 ; 29.56/13.32 size_l = sizeFM fm_L; 29.56/13.32 ; 29.56/13.32 size_r = sizeFM fm_R; 29.56/13.32 } 29.56/13.32 ; 29.56/13.32 " 29.56/13.32 is transformed to 29.56/13.32 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 29.56/13.32 " 29.56/13.32 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 29.56/13.32 double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw 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); 29.56/13.32 ; 29.56/13.32 double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx 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); 29.56/13.32 ; 29.56/13.32 mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 29.56/13.32 ; 29.56/13.32 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 29.56/13.32 ; 29.56/13.32 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 29.56/13.32 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 29.56/13.32 ; 29.56/13.32 mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 29.56/13.32 ; 29.56/13.32 mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 29.56/13.32 ; 29.56/13.32 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 29.56/13.32 ; 29.56/13.32 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 29.56/13.32 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 29.56/13.32 ; 29.56/13.32 mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 29.56/13.32 ; 29.56/13.32 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 29.56/13.32 ; 29.56/13.32 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 29.56/13.32 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 29.56/13.32 ; 29.56/13.32 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 29.56/13.32 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 29.56/13.32 ; 29.56/13.32 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 29.56/13.32 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 29.56/13.32 ; 29.56/13.32 single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 29.56/13.32 ; 29.56/13.32 single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 29.56/13.32 ; 29.56/13.32 size_l = sizeFM fm_L; 29.56/13.32 ; 29.56/13.32 size_r = sizeFM fm_R; 29.56/13.32 } 29.56/13.32 ; 29.56/13.32 " 29.56/13.32 The following Function with conditions 29.56/13.32 "glueBal EmptyFM fm2 = fm2; 29.56/13.32 glueBal fm1 EmptyFM = fm1; 29.56/13.32 glueBal fm1 fm2|sizeFM fm2 > sizeFM fm1mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2)|otherwisemkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 29.56/13.32 mid_elt1 = mid_elt10 vv2; 29.56/13.32 ; 29.56/13.32 mid_elt10 (vyw,mid_elt1) = mid_elt1; 29.56/13.32 ; 29.56/13.32 mid_elt2 = mid_elt20 vv3; 29.56/13.32 ; 29.56/13.32 mid_elt20 (vyv,mid_elt2) = mid_elt2; 29.56/13.32 ; 29.56/13.32 mid_key1 = mid_key10 vv2; 29.56/13.32 ; 29.56/13.32 mid_key10 (mid_key1,vyx) = mid_key1; 29.56/13.32 ; 29.56/13.32 mid_key2 = mid_key20 vv3; 29.56/13.32 ; 29.56/13.32 mid_key20 (mid_key2,vyy) = mid_key2; 29.56/13.32 ; 29.56/13.32 vv2 = findMax fm1; 29.56/13.32 ; 29.56/13.32 vv3 = findMin fm2; 29.56/13.32 } 29.56/13.32 ; 29.56/13.32 " 29.56/13.32 is transformed to 29.56/13.32 "glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 29.56/13.32 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 29.56/13.32 glueBal fm1 fm2 = glueBal2 fm1 fm2; 29.56/13.32 " 29.56/13.32 "glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 29.56/13.32 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 29.56/13.32 ; 29.56/13.32 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 29.56/13.32 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 29.56/13.32 ; 29.56/13.32 mid_elt1 = mid_elt10 vv2; 29.56/13.32 ; 29.56/13.32 mid_elt10 (vyw,mid_elt1) = mid_elt1; 29.56/13.32 ; 29.56/13.32 mid_elt2 = mid_elt20 vv3; 29.56/13.32 ; 29.56/13.32 mid_elt20 (vyv,mid_elt2) = mid_elt2; 29.56/13.32 ; 29.56/13.32 mid_key1 = mid_key10 vv2; 29.56/13.32 ; 29.56/13.32 mid_key10 (mid_key1,vyx) = mid_key1; 29.56/13.32 ; 29.56/13.32 mid_key2 = mid_key20 vv3; 29.56/13.32 ; 29.56/13.32 mid_key20 (mid_key2,vyy) = mid_key2; 29.56/13.32 ; 29.56/13.32 vv2 = findMax fm1; 29.56/13.32 ; 29.56/13.32 vv3 = findMin fm2; 29.56/13.32 } 29.56/13.32 ; 29.56/13.32 " 29.56/13.32 "glueBal3 fm1 EmptyFM = fm1; 29.56/13.32 glueBal3 wxz wyu = glueBal2 wxz wyu; 29.56/13.32 " 29.56/13.32 "glueBal4 EmptyFM fm2 = fm2; 29.56/13.32 glueBal4 wyw wyx = glueBal3 wyw wyx; 29.56/13.32 " 29.56/13.32 The following Function with conditions 29.56/13.32 "delFromFM EmptyFM del_key = emptyFM; 29.56/13.32 delFromFM (Branch key elt size fm_l fm_r) del_key|del_key > keymkBalBranch key elt fm_l (delFromFM fm_r del_key)|del_key < keymkBalBranch key elt (delFromFM fm_l del_key) fm_r|key == del_keyglueBal fm_l fm_r; 29.56/13.32 " 29.56/13.32 is transformed to 29.56/13.32 "delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 29.56/13.32 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 29.56/13.32 " 29.56/13.32 "delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 29.56/13.32 " 29.56/13.32 "delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 29.56/13.32 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 29.56/13.32 " 29.56/13.32 "delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 29.56/13.32 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 29.56/13.32 " 29.56/13.32 "delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 29.56/13.32 " 29.56/13.32 "delFromFM4 EmptyFM del_key = emptyFM; 29.56/13.32 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 29.56/13.32 " 29.56/13.32 29.56/13.32 ---------------------------------------- 29.56/13.32 29.56/13.32 (10) 29.56/13.32 Obligation: 29.56/13.32 mainModule Main 29.56/13.32 module FiniteMap where { 29.56/13.32 import qualified Main; 29.56/13.32 import qualified Maybe; 29.56/13.32 import qualified Prelude; 29.56/13.32 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.56/13.32 29.56/13.32 instance (Eq a, Eq b) => Eq FiniteMap a b where { 29.56/13.32 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.56/13.32 } 29.56/13.32 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 29.56/13.32 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 29.56/13.32 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 29.56/13.32 29.56/13.32 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 29.56/13.32 29.56/13.32 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 29.56/13.32 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 29.56/13.32 29.56/13.32 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 29.56/13.32 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 29.56/13.32 29.56/13.32 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 29.56/13.32 29.56/13.32 delFromFM4 EmptyFM del_key = emptyFM; 29.56/13.32 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 29.56/13.32 29.56/13.32 delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; 29.56/13.32 delListFromFM fm keys = foldl delFromFM fm keys; 29.56/13.32 29.56/13.32 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 29.56/13.32 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 29.56/13.32 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 29.56/13.32 29.56/13.32 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 29.56/13.32 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 29.56/13.32 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 29.56/13.32 29.56/13.32 emptyFM :: FiniteMap b a; 29.56/13.32 emptyFM = EmptyFM; 29.56/13.32 29.56/13.32 findMax :: FiniteMap b a -> (b,a); 29.56/13.32 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 29.56/13.32 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 29.56/13.32 29.56/13.32 findMin :: FiniteMap a b -> (a,b); 29.56/13.32 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 29.56/13.32 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 29.56/13.32 29.56/13.32 fmToList :: FiniteMap b a -> [(b,a)]; 29.56/13.32 fmToList fm = foldFM fmToList0 [] fm; 29.56/13.32 29.56/13.32 fmToList0 key elt rest = (key,elt) : rest; 29.56/13.32 29.56/13.32 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 29.93/13.41 foldFM k z EmptyFM = z; 29.93/13.41 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.93/13.41 29.93/13.41 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.93/13.41 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 29.93/13.41 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 29.93/13.41 glueBal fm1 fm2 = glueBal2 fm1 fm2; 29.93/13.41 29.93/13.41 glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 29.93/13.41 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 29.93/13.41 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 29.93/13.41 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 29.93/13.41 mid_elt1 = mid_elt10 vv2; 29.93/13.41 mid_elt10 (vyw,mid_elt1) = mid_elt1; 29.93/13.41 mid_elt2 = mid_elt20 vv3; 29.93/13.41 mid_elt20 (vyv,mid_elt2) = mid_elt2; 29.93/13.41 mid_key1 = mid_key10 vv2; 29.93/13.41 mid_key10 (mid_key1,vyx) = mid_key1; 29.93/13.41 mid_key2 = mid_key20 vv3; 29.93/13.41 mid_key20 (mid_key2,vyy) = mid_key2; 29.93/13.41 vv2 = findMax fm1; 29.93/13.41 vv3 = findMin fm2; 29.93/13.41 }; 29.93/13.41 29.93/13.41 glueBal3 fm1 EmptyFM = fm1; 29.93/13.41 glueBal3 wxz wyu = glueBal2 wxz wyu; 29.93/13.41 29.93/13.41 glueBal4 EmptyFM fm2 = fm2; 29.93/13.41 glueBal4 wyw wyx = glueBal3 wyw wyx; 29.93/13.41 29.93/13.41 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.93/13.41 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 29.93/13.41 29.93/13.41 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 29.93/13.41 double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw 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); 29.93/13.41 double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx 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); 29.93/13.41 mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 29.93/13.41 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 29.93/13.41 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 29.93/13.41 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 29.93/13.41 mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 29.93/13.41 mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 29.93/13.41 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 29.93/13.41 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 29.93/13.41 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 29.93/13.41 mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 29.93/13.41 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 29.93/13.41 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 29.93/13.41 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 29.93/13.41 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 29.93/13.41 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 29.93/13.41 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 29.93/13.41 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 29.93/13.41 single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 29.93/13.41 single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 29.93/13.41 size_l = sizeFM fm_L; 29.93/13.41 size_r = sizeFM fm_R; 29.93/13.41 }; 29.93/13.41 29.93/13.41 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.93/13.41 mkBranch which key elt fm_l fm_r = let { 29.93/13.41 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.93/13.41 } in result where { 29.93/13.41 balance_ok = True; 29.93/13.41 left_ok = left_ok0 fm_l key fm_l; 29.93/13.41 left_ok0 fm_l key EmptyFM = True; 29.93/13.41 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 29.93/13.41 biggest_left_key = fst (findMax fm_l); 29.93/13.41 } in biggest_left_key < key; 29.93/13.41 left_size = sizeFM fm_l; 29.93/13.41 right_ok = right_ok0 fm_r key fm_r; 29.93/13.41 right_ok0 fm_r key EmptyFM = True; 29.93/13.41 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 29.93/13.41 smallest_right_key = fst (findMin fm_r); 29.93/13.41 } in key < smallest_right_key; 29.93/13.41 right_size = sizeFM fm_r; 29.93/13.41 unbox :: Int -> Int; 29.93/13.41 unbox x = x; 29.93/13.41 }; 29.93/13.41 29.93/13.41 sIZE_RATIO :: Int; 29.93/13.41 sIZE_RATIO = 5; 29.93/13.41 29.93/13.41 sizeFM :: FiniteMap a b -> Int; 29.93/13.41 sizeFM EmptyFM = 0; 29.93/13.41 sizeFM (Branch vzu vzv size vzw vzx) = size; 29.93/13.41 29.93/13.41 } 29.93/13.41 module Maybe where { 29.93/13.41 import qualified FiniteMap; 29.93/13.41 import qualified Main; 29.93/13.41 import qualified Prelude; 29.93/13.41 } 29.93/13.41 module Main where { 29.93/13.41 import qualified FiniteMap; 29.93/13.41 import qualified Maybe; 29.93/13.41 import qualified Prelude; 29.93/13.41 } 29.93/13.41 29.93/13.41 ---------------------------------------- 29.93/13.41 29.93/13.41 (11) LetRed (EQUIVALENT) 29.93/13.41 Let/Where Reductions: 29.93/13.41 The bindings of the following Let/Where expression 29.93/13.41 "gcd' (abs x) (abs y) where { 29.93/13.41 gcd' x wuy = gcd'2 x wuy; 29.93/13.41 gcd' x y = gcd'0 x y; 29.93/13.41 ; 29.93/13.41 gcd'0 x y = gcd' y (x `rem` y); 29.93/13.41 ; 29.93/13.41 gcd'1 True x wuy = x; 29.93/13.41 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 29.93/13.41 ; 29.93/13.41 gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 29.93/13.41 gcd'2 wvw wvx = gcd'0 wvw wvx; 29.93/13.41 } 29.93/13.41 " 29.93/13.41 are unpacked to the following functions on top level 29.93/13.41 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 29.93/13.41 " 29.93/13.41 "gcd0Gcd' x wuy = gcd0Gcd'2 x wuy; 29.93/13.41 gcd0Gcd' x y = gcd0Gcd'0 x y; 29.93/13.41 " 29.93/13.41 "gcd0Gcd'1 True x wuy = x; 29.93/13.41 gcd0Gcd'1 wuz wvu wvv = gcd0Gcd'0 wvu wvv; 29.93/13.41 " 29.93/13.41 "gcd0Gcd'2 x wuy = gcd0Gcd'1 (wuy == 0) x wuy; 29.93/13.41 gcd0Gcd'2 wvw wvx = gcd0Gcd'0 wvw wvx; 29.93/13.41 " 29.93/13.41 The bindings of the following Let/Where expression 29.93/13.41 "reduce1 x y (y == 0) where { 29.93/13.41 d = gcd x y; 29.93/13.41 ; 29.93/13.41 reduce0 x y True = x `quot` d :% (y `quot` d); 29.93/13.41 ; 29.93/13.41 reduce1 x y True = error []; 29.93/13.41 reduce1 x y False = reduce0 x y otherwise; 29.93/13.41 } 29.93/13.41 " 29.93/13.41 are unpacked to the following functions on top level 29.93/13.41 "reduce2Reduce0 wzw wzx x y True = x `quot` reduce2D wzw wzx :% (y `quot` reduce2D wzw wzx); 29.93/13.41 " 29.93/13.41 "reduce2D wzw wzx = gcd wzw wzx; 29.93/13.41 " 29.93/13.41 "reduce2Reduce1 wzw wzx x y True = error []; 29.93/13.41 reduce2Reduce1 wzw wzx x y False = reduce2Reduce0 wzw wzx x y otherwise; 29.93/13.41 " 29.93/13.41 The bindings of the following Let/Where expression 29.93/13.41 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 29.93/13.41 double_L fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw 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); 29.93/13.41 ; 29.93/13.41 double_R (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx 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); 29.93/13.41 ; 29.93/13.41 mkBalBranch0 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 29.93/13.41 ; 29.93/13.41 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 29.93/13.41 ; 29.93/13.41 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 29.93/13.41 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 29.93/13.41 ; 29.93/13.41 mkBalBranch02 fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 29.93/13.41 ; 29.93/13.41 mkBalBranch1 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 29.93/13.41 ; 29.93/13.41 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 29.93/13.41 ; 29.93/13.41 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 29.93/13.41 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 29.93/13.41 ; 29.93/13.41 mkBalBranch12 fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 29.93/13.41 ; 29.93/13.41 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 29.93/13.41 ; 29.93/13.41 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 29.93/13.41 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 29.93/13.41 ; 29.93/13.41 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 29.93/13.41 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 29.93/13.41 ; 29.93/13.41 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 29.93/13.41 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 29.93/13.41 ; 29.93/13.41 single_L fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 29.93/13.41 ; 29.93/13.41 single_R (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 29.93/13.41 ; 29.93/13.41 size_l = sizeFM fm_L; 29.93/13.41 ; 29.93/13.41 size_r = sizeFM fm_R; 29.93/13.41 } 29.93/13.41 " 29.93/13.41 are unpacked to the following functions on top level 29.93/13.41 "mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 29.93/13.41 " 29.93/13.41 "mkBalBranch6Double_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wzy wzz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 29.93/13.41 " 29.93/13.41 "mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 29.93/13.41 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_r wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_l wzy wzz xuu xuv); 29.93/13.41 " 29.93/13.41 "mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Single_L wzy wzz xuu xuv fm_L fm_R; 29.93/13.41 mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 29.93/13.41 " 29.93/13.41 "mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 29.93/13.41 " 29.93/13.41 "mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 29.93/13.41 " 29.93/13.41 "mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Single_R wzy wzz xuu xuv fm_L fm_R; 29.93/13.41 mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 29.93/13.41 " 29.93/13.41 "mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 29.93/13.41 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_l wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_r wzy wzz xuu xuv); 29.93/13.41 " 29.93/13.41 "mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 29.93/13.41 " 29.93/13.41 "mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 29.93/13.41 " 29.93/13.41 "mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuu; 29.93/13.41 " 29.93/13.41 "mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Double_L wzy wzz xuu xuv fm_L fm_R; 29.93/13.41 " 29.93/13.41 "mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuv; 29.93/13.41 " 29.93/13.41 "mkBalBranch6Double_R wzy wzz xuu xuv (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wzy wzz fm_lrr fm_r); 29.93/13.41 " 29.93/13.41 "mkBalBranch6Single_R wzy wzz xuu xuv (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wzy wzz fm_lr fm_r); 29.93/13.41 " 29.93/13.41 "mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 29.93/13.41 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 29.93/13.41 " 29.93/13.41 "mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Double_R wzy wzz xuu xuv fm_L fm_R; 29.93/13.41 " 29.93/13.41 "mkBalBranch6Single_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wzy wzz fm_l fm_rl) fm_rr; 29.93/13.41 " 29.93/13.41 The bindings of the following Let/Where expression 29.93/13.41 "let { 29.93/13.41 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.93/13.41 } in result where { 29.93/13.41 balance_ok = True; 29.93/13.41 ; 29.93/13.41 left_ok = left_ok0 fm_l key fm_l; 29.93/13.41 ; 29.93/13.41 left_ok0 fm_l key EmptyFM = True; 29.93/13.41 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 29.93/13.41 biggest_left_key = fst (findMax fm_l); 29.93/13.41 } in biggest_left_key < key; 29.93/13.41 ; 29.93/13.41 left_size = sizeFM fm_l; 29.93/13.41 ; 29.93/13.41 right_ok = right_ok0 fm_r key fm_r; 29.93/13.41 ; 29.93/13.41 right_ok0 fm_r key EmptyFM = True; 29.93/13.41 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 29.93/13.41 smallest_right_key = fst (findMin fm_r); 29.93/13.41 } in key < smallest_right_key; 29.93/13.41 ; 29.93/13.41 right_size = sizeFM fm_r; 29.93/13.41 ; 29.93/13.41 unbox x = x; 29.93/13.41 } 29.93/13.41 " 29.93/13.41 are unpacked to the following functions on top level 29.93/13.41 "mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 29.93/13.41 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 29.93/13.41 " 29.93/13.41 "mkBranchBalance_ok xuw xux xuy = True; 29.93/13.41 " 29.93/13.41 "mkBranchUnbox xuw xux xuy x = x; 29.93/13.41 " 29.93/13.41 "mkBranchRight_size xuw xux xuy = sizeFM xuw; 29.93/13.41 " 29.93/13.41 "mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuw xux xuw; 29.93/13.41 " 29.93/13.41 "mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuy xux xuy; 29.93/13.41 " 29.93/13.41 "mkBranchLeft_size xuw xux xuy = sizeFM xuy; 29.93/13.41 " 29.93/13.41 "mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 29.93/13.41 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 29.93/13.41 " 29.93/13.41 The bindings of the following Let/Where expression 29.93/13.41 "let { 29.93/13.41 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 29.93/13.41 } in result" 29.93/13.41 are unpacked to the following functions on top level 29.93/13.41 "mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xuz xvw (1 + mkBranchLeft_size xvv xuz xvw + mkBranchRight_size xvv xuz xvw)) xvw xvv; 29.93/13.41 " 29.93/13.41 The bindings of the following Let/Where expression 29.93/13.41 "glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 29.93/13.41 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 29.93/13.41 ; 29.93/13.41 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 29.93/13.41 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 29.93/13.41 ; 29.93/13.41 mid_elt1 = mid_elt10 vv2; 29.93/13.41 ; 29.93/13.41 mid_elt10 (vyw,mid_elt1) = mid_elt1; 29.93/13.41 ; 29.93/13.41 mid_elt2 = mid_elt20 vv3; 29.93/13.41 ; 29.93/13.41 mid_elt20 (vyv,mid_elt2) = mid_elt2; 29.93/13.41 ; 29.93/13.41 mid_key1 = mid_key10 vv2; 29.93/13.41 ; 29.93/13.41 mid_key10 (mid_key1,vyx) = mid_key1; 29.93/13.41 ; 29.93/13.41 mid_key2 = mid_key20 vv3; 29.93/13.41 ; 29.93/13.41 mid_key20 (mid_key2,vyy) = mid_key2; 29.93/13.41 ; 29.93/13.41 vv2 = findMax fm1; 29.93/13.41 ; 29.93/13.41 vv3 = findMin fm2; 29.93/13.41 } 29.93/13.41 " 29.93/13.41 are unpacked to the following functions on top level 29.93/13.41 "glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 29.93/13.41 " 29.93/13.41 "glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 29.93/13.41 " 29.93/13.41 "glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 29.93/13.41 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 29.93/13.41 " 29.93/13.41 "glueBal2Vv2 xvx xvy = findMax xvx; 29.93/13.41 " 29.93/13.41 "glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 29.93/13.41 " 29.93/13.41 "glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 29.93/13.41 " 29.93/13.41 "glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 29.93/13.41 " 29.93/13.41 "glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 29.93/13.41 " 29.93/13.41 "glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 29.93/13.41 " 29.93/13.41 "glueBal2Vv3 xvx xvy = findMin xvy; 29.93/13.41 " 29.93/13.41 "glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 29.93/13.41 " 29.93/13.41 "glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 29.93/13.41 " 29.93/13.41 The bindings of the following Let/Where expression 29.93/13.41 "let { 29.93/13.41 biggest_left_key = fst (findMax fm_l); 29.93/13.41 } in biggest_left_key < key" 29.93/13.41 are unpacked to the following functions on top level 29.93/13.41 "mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 29.93/13.41 " 29.93/13.41 The bindings of the following Let/Where expression 29.93/13.41 "let { 29.93/13.41 smallest_right_key = fst (findMin fm_r); 29.93/13.41 } in key < smallest_right_key" 29.93/13.41 are unpacked to the following functions on top level 29.93/13.41 "mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 29.93/13.41 " 29.93/13.41 29.93/13.41 ---------------------------------------- 29.93/13.41 29.93/13.41 (12) 29.93/13.41 Obligation: 29.93/13.41 mainModule Main 29.93/13.41 module FiniteMap where { 29.93/13.41 import qualified Main; 29.93/13.41 import qualified Maybe; 29.93/13.41 import qualified Prelude; 29.93/13.41 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.93/13.41 29.93/13.41 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.93/13.41 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.93/13.41 } 29.93/13.41 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 29.93/13.41 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 29.93/13.41 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 29.93/13.41 29.93/13.41 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 29.93/13.41 29.93/13.41 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 29.93/13.41 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 29.93/13.41 29.93/13.41 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 29.93/13.41 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 29.93/13.41 29.93/13.41 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 29.93/13.41 29.93/13.41 delFromFM4 EmptyFM del_key = emptyFM; 29.93/13.41 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 29.93/13.41 29.93/13.41 delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; 29.93/13.41 delListFromFM fm keys = foldl delFromFM fm keys; 29.93/13.41 29.93/13.41 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 29.93/13.41 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 29.93/13.41 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 29.93/13.41 29.93/13.41 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 29.93/13.41 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 29.93/13.41 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 29.93/13.41 29.93/13.41 emptyFM :: FiniteMap a b; 29.93/13.41 emptyFM = EmptyFM; 29.93/13.41 29.93/13.41 findMax :: FiniteMap a b -> (a,b); 29.93/13.41 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 29.93/13.41 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 29.93/13.41 29.93/13.41 findMin :: FiniteMap b a -> (b,a); 29.93/13.41 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 29.93/13.41 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 29.93/13.41 29.93/13.41 fmToList :: FiniteMap a b -> [(a,b)]; 29.93/13.41 fmToList fm = foldFM fmToList0 [] fm; 29.93/13.41 29.93/13.41 fmToList0 key elt rest = (key,elt) : rest; 29.93/13.41 29.93/13.41 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 29.93/13.41 foldFM k z EmptyFM = z; 29.93/13.41 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.93/13.41 29.93/13.41 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.93/13.41 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 29.93/13.41 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 29.93/13.41 glueBal fm1 fm2 = glueBal2 fm1 fm2; 29.93/13.41 29.93/13.41 glueBal2 fm1 fm2 = glueBal2GlueBal1 fm1 fm2 fm1 fm2 (sizeFM fm2 > sizeFM fm1); 29.93/13.41 29.93/13.41 glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 29.93/13.41 29.93/13.41 glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 29.93/13.41 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 29.93/13.41 29.93/13.41 glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 29.93/13.41 29.93/13.41 glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 29.93/13.41 29.93/13.41 glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 29.93/13.41 29.93/13.41 glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 29.93/13.41 29.93/13.41 glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 29.93/13.41 29.93/13.41 glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 29.93/13.41 29.93/13.41 glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 29.93/13.41 29.93/13.41 glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 29.93/13.41 29.93/13.41 glueBal2Vv2 xvx xvy = findMax xvx; 29.93/13.41 29.93/13.41 glueBal2Vv3 xvx xvy = findMin xvy; 29.93/13.41 29.93/13.41 glueBal3 fm1 EmptyFM = fm1; 29.93/13.41 glueBal3 wxz wyu = glueBal2 wxz wyu; 29.93/13.41 29.93/13.41 glueBal4 EmptyFM fm2 = fm2; 29.93/13.41 glueBal4 wyw wyx = glueBal3 wyw wyx; 29.93/13.41 29.93/13.41 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.93/13.41 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 29.93/13.41 29.93/13.41 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < 2); 29.93/13.41 29.93/13.41 mkBalBranch6Double_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wzy wzz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 29.93/13.41 29.93/13.41 mkBalBranch6Double_R wzy wzz xuu xuv (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wzy wzz fm_lrr fm_r); 29.93/13.41 29.93/13.41 mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 29.93/13.41 29.93/13.41 mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Double_L wzy wzz xuu xuv fm_L fm_R; 29.93/13.41 29.93/13.41 mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Single_L wzy wzz xuu xuv fm_L fm_R; 29.93/13.41 mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 29.93/13.41 29.93/13.41 mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 29.93/13.41 29.93/13.41 mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 29.93/13.41 29.93/13.41 mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Double_R wzy wzz xuu xuv fm_L fm_R; 29.93/13.41 29.93/13.41 mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Single_R wzy wzz xuu xuv fm_L fm_R; 29.93/13.41 mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 29.93/13.41 29.93/13.41 mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 29.93/13.41 29.93/13.41 mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 29.93/13.41 29.93/13.41 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 29.93/13.41 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 29.93/13.41 29.93/13.41 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 29.93/13.41 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_l wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_r wzy wzz xuu xuv); 29.93/13.41 29.93/13.41 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 29.93/13.41 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_r wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_l wzy wzz xuu xuv); 29.93/13.41 29.93/13.41 mkBalBranch6Single_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wzy wzz fm_l fm_rl) fm_rr; 29.93/13.41 29.93/13.41 mkBalBranch6Single_R wzy wzz xuu xuv (Branch key_l elt_l vwv fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wzy wzz fm_lr fm_r); 29.93/13.41 29.93/13.41 mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuv; 29.93/13.41 29.93/13.41 mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuu; 29.93/13.41 29.93/13.41 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 29.93/13.41 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 29.93/13.41 29.93/13.41 mkBranchBalance_ok xuw xux xuy = True; 29.93/13.41 29.93/13.41 mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuy xux xuy; 29.93/13.41 29.93/13.41 mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 29.93/13.41 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 29.93/13.41 29.93/13.41 mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 29.93/13.41 29.93/13.41 mkBranchLeft_size xuw xux xuy = sizeFM xuy; 29.93/13.41 29.93/13.41 mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xuz xvw (1 + mkBranchLeft_size xvv xuz xvw + mkBranchRight_size xvv xuz xvw)) xvw xvv; 29.93/13.41 29.93/13.41 mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuw xux xuw; 29.93/13.41 29.93/13.41 mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 29.93/13.41 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 29.93/13.41 29.93/13.41 mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 29.93/13.41 29.93/13.41 mkBranchRight_size xuw xux xuy = sizeFM xuw; 29.93/13.41 29.93/13.41 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 29.93/13.41 mkBranchUnbox xuw xux xuy x = x; 29.93/13.41 29.93/13.41 sIZE_RATIO :: Int; 29.93/13.41 sIZE_RATIO = 5; 29.93/13.41 29.93/13.41 sizeFM :: FiniteMap b a -> Int; 29.93/13.41 sizeFM EmptyFM = 0; 29.93/13.41 sizeFM (Branch vzu vzv size vzw vzx) = size; 29.93/13.41 29.93/13.41 } 29.93/13.41 module Maybe where { 29.93/13.41 import qualified FiniteMap; 29.93/13.41 import qualified Main; 29.93/13.41 import qualified Prelude; 29.93/13.41 } 29.93/13.41 module Main where { 29.93/13.41 import qualified FiniteMap; 29.93/13.41 import qualified Maybe; 29.93/13.41 import qualified Prelude; 29.93/13.41 } 29.93/13.41 29.93/13.41 ---------------------------------------- 29.93/13.41 29.93/13.41 (13) NumRed (SOUND) 29.93/13.41 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 29.93/13.41 ---------------------------------------- 29.93/13.41 29.93/13.41 (14) 29.93/13.41 Obligation: 29.93/13.41 mainModule Main 29.93/13.41 module FiniteMap where { 29.93/13.41 import qualified Main; 29.93/13.41 import qualified Maybe; 29.93/13.41 import qualified Prelude; 29.93/13.41 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 29.93/13.41 29.93/13.41 instance (Eq a, Eq b) => Eq FiniteMap b a where { 29.93/13.41 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 29.93/13.41 } 29.93/13.41 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 29.93/13.41 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 29.93/13.41 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 29.93/13.41 29.93/13.41 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 29.93/13.41 29.93/13.41 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 29.93/13.41 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 29.93/13.41 29.93/13.41 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 29.93/13.41 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 29.93/13.41 29.93/13.41 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 29.93/13.41 29.93/13.41 delFromFM4 EmptyFM del_key = emptyFM; 29.93/13.41 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 29.93/13.41 29.93/13.41 delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; 29.93/13.41 delListFromFM fm keys = foldl delFromFM fm keys; 29.93/13.41 29.93/13.41 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 29.93/13.41 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 29.93/13.41 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 29.93/13.41 29.93/13.41 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 29.93/13.41 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 29.93/13.41 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 29.93/13.41 29.93/13.41 emptyFM :: FiniteMap b a; 29.93/13.41 emptyFM = EmptyFM; 29.93/13.41 29.93/13.41 findMax :: FiniteMap b a -> (b,a); 29.93/13.41 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 29.93/13.41 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 29.93/13.41 29.93/13.41 findMin :: FiniteMap b a -> (b,a); 29.93/13.41 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 29.93/13.41 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 29.93/13.41 29.93/13.41 fmToList :: FiniteMap a b -> [(a,b)]; 29.93/13.41 fmToList fm = foldFM fmToList0 [] fm; 29.93/13.41 29.93/13.41 fmToList0 key elt rest = (key,elt) : rest; 29.93/13.41 29.93/13.41 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 29.93/13.41 foldFM k z EmptyFM = z; 29.93/13.41 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 29.93/13.41 29.93/13.41 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 29.93/13.41 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 29.93/13.41 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 29.93/13.41 glueBal fm1 fm2 = glueBal2 fm1 fm2; 29.93/13.41 29.93/13.41 glueBal2 fm1 fm2 = glueBal2GlueBal1 fm1 fm2 fm1 fm2 (sizeFM fm2 > sizeFM fm1); 29.93/13.41 29.93/13.41 glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 29.93/13.41 29.93/13.41 glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 29.93/13.41 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 29.93/13.41 29.93/13.41 glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 29.93/13.41 29.93/13.41 glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 29.93/13.41 29.93/13.41 glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 29.93/13.41 29.93/13.41 glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 29.93/13.41 29.93/13.41 glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 29.93/13.41 29.93/13.41 glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 29.93/13.41 29.93/13.41 glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 29.93/13.41 29.93/13.41 glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 29.93/13.41 29.93/13.41 glueBal2Vv2 xvx xvy = findMax xvx; 29.93/13.41 29.93/13.41 glueBal2Vv3 xvx xvy = findMin xvy; 29.93/13.41 29.93/13.41 glueBal3 fm1 EmptyFM = fm1; 29.93/13.41 glueBal3 wxz wyu = glueBal2 wxz wyu; 30.04/13.41 30.04/13.41 glueBal4 EmptyFM fm2 = fm2; 30.04/13.41 glueBal4 wyw wyx = glueBal3 wyw wyx; 30.04/13.41 30.04/13.41 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 30.04/13.41 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 30.04/13.41 30.04/13.41 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < Pos (Succ (Succ Zero))); 30.04/13.41 30.04/13.41 mkBalBranch6Double_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vxv (Branch key_rl elt_rl vxw 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))))))) wzy wzz fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); 30.04/13.41 30.04/13.41 mkBalBranch6Double_R wzy wzz xuu xuv (Branch key_l elt_l vww fm_ll (Branch key_lr elt_lr vwx 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))))))))))))) wzy wzz fm_lrr fm_r); 30.04/13.41 30.04/13.41 mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr); 30.04/13.41 30.04/13.41 mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Double_L wzy wzz xuu xuv fm_L fm_R; 30.04/13.41 30.04/13.41 mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr True = mkBalBranch6Single_L wzy wzz xuu xuv fm_L fm_R; 30.04/13.41 mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr otherwise; 30.04/13.41 30.04/13.41 mkBalBranch6MkBalBranch02 wzy wzz xuu xuv fm_L fm_R (Branch vxx vxy vxz fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wzy wzz xuu xuv fm_L fm_R vxx vxy vxz fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); 30.04/13.41 30.04/13.41 mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr); 30.04/13.41 30.04/13.41 mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Double_R wzy wzz xuu xuv fm_L fm_R; 30.04/13.41 30.04/13.41 mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr True = mkBalBranch6Single_R wzy wzz xuu xuv fm_L fm_R; 30.04/13.41 mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr otherwise; 30.04/13.41 30.04/13.41 mkBalBranch6MkBalBranch12 wzy wzz xuu xuv fm_L fm_R (Branch vwy vwz vxu fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wzy wzz xuu xuv fm_L fm_R vwy vwz vxu fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); 30.04/13.41 30.04/13.41 mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 30.04/13.41 30.04/13.41 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 30.04/13.41 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 30.04/13.41 30.04/13.41 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 30.04/13.41 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_l wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_r wzy wzz xuu xuv); 30.04/13.41 30.04/13.41 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 30.04/13.41 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R (mkBalBranch6Size_r wzy wzz xuu xuv > sIZE_RATIO * mkBalBranch6Size_l wzy wzz xuu xuv); 30.04/13.41 30.04/13.41 mkBalBranch6Single_L wzy wzz xuu xuv fm_l (Branch key_r elt_r vyu fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) wzy wzz fm_l fm_rl) fm_rr; 30.04/13.41 30.04/13.41 mkBalBranch6Single_R wzy wzz xuu xuv (Branch key_l elt_l vwv 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)))))))))) wzy wzz fm_lr fm_r); 30.04/13.41 30.04/13.41 mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuv; 30.04/13.41 30.04/13.41 mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuu; 30.04/13.41 30.04/13.41 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 30.04/13.41 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 30.04/13.41 30.04/13.41 mkBranchBalance_ok xuw xux xuy = True; 30.04/13.41 30.04/13.41 mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuy xux xuy; 30.04/13.41 30.04/13.41 mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 30.04/13.41 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 30.04/13.41 30.04/13.41 mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 30.04/13.41 30.04/13.41 mkBranchLeft_size xuw xux xuy = sizeFM xuy; 30.04/13.41 30.04/13.41 mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xuz xvw (Pos (Succ Zero) + mkBranchLeft_size xvv xuz xvw + mkBranchRight_size xvv xuz xvw)) xvw xvv; 30.04/13.41 30.04/13.41 mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuw xux xuw; 30.04/13.41 30.04/13.41 mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 30.04/13.41 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 30.04/13.41 30.04/13.41 mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 30.04/13.41 30.04/13.41 mkBranchRight_size xuw xux xuy = sizeFM xuw; 30.04/13.41 30.04/13.41 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 30.04/13.41 mkBranchUnbox xuw xux xuy x = x; 30.04/13.41 30.04/13.41 sIZE_RATIO :: Int; 30.04/13.41 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 30.04/13.41 30.04/13.41 sizeFM :: FiniteMap a b -> Int; 30.04/13.41 sizeFM EmptyFM = Pos Zero; 30.04/13.41 sizeFM (Branch vzu vzv size vzw vzx) = size; 30.04/13.41 30.04/13.41 } 30.04/13.41 module Maybe where { 30.04/13.41 import qualified FiniteMap; 30.04/13.41 import qualified Main; 30.04/13.41 import qualified Prelude; 30.04/13.41 } 30.04/13.41 module Main where { 30.04/13.41 import qualified FiniteMap; 30.04/13.41 import qualified Maybe; 30.04/13.41 import qualified Prelude; 30.04/13.41 } 30.04/13.41 30.04/13.41 ---------------------------------------- 30.04/13.41 30.04/13.41 (15) Narrow (SOUND) 30.04/13.41 Haskell To QDPs 30.04/13.41 30.04/13.41 digraph dp_graph { 30.04/13.41 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.delListFromFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 30.04/13.41 3[label="FiniteMap.delListFromFM xwv3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 30.04/13.41 4[label="FiniteMap.delListFromFM xwv3 xwv4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 30.04/13.41 5[label="foldl FiniteMap.delFromFM xwv3 xwv4",fontsize=16,color="burlywood",shape="triangle"];4482[label="xwv4/xwv40 : xwv41",fontsize=10,color="white",style="solid",shape="box"];5 -> 4482[label="",style="solid", color="burlywood", weight=9]; 30.04/13.41 4482 -> 6[label="",style="solid", color="burlywood", weight=3]; 30.04/13.41 4483[label="xwv4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 4483[label="",style="solid", color="burlywood", weight=9]; 30.04/13.41 4483 -> 7[label="",style="solid", color="burlywood", weight=3]; 30.04/13.41 6[label="foldl FiniteMap.delFromFM xwv3 (xwv40 : xwv41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 30.04/13.41 7[label="foldl FiniteMap.delFromFM xwv3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 30.04/13.41 8 -> 5[label="",style="dashed", color="red", weight=0]; 30.04/13.41 8[label="foldl FiniteMap.delFromFM (FiniteMap.delFromFM xwv3 xwv40) xwv41",fontsize=16,color="magenta"];8 -> 10[label="",style="dashed", color="magenta", weight=3]; 30.04/13.41 8 -> 11[label="",style="dashed", color="magenta", weight=3]; 30.04/13.41 9[label="xwv3",fontsize=16,color="green",shape="box"];10[label="xwv41",fontsize=16,color="green",shape="box"];11[label="FiniteMap.delFromFM xwv3 xwv40",fontsize=16,color="burlywood",shape="triangle"];4484[label="xwv3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];11 -> 4484[label="",style="solid", color="burlywood", weight=9]; 30.04/13.41 4484 -> 12[label="",style="solid", color="burlywood", weight=3]; 30.04/13.41 4485[label="xwv3/FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34",fontsize=10,color="white",style="solid",shape="box"];11 -> 4485[label="",style="solid", color="burlywood", weight=9]; 30.04/13.41 4485 -> 13[label="",style="solid", color="burlywood", weight=3]; 30.04/13.41 12[label="FiniteMap.delFromFM FiniteMap.EmptyFM xwv40",fontsize=16,color="black",shape="box"];12 -> 14[label="",style="solid", color="black", weight=3]; 30.04/13.41 13[label="FiniteMap.delFromFM (FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34) xwv40",fontsize=16,color="black",shape="box"];13 -> 15[label="",style="solid", color="black", weight=3]; 30.04/13.41 14[label="FiniteMap.delFromFM4 FiniteMap.EmptyFM xwv40",fontsize=16,color="black",shape="box"];14 -> 16[label="",style="solid", color="black", weight=3]; 30.04/13.41 15[label="FiniteMap.delFromFM3 (FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34) xwv40",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 30.04/13.41 16[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 30.04/13.42 17[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv40 (xwv40 > xwv30)",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 30.04/13.42 18[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];19[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv40 (compare xwv40 xwv30 == GT)",fontsize=16,color="black",shape="box"];19 -> 20[label="",style="solid", color="black", weight=3]; 30.04/13.42 20[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv40 (compare3 xwv40 xwv30 == GT)",fontsize=16,color="black",shape="box"];20 -> 21[label="",style="solid", color="black", weight=3]; 30.04/13.42 21[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv40 (compare2 xwv40 xwv30 (xwv40 == xwv30) == GT)",fontsize=16,color="burlywood",shape="box"];4486[label="xwv40/Nothing",fontsize=10,color="white",style="solid",shape="box"];21 -> 4486[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4486 -> 22[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4487[label="xwv40/Just xwv400",fontsize=10,color="white",style="solid",shape="box"];21 -> 4487[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4487 -> 23[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 22[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 Nothing (compare2 Nothing xwv30 (Nothing == xwv30) == GT)",fontsize=16,color="burlywood",shape="box"];4488[label="xwv30/Nothing",fontsize=10,color="white",style="solid",shape="box"];22 -> 4488[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4488 -> 24[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4489[label="xwv30/Just xwv300",fontsize=10,color="white",style="solid",shape="box"];22 -> 4489[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4489 -> 25[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 23[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 (Just xwv400) (compare2 (Just xwv400) xwv30 (Just xwv400 == xwv30) == GT)",fontsize=16,color="burlywood",shape="box"];4490[label="xwv30/Nothing",fontsize=10,color="white",style="solid",shape="box"];23 -> 4490[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4490 -> 26[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4491[label="xwv30/Just xwv300",fontsize=10,color="white",style="solid",shape="box"];23 -> 4491[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4491 -> 27[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 24[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 Nothing (compare2 Nothing Nothing (Nothing == Nothing) == GT)",fontsize=16,color="black",shape="box"];24 -> 28[label="",style="solid", color="black", weight=3]; 30.04/13.42 25[label="FiniteMap.delFromFM2 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing (compare2 Nothing (Just xwv300) (Nothing == Just xwv300) == GT)",fontsize=16,color="black",shape="box"];25 -> 29[label="",style="solid", color="black", weight=3]; 30.04/13.42 26[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv400) (compare2 (Just xwv400) Nothing (Just xwv400 == Nothing) == GT)",fontsize=16,color="black",shape="box"];26 -> 30[label="",style="solid", color="black", weight=3]; 30.04/13.42 27[label="FiniteMap.delFromFM2 (Just xwv300) xwv31 xwv32 xwv33 xwv34 (Just xwv400) (compare2 (Just xwv400) (Just xwv300) (Just xwv400 == Just xwv300) == GT)",fontsize=16,color="black",shape="box"];27 -> 31[label="",style="solid", color="black", weight=3]; 30.04/13.42 28[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 Nothing (compare2 Nothing Nothing True == GT)",fontsize=16,color="black",shape="box"];28 -> 32[label="",style="solid", color="black", weight=3]; 30.04/13.42 29 -> 88[label="",style="dashed", color="red", weight=0]; 30.04/13.42 29[label="FiniteMap.delFromFM2 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing (compare2 Nothing (Just xwv300) False == GT)",fontsize=16,color="magenta"];29 -> 89[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 30 -> 97[label="",style="dashed", color="red", weight=0]; 30.04/13.42 30[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv400) (compare2 (Just xwv400) Nothing False == GT)",fontsize=16,color="magenta"];30 -> 98[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 31 -> 144[label="",style="dashed", color="red", weight=0]; 30.04/13.42 31[label="FiniteMap.delFromFM2 (Just xwv300) xwv31 xwv32 xwv33 xwv34 (Just xwv400) (compare2 (Just xwv400) (Just xwv300) (xwv400 == xwv300) == GT)",fontsize=16,color="magenta"];31 -> 145[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 31 -> 146[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 31 -> 147[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 31 -> 148[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 31 -> 149[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 31 -> 150[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 31 -> 151[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 32[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 Nothing (EQ == GT)",fontsize=16,color="black",shape="box"];32 -> 43[label="",style="solid", color="black", weight=3]; 30.04/13.42 89 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.42 89[label="compare2 Nothing (Just xwv300) False == GT",fontsize=16,color="magenta"];89 -> 93[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 89 -> 94[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 88[label="FiniteMap.delFromFM2 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing xwv20",fontsize=16,color="burlywood",shape="triangle"];4492[label="xwv20/False",fontsize=10,color="white",style="solid",shape="box"];88 -> 4492[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4492 -> 95[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4493[label="xwv20/True",fontsize=10,color="white",style="solid",shape="box"];88 -> 4493[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4493 -> 96[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 98 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.42 98[label="compare2 (Just xwv400) Nothing False == GT",fontsize=16,color="magenta"];98 -> 102[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 98 -> 103[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 97[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv400) xwv21",fontsize=16,color="burlywood",shape="triangle"];4494[label="xwv21/False",fontsize=10,color="white",style="solid",shape="box"];97 -> 4494[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4494 -> 104[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4495[label="xwv21/True",fontsize=10,color="white",style="solid",shape="box"];97 -> 4495[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4495 -> 105[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 145[label="xwv31",fontsize=16,color="green",shape="box"];146 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.42 146[label="compare2 (Just xwv400) (Just xwv300) (xwv400 == xwv300) == GT",fontsize=16,color="magenta"];146 -> 155[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 146 -> 156[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 147[label="xwv33",fontsize=16,color="green",shape="box"];148[label="xwv400",fontsize=16,color="green",shape="box"];149[label="xwv300",fontsize=16,color="green",shape="box"];150[label="xwv32",fontsize=16,color="green",shape="box"];151[label="xwv34",fontsize=16,color="green",shape="box"];144[label="FiniteMap.delFromFM2 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) xwv22",fontsize=16,color="burlywood",shape="triangle"];4496[label="xwv22/False",fontsize=10,color="white",style="solid",shape="box"];144 -> 4496[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4496 -> 157[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4497[label="xwv22/True",fontsize=10,color="white",style="solid",shape="box"];144 -> 4497[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4497 -> 158[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 43[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 Nothing False",fontsize=16,color="black",shape="box"];43 -> 62[label="",style="solid", color="black", weight=3]; 30.04/13.42 93[label="GT",fontsize=16,color="green",shape="box"];94 -> 2032[label="",style="dashed", color="red", weight=0]; 30.04/13.42 94[label="compare2 Nothing (Just xwv300) False",fontsize=16,color="magenta"];94 -> 2033[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 94 -> 2034[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 94 -> 2035[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 47[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4498[label="xwv400/LT",fontsize=10,color="white",style="solid",shape="box"];47 -> 4498[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4498 -> 67[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4499[label="xwv400/EQ",fontsize=10,color="white",style="solid",shape="box"];47 -> 4499[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4499 -> 68[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4500[label="xwv400/GT",fontsize=10,color="white",style="solid",shape="box"];47 -> 4500[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4500 -> 69[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 95[label="FiniteMap.delFromFM2 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing False",fontsize=16,color="black",shape="box"];95 -> 107[label="",style="solid", color="black", weight=3]; 30.04/13.42 96[label="FiniteMap.delFromFM2 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing True",fontsize=16,color="black",shape="box"];96 -> 108[label="",style="solid", color="black", weight=3]; 30.04/13.42 102[label="GT",fontsize=16,color="green",shape="box"];103 -> 2032[label="",style="dashed", color="red", weight=0]; 30.04/13.42 103[label="compare2 (Just xwv400) Nothing False",fontsize=16,color="magenta"];103 -> 2036[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 103 -> 2037[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 103 -> 2038[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 104[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv400) False",fontsize=16,color="black",shape="box"];104 -> 160[label="",style="solid", color="black", weight=3]; 30.04/13.42 105[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv400) True",fontsize=16,color="black",shape="box"];105 -> 161[label="",style="solid", color="black", weight=3]; 30.04/13.42 155[label="GT",fontsize=16,color="green",shape="box"];156 -> 2032[label="",style="dashed", color="red", weight=0]; 30.04/13.42 156[label="compare2 (Just xwv400) (Just xwv300) (xwv400 == xwv300)",fontsize=16,color="magenta"];156 -> 2039[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 156 -> 2040[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 156 -> 2041[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 157[label="FiniteMap.delFromFM2 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) False",fontsize=16,color="black",shape="box"];157 -> 170[label="",style="solid", color="black", weight=3]; 30.04/13.42 158[label="FiniteMap.delFromFM2 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) True",fontsize=16,color="black",shape="box"];158 -> 171[label="",style="solid", color="black", weight=3]; 30.04/13.42 62 -> 197[label="",style="dashed", color="red", weight=0]; 30.04/13.42 62[label="FiniteMap.delFromFM1 Nothing xwv31 xwv32 xwv33 xwv34 Nothing (Nothing < Nothing)",fontsize=16,color="magenta"];62 -> 198[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2033[label="Just xwv300",fontsize=16,color="green",shape="box"];2034[label="False",fontsize=16,color="green",shape="box"];2035[label="Nothing",fontsize=16,color="green",shape="box"];2032[label="compare2 xwv280 xwv290 xwv110",fontsize=16,color="burlywood",shape="triangle"];4501[label="xwv110/False",fontsize=10,color="white",style="solid",shape="box"];2032 -> 4501[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4501 -> 2067[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4502[label="xwv110/True",fontsize=10,color="white",style="solid",shape="box"];2032 -> 4502[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4502 -> 2068[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 67[label="LT == xwv300",fontsize=16,color="burlywood",shape="box"];4503[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];67 -> 4503[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4503 -> 109[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4504[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];67 -> 4504[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4504 -> 110[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4505[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];67 -> 4505[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4505 -> 111[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 68[label="EQ == xwv300",fontsize=16,color="burlywood",shape="box"];4506[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];68 -> 4506[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4506 -> 112[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4507[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];68 -> 4507[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4507 -> 113[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4508[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];68 -> 4508[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4508 -> 114[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 69[label="GT == xwv300",fontsize=16,color="burlywood",shape="box"];4509[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];69 -> 4509[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4509 -> 115[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4510[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];69 -> 4510[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4510 -> 116[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4511[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];69 -> 4511[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4511 -> 117[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 107 -> 213[label="",style="dashed", color="red", weight=0]; 30.04/13.42 107[label="FiniteMap.delFromFM1 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing (Nothing < Just xwv300)",fontsize=16,color="magenta"];107 -> 214[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 108 -> 3532[label="",style="dashed", color="red", weight=0]; 30.04/13.42 108[label="FiniteMap.mkBalBranch (Just xwv300) xwv31 xwv33 (FiniteMap.delFromFM xwv34 Nothing)",fontsize=16,color="magenta"];108 -> 3533[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 108 -> 3534[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 108 -> 3535[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 108 -> 3536[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2036[label="Nothing",fontsize=16,color="green",shape="box"];2037[label="False",fontsize=16,color="green",shape="box"];2038[label="Just xwv400",fontsize=16,color="green",shape="box"];160 -> 223[label="",style="dashed", color="red", weight=0]; 30.04/13.42 160[label="FiniteMap.delFromFM1 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv400) (Just xwv400 < Nothing)",fontsize=16,color="magenta"];160 -> 224[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 161 -> 3532[label="",style="dashed", color="red", weight=0]; 30.04/13.42 161[label="FiniteMap.mkBalBranch Nothing xwv31 xwv33 (FiniteMap.delFromFM xwv34 (Just xwv400))",fontsize=16,color="magenta"];161 -> 3537[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 161 -> 3538[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 161 -> 3539[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 161 -> 3540[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2039[label="Just xwv300",fontsize=16,color="green",shape="box"];2040[label="xwv400 == xwv300",fontsize=16,color="blue",shape="box"];4512[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4512[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4512 -> 2069[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4513[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4513[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4513 -> 2070[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4514[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4514[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4514 -> 2071[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4515[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4515[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4515 -> 2072[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4516[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4516[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4516 -> 2073[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4517[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4517[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4517 -> 2074[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4518[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4518[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4518 -> 2075[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4519[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4519[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4519 -> 2076[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4520[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4520[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4520 -> 2077[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4521[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4521[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4521 -> 2078[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4522[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4522[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4522 -> 2079[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4523[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4523[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4523 -> 2080[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4524[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4524[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4524 -> 2081[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4525[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4525[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4525 -> 2082[label="",style="solid", color="blue", weight=3]; 30.04/13.42 2041[label="Just xwv400",fontsize=16,color="green",shape="box"];170 -> 251[label="",style="dashed", color="red", weight=0]; 30.04/13.42 170[label="FiniteMap.delFromFM1 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) (Just xwv18 < Just xwv13)",fontsize=16,color="magenta"];170 -> 252[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 171 -> 3532[label="",style="dashed", color="red", weight=0]; 30.04/13.42 171[label="FiniteMap.mkBalBranch (Just xwv13) xwv14 xwv16 (FiniteMap.delFromFM xwv17 (Just xwv18))",fontsize=16,color="magenta"];171 -> 3541[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 171 -> 3542[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 171 -> 3543[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 171 -> 3544[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 198[label="Nothing < Nothing",fontsize=16,color="black",shape="box"];198 -> 200[label="",style="solid", color="black", weight=3]; 30.04/13.42 197[label="FiniteMap.delFromFM1 Nothing xwv31 xwv32 xwv33 xwv34 Nothing xwv32",fontsize=16,color="burlywood",shape="triangle"];4526[label="xwv32/False",fontsize=10,color="white",style="solid",shape="box"];197 -> 4526[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4526 -> 201[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4527[label="xwv32/True",fontsize=10,color="white",style="solid",shape="box"];197 -> 4527[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4527 -> 202[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 2067[label="compare2 xwv280 xwv290 False",fontsize=16,color="black",shape="box"];2067 -> 2094[label="",style="solid", color="black", weight=3]; 30.04/13.42 2068[label="compare2 xwv280 xwv290 True",fontsize=16,color="black",shape="box"];2068 -> 2095[label="",style="solid", color="black", weight=3]; 30.04/13.42 109[label="LT == LT",fontsize=16,color="black",shape="box"];109 -> 204[label="",style="solid", color="black", weight=3]; 30.04/13.42 110[label="LT == EQ",fontsize=16,color="black",shape="box"];110 -> 205[label="",style="solid", color="black", weight=3]; 30.04/13.42 111[label="LT == GT",fontsize=16,color="black",shape="box"];111 -> 206[label="",style="solid", color="black", weight=3]; 30.04/13.42 112[label="EQ == LT",fontsize=16,color="black",shape="box"];112 -> 207[label="",style="solid", color="black", weight=3]; 30.04/13.42 113[label="EQ == EQ",fontsize=16,color="black",shape="box"];113 -> 208[label="",style="solid", color="black", weight=3]; 30.04/13.42 114[label="EQ == GT",fontsize=16,color="black",shape="box"];114 -> 209[label="",style="solid", color="black", weight=3]; 30.04/13.42 115[label="GT == LT",fontsize=16,color="black",shape="box"];115 -> 210[label="",style="solid", color="black", weight=3]; 30.04/13.42 116[label="GT == EQ",fontsize=16,color="black",shape="box"];116 -> 211[label="",style="solid", color="black", weight=3]; 30.04/13.42 117[label="GT == GT",fontsize=16,color="black",shape="box"];117 -> 212[label="",style="solid", color="black", weight=3]; 30.04/13.42 214[label="Nothing < Just xwv300",fontsize=16,color="black",shape="box"];214 -> 216[label="",style="solid", color="black", weight=3]; 30.04/13.42 213[label="FiniteMap.delFromFM1 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing xwv33",fontsize=16,color="burlywood",shape="triangle"];4528[label="xwv33/False",fontsize=10,color="white",style="solid",shape="box"];213 -> 4528[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4528 -> 217[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4529[label="xwv33/True",fontsize=10,color="white",style="solid",shape="box"];213 -> 4529[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4529 -> 218[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 3533 -> 11[label="",style="dashed", color="red", weight=0]; 30.04/13.42 3533[label="FiniteMap.delFromFM xwv34 Nothing",fontsize=16,color="magenta"];3533 -> 3582[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3533 -> 3583[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3534[label="xwv33",fontsize=16,color="green",shape="box"];3535[label="Just xwv300",fontsize=16,color="green",shape="box"];3536[label="xwv31",fontsize=16,color="green",shape="box"];3532[label="FiniteMap.mkBalBranch xwv340 xwv341 xwv253 xwv344",fontsize=16,color="black",shape="triangle"];3532 -> 3584[label="",style="solid", color="black", weight=3]; 30.04/13.42 224[label="Just xwv400 < Nothing",fontsize=16,color="black",shape="box"];224 -> 226[label="",style="solid", color="black", weight=3]; 30.04/13.42 223[label="FiniteMap.delFromFM1 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv400) xwv34",fontsize=16,color="burlywood",shape="triangle"];4530[label="xwv34/False",fontsize=10,color="white",style="solid",shape="box"];223 -> 4530[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4530 -> 227[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4531[label="xwv34/True",fontsize=10,color="white",style="solid",shape="box"];223 -> 4531[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4531 -> 228[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 3537 -> 11[label="",style="dashed", color="red", weight=0]; 30.04/13.42 3537[label="FiniteMap.delFromFM xwv34 (Just xwv400)",fontsize=16,color="magenta"];3537 -> 3585[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3537 -> 3586[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3538[label="xwv33",fontsize=16,color="green",shape="box"];3539[label="Nothing",fontsize=16,color="green",shape="box"];3540[label="xwv31",fontsize=16,color="green",shape="box"];2069 -> 176[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2069[label="xwv400 == xwv300",fontsize=16,color="magenta"];2070 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2070[label="xwv400 == xwv300",fontsize=16,color="magenta"];2071 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2071[label="xwv400 == xwv300",fontsize=16,color="magenta"];2072 -> 179[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2072[label="xwv400 == xwv300",fontsize=16,color="magenta"];2073 -> 180[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2073[label="xwv400 == xwv300",fontsize=16,color="magenta"];2074 -> 181[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2074[label="xwv400 == xwv300",fontsize=16,color="magenta"];2075 -> 182[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2075[label="xwv400 == xwv300",fontsize=16,color="magenta"];2076 -> 183[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2076[label="xwv400 == xwv300",fontsize=16,color="magenta"];2077 -> 184[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2077[label="xwv400 == xwv300",fontsize=16,color="magenta"];2078 -> 185[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2078[label="xwv400 == xwv300",fontsize=16,color="magenta"];2079 -> 186[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2079[label="xwv400 == xwv300",fontsize=16,color="magenta"];2080 -> 187[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2080[label="xwv400 == xwv300",fontsize=16,color="magenta"];2081 -> 188[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2081[label="xwv400 == xwv300",fontsize=16,color="magenta"];2082 -> 189[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2082[label="xwv400 == xwv300",fontsize=16,color="magenta"];252[label="Just xwv18 < Just xwv13",fontsize=16,color="black",shape="box"];252 -> 254[label="",style="solid", color="black", weight=3]; 30.04/13.42 251[label="FiniteMap.delFromFM1 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) xwv35",fontsize=16,color="burlywood",shape="triangle"];4532[label="xwv35/False",fontsize=10,color="white",style="solid",shape="box"];251 -> 4532[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4532 -> 255[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4533[label="xwv35/True",fontsize=10,color="white",style="solid",shape="box"];251 -> 4533[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4533 -> 256[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 3541 -> 11[label="",style="dashed", color="red", weight=0]; 30.04/13.42 3541[label="FiniteMap.delFromFM xwv17 (Just xwv18)",fontsize=16,color="magenta"];3541 -> 3587[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3541 -> 3588[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3542[label="xwv16",fontsize=16,color="green",shape="box"];3543[label="Just xwv13",fontsize=16,color="green",shape="box"];3544[label="xwv14",fontsize=16,color="green",shape="box"];200 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.42 200[label="compare Nothing Nothing == LT",fontsize=16,color="magenta"];200 -> 259[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 200 -> 260[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 201[label="FiniteMap.delFromFM1 Nothing xwv31 xwv32 xwv33 xwv34 Nothing False",fontsize=16,color="black",shape="box"];201 -> 261[label="",style="solid", color="black", weight=3]; 30.04/13.42 202[label="FiniteMap.delFromFM1 Nothing xwv31 xwv32 xwv33 xwv34 Nothing True",fontsize=16,color="black",shape="box"];202 -> 262[label="",style="solid", color="black", weight=3]; 30.04/13.42 2094[label="compare1 xwv280 xwv290 (xwv280 <= xwv290)",fontsize=16,color="burlywood",shape="box"];4534[label="xwv280/Nothing",fontsize=10,color="white",style="solid",shape="box"];2094 -> 4534[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4534 -> 2098[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4535[label="xwv280/Just xwv2800",fontsize=10,color="white",style="solid",shape="box"];2094 -> 4535[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4535 -> 2099[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 2095[label="EQ",fontsize=16,color="green",shape="box"];204[label="True",fontsize=16,color="green",shape="box"];205[label="False",fontsize=16,color="green",shape="box"];206[label="False",fontsize=16,color="green",shape="box"];207[label="False",fontsize=16,color="green",shape="box"];208[label="True",fontsize=16,color="green",shape="box"];209[label="False",fontsize=16,color="green",shape="box"];210[label="False",fontsize=16,color="green",shape="box"];211[label="False",fontsize=16,color="green",shape="box"];212[label="True",fontsize=16,color="green",shape="box"];216 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.42 216[label="compare Nothing (Just xwv300) == LT",fontsize=16,color="magenta"];216 -> 263[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 216 -> 264[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 217[label="FiniteMap.delFromFM1 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing False",fontsize=16,color="black",shape="box"];217 -> 265[label="",style="solid", color="black", weight=3]; 30.04/13.42 218[label="FiniteMap.delFromFM1 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing True",fontsize=16,color="black",shape="box"];218 -> 266[label="",style="solid", color="black", weight=3]; 30.04/13.42 3582[label="Nothing",fontsize=16,color="green",shape="box"];3583[label="xwv34",fontsize=16,color="green",shape="box"];3584[label="FiniteMap.mkBalBranch6 xwv340 xwv341 xwv253 xwv344",fontsize=16,color="black",shape="box"];3584 -> 3610[label="",style="solid", color="black", weight=3]; 30.04/13.42 226 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.42 226[label="compare (Just xwv400) Nothing == LT",fontsize=16,color="magenta"];226 -> 269[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 226 -> 270[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 227[label="FiniteMap.delFromFM1 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv400) False",fontsize=16,color="black",shape="box"];227 -> 271[label="",style="solid", color="black", weight=3]; 30.04/13.42 228[label="FiniteMap.delFromFM1 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv400) True",fontsize=16,color="black",shape="box"];228 -> 272[label="",style="solid", color="black", weight=3]; 30.04/13.42 3585[label="Just xwv400",fontsize=16,color="green",shape="box"];3586[label="xwv34",fontsize=16,color="green",shape="box"];176[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4536[label="xwv400/False",fontsize=10,color="white",style="solid",shape="box"];176 -> 4536[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4536 -> 232[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4537[label="xwv400/True",fontsize=10,color="white",style="solid",shape="box"];176 -> 4537[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4537 -> 233[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 178[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4538[label="xwv400/Nothing",fontsize=10,color="white",style="solid",shape="box"];178 -> 4538[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4538 -> 234[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4539[label="xwv400/Just xwv4000",fontsize=10,color="white",style="solid",shape="box"];178 -> 4539[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4539 -> 235[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 179[label="xwv400 == xwv300",fontsize=16,color="black",shape="triangle"];179 -> 236[label="",style="solid", color="black", weight=3]; 30.04/13.42 180[label="xwv400 == xwv300",fontsize=16,color="black",shape="triangle"];180 -> 237[label="",style="solid", color="black", weight=3]; 30.04/13.42 181[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4540[label="xwv400/Left xwv4000",fontsize=10,color="white",style="solid",shape="box"];181 -> 4540[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4540 -> 238[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4541[label="xwv400/Right xwv4000",fontsize=10,color="white",style="solid",shape="box"];181 -> 4541[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4541 -> 239[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 182[label="xwv400 == xwv300",fontsize=16,color="black",shape="triangle"];182 -> 240[label="",style="solid", color="black", weight=3]; 30.04/13.42 183[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4542[label="xwv400/(xwv4000,xwv4001)",fontsize=10,color="white",style="solid",shape="box"];183 -> 4542[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4542 -> 241[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 184[label="xwv400 == xwv300",fontsize=16,color="black",shape="triangle"];184 -> 242[label="",style="solid", color="black", weight=3]; 30.04/13.42 185[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4543[label="xwv400/xwv4000 :% xwv4001",fontsize=10,color="white",style="solid",shape="box"];185 -> 4543[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4543 -> 243[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 186[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4544[label="xwv400/()",fontsize=10,color="white",style="solid",shape="box"];186 -> 4544[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4544 -> 244[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 187[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4545[label="xwv400/(xwv4000,xwv4001,xwv4002)",fontsize=10,color="white",style="solid",shape="box"];187 -> 4545[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4545 -> 245[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 188[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4546[label="xwv400/Integer xwv4000",fontsize=10,color="white",style="solid",shape="box"];188 -> 4546[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4546 -> 246[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 189[label="xwv400 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4547[label="xwv400/xwv4000 : xwv4001",fontsize=10,color="white",style="solid",shape="box"];189 -> 4547[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4547 -> 247[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4548[label="xwv400/[]",fontsize=10,color="white",style="solid",shape="box"];189 -> 4548[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4548 -> 248[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 254 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.42 254[label="compare (Just xwv18) (Just xwv13) == LT",fontsize=16,color="magenta"];254 -> 301[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 254 -> 302[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 255[label="FiniteMap.delFromFM1 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) False",fontsize=16,color="black",shape="box"];255 -> 303[label="",style="solid", color="black", weight=3]; 30.04/13.42 256[label="FiniteMap.delFromFM1 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) True",fontsize=16,color="black",shape="box"];256 -> 304[label="",style="solid", color="black", weight=3]; 30.04/13.42 3587[label="Just xwv18",fontsize=16,color="green",shape="box"];3588[label="xwv17",fontsize=16,color="green",shape="box"];259[label="LT",fontsize=16,color="green",shape="box"];260[label="compare Nothing Nothing",fontsize=16,color="black",shape="box"];260 -> 305[label="",style="solid", color="black", weight=3]; 30.04/13.42 261 -> 306[label="",style="dashed", color="red", weight=0]; 30.04/13.42 261[label="FiniteMap.delFromFM0 Nothing xwv31 xwv32 xwv33 xwv34 Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];261 -> 307[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 262 -> 3532[label="",style="dashed", color="red", weight=0]; 30.04/13.42 262[label="FiniteMap.mkBalBranch Nothing xwv31 (FiniteMap.delFromFM xwv33 Nothing) xwv34",fontsize=16,color="magenta"];262 -> 3553[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 262 -> 3554[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 262 -> 3555[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 262 -> 3556[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2098[label="compare1 Nothing xwv290 (Nothing <= xwv290)",fontsize=16,color="burlywood",shape="box"];4549[label="xwv290/Nothing",fontsize=10,color="white",style="solid",shape="box"];2098 -> 4549[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4549 -> 2111[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4550[label="xwv290/Just xwv2900",fontsize=10,color="white",style="solid",shape="box"];2098 -> 4550[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4550 -> 2112[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 2099[label="compare1 (Just xwv2800) xwv290 (Just xwv2800 <= xwv290)",fontsize=16,color="burlywood",shape="box"];4551[label="xwv290/Nothing",fontsize=10,color="white",style="solid",shape="box"];2099 -> 4551[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4551 -> 2113[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4552[label="xwv290/Just xwv2900",fontsize=10,color="white",style="solid",shape="box"];2099 -> 4552[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4552 -> 2114[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 263[label="LT",fontsize=16,color="green",shape="box"];264[label="compare Nothing (Just xwv300)",fontsize=16,color="black",shape="box"];264 -> 310[label="",style="solid", color="black", weight=3]; 30.04/13.42 265 -> 311[label="",style="dashed", color="red", weight=0]; 30.04/13.42 265[label="FiniteMap.delFromFM0 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing (Just xwv300 == Nothing)",fontsize=16,color="magenta"];265 -> 312[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 266 -> 3532[label="",style="dashed", color="red", weight=0]; 30.04/13.42 266[label="FiniteMap.mkBalBranch (Just xwv300) xwv31 (FiniteMap.delFromFM xwv33 Nothing) xwv34",fontsize=16,color="magenta"];266 -> 3557[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 266 -> 3558[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 266 -> 3559[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 266 -> 3560[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3610 -> 3619[label="",style="dashed", color="red", weight=0]; 30.04/13.42 3610[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv340 xwv341 xwv344 xwv253 xwv340 xwv341 xwv253 xwv344 (FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv253 + FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv253 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];3610 -> 3620[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 269[label="LT",fontsize=16,color="green",shape="box"];270[label="compare (Just xwv400) Nothing",fontsize=16,color="black",shape="box"];270 -> 317[label="",style="solid", color="black", weight=3]; 30.04/13.42 271 -> 318[label="",style="dashed", color="red", weight=0]; 30.04/13.42 271[label="FiniteMap.delFromFM0 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv400) (Nothing == Just xwv400)",fontsize=16,color="magenta"];271 -> 319[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 272 -> 3532[label="",style="dashed", color="red", weight=0]; 30.04/13.42 272[label="FiniteMap.mkBalBranch Nothing xwv31 (FiniteMap.delFromFM xwv33 (Just xwv400)) xwv34",fontsize=16,color="magenta"];272 -> 3561[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 272 -> 3562[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 272 -> 3563[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 272 -> 3564[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 232[label="False == xwv300",fontsize=16,color="burlywood",shape="box"];4553[label="xwv300/False",fontsize=10,color="white",style="solid",shape="box"];232 -> 4553[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4553 -> 274[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4554[label="xwv300/True",fontsize=10,color="white",style="solid",shape="box"];232 -> 4554[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4554 -> 275[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 233[label="True == xwv300",fontsize=16,color="burlywood",shape="box"];4555[label="xwv300/False",fontsize=10,color="white",style="solid",shape="box"];233 -> 4555[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4555 -> 276[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4556[label="xwv300/True",fontsize=10,color="white",style="solid",shape="box"];233 -> 4556[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4556 -> 277[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 234[label="Nothing == xwv300",fontsize=16,color="burlywood",shape="box"];4557[label="xwv300/Nothing",fontsize=10,color="white",style="solid",shape="box"];234 -> 4557[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4557 -> 278[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4558[label="xwv300/Just xwv3000",fontsize=10,color="white",style="solid",shape="box"];234 -> 4558[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4558 -> 279[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 235[label="Just xwv4000 == xwv300",fontsize=16,color="burlywood",shape="box"];4559[label="xwv300/Nothing",fontsize=10,color="white",style="solid",shape="box"];235 -> 4559[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4559 -> 280[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4560[label="xwv300/Just xwv3000",fontsize=10,color="white",style="solid",shape="box"];235 -> 4560[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4560 -> 281[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 236[label="primEqDouble xwv400 xwv300",fontsize=16,color="burlywood",shape="box"];4561[label="xwv400/Double xwv4000 xwv4001",fontsize=10,color="white",style="solid",shape="box"];236 -> 4561[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4561 -> 282[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 237[label="primEqInt xwv400 xwv300",fontsize=16,color="burlywood",shape="triangle"];4562[label="xwv400/Pos xwv4000",fontsize=10,color="white",style="solid",shape="box"];237 -> 4562[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4562 -> 283[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4563[label="xwv400/Neg xwv4000",fontsize=10,color="white",style="solid",shape="box"];237 -> 4563[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4563 -> 284[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 238[label="Left xwv4000 == xwv300",fontsize=16,color="burlywood",shape="box"];4564[label="xwv300/Left xwv3000",fontsize=10,color="white",style="solid",shape="box"];238 -> 4564[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4564 -> 285[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4565[label="xwv300/Right xwv3000",fontsize=10,color="white",style="solid",shape="box"];238 -> 4565[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4565 -> 286[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 239[label="Right xwv4000 == xwv300",fontsize=16,color="burlywood",shape="box"];4566[label="xwv300/Left xwv3000",fontsize=10,color="white",style="solid",shape="box"];239 -> 4566[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4566 -> 287[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4567[label="xwv300/Right xwv3000",fontsize=10,color="white",style="solid",shape="box"];239 -> 4567[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4567 -> 288[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 240[label="primEqChar xwv400 xwv300",fontsize=16,color="burlywood",shape="box"];4568[label="xwv400/Char xwv4000",fontsize=10,color="white",style="solid",shape="box"];240 -> 4568[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4568 -> 289[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 241[label="(xwv4000,xwv4001) == xwv300",fontsize=16,color="burlywood",shape="box"];4569[label="xwv300/(xwv3000,xwv3001)",fontsize=10,color="white",style="solid",shape="box"];241 -> 4569[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4569 -> 290[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 242[label="primEqFloat xwv400 xwv300",fontsize=16,color="burlywood",shape="box"];4570[label="xwv400/Float xwv4000 xwv4001",fontsize=10,color="white",style="solid",shape="box"];242 -> 4570[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4570 -> 291[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 243[label="xwv4000 :% xwv4001 == xwv300",fontsize=16,color="burlywood",shape="box"];4571[label="xwv300/xwv3000 :% xwv3001",fontsize=10,color="white",style="solid",shape="box"];243 -> 4571[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4571 -> 292[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 244[label="() == xwv300",fontsize=16,color="burlywood",shape="box"];4572[label="xwv300/()",fontsize=10,color="white",style="solid",shape="box"];244 -> 4572[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4572 -> 293[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 245[label="(xwv4000,xwv4001,xwv4002) == xwv300",fontsize=16,color="burlywood",shape="box"];4573[label="xwv300/(xwv3000,xwv3001,xwv3002)",fontsize=10,color="white",style="solid",shape="box"];245 -> 4573[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4573 -> 294[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 246[label="Integer xwv4000 == xwv300",fontsize=16,color="burlywood",shape="box"];4574[label="xwv300/Integer xwv3000",fontsize=10,color="white",style="solid",shape="box"];246 -> 4574[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4574 -> 295[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 247[label="xwv4000 : xwv4001 == xwv300",fontsize=16,color="burlywood",shape="box"];4575[label="xwv300/xwv3000 : xwv3001",fontsize=10,color="white",style="solid",shape="box"];247 -> 4575[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4575 -> 296[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4576[label="xwv300/[]",fontsize=10,color="white",style="solid",shape="box"];247 -> 4576[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4576 -> 297[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 248[label="[] == xwv300",fontsize=16,color="burlywood",shape="box"];4577[label="xwv300/xwv3000 : xwv3001",fontsize=10,color="white",style="solid",shape="box"];248 -> 4577[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4577 -> 298[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4578[label="xwv300/[]",fontsize=10,color="white",style="solid",shape="box"];248 -> 4578[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4578 -> 299[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 301[label="LT",fontsize=16,color="green",shape="box"];302[label="compare (Just xwv18) (Just xwv13)",fontsize=16,color="black",shape="box"];302 -> 361[label="",style="solid", color="black", weight=3]; 30.04/13.42 303 -> 362[label="",style="dashed", color="red", weight=0]; 30.04/13.42 303[label="FiniteMap.delFromFM0 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) (Just xwv13 == Just xwv18)",fontsize=16,color="magenta"];303 -> 363[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 304 -> 3532[label="",style="dashed", color="red", weight=0]; 30.04/13.42 304[label="FiniteMap.mkBalBranch (Just xwv13) xwv14 (FiniteMap.delFromFM xwv16 (Just xwv18)) xwv17",fontsize=16,color="magenta"];304 -> 3565[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 304 -> 3566[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 304 -> 3567[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 304 -> 3568[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 305[label="compare3 Nothing Nothing",fontsize=16,color="black",shape="box"];305 -> 368[label="",style="solid", color="black", weight=3]; 30.04/13.42 307 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.42 307[label="Nothing == Nothing",fontsize=16,color="magenta"];307 -> 369[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 307 -> 370[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 306[label="FiniteMap.delFromFM0 Nothing xwv31 xwv32 xwv33 xwv34 Nothing xwv36",fontsize=16,color="burlywood",shape="triangle"];4579[label="xwv36/False",fontsize=10,color="white",style="solid",shape="box"];306 -> 4579[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4579 -> 371[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4580[label="xwv36/True",fontsize=10,color="white",style="solid",shape="box"];306 -> 4580[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4580 -> 372[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 3553[label="xwv34",fontsize=16,color="green",shape="box"];3554 -> 11[label="",style="dashed", color="red", weight=0]; 30.04/13.42 3554[label="FiniteMap.delFromFM xwv33 Nothing",fontsize=16,color="magenta"];3554 -> 3589[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3554 -> 3590[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3555[label="Nothing",fontsize=16,color="green",shape="box"];3556[label="xwv31",fontsize=16,color="green",shape="box"];2111[label="compare1 Nothing Nothing (Nothing <= Nothing)",fontsize=16,color="black",shape="box"];2111 -> 2153[label="",style="solid", color="black", weight=3]; 30.04/13.42 2112[label="compare1 Nothing (Just xwv2900) (Nothing <= Just xwv2900)",fontsize=16,color="black",shape="box"];2112 -> 2154[label="",style="solid", color="black", weight=3]; 30.04/13.42 2113[label="compare1 (Just xwv2800) Nothing (Just xwv2800 <= Nothing)",fontsize=16,color="black",shape="box"];2113 -> 2155[label="",style="solid", color="black", weight=3]; 30.04/13.42 2114[label="compare1 (Just xwv2800) (Just xwv2900) (Just xwv2800 <= Just xwv2900)",fontsize=16,color="black",shape="box"];2114 -> 2156[label="",style="solid", color="black", weight=3]; 30.04/13.42 310[label="compare3 Nothing (Just xwv300)",fontsize=16,color="black",shape="box"];310 -> 375[label="",style="solid", color="black", weight=3]; 30.04/13.42 312 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.42 312[label="Just xwv300 == Nothing",fontsize=16,color="magenta"];312 -> 376[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 312 -> 377[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 311[label="FiniteMap.delFromFM0 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing xwv37",fontsize=16,color="burlywood",shape="triangle"];4581[label="xwv37/False",fontsize=10,color="white",style="solid",shape="box"];311 -> 4581[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4581 -> 378[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4582[label="xwv37/True",fontsize=10,color="white",style="solid",shape="box"];311 -> 4582[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4582 -> 379[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 3557[label="xwv34",fontsize=16,color="green",shape="box"];3558 -> 11[label="",style="dashed", color="red", weight=0]; 30.04/13.42 3558[label="FiniteMap.delFromFM xwv33 Nothing",fontsize=16,color="magenta"];3558 -> 3591[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3558 -> 3592[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3559[label="Just xwv300",fontsize=16,color="green",shape="box"];3560[label="xwv31",fontsize=16,color="green",shape="box"];3620 -> 1274[label="",style="dashed", color="red", weight=0]; 30.04/13.42 3620[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv253 + FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv253 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];3620 -> 3621[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3620 -> 3622[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3619[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv340 xwv341 xwv344 xwv253 xwv340 xwv341 xwv253 xwv344 xwv254",fontsize=16,color="burlywood",shape="triangle"];4583[label="xwv254/False",fontsize=10,color="white",style="solid",shape="box"];3619 -> 4583[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4583 -> 3623[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4584[label="xwv254/True",fontsize=10,color="white",style="solid",shape="box"];3619 -> 4584[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4584 -> 3624[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 317[label="compare3 (Just xwv400) Nothing",fontsize=16,color="black",shape="box"];317 -> 388[label="",style="solid", color="black", weight=3]; 30.04/13.42 319 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.42 319[label="Nothing == Just xwv400",fontsize=16,color="magenta"];319 -> 389[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 319 -> 390[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 318[label="FiniteMap.delFromFM0 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv400) xwv38",fontsize=16,color="burlywood",shape="triangle"];4585[label="xwv38/False",fontsize=10,color="white",style="solid",shape="box"];318 -> 4585[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4585 -> 391[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4586[label="xwv38/True",fontsize=10,color="white",style="solid",shape="box"];318 -> 4586[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4586 -> 392[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 3561[label="xwv34",fontsize=16,color="green",shape="box"];3562 -> 11[label="",style="dashed", color="red", weight=0]; 30.04/13.42 3562[label="FiniteMap.delFromFM xwv33 (Just xwv400)",fontsize=16,color="magenta"];3562 -> 3593[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3562 -> 3594[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3563[label="Nothing",fontsize=16,color="green",shape="box"];3564[label="xwv31",fontsize=16,color="green",shape="box"];274[label="False == False",fontsize=16,color="black",shape="box"];274 -> 323[label="",style="solid", color="black", weight=3]; 30.04/13.42 275[label="False == True",fontsize=16,color="black",shape="box"];275 -> 324[label="",style="solid", color="black", weight=3]; 30.04/13.42 276[label="True == False",fontsize=16,color="black",shape="box"];276 -> 325[label="",style="solid", color="black", weight=3]; 30.04/13.42 277[label="True == True",fontsize=16,color="black",shape="box"];277 -> 326[label="",style="solid", color="black", weight=3]; 30.04/13.42 278[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];278 -> 327[label="",style="solid", color="black", weight=3]; 30.04/13.42 279[label="Nothing == Just xwv3000",fontsize=16,color="black",shape="box"];279 -> 328[label="",style="solid", color="black", weight=3]; 30.04/13.42 280[label="Just xwv4000 == Nothing",fontsize=16,color="black",shape="box"];280 -> 329[label="",style="solid", color="black", weight=3]; 30.04/13.42 281[label="Just xwv4000 == Just xwv3000",fontsize=16,color="black",shape="box"];281 -> 330[label="",style="solid", color="black", weight=3]; 30.04/13.42 282[label="primEqDouble (Double xwv4000 xwv4001) xwv300",fontsize=16,color="burlywood",shape="box"];4587[label="xwv300/Double xwv3000 xwv3001",fontsize=10,color="white",style="solid",shape="box"];282 -> 4587[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4587 -> 331[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 283[label="primEqInt (Pos xwv4000) xwv300",fontsize=16,color="burlywood",shape="box"];4588[label="xwv4000/Succ xwv40000",fontsize=10,color="white",style="solid",shape="box"];283 -> 4588[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4588 -> 332[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4589[label="xwv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];283 -> 4589[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4589 -> 333[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 284[label="primEqInt (Neg xwv4000) xwv300",fontsize=16,color="burlywood",shape="box"];4590[label="xwv4000/Succ xwv40000",fontsize=10,color="white",style="solid",shape="box"];284 -> 4590[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4590 -> 334[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4591[label="xwv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];284 -> 4591[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4591 -> 335[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 285[label="Left xwv4000 == Left xwv3000",fontsize=16,color="black",shape="box"];285 -> 336[label="",style="solid", color="black", weight=3]; 30.04/13.42 286[label="Left xwv4000 == Right xwv3000",fontsize=16,color="black",shape="box"];286 -> 337[label="",style="solid", color="black", weight=3]; 30.04/13.42 287[label="Right xwv4000 == Left xwv3000",fontsize=16,color="black",shape="box"];287 -> 338[label="",style="solid", color="black", weight=3]; 30.04/13.42 288[label="Right xwv4000 == Right xwv3000",fontsize=16,color="black",shape="box"];288 -> 339[label="",style="solid", color="black", weight=3]; 30.04/13.42 289[label="primEqChar (Char xwv4000) xwv300",fontsize=16,color="burlywood",shape="box"];4592[label="xwv300/Char xwv3000",fontsize=10,color="white",style="solid",shape="box"];289 -> 4592[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4592 -> 340[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 290[label="(xwv4000,xwv4001) == (xwv3000,xwv3001)",fontsize=16,color="black",shape="box"];290 -> 341[label="",style="solid", color="black", weight=3]; 30.04/13.42 291[label="primEqFloat (Float xwv4000 xwv4001) xwv300",fontsize=16,color="burlywood",shape="box"];4593[label="xwv300/Float xwv3000 xwv3001",fontsize=10,color="white",style="solid",shape="box"];291 -> 4593[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4593 -> 342[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 292[label="xwv4000 :% xwv4001 == xwv3000 :% xwv3001",fontsize=16,color="black",shape="box"];292 -> 343[label="",style="solid", color="black", weight=3]; 30.04/13.42 293[label="() == ()",fontsize=16,color="black",shape="box"];293 -> 344[label="",style="solid", color="black", weight=3]; 30.04/13.42 294[label="(xwv4000,xwv4001,xwv4002) == (xwv3000,xwv3001,xwv3002)",fontsize=16,color="black",shape="box"];294 -> 345[label="",style="solid", color="black", weight=3]; 30.04/13.42 295[label="Integer xwv4000 == Integer xwv3000",fontsize=16,color="black",shape="box"];295 -> 346[label="",style="solid", color="black", weight=3]; 30.04/13.42 296[label="xwv4000 : xwv4001 == xwv3000 : xwv3001",fontsize=16,color="black",shape="box"];296 -> 347[label="",style="solid", color="black", weight=3]; 30.04/13.42 297[label="xwv4000 : xwv4001 == []",fontsize=16,color="black",shape="box"];297 -> 348[label="",style="solid", color="black", weight=3]; 30.04/13.42 298[label="[] == xwv3000 : xwv3001",fontsize=16,color="black",shape="box"];298 -> 349[label="",style="solid", color="black", weight=3]; 30.04/13.42 299[label="[] == []",fontsize=16,color="black",shape="box"];299 -> 350[label="",style="solid", color="black", weight=3]; 30.04/13.42 361[label="compare3 (Just xwv18) (Just xwv13)",fontsize=16,color="black",shape="box"];361 -> 493[label="",style="solid", color="black", weight=3]; 30.04/13.42 363 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.42 363[label="Just xwv13 == Just xwv18",fontsize=16,color="magenta"];363 -> 494[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 363 -> 495[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 362[label="FiniteMap.delFromFM0 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) xwv46",fontsize=16,color="burlywood",shape="triangle"];4594[label="xwv46/False",fontsize=10,color="white",style="solid",shape="box"];362 -> 4594[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4594 -> 496[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4595[label="xwv46/True",fontsize=10,color="white",style="solid",shape="box"];362 -> 4595[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4595 -> 497[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 3565[label="xwv17",fontsize=16,color="green",shape="box"];3566 -> 11[label="",style="dashed", color="red", weight=0]; 30.04/13.42 3566[label="FiniteMap.delFromFM xwv16 (Just xwv18)",fontsize=16,color="magenta"];3566 -> 3595[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3566 -> 3596[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3567[label="Just xwv13",fontsize=16,color="green",shape="box"];3568[label="xwv14",fontsize=16,color="green",shape="box"];368 -> 2032[label="",style="dashed", color="red", weight=0]; 30.04/13.42 368[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];368 -> 2051[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 368 -> 2052[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 368 -> 2053[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 369[label="Nothing",fontsize=16,color="green",shape="box"];370[label="Nothing",fontsize=16,color="green",shape="box"];371[label="FiniteMap.delFromFM0 Nothing xwv31 xwv32 xwv33 xwv34 Nothing False",fontsize=16,color="black",shape="box"];371 -> 502[label="",style="solid", color="black", weight=3]; 30.04/13.42 372[label="FiniteMap.delFromFM0 Nothing xwv31 xwv32 xwv33 xwv34 Nothing True",fontsize=16,color="black",shape="box"];372 -> 503[label="",style="solid", color="black", weight=3]; 30.04/13.42 3589[label="Nothing",fontsize=16,color="green",shape="box"];3590[label="xwv33",fontsize=16,color="green",shape="box"];2153[label="compare1 Nothing Nothing True",fontsize=16,color="black",shape="box"];2153 -> 2161[label="",style="solid", color="black", weight=3]; 30.04/13.42 2154[label="compare1 Nothing (Just xwv2900) True",fontsize=16,color="black",shape="box"];2154 -> 2162[label="",style="solid", color="black", weight=3]; 30.04/13.42 2155[label="compare1 (Just xwv2800) Nothing False",fontsize=16,color="black",shape="box"];2155 -> 2163[label="",style="solid", color="black", weight=3]; 30.04/13.42 2156 -> 2164[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2156[label="compare1 (Just xwv2800) (Just xwv2900) (xwv2800 <= xwv2900)",fontsize=16,color="magenta"];2156 -> 2165[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2156 -> 2166[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2156 -> 2167[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 375 -> 2032[label="",style="dashed", color="red", weight=0]; 30.04/13.42 375[label="compare2 Nothing (Just xwv300) (Nothing == Just xwv300)",fontsize=16,color="magenta"];375 -> 2054[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 375 -> 2055[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 375 -> 2056[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 376[label="Nothing",fontsize=16,color="green",shape="box"];377[label="Just xwv300",fontsize=16,color="green",shape="box"];378[label="FiniteMap.delFromFM0 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing False",fontsize=16,color="black",shape="box"];378 -> 509[label="",style="solid", color="black", weight=3]; 30.04/13.42 379[label="FiniteMap.delFromFM0 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing True",fontsize=16,color="black",shape="box"];379 -> 510[label="",style="solid", color="black", weight=3]; 30.04/13.42 3591[label="Nothing",fontsize=16,color="green",shape="box"];3592[label="xwv33",fontsize=16,color="green",shape="box"];3621[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3622[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv253 + FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv253",fontsize=16,color="black",shape="box"];3622 -> 3638[label="",style="solid", color="black", weight=3]; 30.04/13.42 1274[label="xwv280 < xwv290",fontsize=16,color="black",shape="triangle"];1274 -> 1403[label="",style="solid", color="black", weight=3]; 30.04/13.42 3623[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv340 xwv341 xwv344 xwv253 xwv340 xwv341 xwv253 xwv344 False",fontsize=16,color="black",shape="box"];3623 -> 3639[label="",style="solid", color="black", weight=3]; 30.04/13.42 3624[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv340 xwv341 xwv344 xwv253 xwv340 xwv341 xwv253 xwv344 True",fontsize=16,color="black",shape="box"];3624 -> 3640[label="",style="solid", color="black", weight=3]; 30.04/13.42 388 -> 2032[label="",style="dashed", color="red", weight=0]; 30.04/13.42 388[label="compare2 (Just xwv400) Nothing (Just xwv400 == Nothing)",fontsize=16,color="magenta"];388 -> 2057[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 388 -> 2058[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 388 -> 2059[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 389[label="Just xwv400",fontsize=16,color="green",shape="box"];390[label="Nothing",fontsize=16,color="green",shape="box"];391[label="FiniteMap.delFromFM0 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv400) False",fontsize=16,color="black",shape="box"];391 -> 522[label="",style="solid", color="black", weight=3]; 30.04/13.42 392[label="FiniteMap.delFromFM0 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv400) True",fontsize=16,color="black",shape="box"];392 -> 523[label="",style="solid", color="black", weight=3]; 30.04/13.42 3593[label="Just xwv400",fontsize=16,color="green",shape="box"];3594[label="xwv33",fontsize=16,color="green",shape="box"];323[label="True",fontsize=16,color="green",shape="box"];324[label="False",fontsize=16,color="green",shape="box"];325[label="False",fontsize=16,color="green",shape="box"];326[label="True",fontsize=16,color="green",shape="box"];327[label="True",fontsize=16,color="green",shape="box"];328[label="False",fontsize=16,color="green",shape="box"];329[label="False",fontsize=16,color="green",shape="box"];330[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4596[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 4596[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4596 -> 401[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4597[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 4597[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4597 -> 402[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4598[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 4598[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4598 -> 403[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4599[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 4599[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4599 -> 404[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4600[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 4600[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4600 -> 405[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4601[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 4601[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4601 -> 406[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4602[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 4602[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4602 -> 407[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4603[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 4603[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4603 -> 408[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4604[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 4604[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4604 -> 409[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4605[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 4605[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4605 -> 410[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4606[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 4606[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4606 -> 411[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4607[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 4607[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4607 -> 412[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4608[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 4608[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4608 -> 413[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4609[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 4609[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4609 -> 414[label="",style="solid", color="blue", weight=3]; 30.04/13.42 331[label="primEqDouble (Double xwv4000 xwv4001) (Double xwv3000 xwv3001)",fontsize=16,color="black",shape="box"];331 -> 415[label="",style="solid", color="black", weight=3]; 30.04/13.42 332[label="primEqInt (Pos (Succ xwv40000)) xwv300",fontsize=16,color="burlywood",shape="box"];4610[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];332 -> 4610[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4610 -> 416[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4611[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];332 -> 4611[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4611 -> 417[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 333[label="primEqInt (Pos Zero) xwv300",fontsize=16,color="burlywood",shape="box"];4612[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];333 -> 4612[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4612 -> 418[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4613[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];333 -> 4613[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4613 -> 419[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 334[label="primEqInt (Neg (Succ xwv40000)) xwv300",fontsize=16,color="burlywood",shape="box"];4614[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];334 -> 4614[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4614 -> 420[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4615[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];334 -> 4615[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4615 -> 421[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 335[label="primEqInt (Neg Zero) xwv300",fontsize=16,color="burlywood",shape="box"];4616[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];335 -> 4616[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4616 -> 422[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4617[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];335 -> 4617[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4617 -> 423[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 336[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4618[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];336 -> 4618[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4618 -> 424[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4619[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];336 -> 4619[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4619 -> 425[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4620[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];336 -> 4620[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4620 -> 426[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4621[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];336 -> 4621[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4621 -> 427[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4622[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];336 -> 4622[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4622 -> 428[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4623[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];336 -> 4623[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4623 -> 429[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4624[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];336 -> 4624[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4624 -> 430[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4625[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];336 -> 4625[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4625 -> 431[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4626[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];336 -> 4626[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4626 -> 432[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4627[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];336 -> 4627[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4627 -> 433[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4628[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];336 -> 4628[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4628 -> 434[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4629[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];336 -> 4629[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4629 -> 435[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4630[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];336 -> 4630[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4630 -> 436[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4631[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];336 -> 4631[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4631 -> 437[label="",style="solid", color="blue", weight=3]; 30.04/13.42 337[label="False",fontsize=16,color="green",shape="box"];338[label="False",fontsize=16,color="green",shape="box"];339[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4632[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];339 -> 4632[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4632 -> 438[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4633[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];339 -> 4633[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4633 -> 439[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4634[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];339 -> 4634[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4634 -> 440[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4635[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];339 -> 4635[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4635 -> 441[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4636[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];339 -> 4636[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4636 -> 442[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4637[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];339 -> 4637[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4637 -> 443[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4638[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];339 -> 4638[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4638 -> 444[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4639[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];339 -> 4639[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4639 -> 445[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4640[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];339 -> 4640[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4640 -> 446[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4641[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];339 -> 4641[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4641 -> 447[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4642[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];339 -> 4642[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4642 -> 448[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4643[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];339 -> 4643[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4643 -> 449[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4644[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];339 -> 4644[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4644 -> 450[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4645[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];339 -> 4645[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4645 -> 451[label="",style="solid", color="blue", weight=3]; 30.04/13.42 340[label="primEqChar (Char xwv4000) (Char xwv3000)",fontsize=16,color="black",shape="box"];340 -> 452[label="",style="solid", color="black", weight=3]; 30.04/13.42 341 -> 644[label="",style="dashed", color="red", weight=0]; 30.04/13.42 341[label="xwv4000 == xwv3000 && xwv4001 == xwv3001",fontsize=16,color="magenta"];341 -> 645[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 341 -> 646[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 342[label="primEqFloat (Float xwv4000 xwv4001) (Float xwv3000 xwv3001)",fontsize=16,color="black",shape="box"];342 -> 463[label="",style="solid", color="black", weight=3]; 30.04/13.42 343 -> 644[label="",style="dashed", color="red", weight=0]; 30.04/13.42 343[label="xwv4000 == xwv3000 && xwv4001 == xwv3001",fontsize=16,color="magenta"];343 -> 647[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 343 -> 648[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 344[label="True",fontsize=16,color="green",shape="box"];345 -> 644[label="",style="dashed", color="red", weight=0]; 30.04/13.42 345[label="xwv4000 == xwv3000 && xwv4001 == xwv3001 && xwv4002 == xwv3002",fontsize=16,color="magenta"];345 -> 649[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 345 -> 650[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 346 -> 237[label="",style="dashed", color="red", weight=0]; 30.04/13.42 346[label="primEqInt xwv4000 xwv3000",fontsize=16,color="magenta"];346 -> 475[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 346 -> 476[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 347 -> 644[label="",style="dashed", color="red", weight=0]; 30.04/13.42 347[label="xwv4000 == xwv3000 && xwv4001 == xwv3001",fontsize=16,color="magenta"];347 -> 651[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 347 -> 652[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 348[label="False",fontsize=16,color="green",shape="box"];349[label="False",fontsize=16,color="green",shape="box"];350[label="True",fontsize=16,color="green",shape="box"];493 -> 2032[label="",style="dashed", color="red", weight=0]; 30.04/13.42 493[label="compare2 (Just xwv18) (Just xwv13) (Just xwv18 == Just xwv13)",fontsize=16,color="magenta"];493 -> 2060[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 493 -> 2061[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 493 -> 2062[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 494[label="Just xwv18",fontsize=16,color="green",shape="box"];495[label="Just xwv13",fontsize=16,color="green",shape="box"];496[label="FiniteMap.delFromFM0 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) False",fontsize=16,color="black",shape="box"];496 -> 751[label="",style="solid", color="black", weight=3]; 30.04/13.42 497[label="FiniteMap.delFromFM0 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) True",fontsize=16,color="black",shape="box"];497 -> 752[label="",style="solid", color="black", weight=3]; 30.04/13.42 3595[label="Just xwv18",fontsize=16,color="green",shape="box"];3596[label="xwv16",fontsize=16,color="green",shape="box"];2051[label="Nothing",fontsize=16,color="green",shape="box"];2052 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2052[label="Nothing == Nothing",fontsize=16,color="magenta"];2052 -> 2083[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2052 -> 2084[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2053[label="Nothing",fontsize=16,color="green",shape="box"];502[label="error []",fontsize=16,color="red",shape="box"];503[label="FiniteMap.glueBal xwv33 xwv34",fontsize=16,color="burlywood",shape="triangle"];4646[label="xwv33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];503 -> 4646[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4646 -> 757[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4647[label="xwv33/FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=10,color="white",style="solid",shape="box"];503 -> 4647[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4647 -> 758[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 2161[label="LT",fontsize=16,color="green",shape="box"];2162[label="LT",fontsize=16,color="green",shape="box"];2163[label="compare0 (Just xwv2800) Nothing otherwise",fontsize=16,color="black",shape="box"];2163 -> 2168[label="",style="solid", color="black", weight=3]; 30.04/13.42 2165[label="xwv2800 <= xwv2900",fontsize=16,color="blue",shape="box"];4648[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4648[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4648 -> 2169[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4649[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4649[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4649 -> 2170[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4650[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4650[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4650 -> 2171[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4651[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4651[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4651 -> 2172[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4652[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4652[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4652 -> 2173[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4653[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4653[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4653 -> 2174[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4654[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4654[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4654 -> 2175[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4655[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4655[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4655 -> 2176[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4656[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4656[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4656 -> 2177[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4657[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4657[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4657 -> 2178[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4658[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4658[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4658 -> 2179[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4659[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4659[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4659 -> 2180[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4660[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4660[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4660 -> 2181[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4661[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4661[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4661 -> 2182[label="",style="solid", color="blue", weight=3]; 30.04/13.42 2166[label="xwv2900",fontsize=16,color="green",shape="box"];2167[label="xwv2800",fontsize=16,color="green",shape="box"];2164[label="compare1 (Just xwv125) (Just xwv126) xwv127",fontsize=16,color="burlywood",shape="triangle"];4662[label="xwv127/False",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4662[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4662 -> 2183[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4663[label="xwv127/True",fontsize=10,color="white",style="solid",shape="box"];2164 -> 4663[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4663 -> 2184[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 2054[label="Just xwv300",fontsize=16,color="green",shape="box"];2055 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2055[label="Nothing == Just xwv300",fontsize=16,color="magenta"];2055 -> 2085[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2055 -> 2086[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2056[label="Nothing",fontsize=16,color="green",shape="box"];509[label="error []",fontsize=16,color="red",shape="box"];510 -> 503[label="",style="dashed", color="red", weight=0]; 30.04/13.42 510[label="FiniteMap.glueBal xwv33 xwv34",fontsize=16,color="magenta"];3638 -> 3663[label="",style="dashed", color="red", weight=0]; 30.04/13.42 3638[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv253) (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv253)",fontsize=16,color="magenta"];3638 -> 3664[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 1403 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.42 1403[label="compare xwv280 xwv290 == LT",fontsize=16,color="magenta"];1403 -> 1578[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 1403 -> 1579[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3639 -> 3660[label="",style="dashed", color="red", weight=0]; 30.04/13.42 3639[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv340 xwv341 xwv344 xwv253 xwv340 xwv341 xwv253 xwv344 (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv253 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv253)",fontsize=16,color="magenta"];3639 -> 3661[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3640 -> 4355[label="",style="dashed", color="red", weight=0]; 30.04/13.42 3640[label="FiniteMap.mkBranch (Pos (Succ Zero)) xwv340 xwv341 xwv253 xwv344",fontsize=16,color="magenta"];3640 -> 4356[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3640 -> 4357[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3640 -> 4358[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3640 -> 4359[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3640 -> 4360[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2057[label="Nothing",fontsize=16,color="green",shape="box"];2058 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2058[label="Just xwv400 == Nothing",fontsize=16,color="magenta"];2058 -> 2087[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2058 -> 2088[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2059[label="Just xwv400",fontsize=16,color="green",shape="box"];522[label="error []",fontsize=16,color="red",shape="box"];523 -> 503[label="",style="dashed", color="red", weight=0]; 30.04/13.42 523[label="FiniteMap.glueBal xwv33 xwv34",fontsize=16,color="magenta"];401 -> 176[label="",style="dashed", color="red", weight=0]; 30.04/13.42 401[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];401 -> 528[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 401 -> 529[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 402 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.42 402[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];402 -> 530[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 402 -> 531[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 403 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.42 403[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];403 -> 532[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 403 -> 533[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 404 -> 179[label="",style="dashed", color="red", weight=0]; 30.04/13.42 404[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];404 -> 534[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 404 -> 535[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 405 -> 180[label="",style="dashed", color="red", weight=0]; 30.04/13.42 405[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];405 -> 536[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 405 -> 537[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 406 -> 181[label="",style="dashed", color="red", weight=0]; 30.04/13.42 406[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];406 -> 538[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 406 -> 539[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 407 -> 182[label="",style="dashed", color="red", weight=0]; 30.04/13.42 407[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];407 -> 540[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 407 -> 541[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 408 -> 183[label="",style="dashed", color="red", weight=0]; 30.04/13.42 408[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];408 -> 542[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 408 -> 543[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 409 -> 184[label="",style="dashed", color="red", weight=0]; 30.04/13.42 409[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];409 -> 544[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 409 -> 545[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 410 -> 185[label="",style="dashed", color="red", weight=0]; 30.04/13.42 410[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];410 -> 546[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 410 -> 547[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 411 -> 186[label="",style="dashed", color="red", weight=0]; 30.04/13.42 411[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];411 -> 548[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 411 -> 549[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 412 -> 187[label="",style="dashed", color="red", weight=0]; 30.04/13.42 412[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];412 -> 550[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 412 -> 551[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 413 -> 188[label="",style="dashed", color="red", weight=0]; 30.04/13.42 413[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];413 -> 552[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 413 -> 553[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 414 -> 189[label="",style="dashed", color="red", weight=0]; 30.04/13.42 414[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];414 -> 554[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 414 -> 555[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 415 -> 180[label="",style="dashed", color="red", weight=0]; 30.04/13.42 415[label="xwv4000 * xwv3001 == xwv4001 * xwv3000",fontsize=16,color="magenta"];415 -> 556[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 415 -> 557[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 416[label="primEqInt (Pos (Succ xwv40000)) (Pos xwv3000)",fontsize=16,color="burlywood",shape="box"];4664[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];416 -> 4664[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4664 -> 558[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4665[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];416 -> 4665[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4665 -> 559[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 417[label="primEqInt (Pos (Succ xwv40000)) (Neg xwv3000)",fontsize=16,color="black",shape="box"];417 -> 560[label="",style="solid", color="black", weight=3]; 30.04/13.42 418[label="primEqInt (Pos Zero) (Pos xwv3000)",fontsize=16,color="burlywood",shape="box"];4666[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];418 -> 4666[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4666 -> 561[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4667[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];418 -> 4667[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4667 -> 562[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 419[label="primEqInt (Pos Zero) (Neg xwv3000)",fontsize=16,color="burlywood",shape="box"];4668[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];419 -> 4668[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4668 -> 563[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4669[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];419 -> 4669[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4669 -> 564[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 420[label="primEqInt (Neg (Succ xwv40000)) (Pos xwv3000)",fontsize=16,color="black",shape="box"];420 -> 565[label="",style="solid", color="black", weight=3]; 30.04/13.42 421[label="primEqInt (Neg (Succ xwv40000)) (Neg xwv3000)",fontsize=16,color="burlywood",shape="box"];4670[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];421 -> 4670[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4670 -> 566[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4671[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];421 -> 4671[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4671 -> 567[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 422[label="primEqInt (Neg Zero) (Pos xwv3000)",fontsize=16,color="burlywood",shape="box"];4672[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];422 -> 4672[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4672 -> 568[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4673[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];422 -> 4673[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4673 -> 569[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 423[label="primEqInt (Neg Zero) (Neg xwv3000)",fontsize=16,color="burlywood",shape="box"];4674[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];423 -> 4674[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4674 -> 570[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4675[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];423 -> 4675[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4675 -> 571[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 424 -> 176[label="",style="dashed", color="red", weight=0]; 30.04/13.42 424[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];424 -> 572[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 424 -> 573[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 425 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.42 425[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];425 -> 574[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 425 -> 575[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 426 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.42 426[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];426 -> 576[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 426 -> 577[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 427 -> 179[label="",style="dashed", color="red", weight=0]; 30.04/13.42 427[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];427 -> 578[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 427 -> 579[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 428 -> 180[label="",style="dashed", color="red", weight=0]; 30.04/13.42 428[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];428 -> 580[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 428 -> 581[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 429 -> 181[label="",style="dashed", color="red", weight=0]; 30.04/13.42 429[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];429 -> 582[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 429 -> 583[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 430 -> 182[label="",style="dashed", color="red", weight=0]; 30.04/13.42 430[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];430 -> 584[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 430 -> 585[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 431 -> 183[label="",style="dashed", color="red", weight=0]; 30.04/13.42 431[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];431 -> 586[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 431 -> 587[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 432 -> 184[label="",style="dashed", color="red", weight=0]; 30.04/13.42 432[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];432 -> 588[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 432 -> 589[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 433 -> 185[label="",style="dashed", color="red", weight=0]; 30.04/13.42 433[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];433 -> 590[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 433 -> 591[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 434 -> 186[label="",style="dashed", color="red", weight=0]; 30.04/13.42 434[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];434 -> 592[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 434 -> 593[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 435 -> 187[label="",style="dashed", color="red", weight=0]; 30.04/13.42 435[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];435 -> 594[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 435 -> 595[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 436 -> 188[label="",style="dashed", color="red", weight=0]; 30.04/13.42 436[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];436 -> 596[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 436 -> 597[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 437 -> 189[label="",style="dashed", color="red", weight=0]; 30.04/13.42 437[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];437 -> 598[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 437 -> 599[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 438 -> 176[label="",style="dashed", color="red", weight=0]; 30.04/13.42 438[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];438 -> 600[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 438 -> 601[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 439 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.42 439[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];439 -> 602[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 439 -> 603[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 440 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.42 440[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];440 -> 604[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 440 -> 605[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 441 -> 179[label="",style="dashed", color="red", weight=0]; 30.04/13.42 441[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];441 -> 606[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 441 -> 607[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 442 -> 180[label="",style="dashed", color="red", weight=0]; 30.04/13.42 442[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];442 -> 608[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 442 -> 609[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 443 -> 181[label="",style="dashed", color="red", weight=0]; 30.04/13.42 443[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];443 -> 610[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 443 -> 611[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 444 -> 182[label="",style="dashed", color="red", weight=0]; 30.04/13.42 444[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];444 -> 612[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 444 -> 613[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 445 -> 183[label="",style="dashed", color="red", weight=0]; 30.04/13.42 445[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];445 -> 614[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 445 -> 615[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 446 -> 184[label="",style="dashed", color="red", weight=0]; 30.04/13.42 446[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];446 -> 616[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 446 -> 617[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 447 -> 185[label="",style="dashed", color="red", weight=0]; 30.04/13.42 447[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];447 -> 618[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 447 -> 619[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 448 -> 186[label="",style="dashed", color="red", weight=0]; 30.04/13.42 448[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];448 -> 620[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 448 -> 621[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 449 -> 187[label="",style="dashed", color="red", weight=0]; 30.04/13.42 449[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];449 -> 622[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 449 -> 623[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 450 -> 188[label="",style="dashed", color="red", weight=0]; 30.04/13.42 450[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];450 -> 624[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 450 -> 625[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 451 -> 189[label="",style="dashed", color="red", weight=0]; 30.04/13.42 451[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];451 -> 626[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 451 -> 627[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 452[label="primEqNat xwv4000 xwv3000",fontsize=16,color="burlywood",shape="triangle"];4676[label="xwv4000/Succ xwv40000",fontsize=10,color="white",style="solid",shape="box"];452 -> 4676[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4676 -> 628[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4677[label="xwv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];452 -> 4677[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4677 -> 629[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 645[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4678[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];645 -> 4678[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4678 -> 660[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4679[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];645 -> 4679[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4679 -> 661[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4680[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];645 -> 4680[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4680 -> 662[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4681[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];645 -> 4681[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4681 -> 663[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4682[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];645 -> 4682[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4682 -> 664[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4683[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];645 -> 4683[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4683 -> 665[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4684[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];645 -> 4684[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4684 -> 666[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4685[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];645 -> 4685[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4685 -> 667[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4686[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];645 -> 4686[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4686 -> 668[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4687[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];645 -> 4687[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4687 -> 669[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4688[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];645 -> 4688[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4688 -> 670[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4689[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];645 -> 4689[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4689 -> 671[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4690[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];645 -> 4690[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4690 -> 672[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4691[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];645 -> 4691[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4691 -> 673[label="",style="solid", color="blue", weight=3]; 30.04/13.42 646[label="xwv4001 == xwv3001",fontsize=16,color="blue",shape="box"];4692[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];646 -> 4692[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4692 -> 674[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4693[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];646 -> 4693[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4693 -> 675[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4694[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];646 -> 4694[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4694 -> 676[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4695[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];646 -> 4695[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4695 -> 677[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4696[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];646 -> 4696[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4696 -> 678[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4697[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];646 -> 4697[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4697 -> 679[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4698[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];646 -> 4698[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4698 -> 680[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4699[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];646 -> 4699[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4699 -> 681[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4700[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];646 -> 4700[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4700 -> 682[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4701[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];646 -> 4701[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4701 -> 683[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4702[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];646 -> 4702[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4702 -> 684[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4703[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];646 -> 4703[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4703 -> 685[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4704[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];646 -> 4704[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4704 -> 686[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4705[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];646 -> 4705[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4705 -> 687[label="",style="solid", color="blue", weight=3]; 30.04/13.42 644[label="xwv63 && xwv64",fontsize=16,color="burlywood",shape="triangle"];4706[label="xwv63/False",fontsize=10,color="white",style="solid",shape="box"];644 -> 4706[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4706 -> 688[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4707[label="xwv63/True",fontsize=10,color="white",style="solid",shape="box"];644 -> 4707[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4707 -> 689[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 463 -> 180[label="",style="dashed", color="red", weight=0]; 30.04/13.42 463[label="xwv4000 * xwv3001 == xwv4001 * xwv3000",fontsize=16,color="magenta"];463 -> 690[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 463 -> 691[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 647[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4708[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];647 -> 4708[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4708 -> 692[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4709[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];647 -> 4709[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4709 -> 693[label="",style="solid", color="blue", weight=3]; 30.04/13.42 648[label="xwv4001 == xwv3001",fontsize=16,color="blue",shape="box"];4710[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];648 -> 4710[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4710 -> 694[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4711[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];648 -> 4711[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4711 -> 695[label="",style="solid", color="blue", weight=3]; 30.04/13.42 649[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4712[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 4712[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4712 -> 696[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4713[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 4713[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4713 -> 697[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4714[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 4714[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4714 -> 698[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4715[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 4715[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4715 -> 699[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4716[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 4716[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4716 -> 700[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4717[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 4717[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4717 -> 701[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4718[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 4718[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4718 -> 702[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4719[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 4719[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4719 -> 703[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4720[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 4720[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4720 -> 704[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4721[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 4721[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4721 -> 705[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4722[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 4722[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4722 -> 706[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4723[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 4723[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4723 -> 707[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4724[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 4724[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4724 -> 708[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4725[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];649 -> 4725[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4725 -> 709[label="",style="solid", color="blue", weight=3]; 30.04/13.42 650 -> 644[label="",style="dashed", color="red", weight=0]; 30.04/13.42 650[label="xwv4001 == xwv3001 && xwv4002 == xwv3002",fontsize=16,color="magenta"];650 -> 710[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 650 -> 711[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 475[label="xwv3000",fontsize=16,color="green",shape="box"];476[label="xwv4000",fontsize=16,color="green",shape="box"];651[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4726[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];651 -> 4726[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4726 -> 712[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4727[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];651 -> 4727[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4727 -> 713[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4728[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];651 -> 4728[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4728 -> 714[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4729[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];651 -> 4729[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4729 -> 715[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4730[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];651 -> 4730[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4730 -> 716[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4731[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];651 -> 4731[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4731 -> 717[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4732[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];651 -> 4732[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4732 -> 718[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4733[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];651 -> 4733[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4733 -> 719[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4734[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];651 -> 4734[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4734 -> 720[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4735[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];651 -> 4735[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4735 -> 721[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4736[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];651 -> 4736[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4736 -> 722[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4737[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];651 -> 4737[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4737 -> 723[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4738[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];651 -> 4738[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4738 -> 724[label="",style="solid", color="blue", weight=3]; 30.04/13.42 4739[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];651 -> 4739[label="",style="solid", color="blue", weight=9]; 30.04/13.42 4739 -> 725[label="",style="solid", color="blue", weight=3]; 30.04/13.42 652 -> 189[label="",style="dashed", color="red", weight=0]; 30.04/13.42 652[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];652 -> 726[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 652 -> 727[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2060[label="Just xwv13",fontsize=16,color="green",shape="box"];2061 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.42 2061[label="Just xwv18 == Just xwv13",fontsize=16,color="magenta"];2061 -> 2089[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2061 -> 2090[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2062[label="Just xwv18",fontsize=16,color="green",shape="box"];751[label="error []",fontsize=16,color="red",shape="box"];752 -> 503[label="",style="dashed", color="red", weight=0]; 30.04/13.42 752[label="FiniteMap.glueBal xwv16 xwv17",fontsize=16,color="magenta"];752 -> 983[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 752 -> 984[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 2083[label="Nothing",fontsize=16,color="green",shape="box"];2084[label="Nothing",fontsize=16,color="green",shape="box"];757[label="FiniteMap.glueBal FiniteMap.EmptyFM xwv34",fontsize=16,color="black",shape="box"];757 -> 987[label="",style="solid", color="black", weight=3]; 30.04/13.42 758[label="FiniteMap.glueBal (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) xwv34",fontsize=16,color="burlywood",shape="box"];4740[label="xwv34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];758 -> 4740[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4740 -> 988[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4741[label="xwv34/FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344",fontsize=10,color="white",style="solid",shape="box"];758 -> 4741[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4741 -> 989[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 2168[label="compare0 (Just xwv2800) Nothing True",fontsize=16,color="black",shape="box"];2168 -> 2218[label="",style="solid", color="black", weight=3]; 30.04/13.42 2169[label="xwv2800 <= xwv2900",fontsize=16,color="black",shape="triangle"];2169 -> 2219[label="",style="solid", color="black", weight=3]; 30.04/13.42 2170[label="xwv2800 <= xwv2900",fontsize=16,color="black",shape="triangle"];2170 -> 2220[label="",style="solid", color="black", weight=3]; 30.04/13.42 2171[label="xwv2800 <= xwv2900",fontsize=16,color="burlywood",shape="triangle"];4742[label="xwv2800/False",fontsize=10,color="white",style="solid",shape="box"];2171 -> 4742[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4742 -> 2221[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4743[label="xwv2800/True",fontsize=10,color="white",style="solid",shape="box"];2171 -> 4743[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4743 -> 2222[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 2172[label="xwv2800 <= xwv2900",fontsize=16,color="burlywood",shape="triangle"];4744[label="xwv2800/(xwv28000,xwv28001)",fontsize=10,color="white",style="solid",shape="box"];2172 -> 4744[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4744 -> 2223[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 2173[label="xwv2800 <= xwv2900",fontsize=16,color="burlywood",shape="triangle"];4745[label="xwv2800/Nothing",fontsize=10,color="white",style="solid",shape="box"];2173 -> 4745[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4745 -> 2224[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4746[label="xwv2800/Just xwv28000",fontsize=10,color="white",style="solid",shape="box"];2173 -> 4746[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4746 -> 2225[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 2174[label="xwv2800 <= xwv2900",fontsize=16,color="black",shape="triangle"];2174 -> 2226[label="",style="solid", color="black", weight=3]; 30.04/13.42 2175[label="xwv2800 <= xwv2900",fontsize=16,color="black",shape="triangle"];2175 -> 2227[label="",style="solid", color="black", weight=3]; 30.04/13.42 2176[label="xwv2800 <= xwv2900",fontsize=16,color="black",shape="triangle"];2176 -> 2228[label="",style="solid", color="black", weight=3]; 30.04/13.42 2177[label="xwv2800 <= xwv2900",fontsize=16,color="black",shape="triangle"];2177 -> 2229[label="",style="solid", color="black", weight=3]; 30.04/13.42 2178[label="xwv2800 <= xwv2900",fontsize=16,color="burlywood",shape="triangle"];4747[label="xwv2800/LT",fontsize=10,color="white",style="solid",shape="box"];2178 -> 4747[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4747 -> 2230[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4748[label="xwv2800/EQ",fontsize=10,color="white",style="solid",shape="box"];2178 -> 4748[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4748 -> 2231[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4749[label="xwv2800/GT",fontsize=10,color="white",style="solid",shape="box"];2178 -> 4749[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4749 -> 2232[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 2179[label="xwv2800 <= xwv2900",fontsize=16,color="burlywood",shape="triangle"];4750[label="xwv2800/(xwv28000,xwv28001,xwv28002)",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4750[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4750 -> 2233[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 2180[label="xwv2800 <= xwv2900",fontsize=16,color="burlywood",shape="triangle"];4751[label="xwv2800/Left xwv28000",fontsize=10,color="white",style="solid",shape="box"];2180 -> 4751[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4751 -> 2234[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4752[label="xwv2800/Right xwv28000",fontsize=10,color="white",style="solid",shape="box"];2180 -> 4752[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4752 -> 2235[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 2181[label="xwv2800 <= xwv2900",fontsize=16,color="black",shape="triangle"];2181 -> 2236[label="",style="solid", color="black", weight=3]; 30.04/13.42 2182[label="xwv2800 <= xwv2900",fontsize=16,color="black",shape="triangle"];2182 -> 2237[label="",style="solid", color="black", weight=3]; 30.04/13.42 2183[label="compare1 (Just xwv125) (Just xwv126) False",fontsize=16,color="black",shape="box"];2183 -> 2238[label="",style="solid", color="black", weight=3]; 30.04/13.42 2184[label="compare1 (Just xwv125) (Just xwv126) True",fontsize=16,color="black",shape="box"];2184 -> 2239[label="",style="solid", color="black", weight=3]; 30.04/13.42 2085[label="Just xwv300",fontsize=16,color="green",shape="box"];2086[label="Nothing",fontsize=16,color="green",shape="box"];3664[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv253",fontsize=16,color="black",shape="triangle"];3664 -> 3666[label="",style="solid", color="black", weight=3]; 30.04/13.42 3663[label="primPlusInt xwv257 (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv253)",fontsize=16,color="burlywood",shape="triangle"];4753[label="xwv257/Pos xwv2570",fontsize=10,color="white",style="solid",shape="box"];3663 -> 4753[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4753 -> 3667[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4754[label="xwv257/Neg xwv2570",fontsize=10,color="white",style="solid",shape="box"];3663 -> 4754[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4754 -> 3668[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 1578[label="LT",fontsize=16,color="green",shape="box"];1579 -> 1178[label="",style="dashed", color="red", weight=0]; 30.04/13.42 1579[label="compare xwv280 xwv290",fontsize=16,color="magenta"];1579 -> 1775[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 1579 -> 1776[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3661 -> 1504[label="",style="dashed", color="red", weight=0]; 30.04/13.42 3661[label="FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv253 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv253",fontsize=16,color="magenta"];3661 -> 3669[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3661 -> 3670[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 3660[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv340 xwv341 xwv344 xwv253 xwv340 xwv341 xwv253 xwv344 xwv255",fontsize=16,color="burlywood",shape="triangle"];4755[label="xwv255/False",fontsize=10,color="white",style="solid",shape="box"];3660 -> 4755[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4755 -> 3671[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4756[label="xwv255/True",fontsize=10,color="white",style="solid",shape="box"];3660 -> 4756[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4756 -> 3672[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4356[label="xwv253",fontsize=16,color="green",shape="box"];4357[label="xwv341",fontsize=16,color="green",shape="box"];4358[label="xwv340",fontsize=16,color="green",shape="box"];4359[label="xwv344",fontsize=16,color="green",shape="box"];4360[label="Zero",fontsize=16,color="green",shape="box"];4355[label="FiniteMap.mkBranch (Pos (Succ xwv370)) xwv371 xwv372 xwv373 xwv374",fontsize=16,color="black",shape="triangle"];4355 -> 4411[label="",style="solid", color="black", weight=3]; 30.04/13.42 2087[label="Nothing",fontsize=16,color="green",shape="box"];2088[label="Just xwv400",fontsize=16,color="green",shape="box"];528[label="xwv3000",fontsize=16,color="green",shape="box"];529[label="xwv4000",fontsize=16,color="green",shape="box"];530[label="xwv3000",fontsize=16,color="green",shape="box"];531[label="xwv4000",fontsize=16,color="green",shape="box"];532[label="xwv3000",fontsize=16,color="green",shape="box"];533[label="xwv4000",fontsize=16,color="green",shape="box"];534[label="xwv3000",fontsize=16,color="green",shape="box"];535[label="xwv4000",fontsize=16,color="green",shape="box"];536[label="xwv3000",fontsize=16,color="green",shape="box"];537[label="xwv4000",fontsize=16,color="green",shape="box"];538[label="xwv3000",fontsize=16,color="green",shape="box"];539[label="xwv4000",fontsize=16,color="green",shape="box"];540[label="xwv3000",fontsize=16,color="green",shape="box"];541[label="xwv4000",fontsize=16,color="green",shape="box"];542[label="xwv3000",fontsize=16,color="green",shape="box"];543[label="xwv4000",fontsize=16,color="green",shape="box"];544[label="xwv3000",fontsize=16,color="green",shape="box"];545[label="xwv4000",fontsize=16,color="green",shape="box"];546[label="xwv3000",fontsize=16,color="green",shape="box"];547[label="xwv4000",fontsize=16,color="green",shape="box"];548[label="xwv3000",fontsize=16,color="green",shape="box"];549[label="xwv4000",fontsize=16,color="green",shape="box"];550[label="xwv3000",fontsize=16,color="green",shape="box"];551[label="xwv4000",fontsize=16,color="green",shape="box"];552[label="xwv3000",fontsize=16,color="green",shape="box"];553[label="xwv4000",fontsize=16,color="green",shape="box"];554[label="xwv3000",fontsize=16,color="green",shape="box"];555[label="xwv4000",fontsize=16,color="green",shape="box"];556[label="xwv4001 * xwv3000",fontsize=16,color="black",shape="triangle"];556 -> 769[label="",style="solid", color="black", weight=3]; 30.04/13.42 557 -> 556[label="",style="dashed", color="red", weight=0]; 30.04/13.42 557[label="xwv4000 * xwv3001",fontsize=16,color="magenta"];557 -> 770[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 557 -> 771[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 558[label="primEqInt (Pos (Succ xwv40000)) (Pos (Succ xwv30000))",fontsize=16,color="black",shape="box"];558 -> 772[label="",style="solid", color="black", weight=3]; 30.04/13.42 559[label="primEqInt (Pos (Succ xwv40000)) (Pos Zero)",fontsize=16,color="black",shape="box"];559 -> 773[label="",style="solid", color="black", weight=3]; 30.04/13.42 560[label="False",fontsize=16,color="green",shape="box"];561[label="primEqInt (Pos Zero) (Pos (Succ xwv30000))",fontsize=16,color="black",shape="box"];561 -> 774[label="",style="solid", color="black", weight=3]; 30.04/13.42 562[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];562 -> 775[label="",style="solid", color="black", weight=3]; 30.04/13.42 563[label="primEqInt (Pos Zero) (Neg (Succ xwv30000))",fontsize=16,color="black",shape="box"];563 -> 776[label="",style="solid", color="black", weight=3]; 30.04/13.42 564[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];564 -> 777[label="",style="solid", color="black", weight=3]; 30.04/13.42 565[label="False",fontsize=16,color="green",shape="box"];566[label="primEqInt (Neg (Succ xwv40000)) (Neg (Succ xwv30000))",fontsize=16,color="black",shape="box"];566 -> 778[label="",style="solid", color="black", weight=3]; 30.04/13.42 567[label="primEqInt (Neg (Succ xwv40000)) (Neg Zero)",fontsize=16,color="black",shape="box"];567 -> 779[label="",style="solid", color="black", weight=3]; 30.04/13.42 568[label="primEqInt (Neg Zero) (Pos (Succ xwv30000))",fontsize=16,color="black",shape="box"];568 -> 780[label="",style="solid", color="black", weight=3]; 30.04/13.42 569[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];569 -> 781[label="",style="solid", color="black", weight=3]; 30.04/13.42 570[label="primEqInt (Neg Zero) (Neg (Succ xwv30000))",fontsize=16,color="black",shape="box"];570 -> 782[label="",style="solid", color="black", weight=3]; 30.04/13.42 571[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];571 -> 783[label="",style="solid", color="black", weight=3]; 30.04/13.42 572[label="xwv3000",fontsize=16,color="green",shape="box"];573[label="xwv4000",fontsize=16,color="green",shape="box"];574[label="xwv3000",fontsize=16,color="green",shape="box"];575[label="xwv4000",fontsize=16,color="green",shape="box"];576[label="xwv3000",fontsize=16,color="green",shape="box"];577[label="xwv4000",fontsize=16,color="green",shape="box"];578[label="xwv3000",fontsize=16,color="green",shape="box"];579[label="xwv4000",fontsize=16,color="green",shape="box"];580[label="xwv3000",fontsize=16,color="green",shape="box"];581[label="xwv4000",fontsize=16,color="green",shape="box"];582[label="xwv3000",fontsize=16,color="green",shape="box"];583[label="xwv4000",fontsize=16,color="green",shape="box"];584[label="xwv3000",fontsize=16,color="green",shape="box"];585[label="xwv4000",fontsize=16,color="green",shape="box"];586[label="xwv3000",fontsize=16,color="green",shape="box"];587[label="xwv4000",fontsize=16,color="green",shape="box"];588[label="xwv3000",fontsize=16,color="green",shape="box"];589[label="xwv4000",fontsize=16,color="green",shape="box"];590[label="xwv3000",fontsize=16,color="green",shape="box"];591[label="xwv4000",fontsize=16,color="green",shape="box"];592[label="xwv3000",fontsize=16,color="green",shape="box"];593[label="xwv4000",fontsize=16,color="green",shape="box"];594[label="xwv3000",fontsize=16,color="green",shape="box"];595[label="xwv4000",fontsize=16,color="green",shape="box"];596[label="xwv3000",fontsize=16,color="green",shape="box"];597[label="xwv4000",fontsize=16,color="green",shape="box"];598[label="xwv3000",fontsize=16,color="green",shape="box"];599[label="xwv4000",fontsize=16,color="green",shape="box"];600[label="xwv3000",fontsize=16,color="green",shape="box"];601[label="xwv4000",fontsize=16,color="green",shape="box"];602[label="xwv3000",fontsize=16,color="green",shape="box"];603[label="xwv4000",fontsize=16,color="green",shape="box"];604[label="xwv3000",fontsize=16,color="green",shape="box"];605[label="xwv4000",fontsize=16,color="green",shape="box"];606[label="xwv3000",fontsize=16,color="green",shape="box"];607[label="xwv4000",fontsize=16,color="green",shape="box"];608[label="xwv3000",fontsize=16,color="green",shape="box"];609[label="xwv4000",fontsize=16,color="green",shape="box"];610[label="xwv3000",fontsize=16,color="green",shape="box"];611[label="xwv4000",fontsize=16,color="green",shape="box"];612[label="xwv3000",fontsize=16,color="green",shape="box"];613[label="xwv4000",fontsize=16,color="green",shape="box"];614[label="xwv3000",fontsize=16,color="green",shape="box"];615[label="xwv4000",fontsize=16,color="green",shape="box"];616[label="xwv3000",fontsize=16,color="green",shape="box"];617[label="xwv4000",fontsize=16,color="green",shape="box"];618[label="xwv3000",fontsize=16,color="green",shape="box"];619[label="xwv4000",fontsize=16,color="green",shape="box"];620[label="xwv3000",fontsize=16,color="green",shape="box"];621[label="xwv4000",fontsize=16,color="green",shape="box"];622[label="xwv3000",fontsize=16,color="green",shape="box"];623[label="xwv4000",fontsize=16,color="green",shape="box"];624[label="xwv3000",fontsize=16,color="green",shape="box"];625[label="xwv4000",fontsize=16,color="green",shape="box"];626[label="xwv3000",fontsize=16,color="green",shape="box"];627[label="xwv4000",fontsize=16,color="green",shape="box"];628[label="primEqNat (Succ xwv40000) xwv3000",fontsize=16,color="burlywood",shape="box"];4757[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];628 -> 4757[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4757 -> 784[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4758[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];628 -> 4758[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4758 -> 785[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 629[label="primEqNat Zero xwv3000",fontsize=16,color="burlywood",shape="box"];4759[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];629 -> 4759[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4759 -> 786[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 4760[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];629 -> 4760[label="",style="solid", color="burlywood", weight=9]; 30.04/13.42 4760 -> 787[label="",style="solid", color="burlywood", weight=3]; 30.04/13.42 660 -> 176[label="",style="dashed", color="red", weight=0]; 30.04/13.42 660[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];660 -> 795[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 660 -> 796[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 661 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.42 661[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];661 -> 797[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 661 -> 798[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 662 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.42 662[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];662 -> 799[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 662 -> 800[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 663 -> 179[label="",style="dashed", color="red", weight=0]; 30.04/13.42 663[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];663 -> 801[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 663 -> 802[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 664 -> 180[label="",style="dashed", color="red", weight=0]; 30.04/13.42 664[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];664 -> 803[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 664 -> 804[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 665 -> 181[label="",style="dashed", color="red", weight=0]; 30.04/13.42 665[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];665 -> 805[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 665 -> 806[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 666 -> 182[label="",style="dashed", color="red", weight=0]; 30.04/13.42 666[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];666 -> 807[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 666 -> 808[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 667 -> 183[label="",style="dashed", color="red", weight=0]; 30.04/13.42 667[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];667 -> 809[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 667 -> 810[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 668 -> 184[label="",style="dashed", color="red", weight=0]; 30.04/13.42 668[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];668 -> 811[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 668 -> 812[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 669 -> 185[label="",style="dashed", color="red", weight=0]; 30.04/13.42 669[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];669 -> 813[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 669 -> 814[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 670 -> 186[label="",style="dashed", color="red", weight=0]; 30.04/13.42 670[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];670 -> 815[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 670 -> 816[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 671 -> 187[label="",style="dashed", color="red", weight=0]; 30.04/13.42 671[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];671 -> 817[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 671 -> 818[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 672 -> 188[label="",style="dashed", color="red", weight=0]; 30.04/13.42 672[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];672 -> 819[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 672 -> 820[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 673 -> 189[label="",style="dashed", color="red", weight=0]; 30.04/13.42 673[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];673 -> 821[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 673 -> 822[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 674 -> 176[label="",style="dashed", color="red", weight=0]; 30.04/13.42 674[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];674 -> 823[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 674 -> 824[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 675 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.42 675[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];675 -> 825[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 675 -> 826[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 676 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.42 676[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];676 -> 827[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 676 -> 828[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 677 -> 179[label="",style="dashed", color="red", weight=0]; 30.04/13.42 677[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];677 -> 829[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 677 -> 830[label="",style="dashed", color="magenta", weight=3]; 30.04/13.42 678 -> 180[label="",style="dashed", color="red", weight=0]; 30.04/13.42 678[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];678 -> 831[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 678 -> 832[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 679 -> 181[label="",style="dashed", color="red", weight=0]; 30.04/13.43 679[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];679 -> 833[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 679 -> 834[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 680 -> 182[label="",style="dashed", color="red", weight=0]; 30.04/13.43 680[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];680 -> 835[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 680 -> 836[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 681 -> 183[label="",style="dashed", color="red", weight=0]; 30.04/13.43 681[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];681 -> 837[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 681 -> 838[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 682 -> 184[label="",style="dashed", color="red", weight=0]; 30.04/13.43 682[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];682 -> 839[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 682 -> 840[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 683 -> 185[label="",style="dashed", color="red", weight=0]; 30.04/13.43 683[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];683 -> 841[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 683 -> 842[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 684 -> 186[label="",style="dashed", color="red", weight=0]; 30.04/13.43 684[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];684 -> 843[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 684 -> 844[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 685 -> 187[label="",style="dashed", color="red", weight=0]; 30.04/13.43 685[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];685 -> 845[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 685 -> 846[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 686 -> 188[label="",style="dashed", color="red", weight=0]; 30.04/13.43 686[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];686 -> 847[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 686 -> 848[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 687 -> 189[label="",style="dashed", color="red", weight=0]; 30.04/13.43 687[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];687 -> 849[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 687 -> 850[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 688[label="False && xwv64",fontsize=16,color="black",shape="box"];688 -> 851[label="",style="solid", color="black", weight=3]; 30.04/13.43 689[label="True && xwv64",fontsize=16,color="black",shape="box"];689 -> 852[label="",style="solid", color="black", weight=3]; 30.04/13.43 690 -> 556[label="",style="dashed", color="red", weight=0]; 30.04/13.43 690[label="xwv4001 * xwv3000",fontsize=16,color="magenta"];690 -> 853[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 690 -> 854[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 691 -> 556[label="",style="dashed", color="red", weight=0]; 30.04/13.43 691[label="xwv4000 * xwv3001",fontsize=16,color="magenta"];691 -> 855[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 691 -> 856[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 692 -> 180[label="",style="dashed", color="red", weight=0]; 30.04/13.43 692[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];692 -> 857[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 692 -> 858[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 693 -> 188[label="",style="dashed", color="red", weight=0]; 30.04/13.43 693[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];693 -> 859[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 693 -> 860[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 694 -> 180[label="",style="dashed", color="red", weight=0]; 30.04/13.43 694[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];694 -> 861[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 694 -> 862[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 695 -> 188[label="",style="dashed", color="red", weight=0]; 30.04/13.43 695[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];695 -> 863[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 695 -> 864[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 696 -> 176[label="",style="dashed", color="red", weight=0]; 30.04/13.43 696[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];696 -> 865[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 696 -> 866[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 697 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.43 697[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];697 -> 867[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 697 -> 868[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 698 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.43 698[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];698 -> 869[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 698 -> 870[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 699 -> 179[label="",style="dashed", color="red", weight=0]; 30.04/13.43 699[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];699 -> 871[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 699 -> 872[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 700 -> 180[label="",style="dashed", color="red", weight=0]; 30.04/13.43 700[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];700 -> 873[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 700 -> 874[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 701 -> 181[label="",style="dashed", color="red", weight=0]; 30.04/13.43 701[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];701 -> 875[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 701 -> 876[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 702 -> 182[label="",style="dashed", color="red", weight=0]; 30.04/13.43 702[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];702 -> 877[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 702 -> 878[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 703 -> 183[label="",style="dashed", color="red", weight=0]; 30.04/13.43 703[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];703 -> 879[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 703 -> 880[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 704 -> 184[label="",style="dashed", color="red", weight=0]; 30.04/13.43 704[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];704 -> 881[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 704 -> 882[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 705 -> 185[label="",style="dashed", color="red", weight=0]; 30.04/13.43 705[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];705 -> 883[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 705 -> 884[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 706 -> 186[label="",style="dashed", color="red", weight=0]; 30.04/13.43 706[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];706 -> 885[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 706 -> 886[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 707 -> 187[label="",style="dashed", color="red", weight=0]; 30.04/13.43 707[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];707 -> 887[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 707 -> 888[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 708 -> 188[label="",style="dashed", color="red", weight=0]; 30.04/13.43 708[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];708 -> 889[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 708 -> 890[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 709 -> 189[label="",style="dashed", color="red", weight=0]; 30.04/13.43 709[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];709 -> 891[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 709 -> 892[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 710[label="xwv4001 == xwv3001",fontsize=16,color="blue",shape="box"];4761[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];710 -> 4761[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4761 -> 893[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4762[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];710 -> 4762[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4762 -> 894[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4763[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];710 -> 4763[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4763 -> 895[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4764[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];710 -> 4764[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4764 -> 896[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4765[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];710 -> 4765[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4765 -> 897[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4766[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];710 -> 4766[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4766 -> 898[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4767[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];710 -> 4767[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4767 -> 899[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4768[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];710 -> 4768[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4768 -> 900[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4769[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];710 -> 4769[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4769 -> 901[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4770[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];710 -> 4770[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4770 -> 902[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4771[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];710 -> 4771[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4771 -> 903[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4772[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];710 -> 4772[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4772 -> 904[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4773[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];710 -> 4773[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4773 -> 905[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4774[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];710 -> 4774[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4774 -> 906[label="",style="solid", color="blue", weight=3]; 30.04/13.43 711[label="xwv4002 == xwv3002",fontsize=16,color="blue",shape="box"];4775[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];711 -> 4775[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4775 -> 907[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4776[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];711 -> 4776[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4776 -> 908[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4777[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];711 -> 4777[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4777 -> 909[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4778[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];711 -> 4778[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4778 -> 910[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4779[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];711 -> 4779[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4779 -> 911[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4780[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];711 -> 4780[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4780 -> 912[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4781[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];711 -> 4781[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4781 -> 913[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4782[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];711 -> 4782[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4782 -> 914[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4783[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];711 -> 4783[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4783 -> 915[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4784[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];711 -> 4784[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4784 -> 916[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4785[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];711 -> 4785[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4785 -> 917[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4786[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];711 -> 4786[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4786 -> 918[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4787[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];711 -> 4787[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4787 -> 919[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4788[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];711 -> 4788[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4788 -> 920[label="",style="solid", color="blue", weight=3]; 30.04/13.43 712 -> 176[label="",style="dashed", color="red", weight=0]; 30.04/13.43 712[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];712 -> 921[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 712 -> 922[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 713 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.43 713[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];713 -> 923[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 713 -> 924[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 714 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.43 714[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];714 -> 925[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 714 -> 926[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 715 -> 179[label="",style="dashed", color="red", weight=0]; 30.04/13.43 715[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];715 -> 927[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 715 -> 928[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 716 -> 180[label="",style="dashed", color="red", weight=0]; 30.04/13.43 716[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];716 -> 929[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 716 -> 930[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 717 -> 181[label="",style="dashed", color="red", weight=0]; 30.04/13.43 717[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];717 -> 931[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 717 -> 932[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 718 -> 182[label="",style="dashed", color="red", weight=0]; 30.04/13.43 718[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];718 -> 933[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 718 -> 934[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 719 -> 183[label="",style="dashed", color="red", weight=0]; 30.04/13.43 719[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];719 -> 935[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 719 -> 936[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 720 -> 184[label="",style="dashed", color="red", weight=0]; 30.04/13.43 720[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];720 -> 937[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 720 -> 938[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 721 -> 185[label="",style="dashed", color="red", weight=0]; 30.04/13.43 721[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];721 -> 939[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 721 -> 940[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 722 -> 186[label="",style="dashed", color="red", weight=0]; 30.04/13.43 722[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];722 -> 941[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 722 -> 942[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 723 -> 187[label="",style="dashed", color="red", weight=0]; 30.04/13.43 723[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];723 -> 943[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 723 -> 944[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 724 -> 188[label="",style="dashed", color="red", weight=0]; 30.04/13.43 724[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];724 -> 945[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 724 -> 946[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 725 -> 189[label="",style="dashed", color="red", weight=0]; 30.04/13.43 725[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];725 -> 947[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 725 -> 948[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 726[label="xwv3001",fontsize=16,color="green",shape="box"];727[label="xwv4001",fontsize=16,color="green",shape="box"];2089[label="Just xwv13",fontsize=16,color="green",shape="box"];2090[label="Just xwv18",fontsize=16,color="green",shape="box"];983[label="xwv16",fontsize=16,color="green",shape="box"];984[label="xwv17",fontsize=16,color="green",shape="box"];987[label="FiniteMap.glueBal4 FiniteMap.EmptyFM xwv34",fontsize=16,color="black",shape="box"];987 -> 1126[label="",style="solid", color="black", weight=3]; 30.04/13.43 988[label="FiniteMap.glueBal (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];988 -> 1127[label="",style="solid", color="black", weight=3]; 30.04/13.43 989[label="FiniteMap.glueBal (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];989 -> 1128[label="",style="solid", color="black", weight=3]; 30.04/13.43 2218[label="GT",fontsize=16,color="green",shape="box"];2219 -> 2244[label="",style="dashed", color="red", weight=0]; 30.04/13.43 2219[label="compare xwv2800 xwv2900 /= GT",fontsize=16,color="magenta"];2219 -> 2245[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 2220 -> 2244[label="",style="dashed", color="red", weight=0]; 30.04/13.43 2220[label="compare xwv2800 xwv2900 /= GT",fontsize=16,color="magenta"];2220 -> 2246[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 2221[label="False <= xwv2900",fontsize=16,color="burlywood",shape="box"];4789[label="xwv2900/False",fontsize=10,color="white",style="solid",shape="box"];2221 -> 4789[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4789 -> 2253[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4790[label="xwv2900/True",fontsize=10,color="white",style="solid",shape="box"];2221 -> 4790[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4790 -> 2254[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 2222[label="True <= xwv2900",fontsize=16,color="burlywood",shape="box"];4791[label="xwv2900/False",fontsize=10,color="white",style="solid",shape="box"];2222 -> 4791[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4791 -> 2255[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4792[label="xwv2900/True",fontsize=10,color="white",style="solid",shape="box"];2222 -> 4792[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4792 -> 2256[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 2223[label="(xwv28000,xwv28001) <= xwv2900",fontsize=16,color="burlywood",shape="box"];4793[label="xwv2900/(xwv29000,xwv29001)",fontsize=10,color="white",style="solid",shape="box"];2223 -> 4793[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4793 -> 2257[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 2224[label="Nothing <= xwv2900",fontsize=16,color="burlywood",shape="box"];4794[label="xwv2900/Nothing",fontsize=10,color="white",style="solid",shape="box"];2224 -> 4794[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4794 -> 2258[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4795[label="xwv2900/Just xwv29000",fontsize=10,color="white",style="solid",shape="box"];2224 -> 4795[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4795 -> 2259[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 2225[label="Just xwv28000 <= xwv2900",fontsize=16,color="burlywood",shape="box"];4796[label="xwv2900/Nothing",fontsize=10,color="white",style="solid",shape="box"];2225 -> 4796[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4796 -> 2260[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4797[label="xwv2900/Just xwv29000",fontsize=10,color="white",style="solid",shape="box"];2225 -> 4797[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4797 -> 2261[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 2226 -> 2244[label="",style="dashed", color="red", weight=0]; 30.04/13.43 2226[label="compare xwv2800 xwv2900 /= GT",fontsize=16,color="magenta"];2226 -> 2247[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 2227 -> 2244[label="",style="dashed", color="red", weight=0]; 30.04/13.43 2227[label="compare xwv2800 xwv2900 /= GT",fontsize=16,color="magenta"];2227 -> 2248[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 2228 -> 2244[label="",style="dashed", color="red", weight=0]; 30.04/13.43 2228[label="compare xwv2800 xwv2900 /= GT",fontsize=16,color="magenta"];2228 -> 2249[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 2229 -> 2244[label="",style="dashed", color="red", weight=0]; 30.04/13.43 2229[label="compare xwv2800 xwv2900 /= GT",fontsize=16,color="magenta"];2229 -> 2250[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 2230[label="LT <= xwv2900",fontsize=16,color="burlywood",shape="box"];4798[label="xwv2900/LT",fontsize=10,color="white",style="solid",shape="box"];2230 -> 4798[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4798 -> 2262[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4799[label="xwv2900/EQ",fontsize=10,color="white",style="solid",shape="box"];2230 -> 4799[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4799 -> 2263[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4800[label="xwv2900/GT",fontsize=10,color="white",style="solid",shape="box"];2230 -> 4800[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4800 -> 2264[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 2231[label="EQ <= xwv2900",fontsize=16,color="burlywood",shape="box"];4801[label="xwv2900/LT",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4801[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4801 -> 2265[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4802[label="xwv2900/EQ",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4802[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4802 -> 2266[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4803[label="xwv2900/GT",fontsize=10,color="white",style="solid",shape="box"];2231 -> 4803[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4803 -> 2267[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 2232[label="GT <= xwv2900",fontsize=16,color="burlywood",shape="box"];4804[label="xwv2900/LT",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4804[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4804 -> 2268[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4805[label="xwv2900/EQ",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4805[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4805 -> 2269[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4806[label="xwv2900/GT",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4806[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4806 -> 2270[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 2233[label="(xwv28000,xwv28001,xwv28002) <= xwv2900",fontsize=16,color="burlywood",shape="box"];4807[label="xwv2900/(xwv29000,xwv29001,xwv29002)",fontsize=10,color="white",style="solid",shape="box"];2233 -> 4807[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4807 -> 2271[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 2234[label="Left xwv28000 <= xwv2900",fontsize=16,color="burlywood",shape="box"];4808[label="xwv2900/Left xwv29000",fontsize=10,color="white",style="solid",shape="box"];2234 -> 4808[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4808 -> 2272[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4809[label="xwv2900/Right xwv29000",fontsize=10,color="white",style="solid",shape="box"];2234 -> 4809[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4809 -> 2273[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 2235[label="Right xwv28000 <= xwv2900",fontsize=16,color="burlywood",shape="box"];4810[label="xwv2900/Left xwv29000",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4810[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4810 -> 2274[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4811[label="xwv2900/Right xwv29000",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4811[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4811 -> 2275[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 2236 -> 2244[label="",style="dashed", color="red", weight=0]; 30.04/13.43 2236[label="compare xwv2800 xwv2900 /= GT",fontsize=16,color="magenta"];2236 -> 2251[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 2237 -> 2244[label="",style="dashed", color="red", weight=0]; 30.04/13.43 2237[label="compare xwv2800 xwv2900 /= GT",fontsize=16,color="magenta"];2237 -> 2252[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 2238[label="compare0 (Just xwv125) (Just xwv126) otherwise",fontsize=16,color="black",shape="box"];2238 -> 2276[label="",style="solid", color="black", weight=3]; 30.04/13.43 2239[label="LT",fontsize=16,color="green",shape="box"];3666 -> 1236[label="",style="dashed", color="red", weight=0]; 30.04/13.43 3666[label="FiniteMap.sizeFM xwv253",fontsize=16,color="magenta"];3666 -> 3686[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 3667[label="primPlusInt (Pos xwv2570) (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv253)",fontsize=16,color="black",shape="box"];3667 -> 3687[label="",style="solid", color="black", weight=3]; 30.04/13.43 3668[label="primPlusInt (Neg xwv2570) (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv253)",fontsize=16,color="black",shape="box"];3668 -> 3688[label="",style="solid", color="black", weight=3]; 30.04/13.43 1775[label="xwv280",fontsize=16,color="green",shape="box"];1776[label="xwv290",fontsize=16,color="green",shape="box"];1178[label="compare xwv28 xwv29",fontsize=16,color="black",shape="triangle"];1178 -> 1261[label="",style="solid", color="black", weight=3]; 30.04/13.43 3669 -> 556[label="",style="dashed", color="red", weight=0]; 30.04/13.43 3669[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv253",fontsize=16,color="magenta"];3669 -> 3689[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 3669 -> 3690[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 3670[label="FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv253",fontsize=16,color="black",shape="triangle"];3670 -> 3691[label="",style="solid", color="black", weight=3]; 30.04/13.43 1504[label="xwv91 > xwv90",fontsize=16,color="black",shape="triangle"];1504 -> 1518[label="",style="solid", color="black", weight=3]; 30.04/13.43 3671[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv340 xwv341 xwv344 xwv253 xwv340 xwv341 xwv253 xwv344 False",fontsize=16,color="black",shape="box"];3671 -> 3692[label="",style="solid", color="black", weight=3]; 30.04/13.43 3672[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv340 xwv341 xwv344 xwv253 xwv340 xwv341 xwv253 xwv344 True",fontsize=16,color="black",shape="box"];3672 -> 3693[label="",style="solid", color="black", weight=3]; 30.04/13.43 4411[label="FiniteMap.mkBranchResult xwv371 xwv372 xwv374 xwv373",fontsize=16,color="black",shape="box"];4411 -> 4450[label="",style="solid", color="black", weight=3]; 30.04/13.43 769[label="primMulInt xwv4001 xwv3000",fontsize=16,color="burlywood",shape="triangle"];4812[label="xwv4001/Pos xwv40010",fontsize=10,color="white",style="solid",shape="box"];769 -> 4812[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4812 -> 1030[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4813[label="xwv4001/Neg xwv40010",fontsize=10,color="white",style="solid",shape="box"];769 -> 4813[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4813 -> 1031[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 770[label="xwv3001",fontsize=16,color="green",shape="box"];771[label="xwv4000",fontsize=16,color="green",shape="box"];772 -> 452[label="",style="dashed", color="red", weight=0]; 30.04/13.43 772[label="primEqNat xwv40000 xwv30000",fontsize=16,color="magenta"];772 -> 1032[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 772 -> 1033[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 773[label="False",fontsize=16,color="green",shape="box"];774[label="False",fontsize=16,color="green",shape="box"];775[label="True",fontsize=16,color="green",shape="box"];776[label="False",fontsize=16,color="green",shape="box"];777[label="True",fontsize=16,color="green",shape="box"];778 -> 452[label="",style="dashed", color="red", weight=0]; 30.04/13.43 778[label="primEqNat xwv40000 xwv30000",fontsize=16,color="magenta"];778 -> 1034[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 778 -> 1035[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 779[label="False",fontsize=16,color="green",shape="box"];780[label="False",fontsize=16,color="green",shape="box"];781[label="True",fontsize=16,color="green",shape="box"];782[label="False",fontsize=16,color="green",shape="box"];783[label="True",fontsize=16,color="green",shape="box"];784[label="primEqNat (Succ xwv40000) (Succ xwv30000)",fontsize=16,color="black",shape="box"];784 -> 1036[label="",style="solid", color="black", weight=3]; 30.04/13.43 785[label="primEqNat (Succ xwv40000) Zero",fontsize=16,color="black",shape="box"];785 -> 1037[label="",style="solid", color="black", weight=3]; 30.04/13.43 786[label="primEqNat Zero (Succ xwv30000)",fontsize=16,color="black",shape="box"];786 -> 1038[label="",style="solid", color="black", weight=3]; 30.04/13.43 787[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];787 -> 1039[label="",style="solid", color="black", weight=3]; 30.04/13.43 795[label="xwv3000",fontsize=16,color="green",shape="box"];796[label="xwv4000",fontsize=16,color="green",shape="box"];797[label="xwv3000",fontsize=16,color="green",shape="box"];798[label="xwv4000",fontsize=16,color="green",shape="box"];799[label="xwv3000",fontsize=16,color="green",shape="box"];800[label="xwv4000",fontsize=16,color="green",shape="box"];801[label="xwv3000",fontsize=16,color="green",shape="box"];802[label="xwv4000",fontsize=16,color="green",shape="box"];803[label="xwv3000",fontsize=16,color="green",shape="box"];804[label="xwv4000",fontsize=16,color="green",shape="box"];805[label="xwv3000",fontsize=16,color="green",shape="box"];806[label="xwv4000",fontsize=16,color="green",shape="box"];807[label="xwv3000",fontsize=16,color="green",shape="box"];808[label="xwv4000",fontsize=16,color="green",shape="box"];809[label="xwv3000",fontsize=16,color="green",shape="box"];810[label="xwv4000",fontsize=16,color="green",shape="box"];811[label="xwv3000",fontsize=16,color="green",shape="box"];812[label="xwv4000",fontsize=16,color="green",shape="box"];813[label="xwv3000",fontsize=16,color="green",shape="box"];814[label="xwv4000",fontsize=16,color="green",shape="box"];815[label="xwv3000",fontsize=16,color="green",shape="box"];816[label="xwv4000",fontsize=16,color="green",shape="box"];817[label="xwv3000",fontsize=16,color="green",shape="box"];818[label="xwv4000",fontsize=16,color="green",shape="box"];819[label="xwv3000",fontsize=16,color="green",shape="box"];820[label="xwv4000",fontsize=16,color="green",shape="box"];821[label="xwv3000",fontsize=16,color="green",shape="box"];822[label="xwv4000",fontsize=16,color="green",shape="box"];823[label="xwv3001",fontsize=16,color="green",shape="box"];824[label="xwv4001",fontsize=16,color="green",shape="box"];825[label="xwv3001",fontsize=16,color="green",shape="box"];826[label="xwv4001",fontsize=16,color="green",shape="box"];827[label="xwv3001",fontsize=16,color="green",shape="box"];828[label="xwv4001",fontsize=16,color="green",shape="box"];829[label="xwv3001",fontsize=16,color="green",shape="box"];830[label="xwv4001",fontsize=16,color="green",shape="box"];831[label="xwv3001",fontsize=16,color="green",shape="box"];832[label="xwv4001",fontsize=16,color="green",shape="box"];833[label="xwv3001",fontsize=16,color="green",shape="box"];834[label="xwv4001",fontsize=16,color="green",shape="box"];835[label="xwv3001",fontsize=16,color="green",shape="box"];836[label="xwv4001",fontsize=16,color="green",shape="box"];837[label="xwv3001",fontsize=16,color="green",shape="box"];838[label="xwv4001",fontsize=16,color="green",shape="box"];839[label="xwv3001",fontsize=16,color="green",shape="box"];840[label="xwv4001",fontsize=16,color="green",shape="box"];841[label="xwv3001",fontsize=16,color="green",shape="box"];842[label="xwv4001",fontsize=16,color="green",shape="box"];843[label="xwv3001",fontsize=16,color="green",shape="box"];844[label="xwv4001",fontsize=16,color="green",shape="box"];845[label="xwv3001",fontsize=16,color="green",shape="box"];846[label="xwv4001",fontsize=16,color="green",shape="box"];847[label="xwv3001",fontsize=16,color="green",shape="box"];848[label="xwv4001",fontsize=16,color="green",shape="box"];849[label="xwv3001",fontsize=16,color="green",shape="box"];850[label="xwv4001",fontsize=16,color="green",shape="box"];851[label="False",fontsize=16,color="green",shape="box"];852[label="xwv64",fontsize=16,color="green",shape="box"];853[label="xwv3000",fontsize=16,color="green",shape="box"];854[label="xwv4001",fontsize=16,color="green",shape="box"];855[label="xwv3001",fontsize=16,color="green",shape="box"];856[label="xwv4000",fontsize=16,color="green",shape="box"];857[label="xwv3000",fontsize=16,color="green",shape="box"];858[label="xwv4000",fontsize=16,color="green",shape="box"];859[label="xwv3000",fontsize=16,color="green",shape="box"];860[label="xwv4000",fontsize=16,color="green",shape="box"];861[label="xwv3001",fontsize=16,color="green",shape="box"];862[label="xwv4001",fontsize=16,color="green",shape="box"];863[label="xwv3001",fontsize=16,color="green",shape="box"];864[label="xwv4001",fontsize=16,color="green",shape="box"];865[label="xwv3000",fontsize=16,color="green",shape="box"];866[label="xwv4000",fontsize=16,color="green",shape="box"];867[label="xwv3000",fontsize=16,color="green",shape="box"];868[label="xwv4000",fontsize=16,color="green",shape="box"];869[label="xwv3000",fontsize=16,color="green",shape="box"];870[label="xwv4000",fontsize=16,color="green",shape="box"];871[label="xwv3000",fontsize=16,color="green",shape="box"];872[label="xwv4000",fontsize=16,color="green",shape="box"];873[label="xwv3000",fontsize=16,color="green",shape="box"];874[label="xwv4000",fontsize=16,color="green",shape="box"];875[label="xwv3000",fontsize=16,color="green",shape="box"];876[label="xwv4000",fontsize=16,color="green",shape="box"];877[label="xwv3000",fontsize=16,color="green",shape="box"];878[label="xwv4000",fontsize=16,color="green",shape="box"];879[label="xwv3000",fontsize=16,color="green",shape="box"];880[label="xwv4000",fontsize=16,color="green",shape="box"];881[label="xwv3000",fontsize=16,color="green",shape="box"];882[label="xwv4000",fontsize=16,color="green",shape="box"];883[label="xwv3000",fontsize=16,color="green",shape="box"];884[label="xwv4000",fontsize=16,color="green",shape="box"];885[label="xwv3000",fontsize=16,color="green",shape="box"];886[label="xwv4000",fontsize=16,color="green",shape="box"];887[label="xwv3000",fontsize=16,color="green",shape="box"];888[label="xwv4000",fontsize=16,color="green",shape="box"];889[label="xwv3000",fontsize=16,color="green",shape="box"];890[label="xwv4000",fontsize=16,color="green",shape="box"];891[label="xwv3000",fontsize=16,color="green",shape="box"];892[label="xwv4000",fontsize=16,color="green",shape="box"];893 -> 176[label="",style="dashed", color="red", weight=0]; 30.04/13.43 893[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];893 -> 1040[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 893 -> 1041[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 894 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.43 894[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];894 -> 1042[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 894 -> 1043[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 895 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.43 895[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];895 -> 1044[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 895 -> 1045[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 896 -> 179[label="",style="dashed", color="red", weight=0]; 30.04/13.43 896[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];896 -> 1046[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 896 -> 1047[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 897 -> 180[label="",style="dashed", color="red", weight=0]; 30.04/13.43 897[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];897 -> 1048[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 897 -> 1049[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 898 -> 181[label="",style="dashed", color="red", weight=0]; 30.04/13.43 898[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];898 -> 1050[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 898 -> 1051[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 899 -> 182[label="",style="dashed", color="red", weight=0]; 30.04/13.43 899[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];899 -> 1052[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 899 -> 1053[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 900 -> 183[label="",style="dashed", color="red", weight=0]; 30.04/13.43 900[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];900 -> 1054[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 900 -> 1055[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 901 -> 184[label="",style="dashed", color="red", weight=0]; 30.04/13.43 901[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];901 -> 1056[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 901 -> 1057[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 902 -> 185[label="",style="dashed", color="red", weight=0]; 30.04/13.43 902[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];902 -> 1058[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 902 -> 1059[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 903 -> 186[label="",style="dashed", color="red", weight=0]; 30.04/13.43 903[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];903 -> 1060[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 903 -> 1061[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 904 -> 187[label="",style="dashed", color="red", weight=0]; 30.04/13.43 904[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];904 -> 1062[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 904 -> 1063[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 905 -> 188[label="",style="dashed", color="red", weight=0]; 30.04/13.43 905[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];905 -> 1064[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 905 -> 1065[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 906 -> 189[label="",style="dashed", color="red", weight=0]; 30.04/13.43 906[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];906 -> 1066[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 906 -> 1067[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 907 -> 176[label="",style="dashed", color="red", weight=0]; 30.04/13.43 907[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];907 -> 1068[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 907 -> 1069[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 908 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.43 908[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];908 -> 1070[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 908 -> 1071[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 909 -> 178[label="",style="dashed", color="red", weight=0]; 30.04/13.43 909[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];909 -> 1072[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 909 -> 1073[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 910 -> 179[label="",style="dashed", color="red", weight=0]; 30.04/13.43 910[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];910 -> 1074[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 910 -> 1075[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 911 -> 180[label="",style="dashed", color="red", weight=0]; 30.04/13.43 911[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];911 -> 1076[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 911 -> 1077[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 912 -> 181[label="",style="dashed", color="red", weight=0]; 30.04/13.43 912[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];912 -> 1078[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 912 -> 1079[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 913 -> 182[label="",style="dashed", color="red", weight=0]; 30.04/13.43 913[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];913 -> 1080[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 913 -> 1081[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 914 -> 183[label="",style="dashed", color="red", weight=0]; 30.04/13.43 914[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];914 -> 1082[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 914 -> 1083[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 915 -> 184[label="",style="dashed", color="red", weight=0]; 30.04/13.43 915[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];915 -> 1084[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 915 -> 1085[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 916 -> 185[label="",style="dashed", color="red", weight=0]; 30.04/13.43 916[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];916 -> 1086[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 916 -> 1087[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 917 -> 186[label="",style="dashed", color="red", weight=0]; 30.04/13.43 917[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];917 -> 1088[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 917 -> 1089[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 918 -> 187[label="",style="dashed", color="red", weight=0]; 30.04/13.43 918[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];918 -> 1090[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 918 -> 1091[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 919 -> 188[label="",style="dashed", color="red", weight=0]; 30.04/13.43 919[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];919 -> 1092[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 919 -> 1093[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 920 -> 189[label="",style="dashed", color="red", weight=0]; 30.04/13.43 920[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];920 -> 1094[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 920 -> 1095[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 921[label="xwv3000",fontsize=16,color="green",shape="box"];922[label="xwv4000",fontsize=16,color="green",shape="box"];923[label="xwv3000",fontsize=16,color="green",shape="box"];924[label="xwv4000",fontsize=16,color="green",shape="box"];925[label="xwv3000",fontsize=16,color="green",shape="box"];926[label="xwv4000",fontsize=16,color="green",shape="box"];927[label="xwv3000",fontsize=16,color="green",shape="box"];928[label="xwv4000",fontsize=16,color="green",shape="box"];929[label="xwv3000",fontsize=16,color="green",shape="box"];930[label="xwv4000",fontsize=16,color="green",shape="box"];931[label="xwv3000",fontsize=16,color="green",shape="box"];932[label="xwv4000",fontsize=16,color="green",shape="box"];933[label="xwv3000",fontsize=16,color="green",shape="box"];934[label="xwv4000",fontsize=16,color="green",shape="box"];935[label="xwv3000",fontsize=16,color="green",shape="box"];936[label="xwv4000",fontsize=16,color="green",shape="box"];937[label="xwv3000",fontsize=16,color="green",shape="box"];938[label="xwv4000",fontsize=16,color="green",shape="box"];939[label="xwv3000",fontsize=16,color="green",shape="box"];940[label="xwv4000",fontsize=16,color="green",shape="box"];941[label="xwv3000",fontsize=16,color="green",shape="box"];942[label="xwv4000",fontsize=16,color="green",shape="box"];943[label="xwv3000",fontsize=16,color="green",shape="box"];944[label="xwv4000",fontsize=16,color="green",shape="box"];945[label="xwv3000",fontsize=16,color="green",shape="box"];946[label="xwv4000",fontsize=16,color="green",shape="box"];947[label="xwv3000",fontsize=16,color="green",shape="box"];948[label="xwv4000",fontsize=16,color="green",shape="box"];1126[label="xwv34",fontsize=16,color="green",shape="box"];1127[label="FiniteMap.glueBal3 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1127 -> 1232[label="",style="solid", color="black", weight=3]; 30.04/13.43 1128[label="FiniteMap.glueBal2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];1128 -> 1233[label="",style="solid", color="black", weight=3]; 30.04/13.43 2245 -> 1178[label="",style="dashed", color="red", weight=0]; 30.04/13.43 2245[label="compare xwv2800 xwv2900",fontsize=16,color="magenta"];2245 -> 2277[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 2245 -> 2278[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 2244[label="xwv131 /= GT",fontsize=16,color="black",shape="triangle"];2244 -> 2279[label="",style="solid", color="black", weight=3]; 30.04/13.43 2246[label="compare xwv2800 xwv2900",fontsize=16,color="black",shape="triangle"];2246 -> 2280[label="",style="solid", color="black", weight=3]; 30.04/13.43 2253[label="False <= False",fontsize=16,color="black",shape="box"];2253 -> 2318[label="",style="solid", color="black", weight=3]; 30.04/13.43 2254[label="False <= True",fontsize=16,color="black",shape="box"];2254 -> 2319[label="",style="solid", color="black", weight=3]; 30.04/13.43 2255[label="True <= False",fontsize=16,color="black",shape="box"];2255 -> 2320[label="",style="solid", color="black", weight=3]; 30.04/13.43 2256[label="True <= True",fontsize=16,color="black",shape="box"];2256 -> 2321[label="",style="solid", color="black", weight=3]; 30.04/13.43 2257[label="(xwv28000,xwv28001) <= (xwv29000,xwv29001)",fontsize=16,color="black",shape="box"];2257 -> 2322[label="",style="solid", color="black", weight=3]; 30.04/13.43 2258[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2258 -> 2323[label="",style="solid", color="black", weight=3]; 30.04/13.43 2259[label="Nothing <= Just xwv29000",fontsize=16,color="black",shape="box"];2259 -> 2324[label="",style="solid", color="black", weight=3]; 30.04/13.43 2260[label="Just xwv28000 <= Nothing",fontsize=16,color="black",shape="box"];2260 -> 2325[label="",style="solid", color="black", weight=3]; 30.04/13.43 2261[label="Just xwv28000 <= Just xwv29000",fontsize=16,color="black",shape="box"];2261 -> 2326[label="",style="solid", color="black", weight=3]; 30.04/13.43 2247[label="compare xwv2800 xwv2900",fontsize=16,color="black",shape="triangle"];2247 -> 2281[label="",style="solid", color="black", weight=3]; 30.04/13.43 2248[label="compare xwv2800 xwv2900",fontsize=16,color="black",shape="triangle"];2248 -> 2282[label="",style="solid", color="black", weight=3]; 30.04/13.43 2249[label="compare xwv2800 xwv2900",fontsize=16,color="burlywood",shape="triangle"];4814[label="xwv2800/()",fontsize=10,color="white",style="solid",shape="box"];2249 -> 4814[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4814 -> 2283[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 2250[label="compare xwv2800 xwv2900",fontsize=16,color="burlywood",shape="triangle"];4815[label="xwv2800/xwv28000 : xwv28001",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4815[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4815 -> 2284[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4816[label="xwv2800/[]",fontsize=10,color="white",style="solid",shape="box"];2250 -> 4816[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4816 -> 2285[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 2262[label="LT <= LT",fontsize=16,color="black",shape="box"];2262 -> 2327[label="",style="solid", color="black", weight=3]; 30.04/13.43 2263[label="LT <= EQ",fontsize=16,color="black",shape="box"];2263 -> 2328[label="",style="solid", color="black", weight=3]; 30.04/13.43 2264[label="LT <= GT",fontsize=16,color="black",shape="box"];2264 -> 2329[label="",style="solid", color="black", weight=3]; 30.04/13.43 2265[label="EQ <= LT",fontsize=16,color="black",shape="box"];2265 -> 2330[label="",style="solid", color="black", weight=3]; 30.04/13.43 2266[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2266 -> 2331[label="",style="solid", color="black", weight=3]; 30.04/13.43 2267[label="EQ <= GT",fontsize=16,color="black",shape="box"];2267 -> 2332[label="",style="solid", color="black", weight=3]; 30.04/13.43 2268[label="GT <= LT",fontsize=16,color="black",shape="box"];2268 -> 2333[label="",style="solid", color="black", weight=3]; 30.04/13.43 2269[label="GT <= EQ",fontsize=16,color="black",shape="box"];2269 -> 2334[label="",style="solid", color="black", weight=3]; 30.04/13.43 2270[label="GT <= GT",fontsize=16,color="black",shape="box"];2270 -> 2335[label="",style="solid", color="black", weight=3]; 30.04/13.43 2271[label="(xwv28000,xwv28001,xwv28002) <= (xwv29000,xwv29001,xwv29002)",fontsize=16,color="black",shape="box"];2271 -> 2336[label="",style="solid", color="black", weight=3]; 30.04/13.43 2272[label="Left xwv28000 <= Left xwv29000",fontsize=16,color="black",shape="box"];2272 -> 2337[label="",style="solid", color="black", weight=3]; 30.04/13.43 2273[label="Left xwv28000 <= Right xwv29000",fontsize=16,color="black",shape="box"];2273 -> 2338[label="",style="solid", color="black", weight=3]; 30.04/13.43 2274[label="Right xwv28000 <= Left xwv29000",fontsize=16,color="black",shape="box"];2274 -> 2339[label="",style="solid", color="black", weight=3]; 30.04/13.43 2275[label="Right xwv28000 <= Right xwv29000",fontsize=16,color="black",shape="box"];2275 -> 2340[label="",style="solid", color="black", weight=3]; 30.04/13.43 2251[label="compare xwv2800 xwv2900",fontsize=16,color="burlywood",shape="triangle"];4817[label="xwv2800/Integer xwv28000",fontsize=10,color="white",style="solid",shape="box"];2251 -> 4817[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4817 -> 2286[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 2252[label="compare xwv2800 xwv2900",fontsize=16,color="burlywood",shape="triangle"];4818[label="xwv2800/xwv28000 :% xwv28001",fontsize=10,color="white",style="solid",shape="box"];2252 -> 4818[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4818 -> 2287[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 2276[label="compare0 (Just xwv125) (Just xwv126) True",fontsize=16,color="black",shape="box"];2276 -> 2341[label="",style="solid", color="black", weight=3]; 30.04/13.43 3686[label="xwv253",fontsize=16,color="green",shape="box"];1236[label="FiniteMap.sizeFM xwv33",fontsize=16,color="burlywood",shape="triangle"];4819[label="xwv33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1236 -> 4819[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4819 -> 1376[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4820[label="xwv33/FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=10,color="white",style="solid",shape="box"];1236 -> 4820[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4820 -> 1377[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 3687 -> 3703[label="",style="dashed", color="red", weight=0]; 30.04/13.43 3687[label="primPlusInt (Pos xwv2570) (FiniteMap.sizeFM xwv344)",fontsize=16,color="magenta"];3687 -> 3704[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 3688 -> 3705[label="",style="dashed", color="red", weight=0]; 30.04/13.43 3688[label="primPlusInt (Neg xwv2570) (FiniteMap.sizeFM xwv344)",fontsize=16,color="magenta"];3688 -> 3706[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 1261[label="primCmpInt xwv28 xwv29",fontsize=16,color="burlywood",shape="triangle"];4821[label="xwv28/Pos xwv280",fontsize=10,color="white",style="solid",shape="box"];1261 -> 4821[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4821 -> 1400[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4822[label="xwv28/Neg xwv280",fontsize=10,color="white",style="solid",shape="box"];1261 -> 4822[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4822 -> 1401[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 3689 -> 3664[label="",style="dashed", color="red", weight=0]; 30.04/13.43 3689[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv253",fontsize=16,color="magenta"];3690[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];3690 -> 3707[label="",style="solid", color="black", weight=3]; 30.04/13.43 3691 -> 1236[label="",style="dashed", color="red", weight=0]; 30.04/13.43 3691[label="FiniteMap.sizeFM xwv344",fontsize=16,color="magenta"];3691 -> 3708[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 1518 -> 47[label="",style="dashed", color="red", weight=0]; 30.04/13.43 1518[label="compare xwv91 xwv90 == GT",fontsize=16,color="magenta"];1518 -> 1536[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 1518 -> 1537[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 3692 -> 3709[label="",style="dashed", color="red", weight=0]; 30.04/13.43 3692[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv340 xwv341 xwv344 xwv253 xwv340 xwv341 xwv253 xwv344 (FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv253 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv253)",fontsize=16,color="magenta"];3692 -> 3710[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 3693[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv340 xwv341 xwv344 xwv253 xwv253 xwv344 xwv344",fontsize=16,color="burlywood",shape="box"];4823[label="xwv344/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3693 -> 4823[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4823 -> 3711[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4824[label="xwv344/FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444",fontsize=10,color="white",style="solid",shape="box"];3693 -> 4824[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4824 -> 3712[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4450[label="FiniteMap.Branch xwv371 xwv372 (FiniteMap.mkBranchUnbox xwv374 xwv371 xwv373 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv374 xwv371 xwv373 + FiniteMap.mkBranchRight_size xwv374 xwv371 xwv373)) xwv373 xwv374",fontsize=16,color="green",shape="box"];4450 -> 4457[label="",style="dashed", color="green", weight=3]; 30.04/13.43 1030[label="primMulInt (Pos xwv40010) xwv3000",fontsize=16,color="burlywood",shape="box"];4825[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4825[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4825 -> 1171[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4826[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4826[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4826 -> 1172[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 1031[label="primMulInt (Neg xwv40010) xwv3000",fontsize=16,color="burlywood",shape="box"];4827[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];1031 -> 4827[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4827 -> 1173[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 4828[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];1031 -> 4828[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4828 -> 1174[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 1032[label="xwv30000",fontsize=16,color="green",shape="box"];1033[label="xwv40000",fontsize=16,color="green",shape="box"];1034[label="xwv30000",fontsize=16,color="green",shape="box"];1035[label="xwv40000",fontsize=16,color="green",shape="box"];1036 -> 452[label="",style="dashed", color="red", weight=0]; 30.04/13.43 1036[label="primEqNat xwv40000 xwv30000",fontsize=16,color="magenta"];1036 -> 1175[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 1036 -> 1176[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 1037[label="False",fontsize=16,color="green",shape="box"];1038[label="False",fontsize=16,color="green",shape="box"];1039[label="True",fontsize=16,color="green",shape="box"];1040[label="xwv3001",fontsize=16,color="green",shape="box"];1041[label="xwv4001",fontsize=16,color="green",shape="box"];1042[label="xwv3001",fontsize=16,color="green",shape="box"];1043[label="xwv4001",fontsize=16,color="green",shape="box"];1044[label="xwv3001",fontsize=16,color="green",shape="box"];1045[label="xwv4001",fontsize=16,color="green",shape="box"];1046[label="xwv3001",fontsize=16,color="green",shape="box"];1047[label="xwv4001",fontsize=16,color="green",shape="box"];1048[label="xwv3001",fontsize=16,color="green",shape="box"];1049[label="xwv4001",fontsize=16,color="green",shape="box"];1050[label="xwv3001",fontsize=16,color="green",shape="box"];1051[label="xwv4001",fontsize=16,color="green",shape="box"];1052[label="xwv3001",fontsize=16,color="green",shape="box"];1053[label="xwv4001",fontsize=16,color="green",shape="box"];1054[label="xwv3001",fontsize=16,color="green",shape="box"];1055[label="xwv4001",fontsize=16,color="green",shape="box"];1056[label="xwv3001",fontsize=16,color="green",shape="box"];1057[label="xwv4001",fontsize=16,color="green",shape="box"];1058[label="xwv3001",fontsize=16,color="green",shape="box"];1059[label="xwv4001",fontsize=16,color="green",shape="box"];1060[label="xwv3001",fontsize=16,color="green",shape="box"];1061[label="xwv4001",fontsize=16,color="green",shape="box"];1062[label="xwv3001",fontsize=16,color="green",shape="box"];1063[label="xwv4001",fontsize=16,color="green",shape="box"];1064[label="xwv3001",fontsize=16,color="green",shape="box"];1065[label="xwv4001",fontsize=16,color="green",shape="box"];1066[label="xwv3001",fontsize=16,color="green",shape="box"];1067[label="xwv4001",fontsize=16,color="green",shape="box"];1068[label="xwv3002",fontsize=16,color="green",shape="box"];1069[label="xwv4002",fontsize=16,color="green",shape="box"];1070[label="xwv3002",fontsize=16,color="green",shape="box"];1071[label="xwv4002",fontsize=16,color="green",shape="box"];1072[label="xwv3002",fontsize=16,color="green",shape="box"];1073[label="xwv4002",fontsize=16,color="green",shape="box"];1074[label="xwv3002",fontsize=16,color="green",shape="box"];1075[label="xwv4002",fontsize=16,color="green",shape="box"];1076[label="xwv3002",fontsize=16,color="green",shape="box"];1077[label="xwv4002",fontsize=16,color="green",shape="box"];1078[label="xwv3002",fontsize=16,color="green",shape="box"];1079[label="xwv4002",fontsize=16,color="green",shape="box"];1080[label="xwv3002",fontsize=16,color="green",shape="box"];1081[label="xwv4002",fontsize=16,color="green",shape="box"];1082[label="xwv3002",fontsize=16,color="green",shape="box"];1083[label="xwv4002",fontsize=16,color="green",shape="box"];1084[label="xwv3002",fontsize=16,color="green",shape="box"];1085[label="xwv4002",fontsize=16,color="green",shape="box"];1086[label="xwv3002",fontsize=16,color="green",shape="box"];1087[label="xwv4002",fontsize=16,color="green",shape="box"];1088[label="xwv3002",fontsize=16,color="green",shape="box"];1089[label="xwv4002",fontsize=16,color="green",shape="box"];1090[label="xwv3002",fontsize=16,color="green",shape="box"];1091[label="xwv4002",fontsize=16,color="green",shape="box"];1092[label="xwv3002",fontsize=16,color="green",shape="box"];1093[label="xwv4002",fontsize=16,color="green",shape="box"];1094[label="xwv3002",fontsize=16,color="green",shape="box"];1095[label="xwv4002",fontsize=16,color="green",shape="box"];1232[label="FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=16,color="green",shape="box"];1233 -> 1501[label="",style="dashed", color="red", weight=0]; 30.04/13.43 1233[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.sizeFM (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) > FiniteMap.sizeFM (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334))",fontsize=16,color="magenta"];1233 -> 1502[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 2277[label="xwv2800",fontsize=16,color="green",shape="box"];2278[label="xwv2900",fontsize=16,color="green",shape="box"];2279 -> 2342[label="",style="dashed", color="red", weight=0]; 30.04/13.43 2279[label="not (xwv131 == GT)",fontsize=16,color="magenta"];2279 -> 2343[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 2280[label="primCmpChar xwv2800 xwv2900",fontsize=16,color="burlywood",shape="box"];4829[label="xwv2800/Char xwv28000",fontsize=10,color="white",style="solid",shape="box"];2280 -> 4829[label="",style="solid", color="burlywood", weight=9]; 30.04/13.43 4829 -> 2344[label="",style="solid", color="burlywood", weight=3]; 30.04/13.43 2318[label="True",fontsize=16,color="green",shape="box"];2319[label="True",fontsize=16,color="green",shape="box"];2320[label="False",fontsize=16,color="green",shape="box"];2321[label="True",fontsize=16,color="green",shape="box"];2322 -> 2408[label="",style="dashed", color="red", weight=0]; 30.04/13.43 2322[label="xwv28000 < xwv29000 || xwv28000 == xwv29000 && xwv28001 <= xwv29001",fontsize=16,color="magenta"];2322 -> 2409[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 2322 -> 2410[label="",style="dashed", color="magenta", weight=3]; 30.04/13.43 2323[label="True",fontsize=16,color="green",shape="box"];2324[label="True",fontsize=16,color="green",shape="box"];2325[label="False",fontsize=16,color="green",shape="box"];2326[label="xwv28000 <= xwv29000",fontsize=16,color="blue",shape="box"];4830[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4830[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4830 -> 2350[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4831[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4831[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4831 -> 2351[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4832[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4832[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4832 -> 2352[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4833[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4833[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4833 -> 2353[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4834[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4834[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4834 -> 2354[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4835[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4835[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4835 -> 2355[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4836[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4836[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4836 -> 2356[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4837[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4837[label="",style="solid", color="blue", weight=9]; 30.04/13.43 4837 -> 2357[label="",style="solid", color="blue", weight=3]; 30.04/13.43 4838[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4838[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4838 -> 2358[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4839[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4839[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4839 -> 2359[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4840[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4840[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4840 -> 2360[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4841[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4841[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4841 -> 2361[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4842[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4842[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4842 -> 2362[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4843[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4843[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4843 -> 2363[label="",style="solid", color="blue", weight=3]; 30.08/13.43 2281[label="primCmpDouble xwv2800 xwv2900",fontsize=16,color="burlywood",shape="box"];4844[label="xwv2800/Double xwv28000 xwv28001",fontsize=10,color="white",style="solid",shape="box"];2281 -> 4844[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4844 -> 2364[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2282[label="primCmpFloat xwv2800 xwv2900",fontsize=16,color="burlywood",shape="box"];4845[label="xwv2800/Float xwv28000 xwv28001",fontsize=10,color="white",style="solid",shape="box"];2282 -> 4845[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4845 -> 2365[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2283[label="compare () xwv2900",fontsize=16,color="burlywood",shape="box"];4846[label="xwv2900/()",fontsize=10,color="white",style="solid",shape="box"];2283 -> 4846[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4846 -> 2366[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2284[label="compare (xwv28000 : xwv28001) xwv2900",fontsize=16,color="burlywood",shape="box"];4847[label="xwv2900/xwv29000 : xwv29001",fontsize=10,color="white",style="solid",shape="box"];2284 -> 4847[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4847 -> 2367[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4848[label="xwv2900/[]",fontsize=10,color="white",style="solid",shape="box"];2284 -> 4848[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4848 -> 2368[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2285[label="compare [] xwv2900",fontsize=16,color="burlywood",shape="box"];4849[label="xwv2900/xwv29000 : xwv29001",fontsize=10,color="white",style="solid",shape="box"];2285 -> 4849[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4849 -> 2369[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4850[label="xwv2900/[]",fontsize=10,color="white",style="solid",shape="box"];2285 -> 4850[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4850 -> 2370[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2327[label="True",fontsize=16,color="green",shape="box"];2328[label="True",fontsize=16,color="green",shape="box"];2329[label="True",fontsize=16,color="green",shape="box"];2330[label="False",fontsize=16,color="green",shape="box"];2331[label="True",fontsize=16,color="green",shape="box"];2332[label="True",fontsize=16,color="green",shape="box"];2333[label="False",fontsize=16,color="green",shape="box"];2334[label="False",fontsize=16,color="green",shape="box"];2335[label="True",fontsize=16,color="green",shape="box"];2336 -> 2408[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2336[label="xwv28000 < xwv29000 || xwv28000 == xwv29000 && (xwv28001 < xwv29001 || xwv28001 == xwv29001 && xwv28002 <= xwv29002)",fontsize=16,color="magenta"];2336 -> 2411[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2336 -> 2412[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2337[label="xwv28000 <= xwv29000",fontsize=16,color="blue",shape="box"];4851[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2337 -> 4851[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4851 -> 2371[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4852[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2337 -> 4852[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4852 -> 2372[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4853[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2337 -> 4853[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4853 -> 2373[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4854[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2337 -> 4854[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4854 -> 2374[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4855[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2337 -> 4855[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4855 -> 2375[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4856[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2337 -> 4856[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4856 -> 2376[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4857[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2337 -> 4857[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4857 -> 2377[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4858[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2337 -> 4858[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4858 -> 2378[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4859[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2337 -> 4859[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4859 -> 2379[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4860[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2337 -> 4860[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4860 -> 2380[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4861[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2337 -> 4861[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4861 -> 2381[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4862[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2337 -> 4862[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4862 -> 2382[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4863[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2337 -> 4863[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4863 -> 2383[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4864[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2337 -> 4864[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4864 -> 2384[label="",style="solid", color="blue", weight=3]; 30.08/13.43 2338[label="True",fontsize=16,color="green",shape="box"];2339[label="False",fontsize=16,color="green",shape="box"];2340[label="xwv28000 <= xwv29000",fontsize=16,color="blue",shape="box"];4865[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 4865[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4865 -> 2385[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4866[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 4866[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4866 -> 2386[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4867[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 4867[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4867 -> 2387[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4868[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 4868[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4868 -> 2388[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4869[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 4869[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4869 -> 2389[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4870[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 4870[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4870 -> 2390[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4871[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 4871[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4871 -> 2391[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4872[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 4872[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4872 -> 2392[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4873[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 4873[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4873 -> 2393[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4874[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 4874[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4874 -> 2394[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4875[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 4875[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4875 -> 2395[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4876[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 4876[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4876 -> 2396[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4877[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 4877[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4877 -> 2397[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4878[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2340 -> 4878[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4878 -> 2398[label="",style="solid", color="blue", weight=3]; 30.08/13.43 2286[label="compare (Integer xwv28000) xwv2900",fontsize=16,color="burlywood",shape="box"];4879[label="xwv2900/Integer xwv29000",fontsize=10,color="white",style="solid",shape="box"];2286 -> 4879[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4879 -> 2399[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2287[label="compare (xwv28000 :% xwv28001) xwv2900",fontsize=16,color="burlywood",shape="box"];4880[label="xwv2900/xwv29000 :% xwv29001",fontsize=10,color="white",style="solid",shape="box"];2287 -> 4880[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4880 -> 2400[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2341[label="GT",fontsize=16,color="green",shape="box"];1376[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1376 -> 1559[label="",style="solid", color="black", weight=3]; 30.08/13.43 1377[label="FiniteMap.sizeFM (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="black",shape="box"];1377 -> 1560[label="",style="solid", color="black", weight=3]; 30.08/13.43 3704 -> 1236[label="",style="dashed", color="red", weight=0]; 30.08/13.43 3704[label="FiniteMap.sizeFM xwv344",fontsize=16,color="magenta"];3704 -> 3714[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 3703[label="primPlusInt (Pos xwv2570) xwv258",fontsize=16,color="burlywood",shape="triangle"];4881[label="xwv258/Pos xwv2580",fontsize=10,color="white",style="solid",shape="box"];3703 -> 4881[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4881 -> 3715[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4882[label="xwv258/Neg xwv2580",fontsize=10,color="white",style="solid",shape="box"];3703 -> 4882[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4882 -> 3716[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 3706 -> 1236[label="",style="dashed", color="red", weight=0]; 30.08/13.43 3706[label="FiniteMap.sizeFM xwv344",fontsize=16,color="magenta"];3706 -> 3717[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 3705[label="primPlusInt (Neg xwv2570) xwv259",fontsize=16,color="burlywood",shape="triangle"];4883[label="xwv259/Pos xwv2590",fontsize=10,color="white",style="solid",shape="box"];3705 -> 4883[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4883 -> 3718[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4884[label="xwv259/Neg xwv2590",fontsize=10,color="white",style="solid",shape="box"];3705 -> 4884[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4884 -> 3719[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 1400[label="primCmpInt (Pos xwv280) xwv29",fontsize=16,color="burlywood",shape="box"];4885[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4885[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4885 -> 1573[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4886[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];1400 -> 4886[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4886 -> 1574[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 1401[label="primCmpInt (Neg xwv280) xwv29",fontsize=16,color="burlywood",shape="box"];4887[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];1401 -> 4887[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4887 -> 1575[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4888[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];1401 -> 4888[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4888 -> 1576[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 3707[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3708[label="xwv344",fontsize=16,color="green",shape="box"];1536[label="GT",fontsize=16,color="green",shape="box"];1537 -> 1178[label="",style="dashed", color="red", weight=0]; 30.08/13.43 1537[label="compare xwv91 xwv90",fontsize=16,color="magenta"];1537 -> 1553[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 1537 -> 1554[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 3710 -> 1504[label="",style="dashed", color="red", weight=0]; 30.08/13.43 3710[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv253 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv253",fontsize=16,color="magenta"];3710 -> 3720[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 3710 -> 3721[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 3709[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv340 xwv341 xwv344 xwv253 xwv340 xwv341 xwv253 xwv344 xwv260",fontsize=16,color="burlywood",shape="triangle"];4889[label="xwv260/False",fontsize=10,color="white",style="solid",shape="box"];3709 -> 4889[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4889 -> 3722[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4890[label="xwv260/True",fontsize=10,color="white",style="solid",shape="box"];3709 -> 4890[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4890 -> 3723[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 3711[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv340 xwv341 FiniteMap.EmptyFM xwv253 xwv253 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3711 -> 3736[label="",style="solid", color="black", weight=3]; 30.08/13.43 3712[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv253 xwv253 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444)",fontsize=16,color="black",shape="box"];3712 -> 3737[label="",style="solid", color="black", weight=3]; 30.08/13.43 4457[label="FiniteMap.mkBranchUnbox xwv374 xwv371 xwv373 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv374 xwv371 xwv373 + FiniteMap.mkBranchRight_size xwv374 xwv371 xwv373)",fontsize=16,color="black",shape="box"];4457 -> 4458[label="",style="solid", color="black", weight=3]; 30.08/13.43 1171[label="primMulInt (Pos xwv40010) (Pos xwv30000)",fontsize=16,color="black",shape="box"];1171 -> 1257[label="",style="solid", color="black", weight=3]; 30.08/13.43 1172[label="primMulInt (Pos xwv40010) (Neg xwv30000)",fontsize=16,color="black",shape="box"];1172 -> 1258[label="",style="solid", color="black", weight=3]; 30.08/13.43 1173[label="primMulInt (Neg xwv40010) (Pos xwv30000)",fontsize=16,color="black",shape="box"];1173 -> 1259[label="",style="solid", color="black", weight=3]; 30.08/13.43 1174[label="primMulInt (Neg xwv40010) (Neg xwv30000)",fontsize=16,color="black",shape="box"];1174 -> 1260[label="",style="solid", color="black", weight=3]; 30.08/13.43 1175[label="xwv30000",fontsize=16,color="green",shape="box"];1176[label="xwv40000",fontsize=16,color="green",shape="box"];1502 -> 1504[label="",style="dashed", color="red", weight=0]; 30.08/13.43 1502[label="FiniteMap.sizeFM (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) > FiniteMap.sizeFM (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="magenta"];1502 -> 1513[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 1502 -> 1514[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 1501[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) xwv86",fontsize=16,color="burlywood",shape="triangle"];4891[label="xwv86/False",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4891[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4891 -> 1522[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4892[label="xwv86/True",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4892[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4892 -> 1523[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2343 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2343[label="xwv131 == GT",fontsize=16,color="magenta"];2343 -> 2401[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2343 -> 2402[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2342[label="not xwv132",fontsize=16,color="burlywood",shape="triangle"];4893[label="xwv132/False",fontsize=10,color="white",style="solid",shape="box"];2342 -> 4893[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4893 -> 2403[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4894[label="xwv132/True",fontsize=10,color="white",style="solid",shape="box"];2342 -> 4894[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4894 -> 2404[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2344[label="primCmpChar (Char xwv28000) xwv2900",fontsize=16,color="burlywood",shape="box"];4895[label="xwv2900/Char xwv29000",fontsize=10,color="white",style="solid",shape="box"];2344 -> 4895[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4895 -> 2405[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2409 -> 644[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2409[label="xwv28000 == xwv29000 && xwv28001 <= xwv29001",fontsize=16,color="magenta"];2409 -> 2415[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2409 -> 2416[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2410[label="xwv28000 < xwv29000",fontsize=16,color="blue",shape="box"];4896[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4896[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4896 -> 2417[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4897[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4897[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4897 -> 2418[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4898[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4898[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4898 -> 2419[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4899[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4899[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4899 -> 2420[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4900[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4900[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4900 -> 2421[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4901[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4901[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4901 -> 2422[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4902[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4902[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4902 -> 2423[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4903[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4903[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4903 -> 2424[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4904[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4904[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4904 -> 2425[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4905[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4905[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4905 -> 2426[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4906[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4906[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4906 -> 2427[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4907[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4907[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4907 -> 2428[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4908[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4908[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4908 -> 2429[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4909[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2410 -> 4909[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4909 -> 2430[label="",style="solid", color="blue", weight=3]; 30.08/13.43 2408[label="xwv137 || xwv138",fontsize=16,color="burlywood",shape="triangle"];4910[label="xwv137/False",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4910[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4910 -> 2431[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4911[label="xwv137/True",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4911[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4911 -> 2432[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2350 -> 2169[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2350[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2350 -> 2433[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2350 -> 2434[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2351 -> 2170[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2351[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2351 -> 2435[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2351 -> 2436[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2352 -> 2171[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2352[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2352 -> 2437[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2352 -> 2438[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2353 -> 2172[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2353[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2353 -> 2439[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2353 -> 2440[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2354 -> 2173[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2354[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2354 -> 2441[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2354 -> 2442[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2355 -> 2174[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2355[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2355 -> 2443[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2355 -> 2444[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2356 -> 2175[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2356[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2356 -> 2445[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2356 -> 2446[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2357 -> 2176[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2357[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2357 -> 2447[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2357 -> 2448[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2358 -> 2177[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2358[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2358 -> 2449[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2358 -> 2450[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2359 -> 2178[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2359[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2359 -> 2451[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2359 -> 2452[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2360 -> 2179[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2360[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2360 -> 2453[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2360 -> 2454[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2361 -> 2180[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2361[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2361 -> 2455[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2361 -> 2456[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2362 -> 2181[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2362[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2362 -> 2457[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2362 -> 2458[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2363 -> 2182[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2363[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2363 -> 2459[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2363 -> 2460[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2364[label="primCmpDouble (Double xwv28000 xwv28001) xwv2900",fontsize=16,color="burlywood",shape="box"];4912[label="xwv28001/Pos xwv280010",fontsize=10,color="white",style="solid",shape="box"];2364 -> 4912[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4912 -> 2461[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4913[label="xwv28001/Neg xwv280010",fontsize=10,color="white",style="solid",shape="box"];2364 -> 4913[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4913 -> 2462[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2365[label="primCmpFloat (Float xwv28000 xwv28001) xwv2900",fontsize=16,color="burlywood",shape="box"];4914[label="xwv28001/Pos xwv280010",fontsize=10,color="white",style="solid",shape="box"];2365 -> 4914[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4914 -> 2463[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4915[label="xwv28001/Neg xwv280010",fontsize=10,color="white",style="solid",shape="box"];2365 -> 4915[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4915 -> 2464[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2366[label="compare () ()",fontsize=16,color="black",shape="box"];2366 -> 2465[label="",style="solid", color="black", weight=3]; 30.08/13.43 2367[label="compare (xwv28000 : xwv28001) (xwv29000 : xwv29001)",fontsize=16,color="black",shape="box"];2367 -> 2466[label="",style="solid", color="black", weight=3]; 30.08/13.43 2368[label="compare (xwv28000 : xwv28001) []",fontsize=16,color="black",shape="box"];2368 -> 2467[label="",style="solid", color="black", weight=3]; 30.08/13.43 2369[label="compare [] (xwv29000 : xwv29001)",fontsize=16,color="black",shape="box"];2369 -> 2468[label="",style="solid", color="black", weight=3]; 30.08/13.43 2370[label="compare [] []",fontsize=16,color="black",shape="box"];2370 -> 2469[label="",style="solid", color="black", weight=3]; 30.08/13.43 2411 -> 644[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2411[label="xwv28000 == xwv29000 && (xwv28001 < xwv29001 || xwv28001 == xwv29001 && xwv28002 <= xwv29002)",fontsize=16,color="magenta"];2411 -> 2470[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2411 -> 2471[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2412[label="xwv28000 < xwv29000",fontsize=16,color="blue",shape="box"];4916[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4916[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4916 -> 2472[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4917[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4917[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4917 -> 2473[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4918[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4918[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4918 -> 2474[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4919[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4919[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4919 -> 2475[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4920[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4920[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4920 -> 2476[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4921[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4921[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4921 -> 2477[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4922[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4922[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4922 -> 2478[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4923[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4923[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4923 -> 2479[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4924[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4924[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4924 -> 2480[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4925[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4925[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4925 -> 2481[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4926[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4926[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4926 -> 2482[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4927[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4927[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4927 -> 2483[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4928[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4928[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4928 -> 2484[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4929[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2412 -> 4929[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4929 -> 2485[label="",style="solid", color="blue", weight=3]; 30.08/13.43 2371 -> 2169[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2371[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2371 -> 2486[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2371 -> 2487[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2372 -> 2170[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2372[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2372 -> 2488[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2372 -> 2489[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2373 -> 2171[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2373[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2373 -> 2490[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2373 -> 2491[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2374 -> 2172[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2374[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2374 -> 2492[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2374 -> 2493[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2375 -> 2173[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2375[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2375 -> 2494[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2375 -> 2495[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2376 -> 2174[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2376[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2376 -> 2496[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2376 -> 2497[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2377 -> 2175[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2377[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2377 -> 2498[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2377 -> 2499[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2378 -> 2176[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2378[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2378 -> 2500[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2378 -> 2501[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2379 -> 2177[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2379[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2379 -> 2502[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2379 -> 2503[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2380 -> 2178[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2380[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2380 -> 2504[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2380 -> 2505[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2381 -> 2179[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2381[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2381 -> 2506[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2381 -> 2507[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2382 -> 2180[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2382[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2382 -> 2508[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2382 -> 2509[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2383 -> 2181[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2383[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2383 -> 2510[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2383 -> 2511[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2384 -> 2182[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2384[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2384 -> 2512[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2384 -> 2513[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2385 -> 2169[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2385[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2385 -> 2514[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2385 -> 2515[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2386 -> 2170[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2386[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2386 -> 2516[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2386 -> 2517[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2387 -> 2171[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2387[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2387 -> 2518[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2387 -> 2519[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2388 -> 2172[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2388[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2388 -> 2520[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2388 -> 2521[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2389 -> 2173[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2389[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2389 -> 2522[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2389 -> 2523[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2390 -> 2174[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2390[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2390 -> 2524[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2390 -> 2525[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2391 -> 2175[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2391[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2391 -> 2526[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2391 -> 2527[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2392 -> 2176[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2392[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2392 -> 2528[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2392 -> 2529[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2393 -> 2177[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2393[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2393 -> 2530[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2393 -> 2531[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2394 -> 2178[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2394[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2394 -> 2532[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2394 -> 2533[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2395 -> 2179[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2395[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2395 -> 2534[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2395 -> 2535[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2396 -> 2180[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2396[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2396 -> 2536[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2396 -> 2537[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2397 -> 2181[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2397[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2397 -> 2538[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2397 -> 2539[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2398 -> 2182[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2398[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2398 -> 2540[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2398 -> 2541[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2399[label="compare (Integer xwv28000) (Integer xwv29000)",fontsize=16,color="black",shape="box"];2399 -> 2542[label="",style="solid", color="black", weight=3]; 30.08/13.43 2400[label="compare (xwv28000 :% xwv28001) (xwv29000 :% xwv29001)",fontsize=16,color="black",shape="box"];2400 -> 2543[label="",style="solid", color="black", weight=3]; 30.08/13.43 1559[label="Pos Zero",fontsize=16,color="green",shape="box"];1560[label="xwv332",fontsize=16,color="green",shape="box"];3714[label="xwv344",fontsize=16,color="green",shape="box"];3715[label="primPlusInt (Pos xwv2570) (Pos xwv2580)",fontsize=16,color="black",shape="box"];3715 -> 3739[label="",style="solid", color="black", weight=3]; 30.08/13.43 3716[label="primPlusInt (Pos xwv2570) (Neg xwv2580)",fontsize=16,color="black",shape="box"];3716 -> 3740[label="",style="solid", color="black", weight=3]; 30.08/13.43 3717[label="xwv344",fontsize=16,color="green",shape="box"];3718[label="primPlusInt (Neg xwv2570) (Pos xwv2590)",fontsize=16,color="black",shape="box"];3718 -> 3741[label="",style="solid", color="black", weight=3]; 30.08/13.43 3719[label="primPlusInt (Neg xwv2570) (Neg xwv2590)",fontsize=16,color="black",shape="box"];3719 -> 3742[label="",style="solid", color="black", weight=3]; 30.08/13.43 1573[label="primCmpInt (Pos (Succ xwv2800)) xwv29",fontsize=16,color="burlywood",shape="box"];4930[label="xwv29/Pos xwv290",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4930[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4930 -> 1766[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4931[label="xwv29/Neg xwv290",fontsize=10,color="white",style="solid",shape="box"];1573 -> 4931[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4931 -> 1767[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 1574[label="primCmpInt (Pos Zero) xwv29",fontsize=16,color="burlywood",shape="box"];4932[label="xwv29/Pos xwv290",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4932[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4932 -> 1768[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4933[label="xwv29/Neg xwv290",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4933[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4933 -> 1769[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 1575[label="primCmpInt (Neg (Succ xwv2800)) xwv29",fontsize=16,color="burlywood",shape="box"];4934[label="xwv29/Pos xwv290",fontsize=10,color="white",style="solid",shape="box"];1575 -> 4934[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4934 -> 1770[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4935[label="xwv29/Neg xwv290",fontsize=10,color="white",style="solid",shape="box"];1575 -> 4935[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4935 -> 1771[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 1576[label="primCmpInt (Neg Zero) xwv29",fontsize=16,color="burlywood",shape="box"];4936[label="xwv29/Pos xwv290",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4936[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4936 -> 1772[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4937[label="xwv29/Neg xwv290",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4937[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4937 -> 1773[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 1553[label="xwv91",fontsize=16,color="green",shape="box"];1554[label="xwv90",fontsize=16,color="green",shape="box"];3720 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.43 3720[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv253",fontsize=16,color="magenta"];3720 -> 3743[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 3720 -> 3744[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 3721 -> 3664[label="",style="dashed", color="red", weight=0]; 30.08/13.43 3721[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv253",fontsize=16,color="magenta"];3722[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv340 xwv341 xwv344 xwv253 xwv340 xwv341 xwv253 xwv344 False",fontsize=16,color="black",shape="box"];3722 -> 3745[label="",style="solid", color="black", weight=3]; 30.08/13.43 3723[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv340 xwv341 xwv344 xwv253 xwv340 xwv341 xwv253 xwv344 True",fontsize=16,color="black",shape="box"];3723 -> 3746[label="",style="solid", color="black", weight=3]; 30.08/13.43 3736[label="error []",fontsize=16,color="red",shape="box"];3737[label="FiniteMap.mkBalBranch6MkBalBranch02 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv253 xwv253 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444)",fontsize=16,color="black",shape="box"];3737 -> 3755[label="",style="solid", color="black", weight=3]; 30.08/13.43 4458[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv374 xwv371 xwv373 + FiniteMap.mkBranchRight_size xwv374 xwv371 xwv373",fontsize=16,color="black",shape="box"];4458 -> 4459[label="",style="solid", color="black", weight=3]; 30.08/13.43 1257[label="Pos (primMulNat xwv40010 xwv30000)",fontsize=16,color="green",shape="box"];1257 -> 1396[label="",style="dashed", color="green", weight=3]; 30.08/13.43 1258[label="Neg (primMulNat xwv40010 xwv30000)",fontsize=16,color="green",shape="box"];1258 -> 1397[label="",style="dashed", color="green", weight=3]; 30.08/13.43 1259[label="Neg (primMulNat xwv40010 xwv30000)",fontsize=16,color="green",shape="box"];1259 -> 1398[label="",style="dashed", color="green", weight=3]; 30.08/13.43 1260[label="Pos (primMulNat xwv40010 xwv30000)",fontsize=16,color="green",shape="box"];1260 -> 1399[label="",style="dashed", color="green", weight=3]; 30.08/13.43 1513 -> 1236[label="",style="dashed", color="red", weight=0]; 30.08/13.43 1513[label="FiniteMap.sizeFM (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="magenta"];1513 -> 1718[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 1514 -> 1236[label="",style="dashed", color="red", weight=0]; 30.08/13.43 1514[label="FiniteMap.sizeFM (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="magenta"];1514 -> 1719[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 1522[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) False",fontsize=16,color="black",shape="box"];1522 -> 1720[label="",style="solid", color="black", weight=3]; 30.08/13.43 1523[label="FiniteMap.glueBal2GlueBal1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) True",fontsize=16,color="black",shape="box"];1523 -> 1721[label="",style="solid", color="black", weight=3]; 30.08/13.43 2401[label="GT",fontsize=16,color="green",shape="box"];2402[label="xwv131",fontsize=16,color="green",shape="box"];2403[label="not False",fontsize=16,color="black",shape="box"];2403 -> 2544[label="",style="solid", color="black", weight=3]; 30.08/13.43 2404[label="not True",fontsize=16,color="black",shape="box"];2404 -> 2545[label="",style="solid", color="black", weight=3]; 30.08/13.43 2405[label="primCmpChar (Char xwv28000) (Char xwv29000)",fontsize=16,color="black",shape="box"];2405 -> 2546[label="",style="solid", color="black", weight=3]; 30.08/13.43 2415[label="xwv28000 == xwv29000",fontsize=16,color="blue",shape="box"];4938[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 4938[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4938 -> 2558[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4939[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 4939[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4939 -> 2559[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4940[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 4940[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4940 -> 2560[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4941[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 4941[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4941 -> 2561[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4942[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 4942[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4942 -> 2562[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4943[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 4943[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4943 -> 2563[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4944[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 4944[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4944 -> 2564[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4945[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 4945[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4945 -> 2565[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4946[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 4946[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4946 -> 2566[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4947[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 4947[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4947 -> 2567[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4948[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 4948[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4948 -> 2568[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4949[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 4949[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4949 -> 2569[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4950[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 4950[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4950 -> 2570[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4951[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2415 -> 4951[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4951 -> 2571[label="",style="solid", color="blue", weight=3]; 30.08/13.43 2416[label="xwv28001 <= xwv29001",fontsize=16,color="blue",shape="box"];4952[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 4952[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4952 -> 2572[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4953[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 4953[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4953 -> 2573[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4954[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 4954[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4954 -> 2574[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4955[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 4955[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4955 -> 2575[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4956[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 4956[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4956 -> 2576[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4957[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 4957[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4957 -> 2577[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4958[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 4958[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4958 -> 2578[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4959[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 4959[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4959 -> 2579[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4960[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 4960[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4960 -> 2580[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4961[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 4961[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4961 -> 2581[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4962[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 4962[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4962 -> 2582[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4963[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 4963[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4963 -> 2583[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4964[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 4964[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4964 -> 2584[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4965[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2416 -> 4965[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4965 -> 2585[label="",style="solid", color="blue", weight=3]; 30.08/13.43 2417 -> 1274[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2417[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2417 -> 2586[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2417 -> 2587[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2418[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2418 -> 2588[label="",style="solid", color="black", weight=3]; 30.08/13.43 2419[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2419 -> 2589[label="",style="solid", color="black", weight=3]; 30.08/13.43 2420[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2420 -> 2590[label="",style="solid", color="black", weight=3]; 30.08/13.43 2421[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2421 -> 2591[label="",style="solid", color="black", weight=3]; 30.08/13.43 2422[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2422 -> 2592[label="",style="solid", color="black", weight=3]; 30.08/13.43 2423[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2423 -> 2593[label="",style="solid", color="black", weight=3]; 30.08/13.43 2424[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2424 -> 2594[label="",style="solid", color="black", weight=3]; 30.08/13.43 2425[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2425 -> 2595[label="",style="solid", color="black", weight=3]; 30.08/13.43 2426[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2426 -> 2596[label="",style="solid", color="black", weight=3]; 30.08/13.43 2427[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2427 -> 2597[label="",style="solid", color="black", weight=3]; 30.08/13.43 2428[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2428 -> 2598[label="",style="solid", color="black", weight=3]; 30.08/13.43 2429[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2429 -> 2599[label="",style="solid", color="black", weight=3]; 30.08/13.43 2430[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2430 -> 2600[label="",style="solid", color="black", weight=3]; 30.08/13.43 2431[label="False || xwv138",fontsize=16,color="black",shape="box"];2431 -> 2601[label="",style="solid", color="black", weight=3]; 30.08/13.43 2432[label="True || xwv138",fontsize=16,color="black",shape="box"];2432 -> 2602[label="",style="solid", color="black", weight=3]; 30.08/13.43 2433[label="xwv28000",fontsize=16,color="green",shape="box"];2434[label="xwv29000",fontsize=16,color="green",shape="box"];2435[label="xwv28000",fontsize=16,color="green",shape="box"];2436[label="xwv29000",fontsize=16,color="green",shape="box"];2437[label="xwv28000",fontsize=16,color="green",shape="box"];2438[label="xwv29000",fontsize=16,color="green",shape="box"];2439[label="xwv28000",fontsize=16,color="green",shape="box"];2440[label="xwv29000",fontsize=16,color="green",shape="box"];2441[label="xwv28000",fontsize=16,color="green",shape="box"];2442[label="xwv29000",fontsize=16,color="green",shape="box"];2443[label="xwv28000",fontsize=16,color="green",shape="box"];2444[label="xwv29000",fontsize=16,color="green",shape="box"];2445[label="xwv28000",fontsize=16,color="green",shape="box"];2446[label="xwv29000",fontsize=16,color="green",shape="box"];2447[label="xwv28000",fontsize=16,color="green",shape="box"];2448[label="xwv29000",fontsize=16,color="green",shape="box"];2449[label="xwv28000",fontsize=16,color="green",shape="box"];2450[label="xwv29000",fontsize=16,color="green",shape="box"];2451[label="xwv28000",fontsize=16,color="green",shape="box"];2452[label="xwv29000",fontsize=16,color="green",shape="box"];2453[label="xwv28000",fontsize=16,color="green",shape="box"];2454[label="xwv29000",fontsize=16,color="green",shape="box"];2455[label="xwv28000",fontsize=16,color="green",shape="box"];2456[label="xwv29000",fontsize=16,color="green",shape="box"];2457[label="xwv28000",fontsize=16,color="green",shape="box"];2458[label="xwv29000",fontsize=16,color="green",shape="box"];2459[label="xwv28000",fontsize=16,color="green",shape="box"];2460[label="xwv29000",fontsize=16,color="green",shape="box"];2461[label="primCmpDouble (Double xwv28000 (Pos xwv280010)) xwv2900",fontsize=16,color="burlywood",shape="box"];4966[label="xwv2900/Double xwv29000 xwv29001",fontsize=10,color="white",style="solid",shape="box"];2461 -> 4966[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4966 -> 2603[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2462[label="primCmpDouble (Double xwv28000 (Neg xwv280010)) xwv2900",fontsize=16,color="burlywood",shape="box"];4967[label="xwv2900/Double xwv29000 xwv29001",fontsize=10,color="white",style="solid",shape="box"];2462 -> 4967[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4967 -> 2604[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2463[label="primCmpFloat (Float xwv28000 (Pos xwv280010)) xwv2900",fontsize=16,color="burlywood",shape="box"];4968[label="xwv2900/Float xwv29000 xwv29001",fontsize=10,color="white",style="solid",shape="box"];2463 -> 4968[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4968 -> 2605[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2464[label="primCmpFloat (Float xwv28000 (Neg xwv280010)) xwv2900",fontsize=16,color="burlywood",shape="box"];4969[label="xwv2900/Float xwv29000 xwv29001",fontsize=10,color="white",style="solid",shape="box"];2464 -> 4969[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4969 -> 2606[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 2465[label="EQ",fontsize=16,color="green",shape="box"];2466 -> 2607[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2466[label="primCompAux xwv28000 xwv29000 (compare xwv28001 xwv29001)",fontsize=16,color="magenta"];2466 -> 2608[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2467[label="GT",fontsize=16,color="green",shape="box"];2468[label="LT",fontsize=16,color="green",shape="box"];2469[label="EQ",fontsize=16,color="green",shape="box"];2470[label="xwv28000 == xwv29000",fontsize=16,color="blue",shape="box"];4970[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 4970[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4970 -> 2609[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4971[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 4971[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4971 -> 2610[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4972[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 4972[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4972 -> 2611[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4973[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 4973[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4973 -> 2612[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4974[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 4974[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4974 -> 2613[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4975[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 4975[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4975 -> 2614[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4976[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 4976[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4976 -> 2615[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4977[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 4977[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4977 -> 2616[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4978[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 4978[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4978 -> 2617[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4979[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 4979[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4979 -> 2618[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4980[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 4980[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4980 -> 2619[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4981[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 4981[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4981 -> 2620[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4982[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 4982[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4982 -> 2621[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4983[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2470 -> 4983[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4983 -> 2622[label="",style="solid", color="blue", weight=3]; 30.08/13.43 2471 -> 2408[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2471[label="xwv28001 < xwv29001 || xwv28001 == xwv29001 && xwv28002 <= xwv29002",fontsize=16,color="magenta"];2471 -> 2623[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2471 -> 2624[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2472 -> 1274[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2472[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2472 -> 2625[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2472 -> 2626[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2473 -> 2418[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2473[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2473 -> 2627[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2473 -> 2628[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2474 -> 2419[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2474[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2474 -> 2629[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2474 -> 2630[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2475 -> 2420[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2475[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2475 -> 2631[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2475 -> 2632[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2476 -> 2421[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2476[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2476 -> 2633[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2476 -> 2634[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2477 -> 2422[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2477[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2477 -> 2635[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2477 -> 2636[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2478 -> 2423[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2478[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2478 -> 2637[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2478 -> 2638[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2479 -> 2424[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2479[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2479 -> 2639[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2479 -> 2640[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2480 -> 2425[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2480[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2480 -> 2641[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2480 -> 2642[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2481 -> 2426[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2481[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2481 -> 2643[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2481 -> 2644[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2482 -> 2427[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2482[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2482 -> 2645[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2482 -> 2646[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2483 -> 2428[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2483[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2483 -> 2647[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2483 -> 2648[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2484 -> 2429[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2484[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2484 -> 2649[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2484 -> 2650[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2485 -> 2430[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2485[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2485 -> 2651[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2485 -> 2652[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2486[label="xwv28000",fontsize=16,color="green",shape="box"];2487[label="xwv29000",fontsize=16,color="green",shape="box"];2488[label="xwv28000",fontsize=16,color="green",shape="box"];2489[label="xwv29000",fontsize=16,color="green",shape="box"];2490[label="xwv28000",fontsize=16,color="green",shape="box"];2491[label="xwv29000",fontsize=16,color="green",shape="box"];2492[label="xwv28000",fontsize=16,color="green",shape="box"];2493[label="xwv29000",fontsize=16,color="green",shape="box"];2494[label="xwv28000",fontsize=16,color="green",shape="box"];2495[label="xwv29000",fontsize=16,color="green",shape="box"];2496[label="xwv28000",fontsize=16,color="green",shape="box"];2497[label="xwv29000",fontsize=16,color="green",shape="box"];2498[label="xwv28000",fontsize=16,color="green",shape="box"];2499[label="xwv29000",fontsize=16,color="green",shape="box"];2500[label="xwv28000",fontsize=16,color="green",shape="box"];2501[label="xwv29000",fontsize=16,color="green",shape="box"];2502[label="xwv28000",fontsize=16,color="green",shape="box"];2503[label="xwv29000",fontsize=16,color="green",shape="box"];2504[label="xwv28000",fontsize=16,color="green",shape="box"];2505[label="xwv29000",fontsize=16,color="green",shape="box"];2506[label="xwv28000",fontsize=16,color="green",shape="box"];2507[label="xwv29000",fontsize=16,color="green",shape="box"];2508[label="xwv28000",fontsize=16,color="green",shape="box"];2509[label="xwv29000",fontsize=16,color="green",shape="box"];2510[label="xwv28000",fontsize=16,color="green",shape="box"];2511[label="xwv29000",fontsize=16,color="green",shape="box"];2512[label="xwv28000",fontsize=16,color="green",shape="box"];2513[label="xwv29000",fontsize=16,color="green",shape="box"];2514[label="xwv28000",fontsize=16,color="green",shape="box"];2515[label="xwv29000",fontsize=16,color="green",shape="box"];2516[label="xwv28000",fontsize=16,color="green",shape="box"];2517[label="xwv29000",fontsize=16,color="green",shape="box"];2518[label="xwv28000",fontsize=16,color="green",shape="box"];2519[label="xwv29000",fontsize=16,color="green",shape="box"];2520[label="xwv28000",fontsize=16,color="green",shape="box"];2521[label="xwv29000",fontsize=16,color="green",shape="box"];2522[label="xwv28000",fontsize=16,color="green",shape="box"];2523[label="xwv29000",fontsize=16,color="green",shape="box"];2524[label="xwv28000",fontsize=16,color="green",shape="box"];2525[label="xwv29000",fontsize=16,color="green",shape="box"];2526[label="xwv28000",fontsize=16,color="green",shape="box"];2527[label="xwv29000",fontsize=16,color="green",shape="box"];2528[label="xwv28000",fontsize=16,color="green",shape="box"];2529[label="xwv29000",fontsize=16,color="green",shape="box"];2530[label="xwv28000",fontsize=16,color="green",shape="box"];2531[label="xwv29000",fontsize=16,color="green",shape="box"];2532[label="xwv28000",fontsize=16,color="green",shape="box"];2533[label="xwv29000",fontsize=16,color="green",shape="box"];2534[label="xwv28000",fontsize=16,color="green",shape="box"];2535[label="xwv29000",fontsize=16,color="green",shape="box"];2536[label="xwv28000",fontsize=16,color="green",shape="box"];2537[label="xwv29000",fontsize=16,color="green",shape="box"];2538[label="xwv28000",fontsize=16,color="green",shape="box"];2539[label="xwv29000",fontsize=16,color="green",shape="box"];2540[label="xwv28000",fontsize=16,color="green",shape="box"];2541[label="xwv29000",fontsize=16,color="green",shape="box"];2542 -> 1261[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2542[label="primCmpInt xwv28000 xwv29000",fontsize=16,color="magenta"];2542 -> 2653[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2542 -> 2654[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2543[label="compare (xwv28000 * xwv29001) (xwv29000 * xwv28001)",fontsize=16,color="blue",shape="box"];4984[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2543 -> 4984[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4984 -> 2655[label="",style="solid", color="blue", weight=3]; 30.08/13.43 4985[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2543 -> 4985[label="",style="solid", color="blue", weight=9]; 30.08/13.43 4985 -> 2656[label="",style="solid", color="blue", weight=3]; 30.08/13.43 3739[label="Pos (primPlusNat xwv2570 xwv2580)",fontsize=16,color="green",shape="box"];3739 -> 3757[label="",style="dashed", color="green", weight=3]; 30.08/13.43 3740[label="primMinusNat xwv2570 xwv2580",fontsize=16,color="burlywood",shape="triangle"];4986[label="xwv2570/Succ xwv25700",fontsize=10,color="white",style="solid",shape="box"];3740 -> 4986[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4986 -> 3758[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4987[label="xwv2570/Zero",fontsize=10,color="white",style="solid",shape="box"];3740 -> 4987[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4987 -> 3759[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 3741 -> 3740[label="",style="dashed", color="red", weight=0]; 30.08/13.43 3741[label="primMinusNat xwv2590 xwv2570",fontsize=16,color="magenta"];3741 -> 3760[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 3741 -> 3761[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 3742[label="Neg (primPlusNat xwv2570 xwv2590)",fontsize=16,color="green",shape="box"];3742 -> 3762[label="",style="dashed", color="green", weight=3]; 30.08/13.43 1766[label="primCmpInt (Pos (Succ xwv2800)) (Pos xwv290)",fontsize=16,color="black",shape="box"];1766 -> 1897[label="",style="solid", color="black", weight=3]; 30.08/13.43 1767[label="primCmpInt (Pos (Succ xwv2800)) (Neg xwv290)",fontsize=16,color="black",shape="box"];1767 -> 1898[label="",style="solid", color="black", weight=3]; 30.08/13.43 1768[label="primCmpInt (Pos Zero) (Pos xwv290)",fontsize=16,color="burlywood",shape="box"];4988[label="xwv290/Succ xwv2900",fontsize=10,color="white",style="solid",shape="box"];1768 -> 4988[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4988 -> 1899[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4989[label="xwv290/Zero",fontsize=10,color="white",style="solid",shape="box"];1768 -> 4989[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4989 -> 1900[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 1769[label="primCmpInt (Pos Zero) (Neg xwv290)",fontsize=16,color="burlywood",shape="box"];4990[label="xwv290/Succ xwv2900",fontsize=10,color="white",style="solid",shape="box"];1769 -> 4990[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4990 -> 1901[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4991[label="xwv290/Zero",fontsize=10,color="white",style="solid",shape="box"];1769 -> 4991[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4991 -> 1902[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 1770[label="primCmpInt (Neg (Succ xwv2800)) (Pos xwv290)",fontsize=16,color="black",shape="box"];1770 -> 1903[label="",style="solid", color="black", weight=3]; 30.08/13.43 1771[label="primCmpInt (Neg (Succ xwv2800)) (Neg xwv290)",fontsize=16,color="black",shape="box"];1771 -> 1904[label="",style="solid", color="black", weight=3]; 30.08/13.43 1772[label="primCmpInt (Neg Zero) (Pos xwv290)",fontsize=16,color="burlywood",shape="box"];4992[label="xwv290/Succ xwv2900",fontsize=10,color="white",style="solid",shape="box"];1772 -> 4992[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4992 -> 1905[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4993[label="xwv290/Zero",fontsize=10,color="white",style="solid",shape="box"];1772 -> 4993[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4993 -> 1906[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 1773[label="primCmpInt (Neg Zero) (Neg xwv290)",fontsize=16,color="burlywood",shape="box"];4994[label="xwv290/Succ xwv2900",fontsize=10,color="white",style="solid",shape="box"];1773 -> 4994[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4994 -> 1907[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4995[label="xwv290/Zero",fontsize=10,color="white",style="solid",shape="box"];1773 -> 4995[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4995 -> 1908[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 3743 -> 3670[label="",style="dashed", color="red", weight=0]; 30.08/13.43 3743[label="FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv253",fontsize=16,color="magenta"];3744 -> 3690[label="",style="dashed", color="red", weight=0]; 30.08/13.43 3744[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3745[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv340 xwv341 xwv344 xwv253 xwv340 xwv341 xwv253 xwv344 otherwise",fontsize=16,color="black",shape="box"];3745 -> 3763[label="",style="solid", color="black", weight=3]; 30.08/13.43 3746[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv340 xwv341 xwv344 xwv253 xwv253 xwv344 xwv253",fontsize=16,color="burlywood",shape="box"];4996[label="xwv253/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3746 -> 4996[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4996 -> 3764[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4997[label="xwv253/FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534",fontsize=10,color="white",style="solid",shape="box"];3746 -> 4997[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4997 -> 3765[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 3755 -> 3778[label="",style="dashed", color="red", weight=0]; 30.08/13.43 3755[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv253 xwv253 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 (FiniteMap.sizeFM xwv3443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3444)",fontsize=16,color="magenta"];3755 -> 3779[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 4459 -> 4461[label="",style="dashed", color="red", weight=0]; 30.08/13.43 4459[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv374 xwv371 xwv373) (FiniteMap.mkBranchRight_size xwv374 xwv371 xwv373)",fontsize=16,color="magenta"];4459 -> 4462[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 1396[label="primMulNat xwv40010 xwv30000",fontsize=16,color="burlywood",shape="triangle"];4998[label="xwv40010/Succ xwv400100",fontsize=10,color="white",style="solid",shape="box"];1396 -> 4998[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4998 -> 1567[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 4999[label="xwv40010/Zero",fontsize=10,color="white",style="solid",shape="box"];1396 -> 4999[label="",style="solid", color="burlywood", weight=9]; 30.08/13.43 4999 -> 1568[label="",style="solid", color="burlywood", weight=3]; 30.08/13.43 1397 -> 1396[label="",style="dashed", color="red", weight=0]; 30.08/13.43 1397[label="primMulNat xwv40010 xwv30000",fontsize=16,color="magenta"];1397 -> 1569[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 1398 -> 1396[label="",style="dashed", color="red", weight=0]; 30.08/13.43 1398[label="primMulNat xwv40010 xwv30000",fontsize=16,color="magenta"];1398 -> 1570[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 1399 -> 1396[label="",style="dashed", color="red", weight=0]; 30.08/13.43 1399[label="primMulNat xwv40010 xwv30000",fontsize=16,color="magenta"];1399 -> 1571[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 1399 -> 1572[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 1718[label="FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=16,color="green",shape="box"];1719[label="FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344",fontsize=16,color="green",shape="box"];1720[label="FiniteMap.glueBal2GlueBal0 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) otherwise",fontsize=16,color="black",shape="box"];1720 -> 1863[label="",style="solid", color="black", weight=3]; 30.08/13.43 1721 -> 3532[label="",style="dashed", color="red", weight=0]; 30.08/13.43 1721[label="FiniteMap.mkBalBranch (FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)) (FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)) (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.deleteMin (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344))",fontsize=16,color="magenta"];1721 -> 3569[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 1721 -> 3570[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 1721 -> 3571[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 1721 -> 3572[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2544[label="True",fontsize=16,color="green",shape="box"];2545[label="False",fontsize=16,color="green",shape="box"];2546 -> 1774[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2546[label="primCmpNat xwv28000 xwv29000",fontsize=16,color="magenta"];2546 -> 2657[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2546 -> 2658[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2558 -> 180[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2558[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2558 -> 2659[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2558 -> 2660[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2559 -> 182[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2559[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2559 -> 2661[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2559 -> 2662[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2560 -> 176[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2560[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2560 -> 2663[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2560 -> 2664[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2561 -> 183[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2561[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2561 -> 2665[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2561 -> 2666[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2562 -> 178[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2562[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2562 -> 2667[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2562 -> 2668[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2563 -> 179[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2563[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2563 -> 2669[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2563 -> 2670[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2564 -> 184[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2564[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2564 -> 2671[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2564 -> 2672[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2565 -> 186[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2565[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2565 -> 2673[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2565 -> 2674[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2566 -> 189[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2566[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2566 -> 2675[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2566 -> 2676[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2567 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2567[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2567 -> 2677[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2567 -> 2678[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2568 -> 187[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2568[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2568 -> 2679[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2568 -> 2680[label="",style="dashed", color="magenta", weight=3]; 30.08/13.43 2569 -> 181[label="",style="dashed", color="red", weight=0]; 30.08/13.43 2569[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2569 -> 2681[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2569 -> 2682[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2570 -> 188[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2570[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2570 -> 2683[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2570 -> 2684[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2571 -> 185[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2571[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2571 -> 2685[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2571 -> 2686[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2572 -> 2169[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2572[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2572 -> 2687[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2572 -> 2688[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2573 -> 2170[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2573[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2573 -> 2689[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2573 -> 2690[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2574 -> 2171[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2574[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2574 -> 2691[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2574 -> 2692[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2575 -> 2172[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2575[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2575 -> 2693[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2575 -> 2694[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2576 -> 2173[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2576[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2576 -> 2695[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2576 -> 2696[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2577 -> 2174[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2577[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2577 -> 2697[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2577 -> 2698[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2578 -> 2175[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2578[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2578 -> 2699[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2578 -> 2700[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2579 -> 2176[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2579[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2579 -> 2701[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2579 -> 2702[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2580 -> 2177[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2580[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2580 -> 2703[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2580 -> 2704[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2581 -> 2178[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2581[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2581 -> 2705[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2581 -> 2706[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2582 -> 2179[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2582[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2582 -> 2707[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2582 -> 2708[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2583 -> 2180[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2583[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2583 -> 2709[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2583 -> 2710[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2584 -> 2181[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2584[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2584 -> 2711[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2584 -> 2712[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2585 -> 2182[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2585[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2585 -> 2713[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2585 -> 2714[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2586[label="xwv29000",fontsize=16,color="green",shape="box"];2587[label="xwv28000",fontsize=16,color="green",shape="box"];2588 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2588[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2588 -> 2715[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2588 -> 2716[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2589 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2589[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2589 -> 2717[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2589 -> 2718[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2590 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2590[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2590 -> 2719[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2590 -> 2720[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2591 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2591[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2591 -> 2721[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2591 -> 2722[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2592 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2592[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2592 -> 2723[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2592 -> 2724[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2593 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2593[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2593 -> 2725[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2593 -> 2726[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2594 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2594[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2594 -> 2727[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2594 -> 2728[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2595 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2595[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2595 -> 2729[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2595 -> 2730[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2596 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2596[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2596 -> 2731[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2596 -> 2732[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2597 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2597[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2597 -> 2733[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2597 -> 2734[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2598 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2598[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2598 -> 2735[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2598 -> 2736[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2599 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2599[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2599 -> 2737[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2599 -> 2738[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2600 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2600[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2600 -> 2739[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2600 -> 2740[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2601[label="xwv138",fontsize=16,color="green",shape="box"];2602[label="True",fontsize=16,color="green",shape="box"];2603[label="primCmpDouble (Double xwv28000 (Pos xwv280010)) (Double xwv29000 xwv29001)",fontsize=16,color="burlywood",shape="box"];5000[label="xwv29001/Pos xwv290010",fontsize=10,color="white",style="solid",shape="box"];2603 -> 5000[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5000 -> 2741[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5001[label="xwv29001/Neg xwv290010",fontsize=10,color="white",style="solid",shape="box"];2603 -> 5001[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5001 -> 2742[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 2604[label="primCmpDouble (Double xwv28000 (Neg xwv280010)) (Double xwv29000 xwv29001)",fontsize=16,color="burlywood",shape="box"];5002[label="xwv29001/Pos xwv290010",fontsize=10,color="white",style="solid",shape="box"];2604 -> 5002[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5002 -> 2743[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5003[label="xwv29001/Neg xwv290010",fontsize=10,color="white",style="solid",shape="box"];2604 -> 5003[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5003 -> 2744[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 2605[label="primCmpFloat (Float xwv28000 (Pos xwv280010)) (Float xwv29000 xwv29001)",fontsize=16,color="burlywood",shape="box"];5004[label="xwv29001/Pos xwv290010",fontsize=10,color="white",style="solid",shape="box"];2605 -> 5004[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5004 -> 2745[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5005[label="xwv29001/Neg xwv290010",fontsize=10,color="white",style="solid",shape="box"];2605 -> 5005[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5005 -> 2746[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 2606[label="primCmpFloat (Float xwv28000 (Neg xwv280010)) (Float xwv29000 xwv29001)",fontsize=16,color="burlywood",shape="box"];5006[label="xwv29001/Pos xwv290010",fontsize=10,color="white",style="solid",shape="box"];2606 -> 5006[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5006 -> 2747[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5007[label="xwv29001/Neg xwv290010",fontsize=10,color="white",style="solid",shape="box"];2606 -> 5007[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5007 -> 2748[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 2608 -> 2250[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2608[label="compare xwv28001 xwv29001",fontsize=16,color="magenta"];2608 -> 2749[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2608 -> 2750[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2607[label="primCompAux xwv28000 xwv29000 xwv148",fontsize=16,color="black",shape="triangle"];2607 -> 2751[label="",style="solid", color="black", weight=3]; 30.08/13.44 2609 -> 180[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2609[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2609 -> 2765[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2609 -> 2766[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2610 -> 182[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2610[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2610 -> 2767[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2610 -> 2768[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2611 -> 176[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2611[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2611 -> 2769[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2611 -> 2770[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2612 -> 183[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2612[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2612 -> 2771[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2612 -> 2772[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2613 -> 178[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2613[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2613 -> 2773[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2613 -> 2774[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2614 -> 179[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2614[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2614 -> 2775[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2614 -> 2776[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2615 -> 184[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2615[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2615 -> 2777[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2615 -> 2778[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2616 -> 186[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2616[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2616 -> 2779[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2616 -> 2780[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2617 -> 189[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2617[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2617 -> 2781[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2617 -> 2782[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2618 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2618[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2618 -> 2783[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2618 -> 2784[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2619 -> 187[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2619[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2619 -> 2785[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2619 -> 2786[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2620 -> 181[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2620[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2620 -> 2787[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2620 -> 2788[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2621 -> 188[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2621[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2621 -> 2789[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2621 -> 2790[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2622 -> 185[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2622[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2622 -> 2791[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2622 -> 2792[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2623 -> 644[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2623[label="xwv28001 == xwv29001 && xwv28002 <= xwv29002",fontsize=16,color="magenta"];2623 -> 2793[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2623 -> 2794[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2624[label="xwv28001 < xwv29001",fontsize=16,color="blue",shape="box"];5008[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5008[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5008 -> 2795[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5009[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5009[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5009 -> 2796[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5010[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5010[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5010 -> 2797[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5011[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5011[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5011 -> 2798[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5012[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5012[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5012 -> 2799[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5013[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5013[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5013 -> 2800[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5014[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5014[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5014 -> 2801[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5015[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5015[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5015 -> 2802[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5016[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5016[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5016 -> 2803[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5017[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5017[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5017 -> 2804[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5018[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5018[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5018 -> 2805[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5019[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5019[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5019 -> 2806[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5020[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5020[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5020 -> 2807[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5021[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2624 -> 5021[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5021 -> 2808[label="",style="solid", color="blue", weight=3]; 30.08/13.44 2625[label="xwv29000",fontsize=16,color="green",shape="box"];2626[label="xwv28000",fontsize=16,color="green",shape="box"];2627[label="xwv29000",fontsize=16,color="green",shape="box"];2628[label="xwv28000",fontsize=16,color="green",shape="box"];2629[label="xwv29000",fontsize=16,color="green",shape="box"];2630[label="xwv28000",fontsize=16,color="green",shape="box"];2631[label="xwv29000",fontsize=16,color="green",shape="box"];2632[label="xwv28000",fontsize=16,color="green",shape="box"];2633[label="xwv29000",fontsize=16,color="green",shape="box"];2634[label="xwv28000",fontsize=16,color="green",shape="box"];2635[label="xwv29000",fontsize=16,color="green",shape="box"];2636[label="xwv28000",fontsize=16,color="green",shape="box"];2637[label="xwv29000",fontsize=16,color="green",shape="box"];2638[label="xwv28000",fontsize=16,color="green",shape="box"];2639[label="xwv29000",fontsize=16,color="green",shape="box"];2640[label="xwv28000",fontsize=16,color="green",shape="box"];2641[label="xwv29000",fontsize=16,color="green",shape="box"];2642[label="xwv28000",fontsize=16,color="green",shape="box"];2643[label="xwv29000",fontsize=16,color="green",shape="box"];2644[label="xwv28000",fontsize=16,color="green",shape="box"];2645[label="xwv29000",fontsize=16,color="green",shape="box"];2646[label="xwv28000",fontsize=16,color="green",shape="box"];2647[label="xwv29000",fontsize=16,color="green",shape="box"];2648[label="xwv28000",fontsize=16,color="green",shape="box"];2649[label="xwv29000",fontsize=16,color="green",shape="box"];2650[label="xwv28000",fontsize=16,color="green",shape="box"];2651[label="xwv29000",fontsize=16,color="green",shape="box"];2652[label="xwv28000",fontsize=16,color="green",shape="box"];2653[label="xwv28000",fontsize=16,color="green",shape="box"];2654[label="xwv29000",fontsize=16,color="green",shape="box"];2655 -> 1178[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2655[label="compare (xwv28000 * xwv29001) (xwv29000 * xwv28001)",fontsize=16,color="magenta"];2655 -> 2809[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2655 -> 2810[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2656 -> 2251[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2656[label="compare (xwv28000 * xwv29001) (xwv29000 * xwv28001)",fontsize=16,color="magenta"];2656 -> 2811[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2656 -> 2812[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3757 -> 2103[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3757[label="primPlusNat xwv2570 xwv2580",fontsize=16,color="magenta"];3757 -> 3786[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3757 -> 3787[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3758[label="primMinusNat (Succ xwv25700) xwv2580",fontsize=16,color="burlywood",shape="box"];5022[label="xwv2580/Succ xwv25800",fontsize=10,color="white",style="solid",shape="box"];3758 -> 5022[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5022 -> 3788[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5023[label="xwv2580/Zero",fontsize=10,color="white",style="solid",shape="box"];3758 -> 5023[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5023 -> 3789[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3759[label="primMinusNat Zero xwv2580",fontsize=16,color="burlywood",shape="box"];5024[label="xwv2580/Succ xwv25800",fontsize=10,color="white",style="solid",shape="box"];3759 -> 5024[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5024 -> 3790[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5025[label="xwv2580/Zero",fontsize=10,color="white",style="solid",shape="box"];3759 -> 5025[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5025 -> 3791[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3760[label="xwv2570",fontsize=16,color="green",shape="box"];3761[label="xwv2590",fontsize=16,color="green",shape="box"];3762 -> 2103[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3762[label="primPlusNat xwv2570 xwv2590",fontsize=16,color="magenta"];3762 -> 3792[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3762 -> 3793[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 1897 -> 1774[label="",style="dashed", color="red", weight=0]; 30.08/13.44 1897[label="primCmpNat (Succ xwv2800) xwv290",fontsize=16,color="magenta"];1897 -> 2012[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 1897 -> 2013[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 1898[label="GT",fontsize=16,color="green",shape="box"];1899[label="primCmpInt (Pos Zero) (Pos (Succ xwv2900))",fontsize=16,color="black",shape="box"];1899 -> 2014[label="",style="solid", color="black", weight=3]; 30.08/13.44 1900[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1900 -> 2015[label="",style="solid", color="black", weight=3]; 30.08/13.44 1901[label="primCmpInt (Pos Zero) (Neg (Succ xwv2900))",fontsize=16,color="black",shape="box"];1901 -> 2016[label="",style="solid", color="black", weight=3]; 30.08/13.44 1902[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1902 -> 2017[label="",style="solid", color="black", weight=3]; 30.08/13.44 1903[label="LT",fontsize=16,color="green",shape="box"];1904 -> 1774[label="",style="dashed", color="red", weight=0]; 30.08/13.44 1904[label="primCmpNat xwv290 (Succ xwv2800)",fontsize=16,color="magenta"];1904 -> 2018[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 1904 -> 2019[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 1905[label="primCmpInt (Neg Zero) (Pos (Succ xwv2900))",fontsize=16,color="black",shape="box"];1905 -> 2020[label="",style="solid", color="black", weight=3]; 30.08/13.44 1906[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1906 -> 2021[label="",style="solid", color="black", weight=3]; 30.08/13.44 1907[label="primCmpInt (Neg Zero) (Neg (Succ xwv2900))",fontsize=16,color="black",shape="box"];1907 -> 2022[label="",style="solid", color="black", weight=3]; 30.08/13.44 1908[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1908 -> 2023[label="",style="solid", color="black", weight=3]; 30.08/13.44 3763[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv340 xwv341 xwv344 xwv253 xwv340 xwv341 xwv253 xwv344 True",fontsize=16,color="black",shape="box"];3763 -> 3794[label="",style="solid", color="black", weight=3]; 30.08/13.44 3764[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv340 xwv341 xwv344 FiniteMap.EmptyFM FiniteMap.EmptyFM xwv344 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3764 -> 3795[label="",style="solid", color="black", weight=3]; 30.08/13.44 3765[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv344 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534)",fontsize=16,color="black",shape="box"];3765 -> 3796[label="",style="solid", color="black", weight=3]; 30.08/13.44 3779 -> 1274[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3779[label="FiniteMap.sizeFM xwv3443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3444",fontsize=16,color="magenta"];3779 -> 3797[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3779 -> 3798[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3778[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv253 xwv253 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 xwv265",fontsize=16,color="burlywood",shape="triangle"];5026[label="xwv265/False",fontsize=10,color="white",style="solid",shape="box"];3778 -> 5026[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5026 -> 3799[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5027[label="xwv265/True",fontsize=10,color="white",style="solid",shape="box"];3778 -> 5027[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5027 -> 3800[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 4462[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv374 xwv371 xwv373",fontsize=16,color="black",shape="box"];4462 -> 4464[label="",style="solid", color="black", weight=3]; 30.08/13.44 4461[label="primPlusInt xwv375 (FiniteMap.mkBranchRight_size xwv374 xwv371 xwv373)",fontsize=16,color="burlywood",shape="triangle"];5028[label="xwv375/Pos xwv3750",fontsize=10,color="white",style="solid",shape="box"];4461 -> 5028[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5028 -> 4465[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5029[label="xwv375/Neg xwv3750",fontsize=10,color="white",style="solid",shape="box"];4461 -> 5029[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5029 -> 4466[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 1567[label="primMulNat (Succ xwv400100) xwv30000",fontsize=16,color="burlywood",shape="box"];5030[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1567 -> 5030[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5030 -> 1762[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5031[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1567 -> 5031[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5031 -> 1763[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 1568[label="primMulNat Zero xwv30000",fontsize=16,color="burlywood",shape="box"];5032[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1568 -> 5032[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5032 -> 1764[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5033[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1568 -> 5033[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5033 -> 1765[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 1569[label="xwv30000",fontsize=16,color="green",shape="box"];1570[label="xwv40010",fontsize=16,color="green",shape="box"];1571[label="xwv40010",fontsize=16,color="green",shape="box"];1572[label="xwv30000",fontsize=16,color="green",shape="box"];1863[label="FiniteMap.glueBal2GlueBal0 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) True",fontsize=16,color="black",shape="box"];1863 -> 1988[label="",style="solid", color="black", weight=3]; 30.08/13.44 3569[label="FiniteMap.deleteMin (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="burlywood",shape="triangle"];5034[label="xwv343/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3569 -> 5034[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5034 -> 3597[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5035[label="xwv343/FiniteMap.Branch xwv3430 xwv3431 xwv3432 xwv3433 xwv3434",fontsize=10,color="white",style="solid",shape="box"];3569 -> 5035[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5035 -> 3598[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3570[label="FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=16,color="green",shape="box"];3571[label="FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];3571 -> 3599[label="",style="solid", color="black", weight=3]; 30.08/13.44 3572[label="FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];3572 -> 3600[label="",style="solid", color="black", weight=3]; 30.08/13.44 2657[label="xwv28000",fontsize=16,color="green",shape="box"];2658[label="xwv29000",fontsize=16,color="green",shape="box"];1774[label="primCmpNat xwv280 xwv290",fontsize=16,color="burlywood",shape="triangle"];5036[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];1774 -> 5036[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5036 -> 1909[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5037[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];1774 -> 5037[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5037 -> 1910[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 2659[label="xwv29000",fontsize=16,color="green",shape="box"];2660[label="xwv28000",fontsize=16,color="green",shape="box"];2661[label="xwv29000",fontsize=16,color="green",shape="box"];2662[label="xwv28000",fontsize=16,color="green",shape="box"];2663[label="xwv29000",fontsize=16,color="green",shape="box"];2664[label="xwv28000",fontsize=16,color="green",shape="box"];2665[label="xwv29000",fontsize=16,color="green",shape="box"];2666[label="xwv28000",fontsize=16,color="green",shape="box"];2667[label="xwv29000",fontsize=16,color="green",shape="box"];2668[label="xwv28000",fontsize=16,color="green",shape="box"];2669[label="xwv29000",fontsize=16,color="green",shape="box"];2670[label="xwv28000",fontsize=16,color="green",shape="box"];2671[label="xwv29000",fontsize=16,color="green",shape="box"];2672[label="xwv28000",fontsize=16,color="green",shape="box"];2673[label="xwv29000",fontsize=16,color="green",shape="box"];2674[label="xwv28000",fontsize=16,color="green",shape="box"];2675[label="xwv29000",fontsize=16,color="green",shape="box"];2676[label="xwv28000",fontsize=16,color="green",shape="box"];2677[label="xwv29000",fontsize=16,color="green",shape="box"];2678[label="xwv28000",fontsize=16,color="green",shape="box"];2679[label="xwv29000",fontsize=16,color="green",shape="box"];2680[label="xwv28000",fontsize=16,color="green",shape="box"];2681[label="xwv29000",fontsize=16,color="green",shape="box"];2682[label="xwv28000",fontsize=16,color="green",shape="box"];2683[label="xwv29000",fontsize=16,color="green",shape="box"];2684[label="xwv28000",fontsize=16,color="green",shape="box"];2685[label="xwv29000",fontsize=16,color="green",shape="box"];2686[label="xwv28000",fontsize=16,color="green",shape="box"];2687[label="xwv28001",fontsize=16,color="green",shape="box"];2688[label="xwv29001",fontsize=16,color="green",shape="box"];2689[label="xwv28001",fontsize=16,color="green",shape="box"];2690[label="xwv29001",fontsize=16,color="green",shape="box"];2691[label="xwv28001",fontsize=16,color="green",shape="box"];2692[label="xwv29001",fontsize=16,color="green",shape="box"];2693[label="xwv28001",fontsize=16,color="green",shape="box"];2694[label="xwv29001",fontsize=16,color="green",shape="box"];2695[label="xwv28001",fontsize=16,color="green",shape="box"];2696[label="xwv29001",fontsize=16,color="green",shape="box"];2697[label="xwv28001",fontsize=16,color="green",shape="box"];2698[label="xwv29001",fontsize=16,color="green",shape="box"];2699[label="xwv28001",fontsize=16,color="green",shape="box"];2700[label="xwv29001",fontsize=16,color="green",shape="box"];2701[label="xwv28001",fontsize=16,color="green",shape="box"];2702[label="xwv29001",fontsize=16,color="green",shape="box"];2703[label="xwv28001",fontsize=16,color="green",shape="box"];2704[label="xwv29001",fontsize=16,color="green",shape="box"];2705[label="xwv28001",fontsize=16,color="green",shape="box"];2706[label="xwv29001",fontsize=16,color="green",shape="box"];2707[label="xwv28001",fontsize=16,color="green",shape="box"];2708[label="xwv29001",fontsize=16,color="green",shape="box"];2709[label="xwv28001",fontsize=16,color="green",shape="box"];2710[label="xwv29001",fontsize=16,color="green",shape="box"];2711[label="xwv28001",fontsize=16,color="green",shape="box"];2712[label="xwv29001",fontsize=16,color="green",shape="box"];2713[label="xwv28001",fontsize=16,color="green",shape="box"];2714[label="xwv29001",fontsize=16,color="green",shape="box"];2715[label="LT",fontsize=16,color="green",shape="box"];2716 -> 2246[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2716[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2716 -> 2813[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2716 -> 2814[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2717[label="LT",fontsize=16,color="green",shape="box"];2718[label="compare xwv28000 xwv29000",fontsize=16,color="black",shape="triangle"];2718 -> 2815[label="",style="solid", color="black", weight=3]; 30.08/13.44 2719[label="LT",fontsize=16,color="green",shape="box"];2720[label="compare xwv28000 xwv29000",fontsize=16,color="black",shape="triangle"];2720 -> 2816[label="",style="solid", color="black", weight=3]; 30.08/13.44 2721[label="LT",fontsize=16,color="green",shape="box"];2722[label="compare xwv28000 xwv29000",fontsize=16,color="black",shape="triangle"];2722 -> 2817[label="",style="solid", color="black", weight=3]; 30.08/13.44 2723[label="LT",fontsize=16,color="green",shape="box"];2724 -> 2247[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2724[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2724 -> 2818[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2724 -> 2819[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2725[label="LT",fontsize=16,color="green",shape="box"];2726 -> 2248[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2726[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2726 -> 2820[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2726 -> 2821[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2727[label="LT",fontsize=16,color="green",shape="box"];2728 -> 2249[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2728[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2728 -> 2822[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2728 -> 2823[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2729[label="LT",fontsize=16,color="green",shape="box"];2730 -> 2250[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2730[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2730 -> 2824[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2730 -> 2825[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2731[label="LT",fontsize=16,color="green",shape="box"];2732[label="compare xwv28000 xwv29000",fontsize=16,color="black",shape="triangle"];2732 -> 2826[label="",style="solid", color="black", weight=3]; 30.08/13.44 2733[label="LT",fontsize=16,color="green",shape="box"];2734[label="compare xwv28000 xwv29000",fontsize=16,color="black",shape="triangle"];2734 -> 2827[label="",style="solid", color="black", weight=3]; 30.08/13.44 2735[label="LT",fontsize=16,color="green",shape="box"];2736[label="compare xwv28000 xwv29000",fontsize=16,color="black",shape="triangle"];2736 -> 2828[label="",style="solid", color="black", weight=3]; 30.08/13.44 2737[label="LT",fontsize=16,color="green",shape="box"];2738 -> 2251[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2738[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2738 -> 2829[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2738 -> 2830[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2739[label="LT",fontsize=16,color="green",shape="box"];2740 -> 2252[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2740[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2740 -> 2831[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2740 -> 2832[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2741[label="primCmpDouble (Double xwv28000 (Pos xwv280010)) (Double xwv29000 (Pos xwv290010))",fontsize=16,color="black",shape="box"];2741 -> 2833[label="",style="solid", color="black", weight=3]; 30.08/13.44 2742[label="primCmpDouble (Double xwv28000 (Pos xwv280010)) (Double xwv29000 (Neg xwv290010))",fontsize=16,color="black",shape="box"];2742 -> 2834[label="",style="solid", color="black", weight=3]; 30.08/13.44 2743[label="primCmpDouble (Double xwv28000 (Neg xwv280010)) (Double xwv29000 (Pos xwv290010))",fontsize=16,color="black",shape="box"];2743 -> 2835[label="",style="solid", color="black", weight=3]; 30.08/13.44 2744[label="primCmpDouble (Double xwv28000 (Neg xwv280010)) (Double xwv29000 (Neg xwv290010))",fontsize=16,color="black",shape="box"];2744 -> 2836[label="",style="solid", color="black", weight=3]; 30.08/13.44 2745[label="primCmpFloat (Float xwv28000 (Pos xwv280010)) (Float xwv29000 (Pos xwv290010))",fontsize=16,color="black",shape="box"];2745 -> 2837[label="",style="solid", color="black", weight=3]; 30.08/13.44 2746[label="primCmpFloat (Float xwv28000 (Pos xwv280010)) (Float xwv29000 (Neg xwv290010))",fontsize=16,color="black",shape="box"];2746 -> 2838[label="",style="solid", color="black", weight=3]; 30.08/13.44 2747[label="primCmpFloat (Float xwv28000 (Neg xwv280010)) (Float xwv29000 (Pos xwv290010))",fontsize=16,color="black",shape="box"];2747 -> 2839[label="",style="solid", color="black", weight=3]; 30.08/13.44 2748[label="primCmpFloat (Float xwv28000 (Neg xwv280010)) (Float xwv29000 (Neg xwv290010))",fontsize=16,color="black",shape="box"];2748 -> 2840[label="",style="solid", color="black", weight=3]; 30.08/13.44 2749[label="xwv28001",fontsize=16,color="green",shape="box"];2750[label="xwv29001",fontsize=16,color="green",shape="box"];2751 -> 2841[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2751[label="primCompAux0 xwv148 (compare xwv28000 xwv29000)",fontsize=16,color="magenta"];2751 -> 2842[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2751 -> 2843[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2765[label="xwv29000",fontsize=16,color="green",shape="box"];2766[label="xwv28000",fontsize=16,color="green",shape="box"];2767[label="xwv29000",fontsize=16,color="green",shape="box"];2768[label="xwv28000",fontsize=16,color="green",shape="box"];2769[label="xwv29000",fontsize=16,color="green",shape="box"];2770[label="xwv28000",fontsize=16,color="green",shape="box"];2771[label="xwv29000",fontsize=16,color="green",shape="box"];2772[label="xwv28000",fontsize=16,color="green",shape="box"];2773[label="xwv29000",fontsize=16,color="green",shape="box"];2774[label="xwv28000",fontsize=16,color="green",shape="box"];2775[label="xwv29000",fontsize=16,color="green",shape="box"];2776[label="xwv28000",fontsize=16,color="green",shape="box"];2777[label="xwv29000",fontsize=16,color="green",shape="box"];2778[label="xwv28000",fontsize=16,color="green",shape="box"];2779[label="xwv29000",fontsize=16,color="green",shape="box"];2780[label="xwv28000",fontsize=16,color="green",shape="box"];2781[label="xwv29000",fontsize=16,color="green",shape="box"];2782[label="xwv28000",fontsize=16,color="green",shape="box"];2783[label="xwv29000",fontsize=16,color="green",shape="box"];2784[label="xwv28000",fontsize=16,color="green",shape="box"];2785[label="xwv29000",fontsize=16,color="green",shape="box"];2786[label="xwv28000",fontsize=16,color="green",shape="box"];2787[label="xwv29000",fontsize=16,color="green",shape="box"];2788[label="xwv28000",fontsize=16,color="green",shape="box"];2789[label="xwv29000",fontsize=16,color="green",shape="box"];2790[label="xwv28000",fontsize=16,color="green",shape="box"];2791[label="xwv29000",fontsize=16,color="green",shape="box"];2792[label="xwv28000",fontsize=16,color="green",shape="box"];2793[label="xwv28001 == xwv29001",fontsize=16,color="blue",shape="box"];5038[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5038[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5038 -> 2844[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5039[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5039[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5039 -> 2845[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5040[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5040[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5040 -> 2846[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5041[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5041[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5041 -> 2847[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5042[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5042[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5042 -> 2848[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5043[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5043[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5043 -> 2849[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5044[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5044[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5044 -> 2850[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5045[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5045[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5045 -> 2851[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5046[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5046[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5046 -> 2852[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5047[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5047[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5047 -> 2853[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5048[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5048[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5048 -> 2854[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5049[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5049[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5049 -> 2855[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5050[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5050[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5050 -> 2856[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5051[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2793 -> 5051[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5051 -> 2857[label="",style="solid", color="blue", weight=3]; 30.08/13.44 2794[label="xwv28002 <= xwv29002",fontsize=16,color="blue",shape="box"];5052[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5052[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5052 -> 2858[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5053[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5053[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5053 -> 2859[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5054[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5054[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5054 -> 2860[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5055[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5055[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5055 -> 2861[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5056[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5056[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5056 -> 2862[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5057[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5057[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5057 -> 2863[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5058[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5058[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5058 -> 2864[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5059[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5059[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5059 -> 2865[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5060[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5060[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5060 -> 2866[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5061[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5061[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5061 -> 2867[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5062[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5062[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5062 -> 2868[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5063[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5063[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5063 -> 2869[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5064[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5064[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5064 -> 2870[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5065[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2794 -> 5065[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5065 -> 2871[label="",style="solid", color="blue", weight=3]; 30.08/13.44 2795 -> 1274[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2795[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2795 -> 2872[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2795 -> 2873[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2796 -> 2418[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2796[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2796 -> 2874[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2796 -> 2875[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2797 -> 2419[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2797[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2797 -> 2876[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2797 -> 2877[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2798 -> 2420[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2798[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2798 -> 2878[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2798 -> 2879[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2799 -> 2421[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2799[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2799 -> 2880[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2799 -> 2881[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2800 -> 2422[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2800[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2800 -> 2882[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2800 -> 2883[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2801 -> 2423[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2801[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2801 -> 2884[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2801 -> 2885[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2802 -> 2424[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2802[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2802 -> 2886[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2802 -> 2887[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2803 -> 2425[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2803[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2803 -> 2888[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2803 -> 2889[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2804 -> 2426[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2804[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2804 -> 2890[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2804 -> 2891[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2805 -> 2427[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2805[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2805 -> 2892[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2805 -> 2893[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2806 -> 2428[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2806[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2806 -> 2894[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2806 -> 2895[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2807 -> 2429[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2807[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2807 -> 2896[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2807 -> 2897[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2808 -> 2430[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2808[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2808 -> 2898[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2808 -> 2899[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2809 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2809[label="xwv28000 * xwv29001",fontsize=16,color="magenta"];2809 -> 2900[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2809 -> 2901[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2810 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2810[label="xwv29000 * xwv28001",fontsize=16,color="magenta"];2810 -> 2902[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2810 -> 2903[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2811[label="xwv28000 * xwv29001",fontsize=16,color="burlywood",shape="triangle"];5066[label="xwv28000/Integer xwv280000",fontsize=10,color="white",style="solid",shape="box"];2811 -> 5066[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5066 -> 2904[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 2812 -> 2811[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2812[label="xwv29000 * xwv28001",fontsize=16,color="magenta"];2812 -> 2905[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2812 -> 2906[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3786[label="xwv2570",fontsize=16,color="green",shape="box"];3787[label="xwv2580",fontsize=16,color="green",shape="box"];2103[label="primPlusNat xwv3320 xwv970",fontsize=16,color="burlywood",shape="triangle"];5067[label="xwv3320/Succ xwv33200",fontsize=10,color="white",style="solid",shape="box"];2103 -> 5067[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5067 -> 2129[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5068[label="xwv3320/Zero",fontsize=10,color="white",style="solid",shape="box"];2103 -> 5068[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5068 -> 2130[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3788[label="primMinusNat (Succ xwv25700) (Succ xwv25800)",fontsize=16,color="black",shape="box"];3788 -> 3813[label="",style="solid", color="black", weight=3]; 30.08/13.44 3789[label="primMinusNat (Succ xwv25700) Zero",fontsize=16,color="black",shape="box"];3789 -> 3814[label="",style="solid", color="black", weight=3]; 30.08/13.44 3790[label="primMinusNat Zero (Succ xwv25800)",fontsize=16,color="black",shape="box"];3790 -> 3815[label="",style="solid", color="black", weight=3]; 30.08/13.44 3791[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];3791 -> 3816[label="",style="solid", color="black", weight=3]; 30.08/13.44 3792[label="xwv2570",fontsize=16,color="green",shape="box"];3793[label="xwv2590",fontsize=16,color="green",shape="box"];2012[label="Succ xwv2800",fontsize=16,color="green",shape="box"];2013[label="xwv290",fontsize=16,color="green",shape="box"];2014 -> 1774[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2014[label="primCmpNat Zero (Succ xwv2900)",fontsize=16,color="magenta"];2014 -> 2145[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2014 -> 2146[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2015[label="EQ",fontsize=16,color="green",shape="box"];2016[label="GT",fontsize=16,color="green",shape="box"];2017[label="EQ",fontsize=16,color="green",shape="box"];2018[label="xwv290",fontsize=16,color="green",shape="box"];2019[label="Succ xwv2800",fontsize=16,color="green",shape="box"];2020[label="LT",fontsize=16,color="green",shape="box"];2021[label="EQ",fontsize=16,color="green",shape="box"];2022 -> 1774[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2022[label="primCmpNat (Succ xwv2900) Zero",fontsize=16,color="magenta"];2022 -> 2147[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2022 -> 2148[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2023[label="EQ",fontsize=16,color="green",shape="box"];3794 -> 4355[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3794[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) xwv340 xwv341 xwv253 xwv344",fontsize=16,color="magenta"];3794 -> 4361[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3794 -> 4362[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3794 -> 4363[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3794 -> 4364[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3794 -> 4365[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3795[label="error []",fontsize=16,color="red",shape="box"];3796[label="FiniteMap.mkBalBranch6MkBalBranch12 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv344 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534)",fontsize=16,color="black",shape="box"];3796 -> 3818[label="",style="solid", color="black", weight=3]; 30.08/13.44 3797 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3797[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3444",fontsize=16,color="magenta"];3797 -> 3819[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3797 -> 3820[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3798 -> 1236[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3798[label="FiniteMap.sizeFM xwv3443",fontsize=16,color="magenta"];3798 -> 3821[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3799[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv253 xwv253 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 False",fontsize=16,color="black",shape="box"];3799 -> 3822[label="",style="solid", color="black", weight=3]; 30.08/13.44 3800[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv253 xwv253 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 True",fontsize=16,color="black",shape="box"];3800 -> 3823[label="",style="solid", color="black", weight=3]; 30.08/13.44 4464 -> 3703[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4464[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xwv374 xwv371 xwv373)",fontsize=16,color="magenta"];4464 -> 4467[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4464 -> 4468[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4465[label="primPlusInt (Pos xwv3750) (FiniteMap.mkBranchRight_size xwv374 xwv371 xwv373)",fontsize=16,color="black",shape="box"];4465 -> 4469[label="",style="solid", color="black", weight=3]; 30.08/13.44 4466[label="primPlusInt (Neg xwv3750) (FiniteMap.mkBranchRight_size xwv374 xwv371 xwv373)",fontsize=16,color="black",shape="box"];4466 -> 4470[label="",style="solid", color="black", weight=3]; 30.08/13.44 1762[label="primMulNat (Succ xwv400100) (Succ xwv300000)",fontsize=16,color="black",shape="box"];1762 -> 1893[label="",style="solid", color="black", weight=3]; 30.08/13.44 1763[label="primMulNat (Succ xwv400100) Zero",fontsize=16,color="black",shape="box"];1763 -> 1894[label="",style="solid", color="black", weight=3]; 30.08/13.44 1764[label="primMulNat Zero (Succ xwv300000)",fontsize=16,color="black",shape="box"];1764 -> 1895[label="",style="solid", color="black", weight=3]; 30.08/13.44 1765[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1765 -> 1896[label="",style="solid", color="black", weight=3]; 30.08/13.44 1988 -> 3532[label="",style="dashed", color="red", weight=0]; 30.08/13.44 1988[label="FiniteMap.mkBalBranch (FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)) (FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)) (FiniteMap.deleteMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="magenta"];1988 -> 3573[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 1988 -> 3574[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 1988 -> 3575[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 1988 -> 3576[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3597[label="FiniteMap.deleteMin (FiniteMap.Branch xwv340 xwv341 xwv342 FiniteMap.EmptyFM xwv344)",fontsize=16,color="black",shape="box"];3597 -> 3611[label="",style="solid", color="black", weight=3]; 30.08/13.44 3598[label="FiniteMap.deleteMin (FiniteMap.Branch xwv340 xwv341 xwv342 (FiniteMap.Branch xwv3430 xwv3431 xwv3432 xwv3433 xwv3434) xwv344)",fontsize=16,color="black",shape="box"];3598 -> 3612[label="",style="solid", color="black", weight=3]; 30.08/13.44 3599[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.glueBal2Vv3 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344))",fontsize=16,color="black",shape="box"];3599 -> 3613[label="",style="solid", color="black", weight=3]; 30.08/13.44 3600[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.glueBal2Vv3 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344))",fontsize=16,color="black",shape="box"];3600 -> 3614[label="",style="solid", color="black", weight=3]; 30.08/13.44 1909[label="primCmpNat (Succ xwv2800) xwv290",fontsize=16,color="burlywood",shape="box"];5069[label="xwv290/Succ xwv2900",fontsize=10,color="white",style="solid",shape="box"];1909 -> 5069[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5069 -> 2024[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5070[label="xwv290/Zero",fontsize=10,color="white",style="solid",shape="box"];1909 -> 5070[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5070 -> 2025[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 1910[label="primCmpNat Zero xwv290",fontsize=16,color="burlywood",shape="box"];5071[label="xwv290/Succ xwv2900",fontsize=10,color="white",style="solid",shape="box"];1910 -> 5071[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5071 -> 2026[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5072[label="xwv290/Zero",fontsize=10,color="white",style="solid",shape="box"];1910 -> 5072[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5072 -> 2027[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 2813[label="xwv28000",fontsize=16,color="green",shape="box"];2814[label="xwv29000",fontsize=16,color="green",shape="box"];2815[label="compare3 xwv28000 xwv29000",fontsize=16,color="black",shape="box"];2815 -> 2907[label="",style="solid", color="black", weight=3]; 30.08/13.44 2816[label="compare3 xwv28000 xwv29000",fontsize=16,color="black",shape="box"];2816 -> 2908[label="",style="solid", color="black", weight=3]; 30.08/13.44 2817[label="compare3 xwv28000 xwv29000",fontsize=16,color="black",shape="box"];2817 -> 2909[label="",style="solid", color="black", weight=3]; 30.08/13.44 2818[label="xwv28000",fontsize=16,color="green",shape="box"];2819[label="xwv29000",fontsize=16,color="green",shape="box"];2820[label="xwv28000",fontsize=16,color="green",shape="box"];2821[label="xwv29000",fontsize=16,color="green",shape="box"];2822[label="xwv28000",fontsize=16,color="green",shape="box"];2823[label="xwv29000",fontsize=16,color="green",shape="box"];2824[label="xwv28000",fontsize=16,color="green",shape="box"];2825[label="xwv29000",fontsize=16,color="green",shape="box"];2826[label="compare3 xwv28000 xwv29000",fontsize=16,color="black",shape="box"];2826 -> 2910[label="",style="solid", color="black", weight=3]; 30.08/13.44 2827[label="compare3 xwv28000 xwv29000",fontsize=16,color="black",shape="box"];2827 -> 2911[label="",style="solid", color="black", weight=3]; 30.08/13.44 2828[label="compare3 xwv28000 xwv29000",fontsize=16,color="black",shape="box"];2828 -> 2912[label="",style="solid", color="black", weight=3]; 30.08/13.44 2829[label="xwv28000",fontsize=16,color="green",shape="box"];2830[label="xwv29000",fontsize=16,color="green",shape="box"];2831[label="xwv28000",fontsize=16,color="green",shape="box"];2832[label="xwv29000",fontsize=16,color="green",shape="box"];2833 -> 1178[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2833[label="compare (xwv28000 * Pos xwv290010) (Pos xwv280010 * xwv29000)",fontsize=16,color="magenta"];2833 -> 2913[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2833 -> 2914[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2834 -> 1178[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2834[label="compare (xwv28000 * Pos xwv290010) (Neg xwv280010 * xwv29000)",fontsize=16,color="magenta"];2834 -> 2915[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2834 -> 2916[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2835 -> 1178[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2835[label="compare (xwv28000 * Neg xwv290010) (Pos xwv280010 * xwv29000)",fontsize=16,color="magenta"];2835 -> 2917[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2835 -> 2918[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2836 -> 1178[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2836[label="compare (xwv28000 * Neg xwv290010) (Neg xwv280010 * xwv29000)",fontsize=16,color="magenta"];2836 -> 2919[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2836 -> 2920[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2837 -> 1178[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2837[label="compare (xwv28000 * Pos xwv290010) (Pos xwv280010 * xwv29000)",fontsize=16,color="magenta"];2837 -> 2921[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2837 -> 2922[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2838 -> 1178[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2838[label="compare (xwv28000 * Pos xwv290010) (Neg xwv280010 * xwv29000)",fontsize=16,color="magenta"];2838 -> 2923[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2838 -> 2924[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2839 -> 1178[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2839[label="compare (xwv28000 * Neg xwv290010) (Pos xwv280010 * xwv29000)",fontsize=16,color="magenta"];2839 -> 2925[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2839 -> 2926[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2840 -> 1178[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2840[label="compare (xwv28000 * Neg xwv290010) (Neg xwv280010 * xwv29000)",fontsize=16,color="magenta"];2840 -> 2927[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2840 -> 2928[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2842[label="xwv148",fontsize=16,color="green",shape="box"];2843[label="compare xwv28000 xwv29000",fontsize=16,color="blue",shape="box"];5073[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2843 -> 5073[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5073 -> 2929[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5074[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2843 -> 5074[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5074 -> 2930[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5075[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2843 -> 5075[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5075 -> 2931[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5076[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2843 -> 5076[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5076 -> 2932[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5077[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2843 -> 5077[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5077 -> 2933[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5078[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2843 -> 5078[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5078 -> 2934[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5079[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2843 -> 5079[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5079 -> 2935[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5080[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2843 -> 5080[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5080 -> 2936[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5081[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2843 -> 5081[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5081 -> 2937[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5082[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2843 -> 5082[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5082 -> 2938[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5083[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2843 -> 5083[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5083 -> 2939[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5084[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2843 -> 5084[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5084 -> 2940[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5085[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2843 -> 5085[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5085 -> 2941[label="",style="solid", color="blue", weight=3]; 30.08/13.44 5086[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2843 -> 5086[label="",style="solid", color="blue", weight=9]; 30.08/13.44 5086 -> 2942[label="",style="solid", color="blue", weight=3]; 30.08/13.44 2841[label="primCompAux0 xwv160 xwv161",fontsize=16,color="burlywood",shape="triangle"];5087[label="xwv161/LT",fontsize=10,color="white",style="solid",shape="box"];2841 -> 5087[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5087 -> 2943[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5088[label="xwv161/EQ",fontsize=10,color="white",style="solid",shape="box"];2841 -> 5088[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5088 -> 2944[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5089[label="xwv161/GT",fontsize=10,color="white",style="solid",shape="box"];2841 -> 5089[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5089 -> 2945[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 2844 -> 180[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2844[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2844 -> 2953[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2844 -> 2954[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2845 -> 182[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2845[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2845 -> 2955[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2845 -> 2956[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2846 -> 176[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2846[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2846 -> 2957[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2846 -> 2958[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2847 -> 183[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2847[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2847 -> 2959[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2847 -> 2960[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2848 -> 178[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2848[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2848 -> 2961[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2848 -> 2962[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2849 -> 179[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2849[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2849 -> 2963[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2849 -> 2964[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2850 -> 184[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2850[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2850 -> 2965[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2850 -> 2966[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2851 -> 186[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2851[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2851 -> 2967[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2851 -> 2968[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2852 -> 189[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2852[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2852 -> 2969[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2852 -> 2970[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2853 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2853[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2853 -> 2971[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2853 -> 2972[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2854 -> 187[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2854[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2854 -> 2973[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2854 -> 2974[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2855 -> 181[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2855[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2855 -> 2975[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2855 -> 2976[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2856 -> 188[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2856[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2856 -> 2977[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2856 -> 2978[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2857 -> 185[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2857[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2857 -> 2979[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2857 -> 2980[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2858 -> 2169[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2858[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2858 -> 2981[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2858 -> 2982[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2859 -> 2170[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2859[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2859 -> 2983[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2859 -> 2984[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2860 -> 2171[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2860[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2860 -> 2985[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2860 -> 2986[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2861 -> 2172[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2861[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2861 -> 2987[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2861 -> 2988[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2862 -> 2173[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2862[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2862 -> 2989[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2862 -> 2990[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2863 -> 2174[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2863[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2863 -> 2991[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2863 -> 2992[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2864 -> 2175[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2864[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2864 -> 2993[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2864 -> 2994[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2865 -> 2176[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2865[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2865 -> 2995[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2865 -> 2996[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2866 -> 2177[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2866[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2866 -> 2997[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2866 -> 2998[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2867 -> 2178[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2867[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2867 -> 2999[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2867 -> 3000[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2868 -> 2179[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2868[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2868 -> 3001[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2868 -> 3002[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2869 -> 2180[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2869[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2869 -> 3003[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2869 -> 3004[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2870 -> 2181[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2870[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2870 -> 3005[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2870 -> 3006[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2871 -> 2182[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2871[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2871 -> 3007[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2871 -> 3008[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2872[label="xwv29001",fontsize=16,color="green",shape="box"];2873[label="xwv28001",fontsize=16,color="green",shape="box"];2874[label="xwv29001",fontsize=16,color="green",shape="box"];2875[label="xwv28001",fontsize=16,color="green",shape="box"];2876[label="xwv29001",fontsize=16,color="green",shape="box"];2877[label="xwv28001",fontsize=16,color="green",shape="box"];2878[label="xwv29001",fontsize=16,color="green",shape="box"];2879[label="xwv28001",fontsize=16,color="green",shape="box"];2880[label="xwv29001",fontsize=16,color="green",shape="box"];2881[label="xwv28001",fontsize=16,color="green",shape="box"];2882[label="xwv29001",fontsize=16,color="green",shape="box"];2883[label="xwv28001",fontsize=16,color="green",shape="box"];2884[label="xwv29001",fontsize=16,color="green",shape="box"];2885[label="xwv28001",fontsize=16,color="green",shape="box"];2886[label="xwv29001",fontsize=16,color="green",shape="box"];2887[label="xwv28001",fontsize=16,color="green",shape="box"];2888[label="xwv29001",fontsize=16,color="green",shape="box"];2889[label="xwv28001",fontsize=16,color="green",shape="box"];2890[label="xwv29001",fontsize=16,color="green",shape="box"];2891[label="xwv28001",fontsize=16,color="green",shape="box"];2892[label="xwv29001",fontsize=16,color="green",shape="box"];2893[label="xwv28001",fontsize=16,color="green",shape="box"];2894[label="xwv29001",fontsize=16,color="green",shape="box"];2895[label="xwv28001",fontsize=16,color="green",shape="box"];2896[label="xwv29001",fontsize=16,color="green",shape="box"];2897[label="xwv28001",fontsize=16,color="green",shape="box"];2898[label="xwv29001",fontsize=16,color="green",shape="box"];2899[label="xwv28001",fontsize=16,color="green",shape="box"];2900[label="xwv29001",fontsize=16,color="green",shape="box"];2901[label="xwv28000",fontsize=16,color="green",shape="box"];2902[label="xwv28001",fontsize=16,color="green",shape="box"];2903[label="xwv29000",fontsize=16,color="green",shape="box"];2904[label="Integer xwv280000 * xwv29001",fontsize=16,color="burlywood",shape="box"];5090[label="xwv29001/Integer xwv290010",fontsize=10,color="white",style="solid",shape="box"];2904 -> 5090[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5090 -> 3009[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 2905[label="xwv29000",fontsize=16,color="green",shape="box"];2906[label="xwv28001",fontsize=16,color="green",shape="box"];2129[label="primPlusNat (Succ xwv33200) xwv970",fontsize=16,color="burlywood",shape="box"];5091[label="xwv970/Succ xwv9700",fontsize=10,color="white",style="solid",shape="box"];2129 -> 5091[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5091 -> 2196[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5092[label="xwv970/Zero",fontsize=10,color="white",style="solid",shape="box"];2129 -> 5092[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5092 -> 2197[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 2130[label="primPlusNat Zero xwv970",fontsize=16,color="burlywood",shape="box"];5093[label="xwv970/Succ xwv9700",fontsize=10,color="white",style="solid",shape="box"];2130 -> 5093[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5093 -> 2198[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5094[label="xwv970/Zero",fontsize=10,color="white",style="solid",shape="box"];2130 -> 5094[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5094 -> 2199[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3813 -> 3740[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3813[label="primMinusNat xwv25700 xwv25800",fontsize=16,color="magenta"];3813 -> 3841[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3813 -> 3842[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3814[label="Pos (Succ xwv25700)",fontsize=16,color="green",shape="box"];3815[label="Neg (Succ xwv25800)",fontsize=16,color="green",shape="box"];3816[label="Pos Zero",fontsize=16,color="green",shape="box"];2145[label="Zero",fontsize=16,color="green",shape="box"];2146[label="Succ xwv2900",fontsize=16,color="green",shape="box"];2147[label="Succ xwv2900",fontsize=16,color="green",shape="box"];2148[label="Zero",fontsize=16,color="green",shape="box"];4361[label="xwv253",fontsize=16,color="green",shape="box"];4362[label="xwv341",fontsize=16,color="green",shape="box"];4363[label="xwv340",fontsize=16,color="green",shape="box"];4364[label="xwv344",fontsize=16,color="green",shape="box"];4365[label="Succ Zero",fontsize=16,color="green",shape="box"];3818 -> 3843[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3818[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv344 xwv2530 xwv2531 xwv2532 xwv2533 xwv2534 (FiniteMap.sizeFM xwv2534 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv2533)",fontsize=16,color="magenta"];3818 -> 3844[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3819 -> 1236[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3819[label="FiniteMap.sizeFM xwv3444",fontsize=16,color="magenta"];3819 -> 3845[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3820[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3821[label="xwv3443",fontsize=16,color="green",shape="box"];3822[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv253 xwv253 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 otherwise",fontsize=16,color="black",shape="box"];3822 -> 3846[label="",style="solid", color="black", weight=3]; 30.08/13.44 3823[label="FiniteMap.mkBalBranch6Single_L xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv253 xwv253 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444)",fontsize=16,color="black",shape="box"];3823 -> 3847[label="",style="solid", color="black", weight=3]; 30.08/13.44 4467[label="FiniteMap.mkBranchLeft_size xwv374 xwv371 xwv373",fontsize=16,color="black",shape="box"];4467 -> 4471[label="",style="solid", color="black", weight=3]; 30.08/13.44 4468[label="Succ Zero",fontsize=16,color="green",shape="box"];4469 -> 3703[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4469[label="primPlusInt (Pos xwv3750) (FiniteMap.sizeFM xwv374)",fontsize=16,color="magenta"];4469 -> 4472[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4469 -> 4473[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4470 -> 3705[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4470[label="primPlusInt (Neg xwv3750) (FiniteMap.sizeFM xwv374)",fontsize=16,color="magenta"];4470 -> 4474[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4470 -> 4475[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 1893 -> 2010[label="",style="dashed", color="red", weight=0]; 30.08/13.44 1893[label="primPlusNat (primMulNat xwv400100 (Succ xwv300000)) (Succ xwv300000)",fontsize=16,color="magenta"];1893 -> 2011[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 1894[label="Zero",fontsize=16,color="green",shape="box"];1895[label="Zero",fontsize=16,color="green",shape="box"];1896[label="Zero",fontsize=16,color="green",shape="box"];3573[label="FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344",fontsize=16,color="green",shape="box"];3574[label="FiniteMap.deleteMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="burlywood",shape="triangle"];5095[label="xwv334/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3574 -> 5095[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5095 -> 3601[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5096[label="xwv334/FiniteMap.Branch xwv3340 xwv3341 xwv3342 xwv3343 xwv3344",fontsize=10,color="white",style="solid",shape="box"];3574 -> 5096[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5096 -> 3602[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3575[label="FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];3575 -> 3603[label="",style="solid", color="black", weight=3]; 30.08/13.44 3576[label="FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];3576 -> 3604[label="",style="solid", color="black", weight=3]; 30.08/13.44 3611[label="xwv344",fontsize=16,color="green",shape="box"];3612 -> 3532[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3612[label="FiniteMap.mkBalBranch xwv340 xwv341 (FiniteMap.deleteMin (FiniteMap.Branch xwv3430 xwv3431 xwv3432 xwv3433 xwv3434)) xwv344",fontsize=16,color="magenta"];3612 -> 3625[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3613 -> 3871[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3613[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.findMin (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344))",fontsize=16,color="magenta"];3613 -> 3872[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3613 -> 3873[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3613 -> 3874[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3613 -> 3875[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3613 -> 3876[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3613 -> 3877[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3613 -> 3878[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3613 -> 3879[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3613 -> 3880[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3613 -> 3881[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3613 -> 3882[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3613 -> 3883[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3613 -> 3884[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3613 -> 3885[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3613 -> 3886[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3614 -> 3974[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3614[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.findMin (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344))",fontsize=16,color="magenta"];3614 -> 3975[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3614 -> 3976[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3614 -> 3977[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3614 -> 3978[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3614 -> 3979[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3614 -> 3980[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3614 -> 3981[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3614 -> 3982[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3614 -> 3983[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3614 -> 3984[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3614 -> 3985[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3614 -> 3986[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3614 -> 3987[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3614 -> 3988[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3614 -> 3989[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2024[label="primCmpNat (Succ xwv2800) (Succ xwv2900)",fontsize=16,color="black",shape="box"];2024 -> 2149[label="",style="solid", color="black", weight=3]; 30.08/13.44 2025[label="primCmpNat (Succ xwv2800) Zero",fontsize=16,color="black",shape="box"];2025 -> 2150[label="",style="solid", color="black", weight=3]; 30.08/13.44 2026[label="primCmpNat Zero (Succ xwv2900)",fontsize=16,color="black",shape="box"];2026 -> 2151[label="",style="solid", color="black", weight=3]; 30.08/13.44 2027[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2027 -> 2152[label="",style="solid", color="black", weight=3]; 30.08/13.44 2907 -> 3010[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2907[label="compare2 xwv28000 xwv29000 (xwv28000 == xwv29000)",fontsize=16,color="magenta"];2907 -> 3011[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2908 -> 3012[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2908[label="compare2 xwv28000 xwv29000 (xwv28000 == xwv29000)",fontsize=16,color="magenta"];2908 -> 3013[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2909 -> 2032[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2909[label="compare2 xwv28000 xwv29000 (xwv28000 == xwv29000)",fontsize=16,color="magenta"];2909 -> 3014[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2909 -> 3015[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2909 -> 3016[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2910 -> 3017[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2910[label="compare2 xwv28000 xwv29000 (xwv28000 == xwv29000)",fontsize=16,color="magenta"];2910 -> 3018[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2911 -> 3019[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2911[label="compare2 xwv28000 xwv29000 (xwv28000 == xwv29000)",fontsize=16,color="magenta"];2911 -> 3020[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2912 -> 3021[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2912[label="compare2 xwv28000 xwv29000 (xwv28000 == xwv29000)",fontsize=16,color="magenta"];2912 -> 3022[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2913 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2913[label="xwv28000 * Pos xwv290010",fontsize=16,color="magenta"];2913 -> 3023[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2913 -> 3024[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2914 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2914[label="Pos xwv280010 * xwv29000",fontsize=16,color="magenta"];2914 -> 3025[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2914 -> 3026[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2915 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2915[label="xwv28000 * Pos xwv290010",fontsize=16,color="magenta"];2915 -> 3027[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2915 -> 3028[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2916 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2916[label="Neg xwv280010 * xwv29000",fontsize=16,color="magenta"];2916 -> 3029[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2916 -> 3030[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2917 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2917[label="xwv28000 * Neg xwv290010",fontsize=16,color="magenta"];2917 -> 3031[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2917 -> 3032[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2918 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2918[label="Pos xwv280010 * xwv29000",fontsize=16,color="magenta"];2918 -> 3033[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2918 -> 3034[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2919 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2919[label="xwv28000 * Neg xwv290010",fontsize=16,color="magenta"];2919 -> 3035[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2919 -> 3036[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2920 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2920[label="Neg xwv280010 * xwv29000",fontsize=16,color="magenta"];2920 -> 3037[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2920 -> 3038[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2921 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2921[label="xwv28000 * Pos xwv290010",fontsize=16,color="magenta"];2921 -> 3039[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2921 -> 3040[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2922 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2922[label="Pos xwv280010 * xwv29000",fontsize=16,color="magenta"];2922 -> 3041[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2922 -> 3042[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2923 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2923[label="xwv28000 * Pos xwv290010",fontsize=16,color="magenta"];2923 -> 3043[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2923 -> 3044[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2924 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2924[label="Neg xwv280010 * xwv29000",fontsize=16,color="magenta"];2924 -> 3045[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2924 -> 3046[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2925 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2925[label="xwv28000 * Neg xwv290010",fontsize=16,color="magenta"];2925 -> 3047[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2925 -> 3048[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2926 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2926[label="Pos xwv280010 * xwv29000",fontsize=16,color="magenta"];2926 -> 3049[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2926 -> 3050[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2927 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2927[label="xwv28000 * Neg xwv290010",fontsize=16,color="magenta"];2927 -> 3051[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2927 -> 3052[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2928 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2928[label="Neg xwv280010 * xwv29000",fontsize=16,color="magenta"];2928 -> 3053[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2928 -> 3054[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2929 -> 1178[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2929[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2929 -> 3055[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2929 -> 3056[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2930 -> 2246[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2930[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2930 -> 3057[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2930 -> 3058[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2931 -> 2718[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2931[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2931 -> 3059[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2931 -> 3060[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2932 -> 2720[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2932[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2932 -> 3061[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2932 -> 3062[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2933 -> 2722[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2933[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2933 -> 3063[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2933 -> 3064[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2934 -> 2247[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2934[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2934 -> 3065[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2934 -> 3066[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2935 -> 2248[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2935[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2935 -> 3067[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2935 -> 3068[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2936 -> 2249[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2936[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2936 -> 3069[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2936 -> 3070[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2937 -> 2250[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2937[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2937 -> 3071[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2937 -> 3072[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2938 -> 2732[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2938[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2938 -> 3073[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2938 -> 3074[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2939 -> 2734[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2939[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2939 -> 3075[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2939 -> 3076[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2940 -> 2736[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2940[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2940 -> 3077[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2940 -> 3078[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2941 -> 2251[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2941[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2941 -> 3079[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2941 -> 3080[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2942 -> 2252[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2942[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2942 -> 3081[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2942 -> 3082[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2943[label="primCompAux0 xwv160 LT",fontsize=16,color="black",shape="box"];2943 -> 3083[label="",style="solid", color="black", weight=3]; 30.08/13.44 2944[label="primCompAux0 xwv160 EQ",fontsize=16,color="black",shape="box"];2944 -> 3084[label="",style="solid", color="black", weight=3]; 30.08/13.44 2945[label="primCompAux0 xwv160 GT",fontsize=16,color="black",shape="box"];2945 -> 3085[label="",style="solid", color="black", weight=3]; 30.08/13.44 2953[label="xwv29001",fontsize=16,color="green",shape="box"];2954[label="xwv28001",fontsize=16,color="green",shape="box"];2955[label="xwv29001",fontsize=16,color="green",shape="box"];2956[label="xwv28001",fontsize=16,color="green",shape="box"];2957[label="xwv29001",fontsize=16,color="green",shape="box"];2958[label="xwv28001",fontsize=16,color="green",shape="box"];2959[label="xwv29001",fontsize=16,color="green",shape="box"];2960[label="xwv28001",fontsize=16,color="green",shape="box"];2961[label="xwv29001",fontsize=16,color="green",shape="box"];2962[label="xwv28001",fontsize=16,color="green",shape="box"];2963[label="xwv29001",fontsize=16,color="green",shape="box"];2964[label="xwv28001",fontsize=16,color="green",shape="box"];2965[label="xwv29001",fontsize=16,color="green",shape="box"];2966[label="xwv28001",fontsize=16,color="green",shape="box"];2967[label="xwv29001",fontsize=16,color="green",shape="box"];2968[label="xwv28001",fontsize=16,color="green",shape="box"];2969[label="xwv29001",fontsize=16,color="green",shape="box"];2970[label="xwv28001",fontsize=16,color="green",shape="box"];2971[label="xwv29001",fontsize=16,color="green",shape="box"];2972[label="xwv28001",fontsize=16,color="green",shape="box"];2973[label="xwv29001",fontsize=16,color="green",shape="box"];2974[label="xwv28001",fontsize=16,color="green",shape="box"];2975[label="xwv29001",fontsize=16,color="green",shape="box"];2976[label="xwv28001",fontsize=16,color="green",shape="box"];2977[label="xwv29001",fontsize=16,color="green",shape="box"];2978[label="xwv28001",fontsize=16,color="green",shape="box"];2979[label="xwv29001",fontsize=16,color="green",shape="box"];2980[label="xwv28001",fontsize=16,color="green",shape="box"];2981[label="xwv28002",fontsize=16,color="green",shape="box"];2982[label="xwv29002",fontsize=16,color="green",shape="box"];2983[label="xwv28002",fontsize=16,color="green",shape="box"];2984[label="xwv29002",fontsize=16,color="green",shape="box"];2985[label="xwv28002",fontsize=16,color="green",shape="box"];2986[label="xwv29002",fontsize=16,color="green",shape="box"];2987[label="xwv28002",fontsize=16,color="green",shape="box"];2988[label="xwv29002",fontsize=16,color="green",shape="box"];2989[label="xwv28002",fontsize=16,color="green",shape="box"];2990[label="xwv29002",fontsize=16,color="green",shape="box"];2991[label="xwv28002",fontsize=16,color="green",shape="box"];2992[label="xwv29002",fontsize=16,color="green",shape="box"];2993[label="xwv28002",fontsize=16,color="green",shape="box"];2994[label="xwv29002",fontsize=16,color="green",shape="box"];2995[label="xwv28002",fontsize=16,color="green",shape="box"];2996[label="xwv29002",fontsize=16,color="green",shape="box"];2997[label="xwv28002",fontsize=16,color="green",shape="box"];2998[label="xwv29002",fontsize=16,color="green",shape="box"];2999[label="xwv28002",fontsize=16,color="green",shape="box"];3000[label="xwv29002",fontsize=16,color="green",shape="box"];3001[label="xwv28002",fontsize=16,color="green",shape="box"];3002[label="xwv29002",fontsize=16,color="green",shape="box"];3003[label="xwv28002",fontsize=16,color="green",shape="box"];3004[label="xwv29002",fontsize=16,color="green",shape="box"];3005[label="xwv28002",fontsize=16,color="green",shape="box"];3006[label="xwv29002",fontsize=16,color="green",shape="box"];3007[label="xwv28002",fontsize=16,color="green",shape="box"];3008[label="xwv29002",fontsize=16,color="green",shape="box"];3009[label="Integer xwv280000 * Integer xwv290010",fontsize=16,color="black",shape="box"];3009 -> 3086[label="",style="solid", color="black", weight=3]; 30.08/13.44 2196[label="primPlusNat (Succ xwv33200) (Succ xwv9700)",fontsize=16,color="black",shape="box"];2196 -> 2296[label="",style="solid", color="black", weight=3]; 30.08/13.44 2197[label="primPlusNat (Succ xwv33200) Zero",fontsize=16,color="black",shape="box"];2197 -> 2297[label="",style="solid", color="black", weight=3]; 30.08/13.44 2198[label="primPlusNat Zero (Succ xwv9700)",fontsize=16,color="black",shape="box"];2198 -> 2298[label="",style="solid", color="black", weight=3]; 30.08/13.44 2199[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2199 -> 2299[label="",style="solid", color="black", weight=3]; 30.08/13.44 3841[label="xwv25800",fontsize=16,color="green",shape="box"];3842[label="xwv25700",fontsize=16,color="green",shape="box"];3844 -> 1274[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3844[label="FiniteMap.sizeFM xwv2534 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv2533",fontsize=16,color="magenta"];3844 -> 3851[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3844 -> 3852[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3843[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv344 xwv2530 xwv2531 xwv2532 xwv2533 xwv2534 xwv270",fontsize=16,color="burlywood",shape="triangle"];5097[label="xwv270/False",fontsize=10,color="white",style="solid",shape="box"];3843 -> 5097[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5097 -> 3853[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5098[label="xwv270/True",fontsize=10,color="white",style="solid",shape="box"];3843 -> 5098[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5098 -> 3854[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3845[label="xwv3444",fontsize=16,color="green",shape="box"];3846[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv253 xwv253 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 True",fontsize=16,color="black",shape="box"];3846 -> 3863[label="",style="solid", color="black", weight=3]; 30.08/13.44 3847 -> 4355[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3847[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xwv3440 xwv3441 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv340 xwv341 xwv253 xwv3443) xwv3444",fontsize=16,color="magenta"];3847 -> 4366[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3847 -> 4367[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3847 -> 4368[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3847 -> 4369[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3847 -> 4370[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4471[label="FiniteMap.sizeFM xwv373",fontsize=16,color="burlywood",shape="triangle"];5099[label="xwv373/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4471 -> 5099[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5099 -> 4476[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5100[label="xwv373/FiniteMap.Branch xwv3730 xwv3731 xwv3732 xwv3733 xwv3734",fontsize=10,color="white",style="solid",shape="box"];4471 -> 5100[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5100 -> 4477[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 4472 -> 4471[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4472[label="FiniteMap.sizeFM xwv374",fontsize=16,color="magenta"];4472 -> 4478[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4473[label="xwv3750",fontsize=16,color="green",shape="box"];4474[label="xwv3750",fontsize=16,color="green",shape="box"];4475 -> 4471[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4475[label="FiniteMap.sizeFM xwv374",fontsize=16,color="magenta"];4475 -> 4479[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2011 -> 1396[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2011[label="primMulNat xwv400100 (Succ xwv300000)",fontsize=16,color="magenta"];2011 -> 2141[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2011 -> 2142[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2010 -> 2103[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2010[label="primPlusNat xwv107 (Succ xwv300000)",fontsize=16,color="magenta"];2010 -> 2143[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2010 -> 2144[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3601[label="FiniteMap.deleteMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 FiniteMap.EmptyFM)",fontsize=16,color="black",shape="box"];3601 -> 3615[label="",style="solid", color="black", weight=3]; 30.08/13.44 3602[label="FiniteMap.deleteMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 (FiniteMap.Branch xwv3340 xwv3341 xwv3342 xwv3343 xwv3344))",fontsize=16,color="black",shape="box"];3602 -> 3616[label="",style="solid", color="black", weight=3]; 30.08/13.44 3603[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.glueBal2Vv2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344))",fontsize=16,color="black",shape="box"];3603 -> 3617[label="",style="solid", color="black", weight=3]; 30.08/13.44 3604[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.glueBal2Vv2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344))",fontsize=16,color="black",shape="box"];3604 -> 3618[label="",style="solid", color="black", weight=3]; 30.08/13.44 3625 -> 3569[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3625[label="FiniteMap.deleteMin (FiniteMap.Branch xwv3430 xwv3431 xwv3432 xwv3433 xwv3434)",fontsize=16,color="magenta"];3625 -> 3641[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3625 -> 3642[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3625 -> 3643[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3625 -> 3644[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3625 -> 3645[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3872[label="xwv332",fontsize=16,color="green",shape="box"];3873[label="xwv341",fontsize=16,color="green",shape="box"];3874[label="xwv331",fontsize=16,color="green",shape="box"];3875[label="xwv340",fontsize=16,color="green",shape="box"];3876[label="xwv343",fontsize=16,color="green",shape="box"];3877[label="xwv343",fontsize=16,color="green",shape="box"];3878[label="xwv341",fontsize=16,color="green",shape="box"];3879[label="xwv334",fontsize=16,color="green",shape="box"];3880[label="xwv342",fontsize=16,color="green",shape="box"];3881[label="xwv344",fontsize=16,color="green",shape="box"];3882[label="xwv330",fontsize=16,color="green",shape="box"];3883[label="xwv342",fontsize=16,color="green",shape="box"];3884[label="xwv340",fontsize=16,color="green",shape="box"];3885[label="xwv344",fontsize=16,color="green",shape="box"];3886[label="xwv333",fontsize=16,color="green",shape="box"];3871[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv275 xwv276 xwv277 xwv278 xwv279) (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.findMin (FiniteMap.Branch xwv285 xwv286 xwv287 xwv288 xwv289))",fontsize=16,color="burlywood",shape="triangle"];5101[label="xwv288/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3871 -> 5101[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5101 -> 3962[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5102[label="xwv288/FiniteMap.Branch xwv2880 xwv2881 xwv2882 xwv2883 xwv2884",fontsize=10,color="white",style="solid",shape="box"];3871 -> 5102[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5102 -> 3963[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3975[label="xwv344",fontsize=16,color="green",shape="box"];3976[label="xwv334",fontsize=16,color="green",shape="box"];3977[label="xwv344",fontsize=16,color="green",shape="box"];3978[label="xwv343",fontsize=16,color="green",shape="box"];3979[label="xwv340",fontsize=16,color="green",shape="box"];3980[label="xwv342",fontsize=16,color="green",shape="box"];3981[label="xwv332",fontsize=16,color="green",shape="box"];3982[label="xwv341",fontsize=16,color="green",shape="box"];3983[label="xwv343",fontsize=16,color="green",shape="box"];3984[label="xwv340",fontsize=16,color="green",shape="box"];3985[label="xwv342",fontsize=16,color="green",shape="box"];3986[label="xwv333",fontsize=16,color="green",shape="box"];3987[label="xwv341",fontsize=16,color="green",shape="box"];3988[label="xwv330",fontsize=16,color="green",shape="box"];3989[label="xwv331",fontsize=16,color="green",shape="box"];3974[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv291 xwv292 xwv293 xwv294 xwv295) (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.findMin (FiniteMap.Branch xwv301 xwv302 xwv303 xwv304 xwv305))",fontsize=16,color="burlywood",shape="triangle"];5103[label="xwv304/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3974 -> 5103[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5103 -> 4065[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5104[label="xwv304/FiniteMap.Branch xwv3040 xwv3041 xwv3042 xwv3043 xwv3044",fontsize=10,color="white",style="solid",shape="box"];3974 -> 5104[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5104 -> 4066[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 2149 -> 1774[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2149[label="primCmpNat xwv2800 xwv2900",fontsize=16,color="magenta"];2149 -> 2216[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2149 -> 2217[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2150[label="GT",fontsize=16,color="green",shape="box"];2151[label="LT",fontsize=16,color="green",shape="box"];2152[label="EQ",fontsize=16,color="green",shape="box"];3011 -> 176[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3011[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];3011 -> 3087[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3011 -> 3088[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3010[label="compare2 xwv28000 xwv29000 xwv165",fontsize=16,color="burlywood",shape="triangle"];5105[label="xwv165/False",fontsize=10,color="white",style="solid",shape="box"];3010 -> 5105[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5105 -> 3089[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5106[label="xwv165/True",fontsize=10,color="white",style="solid",shape="box"];3010 -> 5106[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5106 -> 3090[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3013 -> 183[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3013[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];3013 -> 3091[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3013 -> 3092[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3012[label="compare2 xwv28000 xwv29000 xwv166",fontsize=16,color="burlywood",shape="triangle"];5107[label="xwv166/False",fontsize=10,color="white",style="solid",shape="box"];3012 -> 5107[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5107 -> 3093[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5108[label="xwv166/True",fontsize=10,color="white",style="solid",shape="box"];3012 -> 5108[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5108 -> 3094[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3014[label="xwv29000",fontsize=16,color="green",shape="box"];3015 -> 178[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3015[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];3015 -> 3095[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3015 -> 3096[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3016[label="xwv28000",fontsize=16,color="green",shape="box"];3018 -> 47[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3018[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];3018 -> 3097[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3018 -> 3098[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3017[label="compare2 xwv28000 xwv29000 xwv167",fontsize=16,color="burlywood",shape="triangle"];5109[label="xwv167/False",fontsize=10,color="white",style="solid",shape="box"];3017 -> 5109[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5109 -> 3099[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5110[label="xwv167/True",fontsize=10,color="white",style="solid",shape="box"];3017 -> 5110[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5110 -> 3100[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3020 -> 187[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3020[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];3020 -> 3101[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3020 -> 3102[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3019[label="compare2 xwv28000 xwv29000 xwv168",fontsize=16,color="burlywood",shape="triangle"];5111[label="xwv168/False",fontsize=10,color="white",style="solid",shape="box"];3019 -> 5111[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5111 -> 3103[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5112[label="xwv168/True",fontsize=10,color="white",style="solid",shape="box"];3019 -> 5112[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5112 -> 3104[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3022 -> 181[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3022[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];3022 -> 3105[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3022 -> 3106[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3021[label="compare2 xwv28000 xwv29000 xwv169",fontsize=16,color="burlywood",shape="triangle"];5113[label="xwv169/False",fontsize=10,color="white",style="solid",shape="box"];3021 -> 5113[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5113 -> 3107[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5114[label="xwv169/True",fontsize=10,color="white",style="solid",shape="box"];3021 -> 5114[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5114 -> 3108[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3023[label="Pos xwv290010",fontsize=16,color="green",shape="box"];3024[label="xwv28000",fontsize=16,color="green",shape="box"];3025[label="xwv29000",fontsize=16,color="green",shape="box"];3026[label="Pos xwv280010",fontsize=16,color="green",shape="box"];3027[label="Pos xwv290010",fontsize=16,color="green",shape="box"];3028[label="xwv28000",fontsize=16,color="green",shape="box"];3029[label="xwv29000",fontsize=16,color="green",shape="box"];3030[label="Neg xwv280010",fontsize=16,color="green",shape="box"];3031[label="Neg xwv290010",fontsize=16,color="green",shape="box"];3032[label="xwv28000",fontsize=16,color="green",shape="box"];3033[label="xwv29000",fontsize=16,color="green",shape="box"];3034[label="Pos xwv280010",fontsize=16,color="green",shape="box"];3035[label="Neg xwv290010",fontsize=16,color="green",shape="box"];3036[label="xwv28000",fontsize=16,color="green",shape="box"];3037[label="xwv29000",fontsize=16,color="green",shape="box"];3038[label="Neg xwv280010",fontsize=16,color="green",shape="box"];3039[label="Pos xwv290010",fontsize=16,color="green",shape="box"];3040[label="xwv28000",fontsize=16,color="green",shape="box"];3041[label="xwv29000",fontsize=16,color="green",shape="box"];3042[label="Pos xwv280010",fontsize=16,color="green",shape="box"];3043[label="Pos xwv290010",fontsize=16,color="green",shape="box"];3044[label="xwv28000",fontsize=16,color="green",shape="box"];3045[label="xwv29000",fontsize=16,color="green",shape="box"];3046[label="Neg xwv280010",fontsize=16,color="green",shape="box"];3047[label="Neg xwv290010",fontsize=16,color="green",shape="box"];3048[label="xwv28000",fontsize=16,color="green",shape="box"];3049[label="xwv29000",fontsize=16,color="green",shape="box"];3050[label="Pos xwv280010",fontsize=16,color="green",shape="box"];3051[label="Neg xwv290010",fontsize=16,color="green",shape="box"];3052[label="xwv28000",fontsize=16,color="green",shape="box"];3053[label="xwv29000",fontsize=16,color="green",shape="box"];3054[label="Neg xwv280010",fontsize=16,color="green",shape="box"];3055[label="xwv28000",fontsize=16,color="green",shape="box"];3056[label="xwv29000",fontsize=16,color="green",shape="box"];3057[label="xwv28000",fontsize=16,color="green",shape="box"];3058[label="xwv29000",fontsize=16,color="green",shape="box"];3059[label="xwv29000",fontsize=16,color="green",shape="box"];3060[label="xwv28000",fontsize=16,color="green",shape="box"];3061[label="xwv29000",fontsize=16,color="green",shape="box"];3062[label="xwv28000",fontsize=16,color="green",shape="box"];3063[label="xwv29000",fontsize=16,color="green",shape="box"];3064[label="xwv28000",fontsize=16,color="green",shape="box"];3065[label="xwv28000",fontsize=16,color="green",shape="box"];3066[label="xwv29000",fontsize=16,color="green",shape="box"];3067[label="xwv28000",fontsize=16,color="green",shape="box"];3068[label="xwv29000",fontsize=16,color="green",shape="box"];3069[label="xwv28000",fontsize=16,color="green",shape="box"];3070[label="xwv29000",fontsize=16,color="green",shape="box"];3071[label="xwv28000",fontsize=16,color="green",shape="box"];3072[label="xwv29000",fontsize=16,color="green",shape="box"];3073[label="xwv29000",fontsize=16,color="green",shape="box"];3074[label="xwv28000",fontsize=16,color="green",shape="box"];3075[label="xwv29000",fontsize=16,color="green",shape="box"];3076[label="xwv28000",fontsize=16,color="green",shape="box"];3077[label="xwv29000",fontsize=16,color="green",shape="box"];3078[label="xwv28000",fontsize=16,color="green",shape="box"];3079[label="xwv28000",fontsize=16,color="green",shape="box"];3080[label="xwv29000",fontsize=16,color="green",shape="box"];3081[label="xwv28000",fontsize=16,color="green",shape="box"];3082[label="xwv29000",fontsize=16,color="green",shape="box"];3083[label="LT",fontsize=16,color="green",shape="box"];3084[label="xwv160",fontsize=16,color="green",shape="box"];3085[label="GT",fontsize=16,color="green",shape="box"];3086[label="Integer (primMulInt xwv280000 xwv290010)",fontsize=16,color="green",shape="box"];3086 -> 3140[label="",style="dashed", color="green", weight=3]; 30.08/13.44 2296[label="Succ (Succ (primPlusNat xwv33200 xwv9700))",fontsize=16,color="green",shape="box"];2296 -> 2755[label="",style="dashed", color="green", weight=3]; 30.08/13.44 2297[label="Succ xwv33200",fontsize=16,color="green",shape="box"];2298[label="Succ xwv9700",fontsize=16,color="green",shape="box"];2299[label="Zero",fontsize=16,color="green",shape="box"];3851 -> 556[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3851[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv2533",fontsize=16,color="magenta"];3851 -> 3865[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3851 -> 3866[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3852 -> 1236[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3852[label="FiniteMap.sizeFM xwv2534",fontsize=16,color="magenta"];3852 -> 3867[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3853[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv344 xwv2530 xwv2531 xwv2532 xwv2533 xwv2534 False",fontsize=16,color="black",shape="box"];3853 -> 3868[label="",style="solid", color="black", weight=3]; 30.08/13.44 3854[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv344 xwv2530 xwv2531 xwv2532 xwv2533 xwv2534 True",fontsize=16,color="black",shape="box"];3854 -> 3869[label="",style="solid", color="black", weight=3]; 30.08/13.44 3863[label="FiniteMap.mkBalBranch6Double_L xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv253 xwv253 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444)",fontsize=16,color="burlywood",shape="box"];5115[label="xwv3443/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3863 -> 5115[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5115 -> 3964[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5116[label="xwv3443/FiniteMap.Branch xwv34430 xwv34431 xwv34432 xwv34433 xwv34434",fontsize=10,color="white",style="solid",shape="box"];3863 -> 5116[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5116 -> 3965[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 4366 -> 4355[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4366[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv340 xwv341 xwv253 xwv3443",fontsize=16,color="magenta"];4366 -> 4412[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4366 -> 4413[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4366 -> 4414[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4366 -> 4415[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4366 -> 4416[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4367[label="xwv3441",fontsize=16,color="green",shape="box"];4368[label="xwv3440",fontsize=16,color="green",shape="box"];4369[label="xwv3444",fontsize=16,color="green",shape="box"];4370[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4476[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4476 -> 4480[label="",style="solid", color="black", weight=3]; 30.08/13.44 4477[label="FiniteMap.sizeFM (FiniteMap.Branch xwv3730 xwv3731 xwv3732 xwv3733 xwv3734)",fontsize=16,color="black",shape="box"];4477 -> 4481[label="",style="solid", color="black", weight=3]; 30.08/13.44 4478[label="xwv374",fontsize=16,color="green",shape="box"];4479[label="xwv374",fontsize=16,color="green",shape="box"];2141[label="xwv400100",fontsize=16,color="green",shape="box"];2142[label="Succ xwv300000",fontsize=16,color="green",shape="box"];2143[label="xwv107",fontsize=16,color="green",shape="box"];2144[label="Succ xwv300000",fontsize=16,color="green",shape="box"];3615[label="xwv333",fontsize=16,color="green",shape="box"];3616 -> 3532[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3616[label="FiniteMap.mkBalBranch xwv330 xwv331 xwv333 (FiniteMap.deleteMax (FiniteMap.Branch xwv3340 xwv3341 xwv3342 xwv3343 xwv3344))",fontsize=16,color="magenta"];3616 -> 3630[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3616 -> 3631[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3616 -> 3632[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3616 -> 3633[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3617 -> 4153[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3617[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.findMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334))",fontsize=16,color="magenta"];3617 -> 4154[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3617 -> 4155[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3617 -> 4156[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3617 -> 4157[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3617 -> 4158[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3617 -> 4159[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3617 -> 4160[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3617 -> 4161[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3617 -> 4162[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3617 -> 4163[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3617 -> 4164[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3617 -> 4165[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3617 -> 4166[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3617 -> 4167[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3617 -> 4168[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3618 -> 4258[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3618[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) (FiniteMap.findMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334))",fontsize=16,color="magenta"];3618 -> 4259[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3618 -> 4260[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3618 -> 4261[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3618 -> 4262[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3618 -> 4263[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3618 -> 4264[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3618 -> 4265[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3618 -> 4266[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3618 -> 4267[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3618 -> 4268[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3618 -> 4269[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3618 -> 4270[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3618 -> 4271[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3618 -> 4272[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3618 -> 4273[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3641[label="xwv3433",fontsize=16,color="green",shape="box"];3642[label="xwv3434",fontsize=16,color="green",shape="box"];3643[label="xwv3430",fontsize=16,color="green",shape="box"];3644[label="xwv3431",fontsize=16,color="green",shape="box"];3645[label="xwv3432",fontsize=16,color="green",shape="box"];3962[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv275 xwv276 xwv277 xwv278 xwv279) (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.findMin (FiniteMap.Branch xwv285 xwv286 xwv287 FiniteMap.EmptyFM xwv289))",fontsize=16,color="black",shape="box"];3962 -> 4067[label="",style="solid", color="black", weight=3]; 30.08/13.44 3963[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv275 xwv276 xwv277 xwv278 xwv279) (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.findMin (FiniteMap.Branch xwv285 xwv286 xwv287 (FiniteMap.Branch xwv2880 xwv2881 xwv2882 xwv2883 xwv2884) xwv289))",fontsize=16,color="black",shape="box"];3963 -> 4068[label="",style="solid", color="black", weight=3]; 30.08/13.44 4065[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv291 xwv292 xwv293 xwv294 xwv295) (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.findMin (FiniteMap.Branch xwv301 xwv302 xwv303 FiniteMap.EmptyFM xwv305))",fontsize=16,color="black",shape="box"];4065 -> 4082[label="",style="solid", color="black", weight=3]; 30.08/13.44 4066[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv291 xwv292 xwv293 xwv294 xwv295) (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.findMin (FiniteMap.Branch xwv301 xwv302 xwv303 (FiniteMap.Branch xwv3040 xwv3041 xwv3042 xwv3043 xwv3044) xwv305))",fontsize=16,color="black",shape="box"];4066 -> 4083[label="",style="solid", color="black", weight=3]; 30.08/13.44 2216[label="xwv2800",fontsize=16,color="green",shape="box"];2217[label="xwv2900",fontsize=16,color="green",shape="box"];3087[label="xwv29000",fontsize=16,color="green",shape="box"];3088[label="xwv28000",fontsize=16,color="green",shape="box"];3089[label="compare2 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3089 -> 3141[label="",style="solid", color="black", weight=3]; 30.08/13.44 3090[label="compare2 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3090 -> 3142[label="",style="solid", color="black", weight=3]; 30.08/13.44 3091[label="xwv29000",fontsize=16,color="green",shape="box"];3092[label="xwv28000",fontsize=16,color="green",shape="box"];3093[label="compare2 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3093 -> 3143[label="",style="solid", color="black", weight=3]; 30.08/13.44 3094[label="compare2 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3094 -> 3144[label="",style="solid", color="black", weight=3]; 30.08/13.44 3095[label="xwv29000",fontsize=16,color="green",shape="box"];3096[label="xwv28000",fontsize=16,color="green",shape="box"];3097[label="xwv29000",fontsize=16,color="green",shape="box"];3098[label="xwv28000",fontsize=16,color="green",shape="box"];3099[label="compare2 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3099 -> 3145[label="",style="solid", color="black", weight=3]; 30.08/13.44 3100[label="compare2 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3100 -> 3146[label="",style="solid", color="black", weight=3]; 30.08/13.44 3101[label="xwv29000",fontsize=16,color="green",shape="box"];3102[label="xwv28000",fontsize=16,color="green",shape="box"];3103[label="compare2 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3103 -> 3147[label="",style="solid", color="black", weight=3]; 30.08/13.44 3104[label="compare2 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3104 -> 3148[label="",style="solid", color="black", weight=3]; 30.08/13.44 3105[label="xwv29000",fontsize=16,color="green",shape="box"];3106[label="xwv28000",fontsize=16,color="green",shape="box"];3107[label="compare2 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3107 -> 3149[label="",style="solid", color="black", weight=3]; 30.08/13.44 3108[label="compare2 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3108 -> 3150[label="",style="solid", color="black", weight=3]; 30.08/13.44 3140 -> 769[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3140[label="primMulInt xwv280000 xwv290010",fontsize=16,color="magenta"];3140 -> 3173[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3140 -> 3174[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2755 -> 2103[label="",style="dashed", color="red", weight=0]; 30.08/13.44 2755[label="primPlusNat xwv33200 xwv9700",fontsize=16,color="magenta"];2755 -> 3248[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 2755 -> 3249[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3865 -> 1236[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3865[label="FiniteMap.sizeFM xwv2533",fontsize=16,color="magenta"];3865 -> 3970[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3866[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3867[label="xwv2534",fontsize=16,color="green",shape="box"];3868[label="FiniteMap.mkBalBranch6MkBalBranch10 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv344 xwv2530 xwv2531 xwv2532 xwv2533 xwv2534 otherwise",fontsize=16,color="black",shape="box"];3868 -> 3971[label="",style="solid", color="black", weight=3]; 30.08/13.44 3869[label="FiniteMap.mkBalBranch6Single_R xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv344",fontsize=16,color="black",shape="box"];3869 -> 3972[label="",style="solid", color="black", weight=3]; 30.08/13.44 3964[label="FiniteMap.mkBalBranch6Double_L xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 FiniteMap.EmptyFM xwv3444) xwv253 xwv253 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 FiniteMap.EmptyFM xwv3444)",fontsize=16,color="black",shape="box"];3964 -> 4069[label="",style="solid", color="black", weight=3]; 30.08/13.44 3965[label="FiniteMap.mkBalBranch6Double_L xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 (FiniteMap.Branch xwv34430 xwv34431 xwv34432 xwv34433 xwv34434) xwv3444) xwv253 xwv253 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 (FiniteMap.Branch xwv34430 xwv34431 xwv34432 xwv34433 xwv34434) xwv3444)",fontsize=16,color="black",shape="box"];3965 -> 4070[label="",style="solid", color="black", weight=3]; 30.08/13.44 4412[label="xwv253",fontsize=16,color="green",shape="box"];4413[label="xwv341",fontsize=16,color="green",shape="box"];4414[label="xwv340",fontsize=16,color="green",shape="box"];4415[label="xwv3443",fontsize=16,color="green",shape="box"];4416[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4480[label="Pos Zero",fontsize=16,color="green",shape="box"];4481[label="xwv3732",fontsize=16,color="green",shape="box"];3630 -> 3574[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3630[label="FiniteMap.deleteMax (FiniteMap.Branch xwv3340 xwv3341 xwv3342 xwv3343 xwv3344)",fontsize=16,color="magenta"];3630 -> 3650[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3630 -> 3651[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3630 -> 3652[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3630 -> 3653[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3630 -> 3654[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3631[label="xwv333",fontsize=16,color="green",shape="box"];3632[label="xwv330",fontsize=16,color="green",shape="box"];3633[label="xwv331",fontsize=16,color="green",shape="box"];4154[label="xwv333",fontsize=16,color="green",shape="box"];4155[label="xwv332",fontsize=16,color="green",shape="box"];4156[label="xwv330",fontsize=16,color="green",shape="box"];4157[label="xwv334",fontsize=16,color="green",shape="box"];4158[label="xwv331",fontsize=16,color="green",shape="box"];4159[label="xwv340",fontsize=16,color="green",shape="box"];4160[label="xwv332",fontsize=16,color="green",shape="box"];4161[label="xwv330",fontsize=16,color="green",shape="box"];4162[label="xwv342",fontsize=16,color="green",shape="box"];4163[label="xwv343",fontsize=16,color="green",shape="box"];4164[label="xwv331",fontsize=16,color="green",shape="box"];4165[label="xwv344",fontsize=16,color="green",shape="box"];4166[label="xwv341",fontsize=16,color="green",shape="box"];4167[label="xwv333",fontsize=16,color="green",shape="box"];4168[label="xwv334",fontsize=16,color="green",shape="box"];4153[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv338 xwv339 xwv340 xwv341 xwv342) (FiniteMap.Branch xwv343 xwv344 xwv345 xwv346 xwv347) (FiniteMap.findMax (FiniteMap.Branch xwv348 xwv349 xwv350 xwv351 xwv352))",fontsize=16,color="burlywood",shape="triangle"];5117[label="xwv352/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4153 -> 5117[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5117 -> 4244[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5118[label="xwv352/FiniteMap.Branch xwv3520 xwv3521 xwv3522 xwv3523 xwv3524",fontsize=10,color="white",style="solid",shape="box"];4153 -> 5118[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5118 -> 4245[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 4259[label="xwv334",fontsize=16,color="green",shape="box"];4260[label="xwv330",fontsize=16,color="green",shape="box"];4261[label="xwv341",fontsize=16,color="green",shape="box"];4262[label="xwv343",fontsize=16,color="green",shape="box"];4263[label="xwv333",fontsize=16,color="green",shape="box"];4264[label="xwv332",fontsize=16,color="green",shape="box"];4265[label="xwv331",fontsize=16,color="green",shape="box"];4266[label="xwv334",fontsize=16,color="green",shape="box"];4267[label="xwv333",fontsize=16,color="green",shape="box"];4268[label="xwv342",fontsize=16,color="green",shape="box"];4269[label="xwv340",fontsize=16,color="green",shape="box"];4270[label="xwv331",fontsize=16,color="green",shape="box"];4271[label="xwv332",fontsize=16,color="green",shape="box"];4272[label="xwv330",fontsize=16,color="green",shape="box"];4273[label="xwv344",fontsize=16,color="green",shape="box"];4258[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv354 xwv355 xwv356 xwv357 xwv358) (FiniteMap.Branch xwv359 xwv360 xwv361 xwv362 xwv363) (FiniteMap.findMax (FiniteMap.Branch xwv364 xwv365 xwv366 xwv367 xwv368))",fontsize=16,color="burlywood",shape="triangle"];5119[label="xwv368/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4258 -> 5119[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5119 -> 4349[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5120[label="xwv368/FiniteMap.Branch xwv3680 xwv3681 xwv3682 xwv3683 xwv3684",fontsize=10,color="white",style="solid",shape="box"];4258 -> 5120[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5120 -> 4350[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 4067[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv275 xwv276 xwv277 xwv278 xwv279) (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (xwv285,xwv286)",fontsize=16,color="black",shape="box"];4067 -> 4084[label="",style="solid", color="black", weight=3]; 30.08/13.44 4068 -> 3871[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4068[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv275 xwv276 xwv277 xwv278 xwv279) (FiniteMap.Branch xwv280 xwv281 xwv282 xwv283 xwv284) (FiniteMap.findMin (FiniteMap.Branch xwv2880 xwv2881 xwv2882 xwv2883 xwv2884))",fontsize=16,color="magenta"];4068 -> 4085[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4068 -> 4086[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4068 -> 4087[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4068 -> 4088[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4068 -> 4089[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4082[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv291 xwv292 xwv293 xwv294 xwv295) (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (xwv301,xwv302)",fontsize=16,color="black",shape="box"];4082 -> 4102[label="",style="solid", color="black", weight=3]; 30.08/13.44 4083 -> 3974[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4083[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv291 xwv292 xwv293 xwv294 xwv295) (FiniteMap.Branch xwv296 xwv297 xwv298 xwv299 xwv300) (FiniteMap.findMin (FiniteMap.Branch xwv3040 xwv3041 xwv3042 xwv3043 xwv3044))",fontsize=16,color="magenta"];4083 -> 4103[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4083 -> 4104[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4083 -> 4105[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4083 -> 4106[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4083 -> 4107[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3141 -> 3175[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3141[label="compare1 xwv28000 xwv29000 (xwv28000 <= xwv29000)",fontsize=16,color="magenta"];3141 -> 3176[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3142[label="EQ",fontsize=16,color="green",shape="box"];3143 -> 3179[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3143[label="compare1 xwv28000 xwv29000 (xwv28000 <= xwv29000)",fontsize=16,color="magenta"];3143 -> 3180[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3144[label="EQ",fontsize=16,color="green",shape="box"];3145 -> 3184[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3145[label="compare1 xwv28000 xwv29000 (xwv28000 <= xwv29000)",fontsize=16,color="magenta"];3145 -> 3185[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3146[label="EQ",fontsize=16,color="green",shape="box"];3147 -> 3187[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3147[label="compare1 xwv28000 xwv29000 (xwv28000 <= xwv29000)",fontsize=16,color="magenta"];3147 -> 3188[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3148[label="EQ",fontsize=16,color="green",shape="box"];3149 -> 3190[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3149[label="compare1 xwv28000 xwv29000 (xwv28000 <= xwv29000)",fontsize=16,color="magenta"];3149 -> 3191[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3150[label="EQ",fontsize=16,color="green",shape="box"];3173[label="xwv290010",fontsize=16,color="green",shape="box"];3174[label="xwv280000",fontsize=16,color="green",shape="box"];3248[label="xwv33200",fontsize=16,color="green",shape="box"];3249[label="xwv9700",fontsize=16,color="green",shape="box"];3970[label="xwv2533",fontsize=16,color="green",shape="box"];3971[label="FiniteMap.mkBalBranch6MkBalBranch10 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv344 xwv2530 xwv2531 xwv2532 xwv2533 xwv2534 True",fontsize=16,color="black",shape="box"];3971 -> 4072[label="",style="solid", color="black", weight=3]; 30.08/13.44 3972 -> 4355[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3972[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xwv2530 xwv2531 xwv2533 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xwv340 xwv341 xwv2534 xwv344)",fontsize=16,color="magenta"];3972 -> 4376[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3972 -> 4377[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3972 -> 4378[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3972 -> 4379[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3972 -> 4380[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4069[label="error []",fontsize=16,color="red",shape="box"];4070 -> 4355[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4070[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xwv34430 xwv34431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv340 xwv341 xwv253 xwv34433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xwv3440 xwv3441 xwv34434 xwv3444)",fontsize=16,color="magenta"];4070 -> 4381[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4070 -> 4382[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4070 -> 4383[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4070 -> 4384[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4070 -> 4385[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3650[label="xwv3340",fontsize=16,color="green",shape="box"];3651[label="xwv3344",fontsize=16,color="green",shape="box"];3652[label="xwv3342",fontsize=16,color="green",shape="box"];3653[label="xwv3343",fontsize=16,color="green",shape="box"];3654[label="xwv3341",fontsize=16,color="green",shape="box"];4244[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv338 xwv339 xwv340 xwv341 xwv342) (FiniteMap.Branch xwv343 xwv344 xwv345 xwv346 xwv347) (FiniteMap.findMax (FiniteMap.Branch xwv348 xwv349 xwv350 xwv351 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];4244 -> 4351[label="",style="solid", color="black", weight=3]; 30.08/13.44 4245[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv338 xwv339 xwv340 xwv341 xwv342) (FiniteMap.Branch xwv343 xwv344 xwv345 xwv346 xwv347) (FiniteMap.findMax (FiniteMap.Branch xwv348 xwv349 xwv350 xwv351 (FiniteMap.Branch xwv3520 xwv3521 xwv3522 xwv3523 xwv3524)))",fontsize=16,color="black",shape="box"];4245 -> 4352[label="",style="solid", color="black", weight=3]; 30.08/13.44 4349[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv354 xwv355 xwv356 xwv357 xwv358) (FiniteMap.Branch xwv359 xwv360 xwv361 xwv362 xwv363) (FiniteMap.findMax (FiniteMap.Branch xwv364 xwv365 xwv366 xwv367 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];4349 -> 4417[label="",style="solid", color="black", weight=3]; 30.08/13.44 4350[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv354 xwv355 xwv356 xwv357 xwv358) (FiniteMap.Branch xwv359 xwv360 xwv361 xwv362 xwv363) (FiniteMap.findMax (FiniteMap.Branch xwv364 xwv365 xwv366 xwv367 (FiniteMap.Branch xwv3680 xwv3681 xwv3682 xwv3683 xwv3684)))",fontsize=16,color="black",shape="box"];4350 -> 4418[label="",style="solid", color="black", weight=3]; 30.08/13.44 4084[label="xwv285",fontsize=16,color="green",shape="box"];4085[label="xwv2881",fontsize=16,color="green",shape="box"];4086[label="xwv2883",fontsize=16,color="green",shape="box"];4087[label="xwv2884",fontsize=16,color="green",shape="box"];4088[label="xwv2882",fontsize=16,color="green",shape="box"];4089[label="xwv2880",fontsize=16,color="green",shape="box"];4102[label="xwv302",fontsize=16,color="green",shape="box"];4103[label="xwv3044",fontsize=16,color="green",shape="box"];4104[label="xwv3041",fontsize=16,color="green",shape="box"];4105[label="xwv3043",fontsize=16,color="green",shape="box"];4106[label="xwv3040",fontsize=16,color="green",shape="box"];4107[label="xwv3042",fontsize=16,color="green",shape="box"];3176 -> 2171[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3176[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];3176 -> 3192[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3176 -> 3193[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3175[label="compare1 xwv28000 xwv29000 xwv181",fontsize=16,color="burlywood",shape="triangle"];5121[label="xwv181/False",fontsize=10,color="white",style="solid",shape="box"];3175 -> 5121[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5121 -> 3194[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5122[label="xwv181/True",fontsize=10,color="white",style="solid",shape="box"];3175 -> 5122[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5122 -> 3195[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3180 -> 2172[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3180[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];3180 -> 3196[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3180 -> 3197[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3179[label="compare1 xwv28000 xwv29000 xwv182",fontsize=16,color="burlywood",shape="triangle"];5123[label="xwv182/False",fontsize=10,color="white",style="solid",shape="box"];3179 -> 5123[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5123 -> 3198[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5124[label="xwv182/True",fontsize=10,color="white",style="solid",shape="box"];3179 -> 5124[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5124 -> 3199[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3185 -> 2178[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3185[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];3185 -> 3200[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3185 -> 3201[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3184[label="compare1 xwv28000 xwv29000 xwv183",fontsize=16,color="burlywood",shape="triangle"];5125[label="xwv183/False",fontsize=10,color="white",style="solid",shape="box"];3184 -> 5125[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5125 -> 3202[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5126[label="xwv183/True",fontsize=10,color="white",style="solid",shape="box"];3184 -> 5126[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5126 -> 3203[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3188 -> 2179[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3188[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];3188 -> 3204[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3188 -> 3205[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3187[label="compare1 xwv28000 xwv29000 xwv184",fontsize=16,color="burlywood",shape="triangle"];5127[label="xwv184/False",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5127[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5127 -> 3206[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5128[label="xwv184/True",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5128[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5128 -> 3207[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 3191 -> 2180[label="",style="dashed", color="red", weight=0]; 30.08/13.44 3191[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];3191 -> 3208[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3191 -> 3209[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3190[label="compare1 xwv28000 xwv29000 xwv185",fontsize=16,color="burlywood",shape="triangle"];5129[label="xwv185/False",fontsize=10,color="white",style="solid",shape="box"];3190 -> 5129[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5129 -> 3210[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5130[label="xwv185/True",fontsize=10,color="white",style="solid",shape="box"];3190 -> 5130[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5130 -> 3211[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 4072[label="FiniteMap.mkBalBranch6Double_R xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 xwv2534) xwv344",fontsize=16,color="burlywood",shape="box"];5131[label="xwv2534/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4072 -> 5131[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5131 -> 4109[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 5132[label="xwv2534/FiniteMap.Branch xwv25340 xwv25341 xwv25342 xwv25343 xwv25344",fontsize=10,color="white",style="solid",shape="box"];4072 -> 5132[label="",style="solid", color="burlywood", weight=9]; 30.08/13.44 5132 -> 4110[label="",style="solid", color="burlywood", weight=3]; 30.08/13.44 4376[label="xwv2533",fontsize=16,color="green",shape="box"];4377[label="xwv2531",fontsize=16,color="green",shape="box"];4378[label="xwv2530",fontsize=16,color="green",shape="box"];4379 -> 4355[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4379[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xwv340 xwv341 xwv2534 xwv344",fontsize=16,color="magenta"];4379 -> 4419[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4379 -> 4420[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4379 -> 4421[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4379 -> 4422[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4379 -> 4423[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4380[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4381 -> 4355[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4381[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv340 xwv341 xwv253 xwv34433",fontsize=16,color="magenta"];4381 -> 4424[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4381 -> 4425[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4381 -> 4426[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4381 -> 4427[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4381 -> 4428[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4382[label="xwv34431",fontsize=16,color="green",shape="box"];4383[label="xwv34430",fontsize=16,color="green",shape="box"];4384 -> 4355[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4384[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xwv3440 xwv3441 xwv34434 xwv3444",fontsize=16,color="magenta"];4384 -> 4429[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4384 -> 4430[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4384 -> 4431[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4384 -> 4432[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4384 -> 4433[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4385[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4351[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv338 xwv339 xwv340 xwv341 xwv342) (FiniteMap.Branch xwv343 xwv344 xwv345 xwv346 xwv347) (xwv348,xwv349)",fontsize=16,color="black",shape="box"];4351 -> 4434[label="",style="solid", color="black", weight=3]; 30.08/13.44 4352 -> 4153[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4352[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv338 xwv339 xwv340 xwv341 xwv342) (FiniteMap.Branch xwv343 xwv344 xwv345 xwv346 xwv347) (FiniteMap.findMax (FiniteMap.Branch xwv3520 xwv3521 xwv3522 xwv3523 xwv3524))",fontsize=16,color="magenta"];4352 -> 4435[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4352 -> 4436[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4352 -> 4437[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4352 -> 4438[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4352 -> 4439[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4417[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv354 xwv355 xwv356 xwv357 xwv358) (FiniteMap.Branch xwv359 xwv360 xwv361 xwv362 xwv363) (xwv364,xwv365)",fontsize=16,color="black",shape="box"];4417 -> 4451[label="",style="solid", color="black", weight=3]; 30.08/13.44 4418 -> 4258[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4418[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv354 xwv355 xwv356 xwv357 xwv358) (FiniteMap.Branch xwv359 xwv360 xwv361 xwv362 xwv363) (FiniteMap.findMax (FiniteMap.Branch xwv3680 xwv3681 xwv3682 xwv3683 xwv3684))",fontsize=16,color="magenta"];4418 -> 4452[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4418 -> 4453[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4418 -> 4454[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4418 -> 4455[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4418 -> 4456[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3192[label="xwv28000",fontsize=16,color="green",shape="box"];3193[label="xwv29000",fontsize=16,color="green",shape="box"];3194[label="compare1 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3194 -> 3238[label="",style="solid", color="black", weight=3]; 30.08/13.44 3195[label="compare1 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3195 -> 3239[label="",style="solid", color="black", weight=3]; 30.08/13.44 3196[label="xwv28000",fontsize=16,color="green",shape="box"];3197[label="xwv29000",fontsize=16,color="green",shape="box"];3198[label="compare1 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3198 -> 3240[label="",style="solid", color="black", weight=3]; 30.08/13.44 3199[label="compare1 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3199 -> 3241[label="",style="solid", color="black", weight=3]; 30.08/13.44 3200[label="xwv28000",fontsize=16,color="green",shape="box"];3201[label="xwv29000",fontsize=16,color="green",shape="box"];3202[label="compare1 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3202 -> 3242[label="",style="solid", color="black", weight=3]; 30.08/13.44 3203[label="compare1 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3203 -> 3243[label="",style="solid", color="black", weight=3]; 30.08/13.44 3204[label="xwv28000",fontsize=16,color="green",shape="box"];3205[label="xwv29000",fontsize=16,color="green",shape="box"];3206[label="compare1 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3206 -> 3244[label="",style="solid", color="black", weight=3]; 30.08/13.44 3207[label="compare1 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3207 -> 3245[label="",style="solid", color="black", weight=3]; 30.08/13.44 3208[label="xwv28000",fontsize=16,color="green",shape="box"];3209[label="xwv29000",fontsize=16,color="green",shape="box"];3210[label="compare1 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3210 -> 3246[label="",style="solid", color="black", weight=3]; 30.08/13.44 3211[label="compare1 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3211 -> 3247[label="",style="solid", color="black", weight=3]; 30.08/13.44 4109[label="FiniteMap.mkBalBranch6Double_R xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 FiniteMap.EmptyFM) (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 FiniteMap.EmptyFM) xwv344",fontsize=16,color="black",shape="box"];4109 -> 4150[label="",style="solid", color="black", weight=3]; 30.08/13.44 4110[label="FiniteMap.mkBalBranch6Double_R xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 (FiniteMap.Branch xwv25340 xwv25341 xwv25342 xwv25343 xwv25344)) (FiniteMap.Branch xwv2530 xwv2531 xwv2532 xwv2533 (FiniteMap.Branch xwv25340 xwv25341 xwv25342 xwv25343 xwv25344)) xwv344",fontsize=16,color="black",shape="box"];4110 -> 4151[label="",style="solid", color="black", weight=3]; 30.08/13.44 4419[label="xwv2534",fontsize=16,color="green",shape="box"];4420[label="xwv341",fontsize=16,color="green",shape="box"];4421[label="xwv340",fontsize=16,color="green",shape="box"];4422[label="xwv344",fontsize=16,color="green",shape="box"];4423[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4424[label="xwv253",fontsize=16,color="green",shape="box"];4425[label="xwv341",fontsize=16,color="green",shape="box"];4426[label="xwv340",fontsize=16,color="green",shape="box"];4427[label="xwv34433",fontsize=16,color="green",shape="box"];4428[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4429[label="xwv34434",fontsize=16,color="green",shape="box"];4430[label="xwv3441",fontsize=16,color="green",shape="box"];4431[label="xwv3440",fontsize=16,color="green",shape="box"];4432[label="xwv3444",fontsize=16,color="green",shape="box"];4433[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4434[label="xwv348",fontsize=16,color="green",shape="box"];4435[label="xwv3523",fontsize=16,color="green",shape="box"];4436[label="xwv3520",fontsize=16,color="green",shape="box"];4437[label="xwv3524",fontsize=16,color="green",shape="box"];4438[label="xwv3521",fontsize=16,color="green",shape="box"];4439[label="xwv3522",fontsize=16,color="green",shape="box"];4451[label="xwv365",fontsize=16,color="green",shape="box"];4452[label="xwv3680",fontsize=16,color="green",shape="box"];4453[label="xwv3683",fontsize=16,color="green",shape="box"];4454[label="xwv3684",fontsize=16,color="green",shape="box"];4455[label="xwv3681",fontsize=16,color="green",shape="box"];4456[label="xwv3682",fontsize=16,color="green",shape="box"];3238[label="compare0 xwv28000 xwv29000 otherwise",fontsize=16,color="black",shape="box"];3238 -> 3309[label="",style="solid", color="black", weight=3]; 30.08/13.44 3239[label="LT",fontsize=16,color="green",shape="box"];3240[label="compare0 xwv28000 xwv29000 otherwise",fontsize=16,color="black",shape="box"];3240 -> 3310[label="",style="solid", color="black", weight=3]; 30.08/13.44 3241[label="LT",fontsize=16,color="green",shape="box"];3242[label="compare0 xwv28000 xwv29000 otherwise",fontsize=16,color="black",shape="box"];3242 -> 3311[label="",style="solid", color="black", weight=3]; 30.08/13.44 3243[label="LT",fontsize=16,color="green",shape="box"];3244[label="compare0 xwv28000 xwv29000 otherwise",fontsize=16,color="black",shape="box"];3244 -> 3312[label="",style="solid", color="black", weight=3]; 30.08/13.44 3245[label="LT",fontsize=16,color="green",shape="box"];3246[label="compare0 xwv28000 xwv29000 otherwise",fontsize=16,color="black",shape="box"];3246 -> 3313[label="",style="solid", color="black", weight=3]; 30.08/13.44 3247[label="LT",fontsize=16,color="green",shape="box"];4150[label="error []",fontsize=16,color="red",shape="box"];4151 -> 4355[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4151[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xwv25340 xwv25341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv2530 xwv2531 xwv2533 xwv25343) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xwv340 xwv341 xwv25344 xwv344)",fontsize=16,color="magenta"];4151 -> 4396[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4151 -> 4397[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4151 -> 4398[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4151 -> 4399[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4151 -> 4400[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 3309[label="compare0 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3309 -> 3605[label="",style="solid", color="black", weight=3]; 30.08/13.44 3310[label="compare0 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3310 -> 3606[label="",style="solid", color="black", weight=3]; 30.08/13.44 3311[label="compare0 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3311 -> 3607[label="",style="solid", color="black", weight=3]; 30.08/13.44 3312[label="compare0 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3312 -> 3608[label="",style="solid", color="black", weight=3]; 30.08/13.44 3313[label="compare0 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3313 -> 3609[label="",style="solid", color="black", weight=3]; 30.08/13.44 4396 -> 4355[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4396[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv2530 xwv2531 xwv2533 xwv25343",fontsize=16,color="magenta"];4396 -> 4440[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4396 -> 4441[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4396 -> 4442[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4396 -> 4443[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4396 -> 4444[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4397[label="xwv25341",fontsize=16,color="green",shape="box"];4398[label="xwv25340",fontsize=16,color="green",shape="box"];4399 -> 4355[label="",style="dashed", color="red", weight=0]; 30.08/13.44 4399[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xwv340 xwv341 xwv25344 xwv344",fontsize=16,color="magenta"];4399 -> 4445[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4399 -> 4446[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4399 -> 4447[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4399 -> 4448[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4399 -> 4449[label="",style="dashed", color="magenta", weight=3]; 30.08/13.44 4400[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3605[label="GT",fontsize=16,color="green",shape="box"];3606[label="GT",fontsize=16,color="green",shape="box"];3607[label="GT",fontsize=16,color="green",shape="box"];3608[label="GT",fontsize=16,color="green",shape="box"];3609[label="GT",fontsize=16,color="green",shape="box"];4440[label="xwv2533",fontsize=16,color="green",shape="box"];4441[label="xwv2531",fontsize=16,color="green",shape="box"];4442[label="xwv2530",fontsize=16,color="green",shape="box"];4443[label="xwv25343",fontsize=16,color="green",shape="box"];4444[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4445[label="xwv25344",fontsize=16,color="green",shape="box"];4446[label="xwv341",fontsize=16,color="green",shape="box"];4447[label="xwv340",fontsize=16,color="green",shape="box"];4448[label="xwv344",fontsize=16,color="green",shape="box"];4449[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];} 30.08/13.44 30.08/13.44 ---------------------------------------- 30.08/13.44 30.08/13.44 (16) 30.08/13.44 Complex Obligation (AND) 30.08/13.44 30.08/13.44 ---------------------------------------- 30.08/13.44 30.08/13.44 (17) 30.08/13.44 Obligation: 30.08/13.44 Q DP problem: 30.08/13.44 The TRS P consists of the following rules: 30.08/13.44 30.08/13.44 new_primCmpNat(Succ(xwv2800), Succ(xwv2900)) -> new_primCmpNat(xwv2800, xwv2900) 30.08/13.44 30.08/13.44 R is empty. 30.08/13.44 Q is empty. 30.08/13.44 We have to consider all minimal (P,Q,R)-chains. 30.08/13.44 ---------------------------------------- 30.08/13.44 30.08/13.44 (18) QDPSizeChangeProof (EQUIVALENT) 30.08/13.44 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. 30.08/13.44 30.08/13.44 From the DPs we obtained the following set of size-change graphs: 30.08/13.44 *new_primCmpNat(Succ(xwv2800), Succ(xwv2900)) -> new_primCmpNat(xwv2800, xwv2900) 30.08/13.44 The graph contains the following edges 1 > 1, 2 > 2 30.08/13.44 30.08/13.44 30.08/13.44 ---------------------------------------- 30.08/13.44 30.08/13.44 (19) 30.08/13.44 YES 30.08/13.44 30.08/13.44 ---------------------------------------- 30.08/13.44 30.08/13.44 (20) 30.08/13.44 Obligation: 30.08/13.44 Q DP problem: 30.08/13.44 The TRS P consists of the following rules: 30.08/13.44 30.08/13.44 new_primMulNat(Succ(xwv400100), Succ(xwv300000)) -> new_primMulNat(xwv400100, Succ(xwv300000)) 30.08/13.44 30.08/13.44 R is empty. 30.08/13.44 Q is empty. 30.08/13.44 We have to consider all minimal (P,Q,R)-chains. 30.08/13.44 ---------------------------------------- 30.08/13.44 30.08/13.44 (21) QDPSizeChangeProof (EQUIVALENT) 30.08/13.44 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. 30.08/13.44 30.08/13.44 From the DPs we obtained the following set of size-change graphs: 30.08/13.44 *new_primMulNat(Succ(xwv400100), Succ(xwv300000)) -> new_primMulNat(xwv400100, Succ(xwv300000)) 30.08/13.44 The graph contains the following edges 1 > 1, 2 >= 2 30.08/13.44 30.08/13.44 30.08/13.44 ---------------------------------------- 30.08/13.44 30.08/13.44 (22) 30.08/13.44 YES 30.08/13.44 30.08/13.44 ---------------------------------------- 30.08/13.44 30.08/13.44 (23) 30.08/13.44 Obligation: 30.08/13.44 Q DP problem: 30.08/13.44 The TRS P consists of the following rules: 30.08/13.44 30.08/13.44 new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare27(Just(xwv400), Nothing, False, h), GT), h, ba) 30.08/13.44 new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, False, h, ba) -> new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, new_esEs8(new_compare27(Nothing, Just(xwv300), new_esEs5(Nothing, Just(xwv300), h), h), LT), h, ba) 30.08/13.44 new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv33, Nothing, h, ba) 30.08/13.44 new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare27(Just(xwv400), Just(xwv300), new_esEs29(xwv400, xwv300, h), h), GT), h, ba) 30.08/13.44 new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv34, Nothing, h, ba) 30.08/13.44 new_delFromFM11(xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba) -> new_delFromFM(xwv33, Just(xwv400), h, ba) 30.08/13.44 new_delFromFM1(xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv33, Nothing, h, ba) 30.08/13.44 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bb, bc) -> new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs8(new_compare27(Just(xwv18), Just(xwv13), new_esEs5(Just(xwv18), Just(xwv13), bb), bb), LT), bb, bc) 30.08/13.44 new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba) -> new_delFromFM(xwv34, Just(xwv400), h, ba) 30.08/13.44 new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Nothing, h, ba) -> new_delFromFM1(xwv31, xwv32, xwv33, xwv34, new_esEs8(new_compare27(Nothing, Nothing, new_esEs5(Nothing, Nothing, h), h), LT), h, ba) 30.08/13.44 new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv16, Just(xwv18), bb, bc) 30.08/13.44 new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Nothing, h, ba) -> new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, new_esEs8(new_compare27(Nothing, Just(xwv300), False, h), GT), h, ba) 30.08/13.44 new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, False, h, ba) -> new_delFromFM11(xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare27(Just(xwv400), Nothing, new_esEs5(Just(xwv400), Nothing, h), h), LT), h, ba) 30.08/13.44 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv17, Just(xwv18), bb, bc) 30.08/13.44 30.08/13.44 The TRS R consists of the following rules: 30.08/13.44 30.08/13.44 new_ltEs4(xwv2800, xwv2900, cb) -> new_fsEs(new_compare8(xwv2800, xwv2900, cb)) 30.08/13.44 new_lt7(xwv28000, xwv29000) -> new_esEs8(new_compare9(xwv28000, xwv29000), LT) 30.08/13.44 new_primCmpInt(Neg(Succ(xwv2800)), Pos(xwv290)) -> LT 30.08/13.44 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.08/13.44 new_lt18(xwv28000, xwv29000, cd, ce) -> new_esEs8(new_compare10(xwv28000, xwv29000, cd, ce), LT) 30.08/13.44 new_lt20(xwv28000, xwv29000, ty_Float) -> new_lt15(xwv28000, xwv29000) 30.08/13.44 new_esEs23(xwv4001, xwv3001, app(ty_[], bfg)) -> new_esEs17(xwv4001, xwv3001, bfg) 30.08/13.44 new_primPlusNat0(Zero, Zero) -> Zero 30.08/13.44 new_esEs25(xwv4000, xwv3000, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs6(xwv4000, xwv3000, caa, cab, cac) 30.08/13.44 new_pePe(True, xwv138) -> True 30.08/13.44 new_esEs22(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.44 new_ltEs8(xwv28002, xwv29002, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs7(xwv28002, xwv29002, he, hf, hg) 30.08/13.44 new_lt4(xwv28000, xwv29000, bd, be) -> new_esEs8(new_compare6(xwv28000, xwv29000, bd, be), LT) 30.08/13.44 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Int) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.44 new_compare112(xwv125, xwv126, True, caf) -> LT 30.08/13.44 new_lt20(xwv28000, xwv29000, ty_Ordering) -> new_lt17(xwv28000, xwv29000) 30.08/13.44 new_esEs29(xwv400, xwv300, ty_Char) -> new_esEs12(xwv400, xwv300) 30.08/13.44 new_esEs10(xwv28001, xwv29001, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs6(xwv28001, xwv29001, gc, gd, ge) 30.08/13.44 new_compare10(xwv28000, xwv29000, cd, ce) -> new_compare23(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, cd, ce), cd, ce) 30.08/13.44 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_@0) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.44 new_ltEs20(xwv2800, xwv2900, app(app(ty_@2, cah), cba)) -> new_ltEs11(xwv2800, xwv2900, cah, cba) 30.08/13.44 new_ltEs20(xwv2800, xwv2900, ty_Integer) -> new_ltEs18(xwv2800, xwv2900) 30.08/13.44 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.08/13.44 new_primCmpInt(Pos(Zero), Neg(Succ(xwv2900))) -> GT 30.08/13.44 new_compare14(xwv28000, xwv29000) -> new_compare26(xwv28000, xwv29000, new_esEs13(xwv28000, xwv29000)) 30.08/13.44 new_esEs24(xwv4002, xwv3002, ty_Int) -> new_esEs11(xwv4002, xwv3002) 30.08/13.44 new_esEs24(xwv4002, xwv3002, ty_Ordering) -> new_esEs8(xwv4002, xwv3002) 30.08/13.44 new_ltEs14(xwv2800, xwv2900) -> new_fsEs(new_compare17(xwv2800, xwv2900)) 30.08/13.44 new_ltEs19(xwv28001, xwv29001, app(ty_[], cbf)) -> new_ltEs5(xwv28001, xwv29001, cbf) 30.08/13.44 new_primCmpInt(Neg(Succ(xwv2800)), Neg(xwv290)) -> new_primCmpNat0(xwv290, Succ(xwv2800)) 30.08/13.44 new_compare113(xwv28000, xwv29000, False, cd, ce) -> GT 30.08/13.44 new_lt9(xwv28000, xwv29000, app(ty_[], eg)) -> new_lt16(xwv28000, xwv29000, eg) 30.08/13.44 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.44 new_lt8(xwv28001, xwv29001, app(app(ty_@2, fg), fh)) -> new_lt4(xwv28001, xwv29001, fg, fh) 30.08/13.44 new_primMulNat0(Succ(xwv400100), Succ(xwv300000)) -> new_primPlusNat1(new_primMulNat0(xwv400100, Succ(xwv300000)), xwv300000) 30.08/13.44 new_lt8(xwv28001, xwv29001, app(app(ty_Either, gf), gg)) -> new_lt18(xwv28001, xwv29001, gf, gg) 30.08/13.44 new_compare15(xwv28000, xwv29000, cbb) -> new_compare27(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, cbb), cbb) 30.08/13.44 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.44 new_esEs28(xwv28000, xwv29000, app(app(ty_Either, cd), ce)) -> new_esEs7(xwv28000, xwv29000, cd, ce) 30.08/13.44 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Ordering, cce) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.44 new_compare26(xwv28000, xwv29000, True) -> EQ 30.08/13.44 new_esEs10(xwv28001, xwv29001, ty_Char) -> new_esEs12(xwv28001, xwv29001) 30.08/13.44 new_compare18(xwv28000, xwv29000) -> new_compare24(xwv28000, xwv29000, new_esEs8(xwv28000, xwv29000)) 30.08/13.44 new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False 30.08/13.44 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 30.08/13.44 new_esEs8(GT, GT) -> True 30.08/13.44 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(xwv4000, xwv3000, dcd, dce, dcf) 30.08/13.44 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Ratio, cge)) -> new_esEs19(xwv4000, xwv3000, cge) 30.08/13.44 new_esEs9(xwv28000, xwv29000, app(ty_Ratio, ff)) -> new_esEs19(xwv28000, xwv29000, ff) 30.08/13.44 new_fsEs(xwv131) -> new_not(new_esEs8(xwv131, GT)) 30.08/13.44 new_esEs23(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 30.08/13.44 new_compare16(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.44 new_compare16(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.44 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Float, cce) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.44 new_esEs29(xwv400, xwv300, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs6(xwv400, xwv300, bda, bdb, bdc) 30.08/13.44 new_esEs24(xwv4002, xwv3002, app(app(ty_@2, bgc), bgd)) -> new_esEs4(xwv4002, xwv3002, bgc, bgd) 30.08/13.44 new_compare17(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.44 new_lt12(xwv28000, xwv29000) -> new_esEs8(new_compare14(xwv28000, xwv29000), LT) 30.08/13.44 new_esEs8(EQ, EQ) -> True 30.08/13.44 new_esEs24(xwv4002, xwv3002, ty_Bool) -> new_esEs13(xwv4002, xwv3002) 30.08/13.44 new_primEqNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.44 new_ltEs20(xwv2800, xwv2900, ty_Bool) -> new_ltEs6(xwv2800, xwv2900) 30.08/13.44 new_esEs25(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.44 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.44 new_ltEs19(xwv28001, xwv29001, app(app(ty_@2, cbc), cbd)) -> new_ltEs11(xwv28001, xwv29001, cbc, cbd) 30.08/13.44 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Int) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.44 new_not(True) -> False 30.08/13.44 new_esEs24(xwv4002, xwv3002, ty_Integer) -> new_esEs18(xwv4002, xwv3002) 30.08/13.44 new_compare11(xwv28000, xwv29000, ty_Integer) -> new_compare19(xwv28000, xwv29000) 30.08/13.44 new_primCompAux00(xwv160, LT) -> LT 30.08/13.44 new_primCmpNat0(Zero, Zero) -> EQ 30.08/13.44 new_esEs21(xwv4001, xwv3001, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs6(xwv4001, xwv3001, bce, bcf, bcg) 30.08/13.44 new_lt13(xwv28000, xwv29000, cbb) -> new_esEs8(new_compare15(xwv28000, xwv29000, cbb), LT) 30.08/13.44 new_ltEs19(xwv28001, xwv29001, ty_Bool) -> new_ltEs6(xwv28001, xwv29001) 30.08/13.44 new_compare115(xwv28000, xwv29000, True, bf, bg, bh) -> LT 30.08/13.44 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Double) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.44 new_ltEs19(xwv28001, xwv29001, app(app(app(ty_@3, cbg), cbh), cca)) -> new_ltEs7(xwv28001, xwv29001, cbg, cbh, cca) 30.08/13.44 new_esEs22(xwv4000, xwv3000, app(ty_Ratio, bea)) -> new_esEs19(xwv4000, xwv3000, bea) 30.08/13.44 new_esEs29(xwv400, xwv300, ty_Int) -> new_esEs11(xwv400, xwv300) 30.08/13.44 new_compare27(Nothing, Nothing, False, cff) -> LT 30.08/13.44 new_esEs20(xwv4000, xwv3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs6(xwv4000, xwv3000, bbc, bbd, bbe) 30.08/13.44 new_esEs20(xwv4000, xwv3000, app(app(ty_Either, baf), bag)) -> new_esEs7(xwv4000, xwv3000, baf, bag) 30.08/13.44 new_esEs28(xwv28000, xwv29000, ty_Bool) -> new_esEs13(xwv28000, xwv29000) 30.08/13.44 new_ltEs16(GT, EQ) -> False 30.08/13.44 new_esEs29(xwv400, xwv300, ty_Integer) -> new_esEs18(xwv400, xwv300) 30.08/13.44 new_esEs4(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bac, bad) -> new_asAs(new_esEs20(xwv4000, xwv3000, bac), new_esEs21(xwv4001, xwv3001, bad)) 30.08/13.44 new_esEs10(xwv28001, xwv29001, ty_Ordering) -> new_esEs8(xwv28001, xwv29001) 30.08/13.44 new_compare27(xwv280, xwv290, True, cff) -> EQ 30.08/13.44 new_compare11(xwv28000, xwv29000, ty_Int) -> new_compare12(xwv28000, xwv29000) 30.08/13.44 new_ltEs17(Left(xwv28000), Right(xwv29000), cdh, cce) -> True 30.08/13.44 new_primEqNat0(Succ(xwv40000), Zero) -> False 30.08/13.44 new_primEqNat0(Zero, Succ(xwv30000)) -> False 30.08/13.44 new_lt9(xwv28000, xwv29000, app(ty_Maybe, ef)) -> new_lt13(xwv28000, xwv29000, ef) 30.08/13.44 new_esEs28(xwv28000, xwv29000, ty_Int) -> new_esEs11(xwv28000, xwv29000) 30.08/13.44 new_esEs29(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 30.08/13.44 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_@0) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.44 new_lt8(xwv28001, xwv29001, app(app(app(ty_@3, gc), gd), ge)) -> new_lt5(xwv28001, xwv29001, gc, gd, ge) 30.08/13.44 new_ltEs8(xwv28002, xwv29002, app(ty_[], hd)) -> new_ltEs5(xwv28002, xwv29002, hd) 30.08/13.44 new_lt20(xwv28000, xwv29000, ty_Integer) -> new_lt19(xwv28000, xwv29000) 30.08/13.44 new_primCompAux00(xwv160, GT) -> GT 30.08/13.44 new_ltEs8(xwv28002, xwv29002, app(ty_Ratio, bab)) -> new_ltEs4(xwv28002, xwv29002, bab) 30.08/13.44 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.44 new_esEs5(Just(xwv4000), Just(xwv3000), ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.44 new_compare11(xwv28000, xwv29000, ty_Bool) -> new_compare14(xwv28000, xwv29000) 30.08/13.44 new_lt9(xwv28000, xwv29000, app(app(ty_@2, ed), ee)) -> new_lt4(xwv28000, xwv29000, ed, ee) 30.08/13.44 new_esEs20(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.44 new_esEs23(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.44 new_ltEs6(True, True) -> True 30.08/13.44 new_primCmpInt(Pos(Succ(xwv2800)), Neg(xwv290)) -> GT 30.08/13.44 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(ty_Either, ceh), cfa)) -> new_ltEs17(xwv28000, xwv29000, ceh, cfa) 30.08/13.44 new_esEs20(xwv4000, xwv3000, app(app(ty_@2, bah), bba)) -> new_esEs4(xwv4000, xwv3000, bah, bba) 30.08/13.44 new_ltEs16(LT, LT) -> True 30.08/13.44 new_ltEs19(xwv28001, xwv29001, ty_Float) -> new_ltEs14(xwv28001, xwv29001) 30.08/13.44 new_compare11(xwv28000, xwv29000, ty_Char) -> new_compare13(xwv28000, xwv29000) 30.08/13.44 new_esEs23(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.44 new_compare110(xwv28000, xwv29000, True, bd, be) -> LT 30.08/13.44 new_lt9(xwv28000, xwv29000, app(app(ty_Either, fc), fd)) -> new_lt18(xwv28000, xwv29000, fc, fd) 30.08/13.44 new_esEs29(xwv400, xwv300, ty_Float) -> new_esEs15(xwv400, xwv300) 30.08/13.44 new_ltEs19(xwv28001, xwv29001, ty_Integer) -> new_ltEs18(xwv28001, xwv29001) 30.08/13.44 new_ltEs8(xwv28002, xwv29002, ty_Ordering) -> new_ltEs16(xwv28002, xwv29002) 30.08/13.44 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Bool, cce) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.44 new_ltEs20(xwv2800, xwv2900, ty_Float) -> new_ltEs14(xwv2800, xwv2900) 30.08/13.44 new_lt17(xwv28000, xwv29000) -> new_esEs8(new_compare18(xwv28000, xwv29000), LT) 30.08/13.44 new_primCmpNat0(Zero, Succ(xwv2900)) -> LT 30.08/13.44 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_[], ced)) -> new_ltEs5(xwv28000, xwv29000, ced) 30.08/13.44 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, dbb), dbc), dbd), cfe) -> new_esEs6(xwv4000, xwv3000, dbb, dbc, dbd) 30.08/13.44 new_ltEs20(xwv2800, xwv2900, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs7(xwv2800, xwv2900, ea, eb, ec) 30.08/13.44 new_esEs22(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.44 new_esEs28(xwv28000, xwv29000, ty_Char) -> new_esEs12(xwv28000, xwv29000) 30.08/13.44 new_esEs28(xwv28000, xwv29000, ty_Integer) -> new_esEs18(xwv28000, xwv29000) 30.08/13.44 new_ltEs10(xwv2800, xwv2900) -> new_fsEs(new_compare13(xwv2800, xwv2900)) 30.08/13.44 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Double, cfe) -> new_esEs14(xwv4000, xwv3000) 30.08/13.44 new_ltEs8(xwv28002, xwv29002, ty_Double) -> new_ltEs13(xwv28002, xwv29002) 30.08/13.44 new_ltEs19(xwv28001, xwv29001, app(ty_Ratio, ccd)) -> new_ltEs4(xwv28001, xwv29001, ccd) 30.08/13.44 new_sr(Integer(xwv280000), Integer(xwv290010)) -> Integer(new_primMulInt(xwv280000, xwv290010)) 30.08/13.44 new_primCmpNat0(Succ(xwv2800), Zero) -> GT 30.08/13.44 new_pePe(False, xwv138) -> xwv138 30.08/13.44 new_compare11(xwv28000, xwv29000, app(ty_Maybe, da)) -> new_compare15(xwv28000, xwv29000, da) 30.08/13.44 new_esEs23(xwv4001, xwv3001, ty_Bool) -> new_esEs13(xwv4001, xwv3001) 30.08/13.44 new_esEs9(xwv28000, xwv29000, app(ty_Maybe, ef)) -> new_esEs5(xwv28000, xwv29000, ef) 30.08/13.44 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(ty_@2, dag), dah), cfe) -> new_esEs4(xwv4000, xwv3000, dag, dah) 30.08/13.44 new_ltEs13(xwv2800, xwv2900) -> new_fsEs(new_compare16(xwv2800, xwv2900)) 30.08/13.44 new_compare25(xwv28000, xwv29000, True, bd, be) -> EQ 30.08/13.44 new_ltEs8(xwv28002, xwv29002, ty_Integer) -> new_ltEs18(xwv28002, xwv29002) 30.08/13.44 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.44 new_esEs10(xwv28001, xwv29001, app(app(ty_Either, gf), gg)) -> new_esEs7(xwv28001, xwv29001, gf, gg) 30.08/13.44 new_lt20(xwv28000, xwv29000, ty_Char) -> new_lt11(xwv28000, xwv29000) 30.08/13.44 new_ltEs16(LT, GT) -> True 30.08/13.44 new_lt8(xwv28001, xwv29001, app(ty_[], gb)) -> new_lt16(xwv28001, xwv29001, gb) 30.08/13.44 new_esEs22(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.44 new_lt9(xwv28000, xwv29000, ty_Int) -> new_lt10(xwv28000, xwv29000) 30.08/13.44 new_esEs25(xwv4000, xwv3000, app(ty_Ratio, bhh)) -> new_esEs19(xwv4000, xwv3000, bhh) 30.08/13.44 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_Maybe, cch), cce) -> new_ltEs12(xwv28000, xwv29000, cch) 30.08/13.44 new_esEs17([], [], bhb) -> True 30.08/13.44 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Double) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.44 new_ltEs16(LT, EQ) -> True 30.08/13.44 new_ltEs16(EQ, LT) -> False 30.08/13.44 new_compare23(xwv28000, xwv29000, True, cd, ce) -> EQ 30.08/13.44 new_esEs8(LT, EQ) -> False 30.08/13.44 new_esEs8(EQ, LT) -> False 30.08/13.44 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.44 new_esEs21(xwv4001, xwv3001, app(app(ty_@2, bcb), bcc)) -> new_esEs4(xwv4001, xwv3001, bcb, bcc) 30.08/13.44 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 30.08/13.44 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 30.08/13.44 new_esEs28(xwv28000, xwv29000, ty_@0) -> new_esEs16(xwv28000, xwv29000) 30.08/13.44 new_ltEs19(xwv28001, xwv29001, app(app(ty_Either, ccb), ccc)) -> new_ltEs17(xwv28001, xwv29001, ccb, ccc) 30.08/13.44 new_esEs21(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 30.08/13.44 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(xwv4000, xwv3000, cgf, cgg, cgh) 30.08/13.44 new_compare114(xwv28000, xwv29000, True) -> LT 30.08/13.44 new_ltEs16(GT, LT) -> False 30.08/13.44 new_esEs25(xwv4000, xwv3000, app(app(ty_@2, bhf), bhg)) -> new_esEs4(xwv4000, xwv3000, bhf, bhg) 30.08/13.44 new_esEs21(xwv4001, xwv3001, app(ty_Maybe, bbg)) -> new_esEs5(xwv4001, xwv3001, bbg) 30.08/13.44 new_esEs23(xwv4001, xwv3001, app(app(ty_Either, beg), beh)) -> new_esEs7(xwv4001, xwv3001, beg, beh) 30.08/13.44 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Integer, cce) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.44 new_esEs5(Nothing, Nothing, cfc) -> True 30.08/13.44 new_ltEs20(xwv2800, xwv2900, app(app(ty_Either, cdh), cce)) -> new_ltEs17(xwv2800, xwv2900, cdh, cce) 30.08/13.44 new_ltEs6(False, False) -> True 30.08/13.44 new_esEs25(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.44 new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.44 new_esEs10(xwv28001, xwv29001, ty_Integer) -> new_esEs18(xwv28001, xwv29001) 30.08/13.44 new_lt8(xwv28001, xwv29001, app(ty_Maybe, ga)) -> new_lt13(xwv28001, xwv29001, ga) 30.08/13.44 new_esEs5(Nothing, Just(xwv3000), cfc) -> False 30.08/13.44 new_esEs5(Just(xwv4000), Nothing, cfc) -> False 30.08/13.44 new_primCmpInt(Neg(Zero), Pos(Succ(xwv2900))) -> LT 30.08/13.44 new_compare13(Char(xwv28000), Char(xwv29000)) -> new_primCmpNat0(xwv28000, xwv29000) 30.08/13.44 new_primMulInt(Pos(xwv40010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.44 new_esEs10(xwv28001, xwv29001, ty_Int) -> new_esEs11(xwv28001, xwv29001) 30.08/13.44 new_esEs20(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.44 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(ty_Either, dae), daf), cfe) -> new_esEs7(xwv4000, xwv3000, dae, daf) 30.08/13.44 new_esEs9(xwv28000, xwv29000, app(app(ty_@2, ed), ee)) -> new_esEs4(xwv28000, xwv29000, ed, ee) 30.08/13.44 new_esEs21(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.44 new_esEs9(xwv28000, xwv29000, ty_Ordering) -> new_esEs8(xwv28000, xwv29000) 30.08/13.44 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(ty_Either, cde), cdf), cce) -> new_ltEs17(xwv28000, xwv29000, cde, cdf) 30.08/13.44 new_esEs24(xwv4002, xwv3002, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs6(xwv4002, xwv3002, bgf, bgg, bgh) 30.08/13.44 new_esEs10(xwv28001, xwv29001, app(app(ty_@2, fg), fh)) -> new_esEs4(xwv28001, xwv29001, fg, fh) 30.08/13.44 new_primMulNat0(Succ(xwv400100), Zero) -> Zero 30.08/13.44 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 30.08/13.44 new_ltEs8(xwv28002, xwv29002, ty_@0) -> new_ltEs15(xwv28002, xwv29002) 30.08/13.44 new_esEs18(Integer(xwv4000), Integer(xwv3000)) -> new_primEqInt(xwv4000, xwv3000) 30.08/13.44 new_esEs25(xwv4000, xwv3000, app(app(ty_Either, bhd), bhe)) -> new_esEs7(xwv4000, xwv3000, bhd, bhe) 30.08/13.44 new_compare11(xwv28000, xwv29000, app(app(ty_@2, cf), cg)) -> new_compare6(xwv28000, xwv29000, cf, cg) 30.08/13.44 new_esEs24(xwv4002, xwv3002, ty_Char) -> new_esEs12(xwv4002, xwv3002) 30.08/13.44 new_ltEs18(xwv2800, xwv2900) -> new_fsEs(new_compare19(xwv2800, xwv2900)) 30.08/13.44 new_esEs23(xwv4001, xwv3001, app(ty_Maybe, bef)) -> new_esEs5(xwv4001, xwv3001, bef) 30.08/13.44 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Char) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.44 new_esEs20(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.44 new_lt9(xwv28000, xwv29000, ty_Ordering) -> new_lt17(xwv28000, xwv29000) 30.08/13.44 new_lt20(xwv28000, xwv29000, ty_Bool) -> new_lt12(xwv28000, xwv29000) 30.08/13.44 new_primPlusNat0(Succ(xwv33200), Zero) -> Succ(xwv33200) 30.08/13.44 new_primPlusNat0(Zero, Succ(xwv9700)) -> Succ(xwv9700) 30.08/13.44 new_esEs28(xwv28000, xwv29000, app(ty_[], cag)) -> new_esEs17(xwv28000, xwv29000, cag) 30.08/13.44 new_ltEs16(EQ, GT) -> True 30.08/13.44 new_esEs20(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.44 new_esEs17(:(xwv4000, xwv4001), :(xwv3000, xwv3001), bhb) -> new_asAs(new_esEs25(xwv4000, xwv3000, bhb), new_esEs17(xwv4001, xwv3001, bhb)) 30.08/13.44 new_ltEs16(EQ, EQ) -> True 30.08/13.44 new_lt8(xwv28001, xwv29001, ty_Double) -> new_lt14(xwv28001, xwv29001) 30.08/13.44 new_ltEs6(True, False) -> False 30.08/13.44 new_lt9(xwv28000, xwv29000, app(app(app(ty_@3, eh), fa), fb)) -> new_lt5(xwv28000, xwv29000, eh, fa, fb) 30.08/13.44 new_esEs8(LT, LT) -> True 30.08/13.44 new_compare19(Integer(xwv28000), Integer(xwv29000)) -> new_primCmpInt(xwv28000, xwv29000) 30.08/13.44 new_lt8(xwv28001, xwv29001, ty_Ordering) -> new_lt17(xwv28001, xwv29001) 30.08/13.44 new_compare111(xwv28000, xwv29000, True) -> LT 30.08/13.44 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, cdb), cdc), cdd), cce) -> new_ltEs7(xwv28000, xwv29000, cdb, cdc, cdd) 30.08/13.44 new_esEs10(xwv28001, xwv29001, ty_Float) -> new_esEs15(xwv28001, xwv29001) 30.08/13.44 new_esEs29(xwv400, xwv300, app(ty_[], bhb)) -> new_esEs17(xwv400, xwv300, bhb) 30.08/13.44 new_esEs22(xwv4000, xwv3000, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs6(xwv4000, xwv3000, beb, bec, bed) 30.08/13.44 new_esEs9(xwv28000, xwv29000, ty_Float) -> new_esEs15(xwv28000, xwv29000) 30.08/13.44 new_lt20(xwv28000, xwv29000, app(ty_Ratio, ca)) -> new_lt6(xwv28000, xwv29000, ca) 30.08/13.44 new_esEs9(xwv28000, xwv29000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs6(xwv28000, xwv29000, eh, fa, fb) 30.08/13.44 new_esEs21(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.44 new_ltEs8(xwv28002, xwv29002, app(app(ty_Either, hh), baa)) -> new_ltEs17(xwv28002, xwv29002, hh, baa) 30.08/13.44 new_compare23(xwv28000, xwv29000, False, cd, ce) -> new_compare113(xwv28000, xwv29000, new_ltEs17(xwv28000, xwv29000, cd, ce), cd, ce) 30.08/13.44 new_esEs13(True, True) -> True 30.08/13.44 new_ltEs20(xwv2800, xwv2900, ty_Double) -> new_ltEs13(xwv2800, xwv2900) 30.08/13.44 new_compare17(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.44 new_compare17(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.44 new_esEs28(xwv28000, xwv29000, ty_Double) -> new_esEs14(xwv28000, xwv29000) 30.08/13.44 new_ltEs20(xwv2800, xwv2900, ty_Ordering) -> new_ltEs16(xwv2800, xwv2900) 30.08/13.44 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, chf), chg), chh)) -> new_ltEs7(xwv28000, xwv29000, chf, chg, chh) 30.08/13.44 new_esEs20(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.44 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Char, cfe) -> new_esEs12(xwv4000, xwv3000) 30.08/13.44 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Bool, cfe) -> new_esEs13(xwv4000, xwv3000) 30.08/13.44 new_esEs23(xwv4001, xwv3001, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs6(xwv4001, xwv3001, bfd, bfe, bff) 30.08/13.44 new_compare11(xwv28000, xwv29000, app(app(app(ty_@3, dc), dd), de)) -> new_compare7(xwv28000, xwv29000, dc, dd, de) 30.08/13.44 new_esEs25(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.44 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_Maybe, chd)) -> new_ltEs12(xwv28000, xwv29000, chd) 30.08/13.44 new_ltEs8(xwv28002, xwv29002, ty_Float) -> new_ltEs14(xwv28002, xwv29002) 30.08/13.44 new_primMulInt(Neg(xwv40010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.44 new_compare24(xwv28000, xwv29000, False) -> new_compare114(xwv28000, xwv29000, new_ltEs16(xwv28000, xwv29000)) 30.08/13.44 new_primCmpInt(Pos(Zero), Pos(Succ(xwv2900))) -> new_primCmpNat0(Zero, Succ(xwv2900)) 30.08/13.44 new_esEs29(xwv400, xwv300, ty_Double) -> new_esEs14(xwv400, xwv300) 30.08/13.44 new_esEs10(xwv28001, xwv29001, app(ty_Maybe, ga)) -> new_esEs5(xwv28001, xwv29001, ga) 30.08/13.44 new_esEs25(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.44 new_esEs22(xwv4000, xwv3000, app(ty_Maybe, bdd)) -> new_esEs5(xwv4000, xwv3000, bdd) 30.08/13.44 new_ltEs19(xwv28001, xwv29001, ty_Ordering) -> new_ltEs16(xwv28001, xwv29001) 30.08/13.44 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_Ratio, dcc)) -> new_esEs19(xwv4000, xwv3000, dcc) 30.08/13.44 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.44 new_lt9(xwv28000, xwv29000, ty_Double) -> new_lt14(xwv28000, xwv29000) 30.08/13.44 new_ltEs19(xwv28001, xwv29001, ty_Double) -> new_ltEs13(xwv28001, xwv29001) 30.08/13.44 new_compare11(xwv28000, xwv29000, ty_Ordering) -> new_compare18(xwv28000, xwv29000) 30.08/13.44 new_esEs24(xwv4002, xwv3002, app(app(ty_Either, bga), bgb)) -> new_esEs7(xwv4002, xwv3002, bga, bgb) 30.08/13.44 new_compare114(xwv28000, xwv29000, False) -> GT 30.08/13.44 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Maybe, cfh)) -> new_esEs5(xwv4000, xwv3000, cfh) 30.08/13.44 new_esEs23(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 30.08/13.44 new_ltEs20(xwv2800, xwv2900, app(ty_Ratio, cb)) -> new_ltEs4(xwv2800, xwv2900, cb) 30.08/13.44 new_compare28(xwv28000, xwv29000, False, bf, bg, bh) -> new_compare115(xwv28000, xwv29000, new_ltEs7(xwv28000, xwv29000, bf, bg, bh), bf, bg, bh) 30.08/13.44 new_esEs23(xwv4001, xwv3001, app(app(ty_@2, bfa), bfb)) -> new_esEs4(xwv4001, xwv3001, bfa, bfb) 30.08/13.44 new_esEs21(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 30.08/13.44 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Int, cfe) -> new_esEs11(xwv4000, xwv3000) 30.08/13.44 new_compare113(xwv28000, xwv29000, True, cd, ce) -> LT 30.08/13.44 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_Ratio, cdg), cce) -> new_ltEs4(xwv28000, xwv29000, cdg) 30.08/13.44 new_esEs10(xwv28001, xwv29001, ty_@0) -> new_esEs16(xwv28001, xwv29001) 30.08/13.44 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_[], che)) -> new_ltEs5(xwv28000, xwv29000, che) 30.08/13.44 new_primMulInt(Pos(xwv40010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.44 new_primMulInt(Neg(xwv40010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.44 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Ordering) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.44 new_esEs12(Char(xwv4000), Char(xwv3000)) -> new_primEqNat0(xwv4000, xwv3000) 30.08/13.44 new_esEs22(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.44 new_esEs22(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.44 new_esEs22(xwv4000, xwv3000, app(app(ty_@2, bdg), bdh)) -> new_esEs4(xwv4000, xwv3000, bdg, bdh) 30.08/13.44 new_lt9(xwv28000, xwv29000, ty_Integer) -> new_lt19(xwv28000, xwv29000) 30.08/13.44 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Float) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.44 new_lt8(xwv28001, xwv29001, ty_@0) -> new_lt7(xwv28001, xwv29001) 30.08/13.44 new_lt9(xwv28000, xwv29000, app(ty_Ratio, ff)) -> new_lt6(xwv28000, xwv29000, ff) 30.08/13.44 new_ltEs19(xwv28001, xwv29001, ty_Int) -> new_ltEs9(xwv28001, xwv29001) 30.08/13.44 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(ty_@2, dca), dcb)) -> new_esEs4(xwv4000, xwv3000, dca, dcb) 30.08/13.44 new_lt19(xwv28000, xwv29000) -> new_esEs8(new_compare19(xwv28000, xwv29000), LT) 30.08/13.44 new_esEs24(xwv4002, xwv3002, ty_Double) -> new_esEs14(xwv4002, xwv3002) 30.08/13.44 new_esEs29(xwv400, xwv300, app(ty_Maybe, cfc)) -> new_esEs5(xwv400, xwv300, cfc) 30.08/13.44 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(ty_@2, ccf), ccg), cce) -> new_ltEs11(xwv28000, xwv29000, ccf, ccg) 30.08/13.44 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_Maybe, dbf)) -> new_esEs5(xwv4000, xwv3000, dbf) 30.08/13.44 new_esEs13(False, False) -> True 30.08/13.44 new_compare16(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.44 new_ltEs9(xwv2800, xwv2900) -> new_fsEs(new_compare12(xwv2800, xwv2900)) 30.08/13.44 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.44 new_lt20(xwv28000, xwv29000, app(ty_Maybe, cbb)) -> new_lt13(xwv28000, xwv29000, cbb) 30.08/13.44 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_Either, cga), cgb)) -> new_esEs7(xwv4000, xwv3000, cga, cgb) 30.08/13.44 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Integer, cfe) -> new_esEs18(xwv4000, xwv3000) 30.08/13.44 new_ltEs7(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ea, eb, ec) -> new_pePe(new_lt9(xwv28000, xwv29000, ea), new_asAs(new_esEs9(xwv28000, xwv29000, ea), new_pePe(new_lt8(xwv28001, xwv29001, eb), new_asAs(new_esEs10(xwv28001, xwv29001, eb), new_ltEs8(xwv28002, xwv29002, ec))))) 30.08/13.44 new_esEs23(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 30.08/13.44 new_esEs26(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.44 new_compare6(xwv28000, xwv29000, bd, be) -> new_compare25(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, bd, be), bd, be) 30.08/13.44 new_lt20(xwv28000, xwv29000, ty_Int) -> new_lt10(xwv28000, xwv29000) 30.08/13.44 new_esEs24(xwv4002, xwv3002, app(ty_Ratio, bge)) -> new_esEs19(xwv4002, xwv3002, bge) 30.08/13.44 new_esEs29(xwv400, xwv300, ty_@0) -> new_esEs16(xwv400, xwv300) 30.08/13.44 new_compare0([], :(xwv29000, xwv29001), cc) -> LT 30.08/13.44 new_asAs(True, xwv64) -> xwv64 30.08/13.44 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Bool) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.44 new_compare11(xwv28000, xwv29000, ty_Double) -> new_compare16(xwv28000, xwv29000) 30.08/13.44 new_esEs25(xwv4000, xwv3000, app(ty_[], cad)) -> new_esEs17(xwv4000, xwv3000, cad) 30.08/13.44 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(ty_@2, chb), chc)) -> new_ltEs11(xwv28000, xwv29000, chb, chc) 30.08/13.44 new_esEs10(xwv28001, xwv29001, app(ty_[], gb)) -> new_esEs17(xwv28001, xwv29001, gb) 30.08/13.44 new_ltEs20(xwv2800, xwv2900, ty_@0) -> new_ltEs15(xwv2800, xwv2900) 30.08/13.44 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.44 new_esEs14(Double(xwv4000, xwv4001), Double(xwv3000, xwv3001)) -> new_esEs11(new_sr0(xwv4000, xwv3001), new_sr0(xwv4001, xwv3000)) 30.08/13.44 new_lt16(xwv28000, xwv29000, cag) -> new_esEs8(new_compare0(xwv28000, xwv29000, cag), LT) 30.08/13.44 new_esEs20(xwv4000, xwv3000, app(ty_Maybe, bae)) -> new_esEs5(xwv4000, xwv3000, bae) 30.08/13.44 new_esEs16(@0, @0) -> True 30.08/13.44 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_@2, cgc), cgd)) -> new_esEs4(xwv4000, xwv3000, cgc, cgd) 30.08/13.44 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.44 new_esEs22(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.44 new_ltEs19(xwv28001, xwv29001, ty_@0) -> new_ltEs15(xwv28001, xwv29001) 30.08/13.44 new_primCmpInt(Pos(Succ(xwv2800)), Pos(xwv290)) -> new_primCmpNat0(Succ(xwv2800), xwv290) 30.08/13.44 new_esEs9(xwv28000, xwv29000, app(ty_[], eg)) -> new_esEs17(xwv28000, xwv29000, eg) 30.08/13.44 new_primPlusNat1(xwv107, xwv300000) -> new_primPlusNat0(xwv107, Succ(xwv300000)) 30.08/13.44 new_lt9(xwv28000, xwv29000, ty_Char) -> new_lt11(xwv28000, xwv29000) 30.08/13.44 new_esEs9(xwv28000, xwv29000, ty_Int) -> new_esEs11(xwv28000, xwv29000) 30.08/13.44 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_Maybe, dad), cfe) -> new_esEs5(xwv4000, xwv3000, dad) 30.08/13.44 new_primCompAux00(xwv160, EQ) -> xwv160 30.08/13.44 new_compare0([], [], cc) -> EQ 30.08/13.44 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.44 new_ltEs16(GT, GT) -> True 30.08/13.44 new_compare27(Nothing, Just(xwv2900), False, cff) -> LT 30.08/13.44 new_esEs28(xwv28000, xwv29000, ty_Float) -> new_esEs15(xwv28000, xwv29000) 30.08/13.44 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Int, cce) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.44 new_compare27(Just(xwv2800), Just(xwv2900), False, cff) -> new_compare112(xwv2800, xwv2900, new_ltEs20(xwv2800, xwv2900, cff), cff) 30.08/13.44 new_esEs21(xwv4001, xwv3001, app(app(ty_Either, bbh), bca)) -> new_esEs7(xwv4001, xwv3001, bbh, bca) 30.08/13.44 new_primMulNat0(Zero, Zero) -> Zero 30.08/13.44 new_lt20(xwv28000, xwv29000, app(ty_[], cag)) -> new_lt16(xwv28000, xwv29000, cag) 30.08/13.44 new_lt14(xwv28000, xwv29000) -> new_esEs8(new_compare16(xwv28000, xwv29000), LT) 30.08/13.44 new_esEs23(xwv4001, xwv3001, ty_Char) -> new_esEs12(xwv4001, xwv3001) 30.08/13.44 new_esEs24(xwv4002, xwv3002, app(ty_Maybe, bfh)) -> new_esEs5(xwv4002, xwv3002, bfh) 30.08/13.44 new_lt8(xwv28001, xwv29001, ty_Char) -> new_lt11(xwv28001, xwv29001) 30.08/13.44 new_esEs10(xwv28001, xwv29001, ty_Double) -> new_esEs14(xwv28001, xwv29001) 30.08/13.44 new_compare111(xwv28000, xwv29000, False) -> GT 30.08/13.44 new_ltEs20(xwv2800, xwv2900, app(ty_Maybe, cfg)) -> new_ltEs12(xwv2800, xwv2900, cfg) 30.08/13.44 new_lt15(xwv28000, xwv29000) -> new_esEs8(new_compare17(xwv28000, xwv29000), LT) 30.08/13.44 new_compare9(@0, @0) -> EQ 30.08/13.44 new_compare115(xwv28000, xwv29000, False, bf, bg, bh) -> GT 30.08/13.44 new_esEs21(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 30.08/13.44 new_esEs22(xwv4000, xwv3000, app(app(ty_Either, bde), bdf)) -> new_esEs7(xwv4000, xwv3000, bde, bdf) 30.08/13.44 new_compare28(xwv28000, xwv29000, True, bf, bg, bh) -> EQ 30.08/13.44 new_esEs9(xwv28000, xwv29000, app(app(ty_Either, fc), fd)) -> new_esEs7(xwv28000, xwv29000, fc, fd) 30.08/13.44 new_esEs20(xwv4000, xwv3000, app(ty_[], bbf)) -> new_esEs17(xwv4000, xwv3000, bbf) 30.08/13.44 new_compare8(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Int) -> new_compare12(new_sr0(xwv28000, xwv29001), new_sr0(xwv29000, xwv28001)) 30.08/13.44 new_esEs22(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.44 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Integer) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.44 new_ltEs8(xwv28002, xwv29002, ty_Int) -> new_ltEs9(xwv28002, xwv29002) 30.08/13.44 new_esEs9(xwv28000, xwv29000, ty_Integer) -> new_esEs18(xwv28000, xwv29000) 30.08/13.44 new_esEs29(xwv400, xwv300, app(ty_Ratio, cae)) -> new_esEs19(xwv400, xwv300, cae) 30.08/13.44 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.44 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_[], dcg)) -> new_esEs17(xwv4000, xwv3000, dcg) 30.08/13.45 new_esEs25(xwv4000, xwv3000, app(ty_Maybe, bhc)) -> new_esEs5(xwv4000, xwv3000, bhc) 30.08/13.45 new_primCompAux0(xwv28000, xwv29000, xwv148, cc) -> new_primCompAux00(xwv148, new_compare11(xwv28000, xwv29000, cc)) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.45 new_esEs22(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.45 new_lt9(xwv28000, xwv29000, ty_Float) -> new_lt15(xwv28000, xwv29000) 30.08/13.45 new_ltEs6(False, True) -> True 30.08/13.45 new_esEs9(xwv28000, xwv29000, ty_@0) -> new_esEs16(xwv28000, xwv29000) 30.08/13.45 new_compare25(xwv28000, xwv29000, False, bd, be) -> new_compare110(xwv28000, xwv29000, new_ltEs11(xwv28000, xwv29000, bd, be), bd, be) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Ordering, cfe) -> new_esEs8(xwv4000, xwv3000) 30.08/13.45 new_esEs20(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.45 new_esEs21(xwv4001, xwv3001, app(ty_[], bch)) -> new_esEs17(xwv4001, xwv3001, bch) 30.08/13.45 new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False 30.08/13.45 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Char, cce) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.45 new_esEs13(False, True) -> False 30.08/13.45 new_esEs13(True, False) -> False 30.08/13.45 new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.45 new_esEs28(xwv28000, xwv29000, app(ty_Ratio, ca)) -> new_esEs19(xwv28000, xwv29000, ca) 30.08/13.45 new_lt8(xwv28001, xwv29001, ty_Int) -> new_lt10(xwv28001, xwv29001) 30.08/13.45 new_compare11(xwv28000, xwv29000, ty_@0) -> new_compare9(xwv28000, xwv29000) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Bool) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Ordering) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.45 new_compare24(xwv28000, xwv29000, True) -> EQ 30.08/13.45 new_lt5(xwv28000, xwv29000, bf, bg, bh) -> new_esEs8(new_compare7(xwv28000, xwv29000, bf, bg, bh), LT) 30.08/13.45 new_lt20(xwv28000, xwv29000, ty_@0) -> new_lt7(xwv28000, xwv29000) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_[], dbe), cfe) -> new_esEs17(xwv4000, xwv3000, dbe) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_Ratio, cfb)) -> new_ltEs4(xwv28000, xwv29000, cfb) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, app(ty_Maybe, cbe)) -> new_ltEs12(xwv28001, xwv29001, cbe) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(ty_Either, dbg), dbh)) -> new_esEs7(xwv4000, xwv3000, dbg, dbh) 30.08/13.45 new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> False 30.08/13.45 new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> False 30.08/13.45 new_primCmpInt(Neg(Zero), Neg(Succ(xwv2900))) -> new_primCmpNat0(Succ(xwv2900), Zero) 30.08/13.45 new_esEs23(xwv4001, xwv3001, app(ty_Ratio, bfc)) -> new_esEs19(xwv4001, xwv3001, bfc) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_@0, cce) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.45 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.08/13.45 new_lt8(xwv28001, xwv29001, app(ty_Ratio, gh)) -> new_lt6(xwv28001, xwv29001, gh) 30.08/13.45 new_lt8(xwv28001, xwv29001, ty_Bool) -> new_lt12(xwv28001, xwv29001) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Char) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.45 new_esEs25(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.45 new_esEs28(xwv28000, xwv29000, app(ty_Maybe, cbb)) -> new_esEs5(xwv28000, xwv29000, cbb) 30.08/13.45 new_lt9(xwv28000, xwv29000, ty_@0) -> new_lt7(xwv28000, xwv29000) 30.08/13.45 new_lt11(xwv28000, xwv29000) -> new_esEs8(new_compare13(xwv28000, xwv29000), LT) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Double, cce) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.45 new_esEs23(xwv4001, xwv3001, ty_Double) -> new_esEs14(xwv4001, xwv3001) 30.08/13.45 new_lt20(xwv28000, xwv29000, ty_Double) -> new_lt14(xwv28000, xwv29000) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(ty_@2, cea), ceb)) -> new_ltEs11(xwv28000, xwv29000, cea, ceb) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, ty_Bool) -> new_ltEs6(xwv28002, xwv29002) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(ty_Either, daa), dab)) -> new_ltEs17(xwv28000, xwv29000, daa, dab) 30.08/13.45 new_esEs24(xwv4002, xwv3002, ty_Float) -> new_esEs15(xwv4002, xwv3002) 30.08/13.45 new_compare8(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Integer) -> new_compare19(new_sr(xwv28000, xwv29001), new_sr(xwv29000, xwv28001)) 30.08/13.45 new_esEs25(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.45 new_compare26(xwv28000, xwv29000, False) -> new_compare111(xwv28000, xwv29000, new_ltEs6(xwv28000, xwv29000)) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_[], cda), cce) -> new_ltEs5(xwv28000, xwv29000, cda) 30.08/13.45 new_not(False) -> True 30.08/13.45 new_esEs21(xwv4001, xwv3001, ty_Double) -> new_esEs14(xwv4001, xwv3001) 30.08/13.45 new_esEs21(xwv4001, xwv3001, ty_Bool) -> new_esEs13(xwv4001, xwv3001) 30.08/13.45 new_esEs24(xwv4002, xwv3002, app(ty_[], bha)) -> new_esEs17(xwv4002, xwv3002, bha) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_Ratio, dac)) -> new_ltEs4(xwv28000, xwv29000, dac) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_Maybe, cec)) -> new_ltEs12(xwv28000, xwv29000, cec) 30.08/13.45 new_esEs9(xwv28000, xwv29000, ty_Char) -> new_esEs12(xwv28000, xwv29000) 30.08/13.45 new_compare0(:(xwv28000, xwv28001), [], cc) -> GT 30.08/13.45 new_esEs8(LT, GT) -> False 30.08/13.45 new_esEs8(GT, LT) -> False 30.08/13.45 new_compare27(Just(xwv2800), Nothing, False, cff) -> GT 30.08/13.45 new_primPlusNat0(Succ(xwv33200), Succ(xwv9700)) -> Succ(Succ(new_primPlusNat0(xwv33200, xwv9700))) 30.08/13.45 new_esEs24(xwv4002, xwv3002, ty_@0) -> new_esEs16(xwv4002, xwv3002) 30.08/13.45 new_esEs27(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.45 new_esEs25(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.45 new_esEs21(xwv4001, xwv3001, ty_Char) -> new_esEs12(xwv4001, xwv3001) 30.08/13.45 new_compare16(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.45 new_compare11(xwv28000, xwv29000, ty_Float) -> new_compare17(xwv28000, xwv29000) 30.08/13.45 new_esEs6(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), bda, bdb, bdc) -> new_asAs(new_esEs22(xwv4000, xwv3000, bda), new_asAs(new_esEs23(xwv4001, xwv3001, bdb), new_esEs24(xwv4002, xwv3002, bdc))) 30.08/13.45 new_esEs9(xwv28000, xwv29000, ty_Bool) -> new_esEs13(xwv28000, xwv29000) 30.08/13.45 new_esEs27(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.45 new_sr0(xwv4001, xwv3000) -> new_primMulInt(xwv4001, xwv3000) 30.08/13.45 new_lt9(xwv28000, xwv29000, ty_Bool) -> new_lt12(xwv28000, xwv29000) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, ty_Char) -> new_ltEs10(xwv28001, xwv29001) 30.08/13.45 new_lt20(xwv28000, xwv29000, app(app(ty_Either, cd), ce)) -> new_lt18(xwv28000, xwv29000, cd, ce) 30.08/13.45 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.08/13.45 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.08/13.45 new_ltEs8(xwv28002, xwv29002, app(app(ty_@2, ha), hb)) -> new_ltEs11(xwv28002, xwv29002, ha, hb) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, ty_Char) -> new_ltEs10(xwv28002, xwv29002) 30.08/13.45 new_compare0(:(xwv28000, xwv28001), :(xwv29000, xwv29001), cc) -> new_primCompAux0(xwv28000, xwv29000, new_compare0(xwv28001, xwv29001, cc), cc) 30.08/13.45 new_lt20(xwv28000, xwv29000, app(app(ty_@2, bd), be)) -> new_lt4(xwv28000, xwv29000, bd, be) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), ty_@0, cfe) -> new_esEs16(xwv4000, xwv3000) 30.08/13.45 new_esEs22(xwv4000, xwv3000, app(ty_[], bee)) -> new_esEs17(xwv4000, xwv3000, bee) 30.08/13.45 new_compare11(xwv28000, xwv29000, app(ty_[], db)) -> new_compare0(xwv28000, xwv29000, db) 30.08/13.45 new_esEs10(xwv28001, xwv29001, app(ty_Ratio, gh)) -> new_esEs19(xwv28001, xwv29001, gh) 30.08/13.45 new_lt8(xwv28001, xwv29001, ty_Integer) -> new_lt19(xwv28001, xwv29001) 30.08/13.45 new_esEs9(xwv28000, xwv29000, ty_Double) -> new_esEs14(xwv28000, xwv29000) 30.08/13.45 new_esEs10(xwv28001, xwv29001, ty_Bool) -> new_esEs13(xwv28001, xwv29001) 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_[], cha)) -> new_esEs17(xwv4000, xwv3000, cha) 30.08/13.45 new_lt6(xwv28000, xwv29000, ca) -> new_esEs8(new_compare8(xwv28000, xwv29000, ca), LT) 30.08/13.45 new_ltEs12(Nothing, Just(xwv29000), cfg) -> True 30.08/13.45 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.08/13.45 new_esEs21(xwv4001, xwv3001, app(ty_Ratio, bcd)) -> new_esEs19(xwv4001, xwv3001, bcd) 30.08/13.45 new_esEs28(xwv28000, xwv29000, app(app(ty_@2, bd), be)) -> new_esEs4(xwv28000, xwv29000, bd, be) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.45 new_primCmpNat0(Succ(xwv2800), Succ(xwv2900)) -> new_primCmpNat0(xwv2800, xwv2900) 30.08/13.45 new_ltEs15(xwv2800, xwv2900) -> new_fsEs(new_compare9(xwv2800, xwv2900)) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, app(ty_Maybe, hc)) -> new_ltEs12(xwv28002, xwv29002, hc) 30.08/13.45 new_lt8(xwv28001, xwv29001, ty_Float) -> new_lt15(xwv28001, xwv29001) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs7(xwv28000, xwv29000, cee, cef, ceg) 30.08/13.45 new_compare11(xwv28000, xwv29000, app(app(ty_Either, df), dg)) -> new_compare10(xwv28000, xwv29000, df, dg) 30.08/13.45 new_esEs28(xwv28000, xwv29000, ty_Ordering) -> new_esEs8(xwv28000, xwv29000) 30.08/13.45 new_compare12(xwv28, xwv29) -> new_primCmpInt(xwv28, xwv29) 30.08/13.45 new_ltEs12(Nothing, Nothing, cfg) -> True 30.08/13.45 new_ltEs20(xwv2800, xwv2900, ty_Char) -> new_ltEs10(xwv2800, xwv2900) 30.08/13.45 new_esEs19(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), cae) -> new_asAs(new_esEs26(xwv4000, xwv3000, cae), new_esEs27(xwv4001, xwv3001, cae)) 30.08/13.45 new_ltEs12(Just(xwv28000), Nothing, cfg) -> False 30.08/13.45 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.08/13.45 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.08/13.45 new_esEs29(xwv400, xwv300, app(app(ty_@2, bac), bad)) -> new_esEs4(xwv400, xwv300, bac, bad) 30.08/13.45 new_ltEs17(Right(xwv28000), Left(xwv29000), cdh, cce) -> False 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Float) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.45 new_ltEs5(xwv2800, xwv2900, cc) -> new_fsEs(new_compare0(xwv2800, xwv2900, cc)) 30.08/13.45 new_compare110(xwv28000, xwv29000, False, bd, be) -> GT 30.08/13.45 new_compare11(xwv28000, xwv29000, app(ty_Ratio, dh)) -> new_compare8(xwv28000, xwv29000, dh) 30.08/13.45 new_primEqNat0(Zero, Zero) -> True 30.08/13.45 new_ltEs20(xwv2800, xwv2900, ty_Int) -> new_ltEs9(xwv2800, xwv2900) 30.08/13.45 new_esEs20(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.45 new_ltEs20(xwv2800, xwv2900, app(ty_[], cc)) -> new_ltEs5(xwv2800, xwv2900, cc) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Float, cfe) -> new_esEs15(xwv4000, xwv3000) 30.08/13.45 new_esEs28(xwv28000, xwv29000, app(app(app(ty_@3, bf), bg), bh)) -> new_esEs6(xwv28000, xwv29000, bf, bg, bh) 30.08/13.45 new_esEs29(xwv400, xwv300, ty_Ordering) -> new_esEs8(xwv400, xwv300) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Integer) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.45 new_compare7(xwv28000, xwv29000, bf, bg, bh) -> new_compare28(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bf, bg, bh), bf, bg, bh) 30.08/13.45 new_asAs(False, xwv64) -> False 30.08/13.45 new_esEs17(:(xwv4000, xwv4001), [], bhb) -> False 30.08/13.45 new_esEs17([], :(xwv3000, xwv3001), bhb) -> False 30.08/13.45 new_esEs20(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.45 new_esEs29(xwv400, xwv300, app(app(ty_Either, cfd), cfe)) -> new_esEs7(xwv400, xwv300, cfd, cfe) 30.08/13.45 new_esEs26(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.45 new_esEs25(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.45 new_lt10(xwv280, xwv290) -> new_esEs8(new_compare12(xwv280, xwv290), LT) 30.08/13.45 new_esEs8(EQ, GT) -> False 30.08/13.45 new_esEs8(GT, EQ) -> False 30.08/13.45 new_compare112(xwv125, xwv126, False, caf) -> GT 30.08/13.45 new_esEs20(xwv4000, xwv3000, app(ty_Ratio, bbb)) -> new_esEs19(xwv4000, xwv3000, bbb) 30.08/13.45 new_lt20(xwv28000, xwv29000, app(app(app(ty_@3, bf), bg), bh)) -> new_lt5(xwv28000, xwv29000, bf, bg, bh) 30.08/13.45 new_compare17(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.45 new_esEs15(Float(xwv4000, xwv4001), Float(xwv3000, xwv3001)) -> new_esEs11(new_sr0(xwv4000, xwv3001), new_sr0(xwv4001, xwv3000)) 30.08/13.45 new_esEs7(Left(xwv4000), Right(xwv3000), cfd, cfe) -> False 30.08/13.45 new_esEs7(Right(xwv4000), Left(xwv3000), cfd, cfe) -> False 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_Ratio, dba), cfe) -> new_esEs19(xwv4000, xwv3000, dba) 30.08/13.45 new_esEs11(xwv400, xwv300) -> new_primEqInt(xwv400, xwv300) 30.08/13.45 new_ltEs11(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), cah, cba) -> new_pePe(new_lt20(xwv28000, xwv29000, cah), new_asAs(new_esEs28(xwv28000, xwv29000, cah), new_ltEs19(xwv28001, xwv29001, cba))) 30.08/13.45 30.08/13.45 The set Q consists of the following terms: 30.08/13.45 30.08/13.45 new_esEs29(x0, x1, ty_Integer) 30.08/13.45 new_compare11(x0, x1, ty_Ordering) 30.08/13.45 new_esEs8(EQ, EQ) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.08/13.45 new_esEs20(x0, x1, ty_Float) 30.08/13.45 new_lt16(x0, x1, x2) 30.08/13.45 new_esEs9(x0, x1, ty_@0) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.08/13.45 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_lt20(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_compare24(x0, x1, False) 30.08/13.45 new_esEs5(Just(x0), Just(x1), ty_Float) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) 30.08/13.45 new_compare11(x0, x1, ty_Double) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.08/13.45 new_compare26(x0, x1, False) 30.08/13.45 new_esEs18(Integer(x0), Integer(x1)) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.08/13.45 new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs9(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_compare112(x0, x1, False, x2) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) 30.08/13.45 new_pePe(False, x0) 30.08/13.45 new_compare11(x0, x1, app(ty_[], x2)) 30.08/13.45 new_compare11(x0, x1, ty_Int) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.08/13.45 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.08/13.45 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 30.08/13.45 new_sr(Integer(x0), Integer(x1)) 30.08/13.45 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_primEqInt(Pos(Zero), Pos(Zero)) 30.08/13.45 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.08/13.45 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), ty_@0, x2) 30.08/13.45 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_compare27(Nothing, Nothing, False, x0) 30.08/13.45 new_lt8(x0, x1, app(ty_[], x2)) 30.08/13.45 new_ltEs8(x0, x1, ty_Float) 30.08/13.45 new_compare13(Char(x0), Char(x1)) 30.08/13.45 new_lt20(x0, x1, ty_@0) 30.08/13.45 new_lt6(x0, x1, x2) 30.08/13.45 new_esEs23(x0, x1, ty_Float) 30.08/13.45 new_ltEs20(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs25(x0, x1, ty_Ordering) 30.08/13.45 new_ltEs15(x0, x1) 30.08/13.45 new_esEs9(x0, x1, ty_Integer) 30.08/13.45 new_ltEs19(x0, x1, ty_Bool) 30.08/13.45 new_esEs22(x0, x1, ty_Float) 30.08/13.45 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_esEs10(x0, x1, ty_Integer) 30.08/13.45 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.08/13.45 new_primEqInt(Neg(Zero), Neg(Zero)) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.08/13.45 new_ltEs8(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_lt20(x0, x1, ty_Integer) 30.08/13.45 new_ltEs16(GT, EQ) 30.08/13.45 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_ltEs16(EQ, GT) 30.08/13.45 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 30.08/13.45 new_compare12(x0, x1) 30.08/13.45 new_ltEs13(x0, x1) 30.08/13.45 new_primPlusNat0(Succ(x0), Succ(x1)) 30.08/13.45 new_compare11(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_ltEs8(x0, x1, ty_Integer) 30.08/13.45 new_primMulInt(Pos(x0), Neg(x1)) 30.08/13.45 new_primMulInt(Neg(x0), Pos(x1)) 30.08/13.45 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.08/13.45 new_esEs5(Nothing, Nothing, x0) 30.08/13.45 new_ltEs16(LT, LT) 30.08/13.45 new_primMulInt(Neg(x0), Neg(x1)) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) 30.08/13.45 new_esEs17([], [], x0) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, ty_Double) 30.08/13.45 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_esEs29(x0, x1, ty_@0) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.08/13.45 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_esEs9(x0, x1, ty_Char) 30.08/13.45 new_compare115(x0, x1, True, x2, x3, x4) 30.08/13.45 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_primEqNat0(Succ(x0), Succ(x1)) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.08/13.45 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs21(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs29(x0, x1, ty_Bool) 30.08/13.45 new_esEs29(x0, x1, ty_Float) 30.08/13.45 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_esEs22(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs9(x0, x1, ty_Int) 30.08/13.45 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 30.08/13.45 new_asAs(True, x0) 30.08/13.45 new_primEqInt(Pos(Zero), Neg(Zero)) 30.08/13.45 new_primEqInt(Neg(Zero), Pos(Zero)) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), ty_Float, x2) 30.08/13.45 new_esEs5(Just(x0), Just(x1), ty_Integer) 30.08/13.45 new_primCompAux00(x0, GT) 30.08/13.45 new_lt20(x0, x1, ty_Bool) 30.08/13.45 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.08/13.45 new_esEs27(x0, x1, ty_Integer) 30.08/13.45 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_compare111(x0, x1, False) 30.08/13.45 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_lt20(x0, x1, ty_Char) 30.08/13.45 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_esEs28(x0, x1, ty_Double) 30.08/13.45 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.08/13.45 new_ltEs20(x0, x1, ty_Float) 30.08/13.45 new_ltEs19(x0, x1, ty_Integer) 30.08/13.45 new_esEs17([], :(x0, x1), x2) 30.08/13.45 new_esEs29(x0, x1, ty_Char) 30.08/13.45 new_esEs28(x0, x1, ty_Int) 30.08/13.45 new_esEs9(x0, x1, ty_Bool) 30.08/13.45 new_lt15(x0, x1) 30.08/13.45 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 30.08/13.45 new_compare0(:(x0, x1), [], x2) 30.08/13.45 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_esEs21(x0, x1, ty_Integer) 30.08/13.45 new_esEs22(x0, x1, ty_@0) 30.08/13.45 new_compare14(x0, x1) 30.08/13.45 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_primCompAux00(x0, EQ) 30.08/13.45 new_fsEs(x0) 30.08/13.45 new_lt20(x0, x1, ty_Ordering) 30.08/13.45 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.08/13.45 new_primCmpNat0(Succ(x0), Zero) 30.08/13.45 new_ltEs8(x0, x1, ty_@0) 30.08/13.45 new_ltEs19(x0, x1, ty_Ordering) 30.08/13.45 new_compare111(x0, x1, True) 30.08/13.45 new_primCmpNat0(Succ(x0), Succ(x1)) 30.08/13.45 new_ltEs16(GT, GT) 30.08/13.45 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 30.08/13.45 new_ltEs5(x0, x1, x2) 30.08/13.45 new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_compare11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_esEs21(x0, x1, ty_Bool) 30.08/13.45 new_esEs5(Just(x0), Just(x1), ty_@0) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), ty_Double, x2) 30.08/13.45 new_ltEs16(LT, EQ) 30.08/13.45 new_ltEs16(EQ, LT) 30.08/13.45 new_compare11(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.08/13.45 new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.08/13.45 new_ltEs19(x0, x1, ty_Double) 30.08/13.45 new_esEs24(x0, x1, ty_Integer) 30.08/13.45 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 30.08/13.45 new_compare11(x0, x1, ty_@0) 30.08/13.45 new_compare26(x0, x1, True) 30.08/13.45 new_lt17(x0, x1) 30.08/13.45 new_esEs23(x0, x1, ty_Integer) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, ty_@0) 30.08/13.45 new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.08/13.45 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_lt8(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.08/13.45 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs8(GT, GT) 30.08/13.45 new_esEs9(x0, x1, ty_Float) 30.08/13.45 new_esEs20(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs8(LT, EQ) 30.08/13.45 new_esEs8(EQ, LT) 30.08/13.45 new_esEs20(x0, x1, ty_Bool) 30.08/13.45 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_compare28(x0, x1, True, x2, x3, x4) 30.08/13.45 new_compare19(Integer(x0), Integer(x1)) 30.08/13.45 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.08/13.45 new_primPlusNat0(Zero, Succ(x0)) 30.08/13.45 new_esEs25(x0, x1, ty_Int) 30.08/13.45 new_esEs24(x0, x1, ty_Float) 30.08/13.45 new_esEs10(x0, x1, ty_Double) 30.08/13.45 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.08/13.45 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.08/13.45 new_esEs13(False, True) 30.08/13.45 new_esEs13(True, False) 30.08/13.45 new_esEs24(x0, x1, ty_Bool) 30.08/13.45 new_compare113(x0, x1, False, x2, x3) 30.08/13.45 new_compare0(:(x0, x1), :(x2, x3), x4) 30.08/13.45 new_ltEs14(x0, x1) 30.08/13.45 new_esEs8(LT, LT) 30.08/13.45 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.08/13.45 new_lt9(x0, x1, ty_Float) 30.08/13.45 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.08/13.45 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.08/13.45 new_primEqNat0(Succ(x0), Zero) 30.08/13.45 new_esEs22(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_compare11(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_compare23(x0, x1, False, x2, x3) 30.08/13.45 new_esEs26(x0, x1, ty_Integer) 30.08/13.45 new_lt8(x0, x1, ty_Integer) 30.08/13.45 new_esEs10(x0, x1, ty_@0) 30.08/13.45 new_lt11(x0, x1) 30.08/13.45 new_ltEs6(False, False) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_esEs17(:(x0, x1), [], x2) 30.08/13.45 new_esEs25(x0, x1, ty_Bool) 30.08/13.45 new_ltEs19(x0, x1, ty_@0) 30.08/13.45 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.08/13.45 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.08/13.45 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_asAs(False, x0) 30.08/13.45 new_esEs27(x0, x1, ty_Int) 30.08/13.45 new_esEs10(x0, x1, app(ty_[], x2)) 30.08/13.45 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.08/13.45 new_ltEs8(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs25(x0, x1, ty_Char) 30.08/13.45 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.08/13.45 new_esEs24(x0, x1, ty_Int) 30.08/13.45 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_lt8(x0, x1, ty_Ordering) 30.08/13.45 new_ltEs8(x0, x1, ty_Double) 30.08/13.45 new_esEs16(@0, @0) 30.08/13.45 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs23(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs22(x0, x1, ty_Double) 30.08/13.45 new_esEs24(x0, x1, ty_Char) 30.08/13.45 new_esEs20(x0, x1, ty_Integer) 30.08/13.45 new_primMulInt(Pos(x0), Pos(x1)) 30.08/13.45 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_primPlusNat0(Succ(x0), Zero) 30.08/13.45 new_esEs21(x0, x1, ty_Float) 30.08/13.45 new_compare110(x0, x1, False, x2, x3) 30.08/13.45 new_esEs28(x0, x1, ty_Integer) 30.08/13.45 new_lt8(x0, x1, ty_@0) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs5(Just(x0), Just(x1), ty_Ordering) 30.08/13.45 new_ltEs16(EQ, EQ) 30.08/13.45 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.08/13.45 new_ltEs4(x0, x1, x2) 30.08/13.45 new_esEs20(x0, x1, ty_Ordering) 30.08/13.45 new_esEs23(x0, x1, ty_Int) 30.08/13.45 new_esEs20(x0, x1, ty_Double) 30.08/13.45 new_lt8(x0, x1, ty_Bool) 30.08/13.45 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 30.08/13.45 new_ltEs20(x0, x1, ty_Int) 30.08/13.45 new_esEs21(x0, x1, ty_Char) 30.08/13.45 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_primMulNat0(Zero, Zero) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.08/13.45 new_esEs24(x0, x1, app(ty_[], x2)) 30.08/13.45 new_compare114(x0, x1, False) 30.08/13.45 new_ltEs17(Left(x0), Right(x1), x2, x3) 30.08/13.45 new_ltEs17(Right(x0), Left(x1), x2, x3) 30.08/13.45 new_ltEs20(x0, x1, ty_Double) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) 30.08/13.45 new_esEs28(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_esEs22(x0, x1, ty_Ordering) 30.08/13.45 new_esEs11(x0, x1) 30.08/13.45 new_esEs21(x0, x1, ty_Int) 30.08/13.45 new_compare0([], [], x0) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 30.08/13.45 new_lt9(x0, x1, ty_Char) 30.08/13.45 new_esEs23(x0, x1, ty_Ordering) 30.08/13.45 new_ltEs18(x0, x1) 30.08/13.45 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 30.08/13.45 new_compare9(@0, @0) 30.08/13.45 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.08/13.45 new_esEs5(Nothing, Just(x0), x1) 30.08/13.45 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_compare27(Nothing, Just(x0), False, x1) 30.08/13.45 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.08/13.45 new_esEs21(x0, x1, ty_Double) 30.08/13.45 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_lt9(x0, x1, ty_Int) 30.08/13.45 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.08/13.45 new_lt9(x0, x1, ty_@0) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 30.08/13.45 new_esEs5(Just(x0), Just(x1), ty_Int) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.08/13.45 new_esEs5(Just(x0), Just(x1), ty_Double) 30.08/13.45 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 30.08/13.45 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_esEs5(Just(x0), Just(x1), ty_Char) 30.08/13.45 new_esEs25(x0, x1, ty_Integer) 30.08/13.45 new_esEs29(x0, x1, app(ty_[], x2)) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.08/13.45 new_compare11(x0, x1, ty_Float) 30.08/13.45 new_esEs25(x0, x1, ty_Float) 30.08/13.45 new_lt4(x0, x1, x2, x3) 30.08/13.45 new_primPlusNat0(Zero, Zero) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.08/13.45 new_lt8(x0, x1, ty_Char) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) 30.08/13.45 new_primEqNat0(Zero, Succ(x0)) 30.08/13.45 new_not(True) 30.08/13.45 new_lt9(x0, x1, ty_Bool) 30.08/13.45 new_lt9(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_esEs25(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs20(x0, x1, ty_Char) 30.08/13.45 new_esEs8(EQ, GT) 30.08/13.45 new_esEs8(GT, EQ) 30.08/13.45 new_compare115(x0, x1, False, x2, x3, x4) 30.08/13.45 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_lt12(x0, x1) 30.08/13.45 new_esEs28(x0, x1, ty_@0) 30.08/13.45 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.08/13.45 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.08/13.45 new_esEs15(Float(x0, x1), Float(x2, x3)) 30.08/13.45 new_lt10(x0, x1) 30.08/13.45 new_esEs28(x0, x1, ty_Bool) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 30.08/13.45 new_esEs10(x0, x1, ty_Ordering) 30.08/13.45 new_esEs24(x0, x1, ty_Ordering) 30.08/13.45 new_esEs13(True, True) 30.08/13.45 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_lt9(x0, x1, ty_Double) 30.08/13.45 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.08/13.45 new_esEs28(x0, x1, ty_Float) 30.08/13.45 new_ltEs20(x0, x1, ty_Char) 30.08/13.45 new_esEs10(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_primCompAux00(x0, LT) 30.08/13.45 new_esEs23(x0, x1, ty_@0) 30.08/13.45 new_primMulNat0(Zero, Succ(x0)) 30.08/13.45 new_lt20(x0, x1, ty_Double) 30.08/13.45 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.08/13.45 new_esEs21(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_esEs21(x0, x1, ty_Ordering) 30.08/13.45 new_compare18(x0, x1) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.08/13.45 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.08/13.45 new_ltEs20(x0, x1, ty_@0) 30.08/13.45 new_esEs22(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_ltEs8(x0, x1, ty_Ordering) 30.08/13.45 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_esEs20(x0, x1, ty_Int) 30.08/13.45 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_esEs23(x0, x1, ty_Bool) 30.08/13.45 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.08/13.45 new_ltEs16(LT, GT) 30.08/13.45 new_ltEs16(GT, LT) 30.08/13.45 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_primPlusNat1(x0, x1) 30.08/13.45 new_lt5(x0, x1, x2, x3, x4) 30.08/13.45 new_ltEs10(x0, x1) 30.08/13.45 new_lt8(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.08/13.45 new_ltEs6(True, True) 30.08/13.45 new_esEs29(x0, x1, ty_Double) 30.08/13.45 new_esEs5(Just(x0), Nothing, x1) 30.08/13.45 new_esEs28(x0, x1, ty_Char) 30.08/13.45 new_compare25(x0, x1, False, x2, x3) 30.08/13.45 new_compare28(x0, x1, False, x2, x3, x4) 30.08/13.45 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_lt8(x0, x1, ty_Int) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.08/13.45 new_esEs29(x0, x1, ty_Int) 30.08/13.45 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_compare27(x0, x1, True, x2) 30.08/13.45 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_esEs23(x0, x1, ty_Char) 30.08/13.45 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.08/13.45 new_esEs26(x0, x1, ty_Int) 30.08/13.45 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.08/13.45 new_compare15(x0, x1, x2) 30.08/13.45 new_esEs23(x0, x1, ty_Double) 30.08/13.45 new_compare27(Just(x0), Just(x1), False, x2) 30.08/13.45 new_esEs9(x0, x1, ty_Double) 30.08/13.45 new_lt8(x0, x1, ty_Double) 30.08/13.45 new_compare110(x0, x1, True, x2, x3) 30.08/13.45 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 30.08/13.45 new_esEs7(Left(x0), Right(x1), x2, x3) 30.08/13.45 new_esEs7(Right(x0), Left(x1), x2, x3) 30.08/13.45 new_esEs10(x0, x1, ty_Char) 30.08/13.45 new_lt8(x0, x1, ty_Float) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), ty_Int, x2) 30.08/13.45 new_primMulNat0(Succ(x0), Zero) 30.08/13.45 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, ty_Char) 30.08/13.45 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 30.08/13.45 new_esEs20(x0, x1, ty_@0) 30.08/13.45 new_esEs22(x0, x1, ty_Bool) 30.08/13.45 new_esEs9(x0, x1, ty_Ordering) 30.08/13.45 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_pePe(True, x0) 30.08/13.45 new_primCompAux0(x0, x1, x2, x3) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) 30.08/13.45 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_compare7(x0, x1, x2, x3, x4) 30.08/13.45 new_compare114(x0, x1, True) 30.08/13.45 new_esEs8(LT, GT) 30.08/13.45 new_esEs8(GT, LT) 30.08/13.45 new_compare112(x0, x1, True, x2) 30.08/13.45 new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.08/13.45 new_ltEs19(x0, x1, ty_Int) 30.08/13.45 new_esEs5(Just(x0), Just(x1), ty_Bool) 30.08/13.45 new_ltEs8(x0, x1, ty_Bool) 30.08/13.45 new_lt20(x0, x1, ty_Int) 30.08/13.45 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.08/13.45 new_compare27(Just(x0), Nothing, False, x1) 30.08/13.45 new_compare11(x0, x1, ty_Integer) 30.08/13.45 new_ltEs12(Nothing, Nothing, x0) 30.08/13.45 new_ltEs19(x0, x1, ty_Char) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), ty_Char, x2) 30.08/13.45 new_lt9(x0, x1, app(ty_[], x2)) 30.08/13.45 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_lt9(x0, x1, ty_Integer) 30.08/13.45 new_esEs25(x0, x1, ty_@0) 30.08/13.45 new_compare23(x0, x1, True, x2, x3) 30.08/13.45 new_ltEs20(x0, x1, ty_Bool) 30.08/13.45 new_sr0(x0, x1) 30.08/13.45 new_lt9(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 30.08/13.45 new_compare25(x0, x1, True, x2, x3) 30.08/13.45 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.08/13.45 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.08/13.45 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.08/13.45 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.08/13.45 new_compare11(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_esEs22(x0, x1, ty_Integer) 30.08/13.45 new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 30.08/13.45 new_primMulNat0(Succ(x0), Succ(x1)) 30.08/13.45 new_esEs9(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_lt20(x0, x1, ty_Float) 30.08/13.45 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, ty_Int) 30.08/13.45 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.08/13.45 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs10(x0, x1, ty_Float) 30.08/13.45 new_primEqNat0(Zero, Zero) 30.08/13.45 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_esEs13(False, False) 30.08/13.45 new_compare10(x0, x1, x2, x3) 30.08/13.45 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_lt14(x0, x1) 30.08/13.45 new_compare113(x0, x1, True, x2, x3) 30.08/13.45 new_lt9(x0, x1, ty_Ordering) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.08/13.45 new_esEs12(Char(x0), Char(x1)) 30.08/13.45 new_esEs22(x0, x1, ty_Char) 30.08/13.45 new_not(False) 30.08/13.45 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_ltEs8(x0, x1, ty_Int) 30.08/13.45 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.08/13.45 new_compare6(x0, x1, x2, x3) 30.08/13.45 new_ltEs9(x0, x1) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 30.08/13.45 new_esEs10(x0, x1, ty_Bool) 30.08/13.45 new_ltEs8(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_compare0([], :(x0, x1), x2) 30.08/13.45 new_ltEs19(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs21(x0, x1, ty_@0) 30.08/13.45 new_lt13(x0, x1, x2) 30.08/13.45 new_compare11(x0, x1, ty_Char) 30.08/13.45 new_esEs22(x0, x1, ty_Int) 30.08/13.45 new_esEs24(x0, x1, ty_@0) 30.08/13.45 new_ltEs6(True, False) 30.08/13.45 new_esEs10(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_ltEs6(False, True) 30.08/13.45 new_esEs9(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs14(Double(x0, x1), Double(x2, x3)) 30.08/13.45 new_lt7(x0, x1) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, ty_Float) 30.08/13.45 new_ltEs12(Just(x0), Nothing, x1) 30.08/13.45 new_esEs21(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_lt19(x0, x1) 30.08/13.45 new_esEs29(x0, x1, ty_Ordering) 30.08/13.45 new_esEs10(x0, x1, ty_Int) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.08/13.45 new_ltEs12(Nothing, Just(x0), x1) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 30.08/13.45 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.08/13.45 new_lt18(x0, x1, x2, x3) 30.08/13.45 new_primCmpNat0(Zero, Succ(x0)) 30.08/13.45 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.08/13.45 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.08/13.45 new_ltEs20(x0, x1, ty_Integer) 30.08/13.45 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.08/13.45 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.08/13.45 new_esEs28(x0, x1, ty_Ordering) 30.08/13.45 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.08/13.45 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.08/13.45 new_esEs25(x0, x1, ty_Double) 30.08/13.45 new_ltEs8(x0, x1, ty_Char) 30.08/13.45 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.08/13.45 new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.08/13.45 new_ltEs20(x0, x1, ty_Ordering) 30.08/13.45 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_compare11(x0, x1, ty_Bool) 30.08/13.45 new_ltEs19(x0, x1, ty_Float) 30.08/13.45 new_esEs24(x0, x1, ty_Double) 30.08/13.45 new_primCmpNat0(Zero, Zero) 30.08/13.45 new_compare24(x0, x1, True) 30.08/13.45 new_esEs17(:(x0, x1), :(x2, x3), x4) 30.08/13.45 30.08/13.45 We have to consider all minimal (P,Q,R)-chains. 30.08/13.45 ---------------------------------------- 30.08/13.45 30.08/13.45 (24) DependencyGraphProof (EQUIVALENT) 30.08/13.45 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 30.08/13.45 ---------------------------------------- 30.08/13.45 30.08/13.45 (25) 30.08/13.45 Complex Obligation (AND) 30.08/13.45 30.08/13.45 ---------------------------------------- 30.08/13.45 30.08/13.45 (26) 30.08/13.45 Obligation: 30.08/13.45 Q DP problem: 30.08/13.45 The TRS P consists of the following rules: 30.08/13.45 30.08/13.45 new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv33, Nothing, h, ba) 30.08/13.45 new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Nothing, h, ba) -> new_delFromFM1(xwv31, xwv32, xwv33, xwv34, new_esEs8(new_compare27(Nothing, Nothing, new_esEs5(Nothing, Nothing, h), h), LT), h, ba) 30.08/13.45 new_delFromFM1(xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv33, Nothing, h, ba) 30.08/13.45 new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Nothing, h, ba) -> new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, new_esEs8(new_compare27(Nothing, Just(xwv300), False, h), GT), h, ba) 30.08/13.45 new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, False, h, ba) -> new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, new_esEs8(new_compare27(Nothing, Just(xwv300), new_esEs5(Nothing, Just(xwv300), h), h), LT), h, ba) 30.08/13.45 new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv34, Nothing, h, ba) 30.08/13.45 30.08/13.45 The TRS R consists of the following rules: 30.08/13.45 30.08/13.45 new_ltEs4(xwv2800, xwv2900, cb) -> new_fsEs(new_compare8(xwv2800, xwv2900, cb)) 30.08/13.45 new_lt7(xwv28000, xwv29000) -> new_esEs8(new_compare9(xwv28000, xwv29000), LT) 30.08/13.45 new_primCmpInt(Neg(Succ(xwv2800)), Pos(xwv290)) -> LT 30.08/13.45 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.08/13.45 new_lt18(xwv28000, xwv29000, cd, ce) -> new_esEs8(new_compare10(xwv28000, xwv29000, cd, ce), LT) 30.08/13.45 new_lt20(xwv28000, xwv29000, ty_Float) -> new_lt15(xwv28000, xwv29000) 30.08/13.45 new_esEs23(xwv4001, xwv3001, app(ty_[], bfg)) -> new_esEs17(xwv4001, xwv3001, bfg) 30.08/13.45 new_primPlusNat0(Zero, Zero) -> Zero 30.08/13.45 new_esEs25(xwv4000, xwv3000, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs6(xwv4000, xwv3000, caa, cab, cac) 30.08/13.45 new_pePe(True, xwv138) -> True 30.08/13.45 new_esEs22(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs7(xwv28002, xwv29002, he, hf, hg) 30.08/13.45 new_lt4(xwv28000, xwv29000, bd, be) -> new_esEs8(new_compare6(xwv28000, xwv29000, bd, be), LT) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Int) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.45 new_compare112(xwv125, xwv126, True, caf) -> LT 30.08/13.45 new_lt20(xwv28000, xwv29000, ty_Ordering) -> new_lt17(xwv28000, xwv29000) 30.08/13.45 new_esEs29(xwv400, xwv300, ty_Char) -> new_esEs12(xwv400, xwv300) 30.08/13.45 new_esEs10(xwv28001, xwv29001, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs6(xwv28001, xwv29001, gc, gd, ge) 30.08/13.45 new_compare10(xwv28000, xwv29000, cd, ce) -> new_compare23(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, cd, ce), cd, ce) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_@0) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.45 new_ltEs20(xwv2800, xwv2900, app(app(ty_@2, cah), cba)) -> new_ltEs11(xwv2800, xwv2900, cah, cba) 30.08/13.45 new_ltEs20(xwv2800, xwv2900, ty_Integer) -> new_ltEs18(xwv2800, xwv2900) 30.08/13.45 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.08/13.45 new_primCmpInt(Pos(Zero), Neg(Succ(xwv2900))) -> GT 30.08/13.45 new_compare14(xwv28000, xwv29000) -> new_compare26(xwv28000, xwv29000, new_esEs13(xwv28000, xwv29000)) 30.08/13.45 new_esEs24(xwv4002, xwv3002, ty_Int) -> new_esEs11(xwv4002, xwv3002) 30.08/13.45 new_esEs24(xwv4002, xwv3002, ty_Ordering) -> new_esEs8(xwv4002, xwv3002) 30.08/13.45 new_ltEs14(xwv2800, xwv2900) -> new_fsEs(new_compare17(xwv2800, xwv2900)) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, app(ty_[], cbf)) -> new_ltEs5(xwv28001, xwv29001, cbf) 30.08/13.45 new_primCmpInt(Neg(Succ(xwv2800)), Neg(xwv290)) -> new_primCmpNat0(xwv290, Succ(xwv2800)) 30.08/13.45 new_compare113(xwv28000, xwv29000, False, cd, ce) -> GT 30.08/13.45 new_lt9(xwv28000, xwv29000, app(ty_[], eg)) -> new_lt16(xwv28000, xwv29000, eg) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.45 new_lt8(xwv28001, xwv29001, app(app(ty_@2, fg), fh)) -> new_lt4(xwv28001, xwv29001, fg, fh) 30.08/13.45 new_primMulNat0(Succ(xwv400100), Succ(xwv300000)) -> new_primPlusNat1(new_primMulNat0(xwv400100, Succ(xwv300000)), xwv300000) 30.08/13.45 new_lt8(xwv28001, xwv29001, app(app(ty_Either, gf), gg)) -> new_lt18(xwv28001, xwv29001, gf, gg) 30.08/13.45 new_compare15(xwv28000, xwv29000, cbb) -> new_compare27(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, cbb), cbb) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.45 new_esEs28(xwv28000, xwv29000, app(app(ty_Either, cd), ce)) -> new_esEs7(xwv28000, xwv29000, cd, ce) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Ordering, cce) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.45 new_compare26(xwv28000, xwv29000, True) -> EQ 30.08/13.45 new_esEs10(xwv28001, xwv29001, ty_Char) -> new_esEs12(xwv28001, xwv29001) 30.08/13.45 new_compare18(xwv28000, xwv29000) -> new_compare24(xwv28000, xwv29000, new_esEs8(xwv28000, xwv29000)) 30.08/13.45 new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False 30.08/13.45 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 30.08/13.45 new_esEs8(GT, GT) -> True 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(xwv4000, xwv3000, dcd, dce, dcf) 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Ratio, cge)) -> new_esEs19(xwv4000, xwv3000, cge) 30.08/13.45 new_esEs9(xwv28000, xwv29000, app(ty_Ratio, ff)) -> new_esEs19(xwv28000, xwv29000, ff) 30.08/13.45 new_fsEs(xwv131) -> new_not(new_esEs8(xwv131, GT)) 30.08/13.45 new_esEs23(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 30.08/13.45 new_compare16(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.45 new_compare16(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Float, cce) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.45 new_esEs29(xwv400, xwv300, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs6(xwv400, xwv300, bda, bdb, bdc) 30.08/13.45 new_esEs24(xwv4002, xwv3002, app(app(ty_@2, bgc), bgd)) -> new_esEs4(xwv4002, xwv3002, bgc, bgd) 30.08/13.45 new_compare17(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.45 new_lt12(xwv28000, xwv29000) -> new_esEs8(new_compare14(xwv28000, xwv29000), LT) 30.08/13.45 new_esEs8(EQ, EQ) -> True 30.08/13.45 new_esEs24(xwv4002, xwv3002, ty_Bool) -> new_esEs13(xwv4002, xwv3002) 30.08/13.45 new_primEqNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.45 new_ltEs20(xwv2800, xwv2900, ty_Bool) -> new_ltEs6(xwv2800, xwv2900) 30.08/13.45 new_esEs25(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, app(app(ty_@2, cbc), cbd)) -> new_ltEs11(xwv28001, xwv29001, cbc, cbd) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Int) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.45 new_not(True) -> False 30.08/13.45 new_esEs24(xwv4002, xwv3002, ty_Integer) -> new_esEs18(xwv4002, xwv3002) 30.08/13.45 new_compare11(xwv28000, xwv29000, ty_Integer) -> new_compare19(xwv28000, xwv29000) 30.08/13.45 new_primCompAux00(xwv160, LT) -> LT 30.08/13.45 new_primCmpNat0(Zero, Zero) -> EQ 30.08/13.45 new_esEs21(xwv4001, xwv3001, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs6(xwv4001, xwv3001, bce, bcf, bcg) 30.08/13.45 new_lt13(xwv28000, xwv29000, cbb) -> new_esEs8(new_compare15(xwv28000, xwv29000, cbb), LT) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, ty_Bool) -> new_ltEs6(xwv28001, xwv29001) 30.08/13.45 new_compare115(xwv28000, xwv29000, True, bf, bg, bh) -> LT 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Double) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, app(app(app(ty_@3, cbg), cbh), cca)) -> new_ltEs7(xwv28001, xwv29001, cbg, cbh, cca) 30.08/13.45 new_esEs22(xwv4000, xwv3000, app(ty_Ratio, bea)) -> new_esEs19(xwv4000, xwv3000, bea) 30.08/13.45 new_esEs29(xwv400, xwv300, ty_Int) -> new_esEs11(xwv400, xwv300) 30.08/13.45 new_compare27(Nothing, Nothing, False, cff) -> LT 30.08/13.45 new_esEs20(xwv4000, xwv3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs6(xwv4000, xwv3000, bbc, bbd, bbe) 30.08/13.45 new_esEs20(xwv4000, xwv3000, app(app(ty_Either, baf), bag)) -> new_esEs7(xwv4000, xwv3000, baf, bag) 30.08/13.45 new_esEs28(xwv28000, xwv29000, ty_Bool) -> new_esEs13(xwv28000, xwv29000) 30.08/13.45 new_ltEs16(GT, EQ) -> False 30.08/13.45 new_esEs29(xwv400, xwv300, ty_Integer) -> new_esEs18(xwv400, xwv300) 30.08/13.45 new_esEs4(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bac, bad) -> new_asAs(new_esEs20(xwv4000, xwv3000, bac), new_esEs21(xwv4001, xwv3001, bad)) 30.08/13.45 new_esEs10(xwv28001, xwv29001, ty_Ordering) -> new_esEs8(xwv28001, xwv29001) 30.08/13.45 new_compare27(xwv280, xwv290, True, cff) -> EQ 30.08/13.45 new_compare11(xwv28000, xwv29000, ty_Int) -> new_compare12(xwv28000, xwv29000) 30.08/13.45 new_ltEs17(Left(xwv28000), Right(xwv29000), cdh, cce) -> True 30.08/13.45 new_primEqNat0(Succ(xwv40000), Zero) -> False 30.08/13.45 new_primEqNat0(Zero, Succ(xwv30000)) -> False 30.08/13.45 new_lt9(xwv28000, xwv29000, app(ty_Maybe, ef)) -> new_lt13(xwv28000, xwv29000, ef) 30.08/13.45 new_esEs28(xwv28000, xwv29000, ty_Int) -> new_esEs11(xwv28000, xwv29000) 30.08/13.45 new_esEs29(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_@0) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.45 new_lt8(xwv28001, xwv29001, app(app(app(ty_@3, gc), gd), ge)) -> new_lt5(xwv28001, xwv29001, gc, gd, ge) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, app(ty_[], hd)) -> new_ltEs5(xwv28002, xwv29002, hd) 30.08/13.45 new_lt20(xwv28000, xwv29000, ty_Integer) -> new_lt19(xwv28000, xwv29000) 30.08/13.45 new_primCompAux00(xwv160, GT) -> GT 30.08/13.45 new_ltEs8(xwv28002, xwv29002, app(ty_Ratio, bab)) -> new_ltEs4(xwv28002, xwv29002, bab) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.45 new_compare11(xwv28000, xwv29000, ty_Bool) -> new_compare14(xwv28000, xwv29000) 30.08/13.45 new_lt9(xwv28000, xwv29000, app(app(ty_@2, ed), ee)) -> new_lt4(xwv28000, xwv29000, ed, ee) 30.08/13.45 new_esEs20(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.45 new_esEs23(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.45 new_ltEs6(True, True) -> True 30.08/13.45 new_primCmpInt(Pos(Succ(xwv2800)), Neg(xwv290)) -> GT 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(ty_Either, ceh), cfa)) -> new_ltEs17(xwv28000, xwv29000, ceh, cfa) 30.08/13.45 new_esEs20(xwv4000, xwv3000, app(app(ty_@2, bah), bba)) -> new_esEs4(xwv4000, xwv3000, bah, bba) 30.08/13.45 new_ltEs16(LT, LT) -> True 30.08/13.45 new_ltEs19(xwv28001, xwv29001, ty_Float) -> new_ltEs14(xwv28001, xwv29001) 30.08/13.45 new_compare11(xwv28000, xwv29000, ty_Char) -> new_compare13(xwv28000, xwv29000) 30.08/13.45 new_esEs23(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.45 new_compare110(xwv28000, xwv29000, True, bd, be) -> LT 30.08/13.45 new_lt9(xwv28000, xwv29000, app(app(ty_Either, fc), fd)) -> new_lt18(xwv28000, xwv29000, fc, fd) 30.08/13.45 new_esEs29(xwv400, xwv300, ty_Float) -> new_esEs15(xwv400, xwv300) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, ty_Integer) -> new_ltEs18(xwv28001, xwv29001) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, ty_Ordering) -> new_ltEs16(xwv28002, xwv29002) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Bool, cce) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.45 new_ltEs20(xwv2800, xwv2900, ty_Float) -> new_ltEs14(xwv2800, xwv2900) 30.08/13.45 new_lt17(xwv28000, xwv29000) -> new_esEs8(new_compare18(xwv28000, xwv29000), LT) 30.08/13.45 new_primCmpNat0(Zero, Succ(xwv2900)) -> LT 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_[], ced)) -> new_ltEs5(xwv28000, xwv29000, ced) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, dbb), dbc), dbd), cfe) -> new_esEs6(xwv4000, xwv3000, dbb, dbc, dbd) 30.08/13.45 new_ltEs20(xwv2800, xwv2900, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs7(xwv2800, xwv2900, ea, eb, ec) 30.08/13.45 new_esEs22(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.45 new_esEs28(xwv28000, xwv29000, ty_Char) -> new_esEs12(xwv28000, xwv29000) 30.08/13.45 new_esEs28(xwv28000, xwv29000, ty_Integer) -> new_esEs18(xwv28000, xwv29000) 30.08/13.45 new_ltEs10(xwv2800, xwv2900) -> new_fsEs(new_compare13(xwv2800, xwv2900)) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Double, cfe) -> new_esEs14(xwv4000, xwv3000) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, ty_Double) -> new_ltEs13(xwv28002, xwv29002) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, app(ty_Ratio, ccd)) -> new_ltEs4(xwv28001, xwv29001, ccd) 30.08/13.45 new_sr(Integer(xwv280000), Integer(xwv290010)) -> Integer(new_primMulInt(xwv280000, xwv290010)) 30.08/13.45 new_primCmpNat0(Succ(xwv2800), Zero) -> GT 30.08/13.45 new_pePe(False, xwv138) -> xwv138 30.08/13.45 new_compare11(xwv28000, xwv29000, app(ty_Maybe, da)) -> new_compare15(xwv28000, xwv29000, da) 30.08/13.45 new_esEs23(xwv4001, xwv3001, ty_Bool) -> new_esEs13(xwv4001, xwv3001) 30.08/13.45 new_esEs9(xwv28000, xwv29000, app(ty_Maybe, ef)) -> new_esEs5(xwv28000, xwv29000, ef) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(ty_@2, dag), dah), cfe) -> new_esEs4(xwv4000, xwv3000, dag, dah) 30.08/13.45 new_ltEs13(xwv2800, xwv2900) -> new_fsEs(new_compare16(xwv2800, xwv2900)) 30.08/13.45 new_compare25(xwv28000, xwv29000, True, bd, be) -> EQ 30.08/13.45 new_ltEs8(xwv28002, xwv29002, ty_Integer) -> new_ltEs18(xwv28002, xwv29002) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.45 new_esEs10(xwv28001, xwv29001, app(app(ty_Either, gf), gg)) -> new_esEs7(xwv28001, xwv29001, gf, gg) 30.08/13.45 new_lt20(xwv28000, xwv29000, ty_Char) -> new_lt11(xwv28000, xwv29000) 30.08/13.45 new_ltEs16(LT, GT) -> True 30.08/13.45 new_lt8(xwv28001, xwv29001, app(ty_[], gb)) -> new_lt16(xwv28001, xwv29001, gb) 30.08/13.45 new_esEs22(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.45 new_lt9(xwv28000, xwv29000, ty_Int) -> new_lt10(xwv28000, xwv29000) 30.08/13.45 new_esEs25(xwv4000, xwv3000, app(ty_Ratio, bhh)) -> new_esEs19(xwv4000, xwv3000, bhh) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_Maybe, cch), cce) -> new_ltEs12(xwv28000, xwv29000, cch) 30.08/13.45 new_esEs17([], [], bhb) -> True 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Double) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.45 new_ltEs16(LT, EQ) -> True 30.08/13.45 new_ltEs16(EQ, LT) -> False 30.08/13.45 new_compare23(xwv28000, xwv29000, True, cd, ce) -> EQ 30.08/13.45 new_esEs8(LT, EQ) -> False 30.08/13.45 new_esEs8(EQ, LT) -> False 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.45 new_esEs21(xwv4001, xwv3001, app(app(ty_@2, bcb), bcc)) -> new_esEs4(xwv4001, xwv3001, bcb, bcc) 30.08/13.45 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 30.08/13.45 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 30.08/13.45 new_esEs28(xwv28000, xwv29000, ty_@0) -> new_esEs16(xwv28000, xwv29000) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, app(app(ty_Either, ccb), ccc)) -> new_ltEs17(xwv28001, xwv29001, ccb, ccc) 30.08/13.45 new_esEs21(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(xwv4000, xwv3000, cgf, cgg, cgh) 30.08/13.45 new_compare114(xwv28000, xwv29000, True) -> LT 30.08/13.45 new_ltEs16(GT, LT) -> False 30.08/13.45 new_esEs25(xwv4000, xwv3000, app(app(ty_@2, bhf), bhg)) -> new_esEs4(xwv4000, xwv3000, bhf, bhg) 30.08/13.45 new_esEs21(xwv4001, xwv3001, app(ty_Maybe, bbg)) -> new_esEs5(xwv4001, xwv3001, bbg) 30.08/13.45 new_esEs23(xwv4001, xwv3001, app(app(ty_Either, beg), beh)) -> new_esEs7(xwv4001, xwv3001, beg, beh) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Integer, cce) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.45 new_esEs5(Nothing, Nothing, cfc) -> True 30.08/13.45 new_ltEs20(xwv2800, xwv2900, app(app(ty_Either, cdh), cce)) -> new_ltEs17(xwv2800, xwv2900, cdh, cce) 30.08/13.45 new_ltEs6(False, False) -> True 30.08/13.45 new_esEs25(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.45 new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.45 new_esEs10(xwv28001, xwv29001, ty_Integer) -> new_esEs18(xwv28001, xwv29001) 30.08/13.45 new_lt8(xwv28001, xwv29001, app(ty_Maybe, ga)) -> new_lt13(xwv28001, xwv29001, ga) 30.08/13.45 new_esEs5(Nothing, Just(xwv3000), cfc) -> False 30.08/13.45 new_esEs5(Just(xwv4000), Nothing, cfc) -> False 30.08/13.45 new_primCmpInt(Neg(Zero), Pos(Succ(xwv2900))) -> LT 30.08/13.45 new_compare13(Char(xwv28000), Char(xwv29000)) -> new_primCmpNat0(xwv28000, xwv29000) 30.08/13.45 new_primMulInt(Pos(xwv40010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.45 new_esEs10(xwv28001, xwv29001, ty_Int) -> new_esEs11(xwv28001, xwv29001) 30.08/13.45 new_esEs20(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(ty_Either, dae), daf), cfe) -> new_esEs7(xwv4000, xwv3000, dae, daf) 30.08/13.45 new_esEs9(xwv28000, xwv29000, app(app(ty_@2, ed), ee)) -> new_esEs4(xwv28000, xwv29000, ed, ee) 30.08/13.45 new_esEs21(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.45 new_esEs9(xwv28000, xwv29000, ty_Ordering) -> new_esEs8(xwv28000, xwv29000) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(ty_Either, cde), cdf), cce) -> new_ltEs17(xwv28000, xwv29000, cde, cdf) 30.08/13.45 new_esEs24(xwv4002, xwv3002, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs6(xwv4002, xwv3002, bgf, bgg, bgh) 30.08/13.45 new_esEs10(xwv28001, xwv29001, app(app(ty_@2, fg), fh)) -> new_esEs4(xwv28001, xwv29001, fg, fh) 30.08/13.45 new_primMulNat0(Succ(xwv400100), Zero) -> Zero 30.08/13.45 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 30.08/13.45 new_ltEs8(xwv28002, xwv29002, ty_@0) -> new_ltEs15(xwv28002, xwv29002) 30.08/13.45 new_esEs18(Integer(xwv4000), Integer(xwv3000)) -> new_primEqInt(xwv4000, xwv3000) 30.08/13.45 new_esEs25(xwv4000, xwv3000, app(app(ty_Either, bhd), bhe)) -> new_esEs7(xwv4000, xwv3000, bhd, bhe) 30.08/13.45 new_compare11(xwv28000, xwv29000, app(app(ty_@2, cf), cg)) -> new_compare6(xwv28000, xwv29000, cf, cg) 30.08/13.45 new_esEs24(xwv4002, xwv3002, ty_Char) -> new_esEs12(xwv4002, xwv3002) 30.08/13.45 new_ltEs18(xwv2800, xwv2900) -> new_fsEs(new_compare19(xwv2800, xwv2900)) 30.08/13.45 new_esEs23(xwv4001, xwv3001, app(ty_Maybe, bef)) -> new_esEs5(xwv4001, xwv3001, bef) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Char) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.45 new_esEs20(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.45 new_lt9(xwv28000, xwv29000, ty_Ordering) -> new_lt17(xwv28000, xwv29000) 30.08/13.45 new_lt20(xwv28000, xwv29000, ty_Bool) -> new_lt12(xwv28000, xwv29000) 30.08/13.45 new_primPlusNat0(Succ(xwv33200), Zero) -> Succ(xwv33200) 30.08/13.45 new_primPlusNat0(Zero, Succ(xwv9700)) -> Succ(xwv9700) 30.08/13.45 new_esEs28(xwv28000, xwv29000, app(ty_[], cag)) -> new_esEs17(xwv28000, xwv29000, cag) 30.08/13.45 new_ltEs16(EQ, GT) -> True 30.08/13.45 new_esEs20(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.45 new_esEs17(:(xwv4000, xwv4001), :(xwv3000, xwv3001), bhb) -> new_asAs(new_esEs25(xwv4000, xwv3000, bhb), new_esEs17(xwv4001, xwv3001, bhb)) 30.08/13.45 new_ltEs16(EQ, EQ) -> True 30.08/13.45 new_lt8(xwv28001, xwv29001, ty_Double) -> new_lt14(xwv28001, xwv29001) 30.08/13.45 new_ltEs6(True, False) -> False 30.08/13.45 new_lt9(xwv28000, xwv29000, app(app(app(ty_@3, eh), fa), fb)) -> new_lt5(xwv28000, xwv29000, eh, fa, fb) 30.08/13.45 new_esEs8(LT, LT) -> True 30.08/13.45 new_compare19(Integer(xwv28000), Integer(xwv29000)) -> new_primCmpInt(xwv28000, xwv29000) 30.08/13.45 new_lt8(xwv28001, xwv29001, ty_Ordering) -> new_lt17(xwv28001, xwv29001) 30.08/13.45 new_compare111(xwv28000, xwv29000, True) -> LT 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, cdb), cdc), cdd), cce) -> new_ltEs7(xwv28000, xwv29000, cdb, cdc, cdd) 30.08/13.45 new_esEs10(xwv28001, xwv29001, ty_Float) -> new_esEs15(xwv28001, xwv29001) 30.08/13.45 new_esEs29(xwv400, xwv300, app(ty_[], bhb)) -> new_esEs17(xwv400, xwv300, bhb) 30.08/13.45 new_esEs22(xwv4000, xwv3000, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs6(xwv4000, xwv3000, beb, bec, bed) 30.08/13.45 new_esEs9(xwv28000, xwv29000, ty_Float) -> new_esEs15(xwv28000, xwv29000) 30.08/13.45 new_lt20(xwv28000, xwv29000, app(ty_Ratio, ca)) -> new_lt6(xwv28000, xwv29000, ca) 30.08/13.45 new_esEs9(xwv28000, xwv29000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs6(xwv28000, xwv29000, eh, fa, fb) 30.08/13.45 new_esEs21(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, app(app(ty_Either, hh), baa)) -> new_ltEs17(xwv28002, xwv29002, hh, baa) 30.08/13.45 new_compare23(xwv28000, xwv29000, False, cd, ce) -> new_compare113(xwv28000, xwv29000, new_ltEs17(xwv28000, xwv29000, cd, ce), cd, ce) 30.08/13.45 new_esEs13(True, True) -> True 30.08/13.45 new_ltEs20(xwv2800, xwv2900, ty_Double) -> new_ltEs13(xwv2800, xwv2900) 30.08/13.45 new_compare17(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.45 new_compare17(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.45 new_esEs28(xwv28000, xwv29000, ty_Double) -> new_esEs14(xwv28000, xwv29000) 30.08/13.45 new_ltEs20(xwv2800, xwv2900, ty_Ordering) -> new_ltEs16(xwv2800, xwv2900) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, chf), chg), chh)) -> new_ltEs7(xwv28000, xwv29000, chf, chg, chh) 30.08/13.45 new_esEs20(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Char, cfe) -> new_esEs12(xwv4000, xwv3000) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Bool, cfe) -> new_esEs13(xwv4000, xwv3000) 30.08/13.45 new_esEs23(xwv4001, xwv3001, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs6(xwv4001, xwv3001, bfd, bfe, bff) 30.08/13.45 new_compare11(xwv28000, xwv29000, app(app(app(ty_@3, dc), dd), de)) -> new_compare7(xwv28000, xwv29000, dc, dd, de) 30.08/13.45 new_esEs25(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_Maybe, chd)) -> new_ltEs12(xwv28000, xwv29000, chd) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, ty_Float) -> new_ltEs14(xwv28002, xwv29002) 30.08/13.45 new_primMulInt(Neg(xwv40010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.45 new_compare24(xwv28000, xwv29000, False) -> new_compare114(xwv28000, xwv29000, new_ltEs16(xwv28000, xwv29000)) 30.08/13.45 new_primCmpInt(Pos(Zero), Pos(Succ(xwv2900))) -> new_primCmpNat0(Zero, Succ(xwv2900)) 30.08/13.45 new_esEs29(xwv400, xwv300, ty_Double) -> new_esEs14(xwv400, xwv300) 30.08/13.45 new_esEs10(xwv28001, xwv29001, app(ty_Maybe, ga)) -> new_esEs5(xwv28001, xwv29001, ga) 30.08/13.45 new_esEs25(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.45 new_esEs22(xwv4000, xwv3000, app(ty_Maybe, bdd)) -> new_esEs5(xwv4000, xwv3000, bdd) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, ty_Ordering) -> new_ltEs16(xwv28001, xwv29001) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_Ratio, dcc)) -> new_esEs19(xwv4000, xwv3000, dcc) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.45 new_lt9(xwv28000, xwv29000, ty_Double) -> new_lt14(xwv28000, xwv29000) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, ty_Double) -> new_ltEs13(xwv28001, xwv29001) 30.08/13.45 new_compare11(xwv28000, xwv29000, ty_Ordering) -> new_compare18(xwv28000, xwv29000) 30.08/13.45 new_esEs24(xwv4002, xwv3002, app(app(ty_Either, bga), bgb)) -> new_esEs7(xwv4002, xwv3002, bga, bgb) 30.08/13.45 new_compare114(xwv28000, xwv29000, False) -> GT 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Maybe, cfh)) -> new_esEs5(xwv4000, xwv3000, cfh) 30.08/13.45 new_esEs23(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 30.08/13.45 new_ltEs20(xwv2800, xwv2900, app(ty_Ratio, cb)) -> new_ltEs4(xwv2800, xwv2900, cb) 30.08/13.45 new_compare28(xwv28000, xwv29000, False, bf, bg, bh) -> new_compare115(xwv28000, xwv29000, new_ltEs7(xwv28000, xwv29000, bf, bg, bh), bf, bg, bh) 30.08/13.45 new_esEs23(xwv4001, xwv3001, app(app(ty_@2, bfa), bfb)) -> new_esEs4(xwv4001, xwv3001, bfa, bfb) 30.08/13.45 new_esEs21(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Int, cfe) -> new_esEs11(xwv4000, xwv3000) 30.08/13.45 new_compare113(xwv28000, xwv29000, True, cd, ce) -> LT 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_Ratio, cdg), cce) -> new_ltEs4(xwv28000, xwv29000, cdg) 30.08/13.45 new_esEs10(xwv28001, xwv29001, ty_@0) -> new_esEs16(xwv28001, xwv29001) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_[], che)) -> new_ltEs5(xwv28000, xwv29000, che) 30.08/13.45 new_primMulInt(Pos(xwv40010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.45 new_primMulInt(Neg(xwv40010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Ordering) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.45 new_esEs12(Char(xwv4000), Char(xwv3000)) -> new_primEqNat0(xwv4000, xwv3000) 30.08/13.45 new_esEs22(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.45 new_esEs22(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.45 new_esEs22(xwv4000, xwv3000, app(app(ty_@2, bdg), bdh)) -> new_esEs4(xwv4000, xwv3000, bdg, bdh) 30.08/13.45 new_lt9(xwv28000, xwv29000, ty_Integer) -> new_lt19(xwv28000, xwv29000) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Float) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.45 new_lt8(xwv28001, xwv29001, ty_@0) -> new_lt7(xwv28001, xwv29001) 30.08/13.45 new_lt9(xwv28000, xwv29000, app(ty_Ratio, ff)) -> new_lt6(xwv28000, xwv29000, ff) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, ty_Int) -> new_ltEs9(xwv28001, xwv29001) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(ty_@2, dca), dcb)) -> new_esEs4(xwv4000, xwv3000, dca, dcb) 30.08/13.45 new_lt19(xwv28000, xwv29000) -> new_esEs8(new_compare19(xwv28000, xwv29000), LT) 30.08/13.45 new_esEs24(xwv4002, xwv3002, ty_Double) -> new_esEs14(xwv4002, xwv3002) 30.08/13.45 new_esEs29(xwv400, xwv300, app(ty_Maybe, cfc)) -> new_esEs5(xwv400, xwv300, cfc) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(ty_@2, ccf), ccg), cce) -> new_ltEs11(xwv28000, xwv29000, ccf, ccg) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_Maybe, dbf)) -> new_esEs5(xwv4000, xwv3000, dbf) 30.08/13.45 new_esEs13(False, False) -> True 30.08/13.45 new_compare16(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.45 new_ltEs9(xwv2800, xwv2900) -> new_fsEs(new_compare12(xwv2800, xwv2900)) 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.45 new_lt20(xwv28000, xwv29000, app(ty_Maybe, cbb)) -> new_lt13(xwv28000, xwv29000, cbb) 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_Either, cga), cgb)) -> new_esEs7(xwv4000, xwv3000, cga, cgb) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Integer, cfe) -> new_esEs18(xwv4000, xwv3000) 30.08/13.45 new_ltEs7(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ea, eb, ec) -> new_pePe(new_lt9(xwv28000, xwv29000, ea), new_asAs(new_esEs9(xwv28000, xwv29000, ea), new_pePe(new_lt8(xwv28001, xwv29001, eb), new_asAs(new_esEs10(xwv28001, xwv29001, eb), new_ltEs8(xwv28002, xwv29002, ec))))) 30.08/13.45 new_esEs23(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 30.08/13.45 new_esEs26(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.45 new_compare6(xwv28000, xwv29000, bd, be) -> new_compare25(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, bd, be), bd, be) 30.08/13.45 new_lt20(xwv28000, xwv29000, ty_Int) -> new_lt10(xwv28000, xwv29000) 30.08/13.45 new_esEs24(xwv4002, xwv3002, app(ty_Ratio, bge)) -> new_esEs19(xwv4002, xwv3002, bge) 30.08/13.45 new_esEs29(xwv400, xwv300, ty_@0) -> new_esEs16(xwv400, xwv300) 30.08/13.45 new_compare0([], :(xwv29000, xwv29001), cc) -> LT 30.08/13.45 new_asAs(True, xwv64) -> xwv64 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Bool) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.45 new_compare11(xwv28000, xwv29000, ty_Double) -> new_compare16(xwv28000, xwv29000) 30.08/13.45 new_esEs25(xwv4000, xwv3000, app(ty_[], cad)) -> new_esEs17(xwv4000, xwv3000, cad) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(ty_@2, chb), chc)) -> new_ltEs11(xwv28000, xwv29000, chb, chc) 30.08/13.45 new_esEs10(xwv28001, xwv29001, app(ty_[], gb)) -> new_esEs17(xwv28001, xwv29001, gb) 30.08/13.45 new_ltEs20(xwv2800, xwv2900, ty_@0) -> new_ltEs15(xwv2800, xwv2900) 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.45 new_esEs14(Double(xwv4000, xwv4001), Double(xwv3000, xwv3001)) -> new_esEs11(new_sr0(xwv4000, xwv3001), new_sr0(xwv4001, xwv3000)) 30.08/13.45 new_lt16(xwv28000, xwv29000, cag) -> new_esEs8(new_compare0(xwv28000, xwv29000, cag), LT) 30.08/13.45 new_esEs20(xwv4000, xwv3000, app(ty_Maybe, bae)) -> new_esEs5(xwv4000, xwv3000, bae) 30.08/13.45 new_esEs16(@0, @0) -> True 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_@2, cgc), cgd)) -> new_esEs4(xwv4000, xwv3000, cgc, cgd) 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.45 new_esEs22(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, ty_@0) -> new_ltEs15(xwv28001, xwv29001) 30.08/13.45 new_primCmpInt(Pos(Succ(xwv2800)), Pos(xwv290)) -> new_primCmpNat0(Succ(xwv2800), xwv290) 30.08/13.45 new_esEs9(xwv28000, xwv29000, app(ty_[], eg)) -> new_esEs17(xwv28000, xwv29000, eg) 30.08/13.45 new_primPlusNat1(xwv107, xwv300000) -> new_primPlusNat0(xwv107, Succ(xwv300000)) 30.08/13.45 new_lt9(xwv28000, xwv29000, ty_Char) -> new_lt11(xwv28000, xwv29000) 30.08/13.45 new_esEs9(xwv28000, xwv29000, ty_Int) -> new_esEs11(xwv28000, xwv29000) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_Maybe, dad), cfe) -> new_esEs5(xwv4000, xwv3000, dad) 30.08/13.45 new_primCompAux00(xwv160, EQ) -> xwv160 30.08/13.45 new_compare0([], [], cc) -> EQ 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.45 new_ltEs16(GT, GT) -> True 30.08/13.45 new_compare27(Nothing, Just(xwv2900), False, cff) -> LT 30.08/13.45 new_esEs28(xwv28000, xwv29000, ty_Float) -> new_esEs15(xwv28000, xwv29000) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Int, cce) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.45 new_compare27(Just(xwv2800), Just(xwv2900), False, cff) -> new_compare112(xwv2800, xwv2900, new_ltEs20(xwv2800, xwv2900, cff), cff) 30.08/13.45 new_esEs21(xwv4001, xwv3001, app(app(ty_Either, bbh), bca)) -> new_esEs7(xwv4001, xwv3001, bbh, bca) 30.08/13.45 new_primMulNat0(Zero, Zero) -> Zero 30.08/13.45 new_lt20(xwv28000, xwv29000, app(ty_[], cag)) -> new_lt16(xwv28000, xwv29000, cag) 30.08/13.45 new_lt14(xwv28000, xwv29000) -> new_esEs8(new_compare16(xwv28000, xwv29000), LT) 30.08/13.45 new_esEs23(xwv4001, xwv3001, ty_Char) -> new_esEs12(xwv4001, xwv3001) 30.08/13.45 new_esEs24(xwv4002, xwv3002, app(ty_Maybe, bfh)) -> new_esEs5(xwv4002, xwv3002, bfh) 30.08/13.45 new_lt8(xwv28001, xwv29001, ty_Char) -> new_lt11(xwv28001, xwv29001) 30.08/13.45 new_esEs10(xwv28001, xwv29001, ty_Double) -> new_esEs14(xwv28001, xwv29001) 30.08/13.45 new_compare111(xwv28000, xwv29000, False) -> GT 30.08/13.45 new_ltEs20(xwv2800, xwv2900, app(ty_Maybe, cfg)) -> new_ltEs12(xwv2800, xwv2900, cfg) 30.08/13.45 new_lt15(xwv28000, xwv29000) -> new_esEs8(new_compare17(xwv28000, xwv29000), LT) 30.08/13.45 new_compare9(@0, @0) -> EQ 30.08/13.45 new_compare115(xwv28000, xwv29000, False, bf, bg, bh) -> GT 30.08/13.45 new_esEs21(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 30.08/13.45 new_esEs22(xwv4000, xwv3000, app(app(ty_Either, bde), bdf)) -> new_esEs7(xwv4000, xwv3000, bde, bdf) 30.08/13.45 new_compare28(xwv28000, xwv29000, True, bf, bg, bh) -> EQ 30.08/13.45 new_esEs9(xwv28000, xwv29000, app(app(ty_Either, fc), fd)) -> new_esEs7(xwv28000, xwv29000, fc, fd) 30.08/13.45 new_esEs20(xwv4000, xwv3000, app(ty_[], bbf)) -> new_esEs17(xwv4000, xwv3000, bbf) 30.08/13.45 new_compare8(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Int) -> new_compare12(new_sr0(xwv28000, xwv29001), new_sr0(xwv29000, xwv28001)) 30.08/13.45 new_esEs22(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Integer) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, ty_Int) -> new_ltEs9(xwv28002, xwv29002) 30.08/13.45 new_esEs9(xwv28000, xwv29000, ty_Integer) -> new_esEs18(xwv28000, xwv29000) 30.08/13.45 new_esEs29(xwv400, xwv300, app(ty_Ratio, cae)) -> new_esEs19(xwv400, xwv300, cae) 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_[], dcg)) -> new_esEs17(xwv4000, xwv3000, dcg) 30.08/13.45 new_esEs25(xwv4000, xwv3000, app(ty_Maybe, bhc)) -> new_esEs5(xwv4000, xwv3000, bhc) 30.08/13.45 new_primCompAux0(xwv28000, xwv29000, xwv148, cc) -> new_primCompAux00(xwv148, new_compare11(xwv28000, xwv29000, cc)) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.45 new_esEs22(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.45 new_lt9(xwv28000, xwv29000, ty_Float) -> new_lt15(xwv28000, xwv29000) 30.08/13.45 new_ltEs6(False, True) -> True 30.08/13.45 new_esEs9(xwv28000, xwv29000, ty_@0) -> new_esEs16(xwv28000, xwv29000) 30.08/13.45 new_compare25(xwv28000, xwv29000, False, bd, be) -> new_compare110(xwv28000, xwv29000, new_ltEs11(xwv28000, xwv29000, bd, be), bd, be) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Ordering, cfe) -> new_esEs8(xwv4000, xwv3000) 30.08/13.45 new_esEs20(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.45 new_esEs21(xwv4001, xwv3001, app(ty_[], bch)) -> new_esEs17(xwv4001, xwv3001, bch) 30.08/13.45 new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False 30.08/13.45 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Char, cce) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.45 new_esEs13(False, True) -> False 30.08/13.45 new_esEs13(True, False) -> False 30.08/13.45 new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.45 new_esEs28(xwv28000, xwv29000, app(ty_Ratio, ca)) -> new_esEs19(xwv28000, xwv29000, ca) 30.08/13.45 new_lt8(xwv28001, xwv29001, ty_Int) -> new_lt10(xwv28001, xwv29001) 30.08/13.45 new_compare11(xwv28000, xwv29000, ty_@0) -> new_compare9(xwv28000, xwv29000) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Bool) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Ordering) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.45 new_compare24(xwv28000, xwv29000, True) -> EQ 30.08/13.45 new_lt5(xwv28000, xwv29000, bf, bg, bh) -> new_esEs8(new_compare7(xwv28000, xwv29000, bf, bg, bh), LT) 30.08/13.45 new_lt20(xwv28000, xwv29000, ty_@0) -> new_lt7(xwv28000, xwv29000) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_[], dbe), cfe) -> new_esEs17(xwv4000, xwv3000, dbe) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_Ratio, cfb)) -> new_ltEs4(xwv28000, xwv29000, cfb) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, app(ty_Maybe, cbe)) -> new_ltEs12(xwv28001, xwv29001, cbe) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(ty_Either, dbg), dbh)) -> new_esEs7(xwv4000, xwv3000, dbg, dbh) 30.08/13.45 new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> False 30.08/13.45 new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> False 30.08/13.45 new_primCmpInt(Neg(Zero), Neg(Succ(xwv2900))) -> new_primCmpNat0(Succ(xwv2900), Zero) 30.08/13.45 new_esEs23(xwv4001, xwv3001, app(ty_Ratio, bfc)) -> new_esEs19(xwv4001, xwv3001, bfc) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_@0, cce) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.45 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.08/13.45 new_lt8(xwv28001, xwv29001, app(ty_Ratio, gh)) -> new_lt6(xwv28001, xwv29001, gh) 30.08/13.45 new_lt8(xwv28001, xwv29001, ty_Bool) -> new_lt12(xwv28001, xwv29001) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Char) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.45 new_esEs25(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.45 new_esEs28(xwv28000, xwv29000, app(ty_Maybe, cbb)) -> new_esEs5(xwv28000, xwv29000, cbb) 30.08/13.45 new_lt9(xwv28000, xwv29000, ty_@0) -> new_lt7(xwv28000, xwv29000) 30.08/13.45 new_lt11(xwv28000, xwv29000) -> new_esEs8(new_compare13(xwv28000, xwv29000), LT) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Double, cce) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.45 new_esEs23(xwv4001, xwv3001, ty_Double) -> new_esEs14(xwv4001, xwv3001) 30.08/13.45 new_lt20(xwv28000, xwv29000, ty_Double) -> new_lt14(xwv28000, xwv29000) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(ty_@2, cea), ceb)) -> new_ltEs11(xwv28000, xwv29000, cea, ceb) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, ty_Bool) -> new_ltEs6(xwv28002, xwv29002) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(ty_Either, daa), dab)) -> new_ltEs17(xwv28000, xwv29000, daa, dab) 30.08/13.45 new_esEs24(xwv4002, xwv3002, ty_Float) -> new_esEs15(xwv4002, xwv3002) 30.08/13.45 new_compare8(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Integer) -> new_compare19(new_sr(xwv28000, xwv29001), new_sr(xwv29000, xwv28001)) 30.08/13.45 new_esEs25(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.45 new_compare26(xwv28000, xwv29000, False) -> new_compare111(xwv28000, xwv29000, new_ltEs6(xwv28000, xwv29000)) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_[], cda), cce) -> new_ltEs5(xwv28000, xwv29000, cda) 30.08/13.45 new_not(False) -> True 30.08/13.45 new_esEs21(xwv4001, xwv3001, ty_Double) -> new_esEs14(xwv4001, xwv3001) 30.08/13.45 new_esEs21(xwv4001, xwv3001, ty_Bool) -> new_esEs13(xwv4001, xwv3001) 30.08/13.45 new_esEs24(xwv4002, xwv3002, app(ty_[], bha)) -> new_esEs17(xwv4002, xwv3002, bha) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_Ratio, dac)) -> new_ltEs4(xwv28000, xwv29000, dac) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_Maybe, cec)) -> new_ltEs12(xwv28000, xwv29000, cec) 30.08/13.45 new_esEs9(xwv28000, xwv29000, ty_Char) -> new_esEs12(xwv28000, xwv29000) 30.08/13.45 new_compare0(:(xwv28000, xwv28001), [], cc) -> GT 30.08/13.45 new_esEs8(LT, GT) -> False 30.08/13.45 new_esEs8(GT, LT) -> False 30.08/13.45 new_compare27(Just(xwv2800), Nothing, False, cff) -> GT 30.08/13.45 new_primPlusNat0(Succ(xwv33200), Succ(xwv9700)) -> Succ(Succ(new_primPlusNat0(xwv33200, xwv9700))) 30.08/13.45 new_esEs24(xwv4002, xwv3002, ty_@0) -> new_esEs16(xwv4002, xwv3002) 30.08/13.45 new_esEs27(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.45 new_esEs25(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.45 new_esEs21(xwv4001, xwv3001, ty_Char) -> new_esEs12(xwv4001, xwv3001) 30.08/13.45 new_compare16(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.45 new_compare11(xwv28000, xwv29000, ty_Float) -> new_compare17(xwv28000, xwv29000) 30.08/13.45 new_esEs6(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), bda, bdb, bdc) -> new_asAs(new_esEs22(xwv4000, xwv3000, bda), new_asAs(new_esEs23(xwv4001, xwv3001, bdb), new_esEs24(xwv4002, xwv3002, bdc))) 30.08/13.45 new_esEs9(xwv28000, xwv29000, ty_Bool) -> new_esEs13(xwv28000, xwv29000) 30.08/13.45 new_esEs27(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.45 new_sr0(xwv4001, xwv3000) -> new_primMulInt(xwv4001, xwv3000) 30.08/13.45 new_lt9(xwv28000, xwv29000, ty_Bool) -> new_lt12(xwv28000, xwv29000) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, ty_Char) -> new_ltEs10(xwv28001, xwv29001) 30.08/13.45 new_lt20(xwv28000, xwv29000, app(app(ty_Either, cd), ce)) -> new_lt18(xwv28000, xwv29000, cd, ce) 30.08/13.45 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.08/13.45 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.08/13.45 new_ltEs8(xwv28002, xwv29002, app(app(ty_@2, ha), hb)) -> new_ltEs11(xwv28002, xwv29002, ha, hb) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, ty_Char) -> new_ltEs10(xwv28002, xwv29002) 30.08/13.45 new_compare0(:(xwv28000, xwv28001), :(xwv29000, xwv29001), cc) -> new_primCompAux0(xwv28000, xwv29000, new_compare0(xwv28001, xwv29001, cc), cc) 30.08/13.45 new_lt20(xwv28000, xwv29000, app(app(ty_@2, bd), be)) -> new_lt4(xwv28000, xwv29000, bd, be) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), ty_@0, cfe) -> new_esEs16(xwv4000, xwv3000) 30.08/13.45 new_esEs22(xwv4000, xwv3000, app(ty_[], bee)) -> new_esEs17(xwv4000, xwv3000, bee) 30.08/13.45 new_compare11(xwv28000, xwv29000, app(ty_[], db)) -> new_compare0(xwv28000, xwv29000, db) 30.08/13.45 new_esEs10(xwv28001, xwv29001, app(ty_Ratio, gh)) -> new_esEs19(xwv28001, xwv29001, gh) 30.08/13.45 new_lt8(xwv28001, xwv29001, ty_Integer) -> new_lt19(xwv28001, xwv29001) 30.08/13.45 new_esEs9(xwv28000, xwv29000, ty_Double) -> new_esEs14(xwv28000, xwv29000) 30.08/13.45 new_esEs10(xwv28001, xwv29001, ty_Bool) -> new_esEs13(xwv28001, xwv29001) 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_[], cha)) -> new_esEs17(xwv4000, xwv3000, cha) 30.08/13.45 new_lt6(xwv28000, xwv29000, ca) -> new_esEs8(new_compare8(xwv28000, xwv29000, ca), LT) 30.08/13.45 new_ltEs12(Nothing, Just(xwv29000), cfg) -> True 30.08/13.45 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.08/13.45 new_esEs21(xwv4001, xwv3001, app(ty_Ratio, bcd)) -> new_esEs19(xwv4001, xwv3001, bcd) 30.08/13.45 new_esEs28(xwv28000, xwv29000, app(app(ty_@2, bd), be)) -> new_esEs4(xwv28000, xwv29000, bd, be) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.45 new_primCmpNat0(Succ(xwv2800), Succ(xwv2900)) -> new_primCmpNat0(xwv2800, xwv2900) 30.08/13.45 new_ltEs15(xwv2800, xwv2900) -> new_fsEs(new_compare9(xwv2800, xwv2900)) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, app(ty_Maybe, hc)) -> new_ltEs12(xwv28002, xwv29002, hc) 30.08/13.45 new_lt8(xwv28001, xwv29001, ty_Float) -> new_lt15(xwv28001, xwv29001) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs7(xwv28000, xwv29000, cee, cef, ceg) 30.08/13.45 new_compare11(xwv28000, xwv29000, app(app(ty_Either, df), dg)) -> new_compare10(xwv28000, xwv29000, df, dg) 30.08/13.45 new_esEs28(xwv28000, xwv29000, ty_Ordering) -> new_esEs8(xwv28000, xwv29000) 30.08/13.45 new_compare12(xwv28, xwv29) -> new_primCmpInt(xwv28, xwv29) 30.08/13.45 new_ltEs12(Nothing, Nothing, cfg) -> True 30.08/13.45 new_ltEs20(xwv2800, xwv2900, ty_Char) -> new_ltEs10(xwv2800, xwv2900) 30.08/13.45 new_esEs19(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), cae) -> new_asAs(new_esEs26(xwv4000, xwv3000, cae), new_esEs27(xwv4001, xwv3001, cae)) 30.08/13.45 new_ltEs12(Just(xwv28000), Nothing, cfg) -> False 30.08/13.45 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.08/13.45 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.08/13.45 new_esEs29(xwv400, xwv300, app(app(ty_@2, bac), bad)) -> new_esEs4(xwv400, xwv300, bac, bad) 30.08/13.45 new_ltEs17(Right(xwv28000), Left(xwv29000), cdh, cce) -> False 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Float) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.45 new_ltEs5(xwv2800, xwv2900, cc) -> new_fsEs(new_compare0(xwv2800, xwv2900, cc)) 30.08/13.45 new_compare110(xwv28000, xwv29000, False, bd, be) -> GT 30.08/13.45 new_compare11(xwv28000, xwv29000, app(ty_Ratio, dh)) -> new_compare8(xwv28000, xwv29000, dh) 30.08/13.45 new_primEqNat0(Zero, Zero) -> True 30.08/13.45 new_ltEs20(xwv2800, xwv2900, ty_Int) -> new_ltEs9(xwv2800, xwv2900) 30.08/13.45 new_esEs20(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.45 new_ltEs20(xwv2800, xwv2900, app(ty_[], cc)) -> new_ltEs5(xwv2800, xwv2900, cc) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Float, cfe) -> new_esEs15(xwv4000, xwv3000) 30.08/13.45 new_esEs28(xwv28000, xwv29000, app(app(app(ty_@3, bf), bg), bh)) -> new_esEs6(xwv28000, xwv29000, bf, bg, bh) 30.08/13.45 new_esEs29(xwv400, xwv300, ty_Ordering) -> new_esEs8(xwv400, xwv300) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Integer) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.45 new_compare7(xwv28000, xwv29000, bf, bg, bh) -> new_compare28(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bf, bg, bh), bf, bg, bh) 30.08/13.45 new_asAs(False, xwv64) -> False 30.08/13.45 new_esEs17(:(xwv4000, xwv4001), [], bhb) -> False 30.08/13.45 new_esEs17([], :(xwv3000, xwv3001), bhb) -> False 30.08/13.45 new_esEs20(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.45 new_esEs29(xwv400, xwv300, app(app(ty_Either, cfd), cfe)) -> new_esEs7(xwv400, xwv300, cfd, cfe) 30.08/13.45 new_esEs26(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.45 new_esEs25(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.45 new_lt10(xwv280, xwv290) -> new_esEs8(new_compare12(xwv280, xwv290), LT) 30.08/13.45 new_esEs8(EQ, GT) -> False 30.08/13.45 new_esEs8(GT, EQ) -> False 30.08/13.45 new_compare112(xwv125, xwv126, False, caf) -> GT 30.08/13.45 new_esEs20(xwv4000, xwv3000, app(ty_Ratio, bbb)) -> new_esEs19(xwv4000, xwv3000, bbb) 30.08/13.45 new_lt20(xwv28000, xwv29000, app(app(app(ty_@3, bf), bg), bh)) -> new_lt5(xwv28000, xwv29000, bf, bg, bh) 30.08/13.45 new_compare17(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.45 new_esEs15(Float(xwv4000, xwv4001), Float(xwv3000, xwv3001)) -> new_esEs11(new_sr0(xwv4000, xwv3001), new_sr0(xwv4001, xwv3000)) 30.08/13.45 new_esEs7(Left(xwv4000), Right(xwv3000), cfd, cfe) -> False 30.08/13.45 new_esEs7(Right(xwv4000), Left(xwv3000), cfd, cfe) -> False 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_Ratio, dba), cfe) -> new_esEs19(xwv4000, xwv3000, dba) 30.08/13.45 new_esEs11(xwv400, xwv300) -> new_primEqInt(xwv400, xwv300) 30.08/13.45 new_ltEs11(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), cah, cba) -> new_pePe(new_lt20(xwv28000, xwv29000, cah), new_asAs(new_esEs28(xwv28000, xwv29000, cah), new_ltEs19(xwv28001, xwv29001, cba))) 30.08/13.45 30.08/13.45 The set Q consists of the following terms: 30.08/13.45 30.08/13.45 new_esEs29(x0, x1, ty_Integer) 30.08/13.45 new_compare11(x0, x1, ty_Ordering) 30.08/13.45 new_esEs8(EQ, EQ) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.08/13.45 new_esEs20(x0, x1, ty_Float) 30.08/13.45 new_lt16(x0, x1, x2) 30.08/13.45 new_esEs9(x0, x1, ty_@0) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.08/13.45 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_lt20(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_compare24(x0, x1, False) 30.08/13.45 new_esEs5(Just(x0), Just(x1), ty_Float) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) 30.08/13.45 new_compare11(x0, x1, ty_Double) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.08/13.45 new_compare26(x0, x1, False) 30.08/13.45 new_esEs18(Integer(x0), Integer(x1)) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.08/13.45 new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs9(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_compare112(x0, x1, False, x2) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) 30.08/13.45 new_pePe(False, x0) 30.08/13.45 new_compare11(x0, x1, app(ty_[], x2)) 30.08/13.45 new_compare11(x0, x1, ty_Int) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.08/13.45 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.08/13.45 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 30.08/13.45 new_sr(Integer(x0), Integer(x1)) 30.08/13.45 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_primEqInt(Pos(Zero), Pos(Zero)) 30.08/13.45 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.08/13.45 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), ty_@0, x2) 30.08/13.45 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_compare27(Nothing, Nothing, False, x0) 30.08/13.45 new_lt8(x0, x1, app(ty_[], x2)) 30.08/13.45 new_ltEs8(x0, x1, ty_Float) 30.08/13.45 new_compare13(Char(x0), Char(x1)) 30.08/13.45 new_lt20(x0, x1, ty_@0) 30.08/13.45 new_lt6(x0, x1, x2) 30.08/13.45 new_esEs23(x0, x1, ty_Float) 30.08/13.45 new_ltEs20(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs25(x0, x1, ty_Ordering) 30.08/13.45 new_ltEs15(x0, x1) 30.08/13.45 new_esEs9(x0, x1, ty_Integer) 30.08/13.45 new_ltEs19(x0, x1, ty_Bool) 30.08/13.45 new_esEs22(x0, x1, ty_Float) 30.08/13.45 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_esEs10(x0, x1, ty_Integer) 30.08/13.45 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.08/13.45 new_primEqInt(Neg(Zero), Neg(Zero)) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.08/13.45 new_ltEs8(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_lt20(x0, x1, ty_Integer) 30.08/13.45 new_ltEs16(GT, EQ) 30.08/13.45 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_ltEs16(EQ, GT) 30.08/13.45 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 30.08/13.45 new_compare12(x0, x1) 30.08/13.45 new_ltEs13(x0, x1) 30.08/13.45 new_primPlusNat0(Succ(x0), Succ(x1)) 30.08/13.45 new_compare11(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_ltEs8(x0, x1, ty_Integer) 30.08/13.45 new_primMulInt(Pos(x0), Neg(x1)) 30.08/13.45 new_primMulInt(Neg(x0), Pos(x1)) 30.08/13.45 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.08/13.45 new_esEs5(Nothing, Nothing, x0) 30.08/13.45 new_ltEs16(LT, LT) 30.08/13.45 new_primMulInt(Neg(x0), Neg(x1)) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) 30.08/13.45 new_esEs17([], [], x0) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, ty_Double) 30.08/13.45 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_esEs29(x0, x1, ty_@0) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.08/13.45 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_esEs9(x0, x1, ty_Char) 30.08/13.45 new_compare115(x0, x1, True, x2, x3, x4) 30.08/13.45 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_primEqNat0(Succ(x0), Succ(x1)) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.08/13.45 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs21(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs29(x0, x1, ty_Bool) 30.08/13.45 new_esEs29(x0, x1, ty_Float) 30.08/13.45 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_esEs22(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs9(x0, x1, ty_Int) 30.08/13.45 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 30.08/13.45 new_asAs(True, x0) 30.08/13.45 new_primEqInt(Pos(Zero), Neg(Zero)) 30.08/13.45 new_primEqInt(Neg(Zero), Pos(Zero)) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), ty_Float, x2) 30.08/13.45 new_esEs5(Just(x0), Just(x1), ty_Integer) 30.08/13.45 new_primCompAux00(x0, GT) 30.08/13.45 new_lt20(x0, x1, ty_Bool) 30.08/13.45 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.08/13.45 new_esEs27(x0, x1, ty_Integer) 30.08/13.45 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_compare111(x0, x1, False) 30.08/13.45 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_lt20(x0, x1, ty_Char) 30.08/13.45 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_esEs28(x0, x1, ty_Double) 30.08/13.45 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.08/13.45 new_ltEs20(x0, x1, ty_Float) 30.08/13.45 new_ltEs19(x0, x1, ty_Integer) 30.08/13.45 new_esEs17([], :(x0, x1), x2) 30.08/13.45 new_esEs29(x0, x1, ty_Char) 30.08/13.45 new_esEs28(x0, x1, ty_Int) 30.08/13.45 new_esEs9(x0, x1, ty_Bool) 30.08/13.45 new_lt15(x0, x1) 30.08/13.45 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 30.08/13.45 new_compare0(:(x0, x1), [], x2) 30.08/13.45 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_esEs21(x0, x1, ty_Integer) 30.08/13.45 new_esEs22(x0, x1, ty_@0) 30.08/13.45 new_compare14(x0, x1) 30.08/13.45 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_primCompAux00(x0, EQ) 30.08/13.45 new_fsEs(x0) 30.08/13.45 new_lt20(x0, x1, ty_Ordering) 30.08/13.45 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.08/13.45 new_primCmpNat0(Succ(x0), Zero) 30.08/13.45 new_ltEs8(x0, x1, ty_@0) 30.08/13.45 new_ltEs19(x0, x1, ty_Ordering) 30.08/13.45 new_compare111(x0, x1, True) 30.08/13.45 new_primCmpNat0(Succ(x0), Succ(x1)) 30.08/13.45 new_ltEs16(GT, GT) 30.08/13.45 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 30.08/13.45 new_ltEs5(x0, x1, x2) 30.08/13.45 new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_compare11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_esEs21(x0, x1, ty_Bool) 30.08/13.45 new_esEs5(Just(x0), Just(x1), ty_@0) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), ty_Double, x2) 30.08/13.45 new_ltEs16(LT, EQ) 30.08/13.45 new_ltEs16(EQ, LT) 30.08/13.45 new_compare11(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.08/13.45 new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.08/13.45 new_ltEs19(x0, x1, ty_Double) 30.08/13.45 new_esEs24(x0, x1, ty_Integer) 30.08/13.45 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 30.08/13.45 new_compare11(x0, x1, ty_@0) 30.08/13.45 new_compare26(x0, x1, True) 30.08/13.45 new_lt17(x0, x1) 30.08/13.45 new_esEs23(x0, x1, ty_Integer) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, ty_@0) 30.08/13.45 new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.08/13.45 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_lt8(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.08/13.45 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs8(GT, GT) 30.08/13.45 new_esEs9(x0, x1, ty_Float) 30.08/13.45 new_esEs20(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs8(LT, EQ) 30.08/13.45 new_esEs8(EQ, LT) 30.08/13.45 new_esEs20(x0, x1, ty_Bool) 30.08/13.45 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_compare28(x0, x1, True, x2, x3, x4) 30.08/13.45 new_compare19(Integer(x0), Integer(x1)) 30.08/13.45 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.08/13.45 new_primPlusNat0(Zero, Succ(x0)) 30.08/13.45 new_esEs25(x0, x1, ty_Int) 30.08/13.45 new_esEs24(x0, x1, ty_Float) 30.08/13.45 new_esEs10(x0, x1, ty_Double) 30.08/13.45 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.08/13.45 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.08/13.45 new_esEs13(False, True) 30.08/13.45 new_esEs13(True, False) 30.08/13.45 new_esEs24(x0, x1, ty_Bool) 30.08/13.45 new_compare113(x0, x1, False, x2, x3) 30.08/13.45 new_compare0(:(x0, x1), :(x2, x3), x4) 30.08/13.45 new_ltEs14(x0, x1) 30.08/13.45 new_esEs8(LT, LT) 30.08/13.45 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.08/13.45 new_lt9(x0, x1, ty_Float) 30.08/13.45 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.08/13.45 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.08/13.45 new_primEqNat0(Succ(x0), Zero) 30.08/13.45 new_esEs22(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_compare11(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_compare23(x0, x1, False, x2, x3) 30.08/13.45 new_esEs26(x0, x1, ty_Integer) 30.08/13.45 new_lt8(x0, x1, ty_Integer) 30.08/13.45 new_esEs10(x0, x1, ty_@0) 30.08/13.45 new_lt11(x0, x1) 30.08/13.45 new_ltEs6(False, False) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_esEs17(:(x0, x1), [], x2) 30.08/13.45 new_esEs25(x0, x1, ty_Bool) 30.08/13.45 new_ltEs19(x0, x1, ty_@0) 30.08/13.45 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.08/13.45 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.08/13.45 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_asAs(False, x0) 30.08/13.45 new_esEs27(x0, x1, ty_Int) 30.08/13.45 new_esEs10(x0, x1, app(ty_[], x2)) 30.08/13.45 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.08/13.45 new_ltEs8(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs25(x0, x1, ty_Char) 30.08/13.45 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.08/13.45 new_esEs24(x0, x1, ty_Int) 30.08/13.45 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_lt8(x0, x1, ty_Ordering) 30.08/13.45 new_ltEs8(x0, x1, ty_Double) 30.08/13.45 new_esEs16(@0, @0) 30.08/13.45 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs23(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs22(x0, x1, ty_Double) 30.08/13.45 new_esEs24(x0, x1, ty_Char) 30.08/13.45 new_esEs20(x0, x1, ty_Integer) 30.08/13.45 new_primMulInt(Pos(x0), Pos(x1)) 30.08/13.45 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_primPlusNat0(Succ(x0), Zero) 30.08/13.45 new_esEs21(x0, x1, ty_Float) 30.08/13.45 new_compare110(x0, x1, False, x2, x3) 30.08/13.45 new_esEs28(x0, x1, ty_Integer) 30.08/13.45 new_lt8(x0, x1, ty_@0) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs5(Just(x0), Just(x1), ty_Ordering) 30.08/13.45 new_ltEs16(EQ, EQ) 30.08/13.45 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.08/13.45 new_ltEs4(x0, x1, x2) 30.08/13.45 new_esEs20(x0, x1, ty_Ordering) 30.08/13.45 new_esEs23(x0, x1, ty_Int) 30.08/13.45 new_esEs20(x0, x1, ty_Double) 30.08/13.45 new_lt8(x0, x1, ty_Bool) 30.08/13.45 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 30.08/13.45 new_ltEs20(x0, x1, ty_Int) 30.08/13.45 new_esEs21(x0, x1, ty_Char) 30.08/13.45 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_primMulNat0(Zero, Zero) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.08/13.45 new_esEs24(x0, x1, app(ty_[], x2)) 30.08/13.45 new_compare114(x0, x1, False) 30.08/13.45 new_ltEs17(Left(x0), Right(x1), x2, x3) 30.08/13.45 new_ltEs17(Right(x0), Left(x1), x2, x3) 30.08/13.45 new_ltEs20(x0, x1, ty_Double) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) 30.08/13.45 new_esEs28(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_esEs22(x0, x1, ty_Ordering) 30.08/13.45 new_esEs11(x0, x1) 30.08/13.45 new_esEs21(x0, x1, ty_Int) 30.08/13.45 new_compare0([], [], x0) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 30.08/13.45 new_lt9(x0, x1, ty_Char) 30.08/13.45 new_esEs23(x0, x1, ty_Ordering) 30.08/13.45 new_ltEs18(x0, x1) 30.08/13.45 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 30.08/13.45 new_compare9(@0, @0) 30.08/13.45 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.08/13.45 new_esEs5(Nothing, Just(x0), x1) 30.08/13.45 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_compare27(Nothing, Just(x0), False, x1) 30.08/13.45 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.08/13.45 new_esEs21(x0, x1, ty_Double) 30.08/13.45 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_lt9(x0, x1, ty_Int) 30.08/13.45 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.08/13.45 new_lt9(x0, x1, ty_@0) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 30.08/13.45 new_esEs5(Just(x0), Just(x1), ty_Int) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.08/13.45 new_esEs5(Just(x0), Just(x1), ty_Double) 30.08/13.45 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 30.08/13.45 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_esEs5(Just(x0), Just(x1), ty_Char) 30.08/13.45 new_esEs25(x0, x1, ty_Integer) 30.08/13.45 new_esEs29(x0, x1, app(ty_[], x2)) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.08/13.45 new_compare11(x0, x1, ty_Float) 30.08/13.45 new_esEs25(x0, x1, ty_Float) 30.08/13.45 new_lt4(x0, x1, x2, x3) 30.08/13.45 new_primPlusNat0(Zero, Zero) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.08/13.45 new_lt8(x0, x1, ty_Char) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) 30.08/13.45 new_primEqNat0(Zero, Succ(x0)) 30.08/13.45 new_not(True) 30.08/13.45 new_lt9(x0, x1, ty_Bool) 30.08/13.45 new_lt9(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_esEs25(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs20(x0, x1, ty_Char) 30.08/13.45 new_esEs8(EQ, GT) 30.08/13.45 new_esEs8(GT, EQ) 30.08/13.45 new_compare115(x0, x1, False, x2, x3, x4) 30.08/13.45 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_lt12(x0, x1) 30.08/13.45 new_esEs28(x0, x1, ty_@0) 30.08/13.45 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.08/13.45 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.08/13.45 new_esEs15(Float(x0, x1), Float(x2, x3)) 30.08/13.45 new_lt10(x0, x1) 30.08/13.45 new_esEs28(x0, x1, ty_Bool) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 30.08/13.45 new_esEs10(x0, x1, ty_Ordering) 30.08/13.45 new_esEs24(x0, x1, ty_Ordering) 30.08/13.45 new_esEs13(True, True) 30.08/13.45 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_lt9(x0, x1, ty_Double) 30.08/13.45 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.08/13.45 new_esEs28(x0, x1, ty_Float) 30.08/13.45 new_ltEs20(x0, x1, ty_Char) 30.08/13.45 new_esEs10(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_primCompAux00(x0, LT) 30.08/13.45 new_esEs23(x0, x1, ty_@0) 30.08/13.45 new_primMulNat0(Zero, Succ(x0)) 30.08/13.45 new_lt20(x0, x1, ty_Double) 30.08/13.45 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.08/13.45 new_esEs21(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_esEs21(x0, x1, ty_Ordering) 30.08/13.45 new_compare18(x0, x1) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.08/13.45 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.08/13.45 new_ltEs20(x0, x1, ty_@0) 30.08/13.45 new_esEs22(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_ltEs8(x0, x1, ty_Ordering) 30.08/13.45 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_esEs20(x0, x1, ty_Int) 30.08/13.45 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_esEs23(x0, x1, ty_Bool) 30.08/13.45 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.08/13.45 new_ltEs16(LT, GT) 30.08/13.45 new_ltEs16(GT, LT) 30.08/13.45 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_primPlusNat1(x0, x1) 30.08/13.45 new_lt5(x0, x1, x2, x3, x4) 30.08/13.45 new_ltEs10(x0, x1) 30.08/13.45 new_lt8(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.08/13.45 new_ltEs6(True, True) 30.08/13.45 new_esEs29(x0, x1, ty_Double) 30.08/13.45 new_esEs5(Just(x0), Nothing, x1) 30.08/13.45 new_esEs28(x0, x1, ty_Char) 30.08/13.45 new_compare25(x0, x1, False, x2, x3) 30.08/13.45 new_compare28(x0, x1, False, x2, x3, x4) 30.08/13.45 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_lt8(x0, x1, ty_Int) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.08/13.45 new_esEs29(x0, x1, ty_Int) 30.08/13.45 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_compare27(x0, x1, True, x2) 30.08/13.45 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_esEs23(x0, x1, ty_Char) 30.08/13.45 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.08/13.45 new_esEs26(x0, x1, ty_Int) 30.08/13.45 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.08/13.45 new_compare15(x0, x1, x2) 30.08/13.45 new_esEs23(x0, x1, ty_Double) 30.08/13.45 new_compare27(Just(x0), Just(x1), False, x2) 30.08/13.45 new_esEs9(x0, x1, ty_Double) 30.08/13.45 new_lt8(x0, x1, ty_Double) 30.08/13.45 new_compare110(x0, x1, True, x2, x3) 30.08/13.45 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 30.08/13.45 new_esEs7(Left(x0), Right(x1), x2, x3) 30.08/13.45 new_esEs7(Right(x0), Left(x1), x2, x3) 30.08/13.45 new_esEs10(x0, x1, ty_Char) 30.08/13.45 new_lt8(x0, x1, ty_Float) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), ty_Int, x2) 30.08/13.45 new_primMulNat0(Succ(x0), Zero) 30.08/13.45 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, ty_Char) 30.08/13.45 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 30.08/13.45 new_esEs20(x0, x1, ty_@0) 30.08/13.45 new_esEs22(x0, x1, ty_Bool) 30.08/13.45 new_esEs9(x0, x1, ty_Ordering) 30.08/13.45 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_pePe(True, x0) 30.08/13.45 new_primCompAux0(x0, x1, x2, x3) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) 30.08/13.45 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_compare7(x0, x1, x2, x3, x4) 30.08/13.45 new_compare114(x0, x1, True) 30.08/13.45 new_esEs8(LT, GT) 30.08/13.45 new_esEs8(GT, LT) 30.08/13.45 new_compare112(x0, x1, True, x2) 30.08/13.45 new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.08/13.45 new_ltEs19(x0, x1, ty_Int) 30.08/13.45 new_esEs5(Just(x0), Just(x1), ty_Bool) 30.08/13.45 new_ltEs8(x0, x1, ty_Bool) 30.08/13.45 new_lt20(x0, x1, ty_Int) 30.08/13.45 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.08/13.45 new_compare27(Just(x0), Nothing, False, x1) 30.08/13.45 new_compare11(x0, x1, ty_Integer) 30.08/13.45 new_ltEs12(Nothing, Nothing, x0) 30.08/13.45 new_ltEs19(x0, x1, ty_Char) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), ty_Char, x2) 30.08/13.45 new_lt9(x0, x1, app(ty_[], x2)) 30.08/13.45 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_lt9(x0, x1, ty_Integer) 30.08/13.45 new_esEs25(x0, x1, ty_@0) 30.08/13.45 new_compare23(x0, x1, True, x2, x3) 30.08/13.45 new_ltEs20(x0, x1, ty_Bool) 30.08/13.45 new_sr0(x0, x1) 30.08/13.45 new_lt9(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 30.08/13.45 new_compare25(x0, x1, True, x2, x3) 30.08/13.45 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.08/13.45 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.08/13.45 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.08/13.45 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.08/13.45 new_compare11(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_esEs22(x0, x1, ty_Integer) 30.08/13.45 new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 30.08/13.45 new_primMulNat0(Succ(x0), Succ(x1)) 30.08/13.45 new_esEs9(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_lt20(x0, x1, ty_Float) 30.08/13.45 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, ty_Int) 30.08/13.45 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.08/13.45 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs10(x0, x1, ty_Float) 30.08/13.45 new_primEqNat0(Zero, Zero) 30.08/13.45 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.45 new_esEs13(False, False) 30.08/13.45 new_compare10(x0, x1, x2, x3) 30.08/13.45 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_lt14(x0, x1) 30.08/13.45 new_compare113(x0, x1, True, x2, x3) 30.08/13.45 new_lt9(x0, x1, ty_Ordering) 30.08/13.45 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.08/13.45 new_esEs12(Char(x0), Char(x1)) 30.08/13.45 new_esEs22(x0, x1, ty_Char) 30.08/13.45 new_not(False) 30.08/13.45 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.45 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_ltEs8(x0, x1, ty_Int) 30.08/13.45 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.08/13.45 new_compare6(x0, x1, x2, x3) 30.08/13.45 new_ltEs9(x0, x1) 30.08/13.45 new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 30.08/13.45 new_esEs10(x0, x1, ty_Bool) 30.08/13.45 new_ltEs8(x0, x1, app(ty_Ratio, x2)) 30.08/13.45 new_compare0([], :(x0, x1), x2) 30.08/13.45 new_ltEs19(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs21(x0, x1, ty_@0) 30.08/13.45 new_lt13(x0, x1, x2) 30.08/13.45 new_compare11(x0, x1, ty_Char) 30.08/13.45 new_esEs22(x0, x1, ty_Int) 30.08/13.45 new_esEs24(x0, x1, ty_@0) 30.08/13.45 new_ltEs6(True, False) 30.08/13.45 new_esEs10(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_ltEs6(False, True) 30.08/13.45 new_esEs9(x0, x1, app(ty_[], x2)) 30.08/13.45 new_esEs14(Double(x0, x1), Double(x2, x3)) 30.08/13.45 new_lt7(x0, x1) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, ty_Float) 30.08/13.45 new_ltEs12(Just(x0), Nothing, x1) 30.08/13.45 new_esEs21(x0, x1, app(ty_Maybe, x2)) 30.08/13.45 new_lt19(x0, x1) 30.08/13.45 new_esEs29(x0, x1, ty_Ordering) 30.08/13.45 new_esEs10(x0, x1, ty_Int) 30.08/13.45 new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.08/13.45 new_ltEs12(Nothing, Just(x0), x1) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 30.08/13.45 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.08/13.45 new_lt18(x0, x1, x2, x3) 30.08/13.45 new_primCmpNat0(Zero, Succ(x0)) 30.08/13.45 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.08/13.45 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.08/13.45 new_ltEs20(x0, x1, ty_Integer) 30.08/13.45 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.08/13.45 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.08/13.45 new_esEs28(x0, x1, ty_Ordering) 30.08/13.45 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.08/13.45 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.08/13.45 new_esEs25(x0, x1, ty_Double) 30.08/13.45 new_ltEs8(x0, x1, ty_Char) 30.08/13.45 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 30.08/13.45 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.08/13.45 new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.08/13.45 new_ltEs20(x0, x1, ty_Ordering) 30.08/13.45 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.45 new_compare11(x0, x1, ty_Bool) 30.08/13.45 new_ltEs19(x0, x1, ty_Float) 30.08/13.45 new_esEs24(x0, x1, ty_Double) 30.08/13.45 new_primCmpNat0(Zero, Zero) 30.08/13.45 new_compare24(x0, x1, True) 30.08/13.45 new_esEs17(:(x0, x1), :(x2, x3), x4) 30.08/13.45 30.08/13.45 We have to consider all minimal (P,Q,R)-chains. 30.08/13.45 ---------------------------------------- 30.08/13.45 30.08/13.45 (27) QDPSizeChangeProof (EQUIVALENT) 30.08/13.45 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. 30.08/13.45 30.08/13.45 From the DPs we obtained the following set of size-change graphs: 30.08/13.45 *new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, False, h, ba) -> new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, new_esEs8(new_compare27(Nothing, Just(xwv300), new_esEs5(Nothing, Just(xwv300), h), h), LT), h, ba) 30.08/13.45 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 30.08/13.45 30.08/13.45 30.08/13.45 *new_delFromFM1(xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv33, Nothing, h, ba) 30.08/13.45 The graph contains the following edges 3 >= 1, 6 >= 3, 7 >= 4 30.08/13.45 30.08/13.45 30.08/13.45 *new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Nothing, h, ba) -> new_delFromFM1(xwv31, xwv32, xwv33, xwv34, new_esEs8(new_compare27(Nothing, Nothing, new_esEs5(Nothing, Nothing, h), h), LT), h, ba) 30.08/13.45 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 3 >= 6, 4 >= 7 30.08/13.45 30.08/13.45 30.08/13.45 *new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Nothing, h, ba) -> new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, new_esEs8(new_compare27(Nothing, Just(xwv300), False, h), GT), h, ba) 30.08/13.45 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8 30.08/13.45 30.08/13.45 30.08/13.45 *new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv34, Nothing, h, ba) 30.08/13.45 The graph contains the following edges 5 >= 1, 7 >= 3, 8 >= 4 30.08/13.45 30.08/13.45 30.08/13.45 *new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv33, Nothing, h, ba) 30.08/13.45 The graph contains the following edges 4 >= 1, 7 >= 3, 8 >= 4 30.08/13.45 30.08/13.45 30.08/13.45 ---------------------------------------- 30.08/13.45 30.08/13.45 (28) 30.08/13.45 YES 30.08/13.45 30.08/13.45 ---------------------------------------- 30.08/13.45 30.08/13.45 (29) 30.08/13.45 Obligation: 30.08/13.45 Q DP problem: 30.08/13.45 The TRS P consists of the following rules: 30.08/13.45 30.08/13.45 new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba) -> new_delFromFM(xwv34, Just(xwv400), h, ba) 30.08/13.45 new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare27(Just(xwv400), Nothing, False, h), GT), h, ba) 30.08/13.45 new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, False, h, ba) -> new_delFromFM11(xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare27(Just(xwv400), Nothing, new_esEs5(Just(xwv400), Nothing, h), h), LT), h, ba) 30.08/13.45 new_delFromFM11(xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba) -> new_delFromFM(xwv33, Just(xwv400), h, ba) 30.08/13.45 new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare27(Just(xwv400), Just(xwv300), new_esEs29(xwv400, xwv300, h), h), GT), h, ba) 30.08/13.45 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bb, bc) -> new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs8(new_compare27(Just(xwv18), Just(xwv13), new_esEs5(Just(xwv18), Just(xwv13), bb), bb), LT), bb, bc) 30.08/13.45 new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv16, Just(xwv18), bb, bc) 30.08/13.45 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv17, Just(xwv18), bb, bc) 30.08/13.45 30.08/13.45 The TRS R consists of the following rules: 30.08/13.45 30.08/13.45 new_ltEs4(xwv2800, xwv2900, cb) -> new_fsEs(new_compare8(xwv2800, xwv2900, cb)) 30.08/13.45 new_lt7(xwv28000, xwv29000) -> new_esEs8(new_compare9(xwv28000, xwv29000), LT) 30.08/13.45 new_primCmpInt(Neg(Succ(xwv2800)), Pos(xwv290)) -> LT 30.08/13.45 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.08/13.45 new_lt18(xwv28000, xwv29000, cd, ce) -> new_esEs8(new_compare10(xwv28000, xwv29000, cd, ce), LT) 30.08/13.45 new_lt20(xwv28000, xwv29000, ty_Float) -> new_lt15(xwv28000, xwv29000) 30.08/13.45 new_esEs23(xwv4001, xwv3001, app(ty_[], bfg)) -> new_esEs17(xwv4001, xwv3001, bfg) 30.08/13.45 new_primPlusNat0(Zero, Zero) -> Zero 30.08/13.45 new_esEs25(xwv4000, xwv3000, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs6(xwv4000, xwv3000, caa, cab, cac) 30.08/13.45 new_pePe(True, xwv138) -> True 30.08/13.45 new_esEs22(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs7(xwv28002, xwv29002, he, hf, hg) 30.08/13.45 new_lt4(xwv28000, xwv29000, bd, be) -> new_esEs8(new_compare6(xwv28000, xwv29000, bd, be), LT) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Int) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.45 new_compare112(xwv125, xwv126, True, caf) -> LT 30.08/13.45 new_lt20(xwv28000, xwv29000, ty_Ordering) -> new_lt17(xwv28000, xwv29000) 30.08/13.45 new_esEs29(xwv400, xwv300, ty_Char) -> new_esEs12(xwv400, xwv300) 30.08/13.45 new_esEs10(xwv28001, xwv29001, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs6(xwv28001, xwv29001, gc, gd, ge) 30.08/13.45 new_compare10(xwv28000, xwv29000, cd, ce) -> new_compare23(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, cd, ce), cd, ce) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_@0) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.45 new_ltEs20(xwv2800, xwv2900, app(app(ty_@2, cah), cba)) -> new_ltEs11(xwv2800, xwv2900, cah, cba) 30.08/13.45 new_ltEs20(xwv2800, xwv2900, ty_Integer) -> new_ltEs18(xwv2800, xwv2900) 30.08/13.45 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.08/13.45 new_primCmpInt(Pos(Zero), Neg(Succ(xwv2900))) -> GT 30.08/13.45 new_compare14(xwv28000, xwv29000) -> new_compare26(xwv28000, xwv29000, new_esEs13(xwv28000, xwv29000)) 30.08/13.45 new_esEs24(xwv4002, xwv3002, ty_Int) -> new_esEs11(xwv4002, xwv3002) 30.08/13.45 new_esEs24(xwv4002, xwv3002, ty_Ordering) -> new_esEs8(xwv4002, xwv3002) 30.08/13.45 new_ltEs14(xwv2800, xwv2900) -> new_fsEs(new_compare17(xwv2800, xwv2900)) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, app(ty_[], cbf)) -> new_ltEs5(xwv28001, xwv29001, cbf) 30.08/13.45 new_primCmpInt(Neg(Succ(xwv2800)), Neg(xwv290)) -> new_primCmpNat0(xwv290, Succ(xwv2800)) 30.08/13.45 new_compare113(xwv28000, xwv29000, False, cd, ce) -> GT 30.08/13.45 new_lt9(xwv28000, xwv29000, app(ty_[], eg)) -> new_lt16(xwv28000, xwv29000, eg) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.45 new_lt8(xwv28001, xwv29001, app(app(ty_@2, fg), fh)) -> new_lt4(xwv28001, xwv29001, fg, fh) 30.08/13.45 new_primMulNat0(Succ(xwv400100), Succ(xwv300000)) -> new_primPlusNat1(new_primMulNat0(xwv400100, Succ(xwv300000)), xwv300000) 30.08/13.45 new_lt8(xwv28001, xwv29001, app(app(ty_Either, gf), gg)) -> new_lt18(xwv28001, xwv29001, gf, gg) 30.08/13.45 new_compare15(xwv28000, xwv29000, cbb) -> new_compare27(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, cbb), cbb) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.45 new_esEs28(xwv28000, xwv29000, app(app(ty_Either, cd), ce)) -> new_esEs7(xwv28000, xwv29000, cd, ce) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Ordering, cce) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.45 new_compare26(xwv28000, xwv29000, True) -> EQ 30.08/13.45 new_esEs10(xwv28001, xwv29001, ty_Char) -> new_esEs12(xwv28001, xwv29001) 30.08/13.45 new_compare18(xwv28000, xwv29000) -> new_compare24(xwv28000, xwv29000, new_esEs8(xwv28000, xwv29000)) 30.08/13.45 new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False 30.08/13.45 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 30.08/13.45 new_esEs8(GT, GT) -> True 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(xwv4000, xwv3000, dcd, dce, dcf) 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Ratio, cge)) -> new_esEs19(xwv4000, xwv3000, cge) 30.08/13.45 new_esEs9(xwv28000, xwv29000, app(ty_Ratio, ff)) -> new_esEs19(xwv28000, xwv29000, ff) 30.08/13.45 new_fsEs(xwv131) -> new_not(new_esEs8(xwv131, GT)) 30.08/13.45 new_esEs23(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 30.08/13.45 new_compare16(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.45 new_compare16(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Float, cce) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.45 new_esEs29(xwv400, xwv300, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs6(xwv400, xwv300, bda, bdb, bdc) 30.08/13.45 new_esEs24(xwv4002, xwv3002, app(app(ty_@2, bgc), bgd)) -> new_esEs4(xwv4002, xwv3002, bgc, bgd) 30.08/13.45 new_compare17(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.45 new_lt12(xwv28000, xwv29000) -> new_esEs8(new_compare14(xwv28000, xwv29000), LT) 30.08/13.45 new_esEs8(EQ, EQ) -> True 30.08/13.45 new_esEs24(xwv4002, xwv3002, ty_Bool) -> new_esEs13(xwv4002, xwv3002) 30.08/13.45 new_primEqNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.45 new_ltEs20(xwv2800, xwv2900, ty_Bool) -> new_ltEs6(xwv2800, xwv2900) 30.08/13.45 new_esEs25(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, app(app(ty_@2, cbc), cbd)) -> new_ltEs11(xwv28001, xwv29001, cbc, cbd) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Int) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.45 new_not(True) -> False 30.08/13.45 new_esEs24(xwv4002, xwv3002, ty_Integer) -> new_esEs18(xwv4002, xwv3002) 30.08/13.45 new_compare11(xwv28000, xwv29000, ty_Integer) -> new_compare19(xwv28000, xwv29000) 30.08/13.45 new_primCompAux00(xwv160, LT) -> LT 30.08/13.45 new_primCmpNat0(Zero, Zero) -> EQ 30.08/13.45 new_esEs21(xwv4001, xwv3001, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs6(xwv4001, xwv3001, bce, bcf, bcg) 30.08/13.45 new_lt13(xwv28000, xwv29000, cbb) -> new_esEs8(new_compare15(xwv28000, xwv29000, cbb), LT) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, ty_Bool) -> new_ltEs6(xwv28001, xwv29001) 30.08/13.45 new_compare115(xwv28000, xwv29000, True, bf, bg, bh) -> LT 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Double) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, app(app(app(ty_@3, cbg), cbh), cca)) -> new_ltEs7(xwv28001, xwv29001, cbg, cbh, cca) 30.08/13.45 new_esEs22(xwv4000, xwv3000, app(ty_Ratio, bea)) -> new_esEs19(xwv4000, xwv3000, bea) 30.08/13.45 new_esEs29(xwv400, xwv300, ty_Int) -> new_esEs11(xwv400, xwv300) 30.08/13.45 new_compare27(Nothing, Nothing, False, cff) -> LT 30.08/13.45 new_esEs20(xwv4000, xwv3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs6(xwv4000, xwv3000, bbc, bbd, bbe) 30.08/13.45 new_esEs20(xwv4000, xwv3000, app(app(ty_Either, baf), bag)) -> new_esEs7(xwv4000, xwv3000, baf, bag) 30.08/13.45 new_esEs28(xwv28000, xwv29000, ty_Bool) -> new_esEs13(xwv28000, xwv29000) 30.08/13.45 new_ltEs16(GT, EQ) -> False 30.08/13.45 new_esEs29(xwv400, xwv300, ty_Integer) -> new_esEs18(xwv400, xwv300) 30.08/13.45 new_esEs4(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bac, bad) -> new_asAs(new_esEs20(xwv4000, xwv3000, bac), new_esEs21(xwv4001, xwv3001, bad)) 30.08/13.45 new_esEs10(xwv28001, xwv29001, ty_Ordering) -> new_esEs8(xwv28001, xwv29001) 30.08/13.45 new_compare27(xwv280, xwv290, True, cff) -> EQ 30.08/13.45 new_compare11(xwv28000, xwv29000, ty_Int) -> new_compare12(xwv28000, xwv29000) 30.08/13.45 new_ltEs17(Left(xwv28000), Right(xwv29000), cdh, cce) -> True 30.08/13.45 new_primEqNat0(Succ(xwv40000), Zero) -> False 30.08/13.45 new_primEqNat0(Zero, Succ(xwv30000)) -> False 30.08/13.45 new_lt9(xwv28000, xwv29000, app(ty_Maybe, ef)) -> new_lt13(xwv28000, xwv29000, ef) 30.08/13.45 new_esEs28(xwv28000, xwv29000, ty_Int) -> new_esEs11(xwv28000, xwv29000) 30.08/13.45 new_esEs29(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_@0) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.45 new_lt8(xwv28001, xwv29001, app(app(app(ty_@3, gc), gd), ge)) -> new_lt5(xwv28001, xwv29001, gc, gd, ge) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, app(ty_[], hd)) -> new_ltEs5(xwv28002, xwv29002, hd) 30.08/13.45 new_lt20(xwv28000, xwv29000, ty_Integer) -> new_lt19(xwv28000, xwv29000) 30.08/13.45 new_primCompAux00(xwv160, GT) -> GT 30.08/13.45 new_ltEs8(xwv28002, xwv29002, app(ty_Ratio, bab)) -> new_ltEs4(xwv28002, xwv29002, bab) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.45 new_compare11(xwv28000, xwv29000, ty_Bool) -> new_compare14(xwv28000, xwv29000) 30.08/13.45 new_lt9(xwv28000, xwv29000, app(app(ty_@2, ed), ee)) -> new_lt4(xwv28000, xwv29000, ed, ee) 30.08/13.45 new_esEs20(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.45 new_esEs23(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.45 new_ltEs6(True, True) -> True 30.08/13.45 new_primCmpInt(Pos(Succ(xwv2800)), Neg(xwv290)) -> GT 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(ty_Either, ceh), cfa)) -> new_ltEs17(xwv28000, xwv29000, ceh, cfa) 30.08/13.45 new_esEs20(xwv4000, xwv3000, app(app(ty_@2, bah), bba)) -> new_esEs4(xwv4000, xwv3000, bah, bba) 30.08/13.45 new_ltEs16(LT, LT) -> True 30.08/13.45 new_ltEs19(xwv28001, xwv29001, ty_Float) -> new_ltEs14(xwv28001, xwv29001) 30.08/13.45 new_compare11(xwv28000, xwv29000, ty_Char) -> new_compare13(xwv28000, xwv29000) 30.08/13.45 new_esEs23(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.45 new_compare110(xwv28000, xwv29000, True, bd, be) -> LT 30.08/13.45 new_lt9(xwv28000, xwv29000, app(app(ty_Either, fc), fd)) -> new_lt18(xwv28000, xwv29000, fc, fd) 30.08/13.45 new_esEs29(xwv400, xwv300, ty_Float) -> new_esEs15(xwv400, xwv300) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, ty_Integer) -> new_ltEs18(xwv28001, xwv29001) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, ty_Ordering) -> new_ltEs16(xwv28002, xwv29002) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Bool, cce) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.45 new_ltEs20(xwv2800, xwv2900, ty_Float) -> new_ltEs14(xwv2800, xwv2900) 30.08/13.45 new_lt17(xwv28000, xwv29000) -> new_esEs8(new_compare18(xwv28000, xwv29000), LT) 30.08/13.45 new_primCmpNat0(Zero, Succ(xwv2900)) -> LT 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_[], ced)) -> new_ltEs5(xwv28000, xwv29000, ced) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, dbb), dbc), dbd), cfe) -> new_esEs6(xwv4000, xwv3000, dbb, dbc, dbd) 30.08/13.45 new_ltEs20(xwv2800, xwv2900, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs7(xwv2800, xwv2900, ea, eb, ec) 30.08/13.45 new_esEs22(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.45 new_esEs28(xwv28000, xwv29000, ty_Char) -> new_esEs12(xwv28000, xwv29000) 30.08/13.45 new_esEs28(xwv28000, xwv29000, ty_Integer) -> new_esEs18(xwv28000, xwv29000) 30.08/13.45 new_ltEs10(xwv2800, xwv2900) -> new_fsEs(new_compare13(xwv2800, xwv2900)) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Double, cfe) -> new_esEs14(xwv4000, xwv3000) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, ty_Double) -> new_ltEs13(xwv28002, xwv29002) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, app(ty_Ratio, ccd)) -> new_ltEs4(xwv28001, xwv29001, ccd) 30.08/13.45 new_sr(Integer(xwv280000), Integer(xwv290010)) -> Integer(new_primMulInt(xwv280000, xwv290010)) 30.08/13.45 new_primCmpNat0(Succ(xwv2800), Zero) -> GT 30.08/13.45 new_pePe(False, xwv138) -> xwv138 30.08/13.45 new_compare11(xwv28000, xwv29000, app(ty_Maybe, da)) -> new_compare15(xwv28000, xwv29000, da) 30.08/13.45 new_esEs23(xwv4001, xwv3001, ty_Bool) -> new_esEs13(xwv4001, xwv3001) 30.08/13.45 new_esEs9(xwv28000, xwv29000, app(ty_Maybe, ef)) -> new_esEs5(xwv28000, xwv29000, ef) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(ty_@2, dag), dah), cfe) -> new_esEs4(xwv4000, xwv3000, dag, dah) 30.08/13.45 new_ltEs13(xwv2800, xwv2900) -> new_fsEs(new_compare16(xwv2800, xwv2900)) 30.08/13.45 new_compare25(xwv28000, xwv29000, True, bd, be) -> EQ 30.08/13.45 new_ltEs8(xwv28002, xwv29002, ty_Integer) -> new_ltEs18(xwv28002, xwv29002) 30.08/13.45 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.45 new_esEs10(xwv28001, xwv29001, app(app(ty_Either, gf), gg)) -> new_esEs7(xwv28001, xwv29001, gf, gg) 30.08/13.45 new_lt20(xwv28000, xwv29000, ty_Char) -> new_lt11(xwv28000, xwv29000) 30.08/13.45 new_ltEs16(LT, GT) -> True 30.08/13.45 new_lt8(xwv28001, xwv29001, app(ty_[], gb)) -> new_lt16(xwv28001, xwv29001, gb) 30.08/13.45 new_esEs22(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.45 new_lt9(xwv28000, xwv29000, ty_Int) -> new_lt10(xwv28000, xwv29000) 30.08/13.45 new_esEs25(xwv4000, xwv3000, app(ty_Ratio, bhh)) -> new_esEs19(xwv4000, xwv3000, bhh) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_Maybe, cch), cce) -> new_ltEs12(xwv28000, xwv29000, cch) 30.08/13.45 new_esEs17([], [], bhb) -> True 30.08/13.45 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Double) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.45 new_ltEs16(LT, EQ) -> True 30.08/13.45 new_ltEs16(EQ, LT) -> False 30.08/13.45 new_compare23(xwv28000, xwv29000, True, cd, ce) -> EQ 30.08/13.45 new_esEs8(LT, EQ) -> False 30.08/13.45 new_esEs8(EQ, LT) -> False 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.45 new_esEs21(xwv4001, xwv3001, app(app(ty_@2, bcb), bcc)) -> new_esEs4(xwv4001, xwv3001, bcb, bcc) 30.08/13.45 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 30.08/13.45 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 30.08/13.45 new_esEs28(xwv28000, xwv29000, ty_@0) -> new_esEs16(xwv28000, xwv29000) 30.08/13.45 new_ltEs19(xwv28001, xwv29001, app(app(ty_Either, ccb), ccc)) -> new_ltEs17(xwv28001, xwv29001, ccb, ccc) 30.08/13.45 new_esEs21(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 30.08/13.45 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(xwv4000, xwv3000, cgf, cgg, cgh) 30.08/13.45 new_compare114(xwv28000, xwv29000, True) -> LT 30.08/13.45 new_ltEs16(GT, LT) -> False 30.08/13.45 new_esEs25(xwv4000, xwv3000, app(app(ty_@2, bhf), bhg)) -> new_esEs4(xwv4000, xwv3000, bhf, bhg) 30.08/13.45 new_esEs21(xwv4001, xwv3001, app(ty_Maybe, bbg)) -> new_esEs5(xwv4001, xwv3001, bbg) 30.08/13.45 new_esEs23(xwv4001, xwv3001, app(app(ty_Either, beg), beh)) -> new_esEs7(xwv4001, xwv3001, beg, beh) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Integer, cce) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.45 new_esEs5(Nothing, Nothing, cfc) -> True 30.08/13.45 new_ltEs20(xwv2800, xwv2900, app(app(ty_Either, cdh), cce)) -> new_ltEs17(xwv2800, xwv2900, cdh, cce) 30.08/13.45 new_ltEs6(False, False) -> True 30.08/13.45 new_esEs25(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.45 new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.45 new_esEs10(xwv28001, xwv29001, ty_Integer) -> new_esEs18(xwv28001, xwv29001) 30.08/13.45 new_lt8(xwv28001, xwv29001, app(ty_Maybe, ga)) -> new_lt13(xwv28001, xwv29001, ga) 30.08/13.45 new_esEs5(Nothing, Just(xwv3000), cfc) -> False 30.08/13.45 new_esEs5(Just(xwv4000), Nothing, cfc) -> False 30.08/13.45 new_primCmpInt(Neg(Zero), Pos(Succ(xwv2900))) -> LT 30.08/13.45 new_compare13(Char(xwv28000), Char(xwv29000)) -> new_primCmpNat0(xwv28000, xwv29000) 30.08/13.45 new_primMulInt(Pos(xwv40010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.45 new_esEs10(xwv28001, xwv29001, ty_Int) -> new_esEs11(xwv28001, xwv29001) 30.08/13.45 new_esEs20(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.45 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(ty_Either, dae), daf), cfe) -> new_esEs7(xwv4000, xwv3000, dae, daf) 30.08/13.45 new_esEs9(xwv28000, xwv29000, app(app(ty_@2, ed), ee)) -> new_esEs4(xwv28000, xwv29000, ed, ee) 30.08/13.45 new_esEs21(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.45 new_esEs9(xwv28000, xwv29000, ty_Ordering) -> new_esEs8(xwv28000, xwv29000) 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(ty_Either, cde), cdf), cce) -> new_ltEs17(xwv28000, xwv29000, cde, cdf) 30.08/13.45 new_esEs24(xwv4002, xwv3002, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs6(xwv4002, xwv3002, bgf, bgg, bgh) 30.08/13.45 new_esEs10(xwv28001, xwv29001, app(app(ty_@2, fg), fh)) -> new_esEs4(xwv28001, xwv29001, fg, fh) 30.08/13.45 new_primMulNat0(Succ(xwv400100), Zero) -> Zero 30.08/13.45 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 30.08/13.45 new_ltEs8(xwv28002, xwv29002, ty_@0) -> new_ltEs15(xwv28002, xwv29002) 30.08/13.45 new_esEs18(Integer(xwv4000), Integer(xwv3000)) -> new_primEqInt(xwv4000, xwv3000) 30.08/13.45 new_esEs25(xwv4000, xwv3000, app(app(ty_Either, bhd), bhe)) -> new_esEs7(xwv4000, xwv3000, bhd, bhe) 30.08/13.45 new_compare11(xwv28000, xwv29000, app(app(ty_@2, cf), cg)) -> new_compare6(xwv28000, xwv29000, cf, cg) 30.08/13.45 new_esEs24(xwv4002, xwv3002, ty_Char) -> new_esEs12(xwv4002, xwv3002) 30.08/13.45 new_ltEs18(xwv2800, xwv2900) -> new_fsEs(new_compare19(xwv2800, xwv2900)) 30.08/13.45 new_esEs23(xwv4001, xwv3001, app(ty_Maybe, bef)) -> new_esEs5(xwv4001, xwv3001, bef) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Char) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.45 new_esEs20(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.45 new_lt9(xwv28000, xwv29000, ty_Ordering) -> new_lt17(xwv28000, xwv29000) 30.08/13.45 new_lt20(xwv28000, xwv29000, ty_Bool) -> new_lt12(xwv28000, xwv29000) 30.08/13.45 new_primPlusNat0(Succ(xwv33200), Zero) -> Succ(xwv33200) 30.08/13.45 new_primPlusNat0(Zero, Succ(xwv9700)) -> Succ(xwv9700) 30.08/13.45 new_esEs28(xwv28000, xwv29000, app(ty_[], cag)) -> new_esEs17(xwv28000, xwv29000, cag) 30.08/13.45 new_ltEs16(EQ, GT) -> True 30.08/13.45 new_esEs20(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.45 new_esEs17(:(xwv4000, xwv4001), :(xwv3000, xwv3001), bhb) -> new_asAs(new_esEs25(xwv4000, xwv3000, bhb), new_esEs17(xwv4001, xwv3001, bhb)) 30.08/13.45 new_ltEs16(EQ, EQ) -> True 30.08/13.45 new_lt8(xwv28001, xwv29001, ty_Double) -> new_lt14(xwv28001, xwv29001) 30.08/13.45 new_ltEs6(True, False) -> False 30.08/13.45 new_lt9(xwv28000, xwv29000, app(app(app(ty_@3, eh), fa), fb)) -> new_lt5(xwv28000, xwv29000, eh, fa, fb) 30.08/13.45 new_esEs8(LT, LT) -> True 30.08/13.45 new_compare19(Integer(xwv28000), Integer(xwv29000)) -> new_primCmpInt(xwv28000, xwv29000) 30.08/13.45 new_lt8(xwv28001, xwv29001, ty_Ordering) -> new_lt17(xwv28001, xwv29001) 30.08/13.45 new_compare111(xwv28000, xwv29000, True) -> LT 30.08/13.45 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, cdb), cdc), cdd), cce) -> new_ltEs7(xwv28000, xwv29000, cdb, cdc, cdd) 30.08/13.45 new_esEs10(xwv28001, xwv29001, ty_Float) -> new_esEs15(xwv28001, xwv29001) 30.08/13.45 new_esEs29(xwv400, xwv300, app(ty_[], bhb)) -> new_esEs17(xwv400, xwv300, bhb) 30.08/13.45 new_esEs22(xwv4000, xwv3000, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs6(xwv4000, xwv3000, beb, bec, bed) 30.08/13.45 new_esEs9(xwv28000, xwv29000, ty_Float) -> new_esEs15(xwv28000, xwv29000) 30.08/13.45 new_lt20(xwv28000, xwv29000, app(ty_Ratio, ca)) -> new_lt6(xwv28000, xwv29000, ca) 30.08/13.45 new_esEs9(xwv28000, xwv29000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs6(xwv28000, xwv29000, eh, fa, fb) 30.08/13.45 new_esEs21(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.45 new_ltEs8(xwv28002, xwv29002, app(app(ty_Either, hh), baa)) -> new_ltEs17(xwv28002, xwv29002, hh, baa) 30.08/13.45 new_compare23(xwv28000, xwv29000, False, cd, ce) -> new_compare113(xwv28000, xwv29000, new_ltEs17(xwv28000, xwv29000, cd, ce), cd, ce) 30.08/13.45 new_esEs13(True, True) -> True 30.08/13.45 new_ltEs20(xwv2800, xwv2900, ty_Double) -> new_ltEs13(xwv2800, xwv2900) 30.08/13.45 new_compare17(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.45 new_compare17(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.45 new_esEs28(xwv28000, xwv29000, ty_Double) -> new_esEs14(xwv28000, xwv29000) 30.08/13.45 new_ltEs20(xwv2800, xwv2900, ty_Ordering) -> new_ltEs16(xwv2800, xwv2900) 30.08/13.45 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, chf), chg), chh)) -> new_ltEs7(xwv28000, xwv29000, chf, chg, chh) 30.08/13.46 new_esEs20(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Char, cfe) -> new_esEs12(xwv4000, xwv3000) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Bool, cfe) -> new_esEs13(xwv4000, xwv3000) 30.08/13.46 new_esEs23(xwv4001, xwv3001, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs6(xwv4001, xwv3001, bfd, bfe, bff) 30.08/13.46 new_compare11(xwv28000, xwv29000, app(app(app(ty_@3, dc), dd), de)) -> new_compare7(xwv28000, xwv29000, dc, dd, de) 30.08/13.46 new_esEs25(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_Maybe, chd)) -> new_ltEs12(xwv28000, xwv29000, chd) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, ty_Float) -> new_ltEs14(xwv28002, xwv29002) 30.08/13.46 new_primMulInt(Neg(xwv40010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.46 new_compare24(xwv28000, xwv29000, False) -> new_compare114(xwv28000, xwv29000, new_ltEs16(xwv28000, xwv29000)) 30.08/13.46 new_primCmpInt(Pos(Zero), Pos(Succ(xwv2900))) -> new_primCmpNat0(Zero, Succ(xwv2900)) 30.08/13.46 new_esEs29(xwv400, xwv300, ty_Double) -> new_esEs14(xwv400, xwv300) 30.08/13.46 new_esEs10(xwv28001, xwv29001, app(ty_Maybe, ga)) -> new_esEs5(xwv28001, xwv29001, ga) 30.08/13.46 new_esEs25(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.46 new_esEs22(xwv4000, xwv3000, app(ty_Maybe, bdd)) -> new_esEs5(xwv4000, xwv3000, bdd) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, ty_Ordering) -> new_ltEs16(xwv28001, xwv29001) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_Ratio, dcc)) -> new_esEs19(xwv4000, xwv3000, dcc) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.46 new_lt9(xwv28000, xwv29000, ty_Double) -> new_lt14(xwv28000, xwv29000) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, ty_Double) -> new_ltEs13(xwv28001, xwv29001) 30.08/13.46 new_compare11(xwv28000, xwv29000, ty_Ordering) -> new_compare18(xwv28000, xwv29000) 30.08/13.46 new_esEs24(xwv4002, xwv3002, app(app(ty_Either, bga), bgb)) -> new_esEs7(xwv4002, xwv3002, bga, bgb) 30.08/13.46 new_compare114(xwv28000, xwv29000, False) -> GT 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Maybe, cfh)) -> new_esEs5(xwv4000, xwv3000, cfh) 30.08/13.46 new_esEs23(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, app(ty_Ratio, cb)) -> new_ltEs4(xwv2800, xwv2900, cb) 30.08/13.46 new_compare28(xwv28000, xwv29000, False, bf, bg, bh) -> new_compare115(xwv28000, xwv29000, new_ltEs7(xwv28000, xwv29000, bf, bg, bh), bf, bg, bh) 30.08/13.46 new_esEs23(xwv4001, xwv3001, app(app(ty_@2, bfa), bfb)) -> new_esEs4(xwv4001, xwv3001, bfa, bfb) 30.08/13.46 new_esEs21(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Int, cfe) -> new_esEs11(xwv4000, xwv3000) 30.08/13.46 new_compare113(xwv28000, xwv29000, True, cd, ce) -> LT 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_Ratio, cdg), cce) -> new_ltEs4(xwv28000, xwv29000, cdg) 30.08/13.46 new_esEs10(xwv28001, xwv29001, ty_@0) -> new_esEs16(xwv28001, xwv29001) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_[], che)) -> new_ltEs5(xwv28000, xwv29000, che) 30.08/13.46 new_primMulInt(Pos(xwv40010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.46 new_primMulInt(Neg(xwv40010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Ordering) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.46 new_esEs12(Char(xwv4000), Char(xwv3000)) -> new_primEqNat0(xwv4000, xwv3000) 30.08/13.46 new_esEs22(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.46 new_esEs22(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.46 new_esEs22(xwv4000, xwv3000, app(app(ty_@2, bdg), bdh)) -> new_esEs4(xwv4000, xwv3000, bdg, bdh) 30.08/13.46 new_lt9(xwv28000, xwv29000, ty_Integer) -> new_lt19(xwv28000, xwv29000) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Float) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.46 new_lt8(xwv28001, xwv29001, ty_@0) -> new_lt7(xwv28001, xwv29001) 30.08/13.46 new_lt9(xwv28000, xwv29000, app(ty_Ratio, ff)) -> new_lt6(xwv28000, xwv29000, ff) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, ty_Int) -> new_ltEs9(xwv28001, xwv29001) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(ty_@2, dca), dcb)) -> new_esEs4(xwv4000, xwv3000, dca, dcb) 30.08/13.46 new_lt19(xwv28000, xwv29000) -> new_esEs8(new_compare19(xwv28000, xwv29000), LT) 30.08/13.46 new_esEs24(xwv4002, xwv3002, ty_Double) -> new_esEs14(xwv4002, xwv3002) 30.08/13.46 new_esEs29(xwv400, xwv300, app(ty_Maybe, cfc)) -> new_esEs5(xwv400, xwv300, cfc) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(ty_@2, ccf), ccg), cce) -> new_ltEs11(xwv28000, xwv29000, ccf, ccg) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_Maybe, dbf)) -> new_esEs5(xwv4000, xwv3000, dbf) 30.08/13.46 new_esEs13(False, False) -> True 30.08/13.46 new_compare16(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.46 new_ltEs9(xwv2800, xwv2900) -> new_fsEs(new_compare12(xwv2800, xwv2900)) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.46 new_lt20(xwv28000, xwv29000, app(ty_Maybe, cbb)) -> new_lt13(xwv28000, xwv29000, cbb) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_Either, cga), cgb)) -> new_esEs7(xwv4000, xwv3000, cga, cgb) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Integer, cfe) -> new_esEs18(xwv4000, xwv3000) 30.08/13.46 new_ltEs7(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ea, eb, ec) -> new_pePe(new_lt9(xwv28000, xwv29000, ea), new_asAs(new_esEs9(xwv28000, xwv29000, ea), new_pePe(new_lt8(xwv28001, xwv29001, eb), new_asAs(new_esEs10(xwv28001, xwv29001, eb), new_ltEs8(xwv28002, xwv29002, ec))))) 30.08/13.46 new_esEs23(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 30.08/13.46 new_esEs26(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.46 new_compare6(xwv28000, xwv29000, bd, be) -> new_compare25(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, bd, be), bd, be) 30.08/13.46 new_lt20(xwv28000, xwv29000, ty_Int) -> new_lt10(xwv28000, xwv29000) 30.08/13.46 new_esEs24(xwv4002, xwv3002, app(ty_Ratio, bge)) -> new_esEs19(xwv4002, xwv3002, bge) 30.08/13.46 new_esEs29(xwv400, xwv300, ty_@0) -> new_esEs16(xwv400, xwv300) 30.08/13.46 new_compare0([], :(xwv29000, xwv29001), cc) -> LT 30.08/13.46 new_asAs(True, xwv64) -> xwv64 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Bool) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.46 new_compare11(xwv28000, xwv29000, ty_Double) -> new_compare16(xwv28000, xwv29000) 30.08/13.46 new_esEs25(xwv4000, xwv3000, app(ty_[], cad)) -> new_esEs17(xwv4000, xwv3000, cad) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(ty_@2, chb), chc)) -> new_ltEs11(xwv28000, xwv29000, chb, chc) 30.08/13.46 new_esEs10(xwv28001, xwv29001, app(ty_[], gb)) -> new_esEs17(xwv28001, xwv29001, gb) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, ty_@0) -> new_ltEs15(xwv2800, xwv2900) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.46 new_esEs14(Double(xwv4000, xwv4001), Double(xwv3000, xwv3001)) -> new_esEs11(new_sr0(xwv4000, xwv3001), new_sr0(xwv4001, xwv3000)) 30.08/13.46 new_lt16(xwv28000, xwv29000, cag) -> new_esEs8(new_compare0(xwv28000, xwv29000, cag), LT) 30.08/13.46 new_esEs20(xwv4000, xwv3000, app(ty_Maybe, bae)) -> new_esEs5(xwv4000, xwv3000, bae) 30.08/13.46 new_esEs16(@0, @0) -> True 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_@2, cgc), cgd)) -> new_esEs4(xwv4000, xwv3000, cgc, cgd) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.46 new_esEs22(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, ty_@0) -> new_ltEs15(xwv28001, xwv29001) 30.08/13.46 new_primCmpInt(Pos(Succ(xwv2800)), Pos(xwv290)) -> new_primCmpNat0(Succ(xwv2800), xwv290) 30.08/13.46 new_esEs9(xwv28000, xwv29000, app(ty_[], eg)) -> new_esEs17(xwv28000, xwv29000, eg) 30.08/13.46 new_primPlusNat1(xwv107, xwv300000) -> new_primPlusNat0(xwv107, Succ(xwv300000)) 30.08/13.46 new_lt9(xwv28000, xwv29000, ty_Char) -> new_lt11(xwv28000, xwv29000) 30.08/13.46 new_esEs9(xwv28000, xwv29000, ty_Int) -> new_esEs11(xwv28000, xwv29000) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_Maybe, dad), cfe) -> new_esEs5(xwv4000, xwv3000, dad) 30.08/13.46 new_primCompAux00(xwv160, EQ) -> xwv160 30.08/13.46 new_compare0([], [], cc) -> EQ 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.46 new_ltEs16(GT, GT) -> True 30.08/13.46 new_compare27(Nothing, Just(xwv2900), False, cff) -> LT 30.08/13.46 new_esEs28(xwv28000, xwv29000, ty_Float) -> new_esEs15(xwv28000, xwv29000) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Int, cce) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.46 new_compare27(Just(xwv2800), Just(xwv2900), False, cff) -> new_compare112(xwv2800, xwv2900, new_ltEs20(xwv2800, xwv2900, cff), cff) 30.08/13.46 new_esEs21(xwv4001, xwv3001, app(app(ty_Either, bbh), bca)) -> new_esEs7(xwv4001, xwv3001, bbh, bca) 30.08/13.46 new_primMulNat0(Zero, Zero) -> Zero 30.08/13.46 new_lt20(xwv28000, xwv29000, app(ty_[], cag)) -> new_lt16(xwv28000, xwv29000, cag) 30.08/13.46 new_lt14(xwv28000, xwv29000) -> new_esEs8(new_compare16(xwv28000, xwv29000), LT) 30.08/13.46 new_esEs23(xwv4001, xwv3001, ty_Char) -> new_esEs12(xwv4001, xwv3001) 30.08/13.46 new_esEs24(xwv4002, xwv3002, app(ty_Maybe, bfh)) -> new_esEs5(xwv4002, xwv3002, bfh) 30.08/13.46 new_lt8(xwv28001, xwv29001, ty_Char) -> new_lt11(xwv28001, xwv29001) 30.08/13.46 new_esEs10(xwv28001, xwv29001, ty_Double) -> new_esEs14(xwv28001, xwv29001) 30.08/13.46 new_compare111(xwv28000, xwv29000, False) -> GT 30.08/13.46 new_ltEs20(xwv2800, xwv2900, app(ty_Maybe, cfg)) -> new_ltEs12(xwv2800, xwv2900, cfg) 30.08/13.46 new_lt15(xwv28000, xwv29000) -> new_esEs8(new_compare17(xwv28000, xwv29000), LT) 30.08/13.46 new_compare9(@0, @0) -> EQ 30.08/13.46 new_compare115(xwv28000, xwv29000, False, bf, bg, bh) -> GT 30.08/13.46 new_esEs21(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 30.08/13.46 new_esEs22(xwv4000, xwv3000, app(app(ty_Either, bde), bdf)) -> new_esEs7(xwv4000, xwv3000, bde, bdf) 30.08/13.46 new_compare28(xwv28000, xwv29000, True, bf, bg, bh) -> EQ 30.08/13.46 new_esEs9(xwv28000, xwv29000, app(app(ty_Either, fc), fd)) -> new_esEs7(xwv28000, xwv29000, fc, fd) 30.08/13.46 new_esEs20(xwv4000, xwv3000, app(ty_[], bbf)) -> new_esEs17(xwv4000, xwv3000, bbf) 30.08/13.46 new_compare8(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Int) -> new_compare12(new_sr0(xwv28000, xwv29001), new_sr0(xwv29000, xwv28001)) 30.08/13.46 new_esEs22(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Integer) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, ty_Int) -> new_ltEs9(xwv28002, xwv29002) 30.08/13.46 new_esEs9(xwv28000, xwv29000, ty_Integer) -> new_esEs18(xwv28000, xwv29000) 30.08/13.46 new_esEs29(xwv400, xwv300, app(ty_Ratio, cae)) -> new_esEs19(xwv400, xwv300, cae) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_[], dcg)) -> new_esEs17(xwv4000, xwv3000, dcg) 30.08/13.46 new_esEs25(xwv4000, xwv3000, app(ty_Maybe, bhc)) -> new_esEs5(xwv4000, xwv3000, bhc) 30.08/13.46 new_primCompAux0(xwv28000, xwv29000, xwv148, cc) -> new_primCompAux00(xwv148, new_compare11(xwv28000, xwv29000, cc)) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.46 new_esEs22(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.46 new_lt9(xwv28000, xwv29000, ty_Float) -> new_lt15(xwv28000, xwv29000) 30.08/13.46 new_ltEs6(False, True) -> True 30.08/13.46 new_esEs9(xwv28000, xwv29000, ty_@0) -> new_esEs16(xwv28000, xwv29000) 30.08/13.46 new_compare25(xwv28000, xwv29000, False, bd, be) -> new_compare110(xwv28000, xwv29000, new_ltEs11(xwv28000, xwv29000, bd, be), bd, be) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Ordering, cfe) -> new_esEs8(xwv4000, xwv3000) 30.08/13.46 new_esEs20(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.46 new_esEs21(xwv4001, xwv3001, app(ty_[], bch)) -> new_esEs17(xwv4001, xwv3001, bch) 30.08/13.46 new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False 30.08/13.46 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Char, cce) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.46 new_esEs13(False, True) -> False 30.08/13.46 new_esEs13(True, False) -> False 30.08/13.46 new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.46 new_esEs28(xwv28000, xwv29000, app(ty_Ratio, ca)) -> new_esEs19(xwv28000, xwv29000, ca) 30.08/13.46 new_lt8(xwv28001, xwv29001, ty_Int) -> new_lt10(xwv28001, xwv29001) 30.08/13.46 new_compare11(xwv28000, xwv29000, ty_@0) -> new_compare9(xwv28000, xwv29000) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Bool) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Ordering) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.46 new_compare24(xwv28000, xwv29000, True) -> EQ 30.08/13.46 new_lt5(xwv28000, xwv29000, bf, bg, bh) -> new_esEs8(new_compare7(xwv28000, xwv29000, bf, bg, bh), LT) 30.08/13.46 new_lt20(xwv28000, xwv29000, ty_@0) -> new_lt7(xwv28000, xwv29000) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_[], dbe), cfe) -> new_esEs17(xwv4000, xwv3000, dbe) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_Ratio, cfb)) -> new_ltEs4(xwv28000, xwv29000, cfb) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, app(ty_Maybe, cbe)) -> new_ltEs12(xwv28001, xwv29001, cbe) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(ty_Either, dbg), dbh)) -> new_esEs7(xwv4000, xwv3000, dbg, dbh) 30.08/13.46 new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> False 30.08/13.46 new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> False 30.08/13.46 new_primCmpInt(Neg(Zero), Neg(Succ(xwv2900))) -> new_primCmpNat0(Succ(xwv2900), Zero) 30.08/13.46 new_esEs23(xwv4001, xwv3001, app(ty_Ratio, bfc)) -> new_esEs19(xwv4001, xwv3001, bfc) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_@0, cce) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.46 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.08/13.46 new_lt8(xwv28001, xwv29001, app(ty_Ratio, gh)) -> new_lt6(xwv28001, xwv29001, gh) 30.08/13.46 new_lt8(xwv28001, xwv29001, ty_Bool) -> new_lt12(xwv28001, xwv29001) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Char) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.46 new_esEs25(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.46 new_esEs28(xwv28000, xwv29000, app(ty_Maybe, cbb)) -> new_esEs5(xwv28000, xwv29000, cbb) 30.08/13.46 new_lt9(xwv28000, xwv29000, ty_@0) -> new_lt7(xwv28000, xwv29000) 30.08/13.46 new_lt11(xwv28000, xwv29000) -> new_esEs8(new_compare13(xwv28000, xwv29000), LT) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Double, cce) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.46 new_esEs23(xwv4001, xwv3001, ty_Double) -> new_esEs14(xwv4001, xwv3001) 30.08/13.46 new_lt20(xwv28000, xwv29000, ty_Double) -> new_lt14(xwv28000, xwv29000) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(ty_@2, cea), ceb)) -> new_ltEs11(xwv28000, xwv29000, cea, ceb) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, ty_Bool) -> new_ltEs6(xwv28002, xwv29002) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(ty_Either, daa), dab)) -> new_ltEs17(xwv28000, xwv29000, daa, dab) 30.08/13.46 new_esEs24(xwv4002, xwv3002, ty_Float) -> new_esEs15(xwv4002, xwv3002) 30.08/13.46 new_compare8(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Integer) -> new_compare19(new_sr(xwv28000, xwv29001), new_sr(xwv29000, xwv28001)) 30.08/13.46 new_esEs25(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.46 new_compare26(xwv28000, xwv29000, False) -> new_compare111(xwv28000, xwv29000, new_ltEs6(xwv28000, xwv29000)) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_[], cda), cce) -> new_ltEs5(xwv28000, xwv29000, cda) 30.08/13.46 new_not(False) -> True 30.08/13.46 new_esEs21(xwv4001, xwv3001, ty_Double) -> new_esEs14(xwv4001, xwv3001) 30.08/13.46 new_esEs21(xwv4001, xwv3001, ty_Bool) -> new_esEs13(xwv4001, xwv3001) 30.08/13.46 new_esEs24(xwv4002, xwv3002, app(ty_[], bha)) -> new_esEs17(xwv4002, xwv3002, bha) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_Ratio, dac)) -> new_ltEs4(xwv28000, xwv29000, dac) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_Maybe, cec)) -> new_ltEs12(xwv28000, xwv29000, cec) 30.08/13.46 new_esEs9(xwv28000, xwv29000, ty_Char) -> new_esEs12(xwv28000, xwv29000) 30.08/13.46 new_compare0(:(xwv28000, xwv28001), [], cc) -> GT 30.08/13.46 new_esEs8(LT, GT) -> False 30.08/13.46 new_esEs8(GT, LT) -> False 30.08/13.46 new_compare27(Just(xwv2800), Nothing, False, cff) -> GT 30.08/13.46 new_primPlusNat0(Succ(xwv33200), Succ(xwv9700)) -> Succ(Succ(new_primPlusNat0(xwv33200, xwv9700))) 30.08/13.46 new_esEs24(xwv4002, xwv3002, ty_@0) -> new_esEs16(xwv4002, xwv3002) 30.08/13.46 new_esEs27(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.46 new_esEs25(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.46 new_esEs21(xwv4001, xwv3001, ty_Char) -> new_esEs12(xwv4001, xwv3001) 30.08/13.46 new_compare16(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.46 new_compare11(xwv28000, xwv29000, ty_Float) -> new_compare17(xwv28000, xwv29000) 30.08/13.46 new_esEs6(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), bda, bdb, bdc) -> new_asAs(new_esEs22(xwv4000, xwv3000, bda), new_asAs(new_esEs23(xwv4001, xwv3001, bdb), new_esEs24(xwv4002, xwv3002, bdc))) 30.08/13.46 new_esEs9(xwv28000, xwv29000, ty_Bool) -> new_esEs13(xwv28000, xwv29000) 30.08/13.46 new_esEs27(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.46 new_sr0(xwv4001, xwv3000) -> new_primMulInt(xwv4001, xwv3000) 30.08/13.46 new_lt9(xwv28000, xwv29000, ty_Bool) -> new_lt12(xwv28000, xwv29000) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, ty_Char) -> new_ltEs10(xwv28001, xwv29001) 30.08/13.46 new_lt20(xwv28000, xwv29000, app(app(ty_Either, cd), ce)) -> new_lt18(xwv28000, xwv29000, cd, ce) 30.08/13.46 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.08/13.46 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.08/13.46 new_ltEs8(xwv28002, xwv29002, app(app(ty_@2, ha), hb)) -> new_ltEs11(xwv28002, xwv29002, ha, hb) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, ty_Char) -> new_ltEs10(xwv28002, xwv29002) 30.08/13.46 new_compare0(:(xwv28000, xwv28001), :(xwv29000, xwv29001), cc) -> new_primCompAux0(xwv28000, xwv29000, new_compare0(xwv28001, xwv29001, cc), cc) 30.08/13.46 new_lt20(xwv28000, xwv29000, app(app(ty_@2, bd), be)) -> new_lt4(xwv28000, xwv29000, bd, be) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), ty_@0, cfe) -> new_esEs16(xwv4000, xwv3000) 30.08/13.46 new_esEs22(xwv4000, xwv3000, app(ty_[], bee)) -> new_esEs17(xwv4000, xwv3000, bee) 30.08/13.46 new_compare11(xwv28000, xwv29000, app(ty_[], db)) -> new_compare0(xwv28000, xwv29000, db) 30.08/13.46 new_esEs10(xwv28001, xwv29001, app(ty_Ratio, gh)) -> new_esEs19(xwv28001, xwv29001, gh) 30.08/13.46 new_lt8(xwv28001, xwv29001, ty_Integer) -> new_lt19(xwv28001, xwv29001) 30.08/13.46 new_esEs9(xwv28000, xwv29000, ty_Double) -> new_esEs14(xwv28000, xwv29000) 30.08/13.46 new_esEs10(xwv28001, xwv29001, ty_Bool) -> new_esEs13(xwv28001, xwv29001) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_[], cha)) -> new_esEs17(xwv4000, xwv3000, cha) 30.08/13.46 new_lt6(xwv28000, xwv29000, ca) -> new_esEs8(new_compare8(xwv28000, xwv29000, ca), LT) 30.08/13.46 new_ltEs12(Nothing, Just(xwv29000), cfg) -> True 30.08/13.46 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.08/13.46 new_esEs21(xwv4001, xwv3001, app(ty_Ratio, bcd)) -> new_esEs19(xwv4001, xwv3001, bcd) 30.08/13.46 new_esEs28(xwv28000, xwv29000, app(app(ty_@2, bd), be)) -> new_esEs4(xwv28000, xwv29000, bd, be) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.46 new_primCmpNat0(Succ(xwv2800), Succ(xwv2900)) -> new_primCmpNat0(xwv2800, xwv2900) 30.08/13.46 new_ltEs15(xwv2800, xwv2900) -> new_fsEs(new_compare9(xwv2800, xwv2900)) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, app(ty_Maybe, hc)) -> new_ltEs12(xwv28002, xwv29002, hc) 30.08/13.46 new_lt8(xwv28001, xwv29001, ty_Float) -> new_lt15(xwv28001, xwv29001) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs7(xwv28000, xwv29000, cee, cef, ceg) 30.08/13.46 new_compare11(xwv28000, xwv29000, app(app(ty_Either, df), dg)) -> new_compare10(xwv28000, xwv29000, df, dg) 30.08/13.46 new_esEs28(xwv28000, xwv29000, ty_Ordering) -> new_esEs8(xwv28000, xwv29000) 30.08/13.46 new_compare12(xwv28, xwv29) -> new_primCmpInt(xwv28, xwv29) 30.08/13.46 new_ltEs12(Nothing, Nothing, cfg) -> True 30.08/13.46 new_ltEs20(xwv2800, xwv2900, ty_Char) -> new_ltEs10(xwv2800, xwv2900) 30.08/13.46 new_esEs19(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), cae) -> new_asAs(new_esEs26(xwv4000, xwv3000, cae), new_esEs27(xwv4001, xwv3001, cae)) 30.08/13.46 new_ltEs12(Just(xwv28000), Nothing, cfg) -> False 30.08/13.46 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.08/13.46 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.08/13.46 new_esEs29(xwv400, xwv300, app(app(ty_@2, bac), bad)) -> new_esEs4(xwv400, xwv300, bac, bad) 30.08/13.46 new_ltEs17(Right(xwv28000), Left(xwv29000), cdh, cce) -> False 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Float) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.46 new_ltEs5(xwv2800, xwv2900, cc) -> new_fsEs(new_compare0(xwv2800, xwv2900, cc)) 30.08/13.46 new_compare110(xwv28000, xwv29000, False, bd, be) -> GT 30.08/13.46 new_compare11(xwv28000, xwv29000, app(ty_Ratio, dh)) -> new_compare8(xwv28000, xwv29000, dh) 30.08/13.46 new_primEqNat0(Zero, Zero) -> True 30.08/13.46 new_ltEs20(xwv2800, xwv2900, ty_Int) -> new_ltEs9(xwv2800, xwv2900) 30.08/13.46 new_esEs20(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, app(ty_[], cc)) -> new_ltEs5(xwv2800, xwv2900, cc) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Float, cfe) -> new_esEs15(xwv4000, xwv3000) 30.08/13.46 new_esEs28(xwv28000, xwv29000, app(app(app(ty_@3, bf), bg), bh)) -> new_esEs6(xwv28000, xwv29000, bf, bg, bh) 30.08/13.46 new_esEs29(xwv400, xwv300, ty_Ordering) -> new_esEs8(xwv400, xwv300) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Integer) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.46 new_compare7(xwv28000, xwv29000, bf, bg, bh) -> new_compare28(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bf, bg, bh), bf, bg, bh) 30.08/13.46 new_asAs(False, xwv64) -> False 30.08/13.46 new_esEs17(:(xwv4000, xwv4001), [], bhb) -> False 30.08/13.46 new_esEs17([], :(xwv3000, xwv3001), bhb) -> False 30.08/13.46 new_esEs20(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.46 new_esEs29(xwv400, xwv300, app(app(ty_Either, cfd), cfe)) -> new_esEs7(xwv400, xwv300, cfd, cfe) 30.08/13.46 new_esEs26(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.46 new_esEs25(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.46 new_lt10(xwv280, xwv290) -> new_esEs8(new_compare12(xwv280, xwv290), LT) 30.08/13.46 new_esEs8(EQ, GT) -> False 30.08/13.46 new_esEs8(GT, EQ) -> False 30.08/13.46 new_compare112(xwv125, xwv126, False, caf) -> GT 30.08/13.46 new_esEs20(xwv4000, xwv3000, app(ty_Ratio, bbb)) -> new_esEs19(xwv4000, xwv3000, bbb) 30.08/13.46 new_lt20(xwv28000, xwv29000, app(app(app(ty_@3, bf), bg), bh)) -> new_lt5(xwv28000, xwv29000, bf, bg, bh) 30.08/13.46 new_compare17(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.46 new_esEs15(Float(xwv4000, xwv4001), Float(xwv3000, xwv3001)) -> new_esEs11(new_sr0(xwv4000, xwv3001), new_sr0(xwv4001, xwv3000)) 30.08/13.46 new_esEs7(Left(xwv4000), Right(xwv3000), cfd, cfe) -> False 30.08/13.46 new_esEs7(Right(xwv4000), Left(xwv3000), cfd, cfe) -> False 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_Ratio, dba), cfe) -> new_esEs19(xwv4000, xwv3000, dba) 30.08/13.46 new_esEs11(xwv400, xwv300) -> new_primEqInt(xwv400, xwv300) 30.08/13.46 new_ltEs11(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), cah, cba) -> new_pePe(new_lt20(xwv28000, xwv29000, cah), new_asAs(new_esEs28(xwv28000, xwv29000, cah), new_ltEs19(xwv28001, xwv29001, cba))) 30.08/13.46 30.08/13.46 The set Q consists of the following terms: 30.08/13.46 30.08/13.46 new_esEs29(x0, x1, ty_Integer) 30.08/13.46 new_compare11(x0, x1, ty_Ordering) 30.08/13.46 new_esEs8(EQ, EQ) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.08/13.46 new_esEs20(x0, x1, ty_Float) 30.08/13.46 new_lt16(x0, x1, x2) 30.08/13.46 new_esEs9(x0, x1, ty_@0) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.08/13.46 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_lt20(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_compare24(x0, x1, False) 30.08/13.46 new_esEs5(Just(x0), Just(x1), ty_Float) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) 30.08/13.46 new_compare11(x0, x1, ty_Double) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.08/13.46 new_compare26(x0, x1, False) 30.08/13.46 new_esEs18(Integer(x0), Integer(x1)) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.08/13.46 new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs9(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_compare112(x0, x1, False, x2) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) 30.08/13.46 new_pePe(False, x0) 30.08/13.46 new_compare11(x0, x1, app(ty_[], x2)) 30.08/13.46 new_compare11(x0, x1, ty_Int) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.08/13.46 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.08/13.46 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 30.08/13.46 new_sr(Integer(x0), Integer(x1)) 30.08/13.46 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_primEqInt(Pos(Zero), Pos(Zero)) 30.08/13.46 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.08/13.46 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), ty_@0, x2) 30.08/13.46 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_compare27(Nothing, Nothing, False, x0) 30.08/13.46 new_lt8(x0, x1, app(ty_[], x2)) 30.08/13.46 new_ltEs8(x0, x1, ty_Float) 30.08/13.46 new_compare13(Char(x0), Char(x1)) 30.08/13.46 new_lt20(x0, x1, ty_@0) 30.08/13.46 new_lt6(x0, x1, x2) 30.08/13.46 new_esEs23(x0, x1, ty_Float) 30.08/13.46 new_ltEs20(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs25(x0, x1, ty_Ordering) 30.08/13.46 new_ltEs15(x0, x1) 30.08/13.46 new_esEs9(x0, x1, ty_Integer) 30.08/13.46 new_ltEs19(x0, x1, ty_Bool) 30.08/13.46 new_esEs22(x0, x1, ty_Float) 30.08/13.46 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_esEs10(x0, x1, ty_Integer) 30.08/13.46 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.08/13.46 new_primEqInt(Neg(Zero), Neg(Zero)) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.08/13.46 new_ltEs8(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_lt20(x0, x1, ty_Integer) 30.08/13.46 new_ltEs16(GT, EQ) 30.08/13.46 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_ltEs16(EQ, GT) 30.08/13.46 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 30.08/13.46 new_compare12(x0, x1) 30.08/13.46 new_ltEs13(x0, x1) 30.08/13.46 new_primPlusNat0(Succ(x0), Succ(x1)) 30.08/13.46 new_compare11(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_ltEs8(x0, x1, ty_Integer) 30.08/13.46 new_primMulInt(Pos(x0), Neg(x1)) 30.08/13.46 new_primMulInt(Neg(x0), Pos(x1)) 30.08/13.46 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.08/13.46 new_esEs5(Nothing, Nothing, x0) 30.08/13.46 new_ltEs16(LT, LT) 30.08/13.46 new_primMulInt(Neg(x0), Neg(x1)) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) 30.08/13.46 new_esEs17([], [], x0) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, ty_Double) 30.08/13.46 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_esEs29(x0, x1, ty_@0) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.08/13.46 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_esEs9(x0, x1, ty_Char) 30.08/13.46 new_compare115(x0, x1, True, x2, x3, x4) 30.08/13.46 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_primEqNat0(Succ(x0), Succ(x1)) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.08/13.46 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs21(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs29(x0, x1, ty_Bool) 30.08/13.46 new_esEs29(x0, x1, ty_Float) 30.08/13.46 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_esEs22(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs9(x0, x1, ty_Int) 30.08/13.46 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 30.08/13.46 new_asAs(True, x0) 30.08/13.46 new_primEqInt(Pos(Zero), Neg(Zero)) 30.08/13.46 new_primEqInt(Neg(Zero), Pos(Zero)) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), ty_Float, x2) 30.08/13.46 new_esEs5(Just(x0), Just(x1), ty_Integer) 30.08/13.46 new_primCompAux00(x0, GT) 30.08/13.46 new_lt20(x0, x1, ty_Bool) 30.08/13.46 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.08/13.46 new_esEs27(x0, x1, ty_Integer) 30.08/13.46 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_compare111(x0, x1, False) 30.08/13.46 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_lt20(x0, x1, ty_Char) 30.08/13.46 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_esEs28(x0, x1, ty_Double) 30.08/13.46 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.08/13.46 new_ltEs20(x0, x1, ty_Float) 30.08/13.46 new_ltEs19(x0, x1, ty_Integer) 30.08/13.46 new_esEs17([], :(x0, x1), x2) 30.08/13.46 new_esEs29(x0, x1, ty_Char) 30.08/13.46 new_esEs28(x0, x1, ty_Int) 30.08/13.46 new_esEs9(x0, x1, ty_Bool) 30.08/13.46 new_lt15(x0, x1) 30.08/13.46 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 30.08/13.46 new_compare0(:(x0, x1), [], x2) 30.08/13.46 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_esEs21(x0, x1, ty_Integer) 30.08/13.46 new_esEs22(x0, x1, ty_@0) 30.08/13.46 new_compare14(x0, x1) 30.08/13.46 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_primCompAux00(x0, EQ) 30.08/13.46 new_fsEs(x0) 30.08/13.46 new_lt20(x0, x1, ty_Ordering) 30.08/13.46 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.08/13.46 new_primCmpNat0(Succ(x0), Zero) 30.08/13.46 new_ltEs8(x0, x1, ty_@0) 30.08/13.46 new_ltEs19(x0, x1, ty_Ordering) 30.08/13.46 new_compare111(x0, x1, True) 30.08/13.46 new_primCmpNat0(Succ(x0), Succ(x1)) 30.08/13.46 new_ltEs16(GT, GT) 30.08/13.46 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 30.08/13.46 new_ltEs5(x0, x1, x2) 30.08/13.46 new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_compare11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_esEs21(x0, x1, ty_Bool) 30.08/13.46 new_esEs5(Just(x0), Just(x1), ty_@0) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), ty_Double, x2) 30.08/13.46 new_ltEs16(LT, EQ) 30.08/13.46 new_ltEs16(EQ, LT) 30.08/13.46 new_compare11(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.08/13.46 new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.08/13.46 new_ltEs19(x0, x1, ty_Double) 30.08/13.46 new_esEs24(x0, x1, ty_Integer) 30.08/13.46 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 30.08/13.46 new_compare11(x0, x1, ty_@0) 30.08/13.46 new_compare26(x0, x1, True) 30.08/13.46 new_lt17(x0, x1) 30.08/13.46 new_esEs23(x0, x1, ty_Integer) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, ty_@0) 30.08/13.46 new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.08/13.46 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_lt8(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.08/13.46 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs8(GT, GT) 30.08/13.46 new_esEs9(x0, x1, ty_Float) 30.08/13.46 new_esEs20(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs8(LT, EQ) 30.08/13.46 new_esEs8(EQ, LT) 30.08/13.46 new_esEs20(x0, x1, ty_Bool) 30.08/13.46 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_compare28(x0, x1, True, x2, x3, x4) 30.08/13.46 new_compare19(Integer(x0), Integer(x1)) 30.08/13.46 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.08/13.46 new_primPlusNat0(Zero, Succ(x0)) 30.08/13.46 new_esEs25(x0, x1, ty_Int) 30.08/13.46 new_esEs24(x0, x1, ty_Float) 30.08/13.46 new_esEs10(x0, x1, ty_Double) 30.08/13.46 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.08/13.46 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.08/13.46 new_esEs13(False, True) 30.08/13.46 new_esEs13(True, False) 30.08/13.46 new_esEs24(x0, x1, ty_Bool) 30.08/13.46 new_compare113(x0, x1, False, x2, x3) 30.08/13.46 new_compare0(:(x0, x1), :(x2, x3), x4) 30.08/13.46 new_ltEs14(x0, x1) 30.08/13.46 new_esEs8(LT, LT) 30.08/13.46 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.08/13.46 new_lt9(x0, x1, ty_Float) 30.08/13.46 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.08/13.46 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.08/13.46 new_primEqNat0(Succ(x0), Zero) 30.08/13.46 new_esEs22(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_compare11(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_compare23(x0, x1, False, x2, x3) 30.08/13.46 new_esEs26(x0, x1, ty_Integer) 30.08/13.46 new_lt8(x0, x1, ty_Integer) 30.08/13.46 new_esEs10(x0, x1, ty_@0) 30.08/13.46 new_lt11(x0, x1) 30.08/13.46 new_ltEs6(False, False) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_esEs17(:(x0, x1), [], x2) 30.08/13.46 new_esEs25(x0, x1, ty_Bool) 30.08/13.46 new_ltEs19(x0, x1, ty_@0) 30.08/13.46 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.08/13.46 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.08/13.46 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_asAs(False, x0) 30.08/13.46 new_esEs27(x0, x1, ty_Int) 30.08/13.46 new_esEs10(x0, x1, app(ty_[], x2)) 30.08/13.46 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.08/13.46 new_ltEs8(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs25(x0, x1, ty_Char) 30.08/13.46 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.08/13.46 new_esEs24(x0, x1, ty_Int) 30.08/13.46 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_lt8(x0, x1, ty_Ordering) 30.08/13.46 new_ltEs8(x0, x1, ty_Double) 30.08/13.46 new_esEs16(@0, @0) 30.08/13.46 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs23(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs22(x0, x1, ty_Double) 30.08/13.46 new_esEs24(x0, x1, ty_Char) 30.08/13.46 new_esEs20(x0, x1, ty_Integer) 30.08/13.46 new_primMulInt(Pos(x0), Pos(x1)) 30.08/13.46 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_primPlusNat0(Succ(x0), Zero) 30.08/13.46 new_esEs21(x0, x1, ty_Float) 30.08/13.46 new_compare110(x0, x1, False, x2, x3) 30.08/13.46 new_esEs28(x0, x1, ty_Integer) 30.08/13.46 new_lt8(x0, x1, ty_@0) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs5(Just(x0), Just(x1), ty_Ordering) 30.08/13.46 new_ltEs16(EQ, EQ) 30.08/13.46 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.08/13.46 new_ltEs4(x0, x1, x2) 30.08/13.46 new_esEs20(x0, x1, ty_Ordering) 30.08/13.46 new_esEs23(x0, x1, ty_Int) 30.08/13.46 new_esEs20(x0, x1, ty_Double) 30.08/13.46 new_lt8(x0, x1, ty_Bool) 30.08/13.46 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 30.08/13.46 new_ltEs20(x0, x1, ty_Int) 30.08/13.46 new_esEs21(x0, x1, ty_Char) 30.08/13.46 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_primMulNat0(Zero, Zero) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.08/13.46 new_esEs24(x0, x1, app(ty_[], x2)) 30.08/13.46 new_compare114(x0, x1, False) 30.08/13.46 new_ltEs17(Left(x0), Right(x1), x2, x3) 30.08/13.46 new_ltEs17(Right(x0), Left(x1), x2, x3) 30.08/13.46 new_ltEs20(x0, x1, ty_Double) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) 30.08/13.46 new_esEs28(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_esEs22(x0, x1, ty_Ordering) 30.08/13.46 new_esEs11(x0, x1) 30.08/13.46 new_esEs21(x0, x1, ty_Int) 30.08/13.46 new_compare0([], [], x0) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 30.08/13.46 new_lt9(x0, x1, ty_Char) 30.08/13.46 new_esEs23(x0, x1, ty_Ordering) 30.08/13.46 new_ltEs18(x0, x1) 30.08/13.46 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 30.08/13.46 new_compare9(@0, @0) 30.08/13.46 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.08/13.46 new_esEs5(Nothing, Just(x0), x1) 30.08/13.46 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_compare27(Nothing, Just(x0), False, x1) 30.08/13.46 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.08/13.46 new_esEs21(x0, x1, ty_Double) 30.08/13.46 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_lt9(x0, x1, ty_Int) 30.08/13.46 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.08/13.46 new_lt9(x0, x1, ty_@0) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 30.08/13.46 new_esEs5(Just(x0), Just(x1), ty_Int) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.08/13.46 new_esEs5(Just(x0), Just(x1), ty_Double) 30.08/13.46 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 30.08/13.46 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_esEs5(Just(x0), Just(x1), ty_Char) 30.08/13.46 new_esEs25(x0, x1, ty_Integer) 30.08/13.46 new_esEs29(x0, x1, app(ty_[], x2)) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.08/13.46 new_compare11(x0, x1, ty_Float) 30.08/13.46 new_esEs25(x0, x1, ty_Float) 30.08/13.46 new_lt4(x0, x1, x2, x3) 30.08/13.46 new_primPlusNat0(Zero, Zero) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.08/13.46 new_lt8(x0, x1, ty_Char) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) 30.08/13.46 new_primEqNat0(Zero, Succ(x0)) 30.08/13.46 new_not(True) 30.08/13.46 new_lt9(x0, x1, ty_Bool) 30.08/13.46 new_lt9(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_esEs25(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs20(x0, x1, ty_Char) 30.08/13.46 new_esEs8(EQ, GT) 30.08/13.46 new_esEs8(GT, EQ) 30.08/13.46 new_compare115(x0, x1, False, x2, x3, x4) 30.08/13.46 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_lt12(x0, x1) 30.08/13.46 new_esEs28(x0, x1, ty_@0) 30.08/13.46 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.08/13.46 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.08/13.46 new_esEs15(Float(x0, x1), Float(x2, x3)) 30.08/13.46 new_lt10(x0, x1) 30.08/13.46 new_esEs28(x0, x1, ty_Bool) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 30.08/13.46 new_esEs10(x0, x1, ty_Ordering) 30.08/13.46 new_esEs24(x0, x1, ty_Ordering) 30.08/13.46 new_esEs13(True, True) 30.08/13.46 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_lt9(x0, x1, ty_Double) 30.08/13.46 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.08/13.46 new_esEs28(x0, x1, ty_Float) 30.08/13.46 new_ltEs20(x0, x1, ty_Char) 30.08/13.46 new_esEs10(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_primCompAux00(x0, LT) 30.08/13.46 new_esEs23(x0, x1, ty_@0) 30.08/13.46 new_primMulNat0(Zero, Succ(x0)) 30.08/13.46 new_lt20(x0, x1, ty_Double) 30.08/13.46 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.08/13.46 new_esEs21(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_esEs21(x0, x1, ty_Ordering) 30.08/13.46 new_compare18(x0, x1) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.08/13.46 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.08/13.46 new_ltEs20(x0, x1, ty_@0) 30.08/13.46 new_esEs22(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_ltEs8(x0, x1, ty_Ordering) 30.08/13.46 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_esEs20(x0, x1, ty_Int) 30.08/13.46 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_esEs23(x0, x1, ty_Bool) 30.08/13.46 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.08/13.46 new_ltEs16(LT, GT) 30.08/13.46 new_ltEs16(GT, LT) 30.08/13.46 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_primPlusNat1(x0, x1) 30.08/13.46 new_lt5(x0, x1, x2, x3, x4) 30.08/13.46 new_ltEs10(x0, x1) 30.08/13.46 new_lt8(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.08/13.46 new_ltEs6(True, True) 30.08/13.46 new_esEs29(x0, x1, ty_Double) 30.08/13.46 new_esEs5(Just(x0), Nothing, x1) 30.08/13.46 new_esEs28(x0, x1, ty_Char) 30.08/13.46 new_compare25(x0, x1, False, x2, x3) 30.08/13.46 new_compare28(x0, x1, False, x2, x3, x4) 30.08/13.46 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_lt8(x0, x1, ty_Int) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.08/13.46 new_esEs29(x0, x1, ty_Int) 30.08/13.46 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_compare27(x0, x1, True, x2) 30.08/13.46 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_esEs23(x0, x1, ty_Char) 30.08/13.46 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.08/13.46 new_esEs26(x0, x1, ty_Int) 30.08/13.46 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.08/13.46 new_compare15(x0, x1, x2) 30.08/13.46 new_esEs23(x0, x1, ty_Double) 30.08/13.46 new_compare27(Just(x0), Just(x1), False, x2) 30.08/13.46 new_esEs9(x0, x1, ty_Double) 30.08/13.46 new_lt8(x0, x1, ty_Double) 30.08/13.46 new_compare110(x0, x1, True, x2, x3) 30.08/13.46 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 30.08/13.46 new_esEs7(Left(x0), Right(x1), x2, x3) 30.08/13.46 new_esEs7(Right(x0), Left(x1), x2, x3) 30.08/13.46 new_esEs10(x0, x1, ty_Char) 30.08/13.46 new_lt8(x0, x1, ty_Float) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), ty_Int, x2) 30.08/13.46 new_primMulNat0(Succ(x0), Zero) 30.08/13.46 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, ty_Char) 30.08/13.46 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 30.08/13.46 new_esEs20(x0, x1, ty_@0) 30.08/13.46 new_esEs22(x0, x1, ty_Bool) 30.08/13.46 new_esEs9(x0, x1, ty_Ordering) 30.08/13.46 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_pePe(True, x0) 30.08/13.46 new_primCompAux0(x0, x1, x2, x3) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) 30.08/13.46 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_compare7(x0, x1, x2, x3, x4) 30.08/13.46 new_compare114(x0, x1, True) 30.08/13.46 new_esEs8(LT, GT) 30.08/13.46 new_esEs8(GT, LT) 30.08/13.46 new_compare112(x0, x1, True, x2) 30.08/13.46 new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.08/13.46 new_ltEs19(x0, x1, ty_Int) 30.08/13.46 new_esEs5(Just(x0), Just(x1), ty_Bool) 30.08/13.46 new_ltEs8(x0, x1, ty_Bool) 30.08/13.46 new_lt20(x0, x1, ty_Int) 30.08/13.46 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.08/13.46 new_compare27(Just(x0), Nothing, False, x1) 30.08/13.46 new_compare11(x0, x1, ty_Integer) 30.08/13.46 new_ltEs12(Nothing, Nothing, x0) 30.08/13.46 new_ltEs19(x0, x1, ty_Char) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), ty_Char, x2) 30.08/13.46 new_lt9(x0, x1, app(ty_[], x2)) 30.08/13.46 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_lt9(x0, x1, ty_Integer) 30.08/13.46 new_esEs25(x0, x1, ty_@0) 30.08/13.46 new_compare23(x0, x1, True, x2, x3) 30.08/13.46 new_ltEs20(x0, x1, ty_Bool) 30.08/13.46 new_sr0(x0, x1) 30.08/13.46 new_lt9(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 30.08/13.46 new_compare25(x0, x1, True, x2, x3) 30.08/13.46 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.08/13.46 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.08/13.46 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.08/13.46 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.08/13.46 new_compare11(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_esEs22(x0, x1, ty_Integer) 30.08/13.46 new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 30.08/13.46 new_primMulNat0(Succ(x0), Succ(x1)) 30.08/13.46 new_esEs9(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_lt20(x0, x1, ty_Float) 30.08/13.46 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, ty_Int) 30.08/13.46 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.08/13.46 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs10(x0, x1, ty_Float) 30.08/13.46 new_primEqNat0(Zero, Zero) 30.08/13.46 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_esEs13(False, False) 30.08/13.46 new_compare10(x0, x1, x2, x3) 30.08/13.46 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_lt14(x0, x1) 30.08/13.46 new_compare113(x0, x1, True, x2, x3) 30.08/13.46 new_lt9(x0, x1, ty_Ordering) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.08/13.46 new_esEs12(Char(x0), Char(x1)) 30.08/13.46 new_esEs22(x0, x1, ty_Char) 30.08/13.46 new_not(False) 30.08/13.46 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_ltEs8(x0, x1, ty_Int) 30.08/13.46 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.08/13.46 new_compare6(x0, x1, x2, x3) 30.08/13.46 new_ltEs9(x0, x1) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 30.08/13.46 new_esEs10(x0, x1, ty_Bool) 30.08/13.46 new_ltEs8(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_compare0([], :(x0, x1), x2) 30.08/13.46 new_ltEs19(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs21(x0, x1, ty_@0) 30.08/13.46 new_lt13(x0, x1, x2) 30.08/13.46 new_compare11(x0, x1, ty_Char) 30.08/13.46 new_esEs22(x0, x1, ty_Int) 30.08/13.46 new_esEs24(x0, x1, ty_@0) 30.08/13.46 new_ltEs6(True, False) 30.08/13.46 new_esEs10(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_ltEs6(False, True) 30.08/13.46 new_esEs9(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs14(Double(x0, x1), Double(x2, x3)) 30.08/13.46 new_lt7(x0, x1) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, ty_Float) 30.08/13.46 new_ltEs12(Just(x0), Nothing, x1) 30.08/13.46 new_esEs21(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_lt19(x0, x1) 30.08/13.46 new_esEs29(x0, x1, ty_Ordering) 30.08/13.46 new_esEs10(x0, x1, ty_Int) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.08/13.46 new_ltEs12(Nothing, Just(x0), x1) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 30.08/13.46 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.08/13.46 new_lt18(x0, x1, x2, x3) 30.08/13.46 new_primCmpNat0(Zero, Succ(x0)) 30.08/13.46 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.08/13.46 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.08/13.46 new_ltEs20(x0, x1, ty_Integer) 30.08/13.46 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.08/13.46 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.08/13.46 new_esEs28(x0, x1, ty_Ordering) 30.08/13.46 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.08/13.46 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.08/13.46 new_esEs25(x0, x1, ty_Double) 30.08/13.46 new_ltEs8(x0, x1, ty_Char) 30.08/13.46 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.08/13.46 new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.08/13.46 new_ltEs20(x0, x1, ty_Ordering) 30.08/13.46 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_compare11(x0, x1, ty_Bool) 30.08/13.46 new_ltEs19(x0, x1, ty_Float) 30.08/13.46 new_esEs24(x0, x1, ty_Double) 30.08/13.46 new_primCmpNat0(Zero, Zero) 30.08/13.46 new_compare24(x0, x1, True) 30.08/13.46 new_esEs17(:(x0, x1), :(x2, x3), x4) 30.08/13.46 30.08/13.46 We have to consider all minimal (P,Q,R)-chains. 30.08/13.46 ---------------------------------------- 30.08/13.46 30.08/13.46 (30) TransformationProof (EQUIVALENT) 30.08/13.46 By rewriting [LPAR04] the rule new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare27(Just(xwv400), Nothing, False, h), GT), h, ba) at position [5,0] we obtained the following new rules [LPAR04]: 30.08/13.46 30.08/13.46 (new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(GT, GT), h, ba),new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(GT, GT), h, ba)) 30.08/13.46 30.08/13.46 30.08/13.46 ---------------------------------------- 30.08/13.46 30.08/13.46 (31) 30.08/13.46 Obligation: 30.08/13.46 Q DP problem: 30.08/13.46 The TRS P consists of the following rules: 30.08/13.46 30.08/13.46 new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba) -> new_delFromFM(xwv34, Just(xwv400), h, ba) 30.08/13.46 new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, False, h, ba) -> new_delFromFM11(xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare27(Just(xwv400), Nothing, new_esEs5(Just(xwv400), Nothing, h), h), LT), h, ba) 30.08/13.46 new_delFromFM11(xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba) -> new_delFromFM(xwv33, Just(xwv400), h, ba) 30.08/13.46 new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare27(Just(xwv400), Just(xwv300), new_esEs29(xwv400, xwv300, h), h), GT), h, ba) 30.08/13.46 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bb, bc) -> new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs8(new_compare27(Just(xwv18), Just(xwv13), new_esEs5(Just(xwv18), Just(xwv13), bb), bb), LT), bb, bc) 30.08/13.46 new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv16, Just(xwv18), bb, bc) 30.08/13.46 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv17, Just(xwv18), bb, bc) 30.08/13.46 new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(GT, GT), h, ba) 30.08/13.46 30.08/13.46 The TRS R consists of the following rules: 30.08/13.46 30.08/13.46 new_ltEs4(xwv2800, xwv2900, cb) -> new_fsEs(new_compare8(xwv2800, xwv2900, cb)) 30.08/13.46 new_lt7(xwv28000, xwv29000) -> new_esEs8(new_compare9(xwv28000, xwv29000), LT) 30.08/13.46 new_primCmpInt(Neg(Succ(xwv2800)), Pos(xwv290)) -> LT 30.08/13.46 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.08/13.46 new_lt18(xwv28000, xwv29000, cd, ce) -> new_esEs8(new_compare10(xwv28000, xwv29000, cd, ce), LT) 30.08/13.46 new_lt20(xwv28000, xwv29000, ty_Float) -> new_lt15(xwv28000, xwv29000) 30.08/13.46 new_esEs23(xwv4001, xwv3001, app(ty_[], bfg)) -> new_esEs17(xwv4001, xwv3001, bfg) 30.08/13.46 new_primPlusNat0(Zero, Zero) -> Zero 30.08/13.46 new_esEs25(xwv4000, xwv3000, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs6(xwv4000, xwv3000, caa, cab, cac) 30.08/13.46 new_pePe(True, xwv138) -> True 30.08/13.46 new_esEs22(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs7(xwv28002, xwv29002, he, hf, hg) 30.08/13.46 new_lt4(xwv28000, xwv29000, bd, be) -> new_esEs8(new_compare6(xwv28000, xwv29000, bd, be), LT) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Int) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.46 new_compare112(xwv125, xwv126, True, caf) -> LT 30.08/13.46 new_lt20(xwv28000, xwv29000, ty_Ordering) -> new_lt17(xwv28000, xwv29000) 30.08/13.46 new_esEs29(xwv400, xwv300, ty_Char) -> new_esEs12(xwv400, xwv300) 30.08/13.46 new_esEs10(xwv28001, xwv29001, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs6(xwv28001, xwv29001, gc, gd, ge) 30.08/13.46 new_compare10(xwv28000, xwv29000, cd, ce) -> new_compare23(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, cd, ce), cd, ce) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_@0) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, app(app(ty_@2, cah), cba)) -> new_ltEs11(xwv2800, xwv2900, cah, cba) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, ty_Integer) -> new_ltEs18(xwv2800, xwv2900) 30.08/13.46 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.08/13.46 new_primCmpInt(Pos(Zero), Neg(Succ(xwv2900))) -> GT 30.08/13.46 new_compare14(xwv28000, xwv29000) -> new_compare26(xwv28000, xwv29000, new_esEs13(xwv28000, xwv29000)) 30.08/13.46 new_esEs24(xwv4002, xwv3002, ty_Int) -> new_esEs11(xwv4002, xwv3002) 30.08/13.46 new_esEs24(xwv4002, xwv3002, ty_Ordering) -> new_esEs8(xwv4002, xwv3002) 30.08/13.46 new_ltEs14(xwv2800, xwv2900) -> new_fsEs(new_compare17(xwv2800, xwv2900)) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, app(ty_[], cbf)) -> new_ltEs5(xwv28001, xwv29001, cbf) 30.08/13.46 new_primCmpInt(Neg(Succ(xwv2800)), Neg(xwv290)) -> new_primCmpNat0(xwv290, Succ(xwv2800)) 30.08/13.46 new_compare113(xwv28000, xwv29000, False, cd, ce) -> GT 30.08/13.46 new_lt9(xwv28000, xwv29000, app(ty_[], eg)) -> new_lt16(xwv28000, xwv29000, eg) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.46 new_lt8(xwv28001, xwv29001, app(app(ty_@2, fg), fh)) -> new_lt4(xwv28001, xwv29001, fg, fh) 30.08/13.46 new_primMulNat0(Succ(xwv400100), Succ(xwv300000)) -> new_primPlusNat1(new_primMulNat0(xwv400100, Succ(xwv300000)), xwv300000) 30.08/13.46 new_lt8(xwv28001, xwv29001, app(app(ty_Either, gf), gg)) -> new_lt18(xwv28001, xwv29001, gf, gg) 30.08/13.46 new_compare15(xwv28000, xwv29000, cbb) -> new_compare27(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, cbb), cbb) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.46 new_esEs28(xwv28000, xwv29000, app(app(ty_Either, cd), ce)) -> new_esEs7(xwv28000, xwv29000, cd, ce) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Ordering, cce) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.46 new_compare26(xwv28000, xwv29000, True) -> EQ 30.08/13.46 new_esEs10(xwv28001, xwv29001, ty_Char) -> new_esEs12(xwv28001, xwv29001) 30.08/13.46 new_compare18(xwv28000, xwv29000) -> new_compare24(xwv28000, xwv29000, new_esEs8(xwv28000, xwv29000)) 30.08/13.46 new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False 30.08/13.46 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 30.08/13.46 new_esEs8(GT, GT) -> True 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(xwv4000, xwv3000, dcd, dce, dcf) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Ratio, cge)) -> new_esEs19(xwv4000, xwv3000, cge) 30.08/13.46 new_esEs9(xwv28000, xwv29000, app(ty_Ratio, ff)) -> new_esEs19(xwv28000, xwv29000, ff) 30.08/13.46 new_fsEs(xwv131) -> new_not(new_esEs8(xwv131, GT)) 30.08/13.46 new_esEs23(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 30.08/13.46 new_compare16(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.46 new_compare16(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Float, cce) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.46 new_esEs29(xwv400, xwv300, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs6(xwv400, xwv300, bda, bdb, bdc) 30.08/13.46 new_esEs24(xwv4002, xwv3002, app(app(ty_@2, bgc), bgd)) -> new_esEs4(xwv4002, xwv3002, bgc, bgd) 30.08/13.46 new_compare17(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.46 new_lt12(xwv28000, xwv29000) -> new_esEs8(new_compare14(xwv28000, xwv29000), LT) 30.08/13.46 new_esEs8(EQ, EQ) -> True 30.08/13.46 new_esEs24(xwv4002, xwv3002, ty_Bool) -> new_esEs13(xwv4002, xwv3002) 30.08/13.46 new_primEqNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, ty_Bool) -> new_ltEs6(xwv2800, xwv2900) 30.08/13.46 new_esEs25(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, app(app(ty_@2, cbc), cbd)) -> new_ltEs11(xwv28001, xwv29001, cbc, cbd) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Int) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.46 new_not(True) -> False 30.08/13.46 new_esEs24(xwv4002, xwv3002, ty_Integer) -> new_esEs18(xwv4002, xwv3002) 30.08/13.46 new_compare11(xwv28000, xwv29000, ty_Integer) -> new_compare19(xwv28000, xwv29000) 30.08/13.46 new_primCompAux00(xwv160, LT) -> LT 30.08/13.46 new_primCmpNat0(Zero, Zero) -> EQ 30.08/13.46 new_esEs21(xwv4001, xwv3001, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs6(xwv4001, xwv3001, bce, bcf, bcg) 30.08/13.46 new_lt13(xwv28000, xwv29000, cbb) -> new_esEs8(new_compare15(xwv28000, xwv29000, cbb), LT) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, ty_Bool) -> new_ltEs6(xwv28001, xwv29001) 30.08/13.46 new_compare115(xwv28000, xwv29000, True, bf, bg, bh) -> LT 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Double) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, app(app(app(ty_@3, cbg), cbh), cca)) -> new_ltEs7(xwv28001, xwv29001, cbg, cbh, cca) 30.08/13.46 new_esEs22(xwv4000, xwv3000, app(ty_Ratio, bea)) -> new_esEs19(xwv4000, xwv3000, bea) 30.08/13.46 new_esEs29(xwv400, xwv300, ty_Int) -> new_esEs11(xwv400, xwv300) 30.08/13.46 new_compare27(Nothing, Nothing, False, cff) -> LT 30.08/13.46 new_esEs20(xwv4000, xwv3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs6(xwv4000, xwv3000, bbc, bbd, bbe) 30.08/13.46 new_esEs20(xwv4000, xwv3000, app(app(ty_Either, baf), bag)) -> new_esEs7(xwv4000, xwv3000, baf, bag) 30.08/13.46 new_esEs28(xwv28000, xwv29000, ty_Bool) -> new_esEs13(xwv28000, xwv29000) 30.08/13.46 new_ltEs16(GT, EQ) -> False 30.08/13.46 new_esEs29(xwv400, xwv300, ty_Integer) -> new_esEs18(xwv400, xwv300) 30.08/13.46 new_esEs4(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bac, bad) -> new_asAs(new_esEs20(xwv4000, xwv3000, bac), new_esEs21(xwv4001, xwv3001, bad)) 30.08/13.46 new_esEs10(xwv28001, xwv29001, ty_Ordering) -> new_esEs8(xwv28001, xwv29001) 30.08/13.46 new_compare27(xwv280, xwv290, True, cff) -> EQ 30.08/13.46 new_compare11(xwv28000, xwv29000, ty_Int) -> new_compare12(xwv28000, xwv29000) 30.08/13.46 new_ltEs17(Left(xwv28000), Right(xwv29000), cdh, cce) -> True 30.08/13.46 new_primEqNat0(Succ(xwv40000), Zero) -> False 30.08/13.46 new_primEqNat0(Zero, Succ(xwv30000)) -> False 30.08/13.46 new_lt9(xwv28000, xwv29000, app(ty_Maybe, ef)) -> new_lt13(xwv28000, xwv29000, ef) 30.08/13.46 new_esEs28(xwv28000, xwv29000, ty_Int) -> new_esEs11(xwv28000, xwv29000) 30.08/13.46 new_esEs29(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_@0) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.46 new_lt8(xwv28001, xwv29001, app(app(app(ty_@3, gc), gd), ge)) -> new_lt5(xwv28001, xwv29001, gc, gd, ge) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, app(ty_[], hd)) -> new_ltEs5(xwv28002, xwv29002, hd) 30.08/13.46 new_lt20(xwv28000, xwv29000, ty_Integer) -> new_lt19(xwv28000, xwv29000) 30.08/13.46 new_primCompAux00(xwv160, GT) -> GT 30.08/13.46 new_ltEs8(xwv28002, xwv29002, app(ty_Ratio, bab)) -> new_ltEs4(xwv28002, xwv29002, bab) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.46 new_compare11(xwv28000, xwv29000, ty_Bool) -> new_compare14(xwv28000, xwv29000) 30.08/13.46 new_lt9(xwv28000, xwv29000, app(app(ty_@2, ed), ee)) -> new_lt4(xwv28000, xwv29000, ed, ee) 30.08/13.46 new_esEs20(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.46 new_esEs23(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.46 new_ltEs6(True, True) -> True 30.08/13.46 new_primCmpInt(Pos(Succ(xwv2800)), Neg(xwv290)) -> GT 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(ty_Either, ceh), cfa)) -> new_ltEs17(xwv28000, xwv29000, ceh, cfa) 30.08/13.46 new_esEs20(xwv4000, xwv3000, app(app(ty_@2, bah), bba)) -> new_esEs4(xwv4000, xwv3000, bah, bba) 30.08/13.46 new_ltEs16(LT, LT) -> True 30.08/13.46 new_ltEs19(xwv28001, xwv29001, ty_Float) -> new_ltEs14(xwv28001, xwv29001) 30.08/13.46 new_compare11(xwv28000, xwv29000, ty_Char) -> new_compare13(xwv28000, xwv29000) 30.08/13.46 new_esEs23(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.46 new_compare110(xwv28000, xwv29000, True, bd, be) -> LT 30.08/13.46 new_lt9(xwv28000, xwv29000, app(app(ty_Either, fc), fd)) -> new_lt18(xwv28000, xwv29000, fc, fd) 30.08/13.46 new_esEs29(xwv400, xwv300, ty_Float) -> new_esEs15(xwv400, xwv300) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, ty_Integer) -> new_ltEs18(xwv28001, xwv29001) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, ty_Ordering) -> new_ltEs16(xwv28002, xwv29002) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Bool, cce) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, ty_Float) -> new_ltEs14(xwv2800, xwv2900) 30.08/13.46 new_lt17(xwv28000, xwv29000) -> new_esEs8(new_compare18(xwv28000, xwv29000), LT) 30.08/13.46 new_primCmpNat0(Zero, Succ(xwv2900)) -> LT 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_[], ced)) -> new_ltEs5(xwv28000, xwv29000, ced) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, dbb), dbc), dbd), cfe) -> new_esEs6(xwv4000, xwv3000, dbb, dbc, dbd) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs7(xwv2800, xwv2900, ea, eb, ec) 30.08/13.46 new_esEs22(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.46 new_esEs28(xwv28000, xwv29000, ty_Char) -> new_esEs12(xwv28000, xwv29000) 30.08/13.46 new_esEs28(xwv28000, xwv29000, ty_Integer) -> new_esEs18(xwv28000, xwv29000) 30.08/13.46 new_ltEs10(xwv2800, xwv2900) -> new_fsEs(new_compare13(xwv2800, xwv2900)) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Double, cfe) -> new_esEs14(xwv4000, xwv3000) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, ty_Double) -> new_ltEs13(xwv28002, xwv29002) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, app(ty_Ratio, ccd)) -> new_ltEs4(xwv28001, xwv29001, ccd) 30.08/13.46 new_sr(Integer(xwv280000), Integer(xwv290010)) -> Integer(new_primMulInt(xwv280000, xwv290010)) 30.08/13.46 new_primCmpNat0(Succ(xwv2800), Zero) -> GT 30.08/13.46 new_pePe(False, xwv138) -> xwv138 30.08/13.46 new_compare11(xwv28000, xwv29000, app(ty_Maybe, da)) -> new_compare15(xwv28000, xwv29000, da) 30.08/13.46 new_esEs23(xwv4001, xwv3001, ty_Bool) -> new_esEs13(xwv4001, xwv3001) 30.08/13.46 new_esEs9(xwv28000, xwv29000, app(ty_Maybe, ef)) -> new_esEs5(xwv28000, xwv29000, ef) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(ty_@2, dag), dah), cfe) -> new_esEs4(xwv4000, xwv3000, dag, dah) 30.08/13.46 new_ltEs13(xwv2800, xwv2900) -> new_fsEs(new_compare16(xwv2800, xwv2900)) 30.08/13.46 new_compare25(xwv28000, xwv29000, True, bd, be) -> EQ 30.08/13.46 new_ltEs8(xwv28002, xwv29002, ty_Integer) -> new_ltEs18(xwv28002, xwv29002) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.46 new_esEs10(xwv28001, xwv29001, app(app(ty_Either, gf), gg)) -> new_esEs7(xwv28001, xwv29001, gf, gg) 30.08/13.46 new_lt20(xwv28000, xwv29000, ty_Char) -> new_lt11(xwv28000, xwv29000) 30.08/13.46 new_ltEs16(LT, GT) -> True 30.08/13.46 new_lt8(xwv28001, xwv29001, app(ty_[], gb)) -> new_lt16(xwv28001, xwv29001, gb) 30.08/13.46 new_esEs22(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.46 new_lt9(xwv28000, xwv29000, ty_Int) -> new_lt10(xwv28000, xwv29000) 30.08/13.46 new_esEs25(xwv4000, xwv3000, app(ty_Ratio, bhh)) -> new_esEs19(xwv4000, xwv3000, bhh) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_Maybe, cch), cce) -> new_ltEs12(xwv28000, xwv29000, cch) 30.08/13.46 new_esEs17([], [], bhb) -> True 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Double) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.46 new_ltEs16(LT, EQ) -> True 30.08/13.46 new_ltEs16(EQ, LT) -> False 30.08/13.46 new_compare23(xwv28000, xwv29000, True, cd, ce) -> EQ 30.08/13.46 new_esEs8(LT, EQ) -> False 30.08/13.46 new_esEs8(EQ, LT) -> False 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.46 new_esEs21(xwv4001, xwv3001, app(app(ty_@2, bcb), bcc)) -> new_esEs4(xwv4001, xwv3001, bcb, bcc) 30.08/13.46 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 30.08/13.46 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 30.08/13.46 new_esEs28(xwv28000, xwv29000, ty_@0) -> new_esEs16(xwv28000, xwv29000) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, app(app(ty_Either, ccb), ccc)) -> new_ltEs17(xwv28001, xwv29001, ccb, ccc) 30.08/13.46 new_esEs21(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(xwv4000, xwv3000, cgf, cgg, cgh) 30.08/13.46 new_compare114(xwv28000, xwv29000, True) -> LT 30.08/13.46 new_ltEs16(GT, LT) -> False 30.08/13.46 new_esEs25(xwv4000, xwv3000, app(app(ty_@2, bhf), bhg)) -> new_esEs4(xwv4000, xwv3000, bhf, bhg) 30.08/13.46 new_esEs21(xwv4001, xwv3001, app(ty_Maybe, bbg)) -> new_esEs5(xwv4001, xwv3001, bbg) 30.08/13.46 new_esEs23(xwv4001, xwv3001, app(app(ty_Either, beg), beh)) -> new_esEs7(xwv4001, xwv3001, beg, beh) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Integer, cce) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.46 new_esEs5(Nothing, Nothing, cfc) -> True 30.08/13.46 new_ltEs20(xwv2800, xwv2900, app(app(ty_Either, cdh), cce)) -> new_ltEs17(xwv2800, xwv2900, cdh, cce) 30.08/13.46 new_ltEs6(False, False) -> True 30.08/13.46 new_esEs25(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.46 new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.46 new_esEs10(xwv28001, xwv29001, ty_Integer) -> new_esEs18(xwv28001, xwv29001) 30.08/13.46 new_lt8(xwv28001, xwv29001, app(ty_Maybe, ga)) -> new_lt13(xwv28001, xwv29001, ga) 30.08/13.46 new_esEs5(Nothing, Just(xwv3000), cfc) -> False 30.08/13.46 new_esEs5(Just(xwv4000), Nothing, cfc) -> False 30.08/13.46 new_primCmpInt(Neg(Zero), Pos(Succ(xwv2900))) -> LT 30.08/13.46 new_compare13(Char(xwv28000), Char(xwv29000)) -> new_primCmpNat0(xwv28000, xwv29000) 30.08/13.46 new_primMulInt(Pos(xwv40010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.46 new_esEs10(xwv28001, xwv29001, ty_Int) -> new_esEs11(xwv28001, xwv29001) 30.08/13.46 new_esEs20(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(ty_Either, dae), daf), cfe) -> new_esEs7(xwv4000, xwv3000, dae, daf) 30.08/13.46 new_esEs9(xwv28000, xwv29000, app(app(ty_@2, ed), ee)) -> new_esEs4(xwv28000, xwv29000, ed, ee) 30.08/13.46 new_esEs21(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.46 new_esEs9(xwv28000, xwv29000, ty_Ordering) -> new_esEs8(xwv28000, xwv29000) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(ty_Either, cde), cdf), cce) -> new_ltEs17(xwv28000, xwv29000, cde, cdf) 30.08/13.46 new_esEs24(xwv4002, xwv3002, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs6(xwv4002, xwv3002, bgf, bgg, bgh) 30.08/13.46 new_esEs10(xwv28001, xwv29001, app(app(ty_@2, fg), fh)) -> new_esEs4(xwv28001, xwv29001, fg, fh) 30.08/13.46 new_primMulNat0(Succ(xwv400100), Zero) -> Zero 30.08/13.46 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 30.08/13.46 new_ltEs8(xwv28002, xwv29002, ty_@0) -> new_ltEs15(xwv28002, xwv29002) 30.08/13.46 new_esEs18(Integer(xwv4000), Integer(xwv3000)) -> new_primEqInt(xwv4000, xwv3000) 30.08/13.46 new_esEs25(xwv4000, xwv3000, app(app(ty_Either, bhd), bhe)) -> new_esEs7(xwv4000, xwv3000, bhd, bhe) 30.08/13.46 new_compare11(xwv28000, xwv29000, app(app(ty_@2, cf), cg)) -> new_compare6(xwv28000, xwv29000, cf, cg) 30.08/13.46 new_esEs24(xwv4002, xwv3002, ty_Char) -> new_esEs12(xwv4002, xwv3002) 30.08/13.46 new_ltEs18(xwv2800, xwv2900) -> new_fsEs(new_compare19(xwv2800, xwv2900)) 30.08/13.46 new_esEs23(xwv4001, xwv3001, app(ty_Maybe, bef)) -> new_esEs5(xwv4001, xwv3001, bef) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Char) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.46 new_esEs20(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.46 new_lt9(xwv28000, xwv29000, ty_Ordering) -> new_lt17(xwv28000, xwv29000) 30.08/13.46 new_lt20(xwv28000, xwv29000, ty_Bool) -> new_lt12(xwv28000, xwv29000) 30.08/13.46 new_primPlusNat0(Succ(xwv33200), Zero) -> Succ(xwv33200) 30.08/13.46 new_primPlusNat0(Zero, Succ(xwv9700)) -> Succ(xwv9700) 30.08/13.46 new_esEs28(xwv28000, xwv29000, app(ty_[], cag)) -> new_esEs17(xwv28000, xwv29000, cag) 30.08/13.46 new_ltEs16(EQ, GT) -> True 30.08/13.46 new_esEs20(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.46 new_esEs17(:(xwv4000, xwv4001), :(xwv3000, xwv3001), bhb) -> new_asAs(new_esEs25(xwv4000, xwv3000, bhb), new_esEs17(xwv4001, xwv3001, bhb)) 30.08/13.46 new_ltEs16(EQ, EQ) -> True 30.08/13.46 new_lt8(xwv28001, xwv29001, ty_Double) -> new_lt14(xwv28001, xwv29001) 30.08/13.46 new_ltEs6(True, False) -> False 30.08/13.46 new_lt9(xwv28000, xwv29000, app(app(app(ty_@3, eh), fa), fb)) -> new_lt5(xwv28000, xwv29000, eh, fa, fb) 30.08/13.46 new_esEs8(LT, LT) -> True 30.08/13.46 new_compare19(Integer(xwv28000), Integer(xwv29000)) -> new_primCmpInt(xwv28000, xwv29000) 30.08/13.46 new_lt8(xwv28001, xwv29001, ty_Ordering) -> new_lt17(xwv28001, xwv29001) 30.08/13.46 new_compare111(xwv28000, xwv29000, True) -> LT 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, cdb), cdc), cdd), cce) -> new_ltEs7(xwv28000, xwv29000, cdb, cdc, cdd) 30.08/13.46 new_esEs10(xwv28001, xwv29001, ty_Float) -> new_esEs15(xwv28001, xwv29001) 30.08/13.46 new_esEs29(xwv400, xwv300, app(ty_[], bhb)) -> new_esEs17(xwv400, xwv300, bhb) 30.08/13.46 new_esEs22(xwv4000, xwv3000, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs6(xwv4000, xwv3000, beb, bec, bed) 30.08/13.46 new_esEs9(xwv28000, xwv29000, ty_Float) -> new_esEs15(xwv28000, xwv29000) 30.08/13.46 new_lt20(xwv28000, xwv29000, app(ty_Ratio, ca)) -> new_lt6(xwv28000, xwv29000, ca) 30.08/13.46 new_esEs9(xwv28000, xwv29000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs6(xwv28000, xwv29000, eh, fa, fb) 30.08/13.46 new_esEs21(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, app(app(ty_Either, hh), baa)) -> new_ltEs17(xwv28002, xwv29002, hh, baa) 30.08/13.46 new_compare23(xwv28000, xwv29000, False, cd, ce) -> new_compare113(xwv28000, xwv29000, new_ltEs17(xwv28000, xwv29000, cd, ce), cd, ce) 30.08/13.46 new_esEs13(True, True) -> True 30.08/13.46 new_ltEs20(xwv2800, xwv2900, ty_Double) -> new_ltEs13(xwv2800, xwv2900) 30.08/13.46 new_compare17(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.46 new_compare17(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.46 new_esEs28(xwv28000, xwv29000, ty_Double) -> new_esEs14(xwv28000, xwv29000) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, ty_Ordering) -> new_ltEs16(xwv2800, xwv2900) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, chf), chg), chh)) -> new_ltEs7(xwv28000, xwv29000, chf, chg, chh) 30.08/13.46 new_esEs20(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Char, cfe) -> new_esEs12(xwv4000, xwv3000) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Bool, cfe) -> new_esEs13(xwv4000, xwv3000) 30.08/13.46 new_esEs23(xwv4001, xwv3001, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs6(xwv4001, xwv3001, bfd, bfe, bff) 30.08/13.46 new_compare11(xwv28000, xwv29000, app(app(app(ty_@3, dc), dd), de)) -> new_compare7(xwv28000, xwv29000, dc, dd, de) 30.08/13.46 new_esEs25(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_Maybe, chd)) -> new_ltEs12(xwv28000, xwv29000, chd) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, ty_Float) -> new_ltEs14(xwv28002, xwv29002) 30.08/13.46 new_primMulInt(Neg(xwv40010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.46 new_compare24(xwv28000, xwv29000, False) -> new_compare114(xwv28000, xwv29000, new_ltEs16(xwv28000, xwv29000)) 30.08/13.46 new_primCmpInt(Pos(Zero), Pos(Succ(xwv2900))) -> new_primCmpNat0(Zero, Succ(xwv2900)) 30.08/13.46 new_esEs29(xwv400, xwv300, ty_Double) -> new_esEs14(xwv400, xwv300) 30.08/13.46 new_esEs10(xwv28001, xwv29001, app(ty_Maybe, ga)) -> new_esEs5(xwv28001, xwv29001, ga) 30.08/13.46 new_esEs25(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.46 new_esEs22(xwv4000, xwv3000, app(ty_Maybe, bdd)) -> new_esEs5(xwv4000, xwv3000, bdd) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, ty_Ordering) -> new_ltEs16(xwv28001, xwv29001) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_Ratio, dcc)) -> new_esEs19(xwv4000, xwv3000, dcc) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.46 new_lt9(xwv28000, xwv29000, ty_Double) -> new_lt14(xwv28000, xwv29000) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, ty_Double) -> new_ltEs13(xwv28001, xwv29001) 30.08/13.46 new_compare11(xwv28000, xwv29000, ty_Ordering) -> new_compare18(xwv28000, xwv29000) 30.08/13.46 new_esEs24(xwv4002, xwv3002, app(app(ty_Either, bga), bgb)) -> new_esEs7(xwv4002, xwv3002, bga, bgb) 30.08/13.46 new_compare114(xwv28000, xwv29000, False) -> GT 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Maybe, cfh)) -> new_esEs5(xwv4000, xwv3000, cfh) 30.08/13.46 new_esEs23(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, app(ty_Ratio, cb)) -> new_ltEs4(xwv2800, xwv2900, cb) 30.08/13.46 new_compare28(xwv28000, xwv29000, False, bf, bg, bh) -> new_compare115(xwv28000, xwv29000, new_ltEs7(xwv28000, xwv29000, bf, bg, bh), bf, bg, bh) 30.08/13.46 new_esEs23(xwv4001, xwv3001, app(app(ty_@2, bfa), bfb)) -> new_esEs4(xwv4001, xwv3001, bfa, bfb) 30.08/13.46 new_esEs21(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Int, cfe) -> new_esEs11(xwv4000, xwv3000) 30.08/13.46 new_compare113(xwv28000, xwv29000, True, cd, ce) -> LT 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_Ratio, cdg), cce) -> new_ltEs4(xwv28000, xwv29000, cdg) 30.08/13.46 new_esEs10(xwv28001, xwv29001, ty_@0) -> new_esEs16(xwv28001, xwv29001) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_[], che)) -> new_ltEs5(xwv28000, xwv29000, che) 30.08/13.46 new_primMulInt(Pos(xwv40010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.46 new_primMulInt(Neg(xwv40010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Ordering) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.46 new_esEs12(Char(xwv4000), Char(xwv3000)) -> new_primEqNat0(xwv4000, xwv3000) 30.08/13.46 new_esEs22(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.46 new_esEs22(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.46 new_esEs22(xwv4000, xwv3000, app(app(ty_@2, bdg), bdh)) -> new_esEs4(xwv4000, xwv3000, bdg, bdh) 30.08/13.46 new_lt9(xwv28000, xwv29000, ty_Integer) -> new_lt19(xwv28000, xwv29000) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Float) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.46 new_lt8(xwv28001, xwv29001, ty_@0) -> new_lt7(xwv28001, xwv29001) 30.08/13.46 new_lt9(xwv28000, xwv29000, app(ty_Ratio, ff)) -> new_lt6(xwv28000, xwv29000, ff) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, ty_Int) -> new_ltEs9(xwv28001, xwv29001) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(ty_@2, dca), dcb)) -> new_esEs4(xwv4000, xwv3000, dca, dcb) 30.08/13.46 new_lt19(xwv28000, xwv29000) -> new_esEs8(new_compare19(xwv28000, xwv29000), LT) 30.08/13.46 new_esEs24(xwv4002, xwv3002, ty_Double) -> new_esEs14(xwv4002, xwv3002) 30.08/13.46 new_esEs29(xwv400, xwv300, app(ty_Maybe, cfc)) -> new_esEs5(xwv400, xwv300, cfc) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(ty_@2, ccf), ccg), cce) -> new_ltEs11(xwv28000, xwv29000, ccf, ccg) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_Maybe, dbf)) -> new_esEs5(xwv4000, xwv3000, dbf) 30.08/13.46 new_esEs13(False, False) -> True 30.08/13.46 new_compare16(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.46 new_ltEs9(xwv2800, xwv2900) -> new_fsEs(new_compare12(xwv2800, xwv2900)) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.46 new_lt20(xwv28000, xwv29000, app(ty_Maybe, cbb)) -> new_lt13(xwv28000, xwv29000, cbb) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_Either, cga), cgb)) -> new_esEs7(xwv4000, xwv3000, cga, cgb) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Integer, cfe) -> new_esEs18(xwv4000, xwv3000) 30.08/13.46 new_ltEs7(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ea, eb, ec) -> new_pePe(new_lt9(xwv28000, xwv29000, ea), new_asAs(new_esEs9(xwv28000, xwv29000, ea), new_pePe(new_lt8(xwv28001, xwv29001, eb), new_asAs(new_esEs10(xwv28001, xwv29001, eb), new_ltEs8(xwv28002, xwv29002, ec))))) 30.08/13.46 new_esEs23(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 30.08/13.46 new_esEs26(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.46 new_compare6(xwv28000, xwv29000, bd, be) -> new_compare25(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, bd, be), bd, be) 30.08/13.46 new_lt20(xwv28000, xwv29000, ty_Int) -> new_lt10(xwv28000, xwv29000) 30.08/13.46 new_esEs24(xwv4002, xwv3002, app(ty_Ratio, bge)) -> new_esEs19(xwv4002, xwv3002, bge) 30.08/13.46 new_esEs29(xwv400, xwv300, ty_@0) -> new_esEs16(xwv400, xwv300) 30.08/13.46 new_compare0([], :(xwv29000, xwv29001), cc) -> LT 30.08/13.46 new_asAs(True, xwv64) -> xwv64 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Bool) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.46 new_compare11(xwv28000, xwv29000, ty_Double) -> new_compare16(xwv28000, xwv29000) 30.08/13.46 new_esEs25(xwv4000, xwv3000, app(ty_[], cad)) -> new_esEs17(xwv4000, xwv3000, cad) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(ty_@2, chb), chc)) -> new_ltEs11(xwv28000, xwv29000, chb, chc) 30.08/13.46 new_esEs10(xwv28001, xwv29001, app(ty_[], gb)) -> new_esEs17(xwv28001, xwv29001, gb) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, ty_@0) -> new_ltEs15(xwv2800, xwv2900) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.46 new_esEs14(Double(xwv4000, xwv4001), Double(xwv3000, xwv3001)) -> new_esEs11(new_sr0(xwv4000, xwv3001), new_sr0(xwv4001, xwv3000)) 30.08/13.46 new_lt16(xwv28000, xwv29000, cag) -> new_esEs8(new_compare0(xwv28000, xwv29000, cag), LT) 30.08/13.46 new_esEs20(xwv4000, xwv3000, app(ty_Maybe, bae)) -> new_esEs5(xwv4000, xwv3000, bae) 30.08/13.46 new_esEs16(@0, @0) -> True 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_@2, cgc), cgd)) -> new_esEs4(xwv4000, xwv3000, cgc, cgd) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.46 new_esEs22(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, ty_@0) -> new_ltEs15(xwv28001, xwv29001) 30.08/13.46 new_primCmpInt(Pos(Succ(xwv2800)), Pos(xwv290)) -> new_primCmpNat0(Succ(xwv2800), xwv290) 30.08/13.46 new_esEs9(xwv28000, xwv29000, app(ty_[], eg)) -> new_esEs17(xwv28000, xwv29000, eg) 30.08/13.46 new_primPlusNat1(xwv107, xwv300000) -> new_primPlusNat0(xwv107, Succ(xwv300000)) 30.08/13.46 new_lt9(xwv28000, xwv29000, ty_Char) -> new_lt11(xwv28000, xwv29000) 30.08/13.46 new_esEs9(xwv28000, xwv29000, ty_Int) -> new_esEs11(xwv28000, xwv29000) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_Maybe, dad), cfe) -> new_esEs5(xwv4000, xwv3000, dad) 30.08/13.46 new_primCompAux00(xwv160, EQ) -> xwv160 30.08/13.46 new_compare0([], [], cc) -> EQ 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.46 new_ltEs16(GT, GT) -> True 30.08/13.46 new_compare27(Nothing, Just(xwv2900), False, cff) -> LT 30.08/13.46 new_esEs28(xwv28000, xwv29000, ty_Float) -> new_esEs15(xwv28000, xwv29000) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Int, cce) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.46 new_compare27(Just(xwv2800), Just(xwv2900), False, cff) -> new_compare112(xwv2800, xwv2900, new_ltEs20(xwv2800, xwv2900, cff), cff) 30.08/13.46 new_esEs21(xwv4001, xwv3001, app(app(ty_Either, bbh), bca)) -> new_esEs7(xwv4001, xwv3001, bbh, bca) 30.08/13.46 new_primMulNat0(Zero, Zero) -> Zero 30.08/13.46 new_lt20(xwv28000, xwv29000, app(ty_[], cag)) -> new_lt16(xwv28000, xwv29000, cag) 30.08/13.46 new_lt14(xwv28000, xwv29000) -> new_esEs8(new_compare16(xwv28000, xwv29000), LT) 30.08/13.46 new_esEs23(xwv4001, xwv3001, ty_Char) -> new_esEs12(xwv4001, xwv3001) 30.08/13.46 new_esEs24(xwv4002, xwv3002, app(ty_Maybe, bfh)) -> new_esEs5(xwv4002, xwv3002, bfh) 30.08/13.46 new_lt8(xwv28001, xwv29001, ty_Char) -> new_lt11(xwv28001, xwv29001) 30.08/13.46 new_esEs10(xwv28001, xwv29001, ty_Double) -> new_esEs14(xwv28001, xwv29001) 30.08/13.46 new_compare111(xwv28000, xwv29000, False) -> GT 30.08/13.46 new_ltEs20(xwv2800, xwv2900, app(ty_Maybe, cfg)) -> new_ltEs12(xwv2800, xwv2900, cfg) 30.08/13.46 new_lt15(xwv28000, xwv29000) -> new_esEs8(new_compare17(xwv28000, xwv29000), LT) 30.08/13.46 new_compare9(@0, @0) -> EQ 30.08/13.46 new_compare115(xwv28000, xwv29000, False, bf, bg, bh) -> GT 30.08/13.46 new_esEs21(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 30.08/13.46 new_esEs22(xwv4000, xwv3000, app(app(ty_Either, bde), bdf)) -> new_esEs7(xwv4000, xwv3000, bde, bdf) 30.08/13.46 new_compare28(xwv28000, xwv29000, True, bf, bg, bh) -> EQ 30.08/13.46 new_esEs9(xwv28000, xwv29000, app(app(ty_Either, fc), fd)) -> new_esEs7(xwv28000, xwv29000, fc, fd) 30.08/13.46 new_esEs20(xwv4000, xwv3000, app(ty_[], bbf)) -> new_esEs17(xwv4000, xwv3000, bbf) 30.08/13.46 new_compare8(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Int) -> new_compare12(new_sr0(xwv28000, xwv29001), new_sr0(xwv29000, xwv28001)) 30.08/13.46 new_esEs22(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Integer) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, ty_Int) -> new_ltEs9(xwv28002, xwv29002) 30.08/13.46 new_esEs9(xwv28000, xwv29000, ty_Integer) -> new_esEs18(xwv28000, xwv29000) 30.08/13.46 new_esEs29(xwv400, xwv300, app(ty_Ratio, cae)) -> new_esEs19(xwv400, xwv300, cae) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_[], dcg)) -> new_esEs17(xwv4000, xwv3000, dcg) 30.08/13.46 new_esEs25(xwv4000, xwv3000, app(ty_Maybe, bhc)) -> new_esEs5(xwv4000, xwv3000, bhc) 30.08/13.46 new_primCompAux0(xwv28000, xwv29000, xwv148, cc) -> new_primCompAux00(xwv148, new_compare11(xwv28000, xwv29000, cc)) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.46 new_esEs22(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.46 new_lt9(xwv28000, xwv29000, ty_Float) -> new_lt15(xwv28000, xwv29000) 30.08/13.46 new_ltEs6(False, True) -> True 30.08/13.46 new_esEs9(xwv28000, xwv29000, ty_@0) -> new_esEs16(xwv28000, xwv29000) 30.08/13.46 new_compare25(xwv28000, xwv29000, False, bd, be) -> new_compare110(xwv28000, xwv29000, new_ltEs11(xwv28000, xwv29000, bd, be), bd, be) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Ordering, cfe) -> new_esEs8(xwv4000, xwv3000) 30.08/13.46 new_esEs20(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.46 new_esEs21(xwv4001, xwv3001, app(ty_[], bch)) -> new_esEs17(xwv4001, xwv3001, bch) 30.08/13.46 new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False 30.08/13.46 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Char, cce) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.46 new_esEs13(False, True) -> False 30.08/13.46 new_esEs13(True, False) -> False 30.08/13.46 new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.46 new_esEs28(xwv28000, xwv29000, app(ty_Ratio, ca)) -> new_esEs19(xwv28000, xwv29000, ca) 30.08/13.46 new_lt8(xwv28001, xwv29001, ty_Int) -> new_lt10(xwv28001, xwv29001) 30.08/13.46 new_compare11(xwv28000, xwv29000, ty_@0) -> new_compare9(xwv28000, xwv29000) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Bool) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Ordering) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.46 new_compare24(xwv28000, xwv29000, True) -> EQ 30.08/13.46 new_lt5(xwv28000, xwv29000, bf, bg, bh) -> new_esEs8(new_compare7(xwv28000, xwv29000, bf, bg, bh), LT) 30.08/13.46 new_lt20(xwv28000, xwv29000, ty_@0) -> new_lt7(xwv28000, xwv29000) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_[], dbe), cfe) -> new_esEs17(xwv4000, xwv3000, dbe) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_Ratio, cfb)) -> new_ltEs4(xwv28000, xwv29000, cfb) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, app(ty_Maybe, cbe)) -> new_ltEs12(xwv28001, xwv29001, cbe) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(ty_Either, dbg), dbh)) -> new_esEs7(xwv4000, xwv3000, dbg, dbh) 30.08/13.46 new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> False 30.08/13.46 new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> False 30.08/13.46 new_primCmpInt(Neg(Zero), Neg(Succ(xwv2900))) -> new_primCmpNat0(Succ(xwv2900), Zero) 30.08/13.46 new_esEs23(xwv4001, xwv3001, app(ty_Ratio, bfc)) -> new_esEs19(xwv4001, xwv3001, bfc) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_@0, cce) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.46 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.08/13.46 new_lt8(xwv28001, xwv29001, app(ty_Ratio, gh)) -> new_lt6(xwv28001, xwv29001, gh) 30.08/13.46 new_lt8(xwv28001, xwv29001, ty_Bool) -> new_lt12(xwv28001, xwv29001) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Char) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.46 new_esEs25(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.46 new_esEs28(xwv28000, xwv29000, app(ty_Maybe, cbb)) -> new_esEs5(xwv28000, xwv29000, cbb) 30.08/13.46 new_lt9(xwv28000, xwv29000, ty_@0) -> new_lt7(xwv28000, xwv29000) 30.08/13.46 new_lt11(xwv28000, xwv29000) -> new_esEs8(new_compare13(xwv28000, xwv29000), LT) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Double, cce) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.46 new_esEs23(xwv4001, xwv3001, ty_Double) -> new_esEs14(xwv4001, xwv3001) 30.08/13.46 new_lt20(xwv28000, xwv29000, ty_Double) -> new_lt14(xwv28000, xwv29000) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(ty_@2, cea), ceb)) -> new_ltEs11(xwv28000, xwv29000, cea, ceb) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, ty_Bool) -> new_ltEs6(xwv28002, xwv29002) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(ty_Either, daa), dab)) -> new_ltEs17(xwv28000, xwv29000, daa, dab) 30.08/13.46 new_esEs24(xwv4002, xwv3002, ty_Float) -> new_esEs15(xwv4002, xwv3002) 30.08/13.46 new_compare8(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Integer) -> new_compare19(new_sr(xwv28000, xwv29001), new_sr(xwv29000, xwv28001)) 30.08/13.46 new_esEs25(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.46 new_compare26(xwv28000, xwv29000, False) -> new_compare111(xwv28000, xwv29000, new_ltEs6(xwv28000, xwv29000)) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_[], cda), cce) -> new_ltEs5(xwv28000, xwv29000, cda) 30.08/13.46 new_not(False) -> True 30.08/13.46 new_esEs21(xwv4001, xwv3001, ty_Double) -> new_esEs14(xwv4001, xwv3001) 30.08/13.46 new_esEs21(xwv4001, xwv3001, ty_Bool) -> new_esEs13(xwv4001, xwv3001) 30.08/13.46 new_esEs24(xwv4002, xwv3002, app(ty_[], bha)) -> new_esEs17(xwv4002, xwv3002, bha) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_Ratio, dac)) -> new_ltEs4(xwv28000, xwv29000, dac) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_Maybe, cec)) -> new_ltEs12(xwv28000, xwv29000, cec) 30.08/13.46 new_esEs9(xwv28000, xwv29000, ty_Char) -> new_esEs12(xwv28000, xwv29000) 30.08/13.46 new_compare0(:(xwv28000, xwv28001), [], cc) -> GT 30.08/13.46 new_esEs8(LT, GT) -> False 30.08/13.46 new_esEs8(GT, LT) -> False 30.08/13.46 new_compare27(Just(xwv2800), Nothing, False, cff) -> GT 30.08/13.46 new_primPlusNat0(Succ(xwv33200), Succ(xwv9700)) -> Succ(Succ(new_primPlusNat0(xwv33200, xwv9700))) 30.08/13.46 new_esEs24(xwv4002, xwv3002, ty_@0) -> new_esEs16(xwv4002, xwv3002) 30.08/13.46 new_esEs27(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.46 new_esEs25(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.46 new_esEs21(xwv4001, xwv3001, ty_Char) -> new_esEs12(xwv4001, xwv3001) 30.08/13.46 new_compare16(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.46 new_compare11(xwv28000, xwv29000, ty_Float) -> new_compare17(xwv28000, xwv29000) 30.08/13.46 new_esEs6(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), bda, bdb, bdc) -> new_asAs(new_esEs22(xwv4000, xwv3000, bda), new_asAs(new_esEs23(xwv4001, xwv3001, bdb), new_esEs24(xwv4002, xwv3002, bdc))) 30.08/13.46 new_esEs9(xwv28000, xwv29000, ty_Bool) -> new_esEs13(xwv28000, xwv29000) 30.08/13.46 new_esEs27(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.46 new_sr0(xwv4001, xwv3000) -> new_primMulInt(xwv4001, xwv3000) 30.08/13.46 new_lt9(xwv28000, xwv29000, ty_Bool) -> new_lt12(xwv28000, xwv29000) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, ty_Char) -> new_ltEs10(xwv28001, xwv29001) 30.08/13.46 new_lt20(xwv28000, xwv29000, app(app(ty_Either, cd), ce)) -> new_lt18(xwv28000, xwv29000, cd, ce) 30.08/13.46 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.08/13.46 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.08/13.46 new_ltEs8(xwv28002, xwv29002, app(app(ty_@2, ha), hb)) -> new_ltEs11(xwv28002, xwv29002, ha, hb) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, ty_Char) -> new_ltEs10(xwv28002, xwv29002) 30.08/13.46 new_compare0(:(xwv28000, xwv28001), :(xwv29000, xwv29001), cc) -> new_primCompAux0(xwv28000, xwv29000, new_compare0(xwv28001, xwv29001, cc), cc) 30.08/13.46 new_lt20(xwv28000, xwv29000, app(app(ty_@2, bd), be)) -> new_lt4(xwv28000, xwv29000, bd, be) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), ty_@0, cfe) -> new_esEs16(xwv4000, xwv3000) 30.08/13.46 new_esEs22(xwv4000, xwv3000, app(ty_[], bee)) -> new_esEs17(xwv4000, xwv3000, bee) 30.08/13.46 new_compare11(xwv28000, xwv29000, app(ty_[], db)) -> new_compare0(xwv28000, xwv29000, db) 30.08/13.46 new_esEs10(xwv28001, xwv29001, app(ty_Ratio, gh)) -> new_esEs19(xwv28001, xwv29001, gh) 30.08/13.46 new_lt8(xwv28001, xwv29001, ty_Integer) -> new_lt19(xwv28001, xwv29001) 30.08/13.46 new_esEs9(xwv28000, xwv29000, ty_Double) -> new_esEs14(xwv28000, xwv29000) 30.08/13.46 new_esEs10(xwv28001, xwv29001, ty_Bool) -> new_esEs13(xwv28001, xwv29001) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_[], cha)) -> new_esEs17(xwv4000, xwv3000, cha) 30.08/13.46 new_lt6(xwv28000, xwv29000, ca) -> new_esEs8(new_compare8(xwv28000, xwv29000, ca), LT) 30.08/13.46 new_ltEs12(Nothing, Just(xwv29000), cfg) -> True 30.08/13.46 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.08/13.46 new_esEs21(xwv4001, xwv3001, app(ty_Ratio, bcd)) -> new_esEs19(xwv4001, xwv3001, bcd) 30.08/13.46 new_esEs28(xwv28000, xwv29000, app(app(ty_@2, bd), be)) -> new_esEs4(xwv28000, xwv29000, bd, be) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.46 new_primCmpNat0(Succ(xwv2800), Succ(xwv2900)) -> new_primCmpNat0(xwv2800, xwv2900) 30.08/13.46 new_ltEs15(xwv2800, xwv2900) -> new_fsEs(new_compare9(xwv2800, xwv2900)) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, app(ty_Maybe, hc)) -> new_ltEs12(xwv28002, xwv29002, hc) 30.08/13.46 new_lt8(xwv28001, xwv29001, ty_Float) -> new_lt15(xwv28001, xwv29001) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs7(xwv28000, xwv29000, cee, cef, ceg) 30.08/13.46 new_compare11(xwv28000, xwv29000, app(app(ty_Either, df), dg)) -> new_compare10(xwv28000, xwv29000, df, dg) 30.08/13.46 new_esEs28(xwv28000, xwv29000, ty_Ordering) -> new_esEs8(xwv28000, xwv29000) 30.08/13.46 new_compare12(xwv28, xwv29) -> new_primCmpInt(xwv28, xwv29) 30.08/13.46 new_ltEs12(Nothing, Nothing, cfg) -> True 30.08/13.46 new_ltEs20(xwv2800, xwv2900, ty_Char) -> new_ltEs10(xwv2800, xwv2900) 30.08/13.46 new_esEs19(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), cae) -> new_asAs(new_esEs26(xwv4000, xwv3000, cae), new_esEs27(xwv4001, xwv3001, cae)) 30.08/13.46 new_ltEs12(Just(xwv28000), Nothing, cfg) -> False 30.08/13.46 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.08/13.46 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.08/13.46 new_esEs29(xwv400, xwv300, app(app(ty_@2, bac), bad)) -> new_esEs4(xwv400, xwv300, bac, bad) 30.08/13.46 new_ltEs17(Right(xwv28000), Left(xwv29000), cdh, cce) -> False 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Float) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.46 new_ltEs5(xwv2800, xwv2900, cc) -> new_fsEs(new_compare0(xwv2800, xwv2900, cc)) 30.08/13.46 new_compare110(xwv28000, xwv29000, False, bd, be) -> GT 30.08/13.46 new_compare11(xwv28000, xwv29000, app(ty_Ratio, dh)) -> new_compare8(xwv28000, xwv29000, dh) 30.08/13.46 new_primEqNat0(Zero, Zero) -> True 30.08/13.46 new_ltEs20(xwv2800, xwv2900, ty_Int) -> new_ltEs9(xwv2800, xwv2900) 30.08/13.46 new_esEs20(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, app(ty_[], cc)) -> new_ltEs5(xwv2800, xwv2900, cc) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Float, cfe) -> new_esEs15(xwv4000, xwv3000) 30.08/13.46 new_esEs28(xwv28000, xwv29000, app(app(app(ty_@3, bf), bg), bh)) -> new_esEs6(xwv28000, xwv29000, bf, bg, bh) 30.08/13.46 new_esEs29(xwv400, xwv300, ty_Ordering) -> new_esEs8(xwv400, xwv300) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Integer) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.46 new_compare7(xwv28000, xwv29000, bf, bg, bh) -> new_compare28(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bf, bg, bh), bf, bg, bh) 30.08/13.46 new_asAs(False, xwv64) -> False 30.08/13.46 new_esEs17(:(xwv4000, xwv4001), [], bhb) -> False 30.08/13.46 new_esEs17([], :(xwv3000, xwv3001), bhb) -> False 30.08/13.46 new_esEs20(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.46 new_esEs29(xwv400, xwv300, app(app(ty_Either, cfd), cfe)) -> new_esEs7(xwv400, xwv300, cfd, cfe) 30.08/13.46 new_esEs26(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.46 new_esEs25(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.46 new_lt10(xwv280, xwv290) -> new_esEs8(new_compare12(xwv280, xwv290), LT) 30.08/13.46 new_esEs8(EQ, GT) -> False 30.08/13.46 new_esEs8(GT, EQ) -> False 30.08/13.46 new_compare112(xwv125, xwv126, False, caf) -> GT 30.08/13.46 new_esEs20(xwv4000, xwv3000, app(ty_Ratio, bbb)) -> new_esEs19(xwv4000, xwv3000, bbb) 30.08/13.46 new_lt20(xwv28000, xwv29000, app(app(app(ty_@3, bf), bg), bh)) -> new_lt5(xwv28000, xwv29000, bf, bg, bh) 30.08/13.46 new_compare17(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.46 new_esEs15(Float(xwv4000, xwv4001), Float(xwv3000, xwv3001)) -> new_esEs11(new_sr0(xwv4000, xwv3001), new_sr0(xwv4001, xwv3000)) 30.08/13.46 new_esEs7(Left(xwv4000), Right(xwv3000), cfd, cfe) -> False 30.08/13.46 new_esEs7(Right(xwv4000), Left(xwv3000), cfd, cfe) -> False 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_Ratio, dba), cfe) -> new_esEs19(xwv4000, xwv3000, dba) 30.08/13.46 new_esEs11(xwv400, xwv300) -> new_primEqInt(xwv400, xwv300) 30.08/13.46 new_ltEs11(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), cah, cba) -> new_pePe(new_lt20(xwv28000, xwv29000, cah), new_asAs(new_esEs28(xwv28000, xwv29000, cah), new_ltEs19(xwv28001, xwv29001, cba))) 30.08/13.46 30.08/13.46 The set Q consists of the following terms: 30.08/13.46 30.08/13.46 new_esEs29(x0, x1, ty_Integer) 30.08/13.46 new_compare11(x0, x1, ty_Ordering) 30.08/13.46 new_esEs8(EQ, EQ) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.08/13.46 new_esEs20(x0, x1, ty_Float) 30.08/13.46 new_lt16(x0, x1, x2) 30.08/13.46 new_esEs9(x0, x1, ty_@0) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.08/13.46 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_lt20(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_compare24(x0, x1, False) 30.08/13.46 new_esEs5(Just(x0), Just(x1), ty_Float) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) 30.08/13.46 new_compare11(x0, x1, ty_Double) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.08/13.46 new_compare26(x0, x1, False) 30.08/13.46 new_esEs18(Integer(x0), Integer(x1)) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.08/13.46 new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs9(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_compare112(x0, x1, False, x2) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) 30.08/13.46 new_pePe(False, x0) 30.08/13.46 new_compare11(x0, x1, app(ty_[], x2)) 30.08/13.46 new_compare11(x0, x1, ty_Int) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.08/13.46 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.08/13.46 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 30.08/13.46 new_sr(Integer(x0), Integer(x1)) 30.08/13.46 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_primEqInt(Pos(Zero), Pos(Zero)) 30.08/13.46 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.08/13.46 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), ty_@0, x2) 30.08/13.46 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_compare27(Nothing, Nothing, False, x0) 30.08/13.46 new_lt8(x0, x1, app(ty_[], x2)) 30.08/13.46 new_ltEs8(x0, x1, ty_Float) 30.08/13.46 new_compare13(Char(x0), Char(x1)) 30.08/13.46 new_lt20(x0, x1, ty_@0) 30.08/13.46 new_lt6(x0, x1, x2) 30.08/13.46 new_esEs23(x0, x1, ty_Float) 30.08/13.46 new_ltEs20(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs25(x0, x1, ty_Ordering) 30.08/13.46 new_ltEs15(x0, x1) 30.08/13.46 new_esEs9(x0, x1, ty_Integer) 30.08/13.46 new_ltEs19(x0, x1, ty_Bool) 30.08/13.46 new_esEs22(x0, x1, ty_Float) 30.08/13.46 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_esEs10(x0, x1, ty_Integer) 30.08/13.46 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.08/13.46 new_primEqInt(Neg(Zero), Neg(Zero)) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.08/13.46 new_ltEs8(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_lt20(x0, x1, ty_Integer) 30.08/13.46 new_ltEs16(GT, EQ) 30.08/13.46 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_ltEs16(EQ, GT) 30.08/13.46 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 30.08/13.46 new_compare12(x0, x1) 30.08/13.46 new_ltEs13(x0, x1) 30.08/13.46 new_primPlusNat0(Succ(x0), Succ(x1)) 30.08/13.46 new_compare11(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_ltEs8(x0, x1, ty_Integer) 30.08/13.46 new_primMulInt(Pos(x0), Neg(x1)) 30.08/13.46 new_primMulInt(Neg(x0), Pos(x1)) 30.08/13.46 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.08/13.46 new_esEs5(Nothing, Nothing, x0) 30.08/13.46 new_ltEs16(LT, LT) 30.08/13.46 new_primMulInt(Neg(x0), Neg(x1)) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) 30.08/13.46 new_esEs17([], [], x0) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, ty_Double) 30.08/13.46 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_esEs29(x0, x1, ty_@0) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.08/13.46 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_esEs9(x0, x1, ty_Char) 30.08/13.46 new_compare115(x0, x1, True, x2, x3, x4) 30.08/13.46 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_primEqNat0(Succ(x0), Succ(x1)) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.08/13.46 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs21(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs29(x0, x1, ty_Bool) 30.08/13.46 new_esEs29(x0, x1, ty_Float) 30.08/13.46 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_esEs22(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs9(x0, x1, ty_Int) 30.08/13.46 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 30.08/13.46 new_asAs(True, x0) 30.08/13.46 new_primEqInt(Pos(Zero), Neg(Zero)) 30.08/13.46 new_primEqInt(Neg(Zero), Pos(Zero)) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), ty_Float, x2) 30.08/13.46 new_esEs5(Just(x0), Just(x1), ty_Integer) 30.08/13.46 new_primCompAux00(x0, GT) 30.08/13.46 new_lt20(x0, x1, ty_Bool) 30.08/13.46 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.08/13.46 new_esEs27(x0, x1, ty_Integer) 30.08/13.46 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_compare111(x0, x1, False) 30.08/13.46 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_lt20(x0, x1, ty_Char) 30.08/13.46 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_esEs28(x0, x1, ty_Double) 30.08/13.46 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.08/13.46 new_ltEs20(x0, x1, ty_Float) 30.08/13.46 new_ltEs19(x0, x1, ty_Integer) 30.08/13.46 new_esEs17([], :(x0, x1), x2) 30.08/13.46 new_esEs29(x0, x1, ty_Char) 30.08/13.46 new_esEs28(x0, x1, ty_Int) 30.08/13.46 new_esEs9(x0, x1, ty_Bool) 30.08/13.46 new_lt15(x0, x1) 30.08/13.46 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 30.08/13.46 new_compare0(:(x0, x1), [], x2) 30.08/13.46 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_esEs21(x0, x1, ty_Integer) 30.08/13.46 new_esEs22(x0, x1, ty_@0) 30.08/13.46 new_compare14(x0, x1) 30.08/13.46 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_primCompAux00(x0, EQ) 30.08/13.46 new_fsEs(x0) 30.08/13.46 new_lt20(x0, x1, ty_Ordering) 30.08/13.46 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.08/13.46 new_primCmpNat0(Succ(x0), Zero) 30.08/13.46 new_ltEs8(x0, x1, ty_@0) 30.08/13.46 new_ltEs19(x0, x1, ty_Ordering) 30.08/13.46 new_compare111(x0, x1, True) 30.08/13.46 new_primCmpNat0(Succ(x0), Succ(x1)) 30.08/13.46 new_ltEs16(GT, GT) 30.08/13.46 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 30.08/13.46 new_ltEs5(x0, x1, x2) 30.08/13.46 new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_compare11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_esEs21(x0, x1, ty_Bool) 30.08/13.46 new_esEs5(Just(x0), Just(x1), ty_@0) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), ty_Double, x2) 30.08/13.46 new_ltEs16(LT, EQ) 30.08/13.46 new_ltEs16(EQ, LT) 30.08/13.46 new_compare11(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.08/13.46 new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.08/13.46 new_ltEs19(x0, x1, ty_Double) 30.08/13.46 new_esEs24(x0, x1, ty_Integer) 30.08/13.46 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 30.08/13.46 new_compare11(x0, x1, ty_@0) 30.08/13.46 new_compare26(x0, x1, True) 30.08/13.46 new_lt17(x0, x1) 30.08/13.46 new_esEs23(x0, x1, ty_Integer) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, ty_@0) 30.08/13.46 new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.08/13.46 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_lt8(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.08/13.46 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs8(GT, GT) 30.08/13.46 new_esEs9(x0, x1, ty_Float) 30.08/13.46 new_esEs20(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs8(LT, EQ) 30.08/13.46 new_esEs8(EQ, LT) 30.08/13.46 new_esEs20(x0, x1, ty_Bool) 30.08/13.46 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_compare28(x0, x1, True, x2, x3, x4) 30.08/13.46 new_compare19(Integer(x0), Integer(x1)) 30.08/13.46 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.08/13.46 new_primPlusNat0(Zero, Succ(x0)) 30.08/13.46 new_esEs25(x0, x1, ty_Int) 30.08/13.46 new_esEs24(x0, x1, ty_Float) 30.08/13.46 new_esEs10(x0, x1, ty_Double) 30.08/13.46 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.08/13.46 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.08/13.46 new_esEs13(False, True) 30.08/13.46 new_esEs13(True, False) 30.08/13.46 new_esEs24(x0, x1, ty_Bool) 30.08/13.46 new_compare113(x0, x1, False, x2, x3) 30.08/13.46 new_compare0(:(x0, x1), :(x2, x3), x4) 30.08/13.46 new_ltEs14(x0, x1) 30.08/13.46 new_esEs8(LT, LT) 30.08/13.46 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.08/13.46 new_lt9(x0, x1, ty_Float) 30.08/13.46 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.08/13.46 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.08/13.46 new_primEqNat0(Succ(x0), Zero) 30.08/13.46 new_esEs22(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_compare11(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_compare23(x0, x1, False, x2, x3) 30.08/13.46 new_esEs26(x0, x1, ty_Integer) 30.08/13.46 new_lt8(x0, x1, ty_Integer) 30.08/13.46 new_esEs10(x0, x1, ty_@0) 30.08/13.46 new_lt11(x0, x1) 30.08/13.46 new_ltEs6(False, False) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_esEs17(:(x0, x1), [], x2) 30.08/13.46 new_esEs25(x0, x1, ty_Bool) 30.08/13.46 new_ltEs19(x0, x1, ty_@0) 30.08/13.46 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.08/13.46 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.08/13.46 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_asAs(False, x0) 30.08/13.46 new_esEs27(x0, x1, ty_Int) 30.08/13.46 new_esEs10(x0, x1, app(ty_[], x2)) 30.08/13.46 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.08/13.46 new_ltEs8(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs25(x0, x1, ty_Char) 30.08/13.46 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.08/13.46 new_esEs24(x0, x1, ty_Int) 30.08/13.46 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_lt8(x0, x1, ty_Ordering) 30.08/13.46 new_ltEs8(x0, x1, ty_Double) 30.08/13.46 new_esEs16(@0, @0) 30.08/13.46 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs23(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs22(x0, x1, ty_Double) 30.08/13.46 new_esEs24(x0, x1, ty_Char) 30.08/13.46 new_esEs20(x0, x1, ty_Integer) 30.08/13.46 new_primMulInt(Pos(x0), Pos(x1)) 30.08/13.46 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_primPlusNat0(Succ(x0), Zero) 30.08/13.46 new_esEs21(x0, x1, ty_Float) 30.08/13.46 new_compare110(x0, x1, False, x2, x3) 30.08/13.46 new_esEs28(x0, x1, ty_Integer) 30.08/13.46 new_lt8(x0, x1, ty_@0) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs5(Just(x0), Just(x1), ty_Ordering) 30.08/13.46 new_ltEs16(EQ, EQ) 30.08/13.46 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.08/13.46 new_ltEs4(x0, x1, x2) 30.08/13.46 new_esEs20(x0, x1, ty_Ordering) 30.08/13.46 new_esEs23(x0, x1, ty_Int) 30.08/13.46 new_esEs20(x0, x1, ty_Double) 30.08/13.46 new_lt8(x0, x1, ty_Bool) 30.08/13.46 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 30.08/13.46 new_ltEs20(x0, x1, ty_Int) 30.08/13.46 new_esEs21(x0, x1, ty_Char) 30.08/13.46 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_primMulNat0(Zero, Zero) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.08/13.46 new_esEs24(x0, x1, app(ty_[], x2)) 30.08/13.46 new_compare114(x0, x1, False) 30.08/13.46 new_ltEs17(Left(x0), Right(x1), x2, x3) 30.08/13.46 new_ltEs17(Right(x0), Left(x1), x2, x3) 30.08/13.46 new_ltEs20(x0, x1, ty_Double) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) 30.08/13.46 new_esEs28(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_esEs22(x0, x1, ty_Ordering) 30.08/13.46 new_esEs11(x0, x1) 30.08/13.46 new_esEs21(x0, x1, ty_Int) 30.08/13.46 new_compare0([], [], x0) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 30.08/13.46 new_lt9(x0, x1, ty_Char) 30.08/13.46 new_esEs23(x0, x1, ty_Ordering) 30.08/13.46 new_ltEs18(x0, x1) 30.08/13.46 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 30.08/13.46 new_compare9(@0, @0) 30.08/13.46 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.08/13.46 new_esEs5(Nothing, Just(x0), x1) 30.08/13.46 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_compare27(Nothing, Just(x0), False, x1) 30.08/13.46 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.08/13.46 new_esEs21(x0, x1, ty_Double) 30.08/13.46 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_lt9(x0, x1, ty_Int) 30.08/13.46 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.08/13.46 new_lt9(x0, x1, ty_@0) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 30.08/13.46 new_esEs5(Just(x0), Just(x1), ty_Int) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.08/13.46 new_esEs5(Just(x0), Just(x1), ty_Double) 30.08/13.46 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 30.08/13.46 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_esEs5(Just(x0), Just(x1), ty_Char) 30.08/13.46 new_esEs25(x0, x1, ty_Integer) 30.08/13.46 new_esEs29(x0, x1, app(ty_[], x2)) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.08/13.46 new_compare11(x0, x1, ty_Float) 30.08/13.46 new_esEs25(x0, x1, ty_Float) 30.08/13.46 new_lt4(x0, x1, x2, x3) 30.08/13.46 new_primPlusNat0(Zero, Zero) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.08/13.46 new_lt8(x0, x1, ty_Char) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) 30.08/13.46 new_primEqNat0(Zero, Succ(x0)) 30.08/13.46 new_not(True) 30.08/13.46 new_lt9(x0, x1, ty_Bool) 30.08/13.46 new_lt9(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_esEs25(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs20(x0, x1, ty_Char) 30.08/13.46 new_esEs8(EQ, GT) 30.08/13.46 new_esEs8(GT, EQ) 30.08/13.46 new_compare115(x0, x1, False, x2, x3, x4) 30.08/13.46 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_lt12(x0, x1) 30.08/13.46 new_esEs28(x0, x1, ty_@0) 30.08/13.46 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.08/13.46 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.08/13.46 new_esEs15(Float(x0, x1), Float(x2, x3)) 30.08/13.46 new_lt10(x0, x1) 30.08/13.46 new_esEs28(x0, x1, ty_Bool) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 30.08/13.46 new_esEs10(x0, x1, ty_Ordering) 30.08/13.46 new_esEs24(x0, x1, ty_Ordering) 30.08/13.46 new_esEs13(True, True) 30.08/13.46 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_lt9(x0, x1, ty_Double) 30.08/13.46 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.08/13.46 new_esEs28(x0, x1, ty_Float) 30.08/13.46 new_ltEs20(x0, x1, ty_Char) 30.08/13.46 new_esEs10(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_primCompAux00(x0, LT) 30.08/13.46 new_esEs23(x0, x1, ty_@0) 30.08/13.46 new_primMulNat0(Zero, Succ(x0)) 30.08/13.46 new_lt20(x0, x1, ty_Double) 30.08/13.46 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.08/13.46 new_esEs21(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_esEs21(x0, x1, ty_Ordering) 30.08/13.46 new_compare18(x0, x1) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.08/13.46 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.08/13.46 new_ltEs20(x0, x1, ty_@0) 30.08/13.46 new_esEs22(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_ltEs8(x0, x1, ty_Ordering) 30.08/13.46 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_esEs20(x0, x1, ty_Int) 30.08/13.46 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_esEs23(x0, x1, ty_Bool) 30.08/13.46 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.08/13.46 new_ltEs16(LT, GT) 30.08/13.46 new_ltEs16(GT, LT) 30.08/13.46 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_primPlusNat1(x0, x1) 30.08/13.46 new_lt5(x0, x1, x2, x3, x4) 30.08/13.46 new_ltEs10(x0, x1) 30.08/13.46 new_lt8(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.08/13.46 new_ltEs6(True, True) 30.08/13.46 new_esEs29(x0, x1, ty_Double) 30.08/13.46 new_esEs5(Just(x0), Nothing, x1) 30.08/13.46 new_esEs28(x0, x1, ty_Char) 30.08/13.46 new_compare25(x0, x1, False, x2, x3) 30.08/13.46 new_compare28(x0, x1, False, x2, x3, x4) 30.08/13.46 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_lt8(x0, x1, ty_Int) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.08/13.46 new_esEs29(x0, x1, ty_Int) 30.08/13.46 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_compare27(x0, x1, True, x2) 30.08/13.46 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_esEs23(x0, x1, ty_Char) 30.08/13.46 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.08/13.46 new_esEs26(x0, x1, ty_Int) 30.08/13.46 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.08/13.46 new_compare15(x0, x1, x2) 30.08/13.46 new_esEs23(x0, x1, ty_Double) 30.08/13.46 new_compare27(Just(x0), Just(x1), False, x2) 30.08/13.46 new_esEs9(x0, x1, ty_Double) 30.08/13.46 new_lt8(x0, x1, ty_Double) 30.08/13.46 new_compare110(x0, x1, True, x2, x3) 30.08/13.46 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 30.08/13.46 new_esEs7(Left(x0), Right(x1), x2, x3) 30.08/13.46 new_esEs7(Right(x0), Left(x1), x2, x3) 30.08/13.46 new_esEs10(x0, x1, ty_Char) 30.08/13.46 new_lt8(x0, x1, ty_Float) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), ty_Int, x2) 30.08/13.46 new_primMulNat0(Succ(x0), Zero) 30.08/13.46 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, ty_Char) 30.08/13.46 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 30.08/13.46 new_esEs20(x0, x1, ty_@0) 30.08/13.46 new_esEs22(x0, x1, ty_Bool) 30.08/13.46 new_esEs9(x0, x1, ty_Ordering) 30.08/13.46 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_pePe(True, x0) 30.08/13.46 new_primCompAux0(x0, x1, x2, x3) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) 30.08/13.46 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_compare7(x0, x1, x2, x3, x4) 30.08/13.46 new_compare114(x0, x1, True) 30.08/13.46 new_esEs8(LT, GT) 30.08/13.46 new_esEs8(GT, LT) 30.08/13.46 new_compare112(x0, x1, True, x2) 30.08/13.46 new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.08/13.46 new_ltEs19(x0, x1, ty_Int) 30.08/13.46 new_esEs5(Just(x0), Just(x1), ty_Bool) 30.08/13.46 new_ltEs8(x0, x1, ty_Bool) 30.08/13.46 new_lt20(x0, x1, ty_Int) 30.08/13.46 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.08/13.46 new_compare27(Just(x0), Nothing, False, x1) 30.08/13.46 new_compare11(x0, x1, ty_Integer) 30.08/13.46 new_ltEs12(Nothing, Nothing, x0) 30.08/13.46 new_ltEs19(x0, x1, ty_Char) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), ty_Char, x2) 30.08/13.46 new_lt9(x0, x1, app(ty_[], x2)) 30.08/13.46 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_lt9(x0, x1, ty_Integer) 30.08/13.46 new_esEs25(x0, x1, ty_@0) 30.08/13.46 new_compare23(x0, x1, True, x2, x3) 30.08/13.46 new_ltEs20(x0, x1, ty_Bool) 30.08/13.46 new_sr0(x0, x1) 30.08/13.46 new_lt9(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 30.08/13.46 new_compare25(x0, x1, True, x2, x3) 30.08/13.46 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.08/13.46 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.08/13.46 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.08/13.46 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.08/13.46 new_compare11(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_esEs22(x0, x1, ty_Integer) 30.08/13.46 new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 30.08/13.46 new_primMulNat0(Succ(x0), Succ(x1)) 30.08/13.46 new_esEs9(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_lt20(x0, x1, ty_Float) 30.08/13.46 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, ty_Int) 30.08/13.46 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.08/13.46 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs10(x0, x1, ty_Float) 30.08/13.46 new_primEqNat0(Zero, Zero) 30.08/13.46 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.46 new_esEs13(False, False) 30.08/13.46 new_compare10(x0, x1, x2, x3) 30.08/13.46 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_lt14(x0, x1) 30.08/13.46 new_compare113(x0, x1, True, x2, x3) 30.08/13.46 new_lt9(x0, x1, ty_Ordering) 30.08/13.46 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.08/13.46 new_esEs12(Char(x0), Char(x1)) 30.08/13.46 new_esEs22(x0, x1, ty_Char) 30.08/13.46 new_not(False) 30.08/13.46 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.46 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_ltEs8(x0, x1, ty_Int) 30.08/13.46 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.08/13.46 new_compare6(x0, x1, x2, x3) 30.08/13.46 new_ltEs9(x0, x1) 30.08/13.46 new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 30.08/13.46 new_esEs10(x0, x1, ty_Bool) 30.08/13.46 new_ltEs8(x0, x1, app(ty_Ratio, x2)) 30.08/13.46 new_compare0([], :(x0, x1), x2) 30.08/13.46 new_ltEs19(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs21(x0, x1, ty_@0) 30.08/13.46 new_lt13(x0, x1, x2) 30.08/13.46 new_compare11(x0, x1, ty_Char) 30.08/13.46 new_esEs22(x0, x1, ty_Int) 30.08/13.46 new_esEs24(x0, x1, ty_@0) 30.08/13.46 new_ltEs6(True, False) 30.08/13.46 new_esEs10(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_ltEs6(False, True) 30.08/13.46 new_esEs9(x0, x1, app(ty_[], x2)) 30.08/13.46 new_esEs14(Double(x0, x1), Double(x2, x3)) 30.08/13.46 new_lt7(x0, x1) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, ty_Float) 30.08/13.46 new_ltEs12(Just(x0), Nothing, x1) 30.08/13.46 new_esEs21(x0, x1, app(ty_Maybe, x2)) 30.08/13.46 new_lt19(x0, x1) 30.08/13.46 new_esEs29(x0, x1, ty_Ordering) 30.08/13.46 new_esEs10(x0, x1, ty_Int) 30.08/13.46 new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.08/13.46 new_ltEs12(Nothing, Just(x0), x1) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 30.08/13.46 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.08/13.46 new_lt18(x0, x1, x2, x3) 30.08/13.46 new_primCmpNat0(Zero, Succ(x0)) 30.08/13.46 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.08/13.46 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.08/13.46 new_ltEs20(x0, x1, ty_Integer) 30.08/13.46 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.08/13.46 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.08/13.46 new_esEs28(x0, x1, ty_Ordering) 30.08/13.46 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.08/13.46 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.08/13.46 new_esEs25(x0, x1, ty_Double) 30.08/13.46 new_ltEs8(x0, x1, ty_Char) 30.08/13.46 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 30.08/13.46 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.08/13.46 new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.08/13.46 new_ltEs20(x0, x1, ty_Ordering) 30.08/13.46 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.46 new_compare11(x0, x1, ty_Bool) 30.08/13.46 new_ltEs19(x0, x1, ty_Float) 30.08/13.46 new_esEs24(x0, x1, ty_Double) 30.08/13.46 new_primCmpNat0(Zero, Zero) 30.08/13.46 new_compare24(x0, x1, True) 30.08/13.46 new_esEs17(:(x0, x1), :(x2, x3), x4) 30.08/13.46 30.08/13.46 We have to consider all minimal (P,Q,R)-chains. 30.08/13.46 ---------------------------------------- 30.08/13.46 30.08/13.46 (32) DependencyGraphProof (EQUIVALENT) 30.08/13.46 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 2 less nodes. 30.08/13.46 ---------------------------------------- 30.08/13.46 30.08/13.46 (33) 30.08/13.46 Obligation: 30.08/13.46 Q DP problem: 30.08/13.46 The TRS P consists of the following rules: 30.08/13.46 30.08/13.46 new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare27(Just(xwv400), Just(xwv300), new_esEs29(xwv400, xwv300, h), h), GT), h, ba) 30.08/13.46 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bb, bc) -> new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs8(new_compare27(Just(xwv18), Just(xwv13), new_esEs5(Just(xwv18), Just(xwv13), bb), bb), LT), bb, bc) 30.08/13.46 new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv16, Just(xwv18), bb, bc) 30.08/13.46 new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(GT, GT), h, ba) 30.08/13.46 new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba) -> new_delFromFM(xwv34, Just(xwv400), h, ba) 30.08/13.46 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv17, Just(xwv18), bb, bc) 30.08/13.46 30.08/13.46 The TRS R consists of the following rules: 30.08/13.46 30.08/13.46 new_ltEs4(xwv2800, xwv2900, cb) -> new_fsEs(new_compare8(xwv2800, xwv2900, cb)) 30.08/13.46 new_lt7(xwv28000, xwv29000) -> new_esEs8(new_compare9(xwv28000, xwv29000), LT) 30.08/13.46 new_primCmpInt(Neg(Succ(xwv2800)), Pos(xwv290)) -> LT 30.08/13.46 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.08/13.46 new_lt18(xwv28000, xwv29000, cd, ce) -> new_esEs8(new_compare10(xwv28000, xwv29000, cd, ce), LT) 30.08/13.46 new_lt20(xwv28000, xwv29000, ty_Float) -> new_lt15(xwv28000, xwv29000) 30.08/13.46 new_esEs23(xwv4001, xwv3001, app(ty_[], bfg)) -> new_esEs17(xwv4001, xwv3001, bfg) 30.08/13.46 new_primPlusNat0(Zero, Zero) -> Zero 30.08/13.46 new_esEs25(xwv4000, xwv3000, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs6(xwv4000, xwv3000, caa, cab, cac) 30.08/13.46 new_pePe(True, xwv138) -> True 30.08/13.46 new_esEs22(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs7(xwv28002, xwv29002, he, hf, hg) 30.08/13.46 new_lt4(xwv28000, xwv29000, bd, be) -> new_esEs8(new_compare6(xwv28000, xwv29000, bd, be), LT) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Int) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.46 new_compare112(xwv125, xwv126, True, caf) -> LT 30.08/13.46 new_lt20(xwv28000, xwv29000, ty_Ordering) -> new_lt17(xwv28000, xwv29000) 30.08/13.46 new_esEs29(xwv400, xwv300, ty_Char) -> new_esEs12(xwv400, xwv300) 30.08/13.46 new_esEs10(xwv28001, xwv29001, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs6(xwv28001, xwv29001, gc, gd, ge) 30.08/13.46 new_compare10(xwv28000, xwv29000, cd, ce) -> new_compare23(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, cd, ce), cd, ce) 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_@0) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, app(app(ty_@2, cah), cba)) -> new_ltEs11(xwv2800, xwv2900, cah, cba) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, ty_Integer) -> new_ltEs18(xwv2800, xwv2900) 30.08/13.46 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.08/13.46 new_primCmpInt(Pos(Zero), Neg(Succ(xwv2900))) -> GT 30.08/13.46 new_compare14(xwv28000, xwv29000) -> new_compare26(xwv28000, xwv29000, new_esEs13(xwv28000, xwv29000)) 30.08/13.46 new_esEs24(xwv4002, xwv3002, ty_Int) -> new_esEs11(xwv4002, xwv3002) 30.08/13.46 new_esEs24(xwv4002, xwv3002, ty_Ordering) -> new_esEs8(xwv4002, xwv3002) 30.08/13.46 new_ltEs14(xwv2800, xwv2900) -> new_fsEs(new_compare17(xwv2800, xwv2900)) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, app(ty_[], cbf)) -> new_ltEs5(xwv28001, xwv29001, cbf) 30.08/13.46 new_primCmpInt(Neg(Succ(xwv2800)), Neg(xwv290)) -> new_primCmpNat0(xwv290, Succ(xwv2800)) 30.08/13.46 new_compare113(xwv28000, xwv29000, False, cd, ce) -> GT 30.08/13.46 new_lt9(xwv28000, xwv29000, app(ty_[], eg)) -> new_lt16(xwv28000, xwv29000, eg) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.46 new_lt8(xwv28001, xwv29001, app(app(ty_@2, fg), fh)) -> new_lt4(xwv28001, xwv29001, fg, fh) 30.08/13.46 new_primMulNat0(Succ(xwv400100), Succ(xwv300000)) -> new_primPlusNat1(new_primMulNat0(xwv400100, Succ(xwv300000)), xwv300000) 30.08/13.46 new_lt8(xwv28001, xwv29001, app(app(ty_Either, gf), gg)) -> new_lt18(xwv28001, xwv29001, gf, gg) 30.08/13.46 new_compare15(xwv28000, xwv29000, cbb) -> new_compare27(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, cbb), cbb) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.46 new_esEs28(xwv28000, xwv29000, app(app(ty_Either, cd), ce)) -> new_esEs7(xwv28000, xwv29000, cd, ce) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Ordering, cce) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.46 new_compare26(xwv28000, xwv29000, True) -> EQ 30.08/13.46 new_esEs10(xwv28001, xwv29001, ty_Char) -> new_esEs12(xwv28001, xwv29001) 30.08/13.46 new_compare18(xwv28000, xwv29000) -> new_compare24(xwv28000, xwv29000, new_esEs8(xwv28000, xwv29000)) 30.08/13.46 new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False 30.08/13.46 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 30.08/13.46 new_esEs8(GT, GT) -> True 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(xwv4000, xwv3000, dcd, dce, dcf) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Ratio, cge)) -> new_esEs19(xwv4000, xwv3000, cge) 30.08/13.46 new_esEs9(xwv28000, xwv29000, app(ty_Ratio, ff)) -> new_esEs19(xwv28000, xwv29000, ff) 30.08/13.46 new_fsEs(xwv131) -> new_not(new_esEs8(xwv131, GT)) 30.08/13.46 new_esEs23(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 30.08/13.46 new_compare16(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.46 new_compare16(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Float, cce) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.46 new_esEs29(xwv400, xwv300, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs6(xwv400, xwv300, bda, bdb, bdc) 30.08/13.46 new_esEs24(xwv4002, xwv3002, app(app(ty_@2, bgc), bgd)) -> new_esEs4(xwv4002, xwv3002, bgc, bgd) 30.08/13.46 new_compare17(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.46 new_lt12(xwv28000, xwv29000) -> new_esEs8(new_compare14(xwv28000, xwv29000), LT) 30.08/13.46 new_esEs8(EQ, EQ) -> True 30.08/13.46 new_esEs24(xwv4002, xwv3002, ty_Bool) -> new_esEs13(xwv4002, xwv3002) 30.08/13.46 new_primEqNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, ty_Bool) -> new_ltEs6(xwv2800, xwv2900) 30.08/13.46 new_esEs25(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, app(app(ty_@2, cbc), cbd)) -> new_ltEs11(xwv28001, xwv29001, cbc, cbd) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Int) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.46 new_not(True) -> False 30.08/13.46 new_esEs24(xwv4002, xwv3002, ty_Integer) -> new_esEs18(xwv4002, xwv3002) 30.08/13.46 new_compare11(xwv28000, xwv29000, ty_Integer) -> new_compare19(xwv28000, xwv29000) 30.08/13.46 new_primCompAux00(xwv160, LT) -> LT 30.08/13.46 new_primCmpNat0(Zero, Zero) -> EQ 30.08/13.46 new_esEs21(xwv4001, xwv3001, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs6(xwv4001, xwv3001, bce, bcf, bcg) 30.08/13.46 new_lt13(xwv28000, xwv29000, cbb) -> new_esEs8(new_compare15(xwv28000, xwv29000, cbb), LT) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, ty_Bool) -> new_ltEs6(xwv28001, xwv29001) 30.08/13.46 new_compare115(xwv28000, xwv29000, True, bf, bg, bh) -> LT 30.08/13.46 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Double) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, app(app(app(ty_@3, cbg), cbh), cca)) -> new_ltEs7(xwv28001, xwv29001, cbg, cbh, cca) 30.08/13.46 new_esEs22(xwv4000, xwv3000, app(ty_Ratio, bea)) -> new_esEs19(xwv4000, xwv3000, bea) 30.08/13.46 new_esEs29(xwv400, xwv300, ty_Int) -> new_esEs11(xwv400, xwv300) 30.08/13.46 new_compare27(Nothing, Nothing, False, cff) -> LT 30.08/13.46 new_esEs20(xwv4000, xwv3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs6(xwv4000, xwv3000, bbc, bbd, bbe) 30.08/13.46 new_esEs20(xwv4000, xwv3000, app(app(ty_Either, baf), bag)) -> new_esEs7(xwv4000, xwv3000, baf, bag) 30.08/13.46 new_esEs28(xwv28000, xwv29000, ty_Bool) -> new_esEs13(xwv28000, xwv29000) 30.08/13.46 new_ltEs16(GT, EQ) -> False 30.08/13.46 new_esEs29(xwv400, xwv300, ty_Integer) -> new_esEs18(xwv400, xwv300) 30.08/13.46 new_esEs4(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bac, bad) -> new_asAs(new_esEs20(xwv4000, xwv3000, bac), new_esEs21(xwv4001, xwv3001, bad)) 30.08/13.46 new_esEs10(xwv28001, xwv29001, ty_Ordering) -> new_esEs8(xwv28001, xwv29001) 30.08/13.46 new_compare27(xwv280, xwv290, True, cff) -> EQ 30.08/13.46 new_compare11(xwv28000, xwv29000, ty_Int) -> new_compare12(xwv28000, xwv29000) 30.08/13.46 new_ltEs17(Left(xwv28000), Right(xwv29000), cdh, cce) -> True 30.08/13.46 new_primEqNat0(Succ(xwv40000), Zero) -> False 30.08/13.46 new_primEqNat0(Zero, Succ(xwv30000)) -> False 30.08/13.46 new_lt9(xwv28000, xwv29000, app(ty_Maybe, ef)) -> new_lt13(xwv28000, xwv29000, ef) 30.08/13.46 new_esEs28(xwv28000, xwv29000, ty_Int) -> new_esEs11(xwv28000, xwv29000) 30.08/13.46 new_esEs29(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_@0) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.46 new_lt8(xwv28001, xwv29001, app(app(app(ty_@3, gc), gd), ge)) -> new_lt5(xwv28001, xwv29001, gc, gd, ge) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, app(ty_[], hd)) -> new_ltEs5(xwv28002, xwv29002, hd) 30.08/13.46 new_lt20(xwv28000, xwv29000, ty_Integer) -> new_lt19(xwv28000, xwv29000) 30.08/13.46 new_primCompAux00(xwv160, GT) -> GT 30.08/13.46 new_ltEs8(xwv28002, xwv29002, app(ty_Ratio, bab)) -> new_ltEs4(xwv28002, xwv29002, bab) 30.08/13.46 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.46 new_esEs5(Just(xwv4000), Just(xwv3000), ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.46 new_compare11(xwv28000, xwv29000, ty_Bool) -> new_compare14(xwv28000, xwv29000) 30.08/13.46 new_lt9(xwv28000, xwv29000, app(app(ty_@2, ed), ee)) -> new_lt4(xwv28000, xwv29000, ed, ee) 30.08/13.46 new_esEs20(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.46 new_esEs23(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.46 new_ltEs6(True, True) -> True 30.08/13.46 new_primCmpInt(Pos(Succ(xwv2800)), Neg(xwv290)) -> GT 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(ty_Either, ceh), cfa)) -> new_ltEs17(xwv28000, xwv29000, ceh, cfa) 30.08/13.46 new_esEs20(xwv4000, xwv3000, app(app(ty_@2, bah), bba)) -> new_esEs4(xwv4000, xwv3000, bah, bba) 30.08/13.46 new_ltEs16(LT, LT) -> True 30.08/13.46 new_ltEs19(xwv28001, xwv29001, ty_Float) -> new_ltEs14(xwv28001, xwv29001) 30.08/13.46 new_compare11(xwv28000, xwv29000, ty_Char) -> new_compare13(xwv28000, xwv29000) 30.08/13.46 new_esEs23(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.46 new_compare110(xwv28000, xwv29000, True, bd, be) -> LT 30.08/13.46 new_lt9(xwv28000, xwv29000, app(app(ty_Either, fc), fd)) -> new_lt18(xwv28000, xwv29000, fc, fd) 30.08/13.46 new_esEs29(xwv400, xwv300, ty_Float) -> new_esEs15(xwv400, xwv300) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, ty_Integer) -> new_ltEs18(xwv28001, xwv29001) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, ty_Ordering) -> new_ltEs16(xwv28002, xwv29002) 30.08/13.46 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Bool, cce) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, ty_Float) -> new_ltEs14(xwv2800, xwv2900) 30.08/13.46 new_lt17(xwv28000, xwv29000) -> new_esEs8(new_compare18(xwv28000, xwv29000), LT) 30.08/13.46 new_primCmpNat0(Zero, Succ(xwv2900)) -> LT 30.08/13.46 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_[], ced)) -> new_ltEs5(xwv28000, xwv29000, ced) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, dbb), dbc), dbd), cfe) -> new_esEs6(xwv4000, xwv3000, dbb, dbc, dbd) 30.08/13.46 new_ltEs20(xwv2800, xwv2900, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs7(xwv2800, xwv2900, ea, eb, ec) 30.08/13.46 new_esEs22(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.46 new_esEs28(xwv28000, xwv29000, ty_Char) -> new_esEs12(xwv28000, xwv29000) 30.08/13.46 new_esEs28(xwv28000, xwv29000, ty_Integer) -> new_esEs18(xwv28000, xwv29000) 30.08/13.46 new_ltEs10(xwv2800, xwv2900) -> new_fsEs(new_compare13(xwv2800, xwv2900)) 30.08/13.46 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Double, cfe) -> new_esEs14(xwv4000, xwv3000) 30.08/13.46 new_ltEs8(xwv28002, xwv29002, ty_Double) -> new_ltEs13(xwv28002, xwv29002) 30.08/13.46 new_ltEs19(xwv28001, xwv29001, app(ty_Ratio, ccd)) -> new_ltEs4(xwv28001, xwv29001, ccd) 30.08/13.47 new_sr(Integer(xwv280000), Integer(xwv290010)) -> Integer(new_primMulInt(xwv280000, xwv290010)) 30.08/13.47 new_primCmpNat0(Succ(xwv2800), Zero) -> GT 30.08/13.47 new_pePe(False, xwv138) -> xwv138 30.08/13.47 new_compare11(xwv28000, xwv29000, app(ty_Maybe, da)) -> new_compare15(xwv28000, xwv29000, da) 30.08/13.47 new_esEs23(xwv4001, xwv3001, ty_Bool) -> new_esEs13(xwv4001, xwv3001) 30.08/13.47 new_esEs9(xwv28000, xwv29000, app(ty_Maybe, ef)) -> new_esEs5(xwv28000, xwv29000, ef) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(ty_@2, dag), dah), cfe) -> new_esEs4(xwv4000, xwv3000, dag, dah) 30.08/13.47 new_ltEs13(xwv2800, xwv2900) -> new_fsEs(new_compare16(xwv2800, xwv2900)) 30.08/13.47 new_compare25(xwv28000, xwv29000, True, bd, be) -> EQ 30.08/13.47 new_ltEs8(xwv28002, xwv29002, ty_Integer) -> new_ltEs18(xwv28002, xwv29002) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.47 new_esEs10(xwv28001, xwv29001, app(app(ty_Either, gf), gg)) -> new_esEs7(xwv28001, xwv29001, gf, gg) 30.08/13.47 new_lt20(xwv28000, xwv29000, ty_Char) -> new_lt11(xwv28000, xwv29000) 30.08/13.47 new_ltEs16(LT, GT) -> True 30.08/13.47 new_lt8(xwv28001, xwv29001, app(ty_[], gb)) -> new_lt16(xwv28001, xwv29001, gb) 30.08/13.47 new_esEs22(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.47 new_lt9(xwv28000, xwv29000, ty_Int) -> new_lt10(xwv28000, xwv29000) 30.08/13.47 new_esEs25(xwv4000, xwv3000, app(ty_Ratio, bhh)) -> new_esEs19(xwv4000, xwv3000, bhh) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_Maybe, cch), cce) -> new_ltEs12(xwv28000, xwv29000, cch) 30.08/13.47 new_esEs17([], [], bhb) -> True 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Double) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.47 new_ltEs16(LT, EQ) -> True 30.08/13.47 new_ltEs16(EQ, LT) -> False 30.08/13.47 new_compare23(xwv28000, xwv29000, True, cd, ce) -> EQ 30.08/13.47 new_esEs8(LT, EQ) -> False 30.08/13.47 new_esEs8(EQ, LT) -> False 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.47 new_esEs21(xwv4001, xwv3001, app(app(ty_@2, bcb), bcc)) -> new_esEs4(xwv4001, xwv3001, bcb, bcc) 30.08/13.47 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 30.08/13.47 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 30.08/13.47 new_esEs28(xwv28000, xwv29000, ty_@0) -> new_esEs16(xwv28000, xwv29000) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, app(app(ty_Either, ccb), ccc)) -> new_ltEs17(xwv28001, xwv29001, ccb, ccc) 30.08/13.47 new_esEs21(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(xwv4000, xwv3000, cgf, cgg, cgh) 30.08/13.47 new_compare114(xwv28000, xwv29000, True) -> LT 30.08/13.47 new_ltEs16(GT, LT) -> False 30.08/13.47 new_esEs25(xwv4000, xwv3000, app(app(ty_@2, bhf), bhg)) -> new_esEs4(xwv4000, xwv3000, bhf, bhg) 30.08/13.47 new_esEs21(xwv4001, xwv3001, app(ty_Maybe, bbg)) -> new_esEs5(xwv4001, xwv3001, bbg) 30.08/13.47 new_esEs23(xwv4001, xwv3001, app(app(ty_Either, beg), beh)) -> new_esEs7(xwv4001, xwv3001, beg, beh) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Integer, cce) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.47 new_esEs5(Nothing, Nothing, cfc) -> True 30.08/13.47 new_ltEs20(xwv2800, xwv2900, app(app(ty_Either, cdh), cce)) -> new_ltEs17(xwv2800, xwv2900, cdh, cce) 30.08/13.47 new_ltEs6(False, False) -> True 30.08/13.47 new_esEs25(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.47 new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.47 new_esEs10(xwv28001, xwv29001, ty_Integer) -> new_esEs18(xwv28001, xwv29001) 30.08/13.47 new_lt8(xwv28001, xwv29001, app(ty_Maybe, ga)) -> new_lt13(xwv28001, xwv29001, ga) 30.08/13.47 new_esEs5(Nothing, Just(xwv3000), cfc) -> False 30.08/13.47 new_esEs5(Just(xwv4000), Nothing, cfc) -> False 30.08/13.47 new_primCmpInt(Neg(Zero), Pos(Succ(xwv2900))) -> LT 30.08/13.47 new_compare13(Char(xwv28000), Char(xwv29000)) -> new_primCmpNat0(xwv28000, xwv29000) 30.08/13.47 new_primMulInt(Pos(xwv40010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.47 new_esEs10(xwv28001, xwv29001, ty_Int) -> new_esEs11(xwv28001, xwv29001) 30.08/13.47 new_esEs20(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(ty_Either, dae), daf), cfe) -> new_esEs7(xwv4000, xwv3000, dae, daf) 30.08/13.47 new_esEs9(xwv28000, xwv29000, app(app(ty_@2, ed), ee)) -> new_esEs4(xwv28000, xwv29000, ed, ee) 30.08/13.47 new_esEs21(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.47 new_esEs9(xwv28000, xwv29000, ty_Ordering) -> new_esEs8(xwv28000, xwv29000) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(ty_Either, cde), cdf), cce) -> new_ltEs17(xwv28000, xwv29000, cde, cdf) 30.08/13.47 new_esEs24(xwv4002, xwv3002, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs6(xwv4002, xwv3002, bgf, bgg, bgh) 30.08/13.47 new_esEs10(xwv28001, xwv29001, app(app(ty_@2, fg), fh)) -> new_esEs4(xwv28001, xwv29001, fg, fh) 30.08/13.47 new_primMulNat0(Succ(xwv400100), Zero) -> Zero 30.08/13.47 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 30.08/13.47 new_ltEs8(xwv28002, xwv29002, ty_@0) -> new_ltEs15(xwv28002, xwv29002) 30.08/13.47 new_esEs18(Integer(xwv4000), Integer(xwv3000)) -> new_primEqInt(xwv4000, xwv3000) 30.08/13.47 new_esEs25(xwv4000, xwv3000, app(app(ty_Either, bhd), bhe)) -> new_esEs7(xwv4000, xwv3000, bhd, bhe) 30.08/13.47 new_compare11(xwv28000, xwv29000, app(app(ty_@2, cf), cg)) -> new_compare6(xwv28000, xwv29000, cf, cg) 30.08/13.47 new_esEs24(xwv4002, xwv3002, ty_Char) -> new_esEs12(xwv4002, xwv3002) 30.08/13.47 new_ltEs18(xwv2800, xwv2900) -> new_fsEs(new_compare19(xwv2800, xwv2900)) 30.08/13.47 new_esEs23(xwv4001, xwv3001, app(ty_Maybe, bef)) -> new_esEs5(xwv4001, xwv3001, bef) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Char) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.47 new_esEs20(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.47 new_lt9(xwv28000, xwv29000, ty_Ordering) -> new_lt17(xwv28000, xwv29000) 30.08/13.47 new_lt20(xwv28000, xwv29000, ty_Bool) -> new_lt12(xwv28000, xwv29000) 30.08/13.47 new_primPlusNat0(Succ(xwv33200), Zero) -> Succ(xwv33200) 30.08/13.47 new_primPlusNat0(Zero, Succ(xwv9700)) -> Succ(xwv9700) 30.08/13.47 new_esEs28(xwv28000, xwv29000, app(ty_[], cag)) -> new_esEs17(xwv28000, xwv29000, cag) 30.08/13.47 new_ltEs16(EQ, GT) -> True 30.08/13.47 new_esEs20(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.47 new_esEs17(:(xwv4000, xwv4001), :(xwv3000, xwv3001), bhb) -> new_asAs(new_esEs25(xwv4000, xwv3000, bhb), new_esEs17(xwv4001, xwv3001, bhb)) 30.08/13.47 new_ltEs16(EQ, EQ) -> True 30.08/13.47 new_lt8(xwv28001, xwv29001, ty_Double) -> new_lt14(xwv28001, xwv29001) 30.08/13.47 new_ltEs6(True, False) -> False 30.08/13.47 new_lt9(xwv28000, xwv29000, app(app(app(ty_@3, eh), fa), fb)) -> new_lt5(xwv28000, xwv29000, eh, fa, fb) 30.08/13.47 new_esEs8(LT, LT) -> True 30.08/13.47 new_compare19(Integer(xwv28000), Integer(xwv29000)) -> new_primCmpInt(xwv28000, xwv29000) 30.08/13.47 new_lt8(xwv28001, xwv29001, ty_Ordering) -> new_lt17(xwv28001, xwv29001) 30.08/13.47 new_compare111(xwv28000, xwv29000, True) -> LT 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, cdb), cdc), cdd), cce) -> new_ltEs7(xwv28000, xwv29000, cdb, cdc, cdd) 30.08/13.47 new_esEs10(xwv28001, xwv29001, ty_Float) -> new_esEs15(xwv28001, xwv29001) 30.08/13.47 new_esEs29(xwv400, xwv300, app(ty_[], bhb)) -> new_esEs17(xwv400, xwv300, bhb) 30.08/13.47 new_esEs22(xwv4000, xwv3000, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs6(xwv4000, xwv3000, beb, bec, bed) 30.08/13.47 new_esEs9(xwv28000, xwv29000, ty_Float) -> new_esEs15(xwv28000, xwv29000) 30.08/13.47 new_lt20(xwv28000, xwv29000, app(ty_Ratio, ca)) -> new_lt6(xwv28000, xwv29000, ca) 30.08/13.47 new_esEs9(xwv28000, xwv29000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs6(xwv28000, xwv29000, eh, fa, fb) 30.08/13.47 new_esEs21(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.47 new_ltEs8(xwv28002, xwv29002, app(app(ty_Either, hh), baa)) -> new_ltEs17(xwv28002, xwv29002, hh, baa) 30.08/13.47 new_compare23(xwv28000, xwv29000, False, cd, ce) -> new_compare113(xwv28000, xwv29000, new_ltEs17(xwv28000, xwv29000, cd, ce), cd, ce) 30.08/13.47 new_esEs13(True, True) -> True 30.08/13.47 new_ltEs20(xwv2800, xwv2900, ty_Double) -> new_ltEs13(xwv2800, xwv2900) 30.08/13.47 new_compare17(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.47 new_compare17(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.47 new_esEs28(xwv28000, xwv29000, ty_Double) -> new_esEs14(xwv28000, xwv29000) 30.08/13.47 new_ltEs20(xwv2800, xwv2900, ty_Ordering) -> new_ltEs16(xwv2800, xwv2900) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, chf), chg), chh)) -> new_ltEs7(xwv28000, xwv29000, chf, chg, chh) 30.08/13.47 new_esEs20(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Char, cfe) -> new_esEs12(xwv4000, xwv3000) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Bool, cfe) -> new_esEs13(xwv4000, xwv3000) 30.08/13.47 new_esEs23(xwv4001, xwv3001, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs6(xwv4001, xwv3001, bfd, bfe, bff) 30.08/13.47 new_compare11(xwv28000, xwv29000, app(app(app(ty_@3, dc), dd), de)) -> new_compare7(xwv28000, xwv29000, dc, dd, de) 30.08/13.47 new_esEs25(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_Maybe, chd)) -> new_ltEs12(xwv28000, xwv29000, chd) 30.08/13.47 new_ltEs8(xwv28002, xwv29002, ty_Float) -> new_ltEs14(xwv28002, xwv29002) 30.08/13.47 new_primMulInt(Neg(xwv40010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.47 new_compare24(xwv28000, xwv29000, False) -> new_compare114(xwv28000, xwv29000, new_ltEs16(xwv28000, xwv29000)) 30.08/13.47 new_primCmpInt(Pos(Zero), Pos(Succ(xwv2900))) -> new_primCmpNat0(Zero, Succ(xwv2900)) 30.08/13.47 new_esEs29(xwv400, xwv300, ty_Double) -> new_esEs14(xwv400, xwv300) 30.08/13.47 new_esEs10(xwv28001, xwv29001, app(ty_Maybe, ga)) -> new_esEs5(xwv28001, xwv29001, ga) 30.08/13.47 new_esEs25(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.47 new_esEs22(xwv4000, xwv3000, app(ty_Maybe, bdd)) -> new_esEs5(xwv4000, xwv3000, bdd) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, ty_Ordering) -> new_ltEs16(xwv28001, xwv29001) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_Ratio, dcc)) -> new_esEs19(xwv4000, xwv3000, dcc) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.47 new_lt9(xwv28000, xwv29000, ty_Double) -> new_lt14(xwv28000, xwv29000) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, ty_Double) -> new_ltEs13(xwv28001, xwv29001) 30.08/13.47 new_compare11(xwv28000, xwv29000, ty_Ordering) -> new_compare18(xwv28000, xwv29000) 30.08/13.47 new_esEs24(xwv4002, xwv3002, app(app(ty_Either, bga), bgb)) -> new_esEs7(xwv4002, xwv3002, bga, bgb) 30.08/13.47 new_compare114(xwv28000, xwv29000, False) -> GT 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Maybe, cfh)) -> new_esEs5(xwv4000, xwv3000, cfh) 30.08/13.47 new_esEs23(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 30.08/13.47 new_ltEs20(xwv2800, xwv2900, app(ty_Ratio, cb)) -> new_ltEs4(xwv2800, xwv2900, cb) 30.08/13.47 new_compare28(xwv28000, xwv29000, False, bf, bg, bh) -> new_compare115(xwv28000, xwv29000, new_ltEs7(xwv28000, xwv29000, bf, bg, bh), bf, bg, bh) 30.08/13.47 new_esEs23(xwv4001, xwv3001, app(app(ty_@2, bfa), bfb)) -> new_esEs4(xwv4001, xwv3001, bfa, bfb) 30.08/13.47 new_esEs21(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Int, cfe) -> new_esEs11(xwv4000, xwv3000) 30.08/13.47 new_compare113(xwv28000, xwv29000, True, cd, ce) -> LT 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_Ratio, cdg), cce) -> new_ltEs4(xwv28000, xwv29000, cdg) 30.08/13.47 new_esEs10(xwv28001, xwv29001, ty_@0) -> new_esEs16(xwv28001, xwv29001) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_[], che)) -> new_ltEs5(xwv28000, xwv29000, che) 30.08/13.47 new_primMulInt(Pos(xwv40010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.47 new_primMulInt(Neg(xwv40010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Ordering) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.47 new_esEs12(Char(xwv4000), Char(xwv3000)) -> new_primEqNat0(xwv4000, xwv3000) 30.08/13.47 new_esEs22(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.47 new_esEs22(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.47 new_esEs22(xwv4000, xwv3000, app(app(ty_@2, bdg), bdh)) -> new_esEs4(xwv4000, xwv3000, bdg, bdh) 30.08/13.47 new_lt9(xwv28000, xwv29000, ty_Integer) -> new_lt19(xwv28000, xwv29000) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Float) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.47 new_lt8(xwv28001, xwv29001, ty_@0) -> new_lt7(xwv28001, xwv29001) 30.08/13.47 new_lt9(xwv28000, xwv29000, app(ty_Ratio, ff)) -> new_lt6(xwv28000, xwv29000, ff) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, ty_Int) -> new_ltEs9(xwv28001, xwv29001) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(ty_@2, dca), dcb)) -> new_esEs4(xwv4000, xwv3000, dca, dcb) 30.08/13.47 new_lt19(xwv28000, xwv29000) -> new_esEs8(new_compare19(xwv28000, xwv29000), LT) 30.08/13.47 new_esEs24(xwv4002, xwv3002, ty_Double) -> new_esEs14(xwv4002, xwv3002) 30.08/13.47 new_esEs29(xwv400, xwv300, app(ty_Maybe, cfc)) -> new_esEs5(xwv400, xwv300, cfc) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(ty_@2, ccf), ccg), cce) -> new_ltEs11(xwv28000, xwv29000, ccf, ccg) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_Maybe, dbf)) -> new_esEs5(xwv4000, xwv3000, dbf) 30.08/13.47 new_esEs13(False, False) -> True 30.08/13.47 new_compare16(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.47 new_ltEs9(xwv2800, xwv2900) -> new_fsEs(new_compare12(xwv2800, xwv2900)) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.47 new_lt20(xwv28000, xwv29000, app(ty_Maybe, cbb)) -> new_lt13(xwv28000, xwv29000, cbb) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_Either, cga), cgb)) -> new_esEs7(xwv4000, xwv3000, cga, cgb) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Integer, cfe) -> new_esEs18(xwv4000, xwv3000) 30.08/13.47 new_ltEs7(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ea, eb, ec) -> new_pePe(new_lt9(xwv28000, xwv29000, ea), new_asAs(new_esEs9(xwv28000, xwv29000, ea), new_pePe(new_lt8(xwv28001, xwv29001, eb), new_asAs(new_esEs10(xwv28001, xwv29001, eb), new_ltEs8(xwv28002, xwv29002, ec))))) 30.08/13.47 new_esEs23(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 30.08/13.47 new_esEs26(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.47 new_compare6(xwv28000, xwv29000, bd, be) -> new_compare25(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, bd, be), bd, be) 30.08/13.47 new_lt20(xwv28000, xwv29000, ty_Int) -> new_lt10(xwv28000, xwv29000) 30.08/13.47 new_esEs24(xwv4002, xwv3002, app(ty_Ratio, bge)) -> new_esEs19(xwv4002, xwv3002, bge) 30.08/13.47 new_esEs29(xwv400, xwv300, ty_@0) -> new_esEs16(xwv400, xwv300) 30.08/13.47 new_compare0([], :(xwv29000, xwv29001), cc) -> LT 30.08/13.47 new_asAs(True, xwv64) -> xwv64 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Bool) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.47 new_compare11(xwv28000, xwv29000, ty_Double) -> new_compare16(xwv28000, xwv29000) 30.08/13.47 new_esEs25(xwv4000, xwv3000, app(ty_[], cad)) -> new_esEs17(xwv4000, xwv3000, cad) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(ty_@2, chb), chc)) -> new_ltEs11(xwv28000, xwv29000, chb, chc) 30.08/13.47 new_esEs10(xwv28001, xwv29001, app(ty_[], gb)) -> new_esEs17(xwv28001, xwv29001, gb) 30.08/13.47 new_ltEs20(xwv2800, xwv2900, ty_@0) -> new_ltEs15(xwv2800, xwv2900) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.47 new_esEs14(Double(xwv4000, xwv4001), Double(xwv3000, xwv3001)) -> new_esEs11(new_sr0(xwv4000, xwv3001), new_sr0(xwv4001, xwv3000)) 30.08/13.47 new_lt16(xwv28000, xwv29000, cag) -> new_esEs8(new_compare0(xwv28000, xwv29000, cag), LT) 30.08/13.47 new_esEs20(xwv4000, xwv3000, app(ty_Maybe, bae)) -> new_esEs5(xwv4000, xwv3000, bae) 30.08/13.47 new_esEs16(@0, @0) -> True 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_@2, cgc), cgd)) -> new_esEs4(xwv4000, xwv3000, cgc, cgd) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.47 new_esEs22(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, ty_@0) -> new_ltEs15(xwv28001, xwv29001) 30.08/13.47 new_primCmpInt(Pos(Succ(xwv2800)), Pos(xwv290)) -> new_primCmpNat0(Succ(xwv2800), xwv290) 30.08/13.47 new_esEs9(xwv28000, xwv29000, app(ty_[], eg)) -> new_esEs17(xwv28000, xwv29000, eg) 30.08/13.47 new_primPlusNat1(xwv107, xwv300000) -> new_primPlusNat0(xwv107, Succ(xwv300000)) 30.08/13.47 new_lt9(xwv28000, xwv29000, ty_Char) -> new_lt11(xwv28000, xwv29000) 30.08/13.47 new_esEs9(xwv28000, xwv29000, ty_Int) -> new_esEs11(xwv28000, xwv29000) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_Maybe, dad), cfe) -> new_esEs5(xwv4000, xwv3000, dad) 30.08/13.47 new_primCompAux00(xwv160, EQ) -> xwv160 30.08/13.47 new_compare0([], [], cc) -> EQ 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.47 new_ltEs16(GT, GT) -> True 30.08/13.47 new_compare27(Nothing, Just(xwv2900), False, cff) -> LT 30.08/13.47 new_esEs28(xwv28000, xwv29000, ty_Float) -> new_esEs15(xwv28000, xwv29000) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Int, cce) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.47 new_compare27(Just(xwv2800), Just(xwv2900), False, cff) -> new_compare112(xwv2800, xwv2900, new_ltEs20(xwv2800, xwv2900, cff), cff) 30.08/13.47 new_esEs21(xwv4001, xwv3001, app(app(ty_Either, bbh), bca)) -> new_esEs7(xwv4001, xwv3001, bbh, bca) 30.08/13.47 new_primMulNat0(Zero, Zero) -> Zero 30.08/13.47 new_lt20(xwv28000, xwv29000, app(ty_[], cag)) -> new_lt16(xwv28000, xwv29000, cag) 30.08/13.47 new_lt14(xwv28000, xwv29000) -> new_esEs8(new_compare16(xwv28000, xwv29000), LT) 30.08/13.47 new_esEs23(xwv4001, xwv3001, ty_Char) -> new_esEs12(xwv4001, xwv3001) 30.08/13.47 new_esEs24(xwv4002, xwv3002, app(ty_Maybe, bfh)) -> new_esEs5(xwv4002, xwv3002, bfh) 30.08/13.47 new_lt8(xwv28001, xwv29001, ty_Char) -> new_lt11(xwv28001, xwv29001) 30.08/13.47 new_esEs10(xwv28001, xwv29001, ty_Double) -> new_esEs14(xwv28001, xwv29001) 30.08/13.47 new_compare111(xwv28000, xwv29000, False) -> GT 30.08/13.47 new_ltEs20(xwv2800, xwv2900, app(ty_Maybe, cfg)) -> new_ltEs12(xwv2800, xwv2900, cfg) 30.08/13.47 new_lt15(xwv28000, xwv29000) -> new_esEs8(new_compare17(xwv28000, xwv29000), LT) 30.08/13.47 new_compare9(@0, @0) -> EQ 30.08/13.47 new_compare115(xwv28000, xwv29000, False, bf, bg, bh) -> GT 30.08/13.47 new_esEs21(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 30.08/13.47 new_esEs22(xwv4000, xwv3000, app(app(ty_Either, bde), bdf)) -> new_esEs7(xwv4000, xwv3000, bde, bdf) 30.08/13.47 new_compare28(xwv28000, xwv29000, True, bf, bg, bh) -> EQ 30.08/13.47 new_esEs9(xwv28000, xwv29000, app(app(ty_Either, fc), fd)) -> new_esEs7(xwv28000, xwv29000, fc, fd) 30.08/13.47 new_esEs20(xwv4000, xwv3000, app(ty_[], bbf)) -> new_esEs17(xwv4000, xwv3000, bbf) 30.08/13.47 new_compare8(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Int) -> new_compare12(new_sr0(xwv28000, xwv29001), new_sr0(xwv29000, xwv28001)) 30.08/13.47 new_esEs22(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Integer) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.47 new_ltEs8(xwv28002, xwv29002, ty_Int) -> new_ltEs9(xwv28002, xwv29002) 30.08/13.47 new_esEs9(xwv28000, xwv29000, ty_Integer) -> new_esEs18(xwv28000, xwv29000) 30.08/13.47 new_esEs29(xwv400, xwv300, app(ty_Ratio, cae)) -> new_esEs19(xwv400, xwv300, cae) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_[], dcg)) -> new_esEs17(xwv4000, xwv3000, dcg) 30.08/13.47 new_esEs25(xwv4000, xwv3000, app(ty_Maybe, bhc)) -> new_esEs5(xwv4000, xwv3000, bhc) 30.08/13.47 new_primCompAux0(xwv28000, xwv29000, xwv148, cc) -> new_primCompAux00(xwv148, new_compare11(xwv28000, xwv29000, cc)) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.47 new_esEs22(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.47 new_lt9(xwv28000, xwv29000, ty_Float) -> new_lt15(xwv28000, xwv29000) 30.08/13.47 new_ltEs6(False, True) -> True 30.08/13.47 new_esEs9(xwv28000, xwv29000, ty_@0) -> new_esEs16(xwv28000, xwv29000) 30.08/13.47 new_compare25(xwv28000, xwv29000, False, bd, be) -> new_compare110(xwv28000, xwv29000, new_ltEs11(xwv28000, xwv29000, bd, be), bd, be) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Ordering, cfe) -> new_esEs8(xwv4000, xwv3000) 30.08/13.47 new_esEs20(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.47 new_esEs21(xwv4001, xwv3001, app(ty_[], bch)) -> new_esEs17(xwv4001, xwv3001, bch) 30.08/13.47 new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False 30.08/13.47 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Char, cce) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.47 new_esEs13(False, True) -> False 30.08/13.47 new_esEs13(True, False) -> False 30.08/13.47 new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.47 new_esEs28(xwv28000, xwv29000, app(ty_Ratio, ca)) -> new_esEs19(xwv28000, xwv29000, ca) 30.08/13.47 new_lt8(xwv28001, xwv29001, ty_Int) -> new_lt10(xwv28001, xwv29001) 30.08/13.47 new_compare11(xwv28000, xwv29000, ty_@0) -> new_compare9(xwv28000, xwv29000) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Bool) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Ordering) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.47 new_compare24(xwv28000, xwv29000, True) -> EQ 30.08/13.47 new_lt5(xwv28000, xwv29000, bf, bg, bh) -> new_esEs8(new_compare7(xwv28000, xwv29000, bf, bg, bh), LT) 30.08/13.47 new_lt20(xwv28000, xwv29000, ty_@0) -> new_lt7(xwv28000, xwv29000) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_[], dbe), cfe) -> new_esEs17(xwv4000, xwv3000, dbe) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_Ratio, cfb)) -> new_ltEs4(xwv28000, xwv29000, cfb) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, app(ty_Maybe, cbe)) -> new_ltEs12(xwv28001, xwv29001, cbe) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(ty_Either, dbg), dbh)) -> new_esEs7(xwv4000, xwv3000, dbg, dbh) 30.08/13.47 new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> False 30.08/13.47 new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> False 30.08/13.47 new_primCmpInt(Neg(Zero), Neg(Succ(xwv2900))) -> new_primCmpNat0(Succ(xwv2900), Zero) 30.08/13.47 new_esEs23(xwv4001, xwv3001, app(ty_Ratio, bfc)) -> new_esEs19(xwv4001, xwv3001, bfc) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_@0, cce) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.47 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.08/13.47 new_lt8(xwv28001, xwv29001, app(ty_Ratio, gh)) -> new_lt6(xwv28001, xwv29001, gh) 30.08/13.47 new_lt8(xwv28001, xwv29001, ty_Bool) -> new_lt12(xwv28001, xwv29001) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Char) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.47 new_esEs25(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.47 new_esEs28(xwv28000, xwv29000, app(ty_Maybe, cbb)) -> new_esEs5(xwv28000, xwv29000, cbb) 30.08/13.47 new_lt9(xwv28000, xwv29000, ty_@0) -> new_lt7(xwv28000, xwv29000) 30.08/13.47 new_lt11(xwv28000, xwv29000) -> new_esEs8(new_compare13(xwv28000, xwv29000), LT) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Double, cce) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.47 new_esEs23(xwv4001, xwv3001, ty_Double) -> new_esEs14(xwv4001, xwv3001) 30.08/13.47 new_lt20(xwv28000, xwv29000, ty_Double) -> new_lt14(xwv28000, xwv29000) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(ty_@2, cea), ceb)) -> new_ltEs11(xwv28000, xwv29000, cea, ceb) 30.08/13.47 new_ltEs8(xwv28002, xwv29002, ty_Bool) -> new_ltEs6(xwv28002, xwv29002) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(ty_Either, daa), dab)) -> new_ltEs17(xwv28000, xwv29000, daa, dab) 30.08/13.47 new_esEs24(xwv4002, xwv3002, ty_Float) -> new_esEs15(xwv4002, xwv3002) 30.08/13.47 new_compare8(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Integer) -> new_compare19(new_sr(xwv28000, xwv29001), new_sr(xwv29000, xwv28001)) 30.08/13.47 new_esEs25(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.47 new_compare26(xwv28000, xwv29000, False) -> new_compare111(xwv28000, xwv29000, new_ltEs6(xwv28000, xwv29000)) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_[], cda), cce) -> new_ltEs5(xwv28000, xwv29000, cda) 30.08/13.47 new_not(False) -> True 30.08/13.47 new_esEs21(xwv4001, xwv3001, ty_Double) -> new_esEs14(xwv4001, xwv3001) 30.08/13.47 new_esEs21(xwv4001, xwv3001, ty_Bool) -> new_esEs13(xwv4001, xwv3001) 30.08/13.47 new_esEs24(xwv4002, xwv3002, app(ty_[], bha)) -> new_esEs17(xwv4002, xwv3002, bha) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_Ratio, dac)) -> new_ltEs4(xwv28000, xwv29000, dac) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_Maybe, cec)) -> new_ltEs12(xwv28000, xwv29000, cec) 30.08/13.47 new_esEs9(xwv28000, xwv29000, ty_Char) -> new_esEs12(xwv28000, xwv29000) 30.08/13.47 new_compare0(:(xwv28000, xwv28001), [], cc) -> GT 30.08/13.47 new_esEs8(LT, GT) -> False 30.08/13.47 new_esEs8(GT, LT) -> False 30.08/13.47 new_compare27(Just(xwv2800), Nothing, False, cff) -> GT 30.08/13.47 new_primPlusNat0(Succ(xwv33200), Succ(xwv9700)) -> Succ(Succ(new_primPlusNat0(xwv33200, xwv9700))) 30.08/13.47 new_esEs24(xwv4002, xwv3002, ty_@0) -> new_esEs16(xwv4002, xwv3002) 30.08/13.47 new_esEs27(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.47 new_esEs25(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.47 new_esEs21(xwv4001, xwv3001, ty_Char) -> new_esEs12(xwv4001, xwv3001) 30.08/13.47 new_compare16(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.47 new_compare11(xwv28000, xwv29000, ty_Float) -> new_compare17(xwv28000, xwv29000) 30.08/13.47 new_esEs6(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), bda, bdb, bdc) -> new_asAs(new_esEs22(xwv4000, xwv3000, bda), new_asAs(new_esEs23(xwv4001, xwv3001, bdb), new_esEs24(xwv4002, xwv3002, bdc))) 30.08/13.47 new_esEs9(xwv28000, xwv29000, ty_Bool) -> new_esEs13(xwv28000, xwv29000) 30.08/13.47 new_esEs27(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.47 new_sr0(xwv4001, xwv3000) -> new_primMulInt(xwv4001, xwv3000) 30.08/13.47 new_lt9(xwv28000, xwv29000, ty_Bool) -> new_lt12(xwv28000, xwv29000) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, ty_Char) -> new_ltEs10(xwv28001, xwv29001) 30.08/13.47 new_lt20(xwv28000, xwv29000, app(app(ty_Either, cd), ce)) -> new_lt18(xwv28000, xwv29000, cd, ce) 30.08/13.47 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.08/13.47 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.08/13.47 new_ltEs8(xwv28002, xwv29002, app(app(ty_@2, ha), hb)) -> new_ltEs11(xwv28002, xwv29002, ha, hb) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.47 new_ltEs8(xwv28002, xwv29002, ty_Char) -> new_ltEs10(xwv28002, xwv29002) 30.08/13.47 new_compare0(:(xwv28000, xwv28001), :(xwv29000, xwv29001), cc) -> new_primCompAux0(xwv28000, xwv29000, new_compare0(xwv28001, xwv29001, cc), cc) 30.08/13.47 new_lt20(xwv28000, xwv29000, app(app(ty_@2, bd), be)) -> new_lt4(xwv28000, xwv29000, bd, be) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), ty_@0, cfe) -> new_esEs16(xwv4000, xwv3000) 30.08/13.47 new_esEs22(xwv4000, xwv3000, app(ty_[], bee)) -> new_esEs17(xwv4000, xwv3000, bee) 30.08/13.47 new_compare11(xwv28000, xwv29000, app(ty_[], db)) -> new_compare0(xwv28000, xwv29000, db) 30.08/13.47 new_esEs10(xwv28001, xwv29001, app(ty_Ratio, gh)) -> new_esEs19(xwv28001, xwv29001, gh) 30.08/13.47 new_lt8(xwv28001, xwv29001, ty_Integer) -> new_lt19(xwv28001, xwv29001) 30.08/13.47 new_esEs9(xwv28000, xwv29000, ty_Double) -> new_esEs14(xwv28000, xwv29000) 30.08/13.47 new_esEs10(xwv28001, xwv29001, ty_Bool) -> new_esEs13(xwv28001, xwv29001) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_[], cha)) -> new_esEs17(xwv4000, xwv3000, cha) 30.08/13.47 new_lt6(xwv28000, xwv29000, ca) -> new_esEs8(new_compare8(xwv28000, xwv29000, ca), LT) 30.08/13.47 new_ltEs12(Nothing, Just(xwv29000), cfg) -> True 30.08/13.47 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.08/13.47 new_esEs21(xwv4001, xwv3001, app(ty_Ratio, bcd)) -> new_esEs19(xwv4001, xwv3001, bcd) 30.08/13.47 new_esEs28(xwv28000, xwv29000, app(app(ty_@2, bd), be)) -> new_esEs4(xwv28000, xwv29000, bd, be) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.47 new_primCmpNat0(Succ(xwv2800), Succ(xwv2900)) -> new_primCmpNat0(xwv2800, xwv2900) 30.08/13.47 new_ltEs15(xwv2800, xwv2900) -> new_fsEs(new_compare9(xwv2800, xwv2900)) 30.08/13.47 new_ltEs8(xwv28002, xwv29002, app(ty_Maybe, hc)) -> new_ltEs12(xwv28002, xwv29002, hc) 30.08/13.47 new_lt8(xwv28001, xwv29001, ty_Float) -> new_lt15(xwv28001, xwv29001) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs7(xwv28000, xwv29000, cee, cef, ceg) 30.08/13.47 new_compare11(xwv28000, xwv29000, app(app(ty_Either, df), dg)) -> new_compare10(xwv28000, xwv29000, df, dg) 30.08/13.47 new_esEs28(xwv28000, xwv29000, ty_Ordering) -> new_esEs8(xwv28000, xwv29000) 30.08/13.47 new_compare12(xwv28, xwv29) -> new_primCmpInt(xwv28, xwv29) 30.08/13.47 new_ltEs12(Nothing, Nothing, cfg) -> True 30.08/13.47 new_ltEs20(xwv2800, xwv2900, ty_Char) -> new_ltEs10(xwv2800, xwv2900) 30.08/13.47 new_esEs19(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), cae) -> new_asAs(new_esEs26(xwv4000, xwv3000, cae), new_esEs27(xwv4001, xwv3001, cae)) 30.08/13.47 new_ltEs12(Just(xwv28000), Nothing, cfg) -> False 30.08/13.47 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.08/13.47 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.08/13.47 new_esEs29(xwv400, xwv300, app(app(ty_@2, bac), bad)) -> new_esEs4(xwv400, xwv300, bac, bad) 30.08/13.47 new_ltEs17(Right(xwv28000), Left(xwv29000), cdh, cce) -> False 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Float) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.47 new_ltEs5(xwv2800, xwv2900, cc) -> new_fsEs(new_compare0(xwv2800, xwv2900, cc)) 30.08/13.47 new_compare110(xwv28000, xwv29000, False, bd, be) -> GT 30.08/13.47 new_compare11(xwv28000, xwv29000, app(ty_Ratio, dh)) -> new_compare8(xwv28000, xwv29000, dh) 30.08/13.47 new_primEqNat0(Zero, Zero) -> True 30.08/13.47 new_ltEs20(xwv2800, xwv2900, ty_Int) -> new_ltEs9(xwv2800, xwv2900) 30.08/13.47 new_esEs20(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.47 new_ltEs20(xwv2800, xwv2900, app(ty_[], cc)) -> new_ltEs5(xwv2800, xwv2900, cc) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Float, cfe) -> new_esEs15(xwv4000, xwv3000) 30.08/13.47 new_esEs28(xwv28000, xwv29000, app(app(app(ty_@3, bf), bg), bh)) -> new_esEs6(xwv28000, xwv29000, bf, bg, bh) 30.08/13.47 new_esEs29(xwv400, xwv300, ty_Ordering) -> new_esEs8(xwv400, xwv300) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Integer) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.47 new_compare7(xwv28000, xwv29000, bf, bg, bh) -> new_compare28(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bf, bg, bh), bf, bg, bh) 30.08/13.47 new_asAs(False, xwv64) -> False 30.08/13.47 new_esEs17(:(xwv4000, xwv4001), [], bhb) -> False 30.08/13.47 new_esEs17([], :(xwv3000, xwv3001), bhb) -> False 30.08/13.47 new_esEs20(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.47 new_esEs29(xwv400, xwv300, app(app(ty_Either, cfd), cfe)) -> new_esEs7(xwv400, xwv300, cfd, cfe) 30.08/13.47 new_esEs26(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.47 new_esEs25(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.47 new_lt10(xwv280, xwv290) -> new_esEs8(new_compare12(xwv280, xwv290), LT) 30.08/13.47 new_esEs8(EQ, GT) -> False 30.08/13.47 new_esEs8(GT, EQ) -> False 30.08/13.47 new_compare112(xwv125, xwv126, False, caf) -> GT 30.08/13.47 new_esEs20(xwv4000, xwv3000, app(ty_Ratio, bbb)) -> new_esEs19(xwv4000, xwv3000, bbb) 30.08/13.47 new_lt20(xwv28000, xwv29000, app(app(app(ty_@3, bf), bg), bh)) -> new_lt5(xwv28000, xwv29000, bf, bg, bh) 30.08/13.47 new_compare17(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.47 new_esEs15(Float(xwv4000, xwv4001), Float(xwv3000, xwv3001)) -> new_esEs11(new_sr0(xwv4000, xwv3001), new_sr0(xwv4001, xwv3000)) 30.08/13.47 new_esEs7(Left(xwv4000), Right(xwv3000), cfd, cfe) -> False 30.08/13.47 new_esEs7(Right(xwv4000), Left(xwv3000), cfd, cfe) -> False 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_Ratio, dba), cfe) -> new_esEs19(xwv4000, xwv3000, dba) 30.08/13.47 new_esEs11(xwv400, xwv300) -> new_primEqInt(xwv400, xwv300) 30.08/13.47 new_ltEs11(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), cah, cba) -> new_pePe(new_lt20(xwv28000, xwv29000, cah), new_asAs(new_esEs28(xwv28000, xwv29000, cah), new_ltEs19(xwv28001, xwv29001, cba))) 30.08/13.47 30.08/13.47 The set Q consists of the following terms: 30.08/13.47 30.08/13.47 new_esEs29(x0, x1, ty_Integer) 30.08/13.47 new_compare11(x0, x1, ty_Ordering) 30.08/13.47 new_esEs8(EQ, EQ) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.08/13.47 new_esEs20(x0, x1, ty_Float) 30.08/13.47 new_lt16(x0, x1, x2) 30.08/13.47 new_esEs9(x0, x1, ty_@0) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.08/13.47 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_lt20(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_compare24(x0, x1, False) 30.08/13.47 new_esEs5(Just(x0), Just(x1), ty_Float) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) 30.08/13.47 new_compare11(x0, x1, ty_Double) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.08/13.47 new_compare26(x0, x1, False) 30.08/13.47 new_esEs18(Integer(x0), Integer(x1)) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.08/13.47 new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs9(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_compare112(x0, x1, False, x2) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) 30.08/13.47 new_pePe(False, x0) 30.08/13.47 new_compare11(x0, x1, app(ty_[], x2)) 30.08/13.47 new_compare11(x0, x1, ty_Int) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.08/13.47 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.08/13.47 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 30.08/13.47 new_sr(Integer(x0), Integer(x1)) 30.08/13.47 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_primEqInt(Pos(Zero), Pos(Zero)) 30.08/13.47 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.08/13.47 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), ty_@0, x2) 30.08/13.47 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_compare27(Nothing, Nothing, False, x0) 30.08/13.47 new_lt8(x0, x1, app(ty_[], x2)) 30.08/13.47 new_ltEs8(x0, x1, ty_Float) 30.08/13.47 new_compare13(Char(x0), Char(x1)) 30.08/13.47 new_lt20(x0, x1, ty_@0) 30.08/13.47 new_lt6(x0, x1, x2) 30.08/13.47 new_esEs23(x0, x1, ty_Float) 30.08/13.47 new_ltEs20(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs25(x0, x1, ty_Ordering) 30.08/13.47 new_ltEs15(x0, x1) 30.08/13.47 new_esEs9(x0, x1, ty_Integer) 30.08/13.47 new_ltEs19(x0, x1, ty_Bool) 30.08/13.47 new_esEs22(x0, x1, ty_Float) 30.08/13.47 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_esEs10(x0, x1, ty_Integer) 30.08/13.47 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.08/13.47 new_primEqInt(Neg(Zero), Neg(Zero)) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.08/13.47 new_ltEs8(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_lt20(x0, x1, ty_Integer) 30.08/13.47 new_ltEs16(GT, EQ) 30.08/13.47 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_ltEs16(EQ, GT) 30.08/13.47 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 30.08/13.47 new_compare12(x0, x1) 30.08/13.47 new_ltEs13(x0, x1) 30.08/13.47 new_primPlusNat0(Succ(x0), Succ(x1)) 30.08/13.47 new_compare11(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_ltEs8(x0, x1, ty_Integer) 30.08/13.47 new_primMulInt(Pos(x0), Neg(x1)) 30.08/13.47 new_primMulInt(Neg(x0), Pos(x1)) 30.08/13.47 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.08/13.47 new_esEs5(Nothing, Nothing, x0) 30.08/13.47 new_ltEs16(LT, LT) 30.08/13.47 new_primMulInt(Neg(x0), Neg(x1)) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) 30.08/13.47 new_esEs17([], [], x0) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, ty_Double) 30.08/13.47 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_esEs29(x0, x1, ty_@0) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.08/13.47 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_esEs9(x0, x1, ty_Char) 30.08/13.47 new_compare115(x0, x1, True, x2, x3, x4) 30.08/13.47 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_primEqNat0(Succ(x0), Succ(x1)) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.08/13.47 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs21(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs29(x0, x1, ty_Bool) 30.08/13.47 new_esEs29(x0, x1, ty_Float) 30.08/13.47 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_esEs22(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs9(x0, x1, ty_Int) 30.08/13.47 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 30.08/13.47 new_asAs(True, x0) 30.08/13.47 new_primEqInt(Pos(Zero), Neg(Zero)) 30.08/13.47 new_primEqInt(Neg(Zero), Pos(Zero)) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), ty_Float, x2) 30.08/13.47 new_esEs5(Just(x0), Just(x1), ty_Integer) 30.08/13.47 new_primCompAux00(x0, GT) 30.08/13.47 new_lt20(x0, x1, ty_Bool) 30.08/13.47 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.08/13.47 new_esEs27(x0, x1, ty_Integer) 30.08/13.47 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_compare111(x0, x1, False) 30.08/13.47 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_lt20(x0, x1, ty_Char) 30.08/13.47 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_esEs28(x0, x1, ty_Double) 30.08/13.47 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.08/13.47 new_ltEs20(x0, x1, ty_Float) 30.08/13.47 new_ltEs19(x0, x1, ty_Integer) 30.08/13.47 new_esEs17([], :(x0, x1), x2) 30.08/13.47 new_esEs29(x0, x1, ty_Char) 30.08/13.47 new_esEs28(x0, x1, ty_Int) 30.08/13.47 new_esEs9(x0, x1, ty_Bool) 30.08/13.47 new_lt15(x0, x1) 30.08/13.47 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 30.08/13.47 new_compare0(:(x0, x1), [], x2) 30.08/13.47 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_esEs21(x0, x1, ty_Integer) 30.08/13.47 new_esEs22(x0, x1, ty_@0) 30.08/13.47 new_compare14(x0, x1) 30.08/13.47 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_primCompAux00(x0, EQ) 30.08/13.47 new_fsEs(x0) 30.08/13.47 new_lt20(x0, x1, ty_Ordering) 30.08/13.47 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.08/13.47 new_primCmpNat0(Succ(x0), Zero) 30.08/13.47 new_ltEs8(x0, x1, ty_@0) 30.08/13.47 new_ltEs19(x0, x1, ty_Ordering) 30.08/13.47 new_compare111(x0, x1, True) 30.08/13.47 new_primCmpNat0(Succ(x0), Succ(x1)) 30.08/13.47 new_ltEs16(GT, GT) 30.08/13.47 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 30.08/13.47 new_ltEs5(x0, x1, x2) 30.08/13.47 new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_compare11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_esEs21(x0, x1, ty_Bool) 30.08/13.47 new_esEs5(Just(x0), Just(x1), ty_@0) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), ty_Double, x2) 30.08/13.47 new_ltEs16(LT, EQ) 30.08/13.47 new_ltEs16(EQ, LT) 30.08/13.47 new_compare11(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.08/13.47 new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.08/13.47 new_ltEs19(x0, x1, ty_Double) 30.08/13.47 new_esEs24(x0, x1, ty_Integer) 30.08/13.47 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 30.08/13.47 new_compare11(x0, x1, ty_@0) 30.08/13.47 new_compare26(x0, x1, True) 30.08/13.47 new_lt17(x0, x1) 30.08/13.47 new_esEs23(x0, x1, ty_Integer) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, ty_@0) 30.08/13.47 new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.08/13.47 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_lt8(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.08/13.47 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs8(GT, GT) 30.08/13.47 new_esEs9(x0, x1, ty_Float) 30.08/13.47 new_esEs20(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs8(LT, EQ) 30.08/13.47 new_esEs8(EQ, LT) 30.08/13.47 new_esEs20(x0, x1, ty_Bool) 30.08/13.47 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_compare28(x0, x1, True, x2, x3, x4) 30.08/13.47 new_compare19(Integer(x0), Integer(x1)) 30.08/13.47 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.08/13.47 new_primPlusNat0(Zero, Succ(x0)) 30.08/13.47 new_esEs25(x0, x1, ty_Int) 30.08/13.47 new_esEs24(x0, x1, ty_Float) 30.08/13.47 new_esEs10(x0, x1, ty_Double) 30.08/13.47 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.08/13.47 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.08/13.47 new_esEs13(False, True) 30.08/13.47 new_esEs13(True, False) 30.08/13.47 new_esEs24(x0, x1, ty_Bool) 30.08/13.47 new_compare113(x0, x1, False, x2, x3) 30.08/13.47 new_compare0(:(x0, x1), :(x2, x3), x4) 30.08/13.47 new_ltEs14(x0, x1) 30.08/13.47 new_esEs8(LT, LT) 30.08/13.47 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.08/13.47 new_lt9(x0, x1, ty_Float) 30.08/13.47 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.08/13.47 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.08/13.47 new_primEqNat0(Succ(x0), Zero) 30.08/13.47 new_esEs22(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_compare11(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_compare23(x0, x1, False, x2, x3) 30.08/13.47 new_esEs26(x0, x1, ty_Integer) 30.08/13.47 new_lt8(x0, x1, ty_Integer) 30.08/13.47 new_esEs10(x0, x1, ty_@0) 30.08/13.47 new_lt11(x0, x1) 30.08/13.47 new_ltEs6(False, False) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_esEs17(:(x0, x1), [], x2) 30.08/13.47 new_esEs25(x0, x1, ty_Bool) 30.08/13.47 new_ltEs19(x0, x1, ty_@0) 30.08/13.47 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.08/13.47 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.08/13.47 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_asAs(False, x0) 30.08/13.47 new_esEs27(x0, x1, ty_Int) 30.08/13.47 new_esEs10(x0, x1, app(ty_[], x2)) 30.08/13.47 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.08/13.47 new_ltEs8(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs25(x0, x1, ty_Char) 30.08/13.47 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.08/13.47 new_esEs24(x0, x1, ty_Int) 30.08/13.47 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_lt8(x0, x1, ty_Ordering) 30.08/13.47 new_ltEs8(x0, x1, ty_Double) 30.08/13.47 new_esEs16(@0, @0) 30.08/13.47 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs23(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs22(x0, x1, ty_Double) 30.08/13.47 new_esEs24(x0, x1, ty_Char) 30.08/13.47 new_esEs20(x0, x1, ty_Integer) 30.08/13.47 new_primMulInt(Pos(x0), Pos(x1)) 30.08/13.47 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_primPlusNat0(Succ(x0), Zero) 30.08/13.47 new_esEs21(x0, x1, ty_Float) 30.08/13.47 new_compare110(x0, x1, False, x2, x3) 30.08/13.47 new_esEs28(x0, x1, ty_Integer) 30.08/13.47 new_lt8(x0, x1, ty_@0) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs5(Just(x0), Just(x1), ty_Ordering) 30.08/13.47 new_ltEs16(EQ, EQ) 30.08/13.47 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.08/13.47 new_ltEs4(x0, x1, x2) 30.08/13.47 new_esEs20(x0, x1, ty_Ordering) 30.08/13.47 new_esEs23(x0, x1, ty_Int) 30.08/13.47 new_esEs20(x0, x1, ty_Double) 30.08/13.47 new_lt8(x0, x1, ty_Bool) 30.08/13.47 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 30.08/13.47 new_ltEs20(x0, x1, ty_Int) 30.08/13.47 new_esEs21(x0, x1, ty_Char) 30.08/13.47 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_primMulNat0(Zero, Zero) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.08/13.47 new_esEs24(x0, x1, app(ty_[], x2)) 30.08/13.47 new_compare114(x0, x1, False) 30.08/13.47 new_ltEs17(Left(x0), Right(x1), x2, x3) 30.08/13.47 new_ltEs17(Right(x0), Left(x1), x2, x3) 30.08/13.47 new_ltEs20(x0, x1, ty_Double) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) 30.08/13.47 new_esEs28(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_esEs22(x0, x1, ty_Ordering) 30.08/13.47 new_esEs11(x0, x1) 30.08/13.47 new_esEs21(x0, x1, ty_Int) 30.08/13.47 new_compare0([], [], x0) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 30.08/13.47 new_lt9(x0, x1, ty_Char) 30.08/13.47 new_esEs23(x0, x1, ty_Ordering) 30.08/13.47 new_ltEs18(x0, x1) 30.08/13.47 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 30.08/13.47 new_compare9(@0, @0) 30.08/13.47 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.08/13.47 new_esEs5(Nothing, Just(x0), x1) 30.08/13.47 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_compare27(Nothing, Just(x0), False, x1) 30.08/13.47 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.08/13.47 new_esEs21(x0, x1, ty_Double) 30.08/13.47 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_lt9(x0, x1, ty_Int) 30.08/13.47 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.08/13.47 new_lt9(x0, x1, ty_@0) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 30.08/13.47 new_esEs5(Just(x0), Just(x1), ty_Int) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.08/13.47 new_esEs5(Just(x0), Just(x1), ty_Double) 30.08/13.47 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 30.08/13.47 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_esEs5(Just(x0), Just(x1), ty_Char) 30.08/13.47 new_esEs25(x0, x1, ty_Integer) 30.08/13.47 new_esEs29(x0, x1, app(ty_[], x2)) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.08/13.47 new_compare11(x0, x1, ty_Float) 30.08/13.47 new_esEs25(x0, x1, ty_Float) 30.08/13.47 new_lt4(x0, x1, x2, x3) 30.08/13.47 new_primPlusNat0(Zero, Zero) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.08/13.47 new_lt8(x0, x1, ty_Char) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) 30.08/13.47 new_primEqNat0(Zero, Succ(x0)) 30.08/13.47 new_not(True) 30.08/13.47 new_lt9(x0, x1, ty_Bool) 30.08/13.47 new_lt9(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_esEs25(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs20(x0, x1, ty_Char) 30.08/13.47 new_esEs8(EQ, GT) 30.08/13.47 new_esEs8(GT, EQ) 30.08/13.47 new_compare115(x0, x1, False, x2, x3, x4) 30.08/13.47 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_lt12(x0, x1) 30.08/13.47 new_esEs28(x0, x1, ty_@0) 30.08/13.47 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.08/13.47 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.08/13.47 new_esEs15(Float(x0, x1), Float(x2, x3)) 30.08/13.47 new_lt10(x0, x1) 30.08/13.47 new_esEs28(x0, x1, ty_Bool) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 30.08/13.47 new_esEs10(x0, x1, ty_Ordering) 30.08/13.47 new_esEs24(x0, x1, ty_Ordering) 30.08/13.47 new_esEs13(True, True) 30.08/13.47 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_lt9(x0, x1, ty_Double) 30.08/13.47 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.08/13.47 new_esEs28(x0, x1, ty_Float) 30.08/13.47 new_ltEs20(x0, x1, ty_Char) 30.08/13.47 new_esEs10(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_primCompAux00(x0, LT) 30.08/13.47 new_esEs23(x0, x1, ty_@0) 30.08/13.47 new_primMulNat0(Zero, Succ(x0)) 30.08/13.47 new_lt20(x0, x1, ty_Double) 30.08/13.47 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.08/13.47 new_esEs21(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_esEs21(x0, x1, ty_Ordering) 30.08/13.47 new_compare18(x0, x1) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.08/13.47 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.08/13.47 new_ltEs20(x0, x1, ty_@0) 30.08/13.47 new_esEs22(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_ltEs8(x0, x1, ty_Ordering) 30.08/13.47 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_esEs20(x0, x1, ty_Int) 30.08/13.47 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_esEs23(x0, x1, ty_Bool) 30.08/13.47 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.08/13.47 new_ltEs16(LT, GT) 30.08/13.47 new_ltEs16(GT, LT) 30.08/13.47 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_primPlusNat1(x0, x1) 30.08/13.47 new_lt5(x0, x1, x2, x3, x4) 30.08/13.47 new_ltEs10(x0, x1) 30.08/13.47 new_lt8(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.08/13.47 new_ltEs6(True, True) 30.08/13.47 new_esEs29(x0, x1, ty_Double) 30.08/13.47 new_esEs5(Just(x0), Nothing, x1) 30.08/13.47 new_esEs28(x0, x1, ty_Char) 30.08/13.47 new_compare25(x0, x1, False, x2, x3) 30.08/13.47 new_compare28(x0, x1, False, x2, x3, x4) 30.08/13.47 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_lt8(x0, x1, ty_Int) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.08/13.47 new_esEs29(x0, x1, ty_Int) 30.08/13.47 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_compare27(x0, x1, True, x2) 30.08/13.47 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_esEs23(x0, x1, ty_Char) 30.08/13.47 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.08/13.47 new_esEs26(x0, x1, ty_Int) 30.08/13.47 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.08/13.47 new_compare15(x0, x1, x2) 30.08/13.47 new_esEs23(x0, x1, ty_Double) 30.08/13.47 new_compare27(Just(x0), Just(x1), False, x2) 30.08/13.47 new_esEs9(x0, x1, ty_Double) 30.08/13.47 new_lt8(x0, x1, ty_Double) 30.08/13.47 new_compare110(x0, x1, True, x2, x3) 30.08/13.47 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 30.08/13.47 new_esEs7(Left(x0), Right(x1), x2, x3) 30.08/13.47 new_esEs7(Right(x0), Left(x1), x2, x3) 30.08/13.47 new_esEs10(x0, x1, ty_Char) 30.08/13.47 new_lt8(x0, x1, ty_Float) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), ty_Int, x2) 30.08/13.47 new_primMulNat0(Succ(x0), Zero) 30.08/13.47 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, ty_Char) 30.08/13.47 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 30.08/13.47 new_esEs20(x0, x1, ty_@0) 30.08/13.47 new_esEs22(x0, x1, ty_Bool) 30.08/13.47 new_esEs9(x0, x1, ty_Ordering) 30.08/13.47 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_pePe(True, x0) 30.08/13.47 new_primCompAux0(x0, x1, x2, x3) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) 30.08/13.47 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_compare7(x0, x1, x2, x3, x4) 30.08/13.47 new_compare114(x0, x1, True) 30.08/13.47 new_esEs8(LT, GT) 30.08/13.47 new_esEs8(GT, LT) 30.08/13.47 new_compare112(x0, x1, True, x2) 30.08/13.47 new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.08/13.47 new_ltEs19(x0, x1, ty_Int) 30.08/13.47 new_esEs5(Just(x0), Just(x1), ty_Bool) 30.08/13.47 new_ltEs8(x0, x1, ty_Bool) 30.08/13.47 new_lt20(x0, x1, ty_Int) 30.08/13.47 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.08/13.47 new_compare27(Just(x0), Nothing, False, x1) 30.08/13.47 new_compare11(x0, x1, ty_Integer) 30.08/13.47 new_ltEs12(Nothing, Nothing, x0) 30.08/13.47 new_ltEs19(x0, x1, ty_Char) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), ty_Char, x2) 30.08/13.47 new_lt9(x0, x1, app(ty_[], x2)) 30.08/13.47 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_lt9(x0, x1, ty_Integer) 30.08/13.47 new_esEs25(x0, x1, ty_@0) 30.08/13.47 new_compare23(x0, x1, True, x2, x3) 30.08/13.47 new_ltEs20(x0, x1, ty_Bool) 30.08/13.47 new_sr0(x0, x1) 30.08/13.47 new_lt9(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 30.08/13.47 new_compare25(x0, x1, True, x2, x3) 30.08/13.47 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.08/13.47 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.08/13.47 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.08/13.47 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.08/13.47 new_compare11(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_esEs22(x0, x1, ty_Integer) 30.08/13.47 new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 30.08/13.47 new_primMulNat0(Succ(x0), Succ(x1)) 30.08/13.47 new_esEs9(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_lt20(x0, x1, ty_Float) 30.08/13.47 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, ty_Int) 30.08/13.47 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.08/13.47 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs10(x0, x1, ty_Float) 30.08/13.47 new_primEqNat0(Zero, Zero) 30.08/13.47 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_esEs13(False, False) 30.08/13.47 new_compare10(x0, x1, x2, x3) 30.08/13.47 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_lt14(x0, x1) 30.08/13.47 new_compare113(x0, x1, True, x2, x3) 30.08/13.47 new_lt9(x0, x1, ty_Ordering) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.08/13.47 new_esEs12(Char(x0), Char(x1)) 30.08/13.47 new_esEs22(x0, x1, ty_Char) 30.08/13.47 new_not(False) 30.08/13.47 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_ltEs8(x0, x1, ty_Int) 30.08/13.47 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.08/13.47 new_compare6(x0, x1, x2, x3) 30.08/13.47 new_ltEs9(x0, x1) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 30.08/13.47 new_esEs10(x0, x1, ty_Bool) 30.08/13.47 new_ltEs8(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_compare0([], :(x0, x1), x2) 30.08/13.47 new_ltEs19(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs21(x0, x1, ty_@0) 30.08/13.47 new_lt13(x0, x1, x2) 30.08/13.47 new_compare11(x0, x1, ty_Char) 30.08/13.47 new_esEs22(x0, x1, ty_Int) 30.08/13.47 new_esEs24(x0, x1, ty_@0) 30.08/13.47 new_ltEs6(True, False) 30.08/13.47 new_esEs10(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_ltEs6(False, True) 30.08/13.47 new_esEs9(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs14(Double(x0, x1), Double(x2, x3)) 30.08/13.47 new_lt7(x0, x1) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, ty_Float) 30.08/13.47 new_ltEs12(Just(x0), Nothing, x1) 30.08/13.47 new_esEs21(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_lt19(x0, x1) 30.08/13.47 new_esEs29(x0, x1, ty_Ordering) 30.08/13.47 new_esEs10(x0, x1, ty_Int) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.08/13.47 new_ltEs12(Nothing, Just(x0), x1) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 30.08/13.47 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.08/13.47 new_lt18(x0, x1, x2, x3) 30.08/13.47 new_primCmpNat0(Zero, Succ(x0)) 30.08/13.47 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.08/13.47 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.08/13.47 new_ltEs20(x0, x1, ty_Integer) 30.08/13.47 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.08/13.47 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.08/13.47 new_esEs28(x0, x1, ty_Ordering) 30.08/13.47 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.08/13.47 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.08/13.47 new_esEs25(x0, x1, ty_Double) 30.08/13.47 new_ltEs8(x0, x1, ty_Char) 30.08/13.47 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.08/13.47 new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.08/13.47 new_ltEs20(x0, x1, ty_Ordering) 30.08/13.47 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_compare11(x0, x1, ty_Bool) 30.08/13.47 new_ltEs19(x0, x1, ty_Float) 30.08/13.47 new_esEs24(x0, x1, ty_Double) 30.08/13.47 new_primCmpNat0(Zero, Zero) 30.08/13.47 new_compare24(x0, x1, True) 30.08/13.47 new_esEs17(:(x0, x1), :(x2, x3), x4) 30.08/13.47 30.08/13.47 We have to consider all minimal (P,Q,R)-chains. 30.08/13.47 ---------------------------------------- 30.08/13.47 30.08/13.47 (34) TransformationProof (EQUIVALENT) 30.08/13.47 By rewriting [LPAR04] the rule new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(GT, GT), h, ba) at position [5] we obtained the following new rules [LPAR04]: 30.08/13.47 30.08/13.47 (new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba),new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba)) 30.08/13.47 30.08/13.47 30.08/13.47 ---------------------------------------- 30.08/13.47 30.08/13.47 (35) 30.08/13.47 Obligation: 30.08/13.47 Q DP problem: 30.08/13.47 The TRS P consists of the following rules: 30.08/13.47 30.08/13.47 new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare27(Just(xwv400), Just(xwv300), new_esEs29(xwv400, xwv300, h), h), GT), h, ba) 30.08/13.47 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bb, bc) -> new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs8(new_compare27(Just(xwv18), Just(xwv13), new_esEs5(Just(xwv18), Just(xwv13), bb), bb), LT), bb, bc) 30.08/13.47 new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv16, Just(xwv18), bb, bc) 30.08/13.47 new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba) -> new_delFromFM(xwv34, Just(xwv400), h, ba) 30.08/13.47 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv17, Just(xwv18), bb, bc) 30.08/13.47 new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba) 30.08/13.47 30.08/13.47 The TRS R consists of the following rules: 30.08/13.47 30.08/13.47 new_ltEs4(xwv2800, xwv2900, cb) -> new_fsEs(new_compare8(xwv2800, xwv2900, cb)) 30.08/13.47 new_lt7(xwv28000, xwv29000) -> new_esEs8(new_compare9(xwv28000, xwv29000), LT) 30.08/13.47 new_primCmpInt(Neg(Succ(xwv2800)), Pos(xwv290)) -> LT 30.08/13.47 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.08/13.47 new_lt18(xwv28000, xwv29000, cd, ce) -> new_esEs8(new_compare10(xwv28000, xwv29000, cd, ce), LT) 30.08/13.47 new_lt20(xwv28000, xwv29000, ty_Float) -> new_lt15(xwv28000, xwv29000) 30.08/13.47 new_esEs23(xwv4001, xwv3001, app(ty_[], bfg)) -> new_esEs17(xwv4001, xwv3001, bfg) 30.08/13.47 new_primPlusNat0(Zero, Zero) -> Zero 30.08/13.47 new_esEs25(xwv4000, xwv3000, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs6(xwv4000, xwv3000, caa, cab, cac) 30.08/13.47 new_pePe(True, xwv138) -> True 30.08/13.47 new_esEs22(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.47 new_ltEs8(xwv28002, xwv29002, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs7(xwv28002, xwv29002, he, hf, hg) 30.08/13.47 new_lt4(xwv28000, xwv29000, bd, be) -> new_esEs8(new_compare6(xwv28000, xwv29000, bd, be), LT) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Int) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.47 new_compare112(xwv125, xwv126, True, caf) -> LT 30.08/13.47 new_lt20(xwv28000, xwv29000, ty_Ordering) -> new_lt17(xwv28000, xwv29000) 30.08/13.47 new_esEs29(xwv400, xwv300, ty_Char) -> new_esEs12(xwv400, xwv300) 30.08/13.47 new_esEs10(xwv28001, xwv29001, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs6(xwv28001, xwv29001, gc, gd, ge) 30.08/13.47 new_compare10(xwv28000, xwv29000, cd, ce) -> new_compare23(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, cd, ce), cd, ce) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_@0) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.47 new_ltEs20(xwv2800, xwv2900, app(app(ty_@2, cah), cba)) -> new_ltEs11(xwv2800, xwv2900, cah, cba) 30.08/13.47 new_ltEs20(xwv2800, xwv2900, ty_Integer) -> new_ltEs18(xwv2800, xwv2900) 30.08/13.47 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.08/13.47 new_primCmpInt(Pos(Zero), Neg(Succ(xwv2900))) -> GT 30.08/13.47 new_compare14(xwv28000, xwv29000) -> new_compare26(xwv28000, xwv29000, new_esEs13(xwv28000, xwv29000)) 30.08/13.47 new_esEs24(xwv4002, xwv3002, ty_Int) -> new_esEs11(xwv4002, xwv3002) 30.08/13.47 new_esEs24(xwv4002, xwv3002, ty_Ordering) -> new_esEs8(xwv4002, xwv3002) 30.08/13.47 new_ltEs14(xwv2800, xwv2900) -> new_fsEs(new_compare17(xwv2800, xwv2900)) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, app(ty_[], cbf)) -> new_ltEs5(xwv28001, xwv29001, cbf) 30.08/13.47 new_primCmpInt(Neg(Succ(xwv2800)), Neg(xwv290)) -> new_primCmpNat0(xwv290, Succ(xwv2800)) 30.08/13.47 new_compare113(xwv28000, xwv29000, False, cd, ce) -> GT 30.08/13.47 new_lt9(xwv28000, xwv29000, app(ty_[], eg)) -> new_lt16(xwv28000, xwv29000, eg) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.47 new_lt8(xwv28001, xwv29001, app(app(ty_@2, fg), fh)) -> new_lt4(xwv28001, xwv29001, fg, fh) 30.08/13.47 new_primMulNat0(Succ(xwv400100), Succ(xwv300000)) -> new_primPlusNat1(new_primMulNat0(xwv400100, Succ(xwv300000)), xwv300000) 30.08/13.47 new_lt8(xwv28001, xwv29001, app(app(ty_Either, gf), gg)) -> new_lt18(xwv28001, xwv29001, gf, gg) 30.08/13.47 new_compare15(xwv28000, xwv29000, cbb) -> new_compare27(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, cbb), cbb) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.47 new_esEs28(xwv28000, xwv29000, app(app(ty_Either, cd), ce)) -> new_esEs7(xwv28000, xwv29000, cd, ce) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Ordering, cce) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.47 new_compare26(xwv28000, xwv29000, True) -> EQ 30.08/13.47 new_esEs10(xwv28001, xwv29001, ty_Char) -> new_esEs12(xwv28001, xwv29001) 30.08/13.47 new_compare18(xwv28000, xwv29000) -> new_compare24(xwv28000, xwv29000, new_esEs8(xwv28000, xwv29000)) 30.08/13.47 new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False 30.08/13.47 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 30.08/13.47 new_esEs8(GT, GT) -> True 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(xwv4000, xwv3000, dcd, dce, dcf) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Ratio, cge)) -> new_esEs19(xwv4000, xwv3000, cge) 30.08/13.47 new_esEs9(xwv28000, xwv29000, app(ty_Ratio, ff)) -> new_esEs19(xwv28000, xwv29000, ff) 30.08/13.47 new_fsEs(xwv131) -> new_not(new_esEs8(xwv131, GT)) 30.08/13.47 new_esEs23(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 30.08/13.47 new_compare16(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.47 new_compare16(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Float, cce) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.47 new_esEs29(xwv400, xwv300, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs6(xwv400, xwv300, bda, bdb, bdc) 30.08/13.47 new_esEs24(xwv4002, xwv3002, app(app(ty_@2, bgc), bgd)) -> new_esEs4(xwv4002, xwv3002, bgc, bgd) 30.08/13.47 new_compare17(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.47 new_lt12(xwv28000, xwv29000) -> new_esEs8(new_compare14(xwv28000, xwv29000), LT) 30.08/13.47 new_esEs8(EQ, EQ) -> True 30.08/13.47 new_esEs24(xwv4002, xwv3002, ty_Bool) -> new_esEs13(xwv4002, xwv3002) 30.08/13.47 new_primEqNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.47 new_ltEs20(xwv2800, xwv2900, ty_Bool) -> new_ltEs6(xwv2800, xwv2900) 30.08/13.47 new_esEs25(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, app(app(ty_@2, cbc), cbd)) -> new_ltEs11(xwv28001, xwv29001, cbc, cbd) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Int) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.47 new_not(True) -> False 30.08/13.47 new_esEs24(xwv4002, xwv3002, ty_Integer) -> new_esEs18(xwv4002, xwv3002) 30.08/13.47 new_compare11(xwv28000, xwv29000, ty_Integer) -> new_compare19(xwv28000, xwv29000) 30.08/13.47 new_primCompAux00(xwv160, LT) -> LT 30.08/13.47 new_primCmpNat0(Zero, Zero) -> EQ 30.08/13.47 new_esEs21(xwv4001, xwv3001, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs6(xwv4001, xwv3001, bce, bcf, bcg) 30.08/13.47 new_lt13(xwv28000, xwv29000, cbb) -> new_esEs8(new_compare15(xwv28000, xwv29000, cbb), LT) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, ty_Bool) -> new_ltEs6(xwv28001, xwv29001) 30.08/13.47 new_compare115(xwv28000, xwv29000, True, bf, bg, bh) -> LT 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Double) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, app(app(app(ty_@3, cbg), cbh), cca)) -> new_ltEs7(xwv28001, xwv29001, cbg, cbh, cca) 30.08/13.47 new_esEs22(xwv4000, xwv3000, app(ty_Ratio, bea)) -> new_esEs19(xwv4000, xwv3000, bea) 30.08/13.47 new_esEs29(xwv400, xwv300, ty_Int) -> new_esEs11(xwv400, xwv300) 30.08/13.47 new_compare27(Nothing, Nothing, False, cff) -> LT 30.08/13.47 new_esEs20(xwv4000, xwv3000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs6(xwv4000, xwv3000, bbc, bbd, bbe) 30.08/13.47 new_esEs20(xwv4000, xwv3000, app(app(ty_Either, baf), bag)) -> new_esEs7(xwv4000, xwv3000, baf, bag) 30.08/13.47 new_esEs28(xwv28000, xwv29000, ty_Bool) -> new_esEs13(xwv28000, xwv29000) 30.08/13.47 new_ltEs16(GT, EQ) -> False 30.08/13.47 new_esEs29(xwv400, xwv300, ty_Integer) -> new_esEs18(xwv400, xwv300) 30.08/13.47 new_esEs4(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bac, bad) -> new_asAs(new_esEs20(xwv4000, xwv3000, bac), new_esEs21(xwv4001, xwv3001, bad)) 30.08/13.47 new_esEs10(xwv28001, xwv29001, ty_Ordering) -> new_esEs8(xwv28001, xwv29001) 30.08/13.47 new_compare27(xwv280, xwv290, True, cff) -> EQ 30.08/13.47 new_compare11(xwv28000, xwv29000, ty_Int) -> new_compare12(xwv28000, xwv29000) 30.08/13.47 new_ltEs17(Left(xwv28000), Right(xwv29000), cdh, cce) -> True 30.08/13.47 new_primEqNat0(Succ(xwv40000), Zero) -> False 30.08/13.47 new_primEqNat0(Zero, Succ(xwv30000)) -> False 30.08/13.47 new_lt9(xwv28000, xwv29000, app(ty_Maybe, ef)) -> new_lt13(xwv28000, xwv29000, ef) 30.08/13.47 new_esEs28(xwv28000, xwv29000, ty_Int) -> new_esEs11(xwv28000, xwv29000) 30.08/13.47 new_esEs29(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_@0) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.47 new_lt8(xwv28001, xwv29001, app(app(app(ty_@3, gc), gd), ge)) -> new_lt5(xwv28001, xwv29001, gc, gd, ge) 30.08/13.47 new_ltEs8(xwv28002, xwv29002, app(ty_[], hd)) -> new_ltEs5(xwv28002, xwv29002, hd) 30.08/13.47 new_lt20(xwv28000, xwv29000, ty_Integer) -> new_lt19(xwv28000, xwv29000) 30.08/13.47 new_primCompAux00(xwv160, GT) -> GT 30.08/13.47 new_ltEs8(xwv28002, xwv29002, app(ty_Ratio, bab)) -> new_ltEs4(xwv28002, xwv29002, bab) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.47 new_compare11(xwv28000, xwv29000, ty_Bool) -> new_compare14(xwv28000, xwv29000) 30.08/13.47 new_lt9(xwv28000, xwv29000, app(app(ty_@2, ed), ee)) -> new_lt4(xwv28000, xwv29000, ed, ee) 30.08/13.47 new_esEs20(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.47 new_esEs23(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.47 new_ltEs6(True, True) -> True 30.08/13.47 new_primCmpInt(Pos(Succ(xwv2800)), Neg(xwv290)) -> GT 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(ty_Either, ceh), cfa)) -> new_ltEs17(xwv28000, xwv29000, ceh, cfa) 30.08/13.47 new_esEs20(xwv4000, xwv3000, app(app(ty_@2, bah), bba)) -> new_esEs4(xwv4000, xwv3000, bah, bba) 30.08/13.47 new_ltEs16(LT, LT) -> True 30.08/13.47 new_ltEs19(xwv28001, xwv29001, ty_Float) -> new_ltEs14(xwv28001, xwv29001) 30.08/13.47 new_compare11(xwv28000, xwv29000, ty_Char) -> new_compare13(xwv28000, xwv29000) 30.08/13.47 new_esEs23(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.47 new_compare110(xwv28000, xwv29000, True, bd, be) -> LT 30.08/13.47 new_lt9(xwv28000, xwv29000, app(app(ty_Either, fc), fd)) -> new_lt18(xwv28000, xwv29000, fc, fd) 30.08/13.47 new_esEs29(xwv400, xwv300, ty_Float) -> new_esEs15(xwv400, xwv300) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, ty_Integer) -> new_ltEs18(xwv28001, xwv29001) 30.08/13.47 new_ltEs8(xwv28002, xwv29002, ty_Ordering) -> new_ltEs16(xwv28002, xwv29002) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Bool, cce) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.47 new_ltEs20(xwv2800, xwv2900, ty_Float) -> new_ltEs14(xwv2800, xwv2900) 30.08/13.47 new_lt17(xwv28000, xwv29000) -> new_esEs8(new_compare18(xwv28000, xwv29000), LT) 30.08/13.47 new_primCmpNat0(Zero, Succ(xwv2900)) -> LT 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_[], ced)) -> new_ltEs5(xwv28000, xwv29000, ced) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, dbb), dbc), dbd), cfe) -> new_esEs6(xwv4000, xwv3000, dbb, dbc, dbd) 30.08/13.47 new_ltEs20(xwv2800, xwv2900, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs7(xwv2800, xwv2900, ea, eb, ec) 30.08/13.47 new_esEs22(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.47 new_esEs28(xwv28000, xwv29000, ty_Char) -> new_esEs12(xwv28000, xwv29000) 30.08/13.47 new_esEs28(xwv28000, xwv29000, ty_Integer) -> new_esEs18(xwv28000, xwv29000) 30.08/13.47 new_ltEs10(xwv2800, xwv2900) -> new_fsEs(new_compare13(xwv2800, xwv2900)) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Double, cfe) -> new_esEs14(xwv4000, xwv3000) 30.08/13.47 new_ltEs8(xwv28002, xwv29002, ty_Double) -> new_ltEs13(xwv28002, xwv29002) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, app(ty_Ratio, ccd)) -> new_ltEs4(xwv28001, xwv29001, ccd) 30.08/13.47 new_sr(Integer(xwv280000), Integer(xwv290010)) -> Integer(new_primMulInt(xwv280000, xwv290010)) 30.08/13.47 new_primCmpNat0(Succ(xwv2800), Zero) -> GT 30.08/13.47 new_pePe(False, xwv138) -> xwv138 30.08/13.47 new_compare11(xwv28000, xwv29000, app(ty_Maybe, da)) -> new_compare15(xwv28000, xwv29000, da) 30.08/13.47 new_esEs23(xwv4001, xwv3001, ty_Bool) -> new_esEs13(xwv4001, xwv3001) 30.08/13.47 new_esEs9(xwv28000, xwv29000, app(ty_Maybe, ef)) -> new_esEs5(xwv28000, xwv29000, ef) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(ty_@2, dag), dah), cfe) -> new_esEs4(xwv4000, xwv3000, dag, dah) 30.08/13.47 new_ltEs13(xwv2800, xwv2900) -> new_fsEs(new_compare16(xwv2800, xwv2900)) 30.08/13.47 new_compare25(xwv28000, xwv29000, True, bd, be) -> EQ 30.08/13.47 new_ltEs8(xwv28002, xwv29002, ty_Integer) -> new_ltEs18(xwv28002, xwv29002) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.47 new_esEs10(xwv28001, xwv29001, app(app(ty_Either, gf), gg)) -> new_esEs7(xwv28001, xwv29001, gf, gg) 30.08/13.47 new_lt20(xwv28000, xwv29000, ty_Char) -> new_lt11(xwv28000, xwv29000) 30.08/13.47 new_ltEs16(LT, GT) -> True 30.08/13.47 new_lt8(xwv28001, xwv29001, app(ty_[], gb)) -> new_lt16(xwv28001, xwv29001, gb) 30.08/13.47 new_esEs22(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.47 new_lt9(xwv28000, xwv29000, ty_Int) -> new_lt10(xwv28000, xwv29000) 30.08/13.47 new_esEs25(xwv4000, xwv3000, app(ty_Ratio, bhh)) -> new_esEs19(xwv4000, xwv3000, bhh) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_Maybe, cch), cce) -> new_ltEs12(xwv28000, xwv29000, cch) 30.08/13.47 new_esEs17([], [], bhb) -> True 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Double) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.47 new_ltEs16(LT, EQ) -> True 30.08/13.47 new_ltEs16(EQ, LT) -> False 30.08/13.47 new_compare23(xwv28000, xwv29000, True, cd, ce) -> EQ 30.08/13.47 new_esEs8(LT, EQ) -> False 30.08/13.47 new_esEs8(EQ, LT) -> False 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.47 new_esEs21(xwv4001, xwv3001, app(app(ty_@2, bcb), bcc)) -> new_esEs4(xwv4001, xwv3001, bcb, bcc) 30.08/13.47 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 30.08/13.47 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 30.08/13.47 new_esEs28(xwv28000, xwv29000, ty_@0) -> new_esEs16(xwv28000, xwv29000) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, app(app(ty_Either, ccb), ccc)) -> new_ltEs17(xwv28001, xwv29001, ccb, ccc) 30.08/13.47 new_esEs21(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(xwv4000, xwv3000, cgf, cgg, cgh) 30.08/13.47 new_compare114(xwv28000, xwv29000, True) -> LT 30.08/13.47 new_ltEs16(GT, LT) -> False 30.08/13.47 new_esEs25(xwv4000, xwv3000, app(app(ty_@2, bhf), bhg)) -> new_esEs4(xwv4000, xwv3000, bhf, bhg) 30.08/13.47 new_esEs21(xwv4001, xwv3001, app(ty_Maybe, bbg)) -> new_esEs5(xwv4001, xwv3001, bbg) 30.08/13.47 new_esEs23(xwv4001, xwv3001, app(app(ty_Either, beg), beh)) -> new_esEs7(xwv4001, xwv3001, beg, beh) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Integer, cce) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.47 new_esEs5(Nothing, Nothing, cfc) -> True 30.08/13.47 new_ltEs20(xwv2800, xwv2900, app(app(ty_Either, cdh), cce)) -> new_ltEs17(xwv2800, xwv2900, cdh, cce) 30.08/13.47 new_ltEs6(False, False) -> True 30.08/13.47 new_esEs25(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.47 new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.47 new_esEs10(xwv28001, xwv29001, ty_Integer) -> new_esEs18(xwv28001, xwv29001) 30.08/13.47 new_lt8(xwv28001, xwv29001, app(ty_Maybe, ga)) -> new_lt13(xwv28001, xwv29001, ga) 30.08/13.47 new_esEs5(Nothing, Just(xwv3000), cfc) -> False 30.08/13.47 new_esEs5(Just(xwv4000), Nothing, cfc) -> False 30.08/13.47 new_primCmpInt(Neg(Zero), Pos(Succ(xwv2900))) -> LT 30.08/13.47 new_compare13(Char(xwv28000), Char(xwv29000)) -> new_primCmpNat0(xwv28000, xwv29000) 30.08/13.47 new_primMulInt(Pos(xwv40010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.47 new_esEs10(xwv28001, xwv29001, ty_Int) -> new_esEs11(xwv28001, xwv29001) 30.08/13.47 new_esEs20(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(ty_Either, dae), daf), cfe) -> new_esEs7(xwv4000, xwv3000, dae, daf) 30.08/13.47 new_esEs9(xwv28000, xwv29000, app(app(ty_@2, ed), ee)) -> new_esEs4(xwv28000, xwv29000, ed, ee) 30.08/13.47 new_esEs21(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.47 new_esEs9(xwv28000, xwv29000, ty_Ordering) -> new_esEs8(xwv28000, xwv29000) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(ty_Either, cde), cdf), cce) -> new_ltEs17(xwv28000, xwv29000, cde, cdf) 30.08/13.47 new_esEs24(xwv4002, xwv3002, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs6(xwv4002, xwv3002, bgf, bgg, bgh) 30.08/13.47 new_esEs10(xwv28001, xwv29001, app(app(ty_@2, fg), fh)) -> new_esEs4(xwv28001, xwv29001, fg, fh) 30.08/13.47 new_primMulNat0(Succ(xwv400100), Zero) -> Zero 30.08/13.47 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 30.08/13.47 new_ltEs8(xwv28002, xwv29002, ty_@0) -> new_ltEs15(xwv28002, xwv29002) 30.08/13.47 new_esEs18(Integer(xwv4000), Integer(xwv3000)) -> new_primEqInt(xwv4000, xwv3000) 30.08/13.47 new_esEs25(xwv4000, xwv3000, app(app(ty_Either, bhd), bhe)) -> new_esEs7(xwv4000, xwv3000, bhd, bhe) 30.08/13.47 new_compare11(xwv28000, xwv29000, app(app(ty_@2, cf), cg)) -> new_compare6(xwv28000, xwv29000, cf, cg) 30.08/13.47 new_esEs24(xwv4002, xwv3002, ty_Char) -> new_esEs12(xwv4002, xwv3002) 30.08/13.47 new_ltEs18(xwv2800, xwv2900) -> new_fsEs(new_compare19(xwv2800, xwv2900)) 30.08/13.47 new_esEs23(xwv4001, xwv3001, app(ty_Maybe, bef)) -> new_esEs5(xwv4001, xwv3001, bef) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Char) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.47 new_esEs20(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.47 new_lt9(xwv28000, xwv29000, ty_Ordering) -> new_lt17(xwv28000, xwv29000) 30.08/13.47 new_lt20(xwv28000, xwv29000, ty_Bool) -> new_lt12(xwv28000, xwv29000) 30.08/13.47 new_primPlusNat0(Succ(xwv33200), Zero) -> Succ(xwv33200) 30.08/13.47 new_primPlusNat0(Zero, Succ(xwv9700)) -> Succ(xwv9700) 30.08/13.47 new_esEs28(xwv28000, xwv29000, app(ty_[], cag)) -> new_esEs17(xwv28000, xwv29000, cag) 30.08/13.47 new_ltEs16(EQ, GT) -> True 30.08/13.47 new_esEs20(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.47 new_esEs17(:(xwv4000, xwv4001), :(xwv3000, xwv3001), bhb) -> new_asAs(new_esEs25(xwv4000, xwv3000, bhb), new_esEs17(xwv4001, xwv3001, bhb)) 30.08/13.47 new_ltEs16(EQ, EQ) -> True 30.08/13.47 new_lt8(xwv28001, xwv29001, ty_Double) -> new_lt14(xwv28001, xwv29001) 30.08/13.47 new_ltEs6(True, False) -> False 30.08/13.47 new_lt9(xwv28000, xwv29000, app(app(app(ty_@3, eh), fa), fb)) -> new_lt5(xwv28000, xwv29000, eh, fa, fb) 30.08/13.47 new_esEs8(LT, LT) -> True 30.08/13.47 new_compare19(Integer(xwv28000), Integer(xwv29000)) -> new_primCmpInt(xwv28000, xwv29000) 30.08/13.47 new_lt8(xwv28001, xwv29001, ty_Ordering) -> new_lt17(xwv28001, xwv29001) 30.08/13.47 new_compare111(xwv28000, xwv29000, True) -> LT 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, cdb), cdc), cdd), cce) -> new_ltEs7(xwv28000, xwv29000, cdb, cdc, cdd) 30.08/13.47 new_esEs10(xwv28001, xwv29001, ty_Float) -> new_esEs15(xwv28001, xwv29001) 30.08/13.47 new_esEs29(xwv400, xwv300, app(ty_[], bhb)) -> new_esEs17(xwv400, xwv300, bhb) 30.08/13.47 new_esEs22(xwv4000, xwv3000, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs6(xwv4000, xwv3000, beb, bec, bed) 30.08/13.47 new_esEs9(xwv28000, xwv29000, ty_Float) -> new_esEs15(xwv28000, xwv29000) 30.08/13.47 new_lt20(xwv28000, xwv29000, app(ty_Ratio, ca)) -> new_lt6(xwv28000, xwv29000, ca) 30.08/13.47 new_esEs9(xwv28000, xwv29000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs6(xwv28000, xwv29000, eh, fa, fb) 30.08/13.47 new_esEs21(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.47 new_ltEs8(xwv28002, xwv29002, app(app(ty_Either, hh), baa)) -> new_ltEs17(xwv28002, xwv29002, hh, baa) 30.08/13.47 new_compare23(xwv28000, xwv29000, False, cd, ce) -> new_compare113(xwv28000, xwv29000, new_ltEs17(xwv28000, xwv29000, cd, ce), cd, ce) 30.08/13.47 new_esEs13(True, True) -> True 30.08/13.47 new_ltEs20(xwv2800, xwv2900, ty_Double) -> new_ltEs13(xwv2800, xwv2900) 30.08/13.47 new_compare17(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.47 new_compare17(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.47 new_esEs28(xwv28000, xwv29000, ty_Double) -> new_esEs14(xwv28000, xwv29000) 30.08/13.47 new_ltEs20(xwv2800, xwv2900, ty_Ordering) -> new_ltEs16(xwv2800, xwv2900) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, chf), chg), chh)) -> new_ltEs7(xwv28000, xwv29000, chf, chg, chh) 30.08/13.47 new_esEs20(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Char, cfe) -> new_esEs12(xwv4000, xwv3000) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Bool, cfe) -> new_esEs13(xwv4000, xwv3000) 30.08/13.47 new_esEs23(xwv4001, xwv3001, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs6(xwv4001, xwv3001, bfd, bfe, bff) 30.08/13.47 new_compare11(xwv28000, xwv29000, app(app(app(ty_@3, dc), dd), de)) -> new_compare7(xwv28000, xwv29000, dc, dd, de) 30.08/13.47 new_esEs25(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_Maybe, chd)) -> new_ltEs12(xwv28000, xwv29000, chd) 30.08/13.47 new_ltEs8(xwv28002, xwv29002, ty_Float) -> new_ltEs14(xwv28002, xwv29002) 30.08/13.47 new_primMulInt(Neg(xwv40010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.47 new_compare24(xwv28000, xwv29000, False) -> new_compare114(xwv28000, xwv29000, new_ltEs16(xwv28000, xwv29000)) 30.08/13.47 new_primCmpInt(Pos(Zero), Pos(Succ(xwv2900))) -> new_primCmpNat0(Zero, Succ(xwv2900)) 30.08/13.47 new_esEs29(xwv400, xwv300, ty_Double) -> new_esEs14(xwv400, xwv300) 30.08/13.47 new_esEs10(xwv28001, xwv29001, app(ty_Maybe, ga)) -> new_esEs5(xwv28001, xwv29001, ga) 30.08/13.47 new_esEs25(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.47 new_esEs22(xwv4000, xwv3000, app(ty_Maybe, bdd)) -> new_esEs5(xwv4000, xwv3000, bdd) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, ty_Ordering) -> new_ltEs16(xwv28001, xwv29001) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_Ratio, dcc)) -> new_esEs19(xwv4000, xwv3000, dcc) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.47 new_lt9(xwv28000, xwv29000, ty_Double) -> new_lt14(xwv28000, xwv29000) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, ty_Double) -> new_ltEs13(xwv28001, xwv29001) 30.08/13.47 new_compare11(xwv28000, xwv29000, ty_Ordering) -> new_compare18(xwv28000, xwv29000) 30.08/13.47 new_esEs24(xwv4002, xwv3002, app(app(ty_Either, bga), bgb)) -> new_esEs7(xwv4002, xwv3002, bga, bgb) 30.08/13.47 new_compare114(xwv28000, xwv29000, False) -> GT 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Maybe, cfh)) -> new_esEs5(xwv4000, xwv3000, cfh) 30.08/13.47 new_esEs23(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 30.08/13.47 new_ltEs20(xwv2800, xwv2900, app(ty_Ratio, cb)) -> new_ltEs4(xwv2800, xwv2900, cb) 30.08/13.47 new_compare28(xwv28000, xwv29000, False, bf, bg, bh) -> new_compare115(xwv28000, xwv29000, new_ltEs7(xwv28000, xwv29000, bf, bg, bh), bf, bg, bh) 30.08/13.47 new_esEs23(xwv4001, xwv3001, app(app(ty_@2, bfa), bfb)) -> new_esEs4(xwv4001, xwv3001, bfa, bfb) 30.08/13.47 new_esEs21(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Int, cfe) -> new_esEs11(xwv4000, xwv3000) 30.08/13.47 new_compare113(xwv28000, xwv29000, True, cd, ce) -> LT 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_Ratio, cdg), cce) -> new_ltEs4(xwv28000, xwv29000, cdg) 30.08/13.47 new_esEs10(xwv28001, xwv29001, ty_@0) -> new_esEs16(xwv28001, xwv29001) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_[], che)) -> new_ltEs5(xwv28000, xwv29000, che) 30.08/13.47 new_primMulInt(Pos(xwv40010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.47 new_primMulInt(Neg(xwv40010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Ordering) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.47 new_esEs12(Char(xwv4000), Char(xwv3000)) -> new_primEqNat0(xwv4000, xwv3000) 30.08/13.47 new_esEs22(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.47 new_esEs22(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.47 new_esEs22(xwv4000, xwv3000, app(app(ty_@2, bdg), bdh)) -> new_esEs4(xwv4000, xwv3000, bdg, bdh) 30.08/13.47 new_lt9(xwv28000, xwv29000, ty_Integer) -> new_lt19(xwv28000, xwv29000) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Float) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.47 new_lt8(xwv28001, xwv29001, ty_@0) -> new_lt7(xwv28001, xwv29001) 30.08/13.47 new_lt9(xwv28000, xwv29000, app(ty_Ratio, ff)) -> new_lt6(xwv28000, xwv29000, ff) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, ty_Int) -> new_ltEs9(xwv28001, xwv29001) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(ty_@2, dca), dcb)) -> new_esEs4(xwv4000, xwv3000, dca, dcb) 30.08/13.47 new_lt19(xwv28000, xwv29000) -> new_esEs8(new_compare19(xwv28000, xwv29000), LT) 30.08/13.47 new_esEs24(xwv4002, xwv3002, ty_Double) -> new_esEs14(xwv4002, xwv3002) 30.08/13.47 new_esEs29(xwv400, xwv300, app(ty_Maybe, cfc)) -> new_esEs5(xwv400, xwv300, cfc) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(ty_@2, ccf), ccg), cce) -> new_ltEs11(xwv28000, xwv29000, ccf, ccg) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_Maybe, dbf)) -> new_esEs5(xwv4000, xwv3000, dbf) 30.08/13.47 new_esEs13(False, False) -> True 30.08/13.47 new_compare16(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.47 new_ltEs9(xwv2800, xwv2900) -> new_fsEs(new_compare12(xwv2800, xwv2900)) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.47 new_lt20(xwv28000, xwv29000, app(ty_Maybe, cbb)) -> new_lt13(xwv28000, xwv29000, cbb) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_Either, cga), cgb)) -> new_esEs7(xwv4000, xwv3000, cga, cgb) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Integer, cfe) -> new_esEs18(xwv4000, xwv3000) 30.08/13.47 new_ltEs7(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ea, eb, ec) -> new_pePe(new_lt9(xwv28000, xwv29000, ea), new_asAs(new_esEs9(xwv28000, xwv29000, ea), new_pePe(new_lt8(xwv28001, xwv29001, eb), new_asAs(new_esEs10(xwv28001, xwv29001, eb), new_ltEs8(xwv28002, xwv29002, ec))))) 30.08/13.47 new_esEs23(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 30.08/13.47 new_esEs26(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.47 new_compare6(xwv28000, xwv29000, bd, be) -> new_compare25(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, bd, be), bd, be) 30.08/13.47 new_lt20(xwv28000, xwv29000, ty_Int) -> new_lt10(xwv28000, xwv29000) 30.08/13.47 new_esEs24(xwv4002, xwv3002, app(ty_Ratio, bge)) -> new_esEs19(xwv4002, xwv3002, bge) 30.08/13.47 new_esEs29(xwv400, xwv300, ty_@0) -> new_esEs16(xwv400, xwv300) 30.08/13.47 new_compare0([], :(xwv29000, xwv29001), cc) -> LT 30.08/13.47 new_asAs(True, xwv64) -> xwv64 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Bool) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.47 new_compare11(xwv28000, xwv29000, ty_Double) -> new_compare16(xwv28000, xwv29000) 30.08/13.47 new_esEs25(xwv4000, xwv3000, app(ty_[], cad)) -> new_esEs17(xwv4000, xwv3000, cad) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(ty_@2, chb), chc)) -> new_ltEs11(xwv28000, xwv29000, chb, chc) 30.08/13.47 new_esEs10(xwv28001, xwv29001, app(ty_[], gb)) -> new_esEs17(xwv28001, xwv29001, gb) 30.08/13.47 new_ltEs20(xwv2800, xwv2900, ty_@0) -> new_ltEs15(xwv2800, xwv2900) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.47 new_esEs14(Double(xwv4000, xwv4001), Double(xwv3000, xwv3001)) -> new_esEs11(new_sr0(xwv4000, xwv3001), new_sr0(xwv4001, xwv3000)) 30.08/13.47 new_lt16(xwv28000, xwv29000, cag) -> new_esEs8(new_compare0(xwv28000, xwv29000, cag), LT) 30.08/13.47 new_esEs20(xwv4000, xwv3000, app(ty_Maybe, bae)) -> new_esEs5(xwv4000, xwv3000, bae) 30.08/13.47 new_esEs16(@0, @0) -> True 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_@2, cgc), cgd)) -> new_esEs4(xwv4000, xwv3000, cgc, cgd) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.47 new_esEs22(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, ty_@0) -> new_ltEs15(xwv28001, xwv29001) 30.08/13.47 new_primCmpInt(Pos(Succ(xwv2800)), Pos(xwv290)) -> new_primCmpNat0(Succ(xwv2800), xwv290) 30.08/13.47 new_esEs9(xwv28000, xwv29000, app(ty_[], eg)) -> new_esEs17(xwv28000, xwv29000, eg) 30.08/13.47 new_primPlusNat1(xwv107, xwv300000) -> new_primPlusNat0(xwv107, Succ(xwv300000)) 30.08/13.47 new_lt9(xwv28000, xwv29000, ty_Char) -> new_lt11(xwv28000, xwv29000) 30.08/13.47 new_esEs9(xwv28000, xwv29000, ty_Int) -> new_esEs11(xwv28000, xwv29000) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_Maybe, dad), cfe) -> new_esEs5(xwv4000, xwv3000, dad) 30.08/13.47 new_primCompAux00(xwv160, EQ) -> xwv160 30.08/13.47 new_compare0([], [], cc) -> EQ 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.47 new_ltEs16(GT, GT) -> True 30.08/13.47 new_compare27(Nothing, Just(xwv2900), False, cff) -> LT 30.08/13.47 new_esEs28(xwv28000, xwv29000, ty_Float) -> new_esEs15(xwv28000, xwv29000) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Int, cce) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.47 new_compare27(Just(xwv2800), Just(xwv2900), False, cff) -> new_compare112(xwv2800, xwv2900, new_ltEs20(xwv2800, xwv2900, cff), cff) 30.08/13.47 new_esEs21(xwv4001, xwv3001, app(app(ty_Either, bbh), bca)) -> new_esEs7(xwv4001, xwv3001, bbh, bca) 30.08/13.47 new_primMulNat0(Zero, Zero) -> Zero 30.08/13.47 new_lt20(xwv28000, xwv29000, app(ty_[], cag)) -> new_lt16(xwv28000, xwv29000, cag) 30.08/13.47 new_lt14(xwv28000, xwv29000) -> new_esEs8(new_compare16(xwv28000, xwv29000), LT) 30.08/13.47 new_esEs23(xwv4001, xwv3001, ty_Char) -> new_esEs12(xwv4001, xwv3001) 30.08/13.47 new_esEs24(xwv4002, xwv3002, app(ty_Maybe, bfh)) -> new_esEs5(xwv4002, xwv3002, bfh) 30.08/13.47 new_lt8(xwv28001, xwv29001, ty_Char) -> new_lt11(xwv28001, xwv29001) 30.08/13.47 new_esEs10(xwv28001, xwv29001, ty_Double) -> new_esEs14(xwv28001, xwv29001) 30.08/13.47 new_compare111(xwv28000, xwv29000, False) -> GT 30.08/13.47 new_ltEs20(xwv2800, xwv2900, app(ty_Maybe, cfg)) -> new_ltEs12(xwv2800, xwv2900, cfg) 30.08/13.47 new_lt15(xwv28000, xwv29000) -> new_esEs8(new_compare17(xwv28000, xwv29000), LT) 30.08/13.47 new_compare9(@0, @0) -> EQ 30.08/13.47 new_compare115(xwv28000, xwv29000, False, bf, bg, bh) -> GT 30.08/13.47 new_esEs21(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 30.08/13.47 new_esEs22(xwv4000, xwv3000, app(app(ty_Either, bde), bdf)) -> new_esEs7(xwv4000, xwv3000, bde, bdf) 30.08/13.47 new_compare28(xwv28000, xwv29000, True, bf, bg, bh) -> EQ 30.08/13.47 new_esEs9(xwv28000, xwv29000, app(app(ty_Either, fc), fd)) -> new_esEs7(xwv28000, xwv29000, fc, fd) 30.08/13.47 new_esEs20(xwv4000, xwv3000, app(ty_[], bbf)) -> new_esEs17(xwv4000, xwv3000, bbf) 30.08/13.47 new_compare8(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Int) -> new_compare12(new_sr0(xwv28000, xwv29001), new_sr0(xwv29000, xwv28001)) 30.08/13.47 new_esEs22(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Integer) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.47 new_ltEs8(xwv28002, xwv29002, ty_Int) -> new_ltEs9(xwv28002, xwv29002) 30.08/13.47 new_esEs9(xwv28000, xwv29000, ty_Integer) -> new_esEs18(xwv28000, xwv29000) 30.08/13.47 new_esEs29(xwv400, xwv300, app(ty_Ratio, cae)) -> new_esEs19(xwv400, xwv300, cae) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(ty_[], dcg)) -> new_esEs17(xwv4000, xwv3000, dcg) 30.08/13.47 new_esEs25(xwv4000, xwv3000, app(ty_Maybe, bhc)) -> new_esEs5(xwv4000, xwv3000, bhc) 30.08/13.47 new_primCompAux0(xwv28000, xwv29000, xwv148, cc) -> new_primCompAux00(xwv148, new_compare11(xwv28000, xwv29000, cc)) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.47 new_esEs22(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.47 new_lt9(xwv28000, xwv29000, ty_Float) -> new_lt15(xwv28000, xwv29000) 30.08/13.47 new_ltEs6(False, True) -> True 30.08/13.47 new_esEs9(xwv28000, xwv29000, ty_@0) -> new_esEs16(xwv28000, xwv29000) 30.08/13.47 new_compare25(xwv28000, xwv29000, False, bd, be) -> new_compare110(xwv28000, xwv29000, new_ltEs11(xwv28000, xwv29000, bd, be), bd, be) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Ordering, cfe) -> new_esEs8(xwv4000, xwv3000) 30.08/13.47 new_esEs20(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.47 new_esEs21(xwv4001, xwv3001, app(ty_[], bch)) -> new_esEs17(xwv4001, xwv3001, bch) 30.08/13.47 new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False 30.08/13.47 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Char, cce) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.47 new_esEs13(False, True) -> False 30.08/13.47 new_esEs13(True, False) -> False 30.08/13.47 new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.47 new_esEs28(xwv28000, xwv29000, app(ty_Ratio, ca)) -> new_esEs19(xwv28000, xwv29000, ca) 30.08/13.47 new_lt8(xwv28001, xwv29001, ty_Int) -> new_lt10(xwv28001, xwv29001) 30.08/13.47 new_compare11(xwv28000, xwv29000, ty_@0) -> new_compare9(xwv28000, xwv29000) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Bool) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Ordering) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.47 new_compare24(xwv28000, xwv29000, True) -> EQ 30.08/13.47 new_lt5(xwv28000, xwv29000, bf, bg, bh) -> new_esEs8(new_compare7(xwv28000, xwv29000, bf, bg, bh), LT) 30.08/13.47 new_lt20(xwv28000, xwv29000, ty_@0) -> new_lt7(xwv28000, xwv29000) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_[], dbe), cfe) -> new_esEs17(xwv4000, xwv3000, dbe) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_Ratio, cfb)) -> new_ltEs4(xwv28000, xwv29000, cfb) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, app(ty_Maybe, cbe)) -> new_ltEs12(xwv28001, xwv29001, cbe) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, app(app(ty_Either, dbg), dbh)) -> new_esEs7(xwv4000, xwv3000, dbg, dbh) 30.08/13.47 new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> False 30.08/13.47 new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> False 30.08/13.47 new_primCmpInt(Neg(Zero), Neg(Succ(xwv2900))) -> new_primCmpNat0(Succ(xwv2900), Zero) 30.08/13.47 new_esEs23(xwv4001, xwv3001, app(ty_Ratio, bfc)) -> new_esEs19(xwv4001, xwv3001, bfc) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_@0, cce) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.47 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.08/13.47 new_lt8(xwv28001, xwv29001, app(ty_Ratio, gh)) -> new_lt6(xwv28001, xwv29001, gh) 30.08/13.47 new_lt8(xwv28001, xwv29001, ty_Bool) -> new_lt12(xwv28001, xwv29001) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, ty_Char) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.47 new_esEs25(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.47 new_esEs28(xwv28000, xwv29000, app(ty_Maybe, cbb)) -> new_esEs5(xwv28000, xwv29000, cbb) 30.08/13.47 new_lt9(xwv28000, xwv29000, ty_@0) -> new_lt7(xwv28000, xwv29000) 30.08/13.47 new_lt11(xwv28000, xwv29000) -> new_esEs8(new_compare13(xwv28000, xwv29000), LT) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Double, cce) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.47 new_esEs23(xwv4001, xwv3001, ty_Double) -> new_esEs14(xwv4001, xwv3001) 30.08/13.47 new_lt20(xwv28000, xwv29000, ty_Double) -> new_lt14(xwv28000, xwv29000) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(ty_@2, cea), ceb)) -> new_ltEs11(xwv28000, xwv29000, cea, ceb) 30.08/13.47 new_ltEs8(xwv28002, xwv29002, ty_Bool) -> new_ltEs6(xwv28002, xwv29002) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(ty_Either, daa), dab)) -> new_ltEs17(xwv28000, xwv29000, daa, dab) 30.08/13.47 new_esEs24(xwv4002, xwv3002, ty_Float) -> new_esEs15(xwv4002, xwv3002) 30.08/13.47 new_compare8(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Integer) -> new_compare19(new_sr(xwv28000, xwv29001), new_sr(xwv29000, xwv28001)) 30.08/13.47 new_esEs25(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.47 new_compare26(xwv28000, xwv29000, False) -> new_compare111(xwv28000, xwv29000, new_ltEs6(xwv28000, xwv29000)) 30.08/13.47 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_[], cda), cce) -> new_ltEs5(xwv28000, xwv29000, cda) 30.08/13.47 new_not(False) -> True 30.08/13.47 new_esEs21(xwv4001, xwv3001, ty_Double) -> new_esEs14(xwv4001, xwv3001) 30.08/13.47 new_esEs21(xwv4001, xwv3001, ty_Bool) -> new_esEs13(xwv4001, xwv3001) 30.08/13.47 new_esEs24(xwv4002, xwv3002, app(ty_[], bha)) -> new_esEs17(xwv4002, xwv3002, bha) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_Ratio, dac)) -> new_ltEs4(xwv28000, xwv29000, dac) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(ty_Maybe, cec)) -> new_ltEs12(xwv28000, xwv29000, cec) 30.08/13.47 new_esEs9(xwv28000, xwv29000, ty_Char) -> new_esEs12(xwv28000, xwv29000) 30.08/13.47 new_compare0(:(xwv28000, xwv28001), [], cc) -> GT 30.08/13.47 new_esEs8(LT, GT) -> False 30.08/13.47 new_esEs8(GT, LT) -> False 30.08/13.47 new_compare27(Just(xwv2800), Nothing, False, cff) -> GT 30.08/13.47 new_primPlusNat0(Succ(xwv33200), Succ(xwv9700)) -> Succ(Succ(new_primPlusNat0(xwv33200, xwv9700))) 30.08/13.47 new_esEs24(xwv4002, xwv3002, ty_@0) -> new_esEs16(xwv4002, xwv3002) 30.08/13.47 new_esEs27(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.47 new_esEs25(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.47 new_esEs21(xwv4001, xwv3001, ty_Char) -> new_esEs12(xwv4001, xwv3001) 30.08/13.47 new_compare16(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.47 new_compare11(xwv28000, xwv29000, ty_Float) -> new_compare17(xwv28000, xwv29000) 30.08/13.47 new_esEs6(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), bda, bdb, bdc) -> new_asAs(new_esEs22(xwv4000, xwv3000, bda), new_asAs(new_esEs23(xwv4001, xwv3001, bdb), new_esEs24(xwv4002, xwv3002, bdc))) 30.08/13.47 new_esEs9(xwv28000, xwv29000, ty_Bool) -> new_esEs13(xwv28000, xwv29000) 30.08/13.47 new_esEs27(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.47 new_sr0(xwv4001, xwv3000) -> new_primMulInt(xwv4001, xwv3000) 30.08/13.47 new_lt9(xwv28000, xwv29000, ty_Bool) -> new_lt12(xwv28000, xwv29000) 30.08/13.47 new_ltEs19(xwv28001, xwv29001, ty_Char) -> new_ltEs10(xwv28001, xwv29001) 30.08/13.47 new_lt20(xwv28000, xwv29000, app(app(ty_Either, cd), ce)) -> new_lt18(xwv28000, xwv29000, cd, ce) 30.08/13.47 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.08/13.47 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.08/13.47 new_ltEs8(xwv28002, xwv29002, app(app(ty_@2, ha), hb)) -> new_ltEs11(xwv28002, xwv29002, ha, hb) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.47 new_ltEs8(xwv28002, xwv29002, ty_Char) -> new_ltEs10(xwv28002, xwv29002) 30.08/13.47 new_compare0(:(xwv28000, xwv28001), :(xwv29000, xwv29001), cc) -> new_primCompAux0(xwv28000, xwv29000, new_compare0(xwv28001, xwv29001, cc), cc) 30.08/13.47 new_lt20(xwv28000, xwv29000, app(app(ty_@2, bd), be)) -> new_lt4(xwv28000, xwv29000, bd, be) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), ty_@0, cfe) -> new_esEs16(xwv4000, xwv3000) 30.08/13.47 new_esEs22(xwv4000, xwv3000, app(ty_[], bee)) -> new_esEs17(xwv4000, xwv3000, bee) 30.08/13.47 new_compare11(xwv28000, xwv29000, app(ty_[], db)) -> new_compare0(xwv28000, xwv29000, db) 30.08/13.47 new_esEs10(xwv28001, xwv29001, app(ty_Ratio, gh)) -> new_esEs19(xwv28001, xwv29001, gh) 30.08/13.47 new_lt8(xwv28001, xwv29001, ty_Integer) -> new_lt19(xwv28001, xwv29001) 30.08/13.47 new_esEs9(xwv28000, xwv29000, ty_Double) -> new_esEs14(xwv28000, xwv29000) 30.08/13.47 new_esEs10(xwv28001, xwv29001, ty_Bool) -> new_esEs13(xwv28001, xwv29001) 30.08/13.47 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_[], cha)) -> new_esEs17(xwv4000, xwv3000, cha) 30.08/13.47 new_lt6(xwv28000, xwv29000, ca) -> new_esEs8(new_compare8(xwv28000, xwv29000, ca), LT) 30.08/13.47 new_ltEs12(Nothing, Just(xwv29000), cfg) -> True 30.08/13.47 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.08/13.47 new_esEs21(xwv4001, xwv3001, app(ty_Ratio, bcd)) -> new_esEs19(xwv4001, xwv3001, bcd) 30.08/13.47 new_esEs28(xwv28000, xwv29000, app(app(ty_@2, bd), be)) -> new_esEs4(xwv28000, xwv29000, bd, be) 30.08/13.47 new_esEs7(Right(xwv4000), Right(xwv3000), cfd, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.47 new_primCmpNat0(Succ(xwv2800), Succ(xwv2900)) -> new_primCmpNat0(xwv2800, xwv2900) 30.08/13.47 new_ltEs15(xwv2800, xwv2900) -> new_fsEs(new_compare9(xwv2800, xwv2900)) 30.08/13.47 new_ltEs8(xwv28002, xwv29002, app(ty_Maybe, hc)) -> new_ltEs12(xwv28002, xwv29002, hc) 30.08/13.47 new_lt8(xwv28001, xwv29001, ty_Float) -> new_lt15(xwv28001, xwv29001) 30.08/13.47 new_ltEs17(Right(xwv28000), Right(xwv29000), cdh, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs7(xwv28000, xwv29000, cee, cef, ceg) 30.08/13.47 new_compare11(xwv28000, xwv29000, app(app(ty_Either, df), dg)) -> new_compare10(xwv28000, xwv29000, df, dg) 30.08/13.47 new_esEs28(xwv28000, xwv29000, ty_Ordering) -> new_esEs8(xwv28000, xwv29000) 30.08/13.47 new_compare12(xwv28, xwv29) -> new_primCmpInt(xwv28, xwv29) 30.08/13.47 new_ltEs12(Nothing, Nothing, cfg) -> True 30.08/13.47 new_ltEs20(xwv2800, xwv2900, ty_Char) -> new_ltEs10(xwv2800, xwv2900) 30.08/13.47 new_esEs19(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), cae) -> new_asAs(new_esEs26(xwv4000, xwv3000, cae), new_esEs27(xwv4001, xwv3001, cae)) 30.08/13.47 new_ltEs12(Just(xwv28000), Nothing, cfg) -> False 30.08/13.47 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.08/13.47 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.08/13.47 new_esEs29(xwv400, xwv300, app(app(ty_@2, bac), bad)) -> new_esEs4(xwv400, xwv300, bac, bad) 30.08/13.47 new_ltEs17(Right(xwv28000), Left(xwv29000), cdh, cce) -> False 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Float) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.47 new_ltEs5(xwv2800, xwv2900, cc) -> new_fsEs(new_compare0(xwv2800, xwv2900, cc)) 30.08/13.47 new_compare110(xwv28000, xwv29000, False, bd, be) -> GT 30.08/13.47 new_compare11(xwv28000, xwv29000, app(ty_Ratio, dh)) -> new_compare8(xwv28000, xwv29000, dh) 30.08/13.47 new_primEqNat0(Zero, Zero) -> True 30.08/13.47 new_ltEs20(xwv2800, xwv2900, ty_Int) -> new_ltEs9(xwv2800, xwv2900) 30.08/13.47 new_esEs20(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.47 new_ltEs20(xwv2800, xwv2900, app(ty_[], cc)) -> new_ltEs5(xwv2800, xwv2900, cc) 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Float, cfe) -> new_esEs15(xwv4000, xwv3000) 30.08/13.47 new_esEs28(xwv28000, xwv29000, app(app(app(ty_@3, bf), bg), bh)) -> new_esEs6(xwv28000, xwv29000, bf, bg, bh) 30.08/13.47 new_esEs29(xwv400, xwv300, ty_Ordering) -> new_esEs8(xwv400, xwv300) 30.08/13.47 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Integer) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.47 new_compare7(xwv28000, xwv29000, bf, bg, bh) -> new_compare28(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bf, bg, bh), bf, bg, bh) 30.08/13.47 new_asAs(False, xwv64) -> False 30.08/13.47 new_esEs17(:(xwv4000, xwv4001), [], bhb) -> False 30.08/13.47 new_esEs17([], :(xwv3000, xwv3001), bhb) -> False 30.08/13.47 new_esEs20(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.47 new_esEs29(xwv400, xwv300, app(app(ty_Either, cfd), cfe)) -> new_esEs7(xwv400, xwv300, cfd, cfe) 30.08/13.47 new_esEs26(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.47 new_esEs25(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.47 new_lt10(xwv280, xwv290) -> new_esEs8(new_compare12(xwv280, xwv290), LT) 30.08/13.47 new_esEs8(EQ, GT) -> False 30.08/13.47 new_esEs8(GT, EQ) -> False 30.08/13.47 new_compare112(xwv125, xwv126, False, caf) -> GT 30.08/13.47 new_esEs20(xwv4000, xwv3000, app(ty_Ratio, bbb)) -> new_esEs19(xwv4000, xwv3000, bbb) 30.08/13.47 new_lt20(xwv28000, xwv29000, app(app(app(ty_@3, bf), bg), bh)) -> new_lt5(xwv28000, xwv29000, bf, bg, bh) 30.08/13.47 new_compare17(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.47 new_esEs15(Float(xwv4000, xwv4001), Float(xwv3000, xwv3001)) -> new_esEs11(new_sr0(xwv4000, xwv3001), new_sr0(xwv4001, xwv3000)) 30.08/13.47 new_esEs7(Left(xwv4000), Right(xwv3000), cfd, cfe) -> False 30.08/13.47 new_esEs7(Right(xwv4000), Left(xwv3000), cfd, cfe) -> False 30.08/13.47 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_Ratio, dba), cfe) -> new_esEs19(xwv4000, xwv3000, dba) 30.08/13.47 new_esEs11(xwv400, xwv300) -> new_primEqInt(xwv400, xwv300) 30.08/13.47 new_ltEs11(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), cah, cba) -> new_pePe(new_lt20(xwv28000, xwv29000, cah), new_asAs(new_esEs28(xwv28000, xwv29000, cah), new_ltEs19(xwv28001, xwv29001, cba))) 30.08/13.47 30.08/13.47 The set Q consists of the following terms: 30.08/13.47 30.08/13.47 new_esEs29(x0, x1, ty_Integer) 30.08/13.47 new_compare11(x0, x1, ty_Ordering) 30.08/13.47 new_esEs8(EQ, EQ) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.08/13.47 new_esEs20(x0, x1, ty_Float) 30.08/13.47 new_lt16(x0, x1, x2) 30.08/13.47 new_esEs9(x0, x1, ty_@0) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.08/13.47 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_lt20(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_compare24(x0, x1, False) 30.08/13.47 new_esEs5(Just(x0), Just(x1), ty_Float) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) 30.08/13.47 new_compare11(x0, x1, ty_Double) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.08/13.47 new_compare26(x0, x1, False) 30.08/13.47 new_esEs18(Integer(x0), Integer(x1)) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.08/13.47 new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs9(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_compare112(x0, x1, False, x2) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) 30.08/13.47 new_pePe(False, x0) 30.08/13.47 new_compare11(x0, x1, app(ty_[], x2)) 30.08/13.47 new_compare11(x0, x1, ty_Int) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.08/13.47 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.08/13.47 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 30.08/13.47 new_sr(Integer(x0), Integer(x1)) 30.08/13.47 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_primEqInt(Pos(Zero), Pos(Zero)) 30.08/13.47 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.08/13.47 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), ty_@0, x2) 30.08/13.47 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_compare27(Nothing, Nothing, False, x0) 30.08/13.47 new_lt8(x0, x1, app(ty_[], x2)) 30.08/13.47 new_ltEs8(x0, x1, ty_Float) 30.08/13.47 new_compare13(Char(x0), Char(x1)) 30.08/13.47 new_lt20(x0, x1, ty_@0) 30.08/13.47 new_lt6(x0, x1, x2) 30.08/13.47 new_esEs23(x0, x1, ty_Float) 30.08/13.47 new_ltEs20(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs25(x0, x1, ty_Ordering) 30.08/13.47 new_ltEs15(x0, x1) 30.08/13.47 new_esEs9(x0, x1, ty_Integer) 30.08/13.47 new_ltEs19(x0, x1, ty_Bool) 30.08/13.47 new_esEs22(x0, x1, ty_Float) 30.08/13.47 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_esEs10(x0, x1, ty_Integer) 30.08/13.47 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.08/13.47 new_primEqInt(Neg(Zero), Neg(Zero)) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.08/13.47 new_ltEs8(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_lt20(x0, x1, ty_Integer) 30.08/13.47 new_ltEs16(GT, EQ) 30.08/13.47 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_ltEs16(EQ, GT) 30.08/13.47 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 30.08/13.47 new_compare12(x0, x1) 30.08/13.47 new_ltEs13(x0, x1) 30.08/13.47 new_primPlusNat0(Succ(x0), Succ(x1)) 30.08/13.47 new_compare11(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_ltEs8(x0, x1, ty_Integer) 30.08/13.47 new_primMulInt(Pos(x0), Neg(x1)) 30.08/13.47 new_primMulInt(Neg(x0), Pos(x1)) 30.08/13.47 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.08/13.47 new_esEs5(Nothing, Nothing, x0) 30.08/13.47 new_ltEs16(LT, LT) 30.08/13.47 new_primMulInt(Neg(x0), Neg(x1)) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) 30.08/13.47 new_esEs17([], [], x0) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, ty_Double) 30.08/13.47 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_esEs29(x0, x1, ty_@0) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.08/13.47 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_esEs9(x0, x1, ty_Char) 30.08/13.47 new_compare115(x0, x1, True, x2, x3, x4) 30.08/13.47 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_primEqNat0(Succ(x0), Succ(x1)) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.08/13.47 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs21(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs29(x0, x1, ty_Bool) 30.08/13.47 new_esEs29(x0, x1, ty_Float) 30.08/13.47 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_esEs22(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs9(x0, x1, ty_Int) 30.08/13.47 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 30.08/13.47 new_asAs(True, x0) 30.08/13.47 new_primEqInt(Pos(Zero), Neg(Zero)) 30.08/13.47 new_primEqInt(Neg(Zero), Pos(Zero)) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), ty_Float, x2) 30.08/13.47 new_esEs5(Just(x0), Just(x1), ty_Integer) 30.08/13.47 new_primCompAux00(x0, GT) 30.08/13.47 new_lt20(x0, x1, ty_Bool) 30.08/13.47 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.08/13.47 new_esEs27(x0, x1, ty_Integer) 30.08/13.47 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_compare111(x0, x1, False) 30.08/13.47 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_lt20(x0, x1, ty_Char) 30.08/13.47 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_esEs28(x0, x1, ty_Double) 30.08/13.47 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.08/13.47 new_ltEs20(x0, x1, ty_Float) 30.08/13.47 new_ltEs19(x0, x1, ty_Integer) 30.08/13.47 new_esEs17([], :(x0, x1), x2) 30.08/13.47 new_esEs29(x0, x1, ty_Char) 30.08/13.47 new_esEs28(x0, x1, ty_Int) 30.08/13.47 new_esEs9(x0, x1, ty_Bool) 30.08/13.47 new_lt15(x0, x1) 30.08/13.47 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 30.08/13.47 new_compare0(:(x0, x1), [], x2) 30.08/13.47 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_esEs21(x0, x1, ty_Integer) 30.08/13.47 new_esEs22(x0, x1, ty_@0) 30.08/13.47 new_compare14(x0, x1) 30.08/13.47 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_primCompAux00(x0, EQ) 30.08/13.47 new_fsEs(x0) 30.08/13.47 new_lt20(x0, x1, ty_Ordering) 30.08/13.47 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.08/13.47 new_primCmpNat0(Succ(x0), Zero) 30.08/13.47 new_ltEs8(x0, x1, ty_@0) 30.08/13.47 new_ltEs19(x0, x1, ty_Ordering) 30.08/13.47 new_compare111(x0, x1, True) 30.08/13.47 new_primCmpNat0(Succ(x0), Succ(x1)) 30.08/13.47 new_ltEs16(GT, GT) 30.08/13.47 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 30.08/13.47 new_ltEs5(x0, x1, x2) 30.08/13.47 new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_compare11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_esEs21(x0, x1, ty_Bool) 30.08/13.47 new_esEs5(Just(x0), Just(x1), ty_@0) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), ty_Double, x2) 30.08/13.47 new_ltEs16(LT, EQ) 30.08/13.47 new_ltEs16(EQ, LT) 30.08/13.47 new_compare11(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.08/13.47 new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.08/13.47 new_ltEs19(x0, x1, ty_Double) 30.08/13.47 new_esEs24(x0, x1, ty_Integer) 30.08/13.47 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 30.08/13.47 new_compare11(x0, x1, ty_@0) 30.08/13.47 new_compare26(x0, x1, True) 30.08/13.47 new_lt17(x0, x1) 30.08/13.47 new_esEs23(x0, x1, ty_Integer) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, ty_@0) 30.08/13.47 new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.08/13.47 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_lt8(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.08/13.47 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs8(GT, GT) 30.08/13.47 new_esEs9(x0, x1, ty_Float) 30.08/13.47 new_esEs20(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs8(LT, EQ) 30.08/13.47 new_esEs8(EQ, LT) 30.08/13.47 new_esEs20(x0, x1, ty_Bool) 30.08/13.47 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_compare28(x0, x1, True, x2, x3, x4) 30.08/13.47 new_compare19(Integer(x0), Integer(x1)) 30.08/13.47 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.08/13.47 new_primPlusNat0(Zero, Succ(x0)) 30.08/13.47 new_esEs25(x0, x1, ty_Int) 30.08/13.47 new_esEs24(x0, x1, ty_Float) 30.08/13.47 new_esEs10(x0, x1, ty_Double) 30.08/13.47 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.08/13.47 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.08/13.47 new_esEs13(False, True) 30.08/13.47 new_esEs13(True, False) 30.08/13.47 new_esEs24(x0, x1, ty_Bool) 30.08/13.47 new_compare113(x0, x1, False, x2, x3) 30.08/13.47 new_compare0(:(x0, x1), :(x2, x3), x4) 30.08/13.47 new_ltEs14(x0, x1) 30.08/13.47 new_esEs8(LT, LT) 30.08/13.47 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.08/13.47 new_lt9(x0, x1, ty_Float) 30.08/13.47 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.08/13.47 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.08/13.47 new_primEqNat0(Succ(x0), Zero) 30.08/13.47 new_esEs22(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_compare11(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_compare23(x0, x1, False, x2, x3) 30.08/13.47 new_esEs26(x0, x1, ty_Integer) 30.08/13.47 new_lt8(x0, x1, ty_Integer) 30.08/13.47 new_esEs10(x0, x1, ty_@0) 30.08/13.47 new_lt11(x0, x1) 30.08/13.47 new_ltEs6(False, False) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_esEs17(:(x0, x1), [], x2) 30.08/13.47 new_esEs25(x0, x1, ty_Bool) 30.08/13.47 new_ltEs19(x0, x1, ty_@0) 30.08/13.47 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.08/13.47 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.08/13.47 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_asAs(False, x0) 30.08/13.47 new_esEs27(x0, x1, ty_Int) 30.08/13.47 new_esEs10(x0, x1, app(ty_[], x2)) 30.08/13.47 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.08/13.47 new_ltEs8(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs25(x0, x1, ty_Char) 30.08/13.47 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.08/13.47 new_esEs24(x0, x1, ty_Int) 30.08/13.47 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_lt8(x0, x1, ty_Ordering) 30.08/13.47 new_ltEs8(x0, x1, ty_Double) 30.08/13.47 new_esEs16(@0, @0) 30.08/13.47 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs23(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs22(x0, x1, ty_Double) 30.08/13.47 new_esEs24(x0, x1, ty_Char) 30.08/13.47 new_esEs20(x0, x1, ty_Integer) 30.08/13.47 new_primMulInt(Pos(x0), Pos(x1)) 30.08/13.47 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_primPlusNat0(Succ(x0), Zero) 30.08/13.47 new_esEs21(x0, x1, ty_Float) 30.08/13.47 new_compare110(x0, x1, False, x2, x3) 30.08/13.47 new_esEs28(x0, x1, ty_Integer) 30.08/13.47 new_lt8(x0, x1, ty_@0) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs5(Just(x0), Just(x1), ty_Ordering) 30.08/13.47 new_ltEs16(EQ, EQ) 30.08/13.47 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.08/13.47 new_ltEs4(x0, x1, x2) 30.08/13.47 new_esEs20(x0, x1, ty_Ordering) 30.08/13.47 new_esEs23(x0, x1, ty_Int) 30.08/13.47 new_esEs20(x0, x1, ty_Double) 30.08/13.47 new_lt8(x0, x1, ty_Bool) 30.08/13.47 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 30.08/13.47 new_ltEs20(x0, x1, ty_Int) 30.08/13.47 new_esEs21(x0, x1, ty_Char) 30.08/13.47 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_primMulNat0(Zero, Zero) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.08/13.47 new_esEs24(x0, x1, app(ty_[], x2)) 30.08/13.47 new_compare114(x0, x1, False) 30.08/13.47 new_ltEs17(Left(x0), Right(x1), x2, x3) 30.08/13.47 new_ltEs17(Right(x0), Left(x1), x2, x3) 30.08/13.47 new_ltEs20(x0, x1, ty_Double) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) 30.08/13.47 new_esEs28(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_esEs22(x0, x1, ty_Ordering) 30.08/13.47 new_esEs11(x0, x1) 30.08/13.47 new_esEs21(x0, x1, ty_Int) 30.08/13.47 new_compare0([], [], x0) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 30.08/13.47 new_lt9(x0, x1, ty_Char) 30.08/13.47 new_esEs23(x0, x1, ty_Ordering) 30.08/13.47 new_ltEs18(x0, x1) 30.08/13.47 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 30.08/13.47 new_compare9(@0, @0) 30.08/13.47 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.08/13.47 new_esEs5(Nothing, Just(x0), x1) 30.08/13.47 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_compare27(Nothing, Just(x0), False, x1) 30.08/13.47 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.08/13.47 new_esEs21(x0, x1, ty_Double) 30.08/13.47 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_lt9(x0, x1, ty_Int) 30.08/13.47 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.08/13.47 new_lt9(x0, x1, ty_@0) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 30.08/13.47 new_esEs5(Just(x0), Just(x1), ty_Int) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.08/13.47 new_esEs5(Just(x0), Just(x1), ty_Double) 30.08/13.47 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 30.08/13.47 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_esEs5(Just(x0), Just(x1), ty_Char) 30.08/13.47 new_esEs25(x0, x1, ty_Integer) 30.08/13.47 new_esEs29(x0, x1, app(ty_[], x2)) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.08/13.47 new_compare11(x0, x1, ty_Float) 30.08/13.47 new_esEs25(x0, x1, ty_Float) 30.08/13.47 new_lt4(x0, x1, x2, x3) 30.08/13.47 new_primPlusNat0(Zero, Zero) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.08/13.47 new_lt8(x0, x1, ty_Char) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) 30.08/13.47 new_primEqNat0(Zero, Succ(x0)) 30.08/13.47 new_not(True) 30.08/13.47 new_lt9(x0, x1, ty_Bool) 30.08/13.47 new_lt9(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_esEs25(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs20(x0, x1, ty_Char) 30.08/13.47 new_esEs8(EQ, GT) 30.08/13.47 new_esEs8(GT, EQ) 30.08/13.47 new_compare115(x0, x1, False, x2, x3, x4) 30.08/13.47 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_lt12(x0, x1) 30.08/13.47 new_esEs28(x0, x1, ty_@0) 30.08/13.47 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.08/13.47 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.08/13.47 new_esEs15(Float(x0, x1), Float(x2, x3)) 30.08/13.47 new_lt10(x0, x1) 30.08/13.47 new_esEs28(x0, x1, ty_Bool) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 30.08/13.47 new_esEs10(x0, x1, ty_Ordering) 30.08/13.47 new_esEs24(x0, x1, ty_Ordering) 30.08/13.47 new_esEs13(True, True) 30.08/13.47 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_lt9(x0, x1, ty_Double) 30.08/13.47 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.08/13.47 new_esEs28(x0, x1, ty_Float) 30.08/13.47 new_ltEs20(x0, x1, ty_Char) 30.08/13.47 new_esEs10(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_primCompAux00(x0, LT) 30.08/13.47 new_esEs23(x0, x1, ty_@0) 30.08/13.47 new_primMulNat0(Zero, Succ(x0)) 30.08/13.47 new_lt20(x0, x1, ty_Double) 30.08/13.47 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.08/13.47 new_esEs21(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_esEs21(x0, x1, ty_Ordering) 30.08/13.47 new_compare18(x0, x1) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.08/13.47 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.08/13.47 new_ltEs20(x0, x1, ty_@0) 30.08/13.47 new_esEs22(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_ltEs8(x0, x1, ty_Ordering) 30.08/13.47 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_esEs20(x0, x1, ty_Int) 30.08/13.47 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_esEs23(x0, x1, ty_Bool) 30.08/13.47 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.08/13.47 new_ltEs16(LT, GT) 30.08/13.47 new_ltEs16(GT, LT) 30.08/13.47 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_primPlusNat1(x0, x1) 30.08/13.47 new_lt5(x0, x1, x2, x3, x4) 30.08/13.47 new_ltEs10(x0, x1) 30.08/13.47 new_lt8(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.08/13.47 new_ltEs6(True, True) 30.08/13.47 new_esEs29(x0, x1, ty_Double) 30.08/13.47 new_esEs5(Just(x0), Nothing, x1) 30.08/13.47 new_esEs28(x0, x1, ty_Char) 30.08/13.47 new_compare25(x0, x1, False, x2, x3) 30.08/13.47 new_compare28(x0, x1, False, x2, x3, x4) 30.08/13.47 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_lt8(x0, x1, ty_Int) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.08/13.47 new_esEs29(x0, x1, ty_Int) 30.08/13.47 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_compare27(x0, x1, True, x2) 30.08/13.47 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_esEs23(x0, x1, ty_Char) 30.08/13.47 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.08/13.47 new_esEs26(x0, x1, ty_Int) 30.08/13.47 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.08/13.47 new_compare15(x0, x1, x2) 30.08/13.47 new_esEs23(x0, x1, ty_Double) 30.08/13.47 new_compare27(Just(x0), Just(x1), False, x2) 30.08/13.47 new_esEs9(x0, x1, ty_Double) 30.08/13.47 new_lt8(x0, x1, ty_Double) 30.08/13.47 new_compare110(x0, x1, True, x2, x3) 30.08/13.47 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 30.08/13.47 new_esEs7(Left(x0), Right(x1), x2, x3) 30.08/13.47 new_esEs7(Right(x0), Left(x1), x2, x3) 30.08/13.47 new_esEs10(x0, x1, ty_Char) 30.08/13.47 new_lt8(x0, x1, ty_Float) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), ty_Int, x2) 30.08/13.47 new_primMulNat0(Succ(x0), Zero) 30.08/13.47 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, ty_Char) 30.08/13.47 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 30.08/13.47 new_esEs20(x0, x1, ty_@0) 30.08/13.47 new_esEs22(x0, x1, ty_Bool) 30.08/13.47 new_esEs9(x0, x1, ty_Ordering) 30.08/13.47 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_pePe(True, x0) 30.08/13.47 new_primCompAux0(x0, x1, x2, x3) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) 30.08/13.47 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_compare7(x0, x1, x2, x3, x4) 30.08/13.47 new_compare114(x0, x1, True) 30.08/13.47 new_esEs8(LT, GT) 30.08/13.47 new_esEs8(GT, LT) 30.08/13.47 new_compare112(x0, x1, True, x2) 30.08/13.47 new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.08/13.47 new_ltEs19(x0, x1, ty_Int) 30.08/13.47 new_esEs5(Just(x0), Just(x1), ty_Bool) 30.08/13.47 new_ltEs8(x0, x1, ty_Bool) 30.08/13.47 new_lt20(x0, x1, ty_Int) 30.08/13.47 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.08/13.47 new_compare27(Just(x0), Nothing, False, x1) 30.08/13.47 new_compare11(x0, x1, ty_Integer) 30.08/13.47 new_ltEs12(Nothing, Nothing, x0) 30.08/13.47 new_ltEs19(x0, x1, ty_Char) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), ty_Char, x2) 30.08/13.47 new_lt9(x0, x1, app(ty_[], x2)) 30.08/13.47 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_lt9(x0, x1, ty_Integer) 30.08/13.47 new_esEs25(x0, x1, ty_@0) 30.08/13.47 new_compare23(x0, x1, True, x2, x3) 30.08/13.47 new_ltEs20(x0, x1, ty_Bool) 30.08/13.47 new_sr0(x0, x1) 30.08/13.47 new_lt9(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 30.08/13.47 new_compare25(x0, x1, True, x2, x3) 30.08/13.47 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.08/13.47 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.08/13.47 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.08/13.47 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.08/13.47 new_compare11(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_esEs22(x0, x1, ty_Integer) 30.08/13.47 new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 30.08/13.47 new_primMulNat0(Succ(x0), Succ(x1)) 30.08/13.47 new_esEs9(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_lt20(x0, x1, ty_Float) 30.08/13.47 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, ty_Int) 30.08/13.47 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.08/13.47 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs10(x0, x1, ty_Float) 30.08/13.47 new_primEqNat0(Zero, Zero) 30.08/13.47 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.47 new_esEs13(False, False) 30.08/13.47 new_compare10(x0, x1, x2, x3) 30.08/13.47 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_lt14(x0, x1) 30.08/13.47 new_compare113(x0, x1, True, x2, x3) 30.08/13.47 new_lt9(x0, x1, ty_Ordering) 30.08/13.47 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.08/13.47 new_esEs12(Char(x0), Char(x1)) 30.08/13.47 new_esEs22(x0, x1, ty_Char) 30.08/13.47 new_not(False) 30.08/13.47 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.47 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_ltEs8(x0, x1, ty_Int) 30.08/13.47 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.08/13.47 new_compare6(x0, x1, x2, x3) 30.08/13.47 new_ltEs9(x0, x1) 30.08/13.47 new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 30.08/13.47 new_esEs10(x0, x1, ty_Bool) 30.08/13.47 new_ltEs8(x0, x1, app(ty_Ratio, x2)) 30.08/13.47 new_compare0([], :(x0, x1), x2) 30.08/13.47 new_ltEs19(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs21(x0, x1, ty_@0) 30.08/13.47 new_lt13(x0, x1, x2) 30.08/13.47 new_compare11(x0, x1, ty_Char) 30.08/13.47 new_esEs22(x0, x1, ty_Int) 30.08/13.47 new_esEs24(x0, x1, ty_@0) 30.08/13.47 new_ltEs6(True, False) 30.08/13.47 new_esEs10(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_ltEs6(False, True) 30.08/13.47 new_esEs9(x0, x1, app(ty_[], x2)) 30.08/13.47 new_esEs14(Double(x0, x1), Double(x2, x3)) 30.08/13.47 new_lt7(x0, x1) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, ty_Float) 30.08/13.47 new_ltEs12(Just(x0), Nothing, x1) 30.08/13.47 new_esEs21(x0, x1, app(ty_Maybe, x2)) 30.08/13.47 new_lt19(x0, x1) 30.08/13.47 new_esEs29(x0, x1, ty_Ordering) 30.08/13.47 new_esEs10(x0, x1, ty_Int) 30.08/13.47 new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.08/13.47 new_ltEs12(Nothing, Just(x0), x1) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 30.08/13.47 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.08/13.47 new_lt18(x0, x1, x2, x3) 30.08/13.47 new_primCmpNat0(Zero, Succ(x0)) 30.08/13.47 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.08/13.47 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.08/13.47 new_ltEs20(x0, x1, ty_Integer) 30.08/13.47 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.08/13.47 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.08/13.47 new_esEs28(x0, x1, ty_Ordering) 30.08/13.47 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.08/13.47 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.08/13.47 new_esEs25(x0, x1, ty_Double) 30.08/13.47 new_ltEs8(x0, x1, ty_Char) 30.08/13.47 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 30.08/13.47 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.08/13.47 new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.08/13.47 new_ltEs20(x0, x1, ty_Ordering) 30.08/13.47 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.47 new_compare11(x0, x1, ty_Bool) 30.08/13.47 new_ltEs19(x0, x1, ty_Float) 30.08/13.47 new_esEs24(x0, x1, ty_Double) 30.08/13.47 new_primCmpNat0(Zero, Zero) 30.08/13.47 new_compare24(x0, x1, True) 30.08/13.47 new_esEs17(:(x0, x1), :(x2, x3), x4) 30.08/13.47 30.08/13.47 We have to consider all minimal (P,Q,R)-chains. 30.08/13.47 ---------------------------------------- 30.08/13.47 30.08/13.47 (36) QDPSizeChangeProof (EQUIVALENT) 30.08/13.47 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 30.08/13.47 30.08/13.47 From the DPs we obtained the following set of size-change graphs: 30.08/13.47 *new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv17, Just(xwv18), bb, bc) 30.08/13.47 The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4 30.08/13.47 30.08/13.47 30.08/13.47 *new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bb, bc) -> new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs8(new_compare27(Just(xwv18), Just(xwv13), new_esEs5(Just(xwv18), Just(xwv13), bb), bb), LT), bb, bc) 30.08/13.47 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 30.08/13.47 30.08/13.47 30.08/13.47 *new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv16, Just(xwv18), bb, bc) 30.08/13.47 The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4 30.08/13.47 30.08/13.47 30.08/13.47 *new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba) -> new_delFromFM(xwv34, Just(xwv400), h, ba) 30.08/13.47 The graph contains the following edges 4 >= 1, 7 >= 3, 8 >= 4 30.08/13.47 30.08/13.47 30.08/13.47 *new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare27(Just(xwv400), Just(xwv300), new_esEs29(xwv400, xwv300, h), h), GT), h, ba) 30.08/13.47 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9 30.08/13.47 30.08/13.47 30.08/13.47 *new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba) 30.08/13.47 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 2 > 5, 3 >= 7, 4 >= 8 30.08/13.47 30.08/13.47 30.08/13.47 ---------------------------------------- 30.08/13.47 30.08/13.47 (37) 30.08/13.47 YES 30.08/13.47 30.08/13.47 ---------------------------------------- 30.08/13.47 30.08/13.47 (38) 30.08/13.47 Obligation: 30.08/13.47 Q DP problem: 30.08/13.47 The TRS P consists of the following rules: 30.08/13.47 30.08/13.47 new_primMinusNat(Succ(xwv25700), Succ(xwv25800)) -> new_primMinusNat(xwv25700, xwv25800) 30.08/13.47 30.08/13.47 R is empty. 30.08/13.47 Q is empty. 30.08/13.47 We have to consider all minimal (P,Q,R)-chains. 30.08/13.47 ---------------------------------------- 30.08/13.47 30.08/13.47 (39) QDPSizeChangeProof (EQUIVALENT) 30.08/13.47 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 30.08/13.48 30.08/13.48 From the DPs we obtained the following set of size-change graphs: 30.08/13.48 *new_primMinusNat(Succ(xwv25700), Succ(xwv25800)) -> new_primMinusNat(xwv25700, xwv25800) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2 30.08/13.48 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (40) 30.08/13.48 YES 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (41) 30.08/13.48 Obligation: 30.08/13.48 Q DP problem: 30.08/13.48 The TRS P consists of the following rules: 30.08/13.48 30.08/13.48 new_primPlusNat(Succ(xwv33200), Succ(xwv9700)) -> new_primPlusNat(xwv33200, xwv9700) 30.08/13.48 30.08/13.48 R is empty. 30.08/13.48 Q is empty. 30.08/13.48 We have to consider all minimal (P,Q,R)-chains. 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (42) QDPSizeChangeProof (EQUIVALENT) 30.08/13.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 30.08/13.48 30.08/13.48 From the DPs we obtained the following set of size-change graphs: 30.08/13.48 *new_primPlusNat(Succ(xwv33200), Succ(xwv9700)) -> new_primPlusNat(xwv33200, xwv9700) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2 30.08/13.48 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (43) 30.08/13.48 YES 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (44) 30.08/13.48 Obligation: 30.08/13.48 Q DP problem: 30.08/13.48 The TRS P consists of the following rules: 30.08/13.48 30.08/13.48 new_glueBal2Mid_key10(xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv347, xwv348, xwv349, xwv350, xwv351, Branch(xwv3520, xwv3521, xwv3522, xwv3523, xwv3524), h, ba) -> new_glueBal2Mid_key10(xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv347, xwv3520, xwv3521, xwv3522, xwv3523, xwv3524, h, ba) 30.08/13.48 30.08/13.48 R is empty. 30.08/13.48 Q is empty. 30.08/13.48 We have to consider all minimal (P,Q,R)-chains. 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (45) QDPSizeChangeProof (EQUIVALENT) 30.08/13.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 30.08/13.48 30.08/13.48 From the DPs we obtained the following set of size-change graphs: 30.08/13.48 *new_glueBal2Mid_key10(xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv347, xwv348, xwv349, xwv350, xwv351, Branch(xwv3520, xwv3521, xwv3522, xwv3523, xwv3524), h, ba) -> new_glueBal2Mid_key10(xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv347, xwv3520, xwv3521, xwv3522, xwv3523, xwv3524, h, ba) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 15 > 11, 15 > 12, 15 > 13, 15 > 14, 15 > 15, 16 >= 16, 17 >= 17 30.08/13.48 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (46) 30.08/13.48 YES 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (47) 30.08/13.48 Obligation: 30.08/13.48 Q DP problem: 30.08/13.48 The TRS P consists of the following rules: 30.08/13.48 30.08/13.48 new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), ga, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs2(xwv4001, xwv3001, gg, gh, ha) 30.08/13.48 new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, app(app(ty_@2, bbb), bbc), he) -> new_esEs1(xwv4001, xwv3001, bbb, bbc) 30.08/13.48 new_esEs0(Left(xwv4000), Left(xwv3000), app(app(ty_@2, ce), cf), cb) -> new_esEs1(xwv4000, xwv3000, ce, cf) 30.08/13.48 new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, hd, app(app(ty_@2, bcc), bcd)) -> new_esEs1(xwv4002, xwv3002, bcc, bcd) 30.08/13.48 new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), ga, app(app(ty_Either, gc), gd)) -> new_esEs0(xwv4001, xwv3001, gc, gd) 30.08/13.48 new_esEs0(Left(xwv4000), Left(xwv3000), app(ty_Maybe, ca), cb) -> new_esEs(xwv4000, xwv3000, ca) 30.08/13.48 new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(app(ty_Either, eh), fa), eg) -> new_esEs0(xwv4000, xwv3000, eh, fa) 30.08/13.48 new_esEs3(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(ty_Maybe, bda)) -> new_esEs(xwv4000, xwv3000, bda) 30.08/13.48 new_esEs0(Right(xwv4000), Right(xwv3000), dd, app(ty_[], ee)) -> new_esEs3(xwv4000, xwv3000, ee) 30.08/13.48 new_esEs(Just(xwv4000), Just(xwv3000), app(app(ty_@2, bc), bd)) -> new_esEs1(xwv4000, xwv3000, bc, bd) 30.08/13.48 new_esEs0(Right(xwv4000), Right(xwv3000), dd, app(app(ty_Either, df), dg)) -> new_esEs0(xwv4000, xwv3000, df, dg) 30.08/13.48 new_esEs(Just(xwv4000), Just(xwv3000), app(ty_[], bh)) -> new_esEs3(xwv4000, xwv3000, bh) 30.08/13.48 new_esEs3(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(ty_[], bea)) -> new_esEs3(xwv4000, xwv3000, bea) 30.08/13.48 new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, hd, app(ty_[], bch)) -> new_esEs3(xwv4002, xwv3002, bch) 30.08/13.48 new_esEs(Just(xwv4000), Just(xwv3000), app(ty_Maybe, h)) -> new_esEs(xwv4000, xwv3000, h) 30.08/13.48 new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, app(ty_[], bbg), he) -> new_esEs3(xwv4001, xwv3001, bbg) 30.08/13.48 new_esEs0(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, cg), da), db), cb) -> new_esEs2(xwv4000, xwv3000, cg, da, db) 30.08/13.48 new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(ty_[], fh), eg) -> new_esEs3(xwv4000, xwv3000, fh) 30.08/13.48 new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, app(app(app(ty_@3, bbd), bbe), bbf), he) -> new_esEs2(xwv4001, xwv3001, bbd, bbe, bbf) 30.08/13.48 new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(app(app(ty_@3, bab), bac), bad), hd, he) -> new_esEs2(xwv4000, xwv3000, bab, bac, bad) 30.08/13.48 new_esEs3(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(app(ty_@2, bdd), bde)) -> new_esEs1(xwv4000, xwv3000, bdd, bde) 30.08/13.48 new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), ga, app(ty_[], hb)) -> new_esEs3(xwv4001, xwv3001, hb) 30.08/13.48 new_esEs0(Left(xwv4000), Left(xwv3000), app(ty_[], dc), cb) -> new_esEs3(xwv4000, xwv3000, dc) 30.08/13.48 new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, app(app(ty_Either, bah), bba), he) -> new_esEs0(xwv4001, xwv3001, bah, bba) 30.08/13.48 new_esEs0(Left(xwv4000), Left(xwv3000), app(app(ty_Either, cc), cd), cb) -> new_esEs0(xwv4000, xwv3000, cc, cd) 30.08/13.48 new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(ty_Maybe, ef), eg) -> new_esEs(xwv4000, xwv3000, ef) 30.08/13.48 new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, hd, app(app(ty_Either, bca), bcb)) -> new_esEs0(xwv4002, xwv3002, bca, bcb) 30.08/13.48 new_esEs3(:(xwv4000, xwv4001), :(xwv3000, xwv3001), beb) -> new_esEs3(xwv4001, xwv3001, beb) 30.08/13.48 new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(app(ty_Either, hf), hg), hd, he) -> new_esEs0(xwv4000, xwv3000, hf, hg) 30.08/13.48 new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), ga, app(ty_Maybe, gb)) -> new_esEs(xwv4001, xwv3001, gb) 30.08/13.48 new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(ty_[], bae), hd, he) -> new_esEs3(xwv4000, xwv3000, bae) 30.08/13.48 new_esEs(Just(xwv4000), Just(xwv3000), app(app(ty_Either, ba), bb)) -> new_esEs0(xwv4000, xwv3000, ba, bb) 30.08/13.48 new_esEs0(Right(xwv4000), Right(xwv3000), dd, app(app(ty_@2, dh), ea)) -> new_esEs1(xwv4000, xwv3000, dh, ea) 30.08/13.48 new_esEs3(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(xwv4000, xwv3000, bdf, bdg, bdh) 30.08/13.48 new_esEs(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, be), bf), bg)) -> new_esEs2(xwv4000, xwv3000, be, bf, bg) 30.08/13.48 new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(app(app(ty_@3, fd), ff), fg), eg) -> new_esEs2(xwv4000, xwv3000, fd, ff, fg) 30.08/13.48 new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(app(ty_@2, fb), fc), eg) -> new_esEs1(xwv4000, xwv3000, fb, fc) 30.08/13.48 new_esEs0(Right(xwv4000), Right(xwv3000), dd, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(xwv4000, xwv3000, eb, ec, ed) 30.08/13.48 new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, hd, app(ty_Maybe, bbh)) -> new_esEs(xwv4002, xwv3002, bbh) 30.08/13.48 new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, hd, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs2(xwv4002, xwv3002, bce, bcf, bcg) 30.08/13.48 new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, app(ty_Maybe, bag), he) -> new_esEs(xwv4001, xwv3001, bag) 30.08/13.48 new_esEs3(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(app(ty_Either, bdb), bdc)) -> new_esEs0(xwv4000, xwv3000, bdb, bdc) 30.08/13.48 new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), ga, app(app(ty_@2, ge), gf)) -> new_esEs1(xwv4001, xwv3001, ge, gf) 30.08/13.48 new_esEs0(Right(xwv4000), Right(xwv3000), dd, app(ty_Maybe, de)) -> new_esEs(xwv4000, xwv3000, de) 30.08/13.48 new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(ty_Maybe, hc), hd, he) -> new_esEs(xwv4000, xwv3000, hc) 30.08/13.48 new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(app(ty_@2, hh), baa), hd, he) -> new_esEs1(xwv4000, xwv3000, hh, baa) 30.08/13.48 30.08/13.48 R is empty. 30.08/13.48 Q is empty. 30.08/13.48 We have to consider all minimal (P,Q,R)-chains. 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (48) QDPSizeChangeProof (EQUIVALENT) 30.08/13.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 30.08/13.48 30.08/13.48 From the DPs we obtained the following set of size-change graphs: 30.08/13.48 *new_esEs(Just(xwv4000), Just(xwv3000), app(app(ty_@2, bc), bd)) -> new_esEs1(xwv4000, xwv3000, bc, bd) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs3(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(app(ty_@2, bdd), bde)) -> new_esEs1(xwv4000, xwv3000, bdd, bde) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, be), bf), bg)) -> new_esEs2(xwv4000, xwv3000, be, bf, bg) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs3(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(xwv4000, xwv3000, bdf, bdg, bdh) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs(Just(xwv4000), Just(xwv3000), app(app(ty_Either, ba), bb)) -> new_esEs0(xwv4000, xwv3000, ba, bb) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs3(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(app(ty_Either, bdb), bdc)) -> new_esEs0(xwv4000, xwv3000, bdb, bdc) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs(Just(xwv4000), Just(xwv3000), app(ty_[], bh)) -> new_esEs3(xwv4000, xwv3000, bh) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs(Just(xwv4000), Just(xwv3000), app(ty_Maybe, h)) -> new_esEs(xwv4000, xwv3000, h) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs3(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(ty_Maybe, bda)) -> new_esEs(xwv4000, xwv3000, bda) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, app(app(ty_@2, bbb), bbc), he) -> new_esEs1(xwv4001, xwv3001, bbb, bbc) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, hd, app(app(ty_@2, bcc), bcd)) -> new_esEs1(xwv4002, xwv3002, bcc, bcd) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(app(ty_@2, hh), baa), hd, he) -> new_esEs1(xwv4000, xwv3000, hh, baa) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, app(app(app(ty_@3, bbd), bbe), bbf), he) -> new_esEs2(xwv4001, xwv3001, bbd, bbe, bbf) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(app(app(ty_@3, bab), bac), bad), hd, he) -> new_esEs2(xwv4000, xwv3000, bab, bac, bad) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, hd, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs2(xwv4002, xwv3002, bce, bcf, bcg) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, app(app(ty_Either, bah), bba), he) -> new_esEs0(xwv4001, xwv3001, bah, bba) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, hd, app(app(ty_Either, bca), bcb)) -> new_esEs0(xwv4002, xwv3002, bca, bcb) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(app(ty_Either, hf), hg), hd, he) -> new_esEs0(xwv4000, xwv3000, hf, hg) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, hd, app(ty_[], bch)) -> new_esEs3(xwv4002, xwv3002, bch) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, app(ty_[], bbg), he) -> new_esEs3(xwv4001, xwv3001, bbg) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(ty_[], bae), hd, he) -> new_esEs3(xwv4000, xwv3000, bae) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, hd, app(ty_Maybe, bbh)) -> new_esEs(xwv4002, xwv3002, bbh) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), baf, app(ty_Maybe, bag), he) -> new_esEs(xwv4001, xwv3001, bag) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs2(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), app(ty_Maybe, hc), hd, he) -> new_esEs(xwv4000, xwv3000, hc) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(app(ty_@2, fb), fc), eg) -> new_esEs1(xwv4000, xwv3000, fb, fc) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), ga, app(app(ty_@2, ge), gf)) -> new_esEs1(xwv4001, xwv3001, ge, gf) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs0(Left(xwv4000), Left(xwv3000), app(app(ty_@2, ce), cf), cb) -> new_esEs1(xwv4000, xwv3000, ce, cf) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs0(Right(xwv4000), Right(xwv3000), dd, app(app(ty_@2, dh), ea)) -> new_esEs1(xwv4000, xwv3000, dh, ea) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), ga, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs2(xwv4001, xwv3001, gg, gh, ha) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(app(app(ty_@3, fd), ff), fg), eg) -> new_esEs2(xwv4000, xwv3000, fd, ff, fg) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), ga, app(app(ty_Either, gc), gd)) -> new_esEs0(xwv4001, xwv3001, gc, gd) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(app(ty_Either, eh), fa), eg) -> new_esEs0(xwv4000, xwv3000, eh, fa) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(ty_[], fh), eg) -> new_esEs3(xwv4000, xwv3000, fh) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), ga, app(ty_[], hb)) -> new_esEs3(xwv4001, xwv3001, hb) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), app(ty_Maybe, ef), eg) -> new_esEs(xwv4000, xwv3000, ef) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), ga, app(ty_Maybe, gb)) -> new_esEs(xwv4001, xwv3001, gb) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs0(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, cg), da), db), cb) -> new_esEs2(xwv4000, xwv3000, cg, da, db) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs0(Right(xwv4000), Right(xwv3000), dd, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(xwv4000, xwv3000, eb, ec, ed) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs0(Right(xwv4000), Right(xwv3000), dd, app(app(ty_Either, df), dg)) -> new_esEs0(xwv4000, xwv3000, df, dg) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs0(Left(xwv4000), Left(xwv3000), app(app(ty_Either, cc), cd), cb) -> new_esEs0(xwv4000, xwv3000, cc, cd) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs0(Right(xwv4000), Right(xwv3000), dd, app(ty_[], ee)) -> new_esEs3(xwv4000, xwv3000, ee) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs0(Left(xwv4000), Left(xwv3000), app(ty_[], dc), cb) -> new_esEs3(xwv4000, xwv3000, dc) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs0(Left(xwv4000), Left(xwv3000), app(ty_Maybe, ca), cb) -> new_esEs(xwv4000, xwv3000, ca) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs0(Right(xwv4000), Right(xwv3000), dd, app(ty_Maybe, de)) -> new_esEs(xwv4000, xwv3000, de) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs3(:(xwv4000, xwv4001), :(xwv3000, xwv3001), app(ty_[], bea)) -> new_esEs3(xwv4000, xwv3000, bea) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_esEs3(:(xwv4000, xwv4001), :(xwv3000, xwv3001), beb) -> new_esEs3(xwv4001, xwv3001, beb) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 30.08/13.48 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (49) 30.08/13.48 YES 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (50) 30.08/13.48 Obligation: 30.08/13.48 Q DP problem: 30.08/13.48 The TRS P consists of the following rules: 30.08/13.48 30.08/13.48 new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(app(ty_@2, de), df))) -> new_ltEs(xwv28000, xwv29000, de, df) 30.08/13.48 new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, bda), app(app(ty_@2, bdb), bdc))) -> new_ltEs(xwv28000, xwv29000, bdb, bdc) 30.08/13.48 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, h), app(app(ty_Either, bh), ca))) -> new_ltEs3(xwv28001, xwv29001, bh, ca) 30.08/13.48 new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(app(app(ty_@3, bcd), bce), bcf)), bca)) -> new_ltEs2(xwv28000, xwv29000, bcd, bce, bcf) 30.08/13.48 new_ltEs3(Right(xwv28000), Right(xwv29000), bda, app(ty_[], bde)) -> new_ltEs1(xwv28000, xwv29000, bde) 30.08/13.48 new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs2(xwv28000, xwv29000, ea, eb, ec) 30.08/13.48 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), app(app(app(ty_@3, baa), bab), bac)), hf)) -> new_lt2(xwv28001, xwv29001, baa, bab, bac) 30.08/13.48 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), gb), app(ty_Maybe, ge))) -> new_ltEs0(xwv28002, xwv29002, ge) 30.08/13.48 new_lt3(xwv28000, xwv29000, dc, dd) -> new_compare22(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, dc, dd), dc, dd) 30.08/13.48 new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, gb, app(ty_Maybe, ge)) -> new_ltEs0(xwv28002, xwv29002, ge) 30.08/13.48 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(ty_Maybe, bah)), gb), hf)) -> new_lt0(xwv28000, xwv29000, bah) 30.08/13.48 new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(app(ty_@2, bbg), bbh)), bca)) -> new_ltEs(xwv28000, xwv29000, bbg, bbh) 30.08/13.48 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), cd)) -> new_compare2(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, cb, cc), cb, cc) 30.08/13.48 new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(ty_[], bba), gb, hf) -> new_lt1(xwv28000, xwv29000, bba) 30.08/13.48 new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(ty_Maybe, ce), cd) -> new_compare20(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, ce), ce) 30.08/13.48 new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(app(ty_Either, dc), dd), cd) -> new_compare22(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, dc, dd), dc, dd) 30.08/13.48 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, h), app(app(ty_@2, ba), bb))) -> new_ltEs(xwv28001, xwv29001, ba, bb) 30.08/13.48 new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), h, app(app(ty_Either, bh), ca)) -> new_ltEs3(xwv28001, xwv29001, bh, ca) 30.08/13.48 new_lt(xwv28000, xwv29000, cb, cc) -> new_compare2(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, cb, cc), cb, cc) 30.08/13.48 new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(app(ty_@2, baf), bag), gb, hf) -> new_lt(xwv28000, xwv29000, baf, bag) 30.08/13.48 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), gb), app(ty_[], gf))) -> new_ltEs1(xwv28002, xwv29002, gf) 30.08/13.48 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(app(app(ty_@3, cg), da), db)), cd)) -> new_compare21(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, cg, da, db), cg, da, db) 30.08/13.48 new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), h, app(ty_Maybe, bc)) -> new_ltEs0(xwv28001, xwv29001, bc) 30.08/13.48 new_ltEs3(Left(xwv28000), Left(xwv29000), app(ty_[], bcc), bca) -> new_ltEs1(xwv28000, xwv29000, bcc) 30.08/13.48 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(ty_[], bba)), gb), hf)) -> new_lt1(xwv28000, xwv29000, bba) 30.08/13.48 new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), h, app(app(app(ty_@3, be), bf), bg)) -> new_ltEs2(xwv28001, xwv29001, be, bf, bg) 30.08/13.48 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), gb), app(app(ty_Either, hb), hc))) -> new_ltEs3(xwv28002, xwv29002, hb, hc) 30.08/13.48 new_ltEs0(Just(xwv28000), Just(xwv29000), app(ty_[], dh)) -> new_ltEs1(xwv28000, xwv29000, dh) 30.08/13.48 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, h), app(ty_[], bd))) -> new_ltEs1(xwv28001, xwv29001, bd) 30.08/13.48 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bbb), bbc), bbd)), gb), hf)) -> new_lt2(xwv28000, xwv29000, bbb, bbc, bbd) 30.08/13.48 new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, app(ty_Maybe, hg), hf) -> new_lt0(xwv28001, xwv29001, hg) 30.08/13.48 new_ltEs0(Just(xwv28000), Just(xwv29000), app(ty_Maybe, dg)) -> new_ltEs0(xwv28000, xwv29000, dg) 30.08/13.48 new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(ty_Maybe, bah), gb, hf) -> new_lt0(xwv28000, xwv29000, bah) 30.08/13.48 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, h), app(ty_Maybe, bc))) -> new_ltEs0(xwv28001, xwv29001, bc) 30.08/13.48 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, h), app(app(app(ty_@3, be), bf), bg))) -> new_ltEs2(xwv28001, xwv29001, be, bf, bg) 30.08/13.48 new_ltEs3(Right(xwv28000), Right(xwv29000), bda, app(app(ty_@2, bdb), bdc)) -> new_ltEs(xwv28000, xwv29000, bdb, bdc) 30.08/13.48 new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(ty_[], dh))) -> new_ltEs1(xwv28000, xwv29000, dh) 30.08/13.48 new_compare21(xwv28000, xwv29000, False, cg, da, db) -> new_ltEs2(xwv28000, xwv29000, cg, da, db) 30.08/13.48 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), gb), app(app(ty_@2, gc), gd))) -> new_ltEs(xwv28002, xwv29002, gc, gd) 30.08/13.48 new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), h, app(app(ty_@2, ba), bb)) -> new_ltEs(xwv28001, xwv29001, ba, bb) 30.08/13.48 new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(app(ty_@2, cb), cc), cd) -> new_compare2(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, cb, cc), cb, cc) 30.08/13.48 new_primCompAux(xwv28000, xwv29000, xwv148, app(app(ty_Either, fg), fh)) -> new_compare5(xwv28000, xwv29000, fg, fh) 30.08/13.48 new_ltEs3(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_ltEs2(xwv28000, xwv29000, bcd, bce, bcf) 30.08/13.48 new_ltEs1(:(xwv28000, xwv28001), :(xwv29000, xwv29001), ef) -> new_compare(xwv28001, xwv29001, ef) 30.08/13.48 new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, gb, app(app(ty_Either, hb), hc)) -> new_ltEs3(xwv28002, xwv29002, hb, hc) 30.08/13.48 new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(app(app(ty_@3, bbb), bbc), bbd), gb, hf) -> new_lt2(xwv28000, xwv29000, bbb, bbc, bbd) 30.08/13.48 new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(app(ty_Either, ed), ee))) -> new_ltEs3(xwv28000, xwv29000, ed, ee) 30.08/13.48 new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(ty_[], cf), cd) -> new_compare(xwv28000, xwv29000, cf) 30.08/13.48 new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, gb, app(ty_[], gf)) -> new_ltEs1(xwv28002, xwv29002, gf) 30.08/13.48 new_ltEs3(Left(xwv28000), Left(xwv29000), app(app(ty_@2, bbg), bbh), bca) -> new_ltEs(xwv28000, xwv29000, bbg, bbh) 30.08/13.48 new_ltEs3(Left(xwv28000), Left(xwv29000), app(app(ty_Either, bcg), bch), bca) -> new_ltEs3(xwv28000, xwv29000, bcg, bch) 30.08/13.48 new_ltEs0(Just(xwv28000), Just(xwv29000), app(app(ty_@2, de), df)) -> new_ltEs(xwv28000, xwv29000, de, df) 30.08/13.48 new_ltEs0(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs2(xwv28000, xwv29000, ea, eb, ec) 30.08/13.48 new_primCompAux(xwv28000, xwv29000, xwv148, app(ty_Maybe, fa)) -> new_compare3(xwv28000, xwv29000, fa) 30.08/13.48 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), app(app(ty_@2, hd), he)), hf)) -> new_lt(xwv28001, xwv29001, hd, he) 30.08/13.48 new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, bda), app(app(app(ty_@3, bdf), bdg), bdh))) -> new_ltEs2(xwv28000, xwv29000, bdf, bdg, bdh) 30.08/13.48 new_ltEs0(Just(xwv28000), Just(xwv29000), app(app(ty_Either, ed), ee)) -> new_ltEs3(xwv28000, xwv29000, ed, ee) 30.08/13.48 new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(app(ty_Either, bbe), bbf), gb, hf) -> new_lt3(xwv28000, xwv29000, bbe, bbf) 30.08/13.48 new_primCompAux(xwv28000, xwv29000, xwv148, app(app(app(ty_@3, fc), fd), ff)) -> new_compare4(xwv28000, xwv29000, fc, fd, ff) 30.08/13.48 new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, app(ty_[], hh), hf) -> new_lt1(xwv28001, xwv29001, hh) 30.08/13.48 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(app(ty_Either, bbe), bbf)), gb), hf)) -> new_lt3(xwv28000, xwv29000, bbe, bbf) 30.08/13.48 new_compare20(Just(:(xwv28000, xwv28001)), Just(:(xwv29000, xwv29001)), False, app(ty_[], ef)) -> new_compare(xwv28001, xwv29001, ef) 30.08/13.48 new_compare22(xwv28000, xwv29000, False, dc, dd) -> new_ltEs3(xwv28000, xwv29000, dc, dd) 30.08/13.48 new_ltEs3(Right(xwv28000), Right(xwv29000), bda, app(app(ty_Either, bea), beb)) -> new_ltEs3(xwv28000, xwv29000, bea, beb) 30.08/13.48 new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), h, app(ty_[], bd)) -> new_ltEs1(xwv28001, xwv29001, bd) 30.08/13.48 new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(app(ty_Either, bcg), bch)), bca)) -> new_ltEs3(xwv28000, xwv29000, bcg, bch) 30.08/13.48 new_compare(:(xwv28000, xwv28001), :(xwv29000, xwv29001), ef) -> new_primCompAux(xwv28000, xwv29000, new_compare0(xwv28001, xwv29001, ef), ef) 30.08/13.48 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(ty_Maybe, ce)), cd)) -> new_compare20(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, ce), ce) 30.08/13.48 new_compare20(Just(:(xwv28000, xwv28001)), Just(:(xwv29000, xwv29001)), False, app(ty_[], ef)) -> new_primCompAux(xwv28000, xwv29000, new_compare0(xwv28001, xwv29001, ef), ef) 30.08/13.48 new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(ty_Maybe, dg))) -> new_ltEs0(xwv28000, xwv29000, dg) 30.08/13.48 new_lt0(xwv28000, xwv29000, ce) -> new_compare20(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, ce), ce) 30.08/13.48 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), app(ty_Maybe, hg)), hf)) -> new_lt0(xwv28001, xwv29001, hg) 30.08/13.48 new_compare5(xwv28000, xwv29000, dc, dd) -> new_compare22(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, dc, dd), dc, dd) 30.08/13.48 new_primCompAux(xwv28000, xwv29000, xwv148, app(ty_[], fb)) -> new_compare(xwv28000, xwv29000, fb) 30.08/13.48 new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, gb, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs2(xwv28002, xwv29002, gg, gh, ha) 30.08/13.48 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(app(ty_@2, baf), bag)), gb), hf)) -> new_lt(xwv28000, xwv29000, baf, bag) 30.08/13.48 new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, bda), app(ty_Maybe, bdd))) -> new_ltEs0(xwv28000, xwv29000, bdd) 30.08/13.48 new_ltEs3(Left(xwv28000), Left(xwv29000), app(ty_Maybe, bcb), bca) -> new_ltEs0(xwv28000, xwv29000, bcb) 30.08/13.48 new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, gb, app(app(ty_@2, gc), gd)) -> new_ltEs(xwv28002, xwv29002, gc, gd) 30.08/13.48 new_compare4(xwv28000, xwv29000, cg, da, db) -> new_compare21(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, cg, da, db), cg, da, db) 30.08/13.48 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), app(app(ty_Either, bad), bae)), hf)) -> new_lt3(xwv28001, xwv29001, bad, bae) 30.08/13.48 new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, app(app(ty_@2, hd), he), hf) -> new_lt(xwv28001, xwv29001, hd, he) 30.08/13.48 new_compare(:(xwv28000, xwv28001), :(xwv29000, xwv29001), ef) -> new_compare(xwv28001, xwv29001, ef) 30.08/13.48 new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(ty_Maybe, bcb)), bca)) -> new_ltEs0(xwv28000, xwv29000, bcb) 30.08/13.48 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(app(ty_Either, dc), dd)), cd)) -> new_compare22(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, dc, dd), dc, dd) 30.08/13.48 new_ltEs1(:(xwv28000, xwv28001), :(xwv29000, xwv29001), ef) -> new_primCompAux(xwv28000, xwv29000, new_compare0(xwv28001, xwv29001, ef), ef) 30.08/13.48 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), app(ty_[], hh)), hf)) -> new_lt1(xwv28001, xwv29001, hh) 30.08/13.48 new_compare2(xwv28000, xwv29000, False, cb, cc) -> new_ltEs(xwv28000, xwv29000, cb, cc) 30.08/13.48 new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, bda), app(app(ty_Either, bea), beb))) -> new_ltEs3(xwv28000, xwv29000, bea, beb) 30.08/13.48 new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(ty_[], bcc)), bca)) -> new_ltEs1(xwv28000, xwv29000, bcc) 30.08/13.48 new_ltEs3(Right(xwv28000), Right(xwv29000), bda, app(ty_Maybe, bdd)) -> new_ltEs0(xwv28000, xwv29000, bdd) 30.08/13.48 new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(app(app(ty_@3, cg), da), db), cd) -> new_compare21(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, cg, da, db), cg, da, db) 30.08/13.48 new_lt2(xwv28000, xwv29000, cg, da, db) -> new_compare21(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, cg, da, db), cg, da, db) 30.08/13.48 new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, app(app(app(ty_@3, baa), bab), bac), hf) -> new_lt2(xwv28001, xwv29001, baa, bab, bac) 30.08/13.48 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), gb), app(app(app(ty_@3, gg), gh), ha))) -> new_ltEs2(xwv28002, xwv29002, gg, gh, ha) 30.08/13.48 new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, bda), app(ty_[], bde))) -> new_ltEs1(xwv28000, xwv29000, bde) 30.08/13.48 new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, app(app(ty_Either, bad), bae), hf) -> new_lt3(xwv28001, xwv29001, bad, bae) 30.08/13.48 new_compare3(xwv28000, xwv29000, ce) -> new_compare20(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, ce), ce) 30.08/13.48 new_lt1(xwv28000, xwv29000, cf) -> new_compare(xwv28000, xwv29000, cf) 30.08/13.48 new_primCompAux(xwv28000, xwv29000, xwv148, app(app(ty_@2, eg), eh)) -> new_compare1(xwv28000, xwv29000, eg, eh) 30.08/13.48 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(ty_[], cf)), cd)) -> new_compare(xwv28000, xwv29000, cf) 30.08/13.48 new_compare1(xwv28000, xwv29000, cb, cc) -> new_compare2(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, cb, cc), cb, cc) 30.08/13.48 new_ltEs3(Right(xwv28000), Right(xwv29000), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs2(xwv28000, xwv29000, bdf, bdg, bdh) 30.08/13.48 30.08/13.48 The TRS R consists of the following rules: 30.08/13.48 30.08/13.48 new_ltEs4(xwv2800, xwv2900, bed) -> new_fsEs(new_compare8(xwv2800, xwv2900, bed)) 30.08/13.48 new_lt7(xwv28000, xwv29000) -> new_esEs8(new_compare9(xwv28000, xwv29000), LT) 30.08/13.48 new_primCmpInt(Neg(Succ(xwv2800)), Pos(xwv290)) -> LT 30.08/13.48 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.08/13.48 new_lt18(xwv28000, xwv29000, dc, dd) -> new_esEs8(new_compare10(xwv28000, xwv29000, dc, dd), LT) 30.08/13.48 new_lt20(xwv28000, xwv29000, ty_Float) -> new_lt15(xwv28000, xwv29000) 30.08/13.48 new_esEs23(xwv4001, xwv3001, app(ty_[], cce)) -> new_esEs17(xwv4001, xwv3001, cce) 30.08/13.48 new_primPlusNat0(Zero, Zero) -> Zero 30.08/13.48 new_esEs25(xwv4000, xwv3000, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs6(xwv4000, xwv3000, ceg, ceh, cfa) 30.08/13.48 new_pePe(True, xwv138) -> True 30.08/13.48 new_esEs22(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.48 new_ltEs8(xwv28002, xwv29002, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs7(xwv28002, xwv29002, gg, gh, ha) 30.08/13.48 new_lt4(xwv28000, xwv29000, cb, cc) -> new_esEs8(new_compare6(xwv28000, xwv29000, cb, cc), LT) 30.08/13.48 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Int) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.48 new_compare112(xwv125, xwv126, True, cfd) -> LT 30.08/13.48 new_lt20(xwv28000, xwv29000, ty_Ordering) -> new_lt17(xwv28000, xwv29000) 30.08/13.48 new_esEs10(xwv28001, xwv29001, app(app(app(ty_@3, baa), bab), bac)) -> new_esEs6(xwv28001, xwv29001, baa, bab, bac) 30.08/13.48 new_compare10(xwv28000, xwv29000, dc, dd) -> new_compare23(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, dc, dd), dc, dd) 30.08/13.48 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_@0) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.48 new_ltEs20(xwv2800, xwv2900, app(app(ty_@2, h), cd)) -> new_ltEs11(xwv2800, xwv2900, h, cd) 30.08/13.48 new_ltEs20(xwv2800, xwv2900, ty_Integer) -> new_ltEs18(xwv2800, xwv2900) 30.08/13.48 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.08/13.48 new_primCmpInt(Pos(Zero), Neg(Succ(xwv2900))) -> GT 30.08/13.48 new_compare14(xwv28000, xwv29000) -> new_compare26(xwv28000, xwv29000, new_esEs13(xwv28000, xwv29000)) 30.08/13.48 new_esEs24(xwv4002, xwv3002, ty_Int) -> new_esEs11(xwv4002, xwv3002) 30.08/13.48 new_esEs24(xwv4002, xwv3002, ty_Ordering) -> new_esEs8(xwv4002, xwv3002) 30.08/13.48 new_ltEs14(xwv2800, xwv2900) -> new_fsEs(new_compare17(xwv2800, xwv2900)) 30.08/13.48 new_ltEs19(xwv28001, xwv29001, app(ty_[], bd)) -> new_ltEs5(xwv28001, xwv29001, bd) 30.08/13.48 new_primCmpInt(Neg(Succ(xwv2800)), Neg(xwv290)) -> new_primCmpNat0(xwv290, Succ(xwv2800)) 30.08/13.48 new_compare113(xwv28000, xwv29000, False, dc, dd) -> GT 30.08/13.48 new_lt9(xwv28000, xwv29000, app(ty_[], bba)) -> new_lt16(xwv28000, xwv29000, bba) 30.08/13.48 new_esEs7(Right(xwv4000), Right(xwv3000), dba, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.48 new_lt8(xwv28001, xwv29001, app(app(ty_@2, hd), he)) -> new_lt4(xwv28001, xwv29001, hd, he) 30.08/13.48 new_primMulNat0(Succ(xwv400100), Succ(xwv300000)) -> new_primPlusNat1(new_primMulNat0(xwv400100, Succ(xwv300000)), xwv300000) 30.08/13.48 new_lt8(xwv28001, xwv29001, app(app(ty_Either, bad), bae)) -> new_lt18(xwv28001, xwv29001, bad, bae) 30.08/13.48 new_compare15(xwv28000, xwv29000, ce) -> new_compare27(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, ce), ce) 30.08/13.48 new_esEs7(Right(xwv4000), Right(xwv3000), dba, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.48 new_esEs28(xwv28000, xwv29000, app(app(ty_Either, dc), dd)) -> new_esEs7(xwv28000, xwv29000, dc, dd) 30.08/13.48 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Ordering, bca) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.48 new_compare26(xwv28000, xwv29000, True) -> EQ 30.08/13.48 new_esEs10(xwv28001, xwv29001, ty_Char) -> new_esEs12(xwv28001, xwv29001) 30.08/13.48 new_compare18(xwv28000, xwv29000) -> new_compare24(xwv28000, xwv29000, new_esEs8(xwv28000, xwv29000)) 30.08/13.48 new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False 30.08/13.48 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 30.08/13.48 new_esEs8(GT, GT) -> True 30.08/13.48 new_esEs7(Right(xwv4000), Right(xwv3000), dba, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs6(xwv4000, xwv3000, dbh, dca, dcb) 30.08/13.48 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Ratio, cgh)) -> new_esEs19(xwv4000, xwv3000, cgh) 30.08/13.48 new_esEs9(xwv28000, xwv29000, app(ty_Ratio, bef)) -> new_esEs19(xwv28000, xwv29000, bef) 30.08/13.48 new_fsEs(xwv131) -> new_not(new_esEs8(xwv131, GT)) 30.08/13.48 new_esEs23(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 30.08/13.48 new_compare16(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.48 new_compare16(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.48 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Float, bca) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.48 new_esEs24(xwv4002, xwv3002, app(app(ty_@2, cda), cdb)) -> new_esEs4(xwv4002, xwv3002, cda, cdb) 30.08/13.48 new_compare17(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.48 new_lt12(xwv28000, xwv29000) -> new_esEs8(new_compare14(xwv28000, xwv29000), LT) 30.08/13.48 new_esEs8(EQ, EQ) -> True 30.08/13.48 new_esEs24(xwv4002, xwv3002, ty_Bool) -> new_esEs13(xwv4002, xwv3002) 30.08/13.48 new_primEqNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.48 new_ltEs20(xwv2800, xwv2900, ty_Bool) -> new_ltEs6(xwv2800, xwv2900) 30.08/13.48 new_esEs25(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.48 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.48 new_ltEs19(xwv28001, xwv29001, app(app(ty_@2, ba), bb)) -> new_ltEs11(xwv28001, xwv29001, ba, bb) 30.08/13.48 new_ltEs17(Right(xwv28000), Right(xwv29000), bda, ty_Int) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.48 new_not(True) -> False 30.08/13.48 new_esEs24(xwv4002, xwv3002, ty_Integer) -> new_esEs18(xwv4002, xwv3002) 30.08/13.48 new_compare11(xwv28000, xwv29000, ty_Integer) -> new_compare19(xwv28000, xwv29000) 30.08/13.48 new_primCompAux00(xwv160, LT) -> LT 30.08/13.48 new_primCmpNat0(Zero, Zero) -> EQ 30.08/13.48 new_esEs21(xwv4001, xwv3001, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_esEs6(xwv4001, xwv3001, bhc, bhd, bhe) 30.08/13.48 new_lt13(xwv28000, xwv29000, ce) -> new_esEs8(new_compare15(xwv28000, xwv29000, ce), LT) 30.08/13.48 new_ltEs19(xwv28001, xwv29001, ty_Bool) -> new_ltEs6(xwv28001, xwv29001) 30.08/13.48 new_compare115(xwv28000, xwv29000, True, cg, da, db) -> LT 30.08/13.48 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Double) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.48 new_ltEs19(xwv28001, xwv29001, app(app(app(ty_@3, be), bf), bg)) -> new_ltEs7(xwv28001, xwv29001, be, bf, bg) 30.08/13.48 new_esEs22(xwv4000, xwv3000, app(ty_Ratio, cag)) -> new_esEs19(xwv4000, xwv3000, cag) 30.08/13.48 new_compare27(Nothing, Nothing, False, cfh) -> LT 30.08/13.48 new_esEs20(xwv4000, xwv3000, app(app(app(ty_@3, bga), bgb), bgc)) -> new_esEs6(xwv4000, xwv3000, bga, bgb, bgc) 30.08/13.48 new_esEs20(xwv4000, xwv3000, app(app(ty_Either, bfd), bfe)) -> new_esEs7(xwv4000, xwv3000, bfd, bfe) 30.08/13.48 new_esEs28(xwv28000, xwv29000, ty_Bool) -> new_esEs13(xwv28000, xwv29000) 30.08/13.48 new_ltEs16(GT, EQ) -> False 30.08/13.48 new_esEs4(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), bfa, bfb) -> new_asAs(new_esEs20(xwv4000, xwv3000, bfa), new_esEs21(xwv4001, xwv3001, bfb)) 30.08/13.48 new_esEs10(xwv28001, xwv29001, ty_Ordering) -> new_esEs8(xwv28001, xwv29001) 30.08/13.48 new_compare27(xwv280, xwv290, True, cfh) -> EQ 30.08/13.48 new_compare11(xwv28000, xwv29000, ty_Int) -> new_compare12(xwv28000, xwv29000) 30.08/13.48 new_ltEs17(Left(xwv28000), Right(xwv29000), bda, bca) -> True 30.08/13.48 new_primEqNat0(Succ(xwv40000), Zero) -> False 30.08/13.48 new_primEqNat0(Zero, Succ(xwv30000)) -> False 30.08/13.48 new_lt9(xwv28000, xwv29000, app(ty_Maybe, bah)) -> new_lt13(xwv28000, xwv29000, bah) 30.08/13.48 new_esEs28(xwv28000, xwv29000, ty_Int) -> new_esEs11(xwv28000, xwv29000) 30.08/13.48 new_ltEs17(Right(xwv28000), Right(xwv29000), bda, ty_@0) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.48 new_lt8(xwv28001, xwv29001, app(app(app(ty_@3, baa), bab), bac)) -> new_lt5(xwv28001, xwv29001, baa, bab, bac) 30.08/13.48 new_ltEs8(xwv28002, xwv29002, app(ty_[], gf)) -> new_ltEs5(xwv28002, xwv29002, gf) 30.08/13.48 new_lt20(xwv28000, xwv29000, ty_Integer) -> new_lt19(xwv28000, xwv29000) 30.08/13.48 new_primCompAux00(xwv160, GT) -> GT 30.08/13.48 new_ltEs8(xwv28002, xwv29002, app(ty_Ratio, beh)) -> new_ltEs4(xwv28002, xwv29002, beh) 30.08/13.48 new_esEs7(Right(xwv4000), Right(xwv3000), dba, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.48 new_esEs5(Just(xwv4000), Just(xwv3000), ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.48 new_compare11(xwv28000, xwv29000, ty_Bool) -> new_compare14(xwv28000, xwv29000) 30.08/13.48 new_lt9(xwv28000, xwv29000, app(app(ty_@2, baf), bag)) -> new_lt4(xwv28000, xwv29000, baf, bag) 30.08/13.48 new_esEs20(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.48 new_esEs23(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.48 new_ltEs6(True, True) -> True 30.08/13.48 new_primCmpInt(Pos(Succ(xwv2800)), Neg(xwv290)) -> GT 30.08/13.48 new_ltEs17(Right(xwv28000), Right(xwv29000), bda, app(app(ty_Either, bea), beb)) -> new_ltEs17(xwv28000, xwv29000, bea, beb) 30.08/13.48 new_esEs20(xwv4000, xwv3000, app(app(ty_@2, bff), bfg)) -> new_esEs4(xwv4000, xwv3000, bff, bfg) 30.08/13.48 new_ltEs16(LT, LT) -> True 30.08/13.48 new_ltEs19(xwv28001, xwv29001, ty_Float) -> new_ltEs14(xwv28001, xwv29001) 30.08/13.48 new_compare11(xwv28000, xwv29000, ty_Char) -> new_compare13(xwv28000, xwv29000) 30.08/13.48 new_esEs23(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.48 new_compare110(xwv28000, xwv29000, True, cb, cc) -> LT 30.08/13.48 new_lt9(xwv28000, xwv29000, app(app(ty_Either, bbe), bbf)) -> new_lt18(xwv28000, xwv29000, bbe, bbf) 30.08/13.48 new_ltEs19(xwv28001, xwv29001, ty_Integer) -> new_ltEs18(xwv28001, xwv29001) 30.08/13.48 new_ltEs8(xwv28002, xwv29002, ty_Ordering) -> new_ltEs16(xwv28002, xwv29002) 30.08/13.48 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Bool, bca) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.48 new_ltEs20(xwv2800, xwv2900, ty_Float) -> new_ltEs14(xwv2800, xwv2900) 30.08/13.48 new_lt17(xwv28000, xwv29000) -> new_esEs8(new_compare18(xwv28000, xwv29000), LT) 30.08/13.48 new_primCmpNat0(Zero, Succ(xwv2900)) -> LT 30.08/13.48 new_ltEs17(Right(xwv28000), Right(xwv29000), bda, app(ty_[], bde)) -> new_ltEs5(xwv28000, xwv29000, bde) 30.08/13.48 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, dae), daf), dag), chf) -> new_esEs6(xwv4000, xwv3000, dae, daf, dag) 30.08/13.48 new_ltEs20(xwv2800, xwv2900, app(app(app(ty_@3, ga), gb), hf)) -> new_ltEs7(xwv2800, xwv2900, ga, gb, hf) 30.08/13.48 new_esEs22(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.48 new_esEs28(xwv28000, xwv29000, ty_Char) -> new_esEs12(xwv28000, xwv29000) 30.08/13.48 new_esEs28(xwv28000, xwv29000, ty_Integer) -> new_esEs18(xwv28000, xwv29000) 30.08/13.48 new_ltEs10(xwv2800, xwv2900) -> new_fsEs(new_compare13(xwv2800, xwv2900)) 30.08/13.48 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Double, chf) -> new_esEs14(xwv4000, xwv3000) 30.08/13.48 new_ltEs8(xwv28002, xwv29002, ty_Double) -> new_ltEs13(xwv28002, xwv29002) 30.08/13.48 new_ltEs19(xwv28001, xwv29001, app(ty_Ratio, cfe)) -> new_ltEs4(xwv28001, xwv29001, cfe) 30.08/13.48 new_sr(Integer(xwv280000), Integer(xwv290010)) -> Integer(new_primMulInt(xwv280000, xwv290010)) 30.08/13.48 new_primCmpNat0(Succ(xwv2800), Zero) -> GT 30.08/13.48 new_pePe(False, xwv138) -> xwv138 30.08/13.48 new_compare11(xwv28000, xwv29000, app(ty_Maybe, fa)) -> new_compare15(xwv28000, xwv29000, fa) 30.08/13.48 new_esEs23(xwv4001, xwv3001, ty_Bool) -> new_esEs13(xwv4001, xwv3001) 30.08/13.48 new_esEs9(xwv28000, xwv29000, app(ty_Maybe, bah)) -> new_esEs5(xwv28000, xwv29000, bah) 30.08/13.48 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(ty_@2, dab), dac), chf) -> new_esEs4(xwv4000, xwv3000, dab, dac) 30.08/13.48 new_ltEs13(xwv2800, xwv2900) -> new_fsEs(new_compare16(xwv2800, xwv2900)) 30.08/13.48 new_compare25(xwv28000, xwv29000, True, cb, cc) -> EQ 30.08/13.48 new_ltEs8(xwv28002, xwv29002, ty_Integer) -> new_ltEs18(xwv28002, xwv29002) 30.08/13.48 new_esEs7(Right(xwv4000), Right(xwv3000), dba, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.48 new_esEs10(xwv28001, xwv29001, app(app(ty_Either, bad), bae)) -> new_esEs7(xwv28001, xwv29001, bad, bae) 30.08/13.48 new_lt20(xwv28000, xwv29000, ty_Char) -> new_lt11(xwv28000, xwv29000) 30.08/13.48 new_ltEs16(LT, GT) -> True 30.08/13.48 new_lt8(xwv28001, xwv29001, app(ty_[], hh)) -> new_lt16(xwv28001, xwv29001, hh) 30.08/13.48 new_esEs22(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.48 new_lt9(xwv28000, xwv29000, ty_Int) -> new_lt10(xwv28000, xwv29000) 30.08/13.48 new_esEs25(xwv4000, xwv3000, app(ty_Ratio, cef)) -> new_esEs19(xwv4000, xwv3000, cef) 30.08/13.48 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_Maybe, bcb), bca) -> new_ltEs12(xwv28000, xwv29000, bcb) 30.08/13.48 new_esEs17([], [], cdh) -> True 30.08/13.48 new_ltEs17(Right(xwv28000), Right(xwv29000), bda, ty_Double) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.48 new_ltEs16(LT, EQ) -> True 30.08/13.48 new_ltEs16(EQ, LT) -> False 30.08/13.48 new_compare23(xwv28000, xwv29000, True, dc, dd) -> EQ 30.08/13.48 new_esEs8(LT, EQ) -> False 30.08/13.48 new_esEs8(EQ, LT) -> False 30.08/13.48 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.48 new_esEs21(xwv4001, xwv3001, app(app(ty_@2, bgh), bha)) -> new_esEs4(xwv4001, xwv3001, bgh, bha) 30.08/13.48 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 30.08/13.48 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 30.08/13.48 new_esEs28(xwv28000, xwv29000, ty_@0) -> new_esEs16(xwv28000, xwv29000) 30.08/13.48 new_ltEs19(xwv28001, xwv29001, app(app(ty_Either, bh), ca)) -> new_ltEs17(xwv28001, xwv29001, bh, ca) 30.08/13.48 new_esEs21(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 30.08/13.48 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, cha), chb), chc)) -> new_esEs6(xwv4000, xwv3000, cha, chb, chc) 30.08/13.48 new_compare114(xwv28000, xwv29000, True) -> LT 30.08/13.48 new_ltEs16(GT, LT) -> False 30.08/13.48 new_esEs25(xwv4000, xwv3000, app(app(ty_@2, ced), cee)) -> new_esEs4(xwv4000, xwv3000, ced, cee) 30.08/13.48 new_esEs21(xwv4001, xwv3001, app(ty_Maybe, bge)) -> new_esEs5(xwv4001, xwv3001, bge) 30.08/13.48 new_esEs23(xwv4001, xwv3001, app(app(ty_Either, cbe), cbf)) -> new_esEs7(xwv4001, xwv3001, cbe, cbf) 30.08/13.48 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Integer, bca) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.48 new_esEs5(Nothing, Nothing, cgb) -> True 30.08/13.48 new_ltEs20(xwv2800, xwv2900, app(app(ty_Either, bda), bca)) -> new_ltEs17(xwv2800, xwv2900, bda, bca) 30.08/13.48 new_ltEs6(False, False) -> True 30.08/13.48 new_esEs25(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.48 new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.48 new_esEs10(xwv28001, xwv29001, ty_Integer) -> new_esEs18(xwv28001, xwv29001) 30.08/13.48 new_lt8(xwv28001, xwv29001, app(ty_Maybe, hg)) -> new_lt13(xwv28001, xwv29001, hg) 30.08/13.48 new_esEs5(Nothing, Just(xwv3000), cgb) -> False 30.08/13.48 new_esEs5(Just(xwv4000), Nothing, cgb) -> False 30.08/13.48 new_primCmpInt(Neg(Zero), Pos(Succ(xwv2900))) -> LT 30.08/13.48 new_compare13(Char(xwv28000), Char(xwv29000)) -> new_primCmpNat0(xwv28000, xwv29000) 30.08/13.48 new_primMulInt(Pos(xwv40010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.48 new_esEs10(xwv28001, xwv29001, ty_Int) -> new_esEs11(xwv28001, xwv29001) 30.08/13.48 new_esEs20(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.48 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(ty_Either, chh), daa), chf) -> new_esEs7(xwv4000, xwv3000, chh, daa) 30.08/13.48 new_esEs9(xwv28000, xwv29000, app(app(ty_@2, baf), bag)) -> new_esEs4(xwv28000, xwv29000, baf, bag) 30.08/13.48 new_esEs21(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.48 new_esEs9(xwv28000, xwv29000, ty_Ordering) -> new_esEs8(xwv28000, xwv29000) 30.08/13.48 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(ty_Either, bcg), bch), bca) -> new_ltEs17(xwv28000, xwv29000, bcg, bch) 30.08/13.48 new_esEs24(xwv4002, xwv3002, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs6(xwv4002, xwv3002, cdd, cde, cdf) 30.08/13.48 new_esEs10(xwv28001, xwv29001, app(app(ty_@2, hd), he)) -> new_esEs4(xwv28001, xwv29001, hd, he) 30.08/13.48 new_primMulNat0(Succ(xwv400100), Zero) -> Zero 30.08/13.48 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 30.08/13.48 new_ltEs8(xwv28002, xwv29002, ty_@0) -> new_ltEs15(xwv28002, xwv29002) 30.08/13.48 new_esEs18(Integer(xwv4000), Integer(xwv3000)) -> new_primEqInt(xwv4000, xwv3000) 30.08/13.48 new_esEs25(xwv4000, xwv3000, app(app(ty_Either, ceb), cec)) -> new_esEs7(xwv4000, xwv3000, ceb, cec) 30.08/13.48 new_compare11(xwv28000, xwv29000, app(app(ty_@2, eg), eh)) -> new_compare6(xwv28000, xwv29000, eg, eh) 30.08/13.48 new_esEs24(xwv4002, xwv3002, ty_Char) -> new_esEs12(xwv4002, xwv3002) 30.08/13.48 new_ltEs18(xwv2800, xwv2900) -> new_fsEs(new_compare19(xwv2800, xwv2900)) 30.08/13.48 new_esEs23(xwv4001, xwv3001, app(ty_Maybe, cbd)) -> new_esEs5(xwv4001, xwv3001, cbd) 30.08/13.48 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Char) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.48 new_esEs20(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.48 new_lt9(xwv28000, xwv29000, ty_Ordering) -> new_lt17(xwv28000, xwv29000) 30.08/13.48 new_lt20(xwv28000, xwv29000, ty_Bool) -> new_lt12(xwv28000, xwv29000) 30.08/13.48 new_primPlusNat0(Succ(xwv33200), Zero) -> Succ(xwv33200) 30.08/13.48 new_primPlusNat0(Zero, Succ(xwv9700)) -> Succ(xwv9700) 30.08/13.48 new_esEs28(xwv28000, xwv29000, app(ty_[], cf)) -> new_esEs17(xwv28000, xwv29000, cf) 30.08/13.48 new_ltEs16(EQ, GT) -> True 30.08/13.48 new_esEs20(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.48 new_esEs17(:(xwv4000, xwv4001), :(xwv3000, xwv3001), cdh) -> new_asAs(new_esEs25(xwv4000, xwv3000, cdh), new_esEs17(xwv4001, xwv3001, cdh)) 30.08/13.48 new_ltEs16(EQ, EQ) -> True 30.08/13.48 new_lt8(xwv28001, xwv29001, ty_Double) -> new_lt14(xwv28001, xwv29001) 30.08/13.48 new_ltEs6(True, False) -> False 30.08/13.48 new_lt9(xwv28000, xwv29000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_lt5(xwv28000, xwv29000, bbb, bbc, bbd) 30.08/13.48 new_esEs8(LT, LT) -> True 30.08/13.48 new_compare19(Integer(xwv28000), Integer(xwv29000)) -> new_primCmpInt(xwv28000, xwv29000) 30.08/13.48 new_lt8(xwv28001, xwv29001, ty_Ordering) -> new_lt17(xwv28001, xwv29001) 30.08/13.48 new_compare111(xwv28000, xwv29000, True) -> LT 30.08/13.48 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_ltEs7(xwv28000, xwv29000, bcd, bce, bcf) 30.08/13.48 new_esEs10(xwv28001, xwv29001, ty_Float) -> new_esEs15(xwv28001, xwv29001) 30.08/13.48 new_esEs22(xwv4000, xwv3000, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs6(xwv4000, xwv3000, cah, cba, cbb) 30.08/13.48 new_esEs9(xwv28000, xwv29000, ty_Float) -> new_esEs15(xwv28000, xwv29000) 30.08/13.48 new_lt20(xwv28000, xwv29000, app(ty_Ratio, bec)) -> new_lt6(xwv28000, xwv29000, bec) 30.08/13.48 new_esEs9(xwv28000, xwv29000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs6(xwv28000, xwv29000, bbb, bbc, bbd) 30.08/13.48 new_esEs21(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.48 new_ltEs8(xwv28002, xwv29002, app(app(ty_Either, hb), hc)) -> new_ltEs17(xwv28002, xwv29002, hb, hc) 30.08/13.48 new_compare23(xwv28000, xwv29000, False, dc, dd) -> new_compare113(xwv28000, xwv29000, new_ltEs17(xwv28000, xwv29000, dc, dd), dc, dd) 30.08/13.48 new_esEs13(True, True) -> True 30.08/13.48 new_ltEs20(xwv2800, xwv2900, ty_Double) -> new_ltEs13(xwv2800, xwv2900) 30.08/13.48 new_compare17(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.48 new_compare17(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.48 new_esEs28(xwv28000, xwv29000, ty_Double) -> new_esEs14(xwv28000, xwv29000) 30.08/13.48 new_ltEs20(xwv2800, xwv2900, ty_Ordering) -> new_ltEs16(xwv2800, xwv2900) 30.08/13.48 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs7(xwv28000, xwv29000, ea, eb, ec) 30.08/13.48 new_esEs20(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.48 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Char, chf) -> new_esEs12(xwv4000, xwv3000) 30.08/13.48 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Bool, chf) -> new_esEs13(xwv4000, xwv3000) 30.08/13.48 new_esEs23(xwv4001, xwv3001, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs6(xwv4001, xwv3001, ccb, ccc, ccd) 30.08/13.48 new_compare11(xwv28000, xwv29000, app(app(app(ty_@3, fc), fd), ff)) -> new_compare7(xwv28000, xwv29000, fc, fd, ff) 30.08/13.48 new_esEs25(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.48 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_Maybe, dg)) -> new_ltEs12(xwv28000, xwv29000, dg) 30.08/13.48 new_ltEs8(xwv28002, xwv29002, ty_Float) -> new_ltEs14(xwv28002, xwv29002) 30.08/13.48 new_primMulInt(Neg(xwv40010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.48 new_compare24(xwv28000, xwv29000, False) -> new_compare114(xwv28000, xwv29000, new_ltEs16(xwv28000, xwv29000)) 30.08/13.48 new_primCmpInt(Pos(Zero), Pos(Succ(xwv2900))) -> new_primCmpNat0(Zero, Succ(xwv2900)) 30.08/13.48 new_esEs10(xwv28001, xwv29001, app(ty_Maybe, hg)) -> new_esEs5(xwv28001, xwv29001, hg) 30.08/13.48 new_esEs25(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.48 new_esEs22(xwv4000, xwv3000, app(ty_Maybe, cab)) -> new_esEs5(xwv4000, xwv3000, cab) 30.08/13.48 new_ltEs19(xwv28001, xwv29001, ty_Ordering) -> new_ltEs16(xwv28001, xwv29001) 30.08/13.48 new_esEs7(Right(xwv4000), Right(xwv3000), dba, app(ty_Ratio, dbg)) -> new_esEs19(xwv4000, xwv3000, dbg) 30.08/13.48 new_esEs7(Right(xwv4000), Right(xwv3000), dba, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.48 new_lt9(xwv28000, xwv29000, ty_Double) -> new_lt14(xwv28000, xwv29000) 30.08/13.48 new_ltEs19(xwv28001, xwv29001, ty_Double) -> new_ltEs13(xwv28001, xwv29001) 30.08/13.48 new_compare11(xwv28000, xwv29000, ty_Ordering) -> new_compare18(xwv28000, xwv29000) 30.08/13.48 new_esEs24(xwv4002, xwv3002, app(app(ty_Either, ccg), cch)) -> new_esEs7(xwv4002, xwv3002, ccg, cch) 30.08/13.48 new_compare114(xwv28000, xwv29000, False) -> GT 30.08/13.48 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Maybe, cgc)) -> new_esEs5(xwv4000, xwv3000, cgc) 30.08/13.48 new_esEs23(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 30.08/13.48 new_ltEs20(xwv2800, xwv2900, app(ty_Ratio, bed)) -> new_ltEs4(xwv2800, xwv2900, bed) 30.08/13.48 new_compare28(xwv28000, xwv29000, False, cg, da, db) -> new_compare115(xwv28000, xwv29000, new_ltEs7(xwv28000, xwv29000, cg, da, db), cg, da, db) 30.08/13.48 new_esEs23(xwv4001, xwv3001, app(app(ty_@2, cbg), cbh)) -> new_esEs4(xwv4001, xwv3001, cbg, cbh) 30.08/13.48 new_esEs21(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 30.08/13.48 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Int, chf) -> new_esEs11(xwv4000, xwv3000) 30.08/13.48 new_compare113(xwv28000, xwv29000, True, dc, dd) -> LT 30.08/13.48 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_Ratio, cff), bca) -> new_ltEs4(xwv28000, xwv29000, cff) 30.08/13.48 new_esEs10(xwv28001, xwv29001, ty_@0) -> new_esEs16(xwv28001, xwv29001) 30.08/13.48 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_[], dh)) -> new_ltEs5(xwv28000, xwv29000, dh) 30.08/13.48 new_primMulInt(Pos(xwv40010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.48 new_primMulInt(Neg(xwv40010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.48 new_ltEs17(Right(xwv28000), Right(xwv29000), bda, ty_Ordering) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.48 new_esEs12(Char(xwv4000), Char(xwv3000)) -> new_primEqNat0(xwv4000, xwv3000) 30.08/13.48 new_esEs22(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.48 new_esEs22(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.48 new_esEs22(xwv4000, xwv3000, app(app(ty_@2, cae), caf)) -> new_esEs4(xwv4000, xwv3000, cae, caf) 30.08/13.48 new_lt9(xwv28000, xwv29000, ty_Integer) -> new_lt19(xwv28000, xwv29000) 30.08/13.48 new_ltEs17(Right(xwv28000), Right(xwv29000), bda, ty_Float) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.48 new_lt8(xwv28001, xwv29001, ty_@0) -> new_lt7(xwv28001, xwv29001) 30.08/13.48 new_lt9(xwv28000, xwv29000, app(ty_Ratio, bef)) -> new_lt6(xwv28000, xwv29000, bef) 30.08/13.48 new_ltEs19(xwv28001, xwv29001, ty_Int) -> new_ltEs9(xwv28001, xwv29001) 30.08/13.48 new_esEs7(Right(xwv4000), Right(xwv3000), dba, app(app(ty_@2, dbe), dbf)) -> new_esEs4(xwv4000, xwv3000, dbe, dbf) 30.08/13.48 new_lt19(xwv28000, xwv29000) -> new_esEs8(new_compare19(xwv28000, xwv29000), LT) 30.08/13.48 new_esEs24(xwv4002, xwv3002, ty_Double) -> new_esEs14(xwv4002, xwv3002) 30.08/13.48 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(ty_@2, bbg), bbh), bca) -> new_ltEs11(xwv28000, xwv29000, bbg, bbh) 30.08/13.48 new_esEs7(Right(xwv4000), Right(xwv3000), dba, app(ty_Maybe, dbb)) -> new_esEs5(xwv4000, xwv3000, dbb) 30.08/13.48 new_esEs13(False, False) -> True 30.08/13.48 new_compare16(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.48 new_ltEs9(xwv2800, xwv2900) -> new_fsEs(new_compare12(xwv2800, xwv2900)) 30.08/13.48 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.48 new_lt20(xwv28000, xwv29000, app(ty_Maybe, ce)) -> new_lt13(xwv28000, xwv29000, ce) 30.08/13.48 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_Either, cgd), cge)) -> new_esEs7(xwv4000, xwv3000, cgd, cge) 30.08/13.48 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Integer, chf) -> new_esEs18(xwv4000, xwv3000) 30.08/13.48 new_ltEs7(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, gb, hf) -> new_pePe(new_lt9(xwv28000, xwv29000, ga), new_asAs(new_esEs9(xwv28000, xwv29000, ga), new_pePe(new_lt8(xwv28001, xwv29001, gb), new_asAs(new_esEs10(xwv28001, xwv29001, gb), new_ltEs8(xwv28002, xwv29002, hf))))) 30.08/13.48 new_esEs23(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 30.08/13.48 new_esEs26(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.48 new_compare6(xwv28000, xwv29000, cb, cc) -> new_compare25(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, cb, cc), cb, cc) 30.08/13.48 new_lt20(xwv28000, xwv29000, ty_Int) -> new_lt10(xwv28000, xwv29000) 30.08/13.48 new_esEs24(xwv4002, xwv3002, app(ty_Ratio, cdc)) -> new_esEs19(xwv4002, xwv3002, cdc) 30.08/13.48 new_compare0([], :(xwv29000, xwv29001), ef) -> LT 30.08/13.48 new_asAs(True, xwv64) -> xwv64 30.08/13.48 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Bool) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.48 new_compare11(xwv28000, xwv29000, ty_Double) -> new_compare16(xwv28000, xwv29000) 30.08/13.48 new_esEs25(xwv4000, xwv3000, app(ty_[], cfb)) -> new_esEs17(xwv4000, xwv3000, cfb) 30.08/13.48 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(ty_@2, de), df)) -> new_ltEs11(xwv28000, xwv29000, de, df) 30.08/13.48 new_esEs10(xwv28001, xwv29001, app(ty_[], hh)) -> new_esEs17(xwv28001, xwv29001, hh) 30.08/13.48 new_ltEs20(xwv2800, xwv2900, ty_@0) -> new_ltEs15(xwv2800, xwv2900) 30.08/13.48 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.48 new_esEs14(Double(xwv4000, xwv4001), Double(xwv3000, xwv3001)) -> new_esEs11(new_sr0(xwv4000, xwv3001), new_sr0(xwv4001, xwv3000)) 30.08/13.48 new_lt16(xwv28000, xwv29000, cf) -> new_esEs8(new_compare0(xwv28000, xwv29000, cf), LT) 30.08/13.48 new_esEs20(xwv4000, xwv3000, app(ty_Maybe, bfc)) -> new_esEs5(xwv4000, xwv3000, bfc) 30.08/13.48 new_esEs16(@0, @0) -> True 30.08/13.48 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_@2, cgf), cgg)) -> new_esEs4(xwv4000, xwv3000, cgf, cgg) 30.08/13.48 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.48 new_esEs22(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.48 new_ltEs19(xwv28001, xwv29001, ty_@0) -> new_ltEs15(xwv28001, xwv29001) 30.08/13.48 new_primCmpInt(Pos(Succ(xwv2800)), Pos(xwv290)) -> new_primCmpNat0(Succ(xwv2800), xwv290) 30.08/13.48 new_esEs9(xwv28000, xwv29000, app(ty_[], bba)) -> new_esEs17(xwv28000, xwv29000, bba) 30.08/13.48 new_primPlusNat1(xwv107, xwv300000) -> new_primPlusNat0(xwv107, Succ(xwv300000)) 30.08/13.48 new_lt9(xwv28000, xwv29000, ty_Char) -> new_lt11(xwv28000, xwv29000) 30.08/13.48 new_esEs9(xwv28000, xwv29000, ty_Int) -> new_esEs11(xwv28000, xwv29000) 30.08/13.48 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_Maybe, chg), chf) -> new_esEs5(xwv4000, xwv3000, chg) 30.08/13.48 new_primCompAux00(xwv160, EQ) -> xwv160 30.08/13.48 new_compare0([], [], ef) -> EQ 30.08/13.48 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.48 new_ltEs16(GT, GT) -> True 30.08/13.48 new_compare27(Nothing, Just(xwv2900), False, cfh) -> LT 30.08/13.48 new_esEs28(xwv28000, xwv29000, ty_Float) -> new_esEs15(xwv28000, xwv29000) 30.08/13.48 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Int, bca) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.48 new_compare27(Just(xwv2800), Just(xwv2900), False, cfh) -> new_compare112(xwv2800, xwv2900, new_ltEs20(xwv2800, xwv2900, cfh), cfh) 30.08/13.48 new_esEs21(xwv4001, xwv3001, app(app(ty_Either, bgf), bgg)) -> new_esEs7(xwv4001, xwv3001, bgf, bgg) 30.08/13.48 new_primMulNat0(Zero, Zero) -> Zero 30.08/13.48 new_lt20(xwv28000, xwv29000, app(ty_[], cf)) -> new_lt16(xwv28000, xwv29000, cf) 30.08/13.48 new_lt14(xwv28000, xwv29000) -> new_esEs8(new_compare16(xwv28000, xwv29000), LT) 30.08/13.48 new_esEs23(xwv4001, xwv3001, ty_Char) -> new_esEs12(xwv4001, xwv3001) 30.08/13.48 new_esEs24(xwv4002, xwv3002, app(ty_Maybe, ccf)) -> new_esEs5(xwv4002, xwv3002, ccf) 30.08/13.48 new_lt8(xwv28001, xwv29001, ty_Char) -> new_lt11(xwv28001, xwv29001) 30.08/13.48 new_esEs10(xwv28001, xwv29001, ty_Double) -> new_esEs14(xwv28001, xwv29001) 30.08/13.48 new_compare111(xwv28000, xwv29000, False) -> GT 30.08/13.48 new_ltEs20(xwv2800, xwv2900, app(ty_Maybe, cga)) -> new_ltEs12(xwv2800, xwv2900, cga) 30.08/13.48 new_lt15(xwv28000, xwv29000) -> new_esEs8(new_compare17(xwv28000, xwv29000), LT) 30.08/13.48 new_compare9(@0, @0) -> EQ 30.08/13.48 new_compare115(xwv28000, xwv29000, False, cg, da, db) -> GT 30.08/13.48 new_esEs21(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 30.08/13.48 new_esEs22(xwv4000, xwv3000, app(app(ty_Either, cac), cad)) -> new_esEs7(xwv4000, xwv3000, cac, cad) 30.08/13.48 new_compare28(xwv28000, xwv29000, True, cg, da, db) -> EQ 30.08/13.48 new_esEs9(xwv28000, xwv29000, app(app(ty_Either, bbe), bbf)) -> new_esEs7(xwv28000, xwv29000, bbe, bbf) 30.08/13.48 new_esEs20(xwv4000, xwv3000, app(ty_[], bgd)) -> new_esEs17(xwv4000, xwv3000, bgd) 30.08/13.48 new_compare8(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Int) -> new_compare12(new_sr0(xwv28000, xwv29001), new_sr0(xwv29000, xwv28001)) 30.08/13.48 new_esEs22(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.48 new_ltEs17(Right(xwv28000), Right(xwv29000), bda, ty_Integer) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.48 new_ltEs8(xwv28002, xwv29002, ty_Int) -> new_ltEs9(xwv28002, xwv29002) 30.08/13.48 new_esEs9(xwv28000, xwv29000, ty_Integer) -> new_esEs18(xwv28000, xwv29000) 30.08/13.48 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.48 new_esEs7(Right(xwv4000), Right(xwv3000), dba, app(ty_[], dcc)) -> new_esEs17(xwv4000, xwv3000, dcc) 30.08/13.48 new_esEs25(xwv4000, xwv3000, app(ty_Maybe, cea)) -> new_esEs5(xwv4000, xwv3000, cea) 30.08/13.48 new_primCompAux0(xwv28000, xwv29000, xwv148, ef) -> new_primCompAux00(xwv148, new_compare11(xwv28000, xwv29000, ef)) 30.08/13.48 new_esEs7(Right(xwv4000), Right(xwv3000), dba, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.48 new_esEs22(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.48 new_lt9(xwv28000, xwv29000, ty_Float) -> new_lt15(xwv28000, xwv29000) 30.08/13.48 new_ltEs6(False, True) -> True 30.08/13.48 new_esEs9(xwv28000, xwv29000, ty_@0) -> new_esEs16(xwv28000, xwv29000) 30.08/13.48 new_compare25(xwv28000, xwv29000, False, cb, cc) -> new_compare110(xwv28000, xwv29000, new_ltEs11(xwv28000, xwv29000, cb, cc), cb, cc) 30.08/13.48 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Ordering, chf) -> new_esEs8(xwv4000, xwv3000) 30.08/13.48 new_esEs20(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.48 new_esEs21(xwv4001, xwv3001, app(ty_[], bhf)) -> new_esEs17(xwv4001, xwv3001, bhf) 30.08/13.48 new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False 30.08/13.48 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 30.08/13.48 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Char, bca) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.48 new_esEs13(False, True) -> False 30.08/13.48 new_esEs13(True, False) -> False 30.08/13.48 new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.48 new_esEs28(xwv28000, xwv29000, app(ty_Ratio, bec)) -> new_esEs19(xwv28000, xwv29000, bec) 30.08/13.48 new_lt8(xwv28001, xwv29001, ty_Int) -> new_lt10(xwv28001, xwv29001) 30.08/13.48 new_compare11(xwv28000, xwv29000, ty_@0) -> new_compare9(xwv28000, xwv29000) 30.08/13.48 new_ltEs17(Right(xwv28000), Right(xwv29000), bda, ty_Bool) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.48 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Ordering) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.48 new_compare24(xwv28000, xwv29000, True) -> EQ 30.08/13.48 new_lt5(xwv28000, xwv29000, cg, da, db) -> new_esEs8(new_compare7(xwv28000, xwv29000, cg, da, db), LT) 30.08/13.48 new_lt20(xwv28000, xwv29000, ty_@0) -> new_lt7(xwv28000, xwv29000) 30.08/13.48 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_[], dah), chf) -> new_esEs17(xwv4000, xwv3000, dah) 30.08/13.48 new_ltEs17(Right(xwv28000), Right(xwv29000), bda, app(ty_Ratio, cfg)) -> new_ltEs4(xwv28000, xwv29000, cfg) 30.08/13.48 new_ltEs19(xwv28001, xwv29001, app(ty_Maybe, bc)) -> new_ltEs12(xwv28001, xwv29001, bc) 30.08/13.48 new_esEs7(Right(xwv4000), Right(xwv3000), dba, app(app(ty_Either, dbc), dbd)) -> new_esEs7(xwv4000, xwv3000, dbc, dbd) 30.08/13.48 new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> False 30.08/13.48 new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> False 30.08/13.48 new_primCmpInt(Neg(Zero), Neg(Succ(xwv2900))) -> new_primCmpNat0(Succ(xwv2900), Zero) 30.08/13.48 new_esEs23(xwv4001, xwv3001, app(ty_Ratio, cca)) -> new_esEs19(xwv4001, xwv3001, cca) 30.08/13.48 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_@0, bca) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.48 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.08/13.48 new_lt8(xwv28001, xwv29001, app(ty_Ratio, beg)) -> new_lt6(xwv28001, xwv29001, beg) 30.08/13.48 new_lt8(xwv28001, xwv29001, ty_Bool) -> new_lt12(xwv28001, xwv29001) 30.08/13.48 new_ltEs17(Right(xwv28000), Right(xwv29000), bda, ty_Char) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.48 new_esEs25(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.48 new_esEs28(xwv28000, xwv29000, app(ty_Maybe, ce)) -> new_esEs5(xwv28000, xwv29000, ce) 30.08/13.48 new_lt9(xwv28000, xwv29000, ty_@0) -> new_lt7(xwv28000, xwv29000) 30.08/13.48 new_lt11(xwv28000, xwv29000) -> new_esEs8(new_compare13(xwv28000, xwv29000), LT) 30.08/13.48 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Double, bca) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.48 new_esEs23(xwv4001, xwv3001, ty_Double) -> new_esEs14(xwv4001, xwv3001) 30.08/13.48 new_lt20(xwv28000, xwv29000, ty_Double) -> new_lt14(xwv28000, xwv29000) 30.08/13.48 new_ltEs17(Right(xwv28000), Right(xwv29000), bda, app(app(ty_@2, bdb), bdc)) -> new_ltEs11(xwv28000, xwv29000, bdb, bdc) 30.08/13.48 new_ltEs8(xwv28002, xwv29002, ty_Bool) -> new_ltEs6(xwv28002, xwv29002) 30.08/13.48 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(ty_Either, ed), ee)) -> new_ltEs17(xwv28000, xwv29000, ed, ee) 30.08/13.48 new_esEs24(xwv4002, xwv3002, ty_Float) -> new_esEs15(xwv4002, xwv3002) 30.08/13.48 new_compare8(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Integer) -> new_compare19(new_sr(xwv28000, xwv29001), new_sr(xwv29000, xwv28001)) 30.08/13.48 new_esEs25(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.48 new_compare26(xwv28000, xwv29000, False) -> new_compare111(xwv28000, xwv29000, new_ltEs6(xwv28000, xwv29000)) 30.08/13.48 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_[], bcc), bca) -> new_ltEs5(xwv28000, xwv29000, bcc) 30.08/13.48 new_not(False) -> True 30.08/13.48 new_esEs21(xwv4001, xwv3001, ty_Double) -> new_esEs14(xwv4001, xwv3001) 30.08/13.48 new_esEs21(xwv4001, xwv3001, ty_Bool) -> new_esEs13(xwv4001, xwv3001) 30.08/13.48 new_esEs24(xwv4002, xwv3002, app(ty_[], cdg)) -> new_esEs17(xwv4002, xwv3002, cdg) 30.08/13.48 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_Ratio, che)) -> new_ltEs4(xwv28000, xwv29000, che) 30.08/13.48 new_ltEs17(Right(xwv28000), Right(xwv29000), bda, app(ty_Maybe, bdd)) -> new_ltEs12(xwv28000, xwv29000, bdd) 30.08/13.48 new_esEs9(xwv28000, xwv29000, ty_Char) -> new_esEs12(xwv28000, xwv29000) 30.08/13.48 new_compare0(:(xwv28000, xwv28001), [], ef) -> GT 30.08/13.48 new_esEs8(LT, GT) -> False 30.08/13.48 new_esEs8(GT, LT) -> False 30.08/13.48 new_compare27(Just(xwv2800), Nothing, False, cfh) -> GT 30.08/13.48 new_primPlusNat0(Succ(xwv33200), Succ(xwv9700)) -> Succ(Succ(new_primPlusNat0(xwv33200, xwv9700))) 30.08/13.48 new_esEs24(xwv4002, xwv3002, ty_@0) -> new_esEs16(xwv4002, xwv3002) 30.08/13.48 new_esEs27(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.48 new_esEs25(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.48 new_esEs21(xwv4001, xwv3001, ty_Char) -> new_esEs12(xwv4001, xwv3001) 30.08/13.48 new_compare16(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.48 new_compare11(xwv28000, xwv29000, ty_Float) -> new_compare17(xwv28000, xwv29000) 30.08/13.48 new_esEs6(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), bhg, bhh, caa) -> new_asAs(new_esEs22(xwv4000, xwv3000, bhg), new_asAs(new_esEs23(xwv4001, xwv3001, bhh), new_esEs24(xwv4002, xwv3002, caa))) 30.08/13.48 new_esEs9(xwv28000, xwv29000, ty_Bool) -> new_esEs13(xwv28000, xwv29000) 30.08/13.48 new_esEs27(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.48 new_sr0(xwv4001, xwv3000) -> new_primMulInt(xwv4001, xwv3000) 30.08/13.48 new_lt9(xwv28000, xwv29000, ty_Bool) -> new_lt12(xwv28000, xwv29000) 30.08/13.48 new_ltEs19(xwv28001, xwv29001, ty_Char) -> new_ltEs10(xwv28001, xwv29001) 30.08/13.48 new_lt20(xwv28000, xwv29000, app(app(ty_Either, dc), dd)) -> new_lt18(xwv28000, xwv29000, dc, dd) 30.08/13.48 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.08/13.48 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.08/13.48 new_ltEs8(xwv28002, xwv29002, app(app(ty_@2, gc), gd)) -> new_ltEs11(xwv28002, xwv29002, gc, gd) 30.08/13.48 new_esEs7(Right(xwv4000), Right(xwv3000), dba, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.48 new_ltEs8(xwv28002, xwv29002, ty_Char) -> new_ltEs10(xwv28002, xwv29002) 30.08/13.48 new_compare0(:(xwv28000, xwv28001), :(xwv29000, xwv29001), ef) -> new_primCompAux0(xwv28000, xwv29000, new_compare0(xwv28001, xwv29001, ef), ef) 30.08/13.48 new_lt20(xwv28000, xwv29000, app(app(ty_@2, cb), cc)) -> new_lt4(xwv28000, xwv29000, cb, cc) 30.08/13.48 new_esEs7(Left(xwv4000), Left(xwv3000), ty_@0, chf) -> new_esEs16(xwv4000, xwv3000) 30.08/13.48 new_esEs22(xwv4000, xwv3000, app(ty_[], cbc)) -> new_esEs17(xwv4000, xwv3000, cbc) 30.08/13.48 new_compare11(xwv28000, xwv29000, app(ty_[], fb)) -> new_compare0(xwv28000, xwv29000, fb) 30.08/13.48 new_esEs10(xwv28001, xwv29001, app(ty_Ratio, beg)) -> new_esEs19(xwv28001, xwv29001, beg) 30.08/13.48 new_lt8(xwv28001, xwv29001, ty_Integer) -> new_lt19(xwv28001, xwv29001) 30.08/13.48 new_esEs9(xwv28000, xwv29000, ty_Double) -> new_esEs14(xwv28000, xwv29000) 30.08/13.48 new_esEs10(xwv28001, xwv29001, ty_Bool) -> new_esEs13(xwv28001, xwv29001) 30.08/13.48 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_[], chd)) -> new_esEs17(xwv4000, xwv3000, chd) 30.08/13.48 new_lt6(xwv28000, xwv29000, bec) -> new_esEs8(new_compare8(xwv28000, xwv29000, bec), LT) 30.08/13.48 new_ltEs12(Nothing, Just(xwv29000), cga) -> True 30.08/13.48 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.08/13.48 new_esEs21(xwv4001, xwv3001, app(ty_Ratio, bhb)) -> new_esEs19(xwv4001, xwv3001, bhb) 30.08/13.48 new_esEs28(xwv28000, xwv29000, app(app(ty_@2, cb), cc)) -> new_esEs4(xwv28000, xwv29000, cb, cc) 30.08/13.48 new_esEs7(Right(xwv4000), Right(xwv3000), dba, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.48 new_primCmpNat0(Succ(xwv2800), Succ(xwv2900)) -> new_primCmpNat0(xwv2800, xwv2900) 30.08/13.48 new_ltEs15(xwv2800, xwv2900) -> new_fsEs(new_compare9(xwv2800, xwv2900)) 30.08/13.48 new_ltEs8(xwv28002, xwv29002, app(ty_Maybe, ge)) -> new_ltEs12(xwv28002, xwv29002, ge) 30.08/13.48 new_lt8(xwv28001, xwv29001, ty_Float) -> new_lt15(xwv28001, xwv29001) 30.08/13.48 new_ltEs17(Right(xwv28000), Right(xwv29000), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs7(xwv28000, xwv29000, bdf, bdg, bdh) 30.08/13.48 new_compare11(xwv28000, xwv29000, app(app(ty_Either, fg), fh)) -> new_compare10(xwv28000, xwv29000, fg, fh) 30.08/13.48 new_esEs28(xwv28000, xwv29000, ty_Ordering) -> new_esEs8(xwv28000, xwv29000) 30.08/13.48 new_compare12(xwv28, xwv29) -> new_primCmpInt(xwv28, xwv29) 30.08/13.48 new_ltEs12(Nothing, Nothing, cga) -> True 30.08/13.48 new_ltEs20(xwv2800, xwv2900, ty_Char) -> new_ltEs10(xwv2800, xwv2900) 30.08/13.48 new_esEs19(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), cfc) -> new_asAs(new_esEs26(xwv4000, xwv3000, cfc), new_esEs27(xwv4001, xwv3001, cfc)) 30.08/13.48 new_ltEs12(Just(xwv28000), Nothing, cga) -> False 30.08/13.48 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.08/13.48 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.08/13.48 new_ltEs17(Right(xwv28000), Left(xwv29000), bda, bca) -> False 30.08/13.48 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Float) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.48 new_ltEs5(xwv2800, xwv2900, ef) -> new_fsEs(new_compare0(xwv2800, xwv2900, ef)) 30.08/13.48 new_compare110(xwv28000, xwv29000, False, cb, cc) -> GT 30.08/13.48 new_compare11(xwv28000, xwv29000, app(ty_Ratio, bee)) -> new_compare8(xwv28000, xwv29000, bee) 30.08/13.48 new_primEqNat0(Zero, Zero) -> True 30.08/13.48 new_ltEs20(xwv2800, xwv2900, ty_Int) -> new_ltEs9(xwv2800, xwv2900) 30.08/13.48 new_esEs20(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.48 new_ltEs20(xwv2800, xwv2900, app(ty_[], ef)) -> new_ltEs5(xwv2800, xwv2900, ef) 30.08/13.48 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Float, chf) -> new_esEs15(xwv4000, xwv3000) 30.08/13.48 new_esEs28(xwv28000, xwv29000, app(app(app(ty_@3, cg), da), db)) -> new_esEs6(xwv28000, xwv29000, cg, da, db) 30.08/13.48 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Integer) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.48 new_compare7(xwv28000, xwv29000, cg, da, db) -> new_compare28(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, cg, da, db), cg, da, db) 30.08/13.48 new_asAs(False, xwv64) -> False 30.08/13.48 new_esEs17(:(xwv4000, xwv4001), [], cdh) -> False 30.08/13.48 new_esEs17([], :(xwv3000, xwv3001), cdh) -> False 30.08/13.48 new_esEs20(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.48 new_esEs26(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.48 new_esEs25(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.48 new_lt10(xwv280, xwv290) -> new_esEs8(new_compare12(xwv280, xwv290), LT) 30.08/13.48 new_esEs8(EQ, GT) -> False 30.08/13.48 new_esEs8(GT, EQ) -> False 30.08/13.48 new_compare112(xwv125, xwv126, False, cfd) -> GT 30.08/13.48 new_esEs20(xwv4000, xwv3000, app(ty_Ratio, bfh)) -> new_esEs19(xwv4000, xwv3000, bfh) 30.08/13.48 new_lt20(xwv28000, xwv29000, app(app(app(ty_@3, cg), da), db)) -> new_lt5(xwv28000, xwv29000, cg, da, db) 30.08/13.48 new_compare17(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.48 new_esEs15(Float(xwv4000, xwv4001), Float(xwv3000, xwv3001)) -> new_esEs11(new_sr0(xwv4000, xwv3001), new_sr0(xwv4001, xwv3000)) 30.08/13.48 new_esEs7(Left(xwv4000), Right(xwv3000), dba, chf) -> False 30.08/13.48 new_esEs7(Right(xwv4000), Left(xwv3000), dba, chf) -> False 30.08/13.48 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_Ratio, dad), chf) -> new_esEs19(xwv4000, xwv3000, dad) 30.08/13.48 new_esEs11(xwv400, xwv300) -> new_primEqInt(xwv400, xwv300) 30.08/13.48 new_ltEs11(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), h, cd) -> new_pePe(new_lt20(xwv28000, xwv29000, h), new_asAs(new_esEs28(xwv28000, xwv29000, h), new_ltEs19(xwv28001, xwv29001, cd))) 30.08/13.48 30.08/13.48 The set Q consists of the following terms: 30.08/13.48 30.08/13.48 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 30.08/13.48 new_compare11(x0, x1, ty_Ordering) 30.08/13.48 new_esEs8(EQ, EQ) 30.08/13.48 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.08/13.48 new_esEs20(x0, x1, ty_Float) 30.08/13.48 new_esEs9(x0, x1, ty_@0) 30.08/13.48 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.08/13.48 new_compare27(Nothing, Just(x0), False, x1) 30.08/13.48 new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) 30.08/13.48 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_lt9(x0, x1, app(ty_Maybe, x2)) 30.08/13.48 new_compare24(x0, x1, False) 30.08/13.48 new_lt18(x0, x1, x2, x3) 30.08/13.48 new_compare115(x0, x1, True, x2, x3, x4) 30.08/13.48 new_esEs5(Just(x0), Just(x1), ty_Float) 30.08/13.48 new_compare27(x0, x1, True, x2) 30.08/13.48 new_compare11(x0, x1, ty_Double) 30.08/13.48 new_compare26(x0, x1, False) 30.08/13.48 new_esEs18(Integer(x0), Integer(x1)) 30.08/13.48 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.08/13.48 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.08/13.48 new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.08/13.48 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 30.08/13.48 new_compare28(x0, x1, True, x2, x3, x4) 30.08/13.48 new_pePe(False, x0) 30.08/13.48 new_compare11(x0, x1, ty_Int) 30.08/13.48 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.48 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.48 new_ltEs19(x0, x1, app(ty_[], x2)) 30.08/13.48 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.08/13.48 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.08/13.48 new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.48 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 30.08/13.48 new_sr(Integer(x0), Integer(x1)) 30.08/13.48 new_primEqInt(Pos(Zero), Pos(Zero)) 30.08/13.48 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.08/13.48 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.08/13.48 new_ltEs8(x0, x1, ty_Float) 30.08/13.48 new_compare13(Char(x0), Char(x1)) 30.08/13.48 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.08/13.48 new_lt20(x0, x1, ty_@0) 30.08/13.48 new_esEs23(x0, x1, ty_Float) 30.08/13.48 new_esEs25(x0, x1, ty_Ordering) 30.08/13.48 new_ltEs15(x0, x1) 30.08/13.48 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 30.08/13.48 new_esEs9(x0, x1, ty_Integer) 30.08/13.48 new_ltEs19(x0, x1, ty_Bool) 30.08/13.48 new_esEs22(x0, x1, ty_Float) 30.08/13.48 new_esEs10(x0, x1, ty_Integer) 30.08/13.48 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.08/13.48 new_esEs22(x0, x1, app(ty_Maybe, x2)) 30.08/13.48 new_primEqInt(Neg(Zero), Neg(Zero)) 30.08/13.48 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.48 new_lt20(x0, x1, ty_Integer) 30.08/13.48 new_ltEs16(GT, EQ) 30.08/13.48 new_ltEs16(EQ, GT) 30.08/13.48 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 30.08/13.48 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.08/13.48 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 30.08/13.48 new_esEs5(Just(x0), Nothing, x1) 30.08/13.48 new_ltEs17(Right(x0), Right(x1), x2, ty_@0) 30.08/13.48 new_compare12(x0, x1) 30.08/13.48 new_ltEs13(x0, x1) 30.08/13.48 new_primPlusNat0(Succ(x0), Succ(x1)) 30.08/13.48 new_ltEs8(x0, x1, ty_Integer) 30.08/13.48 new_primMulInt(Pos(x0), Neg(x1)) 30.08/13.48 new_primMulInt(Neg(x0), Pos(x1)) 30.08/13.48 new_esEs21(x0, x1, app(ty_Ratio, x2)) 30.08/13.48 new_ltEs16(LT, LT) 30.08/13.48 new_primMulInt(Neg(x0), Neg(x1)) 30.08/13.48 new_compare0(:(x0, x1), [], x2) 30.08/13.48 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.08/13.48 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 30.08/13.48 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.08/13.48 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 30.08/13.48 new_compare112(x0, x1, True, x2) 30.08/13.48 new_esEs9(x0, x1, ty_Char) 30.08/13.48 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.08/13.48 new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.48 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.08/13.48 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 30.08/13.48 new_primEqNat0(Succ(x0), Succ(x1)) 30.08/13.48 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.08/13.48 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.48 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.08/13.48 new_esEs9(x0, x1, ty_Int) 30.08/13.48 new_asAs(True, x0) 30.08/13.48 new_primEqInt(Pos(Zero), Neg(Zero)) 30.08/13.48 new_primEqInt(Neg(Zero), Pos(Zero)) 30.08/13.48 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.08/13.48 new_compare11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_esEs5(Just(x0), Just(x1), ty_Integer) 30.08/13.48 new_primCompAux00(x0, GT) 30.08/13.48 new_lt20(x0, x1, ty_Bool) 30.08/13.48 new_esEs27(x0, x1, ty_Integer) 30.08/13.48 new_compare111(x0, x1, False) 30.08/13.48 new_esEs25(x0, x1, app(ty_[], x2)) 30.08/13.48 new_lt20(x0, x1, ty_Char) 30.08/13.48 new_esEs28(x0, x1, ty_Double) 30.08/13.48 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.08/13.48 new_ltEs20(x0, x1, ty_Float) 30.08/13.48 new_ltEs19(x0, x1, ty_Integer) 30.08/13.48 new_ltEs17(Right(x0), Right(x1), x2, ty_Float) 30.08/13.48 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.08/13.48 new_lt20(x0, x1, app(ty_[], x2)) 30.08/13.48 new_esEs28(x0, x1, ty_Int) 30.08/13.48 new_esEs9(x0, x1, ty_Bool) 30.08/13.48 new_lt8(x0, x1, app(ty_Maybe, x2)) 30.08/13.48 new_esEs5(Nothing, Nothing, x0) 30.08/13.48 new_lt15(x0, x1) 30.08/13.48 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.08/13.48 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.48 new_esEs21(x0, x1, ty_Integer) 30.08/13.48 new_esEs17([], :(x0, x1), x2) 30.08/13.48 new_esEs22(x0, x1, ty_@0) 30.08/13.48 new_ltEs17(Right(x0), Right(x1), x2, ty_Char) 30.08/13.48 new_compare14(x0, x1) 30.08/13.48 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.48 new_esEs5(Nothing, Just(x0), x1) 30.08/13.48 new_primCompAux00(x0, EQ) 30.08/13.48 new_fsEs(x0) 30.08/13.48 new_lt20(x0, x1, ty_Ordering) 30.08/13.48 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.08/13.48 new_primCmpNat0(Succ(x0), Zero) 30.08/13.48 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.08/13.48 new_ltEs8(x0, x1, ty_@0) 30.08/13.48 new_ltEs19(x0, x1, ty_Ordering) 30.08/13.48 new_ltEs17(Right(x0), Right(x1), x2, ty_Int) 30.08/13.48 new_compare111(x0, x1, True) 30.08/13.48 new_primCmpNat0(Succ(x0), Succ(x1)) 30.08/13.48 new_ltEs16(GT, GT) 30.08/13.48 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 30.08/13.48 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 30.08/13.48 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.48 new_esEs10(x0, x1, app(ty_Maybe, x2)) 30.08/13.48 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 30.08/13.48 new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) 30.08/13.48 new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.08/13.48 new_compare113(x0, x1, False, x2, x3) 30.08/13.48 new_esEs21(x0, x1, ty_Bool) 30.08/13.48 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.48 new_esEs5(Just(x0), Just(x1), ty_@0) 30.08/13.48 new_ltEs16(LT, EQ) 30.08/13.48 new_ltEs16(EQ, LT) 30.08/13.48 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.08/13.48 new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.08/13.48 new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.08/13.48 new_ltEs19(x0, x1, ty_Double) 30.08/13.48 new_esEs24(x0, x1, ty_Integer) 30.08/13.48 new_compare11(x0, x1, ty_@0) 30.08/13.48 new_compare26(x0, x1, True) 30.08/13.48 new_lt17(x0, x1) 30.08/13.48 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.08/13.48 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 30.08/13.48 new_esEs23(x0, x1, ty_Integer) 30.08/13.48 new_compare11(x0, x1, app(ty_[], x2)) 30.08/13.48 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.08/13.48 new_compare110(x0, x1, True, x2, x3) 30.08/13.48 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.08/13.48 new_compare112(x0, x1, False, x2) 30.08/13.48 new_esEs8(GT, GT) 30.08/13.48 new_primCompAux0(x0, x1, x2, x3) 30.08/13.48 new_esEs9(x0, x1, ty_Float) 30.08/13.48 new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.08/13.48 new_ltEs20(x0, x1, app(ty_[], x2)) 30.08/13.48 new_esEs8(LT, EQ) 30.08/13.48 new_esEs8(EQ, LT) 30.08/13.48 new_esEs20(x0, x1, ty_Bool) 30.08/13.48 new_compare19(Integer(x0), Integer(x1)) 30.08/13.48 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.08/13.48 new_esEs9(x0, x1, app(ty_Maybe, x2)) 30.08/13.48 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.08/13.48 new_primPlusNat0(Zero, Succ(x0)) 30.08/13.48 new_esEs25(x0, x1, ty_Int) 30.08/13.48 new_esEs24(x0, x1, ty_Float) 30.08/13.48 new_esEs10(x0, x1, ty_Double) 30.08/13.48 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.08/13.48 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.08/13.48 new_esEs13(False, True) 30.08/13.48 new_esEs13(True, False) 30.08/13.48 new_esEs24(x0, x1, ty_Bool) 30.08/13.48 new_ltEs8(x0, x1, app(ty_Maybe, x2)) 30.08/13.48 new_ltEs14(x0, x1) 30.08/13.48 new_esEs8(LT, LT) 30.08/13.48 new_lt9(x0, x1, ty_Float) 30.08/13.48 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.08/13.48 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.08/13.48 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.08/13.48 new_compare6(x0, x1, x2, x3) 30.08/13.48 new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) 30.08/13.48 new_primEqNat0(Succ(x0), Zero) 30.08/13.48 new_esEs26(x0, x1, ty_Integer) 30.08/13.48 new_lt8(x0, x1, ty_Integer) 30.08/13.48 new_esEs10(x0, x1, ty_@0) 30.08/13.48 new_lt11(x0, x1) 30.08/13.48 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.08/13.48 new_esEs10(x0, x1, app(ty_Ratio, x2)) 30.08/13.48 new_ltEs6(False, False) 30.08/13.48 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 30.08/13.48 new_compare23(x0, x1, False, x2, x3) 30.08/13.48 new_compare0([], :(x0, x1), x2) 30.08/13.48 new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) 30.08/13.48 new_lt4(x0, x1, x2, x3) 30.08/13.48 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.48 new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) 30.08/13.48 new_esEs20(x0, x1, app(ty_[], x2)) 30.08/13.48 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.48 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.08/13.48 new_esEs25(x0, x1, ty_Bool) 30.08/13.48 new_ltEs19(x0, x1, ty_@0) 30.08/13.48 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.08/13.48 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.08/13.48 new_asAs(False, x0) 30.08/13.48 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.48 new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.08/13.48 new_esEs27(x0, x1, ty_Int) 30.08/13.48 new_esEs25(x0, x1, ty_Char) 30.08/13.48 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.08/13.48 new_esEs24(x0, x1, ty_Int) 30.08/13.48 new_compare28(x0, x1, False, x2, x3, x4) 30.08/13.48 new_lt8(x0, x1, ty_Ordering) 30.08/13.48 new_lt16(x0, x1, x2) 30.08/13.48 new_ltEs8(x0, x1, ty_Double) 30.08/13.48 new_esEs22(x0, x1, app(ty_Ratio, x2)) 30.08/13.48 new_esEs16(@0, @0) 30.08/13.48 new_compare15(x0, x1, x2) 30.08/13.48 new_esEs22(x0, x1, ty_Double) 30.08/13.48 new_esEs24(x0, x1, ty_Char) 30.08/13.48 new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 30.08/13.48 new_esEs20(x0, x1, ty_Integer) 30.08/13.48 new_primMulInt(Pos(x0), Pos(x1)) 30.08/13.48 new_compare27(Just(x0), Just(x1), False, x2) 30.08/13.48 new_primPlusNat0(Succ(x0), Zero) 30.08/13.48 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.48 new_esEs21(x0, x1, ty_Float) 30.08/13.48 new_compare27(Just(x0), Nothing, False, x1) 30.08/13.48 new_esEs23(x0, x1, app(ty_[], x2)) 30.08/13.48 new_esEs28(x0, x1, ty_Integer) 30.08/13.48 new_lt8(x0, x1, ty_@0) 30.08/13.48 new_esEs28(x0, x1, app(ty_[], x2)) 30.08/13.48 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.08/13.48 new_esEs17(:(x0, x1), :(x2, x3), x4) 30.08/13.48 new_lt8(x0, x1, app(ty_[], x2)) 30.08/13.48 new_esEs5(Just(x0), Just(x1), ty_Ordering) 30.08/13.48 new_ltEs16(EQ, EQ) 30.08/13.48 new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.08/13.48 new_esEs20(x0, x1, ty_Ordering) 30.08/13.48 new_esEs23(x0, x1, ty_Int) 30.08/13.48 new_esEs20(x0, x1, ty_Double) 30.08/13.48 new_lt8(x0, x1, ty_Bool) 30.08/13.48 new_ltEs20(x0, x1, ty_Int) 30.08/13.48 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.08/13.48 new_esEs21(x0, x1, ty_Char) 30.08/13.48 new_primMulNat0(Zero, Zero) 30.08/13.48 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_compare114(x0, x1, False) 30.08/13.48 new_ltEs20(x0, x1, ty_Double) 30.08/13.48 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.08/13.48 new_esEs22(x0, x1, ty_Ordering) 30.08/13.48 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.48 new_esEs11(x0, x1) 30.08/13.48 new_esEs21(x0, x1, ty_Int) 30.08/13.48 new_lt9(x0, x1, ty_Char) 30.08/13.48 new_esEs23(x0, x1, ty_Ordering) 30.08/13.48 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.08/13.48 new_ltEs18(x0, x1) 30.08/13.48 new_compare0([], [], x0) 30.08/13.48 new_compare9(@0, @0) 30.08/13.48 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.08/13.48 new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.08/13.48 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.48 new_compare23(x0, x1, True, x2, x3) 30.08/13.48 new_esEs21(x0, x1, ty_Double) 30.08/13.48 new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.08/13.48 new_lt9(x0, x1, ty_Int) 30.08/13.48 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.08/13.48 new_lt9(x0, x1, ty_@0) 30.08/13.48 new_esEs7(Left(x0), Right(x1), x2, x3) 30.08/13.48 new_esEs7(Right(x0), Left(x1), x2, x3) 30.08/13.48 new_esEs17(:(x0, x1), [], x2) 30.08/13.48 new_esEs5(Just(x0), Just(x1), ty_Int) 30.08/13.48 new_esEs22(x0, x1, app(ty_[], x2)) 30.08/13.48 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.08/13.48 new_esEs5(Just(x0), Just(x1), ty_Double) 30.08/13.48 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 30.08/13.48 new_compare10(x0, x1, x2, x3) 30.08/13.48 new_esEs5(Just(x0), Just(x1), ty_Char) 30.08/13.48 new_esEs25(x0, x1, ty_Integer) 30.08/13.48 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.48 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.48 new_compare11(x0, x1, ty_Float) 30.08/13.48 new_esEs25(x0, x1, ty_Float) 30.08/13.48 new_primPlusNat0(Zero, Zero) 30.08/13.48 new_lt8(x0, x1, ty_Char) 30.08/13.48 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.08/13.48 new_primEqNat0(Zero, Succ(x0)) 30.08/13.48 new_not(True) 30.08/13.48 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.08/13.48 new_compare11(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.48 new_lt9(x0, x1, ty_Bool) 30.08/13.48 new_esEs20(x0, x1, ty_Char) 30.08/13.48 new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) 30.08/13.48 new_esEs8(EQ, GT) 30.08/13.48 new_esEs8(GT, EQ) 30.08/13.48 new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.08/13.48 new_lt12(x0, x1) 30.08/13.48 new_esEs28(x0, x1, ty_@0) 30.08/13.48 new_compare25(x0, x1, False, x2, x3) 30.08/13.48 new_esEs15(Float(x0, x1), Float(x2, x3)) 30.08/13.48 new_ltEs17(Left(x0), Left(x1), ty_Int, x2) 30.08/13.48 new_lt10(x0, x1) 30.08/13.48 new_lt13(x0, x1, x2) 30.08/13.48 new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.08/13.48 new_esEs28(x0, x1, ty_Bool) 30.08/13.48 new_ltEs17(Left(x0), Left(x1), ty_@0, x2) 30.08/13.48 new_esEs10(x0, x1, ty_Ordering) 30.08/13.48 new_esEs24(x0, x1, ty_Ordering) 30.08/13.48 new_esEs13(True, True) 30.08/13.48 new_lt9(x0, x1, ty_Double) 30.08/13.48 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.08/13.48 new_esEs28(x0, x1, ty_Float) 30.08/13.48 new_ltEs20(x0, x1, ty_Char) 30.08/13.48 new_compare25(x0, x1, True, x2, x3) 30.08/13.48 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.48 new_primCompAux00(x0, LT) 30.08/13.48 new_esEs23(x0, x1, ty_@0) 30.08/13.48 new_primMulNat0(Zero, Succ(x0)) 30.08/13.48 new_lt20(x0, x1, ty_Double) 30.08/13.48 new_esEs21(x0, x1, ty_Ordering) 30.08/13.48 new_compare18(x0, x1) 30.08/13.48 new_ltEs20(x0, x1, ty_@0) 30.08/13.48 new_ltEs8(x0, x1, ty_Ordering) 30.08/13.48 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.48 new_esEs20(x0, x1, ty_Int) 30.08/13.48 new_esEs23(x0, x1, ty_Bool) 30.08/13.48 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.08/13.48 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.48 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.48 new_ltEs16(LT, GT) 30.08/13.48 new_ltEs16(GT, LT) 30.08/13.48 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.08/13.48 new_primPlusNat1(x0, x1) 30.08/13.48 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 30.08/13.48 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.08/13.48 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_ltEs10(x0, x1) 30.08/13.48 new_ltEs6(True, True) 30.08/13.48 new_compare11(x0, x1, app(ty_Ratio, x2)) 30.08/13.48 new_ltEs17(Left(x0), Left(x1), ty_Double, x2) 30.08/13.48 new_esEs28(x0, x1, ty_Char) 30.08/13.48 new_lt8(x0, x1, ty_Int) 30.08/13.48 new_compare110(x0, x1, False, x2, x3) 30.08/13.48 new_ltEs17(Left(x0), Left(x1), ty_Char, x2) 30.08/13.48 new_esEs23(x0, x1, ty_Char) 30.08/13.48 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.08/13.48 new_esEs26(x0, x1, ty_Int) 30.08/13.48 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_compare11(x0, x1, app(ty_Maybe, x2)) 30.08/13.48 new_esEs21(x0, x1, app(ty_[], x2)) 30.08/13.48 new_esEs23(x0, x1, ty_Double) 30.08/13.48 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_esEs9(x0, x1, ty_Double) 30.08/13.48 new_lt8(x0, x1, ty_Double) 30.08/13.48 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.08/13.48 new_lt6(x0, x1, x2) 30.08/13.48 new_ltEs12(Just(x0), Nothing, x1) 30.08/13.48 new_esEs10(x0, x1, ty_Char) 30.08/13.48 new_lt8(x0, x1, ty_Float) 30.08/13.48 new_primMulNat0(Succ(x0), Zero) 30.08/13.48 new_esEs20(x0, x1, ty_@0) 30.08/13.48 new_esEs22(x0, x1, ty_Bool) 30.08/13.48 new_esEs9(x0, x1, ty_Ordering) 30.08/13.48 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 30.08/13.48 new_compare115(x0, x1, False, x2, x3, x4) 30.08/13.48 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 30.08/13.48 new_pePe(True, x0) 30.08/13.48 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.08/13.48 new_esEs9(x0, x1, app(ty_[], x2)) 30.08/13.48 new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.08/13.48 new_compare114(x0, x1, True) 30.08/13.48 new_lt5(x0, x1, x2, x3, x4) 30.08/13.48 new_esEs8(LT, GT) 30.08/13.48 new_esEs8(GT, LT) 30.08/13.48 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.48 new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.08/13.48 new_ltEs19(x0, x1, ty_Int) 30.08/13.48 new_esEs5(Just(x0), Just(x1), ty_Bool) 30.08/13.48 new_ltEs8(x0, x1, ty_Bool) 30.08/13.48 new_lt20(x0, x1, ty_Int) 30.08/13.48 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.08/13.48 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.48 new_compare11(x0, x1, ty_Integer) 30.08/13.48 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.48 new_ltEs19(x0, x1, ty_Char) 30.08/13.48 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.48 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 30.08/13.48 new_esEs9(x0, x1, app(ty_Ratio, x2)) 30.08/13.48 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.08/13.48 new_lt9(x0, x1, ty_Integer) 30.08/13.48 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.08/13.48 new_esEs25(x0, x1, ty_@0) 30.08/13.48 new_ltEs20(x0, x1, ty_Bool) 30.08/13.48 new_sr0(x0, x1) 30.08/13.48 new_esEs17([], [], x0) 30.08/13.48 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.08/13.48 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 30.08/13.48 new_ltEs17(Left(x0), Left(x1), ty_Float, x2) 30.08/13.48 new_lt8(x0, x1, app(ty_Ratio, x2)) 30.08/13.48 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.08/13.48 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.08/13.48 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.48 new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_esEs22(x0, x1, ty_Integer) 30.08/13.48 new_ltEs4(x0, x1, x2) 30.08/13.48 new_ltEs8(x0, x1, app(ty_[], x2)) 30.08/13.48 new_lt9(x0, x1, app(ty_Ratio, x2)) 30.08/13.48 new_ltEs17(Right(x0), Right(x1), x2, ty_Double) 30.08/13.48 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_primMulNat0(Succ(x0), Succ(x1)) 30.08/13.48 new_ltEs17(Left(x0), Right(x1), x2, x3) 30.08/13.48 new_ltEs17(Right(x0), Left(x1), x2, x3) 30.08/13.48 new_lt20(x0, x1, ty_Float) 30.08/13.48 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.08/13.48 new_esEs10(x0, x1, ty_Float) 30.08/13.48 new_ltEs12(Nothing, Just(x0), x1) 30.08/13.48 new_primEqNat0(Zero, Zero) 30.08/13.48 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.48 new_esEs13(False, False) 30.08/13.48 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 30.08/13.48 new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.08/13.48 new_lt14(x0, x1) 30.08/13.48 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.48 new_lt9(x0, x1, ty_Ordering) 30.08/13.48 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.08/13.48 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.48 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.08/13.48 new_ltEs12(Nothing, Nothing, x0) 30.08/13.48 new_esEs12(Char(x0), Char(x1)) 30.08/13.48 new_esEs22(x0, x1, ty_Char) 30.08/13.48 new_not(False) 30.08/13.48 new_ltEs8(x0, x1, ty_Int) 30.08/13.48 new_ltEs9(x0, x1) 30.08/13.48 new_esEs10(x0, x1, ty_Bool) 30.08/13.48 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.08/13.48 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 30.08/13.48 new_ltEs8(x0, x1, app(ty_Ratio, x2)) 30.08/13.48 new_esEs21(x0, x1, ty_@0) 30.08/13.48 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.08/13.48 new_compare11(x0, x1, ty_Char) 30.08/13.48 new_esEs22(x0, x1, ty_Int) 30.08/13.48 new_esEs24(x0, x1, ty_@0) 30.08/13.48 new_ltEs6(True, False) 30.08/13.48 new_ltEs6(False, True) 30.08/13.48 new_esEs14(Double(x0, x1), Double(x2, x3)) 30.08/13.48 new_lt7(x0, x1) 30.08/13.48 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.48 new_lt19(x0, x1) 30.08/13.48 new_esEs10(x0, x1, ty_Int) 30.08/13.48 new_compare113(x0, x1, True, x2, x3) 30.08/13.48 new_primCmpNat0(Zero, Succ(x0)) 30.08/13.48 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.08/13.48 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.08/13.48 new_ltEs20(x0, x1, ty_Integer) 30.08/13.48 new_ltEs5(x0, x1, x2) 30.08/13.48 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.08/13.48 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.08/13.48 new_esEs28(x0, x1, ty_Ordering) 30.08/13.48 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.08/13.48 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.08/13.48 new_esEs25(x0, x1, ty_Double) 30.08/13.48 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 30.08/13.48 new_ltEs8(x0, x1, ty_Char) 30.08/13.48 new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.08/13.48 new_esEs24(x0, x1, app(ty_[], x2)) 30.08/13.48 new_compare27(Nothing, Nothing, False, x0) 30.08/13.48 new_esEs21(x0, x1, app(ty_Maybe, x2)) 30.08/13.48 new_esEs10(x0, x1, app(ty_[], x2)) 30.08/13.48 new_compare11(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.48 new_lt9(x0, x1, app(ty_[], x2)) 30.08/13.48 new_ltEs20(x0, x1, ty_Ordering) 30.08/13.48 new_compare7(x0, x1, x2, x3, x4) 30.08/13.48 new_compare11(x0, x1, ty_Bool) 30.08/13.48 new_ltEs19(x0, x1, ty_Float) 30.08/13.48 new_esEs24(x0, x1, ty_Double) 30.08/13.48 new_primCmpNat0(Zero, Zero) 30.08/13.48 new_compare0(:(x0, x1), :(x2, x3), x4) 30.08/13.48 new_compare24(x0, x1, True) 30.08/13.48 30.08/13.48 We have to consider all minimal (P,Q,R)-chains. 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (51) QDPSizeChangeProof (EQUIVALENT) 30.08/13.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 30.08/13.48 30.08/13.48 From the DPs we obtained the following set of size-change graphs: 30.08/13.48 *new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(ty_Maybe, ce), cd) -> new_compare20(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, ce), ce) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), h, app(app(ty_Either, bh), ca)) -> new_ltEs3(xwv28001, xwv29001, bh, ca) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, gb, app(app(ty_Either, hb), hc)) -> new_ltEs3(xwv28002, xwv29002, hb, hc) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_lt2(xwv28000, xwv29000, cg, da, db) -> new_compare21(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, cg, da, db), cg, da, db) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs0(Just(xwv28000), Just(xwv29000), app(app(ty_Either, ed), ee)) -> new_ltEs3(xwv28000, xwv29000, ed, ee) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare22(xwv28000, xwv29000, False, dc, dd) -> new_ltEs3(xwv28000, xwv29000, dc, dd) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), h, app(app(app(ty_@3, be), bf), bg)) -> new_ltEs2(xwv28001, xwv29001, be, bf, bg) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, gb, app(app(app(ty_@3, gg), gh), ha)) -> new_ltEs2(xwv28002, xwv29002, gg, gh, ha) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs0(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs2(xwv28000, xwv29000, ea, eb, ec) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_lt0(xwv28000, xwv29000, ce) -> new_compare20(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, ce), ce) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare2(xwv28000, xwv29000, False, cb, cc) -> new_ltEs(xwv28000, xwv29000, cb, cc) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_lt1(xwv28000, xwv29000, cf) -> new_compare(xwv28000, xwv29000, cf) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), h, app(app(ty_@2, ba), bb)) -> new_ltEs(xwv28001, xwv29001, ba, bb) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(ty_Maybe, ce)), cd)) -> new_compare20(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, ce), ce) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare3(xwv28000, xwv29000, ce) -> new_compare20(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, ce), ce) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, gb, app(app(ty_@2, gc), gd)) -> new_ltEs(xwv28002, xwv29002, gc, gd) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs0(Just(xwv28000), Just(xwv29000), app(app(ty_@2, de), df)) -> new_ltEs(xwv28000, xwv29000, de, df) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare21(xwv28000, xwv29000, False, cg, da, db) -> new_ltEs2(xwv28000, xwv29000, cg, da, db) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_lt(xwv28000, xwv29000, cb, cc) -> new_compare2(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, cb, cc), cb, cc) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), h, app(ty_Maybe, bc)) -> new_ltEs0(xwv28001, xwv29001, bc) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, gb, app(ty_Maybe, ge)) -> new_ltEs0(xwv28002, xwv29002, ge) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs0(Just(xwv28000), Just(xwv29000), app(ty_Maybe, dg)) -> new_ltEs0(xwv28000, xwv29000, dg) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs0(Just(xwv28000), Just(xwv29000), app(ty_[], dh)) -> new_ltEs1(xwv28000, xwv29000, dh) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(app(app(ty_@3, cg), da), db), cd) -> new_compare21(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, cg, da, db), cg, da, db) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(app(app(ty_@3, cg), da), db)), cd)) -> new_compare21(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, cg, da, db), cg, da, db) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare4(xwv28000, xwv29000, cg, da, db) -> new_compare21(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, cg, da, db), cg, da, db) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs1(:(xwv28000, xwv28001), :(xwv29000, xwv29001), ef) -> new_primCompAux(xwv28000, xwv29000, new_compare0(xwv28001, xwv29001, ef), ef) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs1(:(xwv28000, xwv28001), :(xwv29000, xwv29001), ef) -> new_compare(xwv28001, xwv29001, ef) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(:(xwv28000, xwv28001)), Just(:(xwv29000, xwv29001)), False, app(ty_[], ef)) -> new_primCompAux(xwv28000, xwv29000, new_compare0(xwv28001, xwv29001, ef), ef) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare5(xwv28000, xwv29000, dc, dd) -> new_compare22(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, dc, dd), dc, dd) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare(:(xwv28000, xwv28001), :(xwv29000, xwv29001), ef) -> new_primCompAux(xwv28000, xwv29000, new_compare0(xwv28001, xwv29001, ef), ef) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), h, app(ty_[], bd)) -> new_ltEs1(xwv28001, xwv29001, bd) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, gb, app(ty_[], gf)) -> new_ltEs1(xwv28002, xwv29002, gf) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare(:(xwv28000, xwv28001), :(xwv29000, xwv29001), ef) -> new_compare(xwv28001, xwv29001, ef) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_lt3(xwv28000, xwv29000, dc, dd) -> new_compare22(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, dc, dd), dc, dd) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(app(ty_Either, dc), dd), cd) -> new_compare22(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, dc, dd), dc, dd) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(app(ty_Either, dc), dd)), cd)) -> new_compare22(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, dc, dd), dc, dd) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(ty_[], cf), cd) -> new_compare(xwv28000, xwv29000, cf) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(app(ty_@2, cb), cc), cd) -> new_compare2(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, cb, cc), cb, cc) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_primCompAux(xwv28000, xwv29000, xwv148, app(ty_[], fb)) -> new_compare(xwv28000, xwv29000, fb) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare1(xwv28000, xwv29000, cb, cc) -> new_compare2(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, cb, cc), cb, cc) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_primCompAux(xwv28000, xwv29000, xwv148, app(app(ty_Either, fg), fh)) -> new_compare5(xwv28000, xwv29000, fg, fh) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_primCompAux(xwv28000, xwv29000, xwv148, app(app(app(ty_@3, fc), fd), ff)) -> new_compare4(xwv28000, xwv29000, fc, fd, ff) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), cd)) -> new_compare2(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, cb, cc), cb, cc) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_primCompAux(xwv28000, xwv29000, xwv148, app(ty_Maybe, fa)) -> new_compare3(xwv28000, xwv29000, fa) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_primCompAux(xwv28000, xwv29000, xwv148, app(app(ty_@2, eg), eh)) -> new_compare1(xwv28000, xwv29000, eg, eh) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs3(Left(xwv28000), Left(xwv29000), app(app(ty_Either, bcg), bch), bca) -> new_ltEs3(xwv28000, xwv29000, bcg, bch) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs3(Right(xwv28000), Right(xwv29000), bda, app(app(ty_Either, bea), beb)) -> new_ltEs3(xwv28000, xwv29000, bea, beb) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs3(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_ltEs2(xwv28000, xwv29000, bcd, bce, bcf) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs3(Right(xwv28000), Right(xwv29000), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs2(xwv28000, xwv29000, bdf, bdg, bdh) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs3(Right(xwv28000), Right(xwv29000), bda, app(app(ty_@2, bdb), bdc)) -> new_ltEs(xwv28000, xwv29000, bdb, bdc) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs3(Left(xwv28000), Left(xwv29000), app(app(ty_@2, bbg), bbh), bca) -> new_ltEs(xwv28000, xwv29000, bbg, bbh) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs3(Left(xwv28000), Left(xwv29000), app(ty_Maybe, bcb), bca) -> new_ltEs0(xwv28000, xwv29000, bcb) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs3(Right(xwv28000), Right(xwv29000), bda, app(ty_Maybe, bdd)) -> new_ltEs0(xwv28000, xwv29000, bdd) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs3(Right(xwv28000), Right(xwv29000), bda, app(ty_[], bde)) -> new_ltEs1(xwv28000, xwv29000, bde) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs3(Left(xwv28000), Left(xwv29000), app(ty_[], bcc), bca) -> new_ltEs1(xwv28000, xwv29000, bcc) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(app(ty_Either, bbe), bbf), gb, hf) -> new_lt3(xwv28000, xwv29000, bbe, bbf) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, app(app(ty_Either, bad), bae), hf) -> new_lt3(xwv28001, xwv29001, bad, bae) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(app(ty_@2, baf), bag), gb, hf) -> new_lt(xwv28000, xwv29000, baf, bag) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, app(app(ty_@2, hd), he), hf) -> new_lt(xwv28001, xwv29001, hd, he) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, app(ty_Maybe, hg), hf) -> new_lt0(xwv28001, xwv29001, hg) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(ty_Maybe, bah), gb, hf) -> new_lt0(xwv28000, xwv29000, bah) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(app(app(ty_@3, bbb), bbc), bbd), gb, hf) -> new_lt2(xwv28000, xwv29000, bbb, bbc, bbd) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, app(app(app(ty_@3, baa), bab), bac), hf) -> new_lt2(xwv28001, xwv29001, baa, bab, bac) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(ty_[], bba), gb, hf) -> new_lt1(xwv28000, xwv29000, bba) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_ltEs2(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), ga, app(ty_[], hh), hf) -> new_lt1(xwv28001, xwv29001, hh) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, h), app(app(ty_Either, bh), ca))) -> new_ltEs3(xwv28001, xwv29001, bh, ca) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), gb), app(app(ty_Either, hb), hc))) -> new_ltEs3(xwv28002, xwv29002, hb, hc) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(app(ty_Either, ed), ee))) -> new_ltEs3(xwv28000, xwv29000, ed, ee) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(app(ty_Either, bcg), bch)), bca)) -> new_ltEs3(xwv28000, xwv29000, bcg, bch) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, bda), app(app(ty_Either, bea), beb))) -> new_ltEs3(xwv28000, xwv29000, bea, beb) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(app(ty_Either, bbe), bbf)), gb), hf)) -> new_lt3(xwv28000, xwv29000, bbe, bbf) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), app(app(ty_Either, bad), bae)), hf)) -> new_lt3(xwv28001, xwv29001, bad, bae) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(app(app(ty_@3, bcd), bce), bcf)), bca)) -> new_ltEs2(xwv28000, xwv29000, bcd, bce, bcf) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs2(xwv28000, xwv29000, ea, eb, ec) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, h), app(app(app(ty_@3, be), bf), bg))) -> new_ltEs2(xwv28001, xwv29001, be, bf, bg) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, bda), app(app(app(ty_@3, bdf), bdg), bdh))) -> new_ltEs2(xwv28000, xwv29000, bdf, bdg, bdh) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), gb), app(app(app(ty_@3, gg), gh), ha))) -> new_ltEs2(xwv28002, xwv29002, gg, gh, ha) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(app(ty_@2, de), df))) -> new_ltEs(xwv28000, xwv29000, de, df) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, bda), app(app(ty_@2, bdb), bdc))) -> new_ltEs(xwv28000, xwv29000, bdb, bdc) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(app(ty_@2, bbg), bbh)), bca)) -> new_ltEs(xwv28000, xwv29000, bbg, bbh) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, h), app(app(ty_@2, ba), bb))) -> new_ltEs(xwv28001, xwv29001, ba, bb) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), gb), app(app(ty_@2, gc), gd))) -> new_ltEs(xwv28002, xwv29002, gc, gd) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), app(app(ty_@2, hd), he)), hf)) -> new_lt(xwv28001, xwv29001, hd, he) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(app(ty_@2, baf), bag)), gb), hf)) -> new_lt(xwv28000, xwv29000, baf, bag) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), gb), app(ty_Maybe, ge))) -> new_ltEs0(xwv28002, xwv29002, ge) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, h), app(ty_Maybe, bc))) -> new_ltEs0(xwv28001, xwv29001, bc) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(ty_Maybe, dg))) -> new_ltEs0(xwv28000, xwv29000, dg) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, bda), app(ty_Maybe, bdd))) -> new_ltEs0(xwv28000, xwv29000, bdd) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(ty_Maybe, bcb)), bca)) -> new_ltEs0(xwv28000, xwv29000, bcb) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), gb), app(ty_[], gf))) -> new_ltEs1(xwv28002, xwv29002, gf) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, h), app(ty_[], bd))) -> new_ltEs1(xwv28001, xwv29001, bd) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(ty_[], dh))) -> new_ltEs1(xwv28000, xwv29000, dh) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(ty_[], bcc)), bca)) -> new_ltEs1(xwv28000, xwv29000, bcc) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, bda), app(ty_[], bde))) -> new_ltEs1(xwv28000, xwv29000, bde) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(:(xwv28000, xwv28001)), Just(:(xwv29000, xwv29001)), False, app(ty_[], ef)) -> new_compare(xwv28001, xwv29001, ef) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(ty_[], cf)), cd)) -> new_compare(xwv28000, xwv29000, cf) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(ty_Maybe, bah)), gb), hf)) -> new_lt0(xwv28000, xwv29000, bah) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), app(ty_Maybe, hg)), hf)) -> new_lt0(xwv28001, xwv29001, hg) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), app(app(app(ty_@3, baa), bab), bac)), hf)) -> new_lt2(xwv28001, xwv29001, baa, bab, bac) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bbb), bbc), bbd)), gb), hf)) -> new_lt2(xwv28000, xwv29000, bbb, bbc, bbd) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(ty_[], bba)), gb), hf)) -> new_lt1(xwv28000, xwv29000, bba) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, ga), app(ty_[], hh)), hf)) -> new_lt1(xwv28001, xwv29001, hh) 30.08/13.48 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 30.08/13.48 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (52) 30.08/13.48 YES 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (53) 30.08/13.48 Obligation: 30.08/13.48 Q DP problem: 30.08/13.48 The TRS P consists of the following rules: 30.08/13.48 30.08/13.48 new_deleteMin(xwv340, xwv341, xwv342, Branch(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434), xwv344, h, ba) -> new_deleteMin(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434, h, ba) 30.08/13.48 30.08/13.48 R is empty. 30.08/13.48 Q is empty. 30.08/13.48 We have to consider all minimal (P,Q,R)-chains. 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (54) QDPSizeChangeProof (EQUIVALENT) 30.08/13.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 30.08/13.48 30.08/13.48 From the DPs we obtained the following set of size-change graphs: 30.08/13.48 *new_deleteMin(xwv340, xwv341, xwv342, Branch(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434), xwv344, h, ba) -> new_deleteMin(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434, h, ba) 30.08/13.48 The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 6 >= 6, 7 >= 7 30.08/13.48 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (55) 30.08/13.48 YES 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (56) 30.08/13.48 Obligation: 30.08/13.48 Q DP problem: 30.08/13.48 The TRS P consists of the following rules: 30.08/13.48 30.08/13.48 new_glueBal2Mid_elt20(xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, Branch(xwv3040, xwv3041, xwv3042, xwv3043, xwv3044), xwv305, h, ba) -> new_glueBal2Mid_elt20(xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, xwv297, xwv298, xwv299, xwv300, xwv3040, xwv3041, xwv3042, xwv3043, xwv3044, h, ba) 30.08/13.48 30.08/13.48 R is empty. 30.08/13.48 Q is empty. 30.08/13.48 We have to consider all minimal (P,Q,R)-chains. 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (57) QDPSizeChangeProof (EQUIVALENT) 30.08/13.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 30.08/13.48 30.08/13.48 From the DPs we obtained the following set of size-change graphs: 30.08/13.48 *new_glueBal2Mid_elt20(xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, Branch(xwv3040, xwv3041, xwv3042, xwv3043, xwv3044), xwv305, h, ba) -> new_glueBal2Mid_elt20(xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, xwv297, xwv298, xwv299, xwv300, xwv3040, xwv3041, xwv3042, xwv3043, xwv3044, h, ba) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 14 > 11, 14 > 12, 14 > 13, 14 > 14, 14 > 15, 16 >= 16, 17 >= 17 30.08/13.48 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (58) 30.08/13.48 YES 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (59) 30.08/13.48 Obligation: 30.08/13.48 Q DP problem: 30.08/13.48 The TRS P consists of the following rules: 30.08/13.48 30.08/13.48 new_glueBal2Mid_key20(xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, Branch(xwv2880, xwv2881, xwv2882, xwv2883, xwv2884), xwv289, h, ba) -> new_glueBal2Mid_key20(xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, xwv281, xwv282, xwv283, xwv284, xwv2880, xwv2881, xwv2882, xwv2883, xwv2884, h, ba) 30.08/13.48 30.08/13.48 R is empty. 30.08/13.48 Q is empty. 30.08/13.48 We have to consider all minimal (P,Q,R)-chains. 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (60) QDPSizeChangeProof (EQUIVALENT) 30.08/13.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 30.08/13.48 30.08/13.48 From the DPs we obtained the following set of size-change graphs: 30.08/13.48 *new_glueBal2Mid_key20(xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, Branch(xwv2880, xwv2881, xwv2882, xwv2883, xwv2884), xwv289, h, ba) -> new_glueBal2Mid_key20(xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, xwv281, xwv282, xwv283, xwv284, xwv2880, xwv2881, xwv2882, xwv2883, xwv2884, h, ba) 30.08/13.48 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 14 > 11, 14 > 12, 14 > 13, 14 > 14, 14 > 15, 16 >= 16, 17 >= 17 30.08/13.48 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (61) 30.08/13.48 YES 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (62) 30.08/13.48 Obligation: 30.08/13.48 Q DP problem: 30.08/13.48 The TRS P consists of the following rules: 30.08/13.48 30.08/13.48 new_deleteMax(xwv330, xwv331, xwv332, xwv333, Branch(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344), h, ba) -> new_deleteMax(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344, h, ba) 30.08/13.48 30.08/13.48 R is empty. 30.08/13.48 Q is empty. 30.08/13.48 We have to consider all minimal (P,Q,R)-chains. 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (63) QDPSizeChangeProof (EQUIVALENT) 30.08/13.48 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 30.08/13.48 30.08/13.48 From the DPs we obtained the following set of size-change graphs: 30.08/13.48 *new_deleteMax(xwv330, xwv331, xwv332, xwv333, Branch(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344), h, ba) -> new_deleteMax(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344, h, ba) 30.08/13.48 The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 6 >= 6, 7 >= 7 30.08/13.48 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (64) 30.08/13.48 YES 30.08/13.48 30.08/13.48 ---------------------------------------- 30.08/13.48 30.08/13.48 (65) 30.08/13.48 Obligation: 30.08/13.48 Q DP problem: 30.08/13.48 The TRS P consists of the following rules: 30.08/13.48 30.08/13.48 new_foldl(xwv3, :(xwv40, xwv41), h, ba) -> new_foldl(new_delFromFM0(xwv3, xwv40, h, ba), xwv41, h, ba) 30.08/13.48 30.08/13.48 The TRS R consists of the following rules: 30.08/13.48 30.08/13.48 new_ltEs4(xwv2800, xwv2900, ce) -> new_fsEs(new_compare8(xwv2800, xwv2900, ce)) 30.08/13.48 new_lt7(xwv28000, xwv29000) -> new_esEs8(new_compare9(xwv28000, xwv29000), LT) 30.08/13.48 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 30.08/13.48 new_primCmpInt(Neg(Succ(xwv2800)), Pos(xwv290)) -> LT 30.08/13.48 new_lt18(xwv28000, xwv29000, hh, baa) -> new_esEs8(new_compare10(xwv28000, xwv29000, hh, baa), LT) 30.08/13.48 new_lt20(xwv28000, xwv29000, ty_Float) -> new_lt15(xwv28000, xwv29000) 30.08/13.48 new_esEs23(xwv4001, xwv3001, app(ty_[], dbc)) -> new_esEs17(xwv4001, xwv3001, dbc) 30.08/13.48 new_primPlusNat0(Zero, Zero) -> Zero 30.08/13.48 new_esEs25(xwv4000, xwv3000, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs6(xwv4000, xwv3000, ddd, dde, ddf) 30.08/13.48 new_pePe(True, xwv138) -> True 30.08/13.48 new_esEs22(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.48 new_ltEs8(xwv28002, xwv29002, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_ltEs7(xwv28002, xwv29002, cgb, cgc, cgd) 30.08/13.48 new_delFromFM0(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Nothing, h, ba) -> new_delFromFM14(xwv31, xwv32, xwv33, xwv34, new_esEs8(new_compare27(Nothing, Nothing, new_esEs5(Nothing, Nothing, h), h), LT), h, ba) 30.08/13.49 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Int) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.49 new_lt4(xwv28000, xwv29000, ha, hb) -> new_esEs8(new_compare6(xwv28000, xwv29000, ha, hb), LT) 30.08/13.49 new_compare112(xwv125, xwv126, True, hc) -> LT 30.08/13.49 new_lt20(xwv28000, xwv29000, ty_Ordering) -> new_lt17(xwv28000, xwv29000) 30.08/13.49 new_esEs29(xwv400, xwv300, ty_Char) -> new_esEs12(xwv400, xwv300) 30.08/13.49 new_esEs10(xwv28001, xwv29001, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs6(xwv28001, xwv29001, ceh, cfa, cfb) 30.08/13.49 new_delFromFM22(xwv300, xwv31, xwv32, xwv33, xwv34, False, h, ba) -> new_delFromFM13(xwv300, xwv31, xwv32, xwv33, xwv34, new_esEs8(new_compare27(Nothing, Just(xwv300), new_esEs5(Nothing, Just(xwv300), h), h), LT), h, ba) 30.08/13.49 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_@0) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.49 new_compare10(xwv28000, xwv29000, hh, baa) -> new_compare23(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, hh, baa), hh, baa) 30.08/13.49 new_ltEs20(xwv2800, xwv2900, app(app(ty_@2, hd), he)) -> new_ltEs11(xwv2800, xwv2900, hd, he) 30.08/13.49 new_ltEs20(xwv2800, xwv2900, ty_Integer) -> new_ltEs18(xwv2800, xwv2900) 30.08/13.49 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 30.08/13.49 new_primCmpInt(Pos(Zero), Neg(Succ(xwv2900))) -> GT 30.08/13.49 new_delFromFM00(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_glueBal(xwv16, xwv17, bb, bc) 30.08/13.49 new_compare14(xwv28000, xwv29000) -> new_compare26(xwv28000, xwv29000, new_esEs13(xwv28000, xwv29000)) 30.08/13.49 new_esEs24(xwv4002, xwv3002, ty_Int) -> new_esEs11(xwv4002, xwv3002) 30.08/13.49 new_esEs24(xwv4002, xwv3002, ty_Ordering) -> new_esEs8(xwv4002, xwv3002) 30.08/13.49 new_delFromFM01(xwv300, xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_glueBal(xwv33, xwv34, h, ba) 30.08/13.49 new_ltEs19(xwv28001, xwv29001, app(ty_[], baf)) -> new_ltEs5(xwv28001, xwv29001, baf) 30.08/13.49 new_ltEs14(xwv2800, xwv2900) -> new_fsEs(new_compare17(xwv2800, xwv2900)) 30.08/13.49 new_primCmpInt(Neg(Succ(xwv2800)), Neg(xwv290)) -> new_primCmpNat0(xwv290, Succ(xwv2800)) 30.08/13.49 new_compare113(xwv28000, xwv29000, False, hh, baa) -> GT 30.08/13.49 new_deleteMax0(xwv330, xwv331, xwv332, xwv333, Branch(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344), h, ba) -> new_mkBalBranch(xwv330, xwv331, xwv333, new_deleteMax0(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344, h, ba), h, ba) 30.08/13.49 new_lt9(xwv28000, xwv29000, app(ty_[], cde)) -> new_lt16(xwv28000, xwv29000, cde) 30.08/13.49 new_gt(xwv91, xwv90) -> new_esEs8(new_compare12(xwv91, xwv90), GT) 30.08/13.49 new_mkBalBranch6MkBalBranch01(xwv340, xwv341, xwv3440, xwv3441, xwv3442, Branch(xwv34430, xwv34431, xwv34432, xwv34433, xwv34434), xwv3444, xwv253, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xwv34430, xwv34431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), xwv340, xwv341, xwv253, xwv34433, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xwv3440, xwv3441, xwv34434, xwv3444, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 30.08/13.49 new_esEs7(Right(xwv4000), Right(xwv3000), bbf, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.49 new_lt8(xwv28001, xwv29001, app(app(ty_@2, ced), cee)) -> new_lt4(xwv28001, xwv29001, ced, cee) 30.08/13.49 new_primMulNat0(Succ(xwv400100), Succ(xwv300000)) -> new_primPlusNat1(new_primMulNat0(xwv400100, Succ(xwv300000)), xwv300000) 30.08/13.49 new_lt8(xwv28001, xwv29001, app(app(ty_Either, cfc), cfd)) -> new_lt18(xwv28001, xwv29001, cfc, cfd) 30.08/13.49 new_compare15(xwv28000, xwv29000, hf) -> new_compare27(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, hf), hf) 30.08/13.49 new_mkBalBranch6MkBalBranch3(xwv340, xwv341, xwv344, Branch(xwv2530, xwv2531, xwv2532, xwv2533, xwv2534), True, h, ba) -> new_mkBalBranch6MkBalBranch11(xwv340, xwv341, xwv344, xwv2530, xwv2531, xwv2532, xwv2533, xwv2534, new_lt10(new_sizeFM(xwv2534, h, ba), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM(xwv2533, h, ba))), h, ba) 30.08/13.49 new_esEs7(Right(xwv4000), Right(xwv3000), bbf, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.49 new_esEs28(xwv28000, xwv29000, app(app(ty_Either, hh), baa)) -> new_esEs7(xwv28000, xwv29000, hh, baa) 30.08/13.49 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Ordering, bcg) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.49 new_compare26(xwv28000, xwv29000, True) -> EQ 30.08/13.49 new_compare18(xwv28000, xwv29000) -> new_compare24(xwv28000, xwv29000, new_esEs8(xwv28000, xwv29000)) 30.08/13.49 new_primEqInt(Pos(Succ(xwv40000)), Pos(Zero)) -> False 30.08/13.49 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 30.08/13.49 new_esEs10(xwv28001, xwv29001, ty_Char) -> new_esEs12(xwv28001, xwv29001) 30.08/13.49 new_esEs8(GT, GT) -> True 30.08/13.49 new_esEs7(Right(xwv4000), Right(xwv3000), bbf, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs6(xwv4000, xwv3000, ccf, ccg, cch) 30.08/13.49 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Ratio, bgg)) -> new_esEs19(xwv4000, xwv3000, bgg) 30.08/13.49 new_fsEs(xwv131) -> new_not(new_esEs8(xwv131, GT)) 30.08/13.49 new_esEs9(xwv28000, xwv29000, app(ty_Ratio, cec)) -> new_esEs19(xwv28000, xwv29000, cec) 30.08/13.49 new_esEs23(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 30.08/13.49 new_compare16(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.49 new_compare16(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.49 new_esEs29(xwv400, xwv300, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs6(xwv400, xwv300, bca, bcb, bcc) 30.08/13.49 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Float, bcg) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.49 new_compare17(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.49 new_esEs24(xwv4002, xwv3002, app(app(ty_@2, dbg), dbh)) -> new_esEs4(xwv4002, xwv3002, dbg, dbh) 30.08/13.49 new_lt12(xwv28000, xwv29000) -> new_esEs8(new_compare14(xwv28000, xwv29000), LT) 30.08/13.49 new_esEs8(EQ, EQ) -> True 30.08/13.49 new_esEs24(xwv4002, xwv3002, ty_Bool) -> new_esEs13(xwv4002, xwv3002) 30.08/13.49 new_primEqNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.49 new_ltEs20(xwv2800, xwv2900, ty_Bool) -> new_ltEs6(xwv2800, xwv2900) 30.08/13.49 new_esEs25(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.49 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.49 new_ltEs19(xwv28001, xwv29001, app(app(ty_@2, bac), bad)) -> new_ltEs11(xwv28001, xwv29001, bac, bad) 30.08/13.49 new_ltEs17(Right(xwv28000), Right(xwv29000), beb, ty_Int) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.49 new_not(True) -> False 30.08/13.49 new_esEs24(xwv4002, xwv3002, ty_Integer) -> new_esEs18(xwv4002, xwv3002) 30.08/13.49 new_compare11(xwv28000, xwv29000, ty_Integer) -> new_compare19(xwv28000, xwv29000) 30.08/13.49 new_primCompAux00(xwv160, LT) -> LT 30.08/13.49 new_primCmpNat0(Zero, Zero) -> EQ 30.08/13.49 new_esEs21(xwv4001, xwv3001, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs6(xwv4001, xwv3001, ge, gf, gg) 30.08/13.49 new_lt13(xwv28000, xwv29000, hf) -> new_esEs8(new_compare15(xwv28000, xwv29000, hf), LT) 30.08/13.49 new_ltEs19(xwv28001, xwv29001, ty_Bool) -> new_ltEs6(xwv28001, xwv29001) 30.08/13.49 new_compare115(xwv28000, xwv29000, True, cb, cc, cd) -> LT 30.08/13.49 new_glueBal2GlueBal1(xwv330, xwv331, xwv332, xwv333, xwv334, xwv340, xwv341, xwv342, xwv343, xwv344, True, h, ba) -> new_mkBalBranch(new_glueBal2Mid_key200(xwv330, xwv331, xwv332, xwv333, xwv334, xwv340, xwv341, xwv342, xwv343, xwv344, xwv340, xwv341, xwv342, xwv343, xwv344, app(ty_Maybe, h), ba), new_glueBal2Mid_elt200(xwv330, xwv331, xwv332, xwv333, xwv334, xwv340, xwv341, xwv342, xwv343, xwv344, xwv340, xwv341, xwv342, xwv343, xwv344, ba, app(ty_Maybe, h)), Branch(xwv330, xwv331, xwv332, xwv333, xwv334), new_deleteMin0(xwv340, xwv341, xwv342, xwv343, xwv344, h, ba), h, ba) 30.08/13.49 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Double) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.49 new_ltEs19(xwv28001, xwv29001, app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs7(xwv28001, xwv29001, bag, bah, bba) 30.08/13.49 new_esEs29(xwv400, xwv300, ty_Int) -> new_esEs11(xwv400, xwv300) 30.08/13.49 new_compare27(Nothing, Nothing, False, bfe) -> LT 30.08/13.49 new_esEs22(xwv4000, xwv3000, app(ty_Ratio, che)) -> new_esEs19(xwv4000, xwv3000, che) 30.08/13.49 new_esEs20(xwv4000, xwv3000, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs6(xwv4000, xwv3000, fb, fc, fd) 30.08/13.49 new_esEs20(xwv4000, xwv3000, app(app(ty_Either, ee), ef)) -> new_esEs7(xwv4000, xwv3000, ee, ef) 30.08/13.49 new_esEs28(xwv28000, xwv29000, ty_Bool) -> new_esEs13(xwv28000, xwv29000) 30.08/13.49 new_delFromFM03(xwv31, xwv32, xwv33, xwv34, False, h, ba) -> error([]) 30.08/13.49 new_ltEs16(GT, EQ) -> False 30.08/13.49 new_esEs29(xwv400, xwv300, ty_Integer) -> new_esEs18(xwv400, xwv300) 30.08/13.49 new_esEs4(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), eb, ec) -> new_asAs(new_esEs20(xwv4000, xwv3000, eb), new_esEs21(xwv4001, xwv3001, ec)) 30.08/13.49 new_delFromFM01(xwv300, xwv31, xwv32, xwv33, xwv34, False, h, ba) -> error([]) 30.08/13.49 new_compare27(xwv280, xwv290, True, bfe) -> EQ 30.08/13.49 new_esEs10(xwv28001, xwv29001, ty_Ordering) -> new_esEs8(xwv28001, xwv29001) 30.08/13.49 new_compare11(xwv28000, xwv29000, ty_Int) -> new_compare12(xwv28000, xwv29000) 30.08/13.49 new_ltEs17(Left(xwv28000), Right(xwv29000), beb, bcg) -> True 30.08/13.49 new_primEqNat0(Succ(xwv40000), Zero) -> False 30.08/13.49 new_primEqNat0(Zero, Succ(xwv30000)) -> False 30.08/13.49 new_lt9(xwv28000, xwv29000, app(ty_Maybe, cdd)) -> new_lt13(xwv28000, xwv29000, cdd) 30.08/13.49 new_primPlusInt0(xwv2570, Neg(xwv2580)) -> new_primMinusNat0(xwv2570, xwv2580) 30.08/13.49 new_delFromFM15(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bb, bc) -> new_delFromFM00(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs5(Just(xwv13), Just(xwv18), bb), bb, bc) 30.08/13.49 new_esEs28(xwv28000, xwv29000, ty_Int) -> new_esEs11(xwv28000, xwv29000) 30.08/13.49 new_esEs29(xwv400, xwv300, ty_Bool) -> new_esEs13(xwv400, xwv300) 30.08/13.49 new_ltEs17(Right(xwv28000), Right(xwv29000), beb, ty_@0) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.49 new_lt8(xwv28001, xwv29001, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_lt5(xwv28001, xwv29001, ceh, cfa, cfb) 30.08/13.49 new_delFromFM02(xwv31, xwv32, xwv33, xwv34, xwv400, False, h, ba) -> error([]) 30.08/13.49 new_ltEs8(xwv28002, xwv29002, app(ty_[], cga)) -> new_ltEs5(xwv28002, xwv29002, cga) 30.08/13.49 new_lt20(xwv28000, xwv29000, ty_Integer) -> new_lt19(xwv28000, xwv29000) 30.08/13.49 new_primCompAux00(xwv160, GT) -> GT 30.08/13.49 new_ltEs8(xwv28002, xwv29002, app(ty_Ratio, cgg)) -> new_ltEs4(xwv28002, xwv29002, cgg) 30.08/13.49 new_primMinusNat0(Succ(xwv25700), Zero) -> Pos(Succ(xwv25700)) 30.08/13.49 new_esEs7(Right(xwv4000), Right(xwv3000), bbf, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.49 new_glueBal(Branch(xwv330, xwv331, xwv332, xwv333, xwv334), EmptyFM, h, ba) -> Branch(xwv330, xwv331, xwv332, xwv333, xwv334) 30.08/13.49 new_esEs5(Just(xwv4000), Just(xwv3000), ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.49 new_compare11(xwv28000, xwv29000, ty_Bool) -> new_compare14(xwv28000, xwv29000) 30.08/13.49 new_lt9(xwv28000, xwv29000, app(app(ty_@2, cdb), cdc)) -> new_lt4(xwv28000, xwv29000, cdb, cdc) 30.08/13.49 new_esEs20(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.49 new_esEs23(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.49 new_ltEs6(True, True) -> True 30.08/13.49 new_deleteMin0(xwv340, xwv341, xwv342, EmptyFM, xwv344, h, ba) -> xwv344 30.08/13.49 new_primCmpInt(Pos(Succ(xwv2800)), Neg(xwv290)) -> GT 30.08/13.49 new_ltEs17(Right(xwv28000), Right(xwv29000), beb, app(app(ty_Either, bfb), bfc)) -> new_ltEs17(xwv28000, xwv29000, bfb, bfc) 30.08/13.49 new_esEs20(xwv4000, xwv3000, app(app(ty_@2, eg), eh)) -> new_esEs4(xwv4000, xwv3000, eg, eh) 30.08/13.49 new_mkBalBranch6MkBalBranch01(xwv340, xwv341, xwv3440, xwv3441, xwv3442, xwv3443, xwv3444, xwv253, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xwv3440, xwv3441, new_mkBranch(Succ(Succ(Succ(Zero))), xwv340, xwv341, xwv253, xwv3443, app(ty_Maybe, h), ba), xwv3444, app(ty_Maybe, h), ba) 30.08/13.49 new_ltEs16(LT, LT) -> True 30.08/13.49 new_ltEs19(xwv28001, xwv29001, ty_Float) -> new_ltEs14(xwv28001, xwv29001) 30.08/13.49 new_compare11(xwv28000, xwv29000, ty_Char) -> new_compare13(xwv28000, xwv29000) 30.08/13.49 new_esEs23(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.49 new_compare110(xwv28000, xwv29000, True, ha, hb) -> LT 30.08/13.49 new_lt9(xwv28000, xwv29000, app(app(ty_Either, cea), ceb)) -> new_lt18(xwv28000, xwv29000, cea, ceb) 30.08/13.49 new_esEs29(xwv400, xwv300, ty_Float) -> new_esEs15(xwv400, xwv300) 30.08/13.49 new_ltEs19(xwv28001, xwv29001, ty_Integer) -> new_ltEs18(xwv28001, xwv29001) 30.08/13.49 new_ltEs8(xwv28002, xwv29002, ty_Ordering) -> new_ltEs16(xwv28002, xwv29002) 30.08/13.49 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Bool, bcg) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.49 new_ltEs20(xwv2800, xwv2900, ty_Float) -> new_ltEs14(xwv2800, xwv2900) 30.08/13.49 new_lt17(xwv28000, xwv29000) -> new_esEs8(new_compare18(xwv28000, xwv29000), LT) 30.08/13.49 new_primCmpNat0(Zero, Succ(xwv2900)) -> LT 30.08/13.49 new_ltEs17(Right(xwv28000), Right(xwv29000), beb, app(ty_[], bef)) -> new_ltEs5(xwv28000, xwv29000, bef) 30.08/13.49 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(app(ty_@3, cbd), cbe), cbf), bbg) -> new_esEs6(xwv4000, xwv3000, cbd, cbe, cbf) 30.08/13.49 new_mkBalBranch6MkBalBranch5(xwv340, xwv341, xwv344, xwv253, True, h, ba) -> new_mkBranch(Zero, xwv340, xwv341, xwv253, xwv344, app(ty_Maybe, h), ba) 30.08/13.49 new_ltEs20(xwv2800, xwv2900, app(app(app(ty_@3, bfg), bfh), bga)) -> new_ltEs7(xwv2800, xwv2900, bfg, bfh, bga) 30.08/13.49 new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) 30.08/13.49 new_esEs22(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.49 new_esEs28(xwv28000, xwv29000, ty_Char) -> new_esEs12(xwv28000, xwv29000) 30.08/13.49 new_esEs28(xwv28000, xwv29000, ty_Integer) -> new_esEs18(xwv28000, xwv29000) 30.08/13.49 new_ltEs10(xwv2800, xwv2900) -> new_fsEs(new_compare13(xwv2800, xwv2900)) 30.08/13.49 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Double, bbg) -> new_esEs14(xwv4000, xwv3000) 30.08/13.49 new_ltEs8(xwv28002, xwv29002, ty_Double) -> new_ltEs13(xwv28002, xwv29002) 30.08/13.49 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 30.08/13.49 new_ltEs19(xwv28001, xwv29001, app(ty_Ratio, bbd)) -> new_ltEs4(xwv28001, xwv29001, bbd) 30.08/13.49 new_sr(Integer(xwv280000), Integer(xwv290010)) -> Integer(new_primMulInt(xwv280000, xwv290010)) 30.08/13.49 new_primCmpNat0(Succ(xwv2800), Zero) -> GT 30.08/13.49 new_primPlusInt1(xwv2570, Neg(xwv2590)) -> Neg(new_primPlusNat0(xwv2570, xwv2590)) 30.08/13.49 new_pePe(False, xwv138) -> xwv138 30.08/13.49 new_compare11(xwv28000, xwv29000, app(ty_Maybe, db)) -> new_compare15(xwv28000, xwv29000, db) 30.08/13.49 new_esEs23(xwv4001, xwv3001, ty_Bool) -> new_esEs13(xwv4001, xwv3001) 30.08/13.49 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(ty_@2, cba), cbb), bbg) -> new_esEs4(xwv4000, xwv3000, cba, cbb) 30.08/13.49 new_esEs9(xwv28000, xwv29000, app(ty_Maybe, cdd)) -> new_esEs5(xwv28000, xwv29000, cdd) 30.08/13.49 new_ltEs13(xwv2800, xwv2900) -> new_fsEs(new_compare16(xwv2800, xwv2900)) 30.08/13.49 new_compare25(xwv28000, xwv29000, True, ha, hb) -> EQ 30.08/13.49 new_ltEs8(xwv28002, xwv29002, ty_Integer) -> new_ltEs18(xwv28002, xwv29002) 30.08/13.49 new_esEs7(Right(xwv4000), Right(xwv3000), bbf, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.49 new_lt20(xwv28000, xwv29000, ty_Char) -> new_lt11(xwv28000, xwv29000) 30.08/13.49 new_esEs10(xwv28001, xwv29001, app(app(ty_Either, cfc), cfd)) -> new_esEs7(xwv28001, xwv29001, cfc, cfd) 30.08/13.49 new_ltEs16(LT, GT) -> True 30.08/13.49 new_primMinusNat0(Succ(xwv25700), Succ(xwv25800)) -> new_primMinusNat0(xwv25700, xwv25800) 30.08/13.49 new_lt8(xwv28001, xwv29001, app(ty_[], ceg)) -> new_lt16(xwv28001, xwv29001, ceg) 30.08/13.49 new_esEs22(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.49 new_lt9(xwv28000, xwv29000, ty_Int) -> new_lt10(xwv28000, xwv29000) 30.08/13.49 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_Maybe, bdb), bcg) -> new_ltEs12(xwv28000, xwv29000, bdb) 30.08/13.49 new_esEs25(xwv4000, xwv3000, app(ty_Ratio, ddc)) -> new_esEs19(xwv4000, xwv3000, ddc) 30.08/13.49 new_esEs17([], [], bcd) -> True 30.08/13.49 new_ltEs17(Right(xwv28000), Right(xwv29000), beb, ty_Double) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.49 new_ltEs16(LT, EQ) -> True 30.08/13.49 new_ltEs16(EQ, LT) -> False 30.08/13.49 new_compare23(xwv28000, xwv29000, True, hh, baa) -> EQ 30.08/13.49 new_esEs8(LT, EQ) -> False 30.08/13.49 new_esEs8(EQ, LT) -> False 30.08/13.49 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.49 new_esEs21(xwv4001, xwv3001, app(app(ty_@2, gb), gc)) -> new_esEs4(xwv4001, xwv3001, gb, gc) 30.08/13.49 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 30.08/13.49 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 30.08/13.49 new_esEs28(xwv28000, xwv29000, ty_@0) -> new_esEs16(xwv28000, xwv29000) 30.08/13.49 new_ltEs19(xwv28001, xwv29001, app(app(ty_Either, bbb), bbc)) -> new_ltEs17(xwv28001, xwv29001, bbb, bbc) 30.08/13.49 new_esEs21(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 30.08/13.49 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs6(xwv4000, xwv3000, bgh, bha, bhb) 30.08/13.49 new_delFromFM0(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Nothing, h, ba) -> new_delFromFM22(xwv300, xwv31, xwv32, xwv33, xwv34, new_esEs8(new_compare27(Nothing, Just(xwv300), False, h), GT), h, ba) 30.08/13.49 new_compare114(xwv28000, xwv29000, True) -> LT 30.08/13.49 new_ltEs16(GT, LT) -> False 30.08/13.49 new_esEs25(xwv4000, xwv3000, app(app(ty_@2, dda), ddb)) -> new_esEs4(xwv4000, xwv3000, dda, ddb) 30.08/13.49 new_esEs21(xwv4001, xwv3001, app(ty_Maybe, fg)) -> new_esEs5(xwv4001, xwv3001, fg) 30.08/13.49 new_esEs23(xwv4001, xwv3001, app(app(ty_Either, dac), dad)) -> new_esEs7(xwv4001, xwv3001, dac, dad) 30.08/13.49 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Integer, bcg) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.49 new_esEs5(Nothing, Nothing, bbe) -> True 30.08/13.49 new_mkBalBranch6MkBalBranch01(xwv340, xwv341, xwv3440, xwv3441, xwv3442, EmptyFM, xwv3444, xwv253, False, h, ba) -> error([]) 30.08/13.49 new_ltEs20(xwv2800, xwv2900, app(app(ty_Either, beb), bcg)) -> new_ltEs17(xwv2800, xwv2900, beb, bcg) 30.08/13.49 new_ltEs6(False, False) -> True 30.08/13.49 new_primEqInt(Neg(Succ(xwv40000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.49 new_esEs25(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.49 new_esEs5(Nothing, Just(xwv3000), bbe) -> False 30.08/13.49 new_esEs5(Just(xwv4000), Nothing, bbe) -> False 30.08/13.49 new_esEs10(xwv28001, xwv29001, ty_Integer) -> new_esEs18(xwv28001, xwv29001) 30.08/13.49 new_lt8(xwv28001, xwv29001, app(ty_Maybe, cef)) -> new_lt13(xwv28001, xwv29001, cef) 30.08/13.49 new_primCmpInt(Neg(Zero), Pos(Succ(xwv2900))) -> LT 30.08/13.49 new_compare13(Char(xwv28000), Char(xwv29000)) -> new_primCmpNat0(xwv28000, xwv29000) 30.08/13.49 new_primMulInt(Pos(xwv40010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.49 new_esEs10(xwv28001, xwv29001, ty_Int) -> new_esEs11(xwv28001, xwv29001) 30.08/13.49 new_esEs20(xwv4000, xwv3000, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.49 new_esEs7(Left(xwv4000), Left(xwv3000), app(app(ty_Either, cag), cah), bbg) -> new_esEs7(xwv4000, xwv3000, cag, cah) 30.08/13.49 new_esEs9(xwv28000, xwv29000, app(app(ty_@2, cdb), cdc)) -> new_esEs4(xwv28000, xwv29000, cdb, cdc) 30.08/13.49 new_esEs21(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.49 new_esEs9(xwv28000, xwv29000, ty_Ordering) -> new_esEs8(xwv28000, xwv29000) 30.08/13.49 new_delFromFM02(xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba) -> new_glueBal(xwv33, xwv34, h, ba) 30.08/13.49 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(ty_Either, bdg), bdh), bcg) -> new_ltEs17(xwv28000, xwv29000, bdg, bdh) 30.08/13.49 new_esEs24(xwv4002, xwv3002, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs6(xwv4002, xwv3002, dcb, dcc, dcd) 30.08/13.49 new_glueBal2GlueBal1(xwv330, xwv331, xwv332, xwv333, xwv334, xwv340, xwv341, xwv342, xwv343, xwv344, False, h, ba) -> new_mkBalBranch(new_glueBal2Mid_key100(xwv330, xwv331, xwv332, xwv333, xwv334, xwv340, xwv341, xwv342, xwv343, xwv344, xwv330, xwv331, xwv332, xwv333, xwv334, app(ty_Maybe, h), ba), new_glueBal2Mid_elt100(xwv330, xwv331, xwv332, xwv333, xwv334, xwv340, xwv341, xwv342, xwv343, xwv344, xwv330, xwv331, xwv332, xwv333, xwv334, ba, app(ty_Maybe, h)), new_deleteMax0(xwv330, xwv331, xwv332, xwv333, xwv334, h, ba), Branch(xwv340, xwv341, xwv342, xwv343, xwv344), h, ba) 30.08/13.49 new_esEs10(xwv28001, xwv29001, app(app(ty_@2, ced), cee)) -> new_esEs4(xwv28001, xwv29001, ced, cee) 30.08/13.49 new_primMulNat0(Succ(xwv400100), Zero) -> Zero 30.08/13.49 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 30.08/13.49 new_ltEs8(xwv28002, xwv29002, ty_@0) -> new_ltEs15(xwv28002, xwv29002) 30.08/13.49 new_glueBal2Mid_key100(xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv347, xwv348, xwv349, xwv350, xwv351, Branch(xwv3520, xwv3521, xwv3522, xwv3523, xwv3524), bce, bcf) -> new_glueBal2Mid_key100(xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv347, xwv3520, xwv3521, xwv3522, xwv3523, xwv3524, bce, bcf) 30.08/13.49 new_esEs18(Integer(xwv4000), Integer(xwv3000)) -> new_primEqInt(xwv4000, xwv3000) 30.08/13.49 new_esEs25(xwv4000, xwv3000, app(app(ty_Either, dcg), dch)) -> new_esEs7(xwv4000, xwv3000, dcg, dch) 30.08/13.49 new_compare11(xwv28000, xwv29000, app(app(ty_@2, cg), da)) -> new_compare6(xwv28000, xwv29000, cg, da) 30.08/13.49 new_esEs24(xwv4002, xwv3002, ty_Char) -> new_esEs12(xwv4002, xwv3002) 30.08/13.49 new_delFromFM13(xwv300, xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_mkBalBranch(Just(xwv300), xwv31, new_delFromFM0(xwv33, Nothing, h, ba), xwv34, h, ba) 30.08/13.49 new_ltEs18(xwv2800, xwv2900) -> new_fsEs(new_compare19(xwv2800, xwv2900)) 30.08/13.49 new_esEs23(xwv4001, xwv3001, app(ty_Maybe, dab)) -> new_esEs5(xwv4001, xwv3001, dab) 30.08/13.49 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Char) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.49 new_esEs20(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.49 new_lt20(xwv28000, xwv29000, ty_Bool) -> new_lt12(xwv28000, xwv29000) 30.08/13.49 new_lt9(xwv28000, xwv29000, ty_Ordering) -> new_lt17(xwv28000, xwv29000) 30.08/13.49 new_esEs28(xwv28000, xwv29000, app(ty_[], hg)) -> new_esEs17(xwv28000, xwv29000, hg) 30.08/13.49 new_primPlusNat0(Succ(xwv33200), Zero) -> Succ(xwv33200) 30.08/13.49 new_primPlusNat0(Zero, Succ(xwv9700)) -> Succ(xwv9700) 30.08/13.49 new_ltEs16(EQ, GT) -> True 30.08/13.49 new_esEs20(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.49 new_esEs17(:(xwv4000, xwv4001), :(xwv3000, xwv3001), bcd) -> new_asAs(new_esEs25(xwv4000, xwv3000, bcd), new_esEs17(xwv4001, xwv3001, bcd)) 30.08/13.49 new_delFromFM0(EmptyFM, xwv40, h, ba) -> EmptyFM 30.08/13.49 new_ltEs16(EQ, EQ) -> True 30.08/13.49 new_lt8(xwv28001, xwv29001, ty_Double) -> new_lt14(xwv28001, xwv29001) 30.08/13.49 new_ltEs6(True, False) -> False 30.08/13.49 new_lt9(xwv28000, xwv29000, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_lt5(xwv28000, xwv29000, cdf, cdg, cdh) 30.08/13.49 new_esEs8(LT, LT) -> True 30.08/13.49 new_deleteMin0(xwv340, xwv341, xwv342, Branch(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434), xwv344, h, ba) -> new_mkBalBranch(xwv340, xwv341, new_deleteMin0(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434, h, ba), xwv344, h, ba) 30.08/13.49 new_delFromFM13(xwv300, xwv31, xwv32, xwv33, xwv34, False, h, ba) -> new_delFromFM01(xwv300, xwv31, xwv32, xwv33, xwv34, new_esEs5(Just(xwv300), Nothing, h), h, ba) 30.08/13.49 new_compare19(Integer(xwv28000), Integer(xwv29000)) -> new_primCmpInt(xwv28000, xwv29000) 30.08/13.49 new_compare111(xwv28000, xwv29000, True) -> LT 30.08/13.49 new_lt8(xwv28001, xwv29001, ty_Ordering) -> new_lt17(xwv28001, xwv29001) 30.08/13.49 new_delFromFM23(xwv31, xwv32, xwv33, xwv34, xwv400, False, h, ba) -> new_delFromFM16(xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare27(Just(xwv400), Nothing, new_esEs5(Just(xwv400), Nothing, h), h), LT), h, ba) 30.08/13.49 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, bdd), bde), bdf), bcg) -> new_ltEs7(xwv28000, xwv29000, bdd, bde, bdf) 30.08/13.49 new_delFromFM16(xwv31, xwv32, xwv33, xwv34, xwv400, False, h, ba) -> new_delFromFM02(xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs5(Nothing, Just(xwv400), h), h, ba) 30.08/13.49 new_delFromFM16(xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba) -> new_mkBalBranch(Nothing, xwv31, new_delFromFM0(xwv33, Just(xwv400), h, ba), xwv34, h, ba) 30.08/13.49 new_esEs29(xwv400, xwv300, app(ty_[], bcd)) -> new_esEs17(xwv400, xwv300, bcd) 30.08/13.49 new_esEs10(xwv28001, xwv29001, ty_Float) -> new_esEs15(xwv28001, xwv29001) 30.08/13.49 new_esEs22(xwv4000, xwv3000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs6(xwv4000, xwv3000, chf, chg, chh) 30.08/13.49 new_lt20(xwv28000, xwv29000, app(ty_Ratio, bab)) -> new_lt6(xwv28000, xwv29000, bab) 30.08/13.49 new_esEs9(xwv28000, xwv29000, ty_Float) -> new_esEs15(xwv28000, xwv29000) 30.08/13.49 new_esEs9(xwv28000, xwv29000, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_esEs6(xwv28000, xwv29000, cdf, cdg, cdh) 30.08/13.49 new_glueBal2Mid_key200(xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, Branch(xwv2880, xwv2881, xwv2882, xwv2883, xwv2884), xwv289, bf, bg) -> new_glueBal2Mid_key200(xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, xwv281, xwv282, xwv283, xwv284, xwv2880, xwv2881, xwv2882, xwv2883, xwv2884, bf, bg) 30.08/13.49 new_esEs21(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.49 new_ltEs8(xwv28002, xwv29002, app(app(ty_Either, cge), cgf)) -> new_ltEs17(xwv28002, xwv29002, cge, cgf) 30.08/13.49 new_compare23(xwv28000, xwv29000, False, hh, baa) -> new_compare113(xwv28000, xwv29000, new_ltEs17(xwv28000, xwv29000, hh, baa), hh, baa) 30.08/13.49 new_primPlusInt0(xwv2570, Pos(xwv2580)) -> Pos(new_primPlusNat0(xwv2570, xwv2580)) 30.08/13.49 new_esEs13(True, True) -> True 30.08/13.49 new_ltEs20(xwv2800, xwv2900, ty_Double) -> new_ltEs13(xwv2800, xwv2900) 30.08/13.49 new_compare17(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.49 new_compare17(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.49 new_esEs28(xwv28000, xwv29000, ty_Double) -> new_esEs14(xwv28000, xwv29000) 30.08/13.49 new_ltEs20(xwv2800, xwv2900, ty_Ordering) -> new_ltEs16(xwv2800, xwv2900) 30.08/13.49 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, bhh), caa), cab)) -> new_ltEs7(xwv28000, xwv29000, bhh, caa, cab) 30.08/13.49 new_esEs20(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.49 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Char, bbg) -> new_esEs12(xwv4000, xwv3000) 30.08/13.49 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Bool, bbg) -> new_esEs13(xwv4000, xwv3000) 30.08/13.49 new_esEs23(xwv4001, xwv3001, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs6(xwv4001, xwv3001, dah, dba, dbb) 30.08/13.49 new_compare11(xwv28000, xwv29000, app(app(app(ty_@3, dd), de), df)) -> new_compare7(xwv28000, xwv29000, dd, de, df) 30.08/13.49 new_esEs25(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.49 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_Maybe, bhf)) -> new_ltEs12(xwv28000, xwv29000, bhf) 30.08/13.49 new_ltEs8(xwv28002, xwv29002, ty_Float) -> new_ltEs14(xwv28002, xwv29002) 30.08/13.49 new_primMulInt(Neg(xwv40010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.49 new_compare24(xwv28000, xwv29000, False) -> new_compare114(xwv28000, xwv29000, new_ltEs16(xwv28000, xwv29000)) 30.08/13.49 new_primCmpInt(Pos(Zero), Pos(Succ(xwv2900))) -> new_primCmpNat0(Zero, Succ(xwv2900)) 30.08/13.49 new_esEs29(xwv400, xwv300, ty_Double) -> new_esEs14(xwv400, xwv300) 30.08/13.49 new_esEs10(xwv28001, xwv29001, app(ty_Maybe, cef)) -> new_esEs5(xwv28001, xwv29001, cef) 30.08/13.49 new_esEs25(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.49 new_esEs22(xwv4000, xwv3000, app(ty_Maybe, cgh)) -> new_esEs5(xwv4000, xwv3000, cgh) 30.08/13.49 new_ltEs19(xwv28001, xwv29001, ty_Ordering) -> new_ltEs16(xwv28001, xwv29001) 30.08/13.49 new_esEs7(Right(xwv4000), Right(xwv3000), bbf, app(ty_Ratio, cce)) -> new_esEs19(xwv4000, xwv3000, cce) 30.08/13.49 new_mkBalBranch6MkBalBranch5(xwv340, xwv341, xwv344, xwv253, False, h, ba) -> new_mkBalBranch6MkBalBranch4(xwv340, xwv341, xwv344, xwv253, new_gt(new_mkBalBranch6Size_r(xwv340, xwv341, xwv344, xwv253, h, ba), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_l(xwv340, xwv341, xwv344, xwv253, h, ba))), h, ba) 30.08/13.49 new_esEs7(Right(xwv4000), Right(xwv3000), bbf, ty_Float) -> new_esEs15(xwv4000, xwv3000) 30.08/13.49 new_ltEs19(xwv28001, xwv29001, ty_Double) -> new_ltEs13(xwv28001, xwv29001) 30.08/13.49 new_lt9(xwv28000, xwv29000, ty_Double) -> new_lt14(xwv28000, xwv29000) 30.08/13.49 new_compare11(xwv28000, xwv29000, ty_Ordering) -> new_compare18(xwv28000, xwv29000) 30.08/13.49 new_esEs24(xwv4002, xwv3002, app(app(ty_Either, dbe), dbf)) -> new_esEs7(xwv4002, xwv3002, dbe, dbf) 30.08/13.49 new_compare114(xwv28000, xwv29000, False) -> GT 30.08/13.49 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_Maybe, bgb)) -> new_esEs5(xwv4000, xwv3000, bgb) 30.08/13.49 new_mkBalBranch6MkBalBranch11(xwv340, xwv341, xwv344, xwv2530, xwv2531, xwv2532, xwv2533, EmptyFM, False, h, ba) -> error([]) 30.08/13.49 new_esEs23(xwv4001, xwv3001, ty_Ordering) -> new_esEs8(xwv4001, xwv3001) 30.08/13.49 new_ltEs20(xwv2800, xwv2900, app(ty_Ratio, ce)) -> new_ltEs4(xwv2800, xwv2900, ce) 30.08/13.49 new_compare28(xwv28000, xwv29000, False, cb, cc, cd) -> new_compare115(xwv28000, xwv29000, new_ltEs7(xwv28000, xwv29000, cb, cc, cd), cb, cc, cd) 30.08/13.49 new_esEs23(xwv4001, xwv3001, app(app(ty_@2, dae), daf)) -> new_esEs4(xwv4001, xwv3001, dae, daf) 30.08/13.49 new_esEs21(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 30.08/13.49 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Int, bbg) -> new_esEs11(xwv4000, xwv3000) 30.08/13.49 new_compare113(xwv28000, xwv29000, True, hh, baa) -> LT 30.08/13.49 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_Ratio, bea), bcg) -> new_ltEs4(xwv28000, xwv29000, bea) 30.08/13.49 new_esEs10(xwv28001, xwv29001, ty_@0) -> new_esEs16(xwv28001, xwv29001) 30.08/13.49 new_mkBalBranch(xwv340, xwv341, xwv253, xwv344, h, ba) -> new_mkBalBranch6MkBalBranch5(xwv340, xwv341, xwv344, xwv253, new_lt10(new_primPlusInt(new_mkBalBranch6Size_l(xwv340, xwv341, xwv344, xwv253, h, ba), xwv340, xwv341, xwv344, xwv253, h, ba), Pos(Succ(Succ(Zero)))), h, ba) 30.08/13.49 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_[], bhg)) -> new_ltEs5(xwv28000, xwv29000, bhg) 30.08/13.49 new_primMulInt(Pos(xwv40010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.49 new_primMulInt(Neg(xwv40010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv40010, xwv30000)) 30.08/13.49 new_ltEs17(Right(xwv28000), Right(xwv29000), beb, ty_Ordering) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.49 new_esEs12(Char(xwv4000), Char(xwv3000)) -> new_primEqNat0(xwv4000, xwv3000) 30.08/13.49 new_esEs22(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.49 new_esEs22(xwv4000, xwv3000, ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.49 new_esEs22(xwv4000, xwv3000, app(app(ty_@2, chc), chd)) -> new_esEs4(xwv4000, xwv3000, chc, chd) 30.08/13.49 new_lt9(xwv28000, xwv29000, ty_Integer) -> new_lt19(xwv28000, xwv29000) 30.08/13.49 new_ltEs17(Right(xwv28000), Right(xwv29000), beb, ty_Float) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.49 new_lt8(xwv28001, xwv29001, ty_@0) -> new_lt7(xwv28001, xwv29001) 30.08/13.49 new_lt9(xwv28000, xwv29000, app(ty_Ratio, cec)) -> new_lt6(xwv28000, xwv29000, cec) 30.08/13.49 new_ltEs19(xwv28001, xwv29001, ty_Int) -> new_ltEs9(xwv28001, xwv29001) 30.08/13.49 new_esEs7(Right(xwv4000), Right(xwv3000), bbf, app(app(ty_@2, ccc), ccd)) -> new_esEs4(xwv4000, xwv3000, ccc, ccd) 30.08/13.49 new_lt19(xwv28000, xwv29000) -> new_esEs8(new_compare19(xwv28000, xwv29000), LT) 30.08/13.49 new_esEs24(xwv4002, xwv3002, ty_Double) -> new_esEs14(xwv4002, xwv3002) 30.08/13.49 new_delFromFM03(xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_glueBal(xwv33, xwv34, h, ba) 30.08/13.49 new_esEs29(xwv400, xwv300, app(ty_Maybe, bbe)) -> new_esEs5(xwv400, xwv300, bbe) 30.08/13.49 new_ltEs17(Left(xwv28000), Left(xwv29000), app(app(ty_@2, bch), bda), bcg) -> new_ltEs11(xwv28000, xwv29000, bch, bda) 30.08/13.49 new_esEs7(Right(xwv4000), Right(xwv3000), bbf, app(ty_Maybe, cbh)) -> new_esEs5(xwv4000, xwv3000, cbh) 30.08/13.49 new_esEs13(False, False) -> True 30.08/13.49 new_ltEs9(xwv2800, xwv2900) -> new_fsEs(new_compare12(xwv2800, xwv2900)) 30.08/13.49 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.49 new_compare16(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare12(new_sr0(xwv28000, Pos(xwv290010)), new_sr0(Pos(xwv280010), xwv29000)) 30.08/13.49 new_lt20(xwv28000, xwv29000, app(ty_Maybe, hf)) -> new_lt13(xwv28000, xwv29000, hf) 30.08/13.49 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_Either, bgc), bgd)) -> new_esEs7(xwv4000, xwv3000, bgc, bgd) 30.08/13.49 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Integer, bbg) -> new_esEs18(xwv4000, xwv3000) 30.08/13.49 new_ltEs7(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), bfg, bfh, bga) -> new_pePe(new_lt9(xwv28000, xwv29000, bfg), new_asAs(new_esEs9(xwv28000, xwv29000, bfg), new_pePe(new_lt8(xwv28001, xwv29001, bfh), new_asAs(new_esEs10(xwv28001, xwv29001, bfh), new_ltEs8(xwv28002, xwv29002, bga))))) 30.08/13.49 new_esEs23(xwv4001, xwv3001, ty_Float) -> new_esEs15(xwv4001, xwv3001) 30.08/13.49 new_esEs26(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.49 new_compare6(xwv28000, xwv29000, ha, hb) -> new_compare25(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, ha, hb), ha, hb) 30.08/13.49 new_glueBal2Mid_elt200(xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, EmptyFM, xwv305, bh, ca) -> xwv302 30.08/13.49 new_lt20(xwv28000, xwv29000, ty_Int) -> new_lt10(xwv28000, xwv29000) 30.08/13.49 new_esEs29(xwv400, xwv300, ty_@0) -> new_esEs16(xwv400, xwv300) 30.08/13.49 new_esEs24(xwv4002, xwv3002, app(ty_Ratio, dca)) -> new_esEs19(xwv4002, xwv3002, dca) 30.08/13.49 new_compare0([], :(xwv29000, xwv29001), cf) -> LT 30.08/13.49 new_asAs(True, xwv64) -> xwv64 30.08/13.49 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Bool) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.49 new_compare11(xwv28000, xwv29000, ty_Double) -> new_compare16(xwv28000, xwv29000) 30.08/13.49 new_esEs25(xwv4000, xwv3000, app(ty_[], ddg)) -> new_esEs17(xwv4000, xwv3000, ddg) 30.08/13.49 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(ty_@2, bhd), bhe)) -> new_ltEs11(xwv28000, xwv29000, bhd, bhe) 30.08/13.49 new_ltEs20(xwv2800, xwv2900, ty_@0) -> new_ltEs15(xwv2800, xwv2900) 30.08/13.49 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.49 new_esEs10(xwv28001, xwv29001, app(ty_[], ceg)) -> new_esEs17(xwv28001, xwv29001, ceg) 30.08/13.49 new_esEs14(Double(xwv4000, xwv4001), Double(xwv3000, xwv3001)) -> new_esEs11(new_sr0(xwv4000, xwv3001), new_sr0(xwv4001, xwv3000)) 30.08/13.49 new_lt16(xwv28000, xwv29000, hg) -> new_esEs8(new_compare0(xwv28000, xwv29000, hg), LT) 30.08/13.49 new_esEs20(xwv4000, xwv3000, app(ty_Maybe, ed)) -> new_esEs5(xwv4000, xwv3000, ed) 30.08/13.49 new_esEs16(@0, @0) -> True 30.08/13.49 new_esEs5(Just(xwv4000), Just(xwv3000), app(app(ty_@2, bge), bgf)) -> new_esEs4(xwv4000, xwv3000, bge, bgf) 30.08/13.49 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 30.08/13.49 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Ordering) -> new_esEs8(xwv4000, xwv3000) 30.08/13.49 new_glueBal(EmptyFM, xwv34, h, ba) -> xwv34 30.08/13.49 new_delFromFM22(xwv300, xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_mkBalBranch(Just(xwv300), xwv31, xwv33, new_delFromFM0(xwv34, Nothing, h, ba), h, ba) 30.08/13.49 new_mkBalBranch6MkBalBranch4(xwv340, xwv341, Branch(xwv3440, xwv3441, xwv3442, xwv3443, xwv3444), xwv253, True, h, ba) -> new_mkBalBranch6MkBalBranch01(xwv340, xwv341, xwv3440, xwv3441, xwv3442, xwv3443, xwv3444, xwv253, new_lt10(new_sizeFM(xwv3443, h, ba), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM(xwv3444, h, ba))), h, ba) 30.08/13.49 new_esEs22(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.49 new_ltEs19(xwv28001, xwv29001, ty_@0) -> new_ltEs15(xwv28001, xwv29001) 30.08/13.49 new_primPlusInt2(Neg(xwv3750), xwv374, xwv371, xwv373, bd, be) -> new_primPlusInt1(xwv3750, new_sizeFM0(xwv374, bd, be)) 30.08/13.49 new_primCmpInt(Pos(Succ(xwv2800)), Pos(xwv290)) -> new_primCmpNat0(Succ(xwv2800), xwv290) 30.08/13.49 new_primPlusNat1(xwv107, xwv300000) -> new_primPlusNat0(xwv107, Succ(xwv300000)) 30.08/13.49 new_esEs9(xwv28000, xwv29000, app(ty_[], cde)) -> new_esEs17(xwv28000, xwv29000, cde) 30.08/13.49 new_lt9(xwv28000, xwv29000, ty_Char) -> new_lt11(xwv28000, xwv29000) 30.08/13.49 new_esEs9(xwv28000, xwv29000, ty_Int) -> new_esEs11(xwv28000, xwv29000) 30.08/13.49 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_Maybe, caf), bbg) -> new_esEs5(xwv4000, xwv3000, caf) 30.08/13.49 new_primCompAux00(xwv160, EQ) -> xwv160 30.08/13.49 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.49 new_compare0([], [], cf) -> EQ 30.08/13.49 new_mkBalBranch6MkBalBranch4(xwv340, xwv341, EmptyFM, xwv253, True, h, ba) -> error([]) 30.08/13.49 new_ltEs16(GT, GT) -> True 30.08/13.49 new_compare27(Nothing, Just(xwv2900), False, bfe) -> LT 30.08/13.49 new_esEs28(xwv28000, xwv29000, ty_Float) -> new_esEs15(xwv28000, xwv29000) 30.08/13.49 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Int, bcg) -> new_ltEs9(xwv28000, xwv29000) 30.08/13.49 new_compare27(Just(xwv2800), Just(xwv2900), False, bfe) -> new_compare112(xwv2800, xwv2900, new_ltEs20(xwv2800, xwv2900, bfe), bfe) 30.08/13.49 new_esEs21(xwv4001, xwv3001, app(app(ty_Either, fh), ga)) -> new_esEs7(xwv4001, xwv3001, fh, ga) 30.08/13.49 new_primMulNat0(Zero, Zero) -> Zero 30.08/13.49 new_primPlusInt(Pos(xwv2570), xwv340, xwv341, xwv344, xwv253, h, ba) -> new_primPlusInt0(xwv2570, new_sizeFM(xwv344, h, ba)) 30.08/13.49 new_lt20(xwv28000, xwv29000, app(ty_[], hg)) -> new_lt16(xwv28000, xwv29000, hg) 30.08/13.49 new_lt14(xwv28000, xwv29000) -> new_esEs8(new_compare16(xwv28000, xwv29000), LT) 30.08/13.49 new_esEs23(xwv4001, xwv3001, ty_Char) -> new_esEs12(xwv4001, xwv3001) 30.08/13.49 new_esEs24(xwv4002, xwv3002, app(ty_Maybe, dbd)) -> new_esEs5(xwv4002, xwv3002, dbd) 30.08/13.49 new_lt8(xwv28001, xwv29001, ty_Char) -> new_lt11(xwv28001, xwv29001) 30.08/13.49 new_esEs10(xwv28001, xwv29001, ty_Double) -> new_esEs14(xwv28001, xwv29001) 30.08/13.49 new_compare111(xwv28000, xwv29000, False) -> GT 30.08/13.49 new_ltEs20(xwv2800, xwv2900, app(ty_Maybe, bff)) -> new_ltEs12(xwv2800, xwv2900, bff) 30.08/13.49 new_lt15(xwv28000, xwv29000) -> new_esEs8(new_compare17(xwv28000, xwv29000), LT) 30.08/13.49 new_compare9(@0, @0) -> EQ 30.08/13.49 new_compare115(xwv28000, xwv29000, False, cb, cc, cd) -> GT 30.08/13.49 new_esEs21(xwv4001, xwv3001, ty_@0) -> new_esEs16(xwv4001, xwv3001) 30.08/13.49 new_esEs22(xwv4000, xwv3000, app(app(ty_Either, cha), chb)) -> new_esEs7(xwv4000, xwv3000, cha, chb) 30.08/13.49 new_compare28(xwv28000, xwv29000, True, cb, cc, cd) -> EQ 30.08/13.49 new_deleteMax0(xwv330, xwv331, xwv332, xwv333, EmptyFM, h, ba) -> xwv333 30.08/13.49 new_esEs20(xwv4000, xwv3000, app(ty_[], ff)) -> new_esEs17(xwv4000, xwv3000, ff) 30.08/13.49 new_esEs9(xwv28000, xwv29000, app(app(ty_Either, cea), ceb)) -> new_esEs7(xwv28000, xwv29000, cea, ceb) 30.08/13.49 new_compare8(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Int) -> new_compare12(new_sr0(xwv28000, xwv29001), new_sr0(xwv29000, xwv28001)) 30.08/13.49 new_esEs22(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.49 new_ltEs17(Right(xwv28000), Right(xwv29000), beb, ty_Integer) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.49 new_ltEs8(xwv28002, xwv29002, ty_Int) -> new_ltEs9(xwv28002, xwv29002) 30.08/13.49 new_mkBalBranch6MkBalBranch3(xwv340, xwv341, xwv344, xwv253, False, h, ba) -> new_mkBranch(Succ(Zero), xwv340, xwv341, xwv253, xwv344, app(ty_Maybe, h), ba) 30.08/13.49 new_esEs9(xwv28000, xwv29000, ty_Integer) -> new_esEs18(xwv28000, xwv29000) 30.08/13.49 new_esEs29(xwv400, xwv300, app(ty_Ratio, bbh)) -> new_esEs19(xwv400, xwv300, bbh) 30.08/13.49 new_esEs5(Just(xwv4000), Just(xwv3000), ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.49 new_esEs7(Right(xwv4000), Right(xwv3000), bbf, app(ty_[], cda)) -> new_esEs17(xwv4000, xwv3000, cda) 30.08/13.49 new_esEs25(xwv4000, xwv3000, app(ty_Maybe, dcf)) -> new_esEs5(xwv4000, xwv3000, dcf) 30.08/13.49 new_mkBalBranch6Size_r(xwv340, xwv341, xwv344, xwv253, h, ba) -> new_sizeFM(xwv344, h, ba) 30.08/13.49 new_primCompAux0(xwv28000, xwv29000, xwv148, cf) -> new_primCompAux00(xwv148, new_compare11(xwv28000, xwv29000, cf)) 30.08/13.49 new_esEs7(Right(xwv4000), Right(xwv3000), bbf, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.49 new_delFromFM14(xwv31, xwv32, xwv33, xwv34, False, h, ba) -> new_delFromFM03(xwv31, xwv32, xwv33, xwv34, new_esEs5(Nothing, Nothing, h), h, ba) 30.08/13.49 new_primPlusInt(Neg(xwv2570), xwv340, xwv341, xwv344, xwv253, h, ba) -> new_primPlusInt1(xwv2570, new_sizeFM(xwv344, h, ba)) 30.08/13.49 new_glueBal2Mid_key100(xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, xwv345, xwv346, xwv347, xwv348, xwv349, xwv350, xwv351, EmptyFM, bce, bcf) -> xwv348 30.08/13.49 new_esEs22(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.49 new_lt9(xwv28000, xwv29000, ty_Float) -> new_lt15(xwv28000, xwv29000) 30.08/13.49 new_ltEs6(False, True) -> True 30.08/13.49 new_esEs9(xwv28000, xwv29000, ty_@0) -> new_esEs16(xwv28000, xwv29000) 30.08/13.49 new_compare25(xwv28000, xwv29000, False, ha, hb) -> new_compare110(xwv28000, xwv29000, new_ltEs11(xwv28000, xwv29000, ha, hb), ha, hb) 30.08/13.49 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Ordering, bbg) -> new_esEs8(xwv4000, xwv3000) 30.08/13.49 new_esEs20(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.49 new_delFromFM00(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bb, bc) -> error([]) 30.08/13.49 new_esEs21(xwv4001, xwv3001, app(ty_[], gh)) -> new_esEs17(xwv4001, xwv3001, gh) 30.08/13.49 new_primPlusInt2(Pos(xwv3750), xwv374, xwv371, xwv373, bd, be) -> new_primPlusInt0(xwv3750, new_sizeFM0(xwv374, bd, be)) 30.08/13.49 new_mkBalBranch6MkBalBranch3(xwv340, xwv341, xwv344, EmptyFM, True, h, ba) -> error([]) 30.08/13.49 new_primEqInt(Neg(Succ(xwv40000)), Neg(Zero)) -> False 30.08/13.49 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 30.08/13.49 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Char, bcg) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.49 new_esEs13(False, True) -> False 30.08/13.49 new_esEs13(True, False) -> False 30.08/13.49 new_primEqInt(Pos(Succ(xwv40000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv40000, xwv30000) 30.08/13.49 new_delFromFM24(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_mkBalBranch(Just(xwv13), xwv14, xwv16, new_delFromFM0(xwv17, Just(xwv18), bb, bc), bb, bc) 30.08/13.49 new_esEs28(xwv28000, xwv29000, app(ty_Ratio, bab)) -> new_esEs19(xwv28000, xwv29000, bab) 30.08/13.49 new_mkBranch(xwv370, xwv371, xwv372, xwv373, xwv374, bd, be) -> Branch(xwv371, xwv372, new_primPlusInt2(new_primPlusInt0(Succ(Zero), new_sizeFM0(xwv373, bd, be)), xwv374, xwv371, xwv373, bd, be), xwv373, xwv374) 30.08/13.49 new_lt8(xwv28001, xwv29001, ty_Int) -> new_lt10(xwv28001, xwv29001) 30.08/13.49 new_compare11(xwv28000, xwv29000, ty_@0) -> new_compare9(xwv28000, xwv29000) 30.08/13.49 new_ltEs17(Right(xwv28000), Right(xwv29000), beb, ty_Bool) -> new_ltEs6(xwv28000, xwv29000) 30.08/13.49 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Ordering) -> new_ltEs16(xwv28000, xwv29000) 30.08/13.49 new_compare24(xwv28000, xwv29000, True) -> EQ 30.08/13.49 new_lt5(xwv28000, xwv29000, cb, cc, cd) -> new_esEs8(new_compare7(xwv28000, xwv29000, cb, cc, cd), LT) 30.08/13.49 new_lt20(xwv28000, xwv29000, ty_@0) -> new_lt7(xwv28000, xwv29000) 30.08/13.49 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_[], cbg), bbg) -> new_esEs17(xwv4000, xwv3000, cbg) 30.08/13.49 new_ltEs17(Right(xwv28000), Right(xwv29000), beb, app(ty_Ratio, bfd)) -> new_ltEs4(xwv28000, xwv29000, bfd) 30.08/13.49 new_ltEs19(xwv28001, xwv29001, app(ty_Maybe, bae)) -> new_ltEs12(xwv28001, xwv29001, bae) 30.08/13.49 new_esEs7(Right(xwv4000), Right(xwv3000), bbf, app(app(ty_Either, cca), ccb)) -> new_esEs7(xwv4000, xwv3000, cca, ccb) 30.08/13.49 new_primEqInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> False 30.08/13.49 new_primEqInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> False 30.08/13.49 new_mkBalBranch6MkBalBranch11(xwv340, xwv341, xwv344, xwv2530, xwv2531, xwv2532, xwv2533, Branch(xwv25340, xwv25341, xwv25342, xwv25343, xwv25344), False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xwv25340, xwv25341, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xwv2530, xwv2531, xwv2533, xwv25343, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), xwv340, xwv341, xwv25344, xwv344, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 30.08/13.49 new_delFromFM14(xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_mkBalBranch(Nothing, xwv31, new_delFromFM0(xwv33, Nothing, h, ba), xwv34, h, ba) 30.08/13.49 new_primCmpInt(Neg(Zero), Neg(Succ(xwv2900))) -> new_primCmpNat0(Succ(xwv2900), Zero) 30.08/13.49 new_esEs23(xwv4001, xwv3001, app(ty_Ratio, dag)) -> new_esEs19(xwv4001, xwv3001, dag) 30.08/13.49 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_@0, bcg) -> new_ltEs15(xwv28000, xwv29000) 30.08/13.49 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 30.08/13.49 new_lt8(xwv28001, xwv29001, app(ty_Ratio, cfe)) -> new_lt6(xwv28001, xwv29001, cfe) 30.08/13.49 new_lt8(xwv28001, xwv29001, ty_Bool) -> new_lt12(xwv28001, xwv29001) 30.08/13.49 new_ltEs17(Right(xwv28000), Right(xwv29000), beb, ty_Char) -> new_ltEs10(xwv28000, xwv29000) 30.08/13.49 new_esEs28(xwv28000, xwv29000, app(ty_Maybe, hf)) -> new_esEs5(xwv28000, xwv29000, hf) 30.08/13.49 new_esEs25(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.49 new_lt9(xwv28000, xwv29000, ty_@0) -> new_lt7(xwv28000, xwv29000) 30.08/13.49 new_lt11(xwv28000, xwv29000) -> new_esEs8(new_compare13(xwv28000, xwv29000), LT) 30.08/13.49 new_mkBalBranch6MkBalBranch11(xwv340, xwv341, xwv344, xwv2530, xwv2531, xwv2532, xwv2533, xwv2534, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xwv2530, xwv2531, xwv2533, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), xwv340, xwv341, xwv2534, xwv344, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) 30.08/13.49 new_mkBalBranch6MkBalBranch4(xwv340, xwv341, xwv344, xwv253, False, h, ba) -> new_mkBalBranch6MkBalBranch3(xwv340, xwv341, xwv344, xwv253, new_gt(new_mkBalBranch6Size_l(xwv340, xwv341, xwv344, xwv253, h, ba), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_r(xwv340, xwv341, xwv344, xwv253, h, ba))), h, ba) 30.08/13.49 new_sizeFM0(Branch(xwv3730, xwv3731, xwv3732, xwv3733, xwv3734), bd, be) -> xwv3732 30.08/13.49 new_ltEs17(Left(xwv28000), Left(xwv29000), ty_Double, bcg) -> new_ltEs13(xwv28000, xwv29000) 30.08/13.49 new_esEs23(xwv4001, xwv3001, ty_Double) -> new_esEs14(xwv4001, xwv3001) 30.08/13.49 new_sizeFM(Branch(xwv330, xwv331, xwv332, xwv333, xwv334), h, ba) -> xwv332 30.08/13.49 new_lt20(xwv28000, xwv29000, ty_Double) -> new_lt14(xwv28000, xwv29000) 30.08/13.49 new_ltEs17(Right(xwv28000), Right(xwv29000), beb, app(app(ty_@2, bec), bed)) -> new_ltEs11(xwv28000, xwv29000, bec, bed) 30.08/13.49 new_delFromFM24(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bb, bc) -> new_delFromFM15(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs8(new_compare27(Just(xwv18), Just(xwv13), new_esEs5(Just(xwv18), Just(xwv13), bb), bb), LT), bb, bc) 30.08/13.49 new_ltEs8(xwv28002, xwv29002, ty_Bool) -> new_ltEs6(xwv28002, xwv29002) 30.08/13.49 new_ltEs12(Just(xwv28000), Just(xwv29000), app(app(ty_Either, cac), cad)) -> new_ltEs17(xwv28000, xwv29000, cac, cad) 30.08/13.49 new_esEs24(xwv4002, xwv3002, ty_Float) -> new_esEs15(xwv4002, xwv3002) 30.08/13.49 new_compare8(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Integer) -> new_compare19(new_sr(xwv28000, xwv29001), new_sr(xwv29000, xwv28001)) 30.08/13.49 new_esEs25(xwv4000, xwv3000, ty_Integer) -> new_esEs18(xwv4000, xwv3000) 30.08/13.49 new_glueBal2Mid_elt100(xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv363, xwv364, xwv365, xwv366, xwv367, Branch(xwv3680, xwv3681, xwv3682, xwv3683, xwv3684), ddh, dea) -> new_glueBal2Mid_elt100(xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv363, xwv3680, xwv3681, xwv3682, xwv3683, xwv3684, ddh, dea) 30.08/13.49 new_compare26(xwv28000, xwv29000, False) -> new_compare111(xwv28000, xwv29000, new_ltEs6(xwv28000, xwv29000)) 30.08/13.49 new_ltEs17(Left(xwv28000), Left(xwv29000), app(ty_[], bdc), bcg) -> new_ltEs5(xwv28000, xwv29000, bdc) 30.08/13.49 new_not(False) -> True 30.08/13.49 new_esEs21(xwv4001, xwv3001, ty_Double) -> new_esEs14(xwv4001, xwv3001) 30.08/13.49 new_delFromFM0(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM24(xwv300, xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare27(Just(xwv400), Just(xwv300), new_esEs29(xwv400, xwv300, h), h), GT), h, ba) 30.08/13.49 new_esEs21(xwv4001, xwv3001, ty_Bool) -> new_esEs13(xwv4001, xwv3001) 30.08/13.49 new_esEs24(xwv4002, xwv3002, app(ty_[], dce)) -> new_esEs17(xwv4002, xwv3002, dce) 30.08/13.49 new_ltEs12(Just(xwv28000), Just(xwv29000), app(ty_Ratio, cae)) -> new_ltEs4(xwv28000, xwv29000, cae) 30.08/13.49 new_ltEs17(Right(xwv28000), Right(xwv29000), beb, app(ty_Maybe, bee)) -> new_ltEs12(xwv28000, xwv29000, bee) 30.08/13.49 new_esEs9(xwv28000, xwv29000, ty_Char) -> new_esEs12(xwv28000, xwv29000) 30.08/13.49 new_compare0(:(xwv28000, xwv28001), [], cf) -> GT 30.08/13.49 new_compare27(Just(xwv2800), Nothing, False, bfe) -> GT 30.08/13.49 new_esEs8(LT, GT) -> False 30.08/13.49 new_esEs8(GT, LT) -> False 30.08/13.49 new_primPlusNat0(Succ(xwv33200), Succ(xwv9700)) -> Succ(Succ(new_primPlusNat0(xwv33200, xwv9700))) 30.08/13.49 new_esEs24(xwv4002, xwv3002, ty_@0) -> new_esEs16(xwv4002, xwv3002) 30.08/13.49 new_esEs27(xwv4001, xwv3001, ty_Integer) -> new_esEs18(xwv4001, xwv3001) 30.08/13.49 new_esEs25(xwv4000, xwv3000, ty_Double) -> new_esEs14(xwv4000, xwv3000) 30.08/13.49 new_esEs21(xwv4001, xwv3001, ty_Char) -> new_esEs12(xwv4001, xwv3001) 30.08/13.49 new_compare16(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.49 new_compare11(xwv28000, xwv29000, ty_Float) -> new_compare17(xwv28000, xwv29000) 30.08/13.49 new_esEs6(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), bca, bcb, bcc) -> new_asAs(new_esEs22(xwv4000, xwv3000, bca), new_asAs(new_esEs23(xwv4001, xwv3001, bcb), new_esEs24(xwv4002, xwv3002, bcc))) 30.08/13.49 new_esEs9(xwv28000, xwv29000, ty_Bool) -> new_esEs13(xwv28000, xwv29000) 30.08/13.49 new_esEs27(xwv4001, xwv3001, ty_Int) -> new_esEs11(xwv4001, xwv3001) 30.08/13.49 new_sr0(xwv4001, xwv3000) -> new_primMulInt(xwv4001, xwv3000) 30.08/13.49 new_lt9(xwv28000, xwv29000, ty_Bool) -> new_lt12(xwv28000, xwv29000) 30.08/13.49 new_ltEs19(xwv28001, xwv29001, ty_Char) -> new_ltEs10(xwv28001, xwv29001) 30.08/13.49 new_lt20(xwv28000, xwv29000, app(app(ty_Either, hh), baa)) -> new_lt18(xwv28000, xwv29000, hh, baa) 30.08/13.49 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 30.08/13.49 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 30.08/13.49 new_ltEs8(xwv28002, xwv29002, app(app(ty_@2, cff), cfg)) -> new_ltEs11(xwv28002, xwv29002, cff, cfg) 30.08/13.49 new_esEs7(Right(xwv4000), Right(xwv3000), bbf, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.49 new_ltEs8(xwv28002, xwv29002, ty_Char) -> new_ltEs10(xwv28002, xwv29002) 30.08/13.49 new_compare0(:(xwv28000, xwv28001), :(xwv29000, xwv29001), cf) -> new_primCompAux0(xwv28000, xwv29000, new_compare0(xwv28001, xwv29001, cf), cf) 30.08/13.49 new_lt20(xwv28000, xwv29000, app(app(ty_@2, ha), hb)) -> new_lt4(xwv28000, xwv29000, ha, hb) 30.08/13.49 new_esEs7(Left(xwv4000), Left(xwv3000), ty_@0, bbg) -> new_esEs16(xwv4000, xwv3000) 30.08/13.49 new_esEs22(xwv4000, xwv3000, app(ty_[], daa)) -> new_esEs17(xwv4000, xwv3000, daa) 30.08/13.49 new_compare11(xwv28000, xwv29000, app(ty_[], dc)) -> new_compare0(xwv28000, xwv29000, dc) 30.08/13.49 new_esEs10(xwv28001, xwv29001, app(ty_Ratio, cfe)) -> new_esEs19(xwv28001, xwv29001, cfe) 30.08/13.49 new_lt8(xwv28001, xwv29001, ty_Integer) -> new_lt19(xwv28001, xwv29001) 30.08/13.49 new_esEs9(xwv28000, xwv29000, ty_Double) -> new_esEs14(xwv28000, xwv29000) 30.08/13.49 new_esEs5(Just(xwv4000), Just(xwv3000), app(ty_[], bhc)) -> new_esEs17(xwv4000, xwv3000, bhc) 30.08/13.49 new_esEs10(xwv28001, xwv29001, ty_Bool) -> new_esEs13(xwv28001, xwv29001) 30.08/13.49 new_lt6(xwv28000, xwv29000, bab) -> new_esEs8(new_compare8(xwv28000, xwv29000, bab), LT) 30.08/13.49 new_ltEs12(Nothing, Just(xwv29000), bff) -> True 30.08/13.49 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 30.08/13.49 new_esEs21(xwv4001, xwv3001, app(ty_Ratio, gd)) -> new_esEs19(xwv4001, xwv3001, gd) 30.08/13.49 new_esEs28(xwv28000, xwv29000, app(app(ty_@2, ha), hb)) -> new_esEs4(xwv28000, xwv29000, ha, hb) 30.08/13.49 new_esEs7(Right(xwv4000), Right(xwv3000), bbf, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.49 new_primCmpNat0(Succ(xwv2800), Succ(xwv2900)) -> new_primCmpNat0(xwv2800, xwv2900) 30.08/13.49 new_ltEs15(xwv2800, xwv2900) -> new_fsEs(new_compare9(xwv2800, xwv2900)) 30.08/13.49 new_ltEs8(xwv28002, xwv29002, app(ty_Maybe, cfh)) -> new_ltEs12(xwv28002, xwv29002, cfh) 30.08/13.49 new_lt8(xwv28001, xwv29001, ty_Float) -> new_lt15(xwv28001, xwv29001) 30.08/13.49 new_glueBal2Mid_elt200(xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, xwv297, xwv298, xwv299, xwv300, xwv301, xwv302, xwv303, Branch(xwv3040, xwv3041, xwv3042, xwv3043, xwv3044), xwv305, bh, ca) -> new_glueBal2Mid_elt200(xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, xwv297, xwv298, xwv299, xwv300, xwv3040, xwv3041, xwv3042, xwv3043, xwv3044, bh, ca) 30.08/13.49 new_ltEs17(Right(xwv28000), Right(xwv29000), beb, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs7(xwv28000, xwv29000, beg, beh, bfa) 30.08/13.49 new_glueBal2Mid_elt100(xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv363, xwv364, xwv365, xwv366, xwv367, EmptyFM, ddh, dea) -> xwv365 30.08/13.49 new_compare11(xwv28000, xwv29000, app(app(ty_Either, dg), dh)) -> new_compare10(xwv28000, xwv29000, dg, dh) 30.08/13.49 new_primMinusNat0(Zero, Succ(xwv25800)) -> Neg(Succ(xwv25800)) 30.08/13.49 new_esEs28(xwv28000, xwv29000, ty_Ordering) -> new_esEs8(xwv28000, xwv29000) 30.08/13.49 new_compare12(xwv28, xwv29) -> new_primCmpInt(xwv28, xwv29) 30.08/13.49 new_ltEs12(Nothing, Nothing, bff) -> True 30.08/13.49 new_ltEs20(xwv2800, xwv2900, ty_Char) -> new_ltEs10(xwv2800, xwv2900) 30.08/13.49 new_esEs19(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), bbh) -> new_asAs(new_esEs26(xwv4000, xwv3000, bbh), new_esEs27(xwv4001, xwv3001, bbh)) 30.08/13.49 new_ltEs12(Just(xwv28000), Nothing, bff) -> False 30.08/13.49 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 30.08/13.49 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 30.08/13.49 new_esEs29(xwv400, xwv300, app(app(ty_@2, eb), ec)) -> new_esEs4(xwv400, xwv300, eb, ec) 30.08/13.49 new_ltEs17(Right(xwv28000), Left(xwv29000), beb, bcg) -> False 30.08/13.49 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Float) -> new_ltEs14(xwv28000, xwv29000) 30.08/13.49 new_delFromFM0(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv400), h, ba) -> new_delFromFM23(xwv31, xwv32, xwv33, xwv34, xwv400, new_esEs8(new_compare27(Just(xwv400), Nothing, False, h), GT), h, ba) 30.08/13.49 new_ltEs5(xwv2800, xwv2900, cf) -> new_fsEs(new_compare0(xwv2800, xwv2900, cf)) 30.08/13.49 new_compare110(xwv28000, xwv29000, False, ha, hb) -> GT 30.08/13.49 new_compare11(xwv28000, xwv29000, app(ty_Ratio, ea)) -> new_compare8(xwv28000, xwv29000, ea) 30.08/13.49 new_primEqNat0(Zero, Zero) -> True 30.08/13.49 new_glueBal2Mid_key200(xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, xwv281, xwv282, xwv283, xwv284, xwv285, xwv286, xwv287, EmptyFM, xwv289, bf, bg) -> xwv285 30.08/13.49 new_ltEs20(xwv2800, xwv2900, ty_Int) -> new_ltEs9(xwv2800, xwv2900) 30.08/13.49 new_delFromFM23(xwv31, xwv32, xwv33, xwv34, xwv400, True, h, ba) -> new_mkBalBranch(Nothing, xwv31, xwv33, new_delFromFM0(xwv34, Just(xwv400), h, ba), h, ba) 30.08/13.49 new_esEs20(xwv4000, xwv3000, ty_Bool) -> new_esEs13(xwv4000, xwv3000) 30.08/13.49 new_ltEs20(xwv2800, xwv2900, app(ty_[], cf)) -> new_ltEs5(xwv2800, xwv2900, cf) 30.08/13.49 new_esEs7(Left(xwv4000), Left(xwv3000), ty_Float, bbg) -> new_esEs15(xwv4000, xwv3000) 30.08/13.49 new_esEs28(xwv28000, xwv29000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs6(xwv28000, xwv29000, cb, cc, cd) 30.08/13.49 new_esEs29(xwv400, xwv300, ty_Ordering) -> new_esEs8(xwv400, xwv300) 30.08/13.49 new_ltEs12(Just(xwv28000), Just(xwv29000), ty_Integer) -> new_ltEs18(xwv28000, xwv29000) 30.08/13.49 new_delFromFM15(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_mkBalBranch(Just(xwv13), xwv14, new_delFromFM0(xwv16, Just(xwv18), bb, bc), xwv17, bb, bc) 30.08/13.49 new_compare7(xwv28000, xwv29000, cb, cc, cd) -> new_compare28(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, cb, cc, cd), cb, cc, cd) 30.08/13.49 new_asAs(False, xwv64) -> False 30.08/13.49 new_esEs17(:(xwv4000, xwv4001), [], bcd) -> False 30.08/13.49 new_esEs17([], :(xwv3000, xwv3001), bcd) -> False 30.08/13.49 new_esEs20(xwv4000, xwv3000, ty_Char) -> new_esEs12(xwv4000, xwv3000) 30.08/13.49 new_esEs29(xwv400, xwv300, app(app(ty_Either, bbf), bbg)) -> new_esEs7(xwv400, xwv300, bbf, bbg) 30.08/13.49 new_glueBal(Branch(xwv330, xwv331, xwv332, xwv333, xwv334), Branch(xwv340, xwv341, xwv342, xwv343, xwv344), h, ba) -> new_glueBal2GlueBal1(xwv330, xwv331, xwv332, xwv333, xwv334, xwv340, xwv341, xwv342, xwv343, xwv344, new_gt(new_sizeFM(Branch(xwv340, xwv341, xwv342, xwv343, xwv344), h, ba), new_sizeFM(Branch(xwv330, xwv331, xwv332, xwv333, xwv334), h, ba)), h, ba) 30.08/13.49 new_esEs26(xwv4000, xwv3000, ty_Int) -> new_esEs11(xwv4000, xwv3000) 30.08/13.49 new_esEs25(xwv4000, xwv3000, ty_@0) -> new_esEs16(xwv4000, xwv3000) 30.08/13.49 new_mkBalBranch6Size_l(xwv340, xwv341, xwv344, xwv253, h, ba) -> new_sizeFM(xwv253, h, ba) 30.08/13.49 new_lt10(xwv280, xwv290) -> new_esEs8(new_compare12(xwv280, xwv290), LT) 30.08/13.49 new_esEs8(EQ, GT) -> False 30.08/13.49 new_esEs8(GT, EQ) -> False 30.08/13.49 new_compare112(xwv125, xwv126, False, hc) -> GT 30.08/13.49 new_esEs20(xwv4000, xwv3000, app(ty_Ratio, fa)) -> new_esEs19(xwv4000, xwv3000, fa) 30.08/13.49 new_lt20(xwv28000, xwv29000, app(app(app(ty_@3, cb), cc), cd)) -> new_lt5(xwv28000, xwv29000, cb, cc, cd) 30.08/13.49 new_sizeFM0(EmptyFM, bd, be) -> Pos(Zero) 30.08/13.49 new_compare17(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare12(new_sr0(xwv28000, Neg(xwv290010)), new_sr0(Neg(xwv280010), xwv29000)) 30.08/13.49 new_esEs15(Float(xwv4000, xwv4001), Float(xwv3000, xwv3001)) -> new_esEs11(new_sr0(xwv4000, xwv3001), new_sr0(xwv4001, xwv3000)) 30.08/13.49 new_esEs7(Left(xwv4000), Right(xwv3000), bbf, bbg) -> False 30.08/13.49 new_esEs7(Right(xwv4000), Left(xwv3000), bbf, bbg) -> False 30.08/13.49 new_esEs7(Left(xwv4000), Left(xwv3000), app(ty_Ratio, cbc), bbg) -> new_esEs19(xwv4000, xwv3000, cbc) 30.08/13.49 new_esEs11(xwv400, xwv300) -> new_primEqInt(xwv400, xwv300) 30.08/13.49 new_primPlusInt1(xwv2570, Pos(xwv2590)) -> new_primMinusNat0(xwv2590, xwv2570) 30.08/13.49 new_ltEs11(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), hd, he) -> new_pePe(new_lt20(xwv28000, xwv29000, hd), new_asAs(new_esEs28(xwv28000, xwv29000, hd), new_ltEs19(xwv28001, xwv29001, he))) 30.08/13.49 30.08/13.49 The set Q consists of the following terms: 30.08/13.49 30.08/13.49 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_esEs29(x0, x1, ty_Integer) 30.08/13.49 new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.08/13.49 new_delFromFM0(Branch(Nothing, x0, x1, x2, x3), Nothing, x4, x5) 30.08/13.49 new_compare11(x0, x1, ty_Ordering) 30.08/13.49 new_esEs8(EQ, EQ) 30.08/13.49 new_ltEs12(Just(x0), Just(x1), ty_Char) 30.08/13.49 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.08/13.49 new_esEs20(x0, x1, ty_Float) 30.08/13.49 new_esEs9(x0, x1, ty_@0) 30.08/13.49 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_esEs28(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 30.08/13.49 new_compare11(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_deleteMin0(x0, x1, x2, Branch(x3, x4, x5, x6, x7), x8, x9, x10) 30.08/13.49 new_mkBalBranch6MkBalBranch3(x0, x1, x2, EmptyFM, True, x3, x4) 30.08/13.49 new_compare24(x0, x1, False) 30.08/13.49 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 30.08/13.49 new_ltEs12(Nothing, Just(x0), x1) 30.08/13.49 new_esEs5(Just(x0), Just(x1), ty_Float) 30.08/13.49 new_lt16(x0, x1, x2) 30.08/13.49 new_compare11(x0, x1, ty_Double) 30.08/13.49 new_compare26(x0, x1, False) 30.08/13.49 new_esEs18(Integer(x0), Integer(x1)) 30.08/13.49 new_ltEs12(Just(x0), Just(x1), ty_Int) 30.08/13.49 new_pePe(False, x0) 30.08/13.49 new_compare11(x0, x1, ty_Int) 30.08/13.49 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) 30.08/13.49 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 30.08/13.49 new_glueBal2Mid_elt200(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, EmptyFM, x13, x14, x15) 30.08/13.49 new_compare27(Just(x0), Nothing, False, x1) 30.08/13.49 new_esEs17([], :(x0, x1), x2) 30.08/13.49 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 30.08/13.49 new_gt(x0, x1) 30.08/13.49 new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.08/13.49 new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.08/13.49 new_sr(Integer(x0), Integer(x1)) 30.08/13.49 new_compare110(x0, x1, True, x2, x3) 30.08/13.49 new_primEqInt(Pos(Zero), Pos(Zero)) 30.08/13.49 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 30.08/13.49 new_primMinusNat0(Zero, Zero) 30.08/13.49 new_ltEs8(x0, x1, ty_Float) 30.08/13.49 new_ltEs8(x0, x1, app(ty_[], x2)) 30.08/13.49 new_compare13(Char(x0), Char(x1)) 30.08/13.49 new_lt20(x0, x1, ty_@0) 30.08/13.49 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_esEs23(x0, x1, ty_Float) 30.08/13.49 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_esEs25(x0, x1, ty_Ordering) 30.08/13.49 new_compare0(:(x0, x1), [], x2) 30.08/13.49 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.08/13.49 new_delFromFM15(x0, x1, x2, x3, x4, x5, True, x6, x7) 30.08/13.49 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 30.08/13.49 new_ltEs15(x0, x1) 30.08/13.49 new_esEs9(x0, x1, ty_Integer) 30.08/13.49 new_ltEs19(x0, x1, ty_Bool) 30.08/13.49 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_esEs22(x0, x1, ty_Float) 30.08/13.49 new_esEs25(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_esEs10(x0, x1, ty_Integer) 30.08/13.49 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 30.08/13.49 new_primEqInt(Neg(Zero), Neg(Zero)) 30.08/13.49 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_compare7(x0, x1, x2, x3, x4) 30.08/13.49 new_lt20(x0, x1, ty_Integer) 30.08/13.49 new_ltEs16(GT, EQ) 30.08/13.49 new_ltEs16(EQ, GT) 30.08/13.49 new_ltEs19(x0, x1, app(ty_[], x2)) 30.08/13.49 new_sIZE_RATIO 30.08/13.49 new_compare12(x0, x1) 30.08/13.49 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_ltEs13(x0, x1) 30.08/13.49 new_primPlusNat0(Succ(x0), Succ(x1)) 30.08/13.49 new_esEs21(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_ltEs8(x0, x1, ty_Integer) 30.08/13.49 new_primMulInt(Pos(x0), Neg(x1)) 30.08/13.49 new_primMulInt(Neg(x0), Pos(x1)) 30.08/13.49 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_lt6(x0, x1, x2) 30.08/13.49 new_ltEs16(LT, LT) 30.08/13.49 new_primMulInt(Neg(x0), Neg(x1)) 30.08/13.49 new_lt9(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_esEs29(x0, x1, ty_@0) 30.08/13.49 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_esEs9(x0, x1, ty_Char) 30.08/13.49 new_delFromFM0(Branch(Just(x0), x1, x2, x3, x4), Nothing, x5, x6) 30.08/13.49 new_compare11(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_primEqNat0(Succ(x0), Succ(x1)) 30.08/13.49 new_ltEs12(Just(x0), Just(x1), ty_Ordering) 30.08/13.49 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, EmptyFM, False, x7, x8) 30.08/13.49 new_esEs29(x0, x1, ty_Bool) 30.08/13.49 new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) 30.08/13.49 new_esEs29(x0, x1, ty_Float) 30.08/13.49 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.08/13.49 new_esEs9(x0, x1, ty_Int) 30.08/13.49 new_deleteMax0(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10) 30.08/13.49 new_asAs(True, x0) 30.08/13.49 new_primEqInt(Pos(Zero), Neg(Zero)) 30.08/13.49 new_primEqInt(Neg(Zero), Pos(Zero)) 30.08/13.49 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 30.08/13.49 new_esEs5(Just(x0), Just(x1), ty_Integer) 30.08/13.49 new_lt9(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_esEs25(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_compare11(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_lt20(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) 30.08/13.49 new_primCompAux00(x0, GT) 30.08/13.49 new_lt20(x0, x1, ty_Bool) 30.08/13.49 new_mkBalBranch(x0, x1, x2, x3, x4, x5) 30.08/13.49 new_esEs22(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_delFromFM0(EmptyFM, x0, x1, x2) 30.08/13.49 new_esEs27(x0, x1, ty_Integer) 30.08/13.49 new_esEs17(:(x0, x1), [], x2) 30.08/13.49 new_esEs29(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_compare111(x0, x1, False) 30.08/13.49 new_lt20(x0, x1, ty_Char) 30.08/13.49 new_esEs21(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_esEs28(x0, x1, ty_Double) 30.08/13.49 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.08/13.49 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 30.08/13.49 new_ltEs20(x0, x1, ty_Float) 30.08/13.49 new_ltEs19(x0, x1, ty_Integer) 30.08/13.49 new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.08/13.49 new_esEs29(x0, x1, ty_Char) 30.08/13.49 new_esEs28(x0, x1, ty_Int) 30.08/13.49 new_esEs9(x0, x1, ty_Bool) 30.08/13.49 new_esEs23(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_delFromFM15(x0, x1, x2, x3, x4, x5, False, x6, x7) 30.08/13.49 new_lt15(x0, x1) 30.08/13.49 new_glueBal(Branch(x0, x1, x2, x3, x4), EmptyFM, x5, x6) 30.08/13.49 new_primMinusNat0(Succ(x0), Succ(x1)) 30.08/13.49 new_delFromFM14(x0, x1, x2, x3, False, x4, x5) 30.08/13.49 new_lt8(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_esEs21(x0, x1, ty_Integer) 30.08/13.49 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_esEs22(x0, x1, ty_@0) 30.08/13.49 new_esEs10(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_compare14(x0, x1) 30.08/13.49 new_esEs24(x0, x1, app(ty_[], x2)) 30.08/13.49 new_primPlusInt0(x0, Neg(x1)) 30.08/13.49 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_primPlusInt0(x0, Pos(x1)) 30.08/13.49 new_esEs23(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_primPlusInt2(Neg(x0), x1, x2, x3, x4, x5) 30.08/13.49 new_esEs17(:(x0, x1), :(x2, x3), x4) 30.08/13.49 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_primCompAux00(x0, EQ) 30.08/13.49 new_fsEs(x0) 30.08/13.49 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 30.08/13.49 new_lt20(x0, x1, ty_Ordering) 30.08/13.49 new_delFromFM16(x0, x1, x2, x3, x4, True, x5, x6) 30.08/13.49 new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.08/13.49 new_primPlusInt2(Pos(x0), x1, x2, x3, x4, x5) 30.08/13.49 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 30.08/13.49 new_primCmpNat0(Succ(x0), Zero) 30.08/13.49 new_ltEs8(x0, x1, ty_@0) 30.08/13.49 new_ltEs19(x0, x1, ty_Ordering) 30.08/13.49 new_esEs9(x0, x1, app(ty_[], x2)) 30.08/13.49 new_compare111(x0, x1, True) 30.08/13.49 new_compare28(x0, x1, False, x2, x3, x4) 30.08/13.49 new_primCmpNat0(Succ(x0), Succ(x1)) 30.08/13.49 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 30.08/13.49 new_ltEs16(GT, GT) 30.08/13.49 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 30.08/13.49 new_glueBal2Mid_key100(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, EmptyFM, x14, x15) 30.08/13.49 new_compare0(:(x0, x1), :(x2, x3), x4) 30.08/13.49 new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.08/13.49 new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.08/13.49 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_esEs28(x0, x1, app(ty_[], x2)) 30.08/13.49 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_esEs21(x0, x1, ty_Bool) 30.08/13.49 new_esEs29(x0, x1, app(ty_[], x2)) 30.08/13.49 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 30.08/13.49 new_esEs5(Just(x0), Just(x1), ty_@0) 30.08/13.49 new_ltEs16(LT, EQ) 30.08/13.49 new_ltEs16(EQ, LT) 30.08/13.49 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 30.08/13.49 new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 30.08/13.49 new_ltEs19(x0, x1, ty_Double) 30.08/13.49 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_esEs24(x0, x1, ty_Integer) 30.08/13.49 new_lt8(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_ltEs20(x0, x1, app(ty_[], x2)) 30.08/13.49 new_compare11(x0, x1, ty_@0) 30.08/13.49 new_compare26(x0, x1, True) 30.08/13.49 new_lt17(x0, x1) 30.08/13.49 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 30.08/13.49 new_ltEs8(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_esEs23(x0, x1, ty_Integer) 30.08/13.49 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) 30.08/13.49 new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 30.08/13.49 new_esEs23(x0, x1, app(ty_[], x2)) 30.08/13.49 new_ltEs12(Just(x0), Just(x1), ty_Integer) 30.08/13.49 new_primPlusInt1(x0, Neg(x1)) 30.08/13.49 new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_esEs8(GT, GT) 30.08/13.49 new_esEs9(x0, x1, ty_Float) 30.08/13.49 new_esEs10(x0, x1, app(ty_[], x2)) 30.08/13.49 new_esEs8(LT, EQ) 30.08/13.49 new_esEs8(EQ, LT) 30.08/13.49 new_delFromFM02(x0, x1, x2, x3, x4, True, x5, x6) 30.08/13.49 new_esEs20(x0, x1, ty_Bool) 30.08/13.49 new_ltEs8(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_compare19(Integer(x0), Integer(x1)) 30.08/13.49 new_primCmpInt(Neg(Zero), Neg(Zero)) 30.08/13.49 new_primPlusNat0(Zero, Succ(x0)) 30.08/13.49 new_esEs25(x0, x1, ty_Int) 30.08/13.49 new_esEs24(x0, x1, ty_Float) 30.08/13.49 new_lt9(x0, x1, app(ty_[], x2)) 30.08/13.49 new_esEs10(x0, x1, ty_Double) 30.08/13.49 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 30.08/13.49 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 30.08/13.49 new_esEs13(False, True) 30.08/13.49 new_esEs13(True, False) 30.08/13.49 new_esEs24(x0, x1, ty_Bool) 30.08/13.49 new_compare23(x0, x1, False, x2, x3) 30.08/13.49 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 30.08/13.49 new_ltEs5(x0, x1, x2) 30.08/13.49 new_ltEs14(x0, x1) 30.08/13.49 new_esEs8(LT, LT) 30.08/13.49 new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) 30.08/13.49 new_primMinusNat0(Zero, Succ(x0)) 30.08/13.49 new_lt9(x0, x1, ty_Float) 30.08/13.49 new_primCmpInt(Pos(Zero), Neg(Zero)) 30.08/13.49 new_primCmpInt(Neg(Zero), Pos(Zero)) 30.08/13.49 new_ltEs12(Just(x0), Just(x1), ty_Bool) 30.08/13.49 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 30.08/13.49 new_primEqNat0(Succ(x0), Zero) 30.08/13.49 new_compare0([], [], x0) 30.08/13.49 new_ltEs17(Left(x0), Left(x1), ty_Float, x2) 30.08/13.49 new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) 30.08/13.49 new_esEs26(x0, x1, ty_Integer) 30.08/13.49 new_delFromFM23(x0, x1, x2, x3, x4, True, x5, x6) 30.08/13.49 new_lt8(x0, x1, ty_Integer) 30.08/13.49 new_esEs10(x0, x1, ty_@0) 30.08/13.49 new_lt11(x0, x1) 30.08/13.49 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.08/13.49 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_ltEs6(False, False) 30.08/13.49 new_ltEs12(Just(x0), Nothing, x1) 30.08/13.49 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_compare25(x0, x1, True, x2, x3) 30.08/13.49 new_glueBal2Mid_elt100(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, EmptyFM, x14, x15) 30.08/13.49 new_delFromFM22(x0, x1, x2, x3, x4, False, x5, x6) 30.08/13.49 new_esEs25(x0, x1, ty_Bool) 30.08/13.49 new_ltEs19(x0, x1, ty_@0) 30.08/13.49 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 30.08/13.49 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 30.08/13.49 new_esEs7(Left(x0), Right(x1), x2, x3) 30.08/13.49 new_esEs7(Right(x0), Left(x1), x2, x3) 30.08/13.49 new_mkBalBranch6MkBalBranch4(x0, x1, EmptyFM, x2, True, x3, x4) 30.08/13.49 new_asAs(False, x0) 30.08/13.49 new_esEs27(x0, x1, ty_Int) 30.08/13.49 new_ltEs17(Left(x0), Left(x1), ty_Char, x2) 30.08/13.49 new_esEs21(x0, x1, app(ty_[], x2)) 30.08/13.49 new_esEs25(x0, x1, ty_Char) 30.08/13.49 new_glueBal2GlueBal1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, False, x10, x11) 30.08/13.49 new_esEs25(x0, x1, app(ty_[], x2)) 30.08/13.49 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 30.08/13.49 new_esEs24(x0, x1, ty_Int) 30.08/13.49 new_esEs24(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_delFromFM24(x0, x1, x2, x3, x4, x5, False, x6, x7) 30.08/13.49 new_deleteMax0(x0, x1, x2, x3, EmptyFM, x4, x5) 30.08/13.49 new_ltEs17(Left(x0), Left(x1), ty_Int, x2) 30.08/13.49 new_lt8(x0, x1, ty_Ordering) 30.08/13.49 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_ltEs8(x0, x1, ty_Double) 30.08/13.49 new_esEs16(@0, @0) 30.08/13.49 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_primPlusInt1(x0, Pos(x1)) 30.08/13.49 new_esEs22(x0, x1, ty_Double) 30.08/13.49 new_esEs5(Nothing, Nothing, x0) 30.08/13.49 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 30.08/13.49 new_esEs24(x0, x1, ty_Char) 30.08/13.49 new_esEs20(x0, x1, ty_Integer) 30.08/13.49 new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) 30.08/13.49 new_primMulInt(Pos(x0), Pos(x1)) 30.08/13.49 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 30.08/13.49 new_primPlusNat0(Succ(x0), Zero) 30.08/13.49 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_esEs21(x0, x1, ty_Float) 30.08/13.49 new_sizeFM(EmptyFM, x0, x1) 30.08/13.49 new_ltEs17(Right(x0), Right(x1), x2, ty_@0) 30.08/13.49 new_esEs28(x0, x1, ty_Integer) 30.08/13.49 new_lt8(x0, x1, ty_@0) 30.08/13.49 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) 30.08/13.49 new_glueBal2Mid_key100(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, Branch(x14, x15, x16, x17, x18), x19, x20) 30.08/13.49 new_ltEs17(Left(x0), Right(x1), x2, x3) 30.08/13.49 new_ltEs17(Right(x0), Left(x1), x2, x3) 30.08/13.49 new_esEs5(Just(x0), Just(x1), ty_Ordering) 30.08/13.49 new_ltEs16(EQ, EQ) 30.08/13.49 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.08/13.49 new_esEs20(x0, x1, ty_Ordering) 30.08/13.49 new_esEs29(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_esEs23(x0, x1, ty_Int) 30.08/13.49 new_esEs20(x0, x1, ty_Double) 30.08/13.49 new_lt8(x0, x1, ty_Bool) 30.08/13.49 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, EmptyFM, x5, x6, False, x7, x8) 30.08/13.49 new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) 30.08/13.49 new_ltEs20(x0, x1, ty_Int) 30.08/13.49 new_esEs20(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_esEs21(x0, x1, ty_Char) 30.08/13.49 new_compare11(x0, x1, app(ty_[], x2)) 30.08/13.49 new_primMulNat0(Zero, Zero) 30.08/13.49 new_delFromFM13(x0, x1, x2, x3, x4, False, x5, x6) 30.08/13.49 new_compare27(Just(x0), Just(x1), False, x2) 30.08/13.49 new_ltEs12(Nothing, Nothing, x0) 30.08/13.49 new_compare114(x0, x1, False) 30.08/13.49 new_ltEs20(x0, x1, ty_Double) 30.08/13.49 new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.08/13.49 new_compare28(x0, x1, True, x2, x3, x4) 30.08/13.49 new_compare11(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_esEs22(x0, x1, ty_Ordering) 30.08/13.49 new_esEs11(x0, x1) 30.08/13.49 new_esEs21(x0, x1, ty_Int) 30.08/13.49 new_primPlusInt(Pos(x0), x1, x2, x3, x4, x5, x6) 30.08/13.49 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 30.08/13.49 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_lt9(x0, x1, ty_Char) 30.08/13.49 new_esEs23(x0, x1, ty_Ordering) 30.08/13.49 new_glueBal2Mid_elt200(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, Branch(x13, x14, x15, x16, x17), x18, x19, x20) 30.08/13.49 new_delFromFM16(x0, x1, x2, x3, x4, False, x5, x6) 30.08/13.49 new_ltEs18(x0, x1) 30.08/13.49 new_compare112(x0, x1, True, x2) 30.08/13.49 new_compare9(@0, @0) 30.08/13.49 new_delFromFM22(x0, x1, x2, x3, x4, True, x5, x6) 30.08/13.49 new_delFromFM03(x0, x1, x2, x3, True, x4, x5) 30.08/13.49 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 30.08/13.49 new_esEs19(:%(x0, x1), :%(x2, x3), x4) 30.08/13.49 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 30.08/13.49 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_delFromFM01(x0, x1, x2, x3, x4, False, x5, x6) 30.08/13.49 new_primPlusInt(Neg(x0), x1, x2, x3, x4, x5, x6) 30.08/13.49 new_ltEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 30.08/13.49 new_esEs21(x0, x1, ty_Double) 30.08/13.49 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_compare113(x0, x1, False, x2, x3) 30.08/13.49 new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 30.08/13.49 new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) 30.08/13.49 new_lt9(x0, x1, ty_Int) 30.08/13.49 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 30.08/13.49 new_lt9(x0, x1, ty_@0) 30.08/13.49 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 30.08/13.49 new_delFromFM00(x0, x1, x2, x3, x4, x5, True, x6, x7) 30.08/13.49 new_glueBal2Mid_key200(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, EmptyFM, x13, x14, x15) 30.08/13.49 new_esEs5(Just(x0), Just(x1), ty_Int) 30.08/13.49 new_ltEs12(Just(x0), Just(x1), ty_Float) 30.08/13.49 new_esEs5(Just(x0), Just(x1), ty_Double) 30.08/13.49 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 30.08/13.49 new_esEs5(Just(x0), Just(x1), ty_Char) 30.08/13.49 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, x11, False, x12, x13) 30.08/13.49 new_esEs25(x0, x1, ty_Integer) 30.08/13.49 new_compare11(x0, x1, ty_Float) 30.08/13.49 new_esEs25(x0, x1, ty_Float) 30.08/13.49 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 30.08/13.49 new_primPlusNat0(Zero, Zero) 30.08/13.49 new_mkBalBranch6MkBalBranch3(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) 30.08/13.49 new_lt8(x0, x1, ty_Char) 30.08/13.49 new_primEqNat0(Zero, Succ(x0)) 30.08/13.49 new_not(True) 30.08/13.49 new_lt9(x0, x1, ty_Bool) 30.08/13.49 new_ltEs17(Right(x0), Right(x1), x2, ty_Char) 30.08/13.49 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 30.08/13.49 new_esEs20(x0, x1, ty_Char) 30.08/13.49 new_esEs8(EQ, GT) 30.08/13.49 new_esEs8(GT, EQ) 30.08/13.49 new_ltEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_lt12(x0, x1) 30.08/13.49 new_esEs28(x0, x1, ty_@0) 30.08/13.49 new_esEs20(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_compare6(x0, x1, x2, x3) 30.08/13.49 new_esEs15(Float(x0, x1), Float(x2, x3)) 30.08/13.49 new_lt10(x0, x1) 30.08/13.49 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_esEs28(x0, x1, ty_Bool) 30.08/13.49 new_deleteMin0(x0, x1, x2, EmptyFM, x3, x4, x5) 30.08/13.49 new_esEs10(x0, x1, ty_Ordering) 30.08/13.49 new_esEs24(x0, x1, ty_Ordering) 30.08/13.49 new_esEs13(True, True) 30.08/13.49 new_delFromFM03(x0, x1, x2, x3, False, x4, x5) 30.08/13.49 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_lt4(x0, x1, x2, x3) 30.08/13.49 new_lt9(x0, x1, ty_Double) 30.08/13.49 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 30.08/13.49 new_esEs28(x0, x1, ty_Float) 30.08/13.49 new_primCompAux0(x0, x1, x2, x3) 30.08/13.49 new_ltEs20(x0, x1, ty_Char) 30.08/13.49 new_primCompAux00(x0, LT) 30.08/13.49 new_compare15(x0, x1, x2) 30.08/13.49 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 30.08/13.49 new_esEs23(x0, x1, ty_@0) 30.08/13.49 new_primMulNat0(Zero, Succ(x0)) 30.08/13.49 new_lt20(x0, x1, ty_Double) 30.08/13.49 new_esEs21(x0, x1, ty_Ordering) 30.08/13.49 new_compare18(x0, x1) 30.08/13.49 new_ltEs20(x0, x1, ty_@0) 30.08/13.49 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.08/13.49 new_ltEs8(x0, x1, ty_Ordering) 30.08/13.49 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_esEs20(x0, x1, ty_Int) 30.08/13.49 new_esEs22(x0, x1, app(ty_[], x2)) 30.08/13.49 new_esEs23(x0, x1, ty_Bool) 30.08/13.49 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 30.08/13.49 new_esEs20(x0, x1, app(ty_[], x2)) 30.08/13.49 new_glueBal2Mid_key200(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, Branch(x13, x14, x15, x16, x17), x18, x19, x20) 30.08/13.49 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_ltEs16(LT, GT) 30.08/13.49 new_ltEs16(GT, LT) 30.08/13.49 new_primPlusNat1(x0, x1) 30.08/13.49 new_ltEs17(Right(x0), Right(x1), x2, ty_Int) 30.08/13.49 new_lt20(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_ltEs10(x0, x1) 30.08/13.49 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) 30.08/13.49 new_ltEs6(True, True) 30.08/13.49 new_esEs29(x0, x1, ty_Double) 30.08/13.49 new_sizeFM0(EmptyFM, x0, x1) 30.08/13.49 new_esEs28(x0, x1, ty_Char) 30.08/13.49 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 30.08/13.49 new_lt8(x0, x1, ty_Int) 30.08/13.49 new_delFromFM01(x0, x1, x2, x3, x4, True, x5, x6) 30.08/13.49 new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) 30.08/13.49 new_esEs29(x0, x1, ty_Int) 30.08/13.49 new_mkBranch(x0, x1, x2, x3, x4, x5, x6) 30.08/13.49 new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 30.08/13.49 new_esEs9(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 30.08/13.49 new_compare115(x0, x1, True, x2, x3, x4) 30.08/13.49 new_esEs23(x0, x1, ty_Char) 30.08/13.49 new_primCmpInt(Pos(Zero), Pos(Zero)) 30.08/13.49 new_esEs26(x0, x1, ty_Int) 30.08/13.49 new_compare27(x0, x1, True, x2) 30.08/13.49 new_esEs23(x0, x1, ty_Double) 30.08/13.49 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 30.08/13.49 new_esEs9(x0, x1, ty_Double) 30.08/13.49 new_lt8(x0, x1, ty_Double) 30.08/13.49 new_esEs5(Nothing, Just(x0), x1) 30.08/13.49 new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 30.08/13.49 new_esEs24(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_esEs10(x0, x1, ty_Char) 30.08/13.49 new_lt8(x0, x1, ty_Float) 30.08/13.49 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_primMulNat0(Succ(x0), Zero) 30.08/13.49 new_lt5(x0, x1, x2, x3, x4) 30.08/13.49 new_esEs20(x0, x1, ty_@0) 30.08/13.49 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_esEs22(x0, x1, ty_Bool) 30.08/13.49 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 30.08/13.49 new_esEs9(x0, x1, ty_Ordering) 30.08/13.49 new_delFromFM13(x0, x1, x2, x3, x4, True, x5, x6) 30.08/13.49 new_mkBalBranch6MkBalBranch4(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) 30.08/13.49 new_lt18(x0, x1, x2, x3) 30.08/13.49 new_pePe(True, x0) 30.08/13.49 new_ltEs17(Right(x0), Right(x1), x2, ty_Float) 30.08/13.49 new_esEs9(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), False, x12, x13) 30.08/13.49 new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.08/13.49 new_glueBal2GlueBal1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, True, x10, x11) 30.08/13.49 new_ltEs17(Right(x0), Right(x1), x2, ty_Double) 30.08/13.49 new_compare114(x0, x1, True) 30.08/13.49 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_esEs8(LT, GT) 30.08/13.49 new_esEs8(GT, LT) 30.08/13.49 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 30.08/13.49 new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 30.08/13.49 new_ltEs19(x0, x1, ty_Int) 30.08/13.49 new_esEs28(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_esEs5(Just(x0), Just(x1), ty_Bool) 30.08/13.49 new_ltEs8(x0, x1, ty_Bool) 30.08/13.49 new_lt20(x0, x1, ty_Int) 30.08/13.49 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 30.08/13.49 new_primMinusNat0(Succ(x0), Zero) 30.08/13.49 new_compare11(x0, x1, ty_Integer) 30.08/13.49 new_ltEs19(x0, x1, ty_Char) 30.08/13.49 new_compare11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_delFromFM14(x0, x1, x2, x3, True, x4, x5) 30.08/13.49 new_glueBal(EmptyFM, x0, x1, x2) 30.08/13.49 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_compare115(x0, x1, False, x2, x3, x4) 30.08/13.49 new_lt9(x0, x1, ty_Integer) 30.08/13.49 new_esEs25(x0, x1, ty_@0) 30.08/13.49 new_ltEs20(x0, x1, ty_Bool) 30.08/13.49 new_sr0(x0, x1) 30.08/13.49 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 30.08/13.49 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 30.08/13.49 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 30.08/13.49 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 30.08/13.49 new_compare0([], :(x0, x1), x2) 30.08/13.49 new_esEs22(x0, x1, ty_Integer) 30.08/13.49 new_lt13(x0, x1, x2) 30.08/13.49 new_lt20(x0, x1, app(ty_[], x2)) 30.08/13.49 new_delFromFM24(x0, x1, x2, x3, x4, x5, True, x6, x7) 30.08/13.49 new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) 30.08/13.49 new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 30.08/13.49 new_primMulNat0(Succ(x0), Succ(x1)) 30.08/13.49 new_lt20(x0, x1, ty_Float) 30.08/13.49 new_compare10(x0, x1, x2, x3) 30.08/13.49 new_ltEs12(Just(x0), Just(x1), ty_@0) 30.08/13.49 new_esEs10(x0, x1, ty_Float) 30.08/13.49 new_lt8(x0, x1, app(ty_[], x2)) 30.08/13.49 new_primEqNat0(Zero, Zero) 30.08/13.49 new_esEs13(False, False) 30.08/13.49 new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 30.08/13.49 new_compare23(x0, x1, True, x2, x3) 30.08/13.49 new_esEs5(Just(x0), Nothing, x1) 30.08/13.49 new_lt14(x0, x1) 30.08/13.49 new_lt9(x0, x1, ty_Ordering) 30.08/13.49 new_ltEs12(Just(x0), Just(x1), ty_Double) 30.08/13.49 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) 30.08/13.49 new_esEs12(Char(x0), Char(x1)) 30.08/13.49 new_esEs22(x0, x1, ty_Char) 30.08/13.49 new_not(False) 30.08/13.49 new_delFromFM02(x0, x1, x2, x3, x4, False, x5, x6) 30.08/13.49 new_ltEs8(x0, x1, ty_Int) 30.08/13.49 new_ltEs9(x0, x1) 30.08/13.49 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_esEs22(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_esEs10(x0, x1, ty_Bool) 30.08/13.49 new_compare25(x0, x1, False, x2, x3) 30.08/13.49 new_delFromFM23(x0, x1, x2, x3, x4, False, x5, x6) 30.08/13.49 new_esEs21(x0, x1, ty_@0) 30.08/13.49 new_compare113(x0, x1, True, x2, x3) 30.08/13.49 new_compare27(Nothing, Just(x0), False, x1) 30.08/13.49 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 30.08/13.49 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_compare11(x0, x1, ty_Char) 30.08/13.49 new_esEs22(x0, x1, ty_Int) 30.08/13.49 new_esEs24(x0, x1, ty_@0) 30.08/13.49 new_compare27(Nothing, Nothing, False, x0) 30.08/13.49 new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 30.08/13.49 new_ltEs17(Left(x0), Left(x1), ty_Double, x2) 30.08/13.49 new_ltEs6(True, False) 30.08/13.49 new_ltEs6(False, True) 30.08/13.49 new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 30.08/13.49 new_glueBal2Mid_elt100(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, Branch(x14, x15, x16, x17, x18), x19, x20) 30.08/13.49 new_ltEs4(x0, x1, x2) 30.08/13.49 new_esEs14(Double(x0, x1), Double(x2, x3)) 30.08/13.49 new_lt7(x0, x1) 30.08/13.49 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 30.08/13.49 new_lt19(x0, x1) 30.08/13.49 new_esEs10(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_delFromFM0(Branch(Just(x0), x1, x2, x3, x4), Just(x5), x6, x7) 30.08/13.49 new_esEs29(x0, x1, ty_Ordering) 30.08/13.49 new_esEs10(x0, x1, ty_Int) 30.08/13.49 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) 30.08/13.49 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 30.08/13.49 new_compare110(x0, x1, False, x2, x3) 30.08/13.49 new_ltEs17(Left(x0), Left(x1), ty_@0, x2) 30.08/13.49 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 30.08/13.49 new_primCmpNat0(Zero, Succ(x0)) 30.08/13.49 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 30.08/13.49 new_delFromFM0(Branch(Nothing, x0, x1, x2, x3), Just(x4), x5, x6) 30.08/13.49 new_ltEs20(x0, x1, ty_Integer) 30.08/13.49 new_glueBal(Branch(x0, x1, x2, x3, x4), Branch(x5, x6, x7, x8, x9), x10, x11) 30.08/13.49 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 30.08/13.49 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 30.08/13.49 new_esEs28(x0, x1, ty_Ordering) 30.08/13.49 new_compare112(x0, x1, False, x2) 30.08/13.49 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 30.08/13.49 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 30.08/13.49 new_esEs25(x0, x1, ty_Double) 30.08/13.49 new_delFromFM00(x0, x1, x2, x3, x4, x5, False, x6, x7) 30.08/13.49 new_ltEs8(x0, x1, ty_Char) 30.08/13.49 new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 30.08/13.49 new_ltEs8(x0, x1, app(ty_Maybe, x2)) 30.08/13.49 new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 30.08/13.49 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 30.08/13.49 new_ltEs8(x0, x1, app(app(ty_@2, x2), x3)) 30.08/13.49 new_ltEs20(x0, x1, ty_Ordering) 30.08/13.49 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 30.08/13.49 new_esEs17([], [], x0) 30.08/13.49 new_compare11(x0, x1, ty_Bool) 30.08/13.49 new_ltEs19(x0, x1, ty_Float) 30.08/13.49 new_esEs24(x0, x1, ty_Double) 30.08/13.49 new_primCmpNat0(Zero, Zero) 30.08/13.49 new_compare24(x0, x1, True) 30.08/13.49 30.08/13.49 We have to consider all minimal (P,Q,R)-chains. 30.08/13.49 ---------------------------------------- 30.08/13.49 30.08/13.49 (66) QDPSizeChangeProof (EQUIVALENT) 30.08/13.49 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. 30.08/13.49 30.08/13.49 From the DPs we obtained the following set of size-change graphs: 30.08/13.49 *new_foldl(xwv3, :(xwv40, xwv41), h, ba) -> new_foldl(new_delFromFM0(xwv3, xwv40, h, ba), xwv41, h, ba) 30.08/13.49 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 30.08/13.49 30.08/13.49 30.08/13.49 ---------------------------------------- 30.08/13.49 30.08/13.49 (67) 30.08/13.49 YES 30.08/13.49 30.08/13.49 ---------------------------------------- 30.08/13.49 30.08/13.49 (68) 30.08/13.49 Obligation: 30.08/13.49 Q DP problem: 30.08/13.49 The TRS P consists of the following rules: 30.08/13.49 30.08/13.49 new_glueBal2Mid_elt10(xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv363, xwv364, xwv365, xwv366, xwv367, Branch(xwv3680, xwv3681, xwv3682, xwv3683, xwv3684), h, ba) -> new_glueBal2Mid_elt10(xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv363, xwv3680, xwv3681, xwv3682, xwv3683, xwv3684, h, ba) 30.08/13.49 30.08/13.49 R is empty. 30.08/13.49 Q is empty. 30.08/13.49 We have to consider all minimal (P,Q,R)-chains. 30.08/13.49 ---------------------------------------- 30.08/13.49 30.08/13.49 (69) QDPSizeChangeProof (EQUIVALENT) 30.08/13.49 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. 30.08/13.49 30.08/13.49 From the DPs we obtained the following set of size-change graphs: 30.08/13.49 *new_glueBal2Mid_elt10(xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv363, xwv364, xwv365, xwv366, xwv367, Branch(xwv3680, xwv3681, xwv3682, xwv3683, xwv3684), h, ba) -> new_glueBal2Mid_elt10(xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, xwv361, xwv362, xwv363, xwv3680, xwv3681, xwv3682, xwv3683, xwv3684, h, ba) 30.08/13.49 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 10, 15 > 11, 15 > 12, 15 > 13, 15 > 14, 15 > 15, 16 >= 16, 17 >= 17 30.08/13.49 30.08/13.49 30.08/13.49 ---------------------------------------- 30.08/13.49 30.08/13.49 (70) 30.08/13.49 YES 30.08/13.49 30.08/13.49 ---------------------------------------- 30.08/13.49 30.08/13.49 (71) 30.08/13.49 Obligation: 30.08/13.49 Q DP problem: 30.08/13.49 The TRS P consists of the following rules: 30.08/13.49 30.08/13.49 new_primEqNat(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat(xwv40000, xwv30000) 30.08/13.49 30.08/13.49 R is empty. 30.08/13.49 Q is empty. 30.08/13.49 We have to consider all minimal (P,Q,R)-chains. 30.08/13.49 ---------------------------------------- 30.08/13.49 30.08/13.49 (72) QDPSizeChangeProof (EQUIVALENT) 30.08/13.49 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. 30.08/13.49 30.08/13.49 From the DPs we obtained the following set of size-change graphs: 30.08/13.49 *new_primEqNat(Succ(xwv40000), Succ(xwv30000)) -> new_primEqNat(xwv40000, xwv30000) 30.08/13.49 The graph contains the following edges 1 > 1, 2 > 2 30.08/13.49 30.08/13.49 30.08/13.49 ---------------------------------------- 30.08/13.49 30.08/13.49 (73) 30.08/13.49 YES 30.25/13.54 EOF