22.58/8.46 YES 25.00/9.19 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 25.00/9.19 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 25.00/9.19 25.00/9.19 25.00/9.19 H-Termination with start terms of the given HASKELL could be proven: 25.00/9.19 25.00/9.19 (0) HASKELL 25.00/9.19 (1) LR [EQUIVALENT, 0 ms] 25.00/9.19 (2) HASKELL 25.00/9.19 (3) CR [EQUIVALENT, 0 ms] 25.00/9.19 (4) HASKELL 25.00/9.19 (5) IFR [EQUIVALENT, 0 ms] 25.00/9.19 (6) HASKELL 25.00/9.19 (7) BR [EQUIVALENT, 0 ms] 25.00/9.19 (8) HASKELL 25.00/9.19 (9) COR [EQUIVALENT, 0 ms] 25.00/9.19 (10) HASKELL 25.00/9.19 (11) LetRed [EQUIVALENT, 0 ms] 25.00/9.19 (12) HASKELL 25.00/9.19 (13) NumRed [SOUND, 0 ms] 25.00/9.19 (14) HASKELL 25.00/9.19 (15) Narrow [SOUND, 0 ms] 25.00/9.19 (16) AND 25.00/9.19 (17) QDP 25.00/9.19 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.00/9.19 (19) YES 25.00/9.19 (20) QDP 25.00/9.19 (21) DependencyGraphProof [EQUIVALENT, 0 ms] 25.00/9.19 (22) AND 25.00/9.19 (23) QDP 25.00/9.19 (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.00/9.19 (25) YES 25.00/9.19 (26) QDP 25.00/9.19 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.00/9.19 (28) YES 25.00/9.19 (29) QDP 25.00/9.19 (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.00/9.19 (31) YES 25.00/9.19 (32) QDP 25.00/9.19 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.00/9.19 (34) YES 25.00/9.19 (35) QDP 25.00/9.19 (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.00/9.19 (37) YES 25.00/9.19 (38) QDP 25.00/9.19 (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.00/9.19 (40) YES 25.00/9.19 (41) QDP 25.00/9.19 (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.00/9.19 (43) YES 25.00/9.19 (44) QDP 25.00/9.19 (45) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.00/9.19 (46) YES 25.00/9.19 (47) QDP 25.00/9.19 (48) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.00/9.19 (49) YES 25.00/9.19 (50) QDP 25.00/9.19 (51) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.00/9.19 (52) YES 25.00/9.19 (53) QDP 25.00/9.19 (54) DependencyGraphProof [EQUIVALENT, 0 ms] 25.00/9.19 (55) QDP 25.00/9.19 (56) QDPSizeChangeProof [EQUIVALENT, 236 ms] 25.00/9.19 (57) YES 25.00/9.19 (58) QDP 25.00/9.19 (59) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.00/9.19 (60) YES 25.00/9.19 (61) QDP 25.00/9.19 (62) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.00/9.19 (63) YES 25.00/9.19 (64) QDP 25.00/9.19 (65) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.00/9.19 (66) YES 25.00/9.19 (67) QDP 25.00/9.19 (68) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.00/9.19 (69) YES 25.00/9.19 25.00/9.19 25.00/9.19 ---------------------------------------- 25.00/9.19 25.00/9.19 (0) 25.00/9.19 Obligation: 25.00/9.19 mainModule Main 25.00/9.19 module FiniteMap where { 25.00/9.19 import qualified Main; 25.00/9.19 import qualified Maybe; 25.00/9.19 import qualified Prelude; 25.00/9.19 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 25.00/9.19 25.00/9.19 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.00/9.19 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.00/9.19 } 25.00/9.19 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 25.00/9.19 delFromFM EmptyFM del_key = emptyFM; 25.00/9.19 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 25.00/9.19 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 25.00/9.19 | key == del_key = glueBal fm_l fm_r; 25.00/9.19 25.00/9.19 delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; 25.00/9.19 delListFromFM fm keys = foldl delFromFM fm keys; 25.00/9.19 25.00/9.19 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 25.00/9.19 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 25.00/9.19 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 25.00/9.19 25.00/9.19 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 25.00/9.19 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 25.00/9.19 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 25.00/9.19 25.00/9.19 emptyFM :: FiniteMap b a; 25.00/9.19 emptyFM = EmptyFM; 25.00/9.19 25.00/9.19 findMax :: FiniteMap a b -> (a,b); 25.00/9.19 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 25.00/9.19 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 25.00/9.19 25.00/9.19 findMin :: FiniteMap a b -> (a,b); 25.00/9.19 findMin (Branch key elt _ EmptyFM _) = (key,elt); 25.00/9.19 findMin (Branch key elt _ fm_l _) = findMin fm_l; 25.00/9.19 25.00/9.19 fmToList :: FiniteMap a b -> [(a,b)]; 25.00/9.19 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 25.00/9.19 25.00/9.19 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 25.00/9.19 foldFM k z EmptyFM = z; 25.00/9.19 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.00/9.19 25.00/9.19 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 25.00/9.19 glueBal EmptyFM fm2 = fm2; 25.00/9.19 glueBal fm1 EmptyFM = fm1; 25.00/9.19 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 25.00/9.19 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 25.00/9.19 mid_elt1 = (\(_,mid_elt1) ->mid_elt1) vv2; 25.00/9.19 mid_elt2 = (\(_,mid_elt2) ->mid_elt2) vv3; 25.00/9.19 mid_key1 = (\(mid_key1,_) ->mid_key1) vv2; 25.00/9.19 mid_key2 = (\(mid_key2,_) ->mid_key2) vv3; 25.00/9.19 vv2 = findMax fm1; 25.00/9.19 vv3 = findMin fm2; 25.00/9.19 }; 25.00/9.19 25.00/9.19 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.00/9.19 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 25.00/9.19 | size_r > sIZE_RATIO * size_l = case fm_R of { 25.00/9.19 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 25.00/9.19 | otherwise -> double_L fm_L fm_R; 25.00/9.19 } 25.00/9.19 | size_l > sIZE_RATIO * size_r = case fm_L of { 25.00/9.19 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 25.00/9.19 | otherwise -> double_R fm_L fm_R; 25.00/9.19 } 25.00/9.19 | otherwise = mkBranch 2 key elt fm_L fm_R where { 25.00/9.19 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); 25.00/9.19 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); 25.00/9.19 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; 25.00/9.19 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); 25.00/9.19 size_l = sizeFM fm_L; 25.00/9.19 size_r = sizeFM fm_R; 25.00/9.19 }; 25.00/9.19 25.00/9.19 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 25.00/9.19 mkBranch which key elt fm_l fm_r = let { 25.00/9.19 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 25.00/9.19 } in result where { 25.00/9.19 balance_ok = True; 25.00/9.19 left_ok = case fm_l of { 25.00/9.19 EmptyFM-> True; 25.00/9.19 Branch left_key _ _ _ _-> let { 25.00/9.19 biggest_left_key = fst (findMax fm_l); 25.00/9.19 } in biggest_left_key < key; 25.00/9.19 } ; 25.00/9.19 left_size = sizeFM fm_l; 25.00/9.19 right_ok = case fm_r of { 25.00/9.19 EmptyFM-> True; 25.00/9.19 Branch right_key _ _ _ _-> let { 25.00/9.19 smallest_right_key = fst (findMin fm_r); 25.00/9.19 } in key < smallest_right_key; 25.00/9.19 } ; 25.00/9.19 right_size = sizeFM fm_r; 25.00/9.19 unbox :: Int -> Int; 25.00/9.19 unbox x = x; 25.00/9.19 }; 25.00/9.19 25.00/9.19 sIZE_RATIO :: Int; 25.00/9.19 sIZE_RATIO = 5; 25.00/9.19 25.00/9.19 sizeFM :: FiniteMap b a -> Int; 25.00/9.19 sizeFM EmptyFM = 0; 25.00/9.19 sizeFM (Branch _ _ size _ _) = size; 25.00/9.19 25.00/9.19 } 25.00/9.19 module Maybe where { 25.00/9.19 import qualified FiniteMap; 25.00/9.19 import qualified Main; 25.00/9.19 import qualified Prelude; 25.00/9.19 } 25.00/9.19 module Main where { 25.00/9.19 import qualified FiniteMap; 25.00/9.19 import qualified Maybe; 25.00/9.19 import qualified Prelude; 25.00/9.19 } 25.00/9.19 25.00/9.19 ---------------------------------------- 25.00/9.19 25.00/9.19 (1) LR (EQUIVALENT) 25.00/9.19 Lambda Reductions: 25.00/9.19 The following Lambda expression 25.00/9.19 "\(_,mid_elt2)->mid_elt2" 25.00/9.19 is transformed to 25.00/9.19 "mid_elt20 (_,mid_elt2) = mid_elt2; 25.00/9.19 " 25.00/9.19 The following Lambda expression 25.00/9.19 "\(mid_key2,_)->mid_key2" 25.00/9.19 is transformed to 25.00/9.19 "mid_key20 (mid_key2,_) = mid_key2; 25.00/9.19 " 25.00/9.19 The following Lambda expression 25.00/9.19 "\(mid_key1,_)->mid_key1" 25.00/9.19 is transformed to 25.00/9.19 "mid_key10 (mid_key1,_) = mid_key1; 25.00/9.19 " 25.00/9.19 The following Lambda expression 25.00/9.19 "\(_,mid_elt1)->mid_elt1" 25.00/9.19 is transformed to 25.00/9.19 "mid_elt10 (_,mid_elt1) = mid_elt1; 25.00/9.19 " 25.00/9.19 The following Lambda expression 25.00/9.19 "\keyeltrest->(key,elt) : rest" 25.00/9.19 is transformed to 25.00/9.19 "fmToList0 key elt rest = (key,elt) : rest; 25.00/9.19 " 25.00/9.19 25.00/9.19 ---------------------------------------- 25.00/9.19 25.00/9.19 (2) 25.00/9.19 Obligation: 25.00/9.19 mainModule Main 25.00/9.19 module FiniteMap where { 25.00/9.19 import qualified Main; 25.00/9.19 import qualified Maybe; 25.00/9.19 import qualified Prelude; 25.00/9.19 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.00/9.19 25.00/9.19 instance (Eq a, Eq b) => Eq FiniteMap a b where { 25.00/9.19 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.00/9.19 } 25.00/9.19 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 25.00/9.19 delFromFM EmptyFM del_key = emptyFM; 25.00/9.19 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 25.00/9.19 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 25.00/9.19 | key == del_key = glueBal fm_l fm_r; 25.00/9.19 25.00/9.19 delListFromFM :: Ord a => FiniteMap a b -> [a] -> FiniteMap a b; 25.00/9.19 delListFromFM fm keys = foldl delFromFM fm keys; 25.00/9.19 25.00/9.19 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 25.00/9.19 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 25.00/9.19 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 25.55/9.33 25.55/9.33 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 25.55/9.33 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 25.55/9.33 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 25.55/9.33 25.55/9.33 emptyFM :: FiniteMap a b; 25.55/9.33 emptyFM = EmptyFM; 25.55/9.33 25.55/9.33 findMax :: FiniteMap a b -> (a,b); 25.55/9.33 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 25.55/9.33 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 25.55/9.33 25.55/9.33 findMin :: FiniteMap b a -> (b,a); 25.55/9.33 findMin (Branch key elt _ EmptyFM _) = (key,elt); 25.55/9.33 findMin (Branch key elt _ fm_l _) = findMin fm_l; 25.55/9.33 25.55/9.33 fmToList :: FiniteMap a b -> [(a,b)]; 25.55/9.33 fmToList fm = foldFM fmToList0 [] fm; 25.55/9.33 25.55/9.33 fmToList0 key elt rest = (key,elt) : rest; 25.55/9.33 25.55/9.33 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 25.55/9.33 foldFM k z EmptyFM = z; 25.55/9.33 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.55/9.33 25.55/9.33 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 25.55/9.33 glueBal EmptyFM fm2 = fm2; 25.55/9.33 glueBal fm1 EmptyFM = fm1; 25.55/9.33 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 25.55/9.33 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 25.55/9.33 mid_elt1 = mid_elt10 vv2; 25.55/9.33 mid_elt10 (_,mid_elt1) = mid_elt1; 25.55/9.33 mid_elt2 = mid_elt20 vv3; 25.55/9.33 mid_elt20 (_,mid_elt2) = mid_elt2; 25.55/9.33 mid_key1 = mid_key10 vv2; 25.55/9.33 mid_key10 (mid_key1,_) = mid_key1; 25.55/9.33 mid_key2 = mid_key20 vv3; 25.55/9.33 mid_key20 (mid_key2,_) = mid_key2; 25.55/9.33 vv2 = findMax fm1; 25.55/9.33 vv3 = findMin fm2; 25.55/9.33 }; 25.55/9.33 25.55/9.33 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.55/9.33 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 25.55/9.33 | size_r > sIZE_RATIO * size_l = case fm_R of { 25.55/9.33 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 25.55/9.33 | otherwise -> double_L fm_L fm_R; 25.55/9.33 } 25.55/9.33 | size_l > sIZE_RATIO * size_r = case fm_L of { 25.55/9.33 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 25.55/9.33 | otherwise -> double_R fm_L fm_R; 25.55/9.33 } 25.55/9.33 | otherwise = mkBranch 2 key elt fm_L fm_R where { 25.55/9.33 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); 25.55/9.33 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); 25.55/9.33 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; 25.55/9.33 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); 25.55/9.33 size_l = sizeFM fm_L; 25.55/9.33 size_r = sizeFM fm_R; 25.55/9.33 }; 25.55/9.33 25.55/9.33 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 25.55/9.33 mkBranch which key elt fm_l fm_r = let { 25.55/9.33 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 25.55/9.33 } in result where { 25.55/9.33 balance_ok = True; 25.55/9.33 left_ok = case fm_l of { 25.55/9.33 EmptyFM-> True; 25.55/9.33 Branch left_key _ _ _ _-> let { 25.55/9.33 biggest_left_key = fst (findMax fm_l); 25.55/9.33 } in biggest_left_key < key; 25.55/9.33 } ; 25.55/9.33 left_size = sizeFM fm_l; 25.55/9.33 right_ok = case fm_r of { 25.55/9.33 EmptyFM-> True; 25.55/9.33 Branch right_key _ _ _ _-> let { 25.55/9.33 smallest_right_key = fst (findMin fm_r); 25.55/9.33 } in key < smallest_right_key; 25.55/9.33 } ; 25.55/9.33 right_size = sizeFM fm_r; 25.55/9.33 unbox :: Int -> Int; 25.55/9.33 unbox x = x; 25.55/9.33 }; 25.55/9.33 25.55/9.33 sIZE_RATIO :: Int; 25.55/9.33 sIZE_RATIO = 5; 25.55/9.33 25.55/9.33 sizeFM :: FiniteMap b a -> Int; 25.55/9.33 sizeFM EmptyFM = 0; 25.55/9.33 sizeFM (Branch _ _ size _ _) = size; 25.55/9.33 25.55/9.33 } 25.55/9.33 module Maybe where { 25.55/9.33 import qualified FiniteMap; 25.55/9.33 import qualified Main; 25.55/9.33 import qualified Prelude; 25.55/9.33 } 25.55/9.33 module Main where { 25.55/9.33 import qualified FiniteMap; 25.55/9.33 import qualified Maybe; 25.55/9.33 import qualified Prelude; 25.55/9.33 } 25.55/9.33 25.55/9.33 ---------------------------------------- 25.55/9.33 25.55/9.33 (3) CR (EQUIVALENT) 25.55/9.33 Case Reductions: 25.55/9.33 The following Case expression 25.55/9.33 "case compare x y of { 25.55/9.33 EQ -> o; 25.55/9.33 LT -> LT; 25.55/9.33 GT -> GT} 25.55/9.33 " 25.55/9.33 is transformed to 25.55/9.33 "primCompAux0 o EQ = o; 25.55/9.33 primCompAux0 o LT = LT; 25.55/9.33 primCompAux0 o GT = GT; 25.55/9.33 " 25.55/9.33 The following Case expression 25.55/9.33 "case fm_r of { 25.55/9.33 EmptyFM -> True; 25.55/9.33 Branch right_key _ _ _ _ -> let { 25.55/9.33 smallest_right_key = fst (findMin fm_r); 25.55/9.33 } in key < smallest_right_key} 25.55/9.33 " 25.55/9.33 is transformed to 25.55/9.33 "right_ok0 fm_r key EmptyFM = True; 25.55/9.33 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 25.55/9.33 smallest_right_key = fst (findMin fm_r); 25.55/9.33 } in key < smallest_right_key; 25.55/9.33 " 25.55/9.33 The following Case expression 25.55/9.33 "case fm_l of { 25.55/9.33 EmptyFM -> True; 25.55/9.33 Branch left_key _ _ _ _ -> let { 25.55/9.33 biggest_left_key = fst (findMax fm_l); 25.55/9.33 } in biggest_left_key < key} 25.55/9.33 " 25.55/9.33 is transformed to 25.55/9.33 "left_ok0 fm_l key EmptyFM = True; 25.55/9.33 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 25.55/9.33 biggest_left_key = fst (findMax fm_l); 25.55/9.33 } in biggest_left_key < key; 25.55/9.33 " 25.55/9.33 The following Case expression 25.55/9.33 "case fm_R of { 25.55/9.33 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 25.55/9.33 " 25.55/9.33 is transformed to 25.55/9.33 "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; 25.55/9.33 " 25.55/9.33 The following Case expression 25.55/9.33 "case fm_L of { 25.55/9.33 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 25.55/9.33 " 25.55/9.33 is transformed to 25.55/9.33 "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; 25.55/9.33 " 25.55/9.33 25.55/9.33 ---------------------------------------- 25.55/9.33 25.55/9.33 (4) 25.55/9.33 Obligation: 25.55/9.33 mainModule Main 25.55/9.33 module FiniteMap where { 25.55/9.33 import qualified Main; 25.55/9.33 import qualified Maybe; 25.55/9.33 import qualified Prelude; 25.55/9.33 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 25.55/9.33 25.55/9.33 instance (Eq a, Eq b) => Eq FiniteMap a b where { 25.55/9.33 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.55/9.33 } 25.55/9.33 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 25.55/9.33 delFromFM EmptyFM del_key = emptyFM; 25.55/9.33 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 25.55/9.33 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 25.55/9.33 | key == del_key = glueBal fm_l fm_r; 25.55/9.33 25.55/9.33 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 25.55/9.33 delListFromFM fm keys = foldl delFromFM fm keys; 25.55/9.33 25.55/9.33 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 25.55/9.33 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 25.55/9.33 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 25.55/9.33 25.55/9.33 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 25.55/9.33 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 25.55/9.33 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 25.55/9.33 25.55/9.33 emptyFM :: FiniteMap b a; 25.55/9.33 emptyFM = EmptyFM; 25.55/9.33 25.55/9.33 findMax :: FiniteMap a b -> (a,b); 25.55/9.33 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 25.55/9.33 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 25.55/9.33 25.55/9.33 findMin :: FiniteMap b a -> (b,a); 25.55/9.33 findMin (Branch key elt _ EmptyFM _) = (key,elt); 25.55/9.33 findMin (Branch key elt _ fm_l _) = findMin fm_l; 25.55/9.33 25.55/9.33 fmToList :: FiniteMap b a -> [(b,a)]; 25.55/9.33 fmToList fm = foldFM fmToList0 [] fm; 25.55/9.33 25.55/9.33 fmToList0 key elt rest = (key,elt) : rest; 25.55/9.33 25.55/9.33 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 25.55/9.33 foldFM k z EmptyFM = z; 25.55/9.33 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.55/9.33 25.55/9.33 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 25.55/9.33 glueBal EmptyFM fm2 = fm2; 25.55/9.33 glueBal fm1 EmptyFM = fm1; 25.55/9.33 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 25.55/9.33 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 25.55/9.33 mid_elt1 = mid_elt10 vv2; 25.55/9.33 mid_elt10 (_,mid_elt1) = mid_elt1; 25.55/9.33 mid_elt2 = mid_elt20 vv3; 25.55/9.33 mid_elt20 (_,mid_elt2) = mid_elt2; 25.55/9.33 mid_key1 = mid_key10 vv2; 25.55/9.33 mid_key10 (mid_key1,_) = mid_key1; 25.55/9.33 mid_key2 = mid_key20 vv3; 25.55/9.33 mid_key20 (mid_key2,_) = mid_key2; 25.55/9.33 vv2 = findMax fm1; 25.55/9.33 vv3 = findMin fm2; 25.55/9.33 }; 25.55/9.33 25.55/9.33 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 25.55/9.33 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 25.55/9.33 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 25.55/9.33 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 25.55/9.33 | otherwise = mkBranch 2 key elt fm_L fm_R where { 25.55/9.33 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); 25.55/9.33 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); 25.55/9.33 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 25.55/9.33 | otherwise = double_L fm_L fm_R; 25.55/9.33 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 25.55/9.33 | otherwise = double_R fm_L fm_R; 25.55/9.33 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; 25.55/9.33 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); 25.55/9.33 size_l = sizeFM fm_L; 25.55/9.33 size_r = sizeFM fm_R; 25.55/9.33 }; 25.55/9.33 25.55/9.33 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 25.55/9.33 mkBranch which key elt fm_l fm_r = let { 25.55/9.33 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 25.55/9.33 } in result where { 25.55/9.33 balance_ok = True; 25.55/9.33 left_ok = left_ok0 fm_l key fm_l; 25.55/9.33 left_ok0 fm_l key EmptyFM = True; 25.55/9.33 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 25.55/9.33 biggest_left_key = fst (findMax fm_l); 25.55/9.33 } in biggest_left_key < key; 25.55/9.33 left_size = sizeFM fm_l; 25.55/9.33 right_ok = right_ok0 fm_r key fm_r; 25.55/9.33 right_ok0 fm_r key EmptyFM = True; 25.55/9.33 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 25.55/9.33 smallest_right_key = fst (findMin fm_r); 25.55/9.33 } in key < smallest_right_key; 25.55/9.33 right_size = sizeFM fm_r; 25.55/9.33 unbox :: Int -> Int; 25.55/9.33 unbox x = x; 25.55/9.33 }; 25.55/9.33 25.55/9.33 sIZE_RATIO :: Int; 25.55/9.33 sIZE_RATIO = 5; 25.55/9.33 25.55/9.33 sizeFM :: FiniteMap a b -> Int; 25.55/9.33 sizeFM EmptyFM = 0; 25.55/9.33 sizeFM (Branch _ _ size _ _) = size; 25.55/9.33 25.55/9.33 } 25.55/9.33 module Maybe where { 25.55/9.33 import qualified FiniteMap; 25.55/9.33 import qualified Main; 25.55/9.33 import qualified Prelude; 25.55/9.33 } 25.55/9.33 module Main where { 25.55/9.33 import qualified FiniteMap; 25.55/9.33 import qualified Maybe; 25.55/9.33 import qualified Prelude; 25.55/9.33 } 25.55/9.33 25.55/9.33 ---------------------------------------- 25.55/9.33 25.55/9.33 (5) IFR (EQUIVALENT) 25.55/9.33 If Reductions: 25.55/9.33 The following If expression 25.55/9.33 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 25.55/9.33 is transformed to 25.55/9.33 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 25.55/9.33 primDivNatS0 x y False = Zero; 25.55/9.33 " 25.55/9.33 The following If expression 25.55/9.33 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 25.55/9.33 is transformed to 25.55/9.33 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 25.55/9.33 primModNatS0 x y False = Succ x; 25.55/9.33 " 25.55/9.33 25.55/9.33 ---------------------------------------- 25.55/9.33 25.55/9.33 (6) 25.55/9.33 Obligation: 25.55/9.33 mainModule Main 25.55/9.33 module FiniteMap where { 25.55/9.33 import qualified Main; 25.55/9.33 import qualified Maybe; 25.55/9.33 import qualified Prelude; 25.55/9.33 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 25.55/9.33 25.55/9.33 instance (Eq a, Eq b) => Eq FiniteMap a b where { 25.55/9.33 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.55/9.33 } 25.55/9.33 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 25.55/9.33 delFromFM EmptyFM del_key = emptyFM; 25.55/9.33 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 25.55/9.33 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 25.55/9.33 | key == del_key = glueBal fm_l fm_r; 25.55/9.33 25.55/9.33 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 25.55/9.33 delListFromFM fm keys = foldl delFromFM fm keys; 25.55/9.33 25.55/9.33 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 25.55/9.33 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 25.55/9.33 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 25.55/9.33 25.55/9.33 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 25.55/9.33 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 25.55/9.33 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 25.55/9.33 25.55/9.33 emptyFM :: FiniteMap b a; 25.55/9.33 emptyFM = EmptyFM; 25.55/9.33 25.55/9.33 findMax :: FiniteMap a b -> (a,b); 25.55/9.33 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 25.55/9.33 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 25.55/9.33 25.55/9.33 findMin :: FiniteMap b a -> (b,a); 25.55/9.33 findMin (Branch key elt _ EmptyFM _) = (key,elt); 25.55/9.33 findMin (Branch key elt _ fm_l _) = findMin fm_l; 25.55/9.33 25.55/9.33 fmToList :: FiniteMap b a -> [(b,a)]; 25.55/9.33 fmToList fm = foldFM fmToList0 [] fm; 25.55/9.33 25.55/9.33 fmToList0 key elt rest = (key,elt) : rest; 25.55/9.33 25.55/9.33 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 25.55/9.33 foldFM k z EmptyFM = z; 25.55/9.33 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.55/9.33 25.55/9.33 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 25.55/9.33 glueBal EmptyFM fm2 = fm2; 25.55/9.33 glueBal fm1 EmptyFM = fm1; 25.55/9.33 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 25.55/9.33 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 25.55/9.33 mid_elt1 = mid_elt10 vv2; 25.55/9.33 mid_elt10 (_,mid_elt1) = mid_elt1; 25.55/9.33 mid_elt2 = mid_elt20 vv3; 25.55/9.33 mid_elt20 (_,mid_elt2) = mid_elt2; 25.55/9.33 mid_key1 = mid_key10 vv2; 25.55/9.33 mid_key10 (mid_key1,_) = mid_key1; 25.55/9.33 mid_key2 = mid_key20 vv3; 25.55/9.33 mid_key20 (mid_key2,_) = mid_key2; 25.55/9.33 vv2 = findMax fm1; 25.55/9.33 vv3 = findMin fm2; 25.55/9.33 }; 25.55/9.33 25.55/9.33 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.55/9.33 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 25.55/9.33 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 25.55/9.33 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 25.55/9.33 | otherwise = mkBranch 2 key elt fm_L fm_R where { 25.55/9.33 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); 25.55/9.33 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); 25.55/9.33 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 25.55/9.33 | otherwise = double_L fm_L fm_R; 25.55/9.33 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 25.55/9.33 | otherwise = double_R fm_L fm_R; 25.55/9.33 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; 25.55/9.33 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); 25.55/9.33 size_l = sizeFM fm_L; 25.55/9.33 size_r = sizeFM fm_R; 25.55/9.33 }; 25.55/9.33 25.55/9.33 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 25.55/9.33 mkBranch which key elt fm_l fm_r = let { 25.55/9.33 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 25.55/9.33 } in result where { 25.55/9.33 balance_ok = True; 25.55/9.33 left_ok = left_ok0 fm_l key fm_l; 25.55/9.33 left_ok0 fm_l key EmptyFM = True; 25.55/9.33 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 25.55/9.33 biggest_left_key = fst (findMax fm_l); 25.55/9.33 } in biggest_left_key < key; 25.55/9.33 left_size = sizeFM fm_l; 25.55/9.33 right_ok = right_ok0 fm_r key fm_r; 25.55/9.33 right_ok0 fm_r key EmptyFM = True; 25.55/9.33 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 25.55/9.33 smallest_right_key = fst (findMin fm_r); 25.55/9.33 } in key < smallest_right_key; 25.55/9.33 right_size = sizeFM fm_r; 25.55/9.33 unbox :: Int -> Int; 25.55/9.33 unbox x = x; 25.55/9.33 }; 25.55/9.33 25.55/9.33 sIZE_RATIO :: Int; 25.55/9.33 sIZE_RATIO = 5; 25.55/9.33 25.55/9.33 sizeFM :: FiniteMap b a -> Int; 25.55/9.33 sizeFM EmptyFM = 0; 25.55/9.33 sizeFM (Branch _ _ size _ _) = size; 25.55/9.33 25.55/9.33 } 25.55/9.33 module Maybe where { 25.55/9.33 import qualified FiniteMap; 25.55/9.33 import qualified Main; 25.55/9.33 import qualified Prelude; 25.55/9.33 } 25.55/9.33 module Main where { 25.55/9.33 import qualified FiniteMap; 25.55/9.33 import qualified Maybe; 25.55/9.33 import qualified Prelude; 25.55/9.33 } 25.55/9.33 25.55/9.33 ---------------------------------------- 25.55/9.33 25.55/9.33 (7) BR (EQUIVALENT) 25.55/9.33 Replaced joker patterns by fresh variables and removed binding patterns. 25.55/9.33 ---------------------------------------- 25.55/9.33 25.55/9.33 (8) 25.55/9.33 Obligation: 25.55/9.33 mainModule Main 25.55/9.33 module FiniteMap where { 25.55/9.33 import qualified Main; 25.55/9.33 import qualified Maybe; 25.55/9.33 import qualified Prelude; 25.55/9.33 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 25.55/9.33 25.55/9.33 instance (Eq a, Eq b) => Eq FiniteMap a b where { 25.55/9.33 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.55/9.33 } 25.55/9.33 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 25.55/9.33 delFromFM EmptyFM del_key = emptyFM; 25.55/9.33 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 25.55/9.33 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 25.55/9.33 | key == del_key = glueBal fm_l fm_r; 25.55/9.33 25.55/9.33 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 25.55/9.33 delListFromFM fm keys = foldl delFromFM fm keys; 25.55/9.33 25.55/9.33 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 25.55/9.33 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 25.55/9.33 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 26.21/9.48 26.21/9.48 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 26.21/9.48 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 26.21/9.48 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 26.21/9.48 26.21/9.48 emptyFM :: FiniteMap b a; 26.21/9.48 emptyFM = EmptyFM; 26.21/9.48 26.21/9.48 findMax :: FiniteMap a b -> (a,b); 26.21/9.48 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 26.21/9.48 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 26.21/9.48 26.21/9.48 findMin :: FiniteMap b a -> (b,a); 26.21/9.48 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 26.21/9.48 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 26.21/9.48 26.21/9.48 fmToList :: FiniteMap b a -> [(b,a)]; 26.21/9.48 fmToList fm = foldFM fmToList0 [] fm; 26.21/9.48 26.21/9.48 fmToList0 key elt rest = (key,elt) : rest; 26.21/9.48 26.21/9.48 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 26.21/9.48 foldFM k z EmptyFM = z; 26.21/9.48 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.21/9.48 26.21/9.48 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 26.21/9.48 glueBal EmptyFM fm2 = fm2; 26.21/9.48 glueBal fm1 EmptyFM = fm1; 26.21/9.48 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 26.21/9.48 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 26.21/9.48 mid_elt1 = mid_elt10 vv2; 26.21/9.48 mid_elt10 (vyw,mid_elt1) = mid_elt1; 26.21/9.48 mid_elt2 = mid_elt20 vv3; 26.21/9.48 mid_elt20 (vyv,mid_elt2) = mid_elt2; 26.21/9.48 mid_key1 = mid_key10 vv2; 26.21/9.48 mid_key10 (mid_key1,vyx) = mid_key1; 26.21/9.48 mid_key2 = mid_key20 vv3; 26.21/9.48 mid_key20 (mid_key2,vyy) = mid_key2; 26.21/9.48 vv2 = findMax fm1; 26.21/9.48 vv3 = findMin fm2; 26.21/9.48 }; 26.21/9.48 26.21/9.48 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 26.21/9.48 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 26.21/9.48 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 26.21/9.48 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 26.21/9.48 | otherwise = mkBranch 2 key elt fm_L fm_R where { 26.21/9.48 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); 26.21/9.48 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); 26.21/9.48 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 26.21/9.48 | otherwise = double_L fm_L fm_R; 26.21/9.48 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 26.21/9.48 | otherwise = double_R fm_L fm_R; 26.21/9.48 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; 26.21/9.48 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); 26.21/9.48 size_l = sizeFM fm_L; 26.21/9.48 size_r = sizeFM fm_R; 26.21/9.48 }; 26.21/9.48 26.21/9.48 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 26.21/9.48 mkBranch which key elt fm_l fm_r = let { 26.21/9.48 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 26.21/9.48 } in result where { 26.21/9.48 balance_ok = True; 26.21/9.48 left_ok = left_ok0 fm_l key fm_l; 26.21/9.48 left_ok0 fm_l key EmptyFM = True; 26.21/9.48 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 26.21/9.48 biggest_left_key = fst (findMax fm_l); 26.21/9.48 } in biggest_left_key < key; 26.21/9.48 left_size = sizeFM fm_l; 26.21/9.48 right_ok = right_ok0 fm_r key fm_r; 26.21/9.48 right_ok0 fm_r key EmptyFM = True; 26.21/9.48 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 26.21/9.48 smallest_right_key = fst (findMin fm_r); 26.21/9.48 } in key < smallest_right_key; 26.21/9.48 right_size = sizeFM fm_r; 26.21/9.48 unbox :: Int -> Int; 26.21/9.48 unbox x = x; 26.21/9.48 }; 26.21/9.48 26.21/9.48 sIZE_RATIO :: Int; 26.21/9.48 sIZE_RATIO = 5; 26.21/9.48 26.21/9.48 sizeFM :: FiniteMap b a -> Int; 26.21/9.48 sizeFM EmptyFM = 0; 26.21/9.48 sizeFM (Branch vzu vzv size vzw vzx) = size; 26.21/9.48 26.21/9.48 } 26.21/9.48 module Maybe where { 26.21/9.48 import qualified FiniteMap; 26.21/9.48 import qualified Main; 26.21/9.48 import qualified Prelude; 26.21/9.48 } 26.21/9.48 module Main where { 26.21/9.48 import qualified FiniteMap; 26.21/9.48 import qualified Maybe; 26.21/9.48 import qualified Prelude; 26.21/9.48 } 26.21/9.48 26.21/9.48 ---------------------------------------- 26.21/9.48 26.21/9.48 (9) COR (EQUIVALENT) 26.21/9.48 Cond Reductions: 26.21/9.48 The following Function with conditions 26.21/9.48 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 26.21/9.48 " 26.21/9.48 is transformed to 26.21/9.48 "compare x y = compare3 x y; 26.21/9.48 " 26.21/9.48 "compare2 x y True = EQ; 26.21/9.48 compare2 x y False = compare1 x y (x <= y); 26.21/9.48 " 26.21/9.48 "compare1 x y True = LT; 26.21/9.48 compare1 x y False = compare0 x y otherwise; 26.21/9.48 " 26.21/9.48 "compare0 x y True = GT; 26.21/9.48 " 26.21/9.48 "compare3 x y = compare2 x y (x == y); 26.21/9.48 " 26.21/9.48 The following Function with conditions 26.21/9.48 "absReal x|x >= 0x|otherwise`negate` x; 26.21/9.48 " 26.21/9.48 is transformed to 26.21/9.48 "absReal x = absReal2 x; 26.21/9.48 " 26.21/9.48 "absReal0 x True = `negate` x; 26.21/9.48 " 26.21/9.48 "absReal1 x True = x; 26.21/9.48 absReal1 x False = absReal0 x otherwise; 26.21/9.48 " 26.21/9.48 "absReal2 x = absReal1 x (x >= 0); 26.21/9.48 " 26.21/9.48 The following Function with conditions 26.21/9.48 "gcd' x 0 = x; 26.21/9.48 gcd' x y = gcd' y (x `rem` y); 26.21/9.48 " 26.21/9.48 is transformed to 26.21/9.48 "gcd' x wuy = gcd'2 x wuy; 26.21/9.48 gcd' x y = gcd'0 x y; 26.21/9.48 " 26.21/9.48 "gcd'0 x y = gcd' y (x `rem` y); 26.21/9.48 " 26.21/9.48 "gcd'1 True x wuy = x; 26.21/9.48 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 26.21/9.48 " 26.21/9.48 "gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 26.21/9.48 gcd'2 wvw wvx = gcd'0 wvw wvx; 26.21/9.48 " 26.21/9.48 The following Function with conditions 26.21/9.48 "gcd 0 0 = error []; 26.21/9.48 gcd x y = gcd' (abs x) (abs y) where { 26.21/9.48 gcd' x 0 = x; 26.21/9.48 gcd' x y = gcd' y (x `rem` y); 26.21/9.48 } 26.21/9.48 ; 26.21/9.48 " 26.21/9.48 is transformed to 26.21/9.48 "gcd wvy wvz = gcd3 wvy wvz; 26.21/9.48 gcd x y = gcd0 x y; 26.21/9.48 " 26.21/9.48 "gcd0 x y = gcd' (abs x) (abs y) where { 26.21/9.48 gcd' x wuy = gcd'2 x wuy; 26.21/9.48 gcd' x y = gcd'0 x y; 26.21/9.48 ; 26.21/9.48 gcd'0 x y = gcd' y (x `rem` y); 26.21/9.48 ; 26.21/9.48 gcd'1 True x wuy = x; 26.21/9.48 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 26.21/9.48 ; 26.21/9.48 gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 26.21/9.48 gcd'2 wvw wvx = gcd'0 wvw wvx; 26.21/9.48 } 26.21/9.48 ; 26.21/9.48 " 26.21/9.48 "gcd1 True wvy wvz = error []; 26.21/9.48 gcd1 wwu wwv www = gcd0 wwv www; 26.21/9.48 " 26.21/9.48 "gcd2 True wvy wvz = gcd1 (wvz == 0) wvy wvz; 26.21/9.48 gcd2 wwx wwy wwz = gcd0 wwy wwz; 26.21/9.48 " 26.21/9.48 "gcd3 wvy wvz = gcd2 (wvy == 0) wvy wvz; 26.21/9.48 gcd3 wxu wxv = gcd0 wxu wxv; 26.21/9.48 " 26.21/9.48 The following Function with conditions 26.21/9.48 "undefined |Falseundefined; 26.21/9.48 " 26.21/9.48 is transformed to 26.21/9.48 "undefined = undefined1; 26.21/9.48 " 26.21/9.48 "undefined0 True = undefined; 26.21/9.48 " 26.21/9.48 "undefined1 = undefined0 False; 26.21/9.48 " 26.21/9.48 The following Function with conditions 26.21/9.48 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 26.21/9.48 d = gcd x y; 26.21/9.48 } 26.21/9.48 ; 26.21/9.48 " 26.21/9.48 is transformed to 26.21/9.48 "reduce x y = reduce2 x y; 26.21/9.48 " 26.21/9.48 "reduce2 x y = reduce1 x y (y == 0) where { 26.21/9.48 d = gcd x y; 26.21/9.48 ; 26.21/9.48 reduce0 x y True = x `quot` d :% (y `quot` d); 26.21/9.48 ; 26.21/9.48 reduce1 x y True = error []; 26.21/9.48 reduce1 x y False = reduce0 x y otherwise; 26.21/9.48 } 26.21/9.48 ; 26.21/9.48 " 26.21/9.48 The following Function with conditions 26.21/9.48 "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; 26.21/9.48 " 26.21/9.48 is transformed to 26.21/9.48 "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); 26.21/9.48 " 26.21/9.48 "mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 26.21/9.48 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; 26.21/9.48 " 26.21/9.48 "mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 26.21/9.48 " 26.21/9.48 "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); 26.21/9.48 " 26.21/9.48 The following Function with conditions 26.21/9.48 "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; 26.21/9.48 " 26.21/9.48 is transformed to 26.21/9.48 "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); 26.21/9.48 " 26.21/9.48 "mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 26.21/9.48 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; 26.21/9.48 " 26.21/9.48 "mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 26.21/9.48 " 26.21/9.48 "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); 26.21/9.48 " 26.21/9.48 The following Function with conditions 26.21/9.48 "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 { 26.21/9.48 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); 26.21/9.48 ; 26.21/9.48 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); 26.21/9.48 ; 26.21/9.48 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; 26.21/9.48 ; 26.21/9.48 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; 26.21/9.48 ; 26.21/9.48 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; 26.21/9.48 ; 26.21/9.48 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); 26.21/9.48 ; 26.21/9.48 size_l = sizeFM fm_L; 26.21/9.48 ; 26.21/9.48 size_r = sizeFM fm_R; 26.21/9.48 } 26.21/9.48 ; 26.21/9.48 " 26.21/9.48 is transformed to 26.21/9.48 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 26.21/9.48 " 26.21/9.48 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 26.21/9.48 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); 26.21/9.48 ; 26.21/9.48 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); 26.21/9.48 ; 26.21/9.48 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); 26.21/9.48 ; 26.21/9.48 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 26.21/9.48 ; 26.21/9.48 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 26.21/9.48 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; 26.21/9.48 ; 26.21/9.48 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); 26.21/9.48 ; 26.21/9.48 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); 26.21/9.48 ; 26.21/9.48 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 26.21/9.48 ; 26.21/9.48 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 26.21/9.48 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; 26.21/9.48 ; 26.21/9.48 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); 26.21/9.48 ; 26.21/9.48 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 26.21/9.48 ; 26.21/9.48 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 26.21/9.48 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 26.21/9.48 ; 26.21/9.48 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 26.21/9.48 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 26.21/9.48 ; 26.21/9.48 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 26.21/9.48 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 26.21/9.48 ; 26.21/9.48 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; 26.21/9.48 ; 26.21/9.48 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); 26.21/9.48 ; 26.21/9.48 size_l = sizeFM fm_L; 26.21/9.48 ; 26.21/9.48 size_r = sizeFM fm_R; 26.21/9.48 } 26.21/9.48 ; 26.21/9.48 " 26.21/9.48 The following Function with conditions 26.21/9.48 "glueBal EmptyFM fm2 = fm2; 26.21/9.48 glueBal fm1 EmptyFM = fm1; 26.21/9.48 glueBal fm1 fm2|sizeFM fm2 > sizeFM fm1mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2)|otherwisemkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 26.21/9.48 mid_elt1 = mid_elt10 vv2; 26.21/9.48 ; 26.21/9.48 mid_elt10 (vyw,mid_elt1) = mid_elt1; 26.21/9.48 ; 26.21/9.48 mid_elt2 = mid_elt20 vv3; 26.21/9.48 ; 26.21/9.48 mid_elt20 (vyv,mid_elt2) = mid_elt2; 26.21/9.48 ; 26.21/9.48 mid_key1 = mid_key10 vv2; 26.21/9.48 ; 26.21/9.48 mid_key10 (mid_key1,vyx) = mid_key1; 26.21/9.48 ; 26.21/9.48 mid_key2 = mid_key20 vv3; 26.21/9.48 ; 26.21/9.48 mid_key20 (mid_key2,vyy) = mid_key2; 26.21/9.48 ; 26.21/9.48 vv2 = findMax fm1; 26.21/9.48 ; 26.21/9.48 vv3 = findMin fm2; 26.21/9.48 } 26.21/9.48 ; 26.21/9.48 " 26.21/9.48 is transformed to 26.21/9.48 "glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 26.21/9.48 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 26.21/9.48 glueBal fm1 fm2 = glueBal2 fm1 fm2; 26.21/9.48 " 26.21/9.48 "glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 26.21/9.48 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 26.21/9.48 ; 26.21/9.48 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 26.21/9.48 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 26.21/9.48 ; 26.21/9.48 mid_elt1 = mid_elt10 vv2; 26.21/9.48 ; 26.21/9.48 mid_elt10 (vyw,mid_elt1) = mid_elt1; 26.21/9.48 ; 26.21/9.48 mid_elt2 = mid_elt20 vv3; 26.21/9.48 ; 26.21/9.48 mid_elt20 (vyv,mid_elt2) = mid_elt2; 26.21/9.48 ; 26.21/9.48 mid_key1 = mid_key10 vv2; 26.21/9.48 ; 26.21/9.48 mid_key10 (mid_key1,vyx) = mid_key1; 26.21/9.48 ; 26.21/9.48 mid_key2 = mid_key20 vv3; 26.21/9.48 ; 26.21/9.48 mid_key20 (mid_key2,vyy) = mid_key2; 26.21/9.48 ; 26.21/9.48 vv2 = findMax fm1; 26.21/9.48 ; 26.21/9.48 vv3 = findMin fm2; 26.21/9.48 } 26.21/9.48 ; 26.21/9.48 " 26.21/9.48 "glueBal3 fm1 EmptyFM = fm1; 26.21/9.48 glueBal3 wxz wyu = glueBal2 wxz wyu; 26.21/9.48 " 26.21/9.48 "glueBal4 EmptyFM fm2 = fm2; 26.21/9.48 glueBal4 wyw wyx = glueBal3 wyw wyx; 26.21/9.48 " 26.21/9.48 The following Function with conditions 26.21/9.48 "delFromFM EmptyFM del_key = emptyFM; 26.21/9.48 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; 26.21/9.48 " 26.21/9.48 is transformed to 26.21/9.48 "delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 26.21/9.48 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 26.21/9.48 " 26.21/9.48 "delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 26.21/9.48 " 26.21/9.48 "delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 26.21/9.48 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 26.21/9.48 " 26.21/9.48 "delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 26.21/9.48 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 26.21/9.48 " 26.21/9.48 "delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 26.21/9.48 " 26.21/9.48 "delFromFM4 EmptyFM del_key = emptyFM; 26.21/9.48 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 26.21/9.48 " 26.21/9.48 26.21/9.48 ---------------------------------------- 26.21/9.48 26.21/9.48 (10) 26.21/9.48 Obligation: 26.21/9.48 mainModule Main 26.21/9.48 module FiniteMap where { 26.21/9.48 import qualified Main; 26.21/9.48 import qualified Maybe; 26.21/9.48 import qualified Prelude; 26.21/9.48 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.21/9.48 26.21/9.48 instance (Eq a, Eq b) => Eq FiniteMap b a where { 26.21/9.48 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.21/9.48 } 26.21/9.48 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 26.21/9.48 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 26.21/9.48 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 26.21/9.48 26.21/9.48 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 26.21/9.48 26.21/9.48 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 26.21/9.48 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 26.21/9.48 26.21/9.48 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 26.21/9.48 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 26.21/9.48 26.21/9.48 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 26.21/9.48 26.21/9.48 delFromFM4 EmptyFM del_key = emptyFM; 26.21/9.48 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 26.21/9.48 26.21/9.48 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 26.21/9.48 delListFromFM fm keys = foldl delFromFM fm keys; 26.21/9.48 26.21/9.48 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 26.21/9.48 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 26.21/9.48 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 26.21/9.48 26.21/9.48 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 26.21/9.48 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 26.21/9.48 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 26.21/9.48 26.21/9.48 emptyFM :: FiniteMap b a; 26.21/9.48 emptyFM = EmptyFM; 26.21/9.48 26.21/9.48 findMax :: FiniteMap b a -> (b,a); 26.21/9.48 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 26.21/9.48 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 26.21/9.48 26.21/9.48 findMin :: FiniteMap a b -> (a,b); 26.21/9.48 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 26.21/9.48 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 26.21/9.48 26.21/9.48 fmToList :: FiniteMap a b -> [(a,b)]; 26.21/9.48 fmToList fm = foldFM fmToList0 [] fm; 26.21/9.48 26.21/9.48 fmToList0 key elt rest = (key,elt) : rest; 26.21/9.48 26.21/9.48 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 26.21/9.48 foldFM k z EmptyFM = z; 26.21/9.48 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.21/9.48 26.21/9.48 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 26.21/9.52 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 26.21/9.52 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 26.21/9.52 glueBal fm1 fm2 = glueBal2 fm1 fm2; 26.21/9.52 26.21/9.52 glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 26.21/9.52 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 26.21/9.52 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 26.21/9.52 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 26.21/9.52 mid_elt1 = mid_elt10 vv2; 26.21/9.52 mid_elt10 (vyw,mid_elt1) = mid_elt1; 26.21/9.52 mid_elt2 = mid_elt20 vv3; 26.21/9.52 mid_elt20 (vyv,mid_elt2) = mid_elt2; 26.21/9.52 mid_key1 = mid_key10 vv2; 26.21/9.52 mid_key10 (mid_key1,vyx) = mid_key1; 26.21/9.52 mid_key2 = mid_key20 vv3; 26.21/9.52 mid_key20 (mid_key2,vyy) = mid_key2; 26.21/9.52 vv2 = findMax fm1; 26.21/9.52 vv3 = findMin fm2; 26.21/9.52 }; 26.21/9.52 26.21/9.52 glueBal3 fm1 EmptyFM = fm1; 26.21/9.52 glueBal3 wxz wyu = glueBal2 wxz wyu; 26.21/9.52 26.21/9.52 glueBal4 EmptyFM fm2 = fm2; 26.21/9.52 glueBal4 wyw wyx = glueBal3 wyw wyx; 26.21/9.52 26.21/9.52 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 26.21/9.52 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 26.21/9.52 26.21/9.52 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 26.21/9.52 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); 26.21/9.52 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); 26.21/9.52 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); 26.21/9.52 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 26.21/9.52 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 26.21/9.52 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; 26.21/9.52 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); 26.21/9.52 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); 26.21/9.52 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 26.21/9.52 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 26.21/9.52 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; 26.21/9.52 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); 26.21/9.52 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 26.21/9.52 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 26.21/9.52 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 26.21/9.52 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 26.21/9.52 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 26.21/9.52 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 26.21/9.52 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 26.21/9.52 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; 26.21/9.52 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); 26.21/9.52 size_l = sizeFM fm_L; 26.21/9.52 size_r = sizeFM fm_R; 26.21/9.52 }; 26.21/9.52 26.21/9.52 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 26.21/9.52 mkBranch which key elt fm_l fm_r = let { 26.21/9.52 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 26.21/9.52 } in result where { 26.21/9.52 balance_ok = True; 26.21/9.52 left_ok = left_ok0 fm_l key fm_l; 26.21/9.52 left_ok0 fm_l key EmptyFM = True; 26.21/9.52 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 26.21/9.52 biggest_left_key = fst (findMax fm_l); 26.21/9.52 } in biggest_left_key < key; 26.21/9.52 left_size = sizeFM fm_l; 26.21/9.52 right_ok = right_ok0 fm_r key fm_r; 26.21/9.52 right_ok0 fm_r key EmptyFM = True; 26.21/9.52 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 26.21/9.52 smallest_right_key = fst (findMin fm_r); 26.21/9.52 } in key < smallest_right_key; 26.21/9.52 right_size = sizeFM fm_r; 26.21/9.52 unbox :: Int -> Int; 26.21/9.52 unbox x = x; 26.21/9.52 }; 26.21/9.52 26.21/9.52 sIZE_RATIO :: Int; 26.21/9.52 sIZE_RATIO = 5; 26.21/9.52 26.21/9.52 sizeFM :: FiniteMap a b -> Int; 26.21/9.52 sizeFM EmptyFM = 0; 26.21/9.52 sizeFM (Branch vzu vzv size vzw vzx) = size; 26.21/9.52 26.21/9.52 } 26.21/9.52 module Maybe where { 26.21/9.52 import qualified FiniteMap; 26.21/9.52 import qualified Main; 26.21/9.52 import qualified Prelude; 26.21/9.52 } 26.21/9.52 module Main where { 26.21/9.52 import qualified FiniteMap; 26.21/9.52 import qualified Maybe; 26.21/9.52 import qualified Prelude; 26.21/9.52 } 26.21/9.52 26.21/9.52 ---------------------------------------- 26.21/9.52 26.21/9.52 (11) LetRed (EQUIVALENT) 26.21/9.52 Let/Where Reductions: 26.21/9.52 The bindings of the following Let/Where expression 26.21/9.52 "gcd' (abs x) (abs y) where { 26.21/9.52 gcd' x wuy = gcd'2 x wuy; 26.21/9.52 gcd' x y = gcd'0 x y; 26.21/9.52 ; 26.21/9.52 gcd'0 x y = gcd' y (x `rem` y); 26.21/9.52 ; 26.21/9.52 gcd'1 True x wuy = x; 26.21/9.52 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 26.21/9.52 ; 26.21/9.52 gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 26.21/9.52 gcd'2 wvw wvx = gcd'0 wvw wvx; 26.21/9.52 } 26.21/9.52 " 26.21/9.52 are unpacked to the following functions on top level 26.21/9.52 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 26.21/9.52 " 26.21/9.52 "gcd0Gcd' x wuy = gcd0Gcd'2 x wuy; 26.21/9.52 gcd0Gcd' x y = gcd0Gcd'0 x y; 26.21/9.52 " 26.21/9.52 "gcd0Gcd'1 True x wuy = x; 26.21/9.52 gcd0Gcd'1 wuz wvu wvv = gcd0Gcd'0 wvu wvv; 26.21/9.52 " 26.21/9.52 "gcd0Gcd'2 x wuy = gcd0Gcd'1 (wuy == 0) x wuy; 26.21/9.52 gcd0Gcd'2 wvw wvx = gcd0Gcd'0 wvw wvx; 26.21/9.52 " 26.21/9.52 The bindings of the following Let/Where expression 26.21/9.52 "reduce1 x y (y == 0) where { 26.21/9.52 d = gcd x y; 26.21/9.52 ; 26.21/9.52 reduce0 x y True = x `quot` d :% (y `quot` d); 26.21/9.52 ; 26.21/9.52 reduce1 x y True = error []; 26.21/9.52 reduce1 x y False = reduce0 x y otherwise; 26.21/9.52 } 26.21/9.52 " 26.21/9.52 are unpacked to the following functions on top level 26.21/9.52 "reduce2Reduce0 wzw wzx x y True = x `quot` reduce2D wzw wzx :% (y `quot` reduce2D wzw wzx); 26.21/9.52 " 26.21/9.52 "reduce2D wzw wzx = gcd wzw wzx; 26.21/9.52 " 26.21/9.52 "reduce2Reduce1 wzw wzx x y True = error []; 26.21/9.52 reduce2Reduce1 wzw wzx x y False = reduce2Reduce0 wzw wzx x y otherwise; 26.21/9.52 " 26.21/9.52 The bindings of the following Let/Where expression 26.21/9.52 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 26.21/9.52 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); 26.21/9.52 ; 26.21/9.52 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); 26.21/9.52 ; 26.21/9.52 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); 26.21/9.52 ; 26.21/9.52 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 26.21/9.52 ; 26.21/9.52 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 26.21/9.52 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; 26.21/9.52 ; 26.21/9.52 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); 26.21/9.52 ; 26.21/9.52 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); 26.21/9.52 ; 26.21/9.52 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 26.21/9.52 ; 26.21/9.52 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 26.21/9.52 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; 26.21/9.52 ; 26.21/9.52 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); 26.21/9.52 ; 26.21/9.52 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 26.21/9.52 ; 26.21/9.52 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 26.21/9.52 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 26.21/9.52 ; 26.21/9.52 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 26.21/9.52 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 26.21/9.52 ; 26.21/9.52 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 26.21/9.52 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 26.21/9.52 ; 26.21/9.52 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; 26.21/9.52 ; 26.21/9.52 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); 26.21/9.52 ; 26.21/9.52 size_l = sizeFM fm_L; 26.21/9.52 ; 26.21/9.52 size_r = sizeFM fm_R; 26.21/9.52 } 26.21/9.52 " 26.21/9.52 are unpacked to the following functions on top level 26.21/9.52 "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); 26.21/9.52 " 26.21/9.52 "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); 26.21/9.52 " 26.21/9.52 "mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 26.21/9.52 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); 26.21/9.52 " 26.21/9.52 "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; 26.21/9.52 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; 26.21/9.52 " 26.21/9.52 "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); 26.21/9.52 " 26.21/9.52 "mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 26.21/9.52 " 26.21/9.52 "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; 26.21/9.52 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; 26.21/9.52 " 26.21/9.52 "mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 26.21/9.52 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); 26.21/9.52 " 26.21/9.52 "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); 26.21/9.52 " 26.21/9.52 "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); 26.21/9.52 " 26.21/9.52 "mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuu; 26.21/9.52 " 26.21/9.52 "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; 26.21/9.52 " 26.21/9.52 "mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuv; 26.21/9.52 " 26.21/9.52 "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); 26.21/9.52 " 26.21/9.52 "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); 26.21/9.52 " 26.21/9.52 "mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 26.21/9.52 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 26.21/9.52 " 26.21/9.52 "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; 26.21/9.52 " 26.21/9.52 "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; 26.21/9.52 " 26.21/9.52 The bindings of the following Let/Where expression 26.21/9.52 "let { 26.21/9.52 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 26.21/9.52 } in result where { 26.21/9.52 balance_ok = True; 26.21/9.52 ; 26.21/9.52 left_ok = left_ok0 fm_l key fm_l; 26.21/9.52 ; 26.21/9.52 left_ok0 fm_l key EmptyFM = True; 26.21/9.52 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 26.21/9.52 biggest_left_key = fst (findMax fm_l); 26.21/9.52 } in biggest_left_key < key; 26.21/9.52 ; 26.21/9.52 left_size = sizeFM fm_l; 26.21/9.52 ; 26.21/9.52 right_ok = right_ok0 fm_r key fm_r; 26.21/9.52 ; 26.21/9.52 right_ok0 fm_r key EmptyFM = True; 26.21/9.52 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 26.21/9.52 smallest_right_key = fst (findMin fm_r); 26.21/9.52 } in key < smallest_right_key; 26.21/9.52 ; 26.21/9.52 right_size = sizeFM fm_r; 26.21/9.52 ; 26.21/9.52 unbox x = x; 26.21/9.52 } 26.21/9.52 " 26.21/9.52 are unpacked to the following functions on top level 26.21/9.52 "mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 26.21/9.52 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 26.21/9.52 " 26.21/9.52 "mkBranchBalance_ok xuw xux xuy = True; 26.21/9.52 " 26.21/9.52 "mkBranchUnbox xuw xux xuy x = x; 26.21/9.52 " 26.21/9.52 "mkBranchRight_size xuw xux xuy = sizeFM xuw; 26.21/9.52 " 26.21/9.52 "mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuw xux xuw; 26.21/9.52 " 26.21/9.52 "mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuy xux xuy; 26.21/9.52 " 26.21/9.52 "mkBranchLeft_size xuw xux xuy = sizeFM xuy; 26.21/9.52 " 26.21/9.52 "mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 26.21/9.52 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 26.21/9.52 " 26.21/9.52 The bindings of the following Let/Where expression 26.21/9.52 "let { 26.21/9.52 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 26.21/9.52 } in result" 26.21/9.52 are unpacked to the following functions on top level 26.21/9.52 "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; 26.21/9.52 " 26.21/9.52 The bindings of the following Let/Where expression 26.21/9.52 "glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 26.21/9.52 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 26.21/9.52 ; 26.21/9.52 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 26.21/9.52 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 26.21/9.52 ; 26.21/9.52 mid_elt1 = mid_elt10 vv2; 26.21/9.52 ; 26.21/9.52 mid_elt10 (vyw,mid_elt1) = mid_elt1; 26.21/9.52 ; 26.21/9.52 mid_elt2 = mid_elt20 vv3; 26.21/9.52 ; 26.21/9.52 mid_elt20 (vyv,mid_elt2) = mid_elt2; 26.21/9.52 ; 26.21/9.52 mid_key1 = mid_key10 vv2; 26.21/9.52 ; 26.21/9.52 mid_key10 (mid_key1,vyx) = mid_key1; 26.21/9.52 ; 26.21/9.52 mid_key2 = mid_key20 vv3; 26.21/9.52 ; 26.21/9.52 mid_key20 (mid_key2,vyy) = mid_key2; 26.21/9.52 ; 26.21/9.52 vv2 = findMax fm1; 26.21/9.52 ; 26.21/9.52 vv3 = findMin fm2; 26.21/9.52 } 26.21/9.52 " 26.21/9.52 are unpacked to the following functions on top level 26.21/9.52 "glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 26.21/9.52 " 26.21/9.52 "glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 26.21/9.52 " 26.21/9.52 "glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 26.21/9.52 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 26.21/9.52 " 26.21/9.52 "glueBal2Vv2 xvx xvy = findMax xvx; 26.21/9.52 " 26.21/9.52 "glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 26.21/9.52 " 26.21/9.52 "glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 26.21/9.52 " 26.21/9.52 "glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 26.21/9.52 " 26.21/9.52 "glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 26.21/9.52 " 26.21/9.52 "glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 26.21/9.52 " 26.21/9.52 "glueBal2Vv3 xvx xvy = findMin xvy; 26.21/9.52 " 26.21/9.52 "glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 26.21/9.52 " 26.21/9.52 "glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 26.21/9.52 " 26.21/9.52 The bindings of the following Let/Where expression 26.21/9.52 "let { 26.21/9.52 biggest_left_key = fst (findMax fm_l); 26.21/9.52 } in biggest_left_key < key" 26.21/9.52 are unpacked to the following functions on top level 26.21/9.52 "mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 26.21/9.52 " 26.21/9.52 The bindings of the following Let/Where expression 26.21/9.52 "let { 26.21/9.52 smallest_right_key = fst (findMin fm_r); 26.21/9.52 } in key < smallest_right_key" 26.21/9.52 are unpacked to the following functions on top level 26.21/9.52 "mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 26.21/9.52 " 26.21/9.52 26.21/9.52 ---------------------------------------- 26.21/9.52 26.21/9.52 (12) 26.21/9.52 Obligation: 26.21/9.52 mainModule Main 26.21/9.52 module FiniteMap where { 26.21/9.52 import qualified Main; 26.21/9.52 import qualified Maybe; 26.21/9.52 import qualified Prelude; 26.21/9.52 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.21/9.52 26.21/9.52 instance (Eq a, Eq b) => Eq FiniteMap b a where { 26.21/9.52 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.21/9.52 } 26.21/9.52 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 26.21/9.52 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 26.21/9.52 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 26.21/9.52 26.21/9.52 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 26.21/9.52 26.21/9.52 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 26.21/9.52 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 26.21/9.52 26.21/9.52 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 26.21/9.52 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 26.21/9.52 26.21/9.52 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 26.21/9.52 26.21/9.52 delFromFM4 EmptyFM del_key = emptyFM; 26.21/9.52 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 26.21/9.52 26.21/9.52 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 26.21/9.52 delListFromFM fm keys = foldl delFromFM fm keys; 26.21/9.52 26.21/9.52 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 26.21/9.52 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 26.21/9.52 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 26.21/9.52 26.21/9.52 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 26.21/9.52 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 26.21/9.52 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 26.21/9.52 26.21/9.52 emptyFM :: FiniteMap a b; 26.21/9.52 emptyFM = EmptyFM; 26.21/9.52 26.21/9.52 findMax :: FiniteMap a b -> (a,b); 26.21/9.52 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 26.21/9.52 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 26.21/9.52 26.21/9.52 findMin :: FiniteMap b a -> (b,a); 26.21/9.52 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 26.21/9.52 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 26.21/9.52 26.21/9.52 fmToList :: FiniteMap b a -> [(b,a)]; 26.21/9.52 fmToList fm = foldFM fmToList0 [] fm; 26.21/9.52 26.21/9.52 fmToList0 key elt rest = (key,elt) : rest; 26.21/9.52 26.21/9.52 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 26.21/9.52 foldFM k z EmptyFM = z; 26.21/9.52 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.21/9.52 26.21/9.52 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 26.21/9.52 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 26.21/9.52 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 26.21/9.52 glueBal fm1 fm2 = glueBal2 fm1 fm2; 26.21/9.52 26.21/9.52 glueBal2 fm1 fm2 = glueBal2GlueBal1 fm1 fm2 fm1 fm2 (sizeFM fm2 > sizeFM fm1); 26.21/9.52 26.21/9.52 glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 26.21/9.52 26.21/9.52 glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 26.21/9.52 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 26.21/9.52 26.21/9.52 glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 26.21/9.52 26.21/9.52 glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 26.21/9.52 26.21/9.52 glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 26.21/9.52 26.21/9.52 glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 26.21/9.52 26.21/9.52 glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 26.21/9.52 26.21/9.52 glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 26.21/9.52 26.21/9.52 glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 26.21/9.52 26.21/9.52 glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 26.21/9.52 26.21/9.52 glueBal2Vv2 xvx xvy = findMax xvx; 26.21/9.52 26.21/9.52 glueBal2Vv3 xvx xvy = findMin xvy; 26.21/9.52 26.21/9.52 glueBal3 fm1 EmptyFM = fm1; 26.21/9.52 glueBal3 wxz wyu = glueBal2 wxz wyu; 26.21/9.52 26.21/9.52 glueBal4 EmptyFM fm2 = fm2; 26.21/9.52 glueBal4 wyw wyx = glueBal3 wyw wyx; 26.21/9.52 26.21/9.52 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 26.21/9.52 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 26.21/9.52 26.21/9.52 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); 26.21/9.52 26.21/9.52 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); 26.21/9.52 26.21/9.52 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); 26.21/9.52 26.21/9.52 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); 26.21/9.52 26.21/9.52 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; 26.21/9.52 26.21/9.52 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; 26.21/9.52 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; 26.21/9.52 26.21/9.52 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); 26.21/9.52 26.21/9.52 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); 26.21/9.52 26.21/9.52 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; 26.21/9.52 26.21/9.52 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; 26.21/9.52 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; 26.21/9.52 26.21/9.52 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); 26.21/9.52 26.21/9.52 mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 26.21/9.52 26.21/9.52 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 26.21/9.52 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 26.21/9.52 26.21/9.52 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 26.21/9.52 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); 26.21/9.52 26.21/9.52 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 26.21/9.52 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); 26.21/9.52 26.21/9.52 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; 26.21/9.52 26.21/9.52 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); 26.21/9.52 26.21/9.52 mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuv; 26.21/9.52 26.21/9.52 mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuu; 26.21/9.52 26.21/9.52 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 26.21/9.52 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 26.21/9.52 26.21/9.52 mkBranchBalance_ok xuw xux xuy = True; 26.21/9.52 26.21/9.52 mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuy xux xuy; 26.21/9.52 26.21/9.52 mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 26.21/9.52 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 26.21/9.52 26.21/9.52 mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 26.21/9.52 26.21/9.52 mkBranchLeft_size xuw xux xuy = sizeFM xuy; 26.21/9.52 26.21/9.52 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; 26.21/9.52 26.21/9.52 mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuw xux xuw; 26.21/9.52 26.21/9.52 mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 26.21/9.52 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 26.21/9.52 26.21/9.52 mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 26.21/9.52 26.21/9.52 mkBranchRight_size xuw xux xuy = sizeFM xuw; 26.21/9.52 26.21/9.52 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 26.21/9.52 mkBranchUnbox xuw xux xuy x = x; 26.21/9.52 26.21/9.52 sIZE_RATIO :: Int; 26.21/9.52 sIZE_RATIO = 5; 26.21/9.52 26.21/9.52 sizeFM :: FiniteMap b a -> Int; 26.21/9.52 sizeFM EmptyFM = 0; 26.21/9.52 sizeFM (Branch vzu vzv size vzw vzx) = size; 26.21/9.52 26.21/9.52 } 26.21/9.52 module Maybe where { 26.21/9.52 import qualified FiniteMap; 26.21/9.52 import qualified Main; 26.21/9.52 import qualified Prelude; 26.21/9.52 } 26.21/9.52 module Main where { 26.21/9.52 import qualified FiniteMap; 26.21/9.52 import qualified Maybe; 26.21/9.52 import qualified Prelude; 26.21/9.52 } 26.21/9.52 26.21/9.52 ---------------------------------------- 26.21/9.52 26.21/9.52 (13) NumRed (SOUND) 26.21/9.52 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 26.21/9.52 ---------------------------------------- 26.21/9.52 26.21/9.52 (14) 26.21/9.52 Obligation: 26.21/9.52 mainModule Main 26.21/9.52 module FiniteMap where { 26.21/9.52 import qualified Main; 26.21/9.52 import qualified Maybe; 26.21/9.52 import qualified Prelude; 26.21/9.52 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.21/9.52 26.21/9.52 instance (Eq a, Eq b) => Eq FiniteMap b a where { 26.21/9.52 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.21/9.52 } 26.21/9.52 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 26.21/9.52 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 26.21/9.52 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 26.21/9.52 26.21/9.52 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 26.21/9.52 26.21/9.52 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 26.21/9.52 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 26.21/9.52 26.21/9.52 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 26.21/9.52 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 26.21/9.52 26.21/9.52 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 26.21/9.52 26.21/9.52 delFromFM4 EmptyFM del_key = emptyFM; 26.21/9.52 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 26.21/9.52 26.21/9.52 delListFromFM :: Ord b => FiniteMap b a -> [b] -> FiniteMap b a; 26.21/9.52 delListFromFM fm keys = foldl delFromFM fm keys; 26.21/9.52 26.21/9.52 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 26.21/9.52 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 26.21/9.52 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 26.21/9.52 26.21/9.52 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 26.21/9.52 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 26.21/9.52 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 26.21/9.52 26.21/9.52 emptyFM :: FiniteMap b a; 26.21/9.52 emptyFM = EmptyFM; 26.21/9.52 26.21/9.52 findMax :: FiniteMap b a -> (b,a); 26.21/9.52 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 26.21/9.52 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 26.21/9.52 26.21/9.52 findMin :: FiniteMap b a -> (b,a); 26.21/9.52 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 26.21/9.52 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 26.21/9.52 26.21/9.52 fmToList :: FiniteMap b a -> [(b,a)]; 26.21/9.52 fmToList fm = foldFM fmToList0 [] fm; 26.21/9.52 26.21/9.52 fmToList0 key elt rest = (key,elt) : rest; 26.21/9.52 26.21/9.52 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 26.21/9.52 foldFM k z EmptyFM = z; 26.21/9.52 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.21/9.52 26.21/9.52 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 26.21/9.52 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 26.21/9.52 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 26.21/9.52 glueBal fm1 fm2 = glueBal2 fm1 fm2; 26.21/9.52 26.21/9.52 glueBal2 fm1 fm2 = glueBal2GlueBal1 fm1 fm2 fm1 fm2 (sizeFM fm2 > sizeFM fm1); 26.21/9.52 26.21/9.52 glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 26.21/9.52 26.21/9.52 glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 26.21/9.52 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 26.21/9.52 26.21/9.52 glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 26.21/9.52 26.21/9.52 glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 26.21/9.52 26.21/9.52 glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 26.21/9.52 26.21/9.52 glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 26.21/9.52 26.21/9.52 glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 26.21/9.52 26.21/9.52 glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 26.21/9.52 26.21/9.52 glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 26.21/9.52 26.21/9.52 glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 26.21/9.52 26.21/9.52 glueBal2Vv2 xvx xvy = findMax xvx; 26.21/9.52 26.21/9.52 glueBal2Vv3 xvx xvy = findMin xvy; 26.21/9.52 26.21/9.52 glueBal3 fm1 EmptyFM = fm1; 26.21/9.52 glueBal3 wxz wyu = glueBal2 wxz wyu; 26.21/9.52 26.21/9.52 glueBal4 EmptyFM fm2 = fm2; 26.21/9.52 glueBal4 wyw wyx = glueBal3 wyw wyx; 26.21/9.52 26.21/9.52 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 26.21/9.52 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 26.21/9.52 26.21/9.52 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))); 26.21/9.52 26.21/9.52 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); 26.21/9.52 26.21/9.52 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); 26.21/9.52 26.21/9.52 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); 26.21/9.52 26.21/9.52 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; 26.21/9.52 26.21/9.52 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; 26.21/9.52 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; 26.21/9.52 26.21/9.52 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); 26.21/9.52 26.21/9.52 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); 26.21/9.52 26.21/9.52 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; 26.21/9.52 26.21/9.52 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; 26.21/9.52 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; 26.21/9.52 26.21/9.52 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); 26.21/9.52 26.21/9.52 mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 26.21/9.52 26.21/9.52 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 26.21/9.52 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 26.21/9.52 26.21/9.52 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 26.21/9.52 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); 26.21/9.52 26.21/9.52 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 26.21/9.52 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); 26.21/9.52 26.21/9.52 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; 26.21/9.52 26.21/9.52 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); 26.21/9.52 26.21/9.52 mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuv; 26.21/9.52 26.21/9.52 mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuu; 26.21/9.52 26.21/9.52 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 26.21/9.52 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; 26.21/9.52 26.21/9.52 mkBranchBalance_ok xuw xux xuy = True; 26.21/9.52 26.21/9.52 mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuy xux xuy; 26.21/9.52 26.21/9.52 mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 26.21/9.52 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 26.21/9.52 26.21/9.52 mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 26.21/9.52 26.21/9.52 mkBranchLeft_size xuw xux xuy = sizeFM xuy; 26.21/9.52 26.21/9.52 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; 26.21/9.52 26.21/9.52 mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuw xux xuw; 26.21/9.52 26.21/9.52 mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 26.21/9.52 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 26.21/9.52 26.21/9.52 mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 26.21/9.52 26.21/9.52 mkBranchRight_size xuw xux xuy = sizeFM xuw; 26.21/9.52 26.21/9.52 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 26.21/9.52 mkBranchUnbox xuw xux xuy x = x; 26.21/9.52 26.21/9.52 sIZE_RATIO :: Int; 26.21/9.52 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 26.21/9.52 26.21/9.52 sizeFM :: FiniteMap a b -> Int; 26.21/9.52 sizeFM EmptyFM = Pos Zero; 26.21/9.52 sizeFM (Branch vzu vzv size vzw vzx) = size; 26.21/9.52 26.21/9.52 } 26.21/9.52 module Maybe where { 26.21/9.52 import qualified FiniteMap; 26.21/9.52 import qualified Main; 26.21/9.52 import qualified Prelude; 26.21/9.52 } 26.21/9.52 module Main where { 26.21/9.52 import qualified FiniteMap; 26.21/9.52 import qualified Maybe; 26.21/9.52 import qualified Prelude; 26.21/9.52 } 26.21/9.52 26.21/9.52 ---------------------------------------- 26.21/9.52 26.21/9.52 (15) Narrow (SOUND) 26.21/9.52 Haskell To QDPs 26.21/9.52 26.21/9.52 digraph dp_graph { 26.21/9.52 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.delListFromFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 26.21/9.52 3[label="FiniteMap.delListFromFM xwv3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 26.21/9.52 4[label="FiniteMap.delListFromFM xwv3 xwv4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 26.21/9.52 5[label="foldl FiniteMap.delFromFM xwv3 xwv4",fontsize=16,color="burlywood",shape="triangle"];4625[label="xwv4/xwv40 : xwv41",fontsize=10,color="white",style="solid",shape="box"];5 -> 4625[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4625 -> 6[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4626[label="xwv4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 4626[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4626 -> 7[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 6[label="foldl FiniteMap.delFromFM xwv3 (xwv40 : xwv41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 26.21/9.52 7[label="foldl FiniteMap.delFromFM xwv3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 26.21/9.52 8 -> 5[label="",style="dashed", color="red", weight=0]; 26.21/9.52 8[label="foldl FiniteMap.delFromFM (FiniteMap.delFromFM xwv3 xwv40) xwv41",fontsize=16,color="magenta"];8 -> 10[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 8 -> 11[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 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"];4627[label="xwv3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];11 -> 4627[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4627 -> 12[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4628[label="xwv3/FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34",fontsize=10,color="white",style="solid",shape="box"];11 -> 4628[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4628 -> 13[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 12[label="FiniteMap.delFromFM FiniteMap.EmptyFM xwv40",fontsize=16,color="black",shape="box"];12 -> 14[label="",style="solid", color="black", weight=3]; 26.21/9.52 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]; 26.21/9.52 14[label="FiniteMap.delFromFM4 FiniteMap.EmptyFM xwv40",fontsize=16,color="black",shape="box"];14 -> 16[label="",style="solid", color="black", weight=3]; 26.21/9.52 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]; 26.21/9.52 16[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 26.21/9.52 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]; 26.21/9.52 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="burlywood",shape="box"];4629[label="xwv40/xwv400 : xwv401",fontsize=10,color="white",style="solid",shape="box"];19 -> 4629[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4629 -> 20[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4630[label="xwv40/[]",fontsize=10,color="white",style="solid",shape="box"];19 -> 4630[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4630 -> 21[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 20[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 (xwv400 : xwv401) (compare (xwv400 : xwv401) xwv30 == GT)",fontsize=16,color="burlywood",shape="box"];4631[label="xwv30/xwv300 : xwv301",fontsize=10,color="white",style="solid",shape="box"];20 -> 4631[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4631 -> 22[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4632[label="xwv30/[]",fontsize=10,color="white",style="solid",shape="box"];20 -> 4632[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4632 -> 23[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 21[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 [] (compare [] xwv30 == GT)",fontsize=16,color="burlywood",shape="box"];4633[label="xwv30/xwv300 : xwv301",fontsize=10,color="white",style="solid",shape="box"];21 -> 4633[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4633 -> 24[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4634[label="xwv30/[]",fontsize=10,color="white",style="solid",shape="box"];21 -> 4634[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4634 -> 25[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 22[label="FiniteMap.delFromFM2 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 (xwv400 : xwv401) (compare (xwv400 : xwv401) (xwv300 : xwv301) == GT)",fontsize=16,color="black",shape="box"];22 -> 26[label="",style="solid", color="black", weight=3]; 26.21/9.52 23[label="FiniteMap.delFromFM2 [] xwv31 xwv32 xwv33 xwv34 (xwv400 : xwv401) (compare (xwv400 : xwv401) [] == GT)",fontsize=16,color="black",shape="box"];23 -> 27[label="",style="solid", color="black", weight=3]; 26.21/9.52 24[label="FiniteMap.delFromFM2 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] (compare [] (xwv300 : xwv301) == GT)",fontsize=16,color="black",shape="box"];24 -> 28[label="",style="solid", color="black", weight=3]; 26.21/9.52 25[label="FiniteMap.delFromFM2 [] xwv31 xwv32 xwv33 xwv34 [] (compare [] [] == GT)",fontsize=16,color="black",shape="box"];25 -> 29[label="",style="solid", color="black", weight=3]; 26.21/9.52 26 -> 112[label="",style="dashed", color="red", weight=0]; 26.21/9.52 26[label="FiniteMap.delFromFM2 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 (xwv400 : xwv401) (primCompAux xwv400 xwv300 (compare xwv401 xwv301) == GT)",fontsize=16,color="magenta"];26 -> 113[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 26 -> 114[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 26 -> 115[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 26 -> 116[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 26 -> 117[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 26 -> 118[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 26 -> 119[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 26 -> 120[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 26 -> 121[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 27[label="FiniteMap.delFromFM2 [] xwv31 xwv32 xwv33 xwv34 (xwv400 : xwv401) (GT == GT)",fontsize=16,color="black",shape="box"];27 -> 31[label="",style="solid", color="black", weight=3]; 26.21/9.52 28[label="FiniteMap.delFromFM2 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] (LT == GT)",fontsize=16,color="black",shape="box"];28 -> 32[label="",style="solid", color="black", weight=3]; 26.21/9.52 29[label="FiniteMap.delFromFM2 [] xwv31 xwv32 xwv33 xwv34 [] (EQ == GT)",fontsize=16,color="black",shape="box"];29 -> 33[label="",style="solid", color="black", weight=3]; 26.21/9.52 113[label="xwv401",fontsize=16,color="green",shape="box"];114[label="xwv32",fontsize=16,color="green",shape="box"];115[label="xwv33",fontsize=16,color="green",shape="box"];116[label="xwv400",fontsize=16,color="green",shape="box"];117[label="xwv301",fontsize=16,color="green",shape="box"];118[label="xwv31",fontsize=16,color="green",shape="box"];119[label="primCompAux xwv400 xwv300 (compare xwv401 xwv301)",fontsize=16,color="black",shape="triangle"];119 -> 135[label="",style="solid", color="black", weight=3]; 26.21/9.52 120[label="xwv300",fontsize=16,color="green",shape="box"];121[label="xwv34",fontsize=16,color="green",shape="box"];112[label="FiniteMap.delFromFM2 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (xwv27 == GT)",fontsize=16,color="burlywood",shape="triangle"];4635[label="xwv27/LT",fontsize=10,color="white",style="solid",shape="box"];112 -> 4635[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4635 -> 136[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4636[label="xwv27/EQ",fontsize=10,color="white",style="solid",shape="box"];112 -> 4636[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4636 -> 137[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4637[label="xwv27/GT",fontsize=10,color="white",style="solid",shape="box"];112 -> 4637[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4637 -> 138[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 31[label="FiniteMap.delFromFM2 [] xwv31 xwv32 xwv33 xwv34 (xwv400 : xwv401) True",fontsize=16,color="black",shape="box"];31 -> 44[label="",style="solid", color="black", weight=3]; 26.21/9.52 32[label="FiniteMap.delFromFM2 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] False",fontsize=16,color="black",shape="box"];32 -> 45[label="",style="solid", color="black", weight=3]; 26.21/9.52 33[label="FiniteMap.delFromFM2 [] xwv31 xwv32 xwv33 xwv34 [] False",fontsize=16,color="black",shape="box"];33 -> 46[label="",style="solid", color="black", weight=3]; 26.21/9.52 135 -> 148[label="",style="dashed", color="red", weight=0]; 26.21/9.52 135[label="primCompAux0 (compare xwv401 xwv301) (compare xwv400 xwv300)",fontsize=16,color="magenta"];135 -> 149[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 135 -> 150[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 135 -> 151[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 136[label="FiniteMap.delFromFM2 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (LT == GT)",fontsize=16,color="black",shape="box"];136 -> 152[label="",style="solid", color="black", weight=3]; 26.21/9.52 137[label="FiniteMap.delFromFM2 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (EQ == GT)",fontsize=16,color="black",shape="box"];137 -> 153[label="",style="solid", color="black", weight=3]; 26.21/9.52 138[label="FiniteMap.delFromFM2 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (GT == GT)",fontsize=16,color="black",shape="box"];138 -> 154[label="",style="solid", color="black", weight=3]; 26.21/9.52 44 -> 3696[label="",style="dashed", color="red", weight=0]; 26.21/9.52 44[label="FiniteMap.mkBalBranch [] xwv31 xwv33 (FiniteMap.delFromFM xwv34 (xwv400 : xwv401))",fontsize=16,color="magenta"];44 -> 3697[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 44 -> 3698[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 44 -> 3699[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 44 -> 3700[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 45[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] ([] < xwv300 : xwv301)",fontsize=16,color="black",shape="box"];45 -> 66[label="",style="solid", color="black", weight=3]; 26.21/9.52 46[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] ([] < [])",fontsize=16,color="black",shape="box"];46 -> 67[label="",style="solid", color="black", weight=3]; 26.21/9.52 149[label="xwv301",fontsize=16,color="green",shape="box"];150[label="compare xwv400 xwv300",fontsize=16,color="blue",shape="box"];4638[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 4638[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4638 -> 155[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4639[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 4639[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4639 -> 156[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4640[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 4640[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4640 -> 157[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4641[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 4641[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4641 -> 158[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4642[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 4642[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4642 -> 159[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4643[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 4643[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4643 -> 160[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4644[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 4644[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4644 -> 161[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4645[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 4645[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4645 -> 162[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4646[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 4646[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4646 -> 163[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4647[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 4647[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4647 -> 164[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4648[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 4648[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4648 -> 165[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4649[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 4649[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4649 -> 166[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4650[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 4650[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4650 -> 167[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4651[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 4651[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4651 -> 168[label="",style="solid", color="blue", weight=3]; 26.21/9.52 151[label="xwv401",fontsize=16,color="green",shape="box"];148[label="primCompAux0 (compare xwv32 xwv33) xwv34",fontsize=16,color="burlywood",shape="triangle"];4652[label="xwv34/LT",fontsize=10,color="white",style="solid",shape="box"];148 -> 4652[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4652 -> 169[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4653[label="xwv34/EQ",fontsize=10,color="white",style="solid",shape="box"];148 -> 4653[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4653 -> 170[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4654[label="xwv34/GT",fontsize=10,color="white",style="solid",shape="box"];148 -> 4654[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4654 -> 171[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 152[label="FiniteMap.delFromFM2 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) False",fontsize=16,color="black",shape="triangle"];152 -> 179[label="",style="solid", color="black", weight=3]; 26.21/9.52 153 -> 152[label="",style="dashed", color="red", weight=0]; 26.21/9.52 153[label="FiniteMap.delFromFM2 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) False",fontsize=16,color="magenta"];154[label="FiniteMap.delFromFM2 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) True",fontsize=16,color="black",shape="box"];154 -> 180[label="",style="solid", color="black", weight=3]; 26.21/9.52 3697[label="xwv33",fontsize=16,color="green",shape="box"];3698 -> 11[label="",style="dashed", color="red", weight=0]; 26.21/9.52 3698[label="FiniteMap.delFromFM xwv34 (xwv400 : xwv401)",fontsize=16,color="magenta"];3698 -> 3734[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3698 -> 3735[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3699[label="[]",fontsize=16,color="green",shape="box"];3700[label="xwv31",fontsize=16,color="green",shape="box"];3696[label="FiniteMap.mkBalBranch xwv340 xwv341 xwv340 xwv344",fontsize=16,color="black",shape="triangle"];3696 -> 3736[label="",style="solid", color="black", weight=3]; 26.21/9.52 66 -> 89[label="",style="dashed", color="red", weight=0]; 26.21/9.52 66[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] (compare [] (xwv300 : xwv301) == LT)",fontsize=16,color="magenta"];66 -> 90[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 67 -> 91[label="",style="dashed", color="red", weight=0]; 26.21/9.52 67[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] (compare [] [] == LT)",fontsize=16,color="magenta"];67 -> 92[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 155[label="compare xwv400 xwv300",fontsize=16,color="black",shape="triangle"];155 -> 181[label="",style="solid", color="black", weight=3]; 26.21/9.52 156[label="compare xwv400 xwv300",fontsize=16,color="black",shape="triangle"];156 -> 182[label="",style="solid", color="black", weight=3]; 26.21/9.52 157[label="compare xwv400 xwv300",fontsize=16,color="black",shape="triangle"];157 -> 183[label="",style="solid", color="black", weight=3]; 26.21/9.52 158[label="compare xwv400 xwv300",fontsize=16,color="black",shape="triangle"];158 -> 184[label="",style="solid", color="black", weight=3]; 26.21/9.52 159[label="compare xwv400 xwv300",fontsize=16,color="black",shape="triangle"];159 -> 185[label="",style="solid", color="black", weight=3]; 26.21/9.52 160[label="compare xwv400 xwv300",fontsize=16,color="black",shape="triangle"];160 -> 186[label="",style="solid", color="black", weight=3]; 26.21/9.52 161[label="compare xwv400 xwv300",fontsize=16,color="black",shape="triangle"];161 -> 187[label="",style="solid", color="black", weight=3]; 26.21/9.52 162[label="compare xwv400 xwv300",fontsize=16,color="burlywood",shape="triangle"];4655[label="xwv400/()",fontsize=10,color="white",style="solid",shape="box"];162 -> 4655[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4655 -> 188[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 163[label="compare xwv400 xwv300",fontsize=16,color="burlywood",shape="triangle"];4656[label="xwv400/xwv4000 : xwv4001",fontsize=10,color="white",style="solid",shape="box"];163 -> 4656[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4656 -> 189[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4657[label="xwv400/[]",fontsize=10,color="white",style="solid",shape="box"];163 -> 4657[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4657 -> 190[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 164[label="compare xwv400 xwv300",fontsize=16,color="black",shape="triangle"];164 -> 191[label="",style="solid", color="black", weight=3]; 26.21/9.52 165[label="compare xwv400 xwv300",fontsize=16,color="black",shape="triangle"];165 -> 192[label="",style="solid", color="black", weight=3]; 26.21/9.52 166[label="compare xwv400 xwv300",fontsize=16,color="black",shape="triangle"];166 -> 193[label="",style="solid", color="black", weight=3]; 26.21/9.52 167[label="compare xwv400 xwv300",fontsize=16,color="burlywood",shape="triangle"];4658[label="xwv400/Integer xwv4000",fontsize=10,color="white",style="solid",shape="box"];167 -> 4658[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4658 -> 194[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 168[label="compare xwv400 xwv300",fontsize=16,color="burlywood",shape="triangle"];4659[label="xwv400/xwv4000 :% xwv4001",fontsize=10,color="white",style="solid",shape="box"];168 -> 4659[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4659 -> 195[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 169[label="primCompAux0 (compare xwv32 xwv33) LT",fontsize=16,color="black",shape="box"];169 -> 196[label="",style="solid", color="black", weight=3]; 26.21/9.52 170[label="primCompAux0 (compare xwv32 xwv33) EQ",fontsize=16,color="black",shape="box"];170 -> 197[label="",style="solid", color="black", weight=3]; 26.21/9.52 171[label="primCompAux0 (compare xwv32 xwv33) GT",fontsize=16,color="black",shape="box"];171 -> 198[label="",style="solid", color="black", weight=3]; 26.21/9.52 179[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (xwv21 : xwv22 < xwv15 : xwv16)",fontsize=16,color="black",shape="box"];179 -> 201[label="",style="solid", color="black", weight=3]; 26.21/9.52 180 -> 3696[label="",style="dashed", color="red", weight=0]; 26.21/9.52 180[label="FiniteMap.mkBalBranch (xwv15 : xwv16) xwv17 xwv19 (FiniteMap.delFromFM xwv20 (xwv21 : xwv22))",fontsize=16,color="magenta"];180 -> 3705[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 180 -> 3706[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 180 -> 3707[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 180 -> 3708[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3734[label="xwv400 : xwv401",fontsize=16,color="green",shape="box"];3735[label="xwv34",fontsize=16,color="green",shape="box"];3736[label="FiniteMap.mkBalBranch6 xwv340 xwv341 xwv340 xwv344",fontsize=16,color="black",shape="box"];3736 -> 3753[label="",style="solid", color="black", weight=3]; 26.21/9.52 90[label="compare [] (xwv300 : xwv301)",fontsize=16,color="black",shape="box"];90 -> 140[label="",style="solid", color="black", weight=3]; 26.21/9.52 89[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] (xwv25 == LT)",fontsize=16,color="burlywood",shape="triangle"];4660[label="xwv25/LT",fontsize=10,color="white",style="solid",shape="box"];89 -> 4660[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4660 -> 141[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4661[label="xwv25/EQ",fontsize=10,color="white",style="solid",shape="box"];89 -> 4661[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4661 -> 142[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4662[label="xwv25/GT",fontsize=10,color="white",style="solid",shape="box"];89 -> 4662[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4662 -> 143[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 92[label="compare [] []",fontsize=16,color="black",shape="box"];92 -> 144[label="",style="solid", color="black", weight=3]; 26.21/9.52 91[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] (xwv26 == LT)",fontsize=16,color="burlywood",shape="triangle"];4663[label="xwv26/LT",fontsize=10,color="white",style="solid",shape="box"];91 -> 4663[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4663 -> 145[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4664[label="xwv26/EQ",fontsize=10,color="white",style="solid",shape="box"];91 -> 4664[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4664 -> 146[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4665[label="xwv26/GT",fontsize=10,color="white",style="solid",shape="box"];91 -> 4665[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4665 -> 147[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 181[label="primCmpInt xwv400 xwv300",fontsize=16,color="burlywood",shape="triangle"];4666[label="xwv400/Pos xwv4000",fontsize=10,color="white",style="solid",shape="box"];181 -> 4666[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4666 -> 204[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4667[label="xwv400/Neg xwv4000",fontsize=10,color="white",style="solid",shape="box"];181 -> 4667[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4667 -> 205[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 182[label="primCmpChar xwv400 xwv300",fontsize=16,color="burlywood",shape="box"];4668[label="xwv400/Char xwv4000",fontsize=10,color="white",style="solid",shape="box"];182 -> 4668[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4668 -> 206[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 183[label="compare3 xwv400 xwv300",fontsize=16,color="black",shape="box"];183 -> 207[label="",style="solid", color="black", weight=3]; 26.21/9.52 184[label="compare3 xwv400 xwv300",fontsize=16,color="black",shape="box"];184 -> 208[label="",style="solid", color="black", weight=3]; 26.21/9.52 185[label="compare3 xwv400 xwv300",fontsize=16,color="black",shape="box"];185 -> 209[label="",style="solid", color="black", weight=3]; 26.21/9.52 186[label="primCmpDouble xwv400 xwv300",fontsize=16,color="burlywood",shape="box"];4669[label="xwv400/Double xwv4000 xwv4001",fontsize=10,color="white",style="solid",shape="box"];186 -> 4669[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4669 -> 210[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 187[label="primCmpFloat xwv400 xwv300",fontsize=16,color="burlywood",shape="box"];4670[label="xwv400/Float xwv4000 xwv4001",fontsize=10,color="white",style="solid",shape="box"];187 -> 4670[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4670 -> 211[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 188[label="compare () xwv300",fontsize=16,color="burlywood",shape="box"];4671[label="xwv300/()",fontsize=10,color="white",style="solid",shape="box"];188 -> 4671[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4671 -> 212[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 189[label="compare (xwv4000 : xwv4001) xwv300",fontsize=16,color="burlywood",shape="box"];4672[label="xwv300/xwv3000 : xwv3001",fontsize=10,color="white",style="solid",shape="box"];189 -> 4672[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4672 -> 213[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4673[label="xwv300/[]",fontsize=10,color="white",style="solid",shape="box"];189 -> 4673[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4673 -> 214[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 190[label="compare [] xwv300",fontsize=16,color="burlywood",shape="box"];4674[label="xwv300/xwv3000 : xwv3001",fontsize=10,color="white",style="solid",shape="box"];190 -> 4674[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4674 -> 215[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4675[label="xwv300/[]",fontsize=10,color="white",style="solid",shape="box"];190 -> 4675[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4675 -> 216[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 191[label="compare3 xwv400 xwv300",fontsize=16,color="black",shape="box"];191 -> 217[label="",style="solid", color="black", weight=3]; 26.21/9.52 192[label="compare3 xwv400 xwv300",fontsize=16,color="black",shape="box"];192 -> 218[label="",style="solid", color="black", weight=3]; 26.21/9.52 193[label="compare3 xwv400 xwv300",fontsize=16,color="black",shape="box"];193 -> 219[label="",style="solid", color="black", weight=3]; 26.21/9.52 194[label="compare (Integer xwv4000) xwv300",fontsize=16,color="burlywood",shape="box"];4676[label="xwv300/Integer xwv3000",fontsize=10,color="white",style="solid",shape="box"];194 -> 4676[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4676 -> 220[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 195[label="compare (xwv4000 :% xwv4001) xwv300",fontsize=16,color="burlywood",shape="box"];4677[label="xwv300/xwv3000 :% xwv3001",fontsize=10,color="white",style="solid",shape="box"];195 -> 4677[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4677 -> 221[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 196[label="LT",fontsize=16,color="green",shape="box"];197[label="compare xwv32 xwv33",fontsize=16,color="blue",shape="box"];4678[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];197 -> 4678[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4678 -> 222[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4679[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];197 -> 4679[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4679 -> 223[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4680[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];197 -> 4680[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4680 -> 224[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4681[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];197 -> 4681[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4681 -> 225[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4682[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];197 -> 4682[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4682 -> 226[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4683[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];197 -> 4683[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4683 -> 227[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4684[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];197 -> 4684[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4684 -> 228[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4685[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];197 -> 4685[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4685 -> 229[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4686[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];197 -> 4686[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4686 -> 230[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4687[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];197 -> 4687[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4687 -> 231[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4688[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];197 -> 4688[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4688 -> 232[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4689[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];197 -> 4689[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4689 -> 233[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4690[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];197 -> 4690[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4690 -> 234[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4691[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];197 -> 4691[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4691 -> 235[label="",style="solid", color="blue", weight=3]; 26.21/9.52 198[label="GT",fontsize=16,color="green",shape="box"];201 -> 236[label="",style="dashed", color="red", weight=0]; 26.21/9.52 201[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (compare (xwv21 : xwv22) (xwv15 : xwv16) == LT)",fontsize=16,color="magenta"];201 -> 237[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3705[label="xwv19",fontsize=16,color="green",shape="box"];3706 -> 11[label="",style="dashed", color="red", weight=0]; 26.21/9.52 3706[label="FiniteMap.delFromFM xwv20 (xwv21 : xwv22)",fontsize=16,color="magenta"];3706 -> 3737[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3706 -> 3738[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3707[label="xwv15 : xwv16",fontsize=16,color="green",shape="box"];3708[label="xwv17",fontsize=16,color="green",shape="box"];3753 -> 3762[label="",style="dashed", color="red", weight=0]; 26.21/9.52 3753[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv340 xwv341 xwv344 xwv340 xwv340 xwv341 xwv340 xwv344 (FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv340 + FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv340 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];3753 -> 3763[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 140[label="LT",fontsize=16,color="green",shape="box"];141[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] (LT == LT)",fontsize=16,color="black",shape="box"];141 -> 173[label="",style="solid", color="black", weight=3]; 26.21/9.52 142[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] (EQ == LT)",fontsize=16,color="black",shape="box"];142 -> 174[label="",style="solid", color="black", weight=3]; 26.21/9.52 143[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] (GT == LT)",fontsize=16,color="black",shape="box"];143 -> 175[label="",style="solid", color="black", weight=3]; 26.21/9.52 144[label="EQ",fontsize=16,color="green",shape="box"];145[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] (LT == LT)",fontsize=16,color="black",shape="box"];145 -> 176[label="",style="solid", color="black", weight=3]; 26.21/9.52 146[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] (EQ == LT)",fontsize=16,color="black",shape="box"];146 -> 177[label="",style="solid", color="black", weight=3]; 26.21/9.52 147[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] (GT == LT)",fontsize=16,color="black",shape="box"];147 -> 178[label="",style="solid", color="black", weight=3]; 26.21/9.52 204[label="primCmpInt (Pos xwv4000) xwv300",fontsize=16,color="burlywood",shape="box"];4692[label="xwv4000/Succ xwv40000",fontsize=10,color="white",style="solid",shape="box"];204 -> 4692[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4692 -> 241[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4693[label="xwv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];204 -> 4693[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4693 -> 242[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 205[label="primCmpInt (Neg xwv4000) xwv300",fontsize=16,color="burlywood",shape="box"];4694[label="xwv4000/Succ xwv40000",fontsize=10,color="white",style="solid",shape="box"];205 -> 4694[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4694 -> 243[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4695[label="xwv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];205 -> 4695[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4695 -> 244[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 206[label="primCmpChar (Char xwv4000) xwv300",fontsize=16,color="burlywood",shape="box"];4696[label="xwv300/Char xwv3000",fontsize=10,color="white",style="solid",shape="box"];206 -> 4696[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4696 -> 245[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 207[label="compare2 xwv400 xwv300 (xwv400 == xwv300)",fontsize=16,color="burlywood",shape="box"];4697[label="xwv400/False",fontsize=10,color="white",style="solid",shape="box"];207 -> 4697[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4697 -> 246[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4698[label="xwv400/True",fontsize=10,color="white",style="solid",shape="box"];207 -> 4698[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4698 -> 247[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 208[label="compare2 xwv400 xwv300 (xwv400 == xwv300)",fontsize=16,color="burlywood",shape="box"];4699[label="xwv400/(xwv4000,xwv4001)",fontsize=10,color="white",style="solid",shape="box"];208 -> 4699[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4699 -> 248[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 209[label="compare2 xwv400 xwv300 (xwv400 == xwv300)",fontsize=16,color="burlywood",shape="box"];4700[label="xwv400/Nothing",fontsize=10,color="white",style="solid",shape="box"];209 -> 4700[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4700 -> 249[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4701[label="xwv400/Just xwv4000",fontsize=10,color="white",style="solid",shape="box"];209 -> 4701[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4701 -> 250[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 210[label="primCmpDouble (Double xwv4000 xwv4001) xwv300",fontsize=16,color="burlywood",shape="box"];4702[label="xwv4001/Pos xwv40010",fontsize=10,color="white",style="solid",shape="box"];210 -> 4702[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4702 -> 251[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4703[label="xwv4001/Neg xwv40010",fontsize=10,color="white",style="solid",shape="box"];210 -> 4703[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4703 -> 252[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 211[label="primCmpFloat (Float xwv4000 xwv4001) xwv300",fontsize=16,color="burlywood",shape="box"];4704[label="xwv4001/Pos xwv40010",fontsize=10,color="white",style="solid",shape="box"];211 -> 4704[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4704 -> 253[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4705[label="xwv4001/Neg xwv40010",fontsize=10,color="white",style="solid",shape="box"];211 -> 4705[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4705 -> 254[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 212[label="compare () ()",fontsize=16,color="black",shape="box"];212 -> 255[label="",style="solid", color="black", weight=3]; 26.21/9.52 213[label="compare (xwv4000 : xwv4001) (xwv3000 : xwv3001)",fontsize=16,color="black",shape="box"];213 -> 256[label="",style="solid", color="black", weight=3]; 26.21/9.52 214[label="compare (xwv4000 : xwv4001) []",fontsize=16,color="black",shape="box"];214 -> 257[label="",style="solid", color="black", weight=3]; 26.21/9.52 215[label="compare [] (xwv3000 : xwv3001)",fontsize=16,color="black",shape="box"];215 -> 258[label="",style="solid", color="black", weight=3]; 26.21/9.52 216[label="compare [] []",fontsize=16,color="black",shape="box"];216 -> 259[label="",style="solid", color="black", weight=3]; 26.21/9.52 217[label="compare2 xwv400 xwv300 (xwv400 == xwv300)",fontsize=16,color="burlywood",shape="box"];4706[label="xwv400/LT",fontsize=10,color="white",style="solid",shape="box"];217 -> 4706[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4706 -> 260[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4707[label="xwv400/EQ",fontsize=10,color="white",style="solid",shape="box"];217 -> 4707[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4707 -> 261[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4708[label="xwv400/GT",fontsize=10,color="white",style="solid",shape="box"];217 -> 4708[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4708 -> 262[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 218[label="compare2 xwv400 xwv300 (xwv400 == xwv300)",fontsize=16,color="burlywood",shape="box"];4709[label="xwv400/(xwv4000,xwv4001,xwv4002)",fontsize=10,color="white",style="solid",shape="box"];218 -> 4709[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4709 -> 263[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 219[label="compare2 xwv400 xwv300 (xwv400 == xwv300)",fontsize=16,color="burlywood",shape="box"];4710[label="xwv400/Left xwv4000",fontsize=10,color="white",style="solid",shape="box"];219 -> 4710[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4710 -> 264[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4711[label="xwv400/Right xwv4000",fontsize=10,color="white",style="solid",shape="box"];219 -> 4711[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4711 -> 265[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 220[label="compare (Integer xwv4000) (Integer xwv3000)",fontsize=16,color="black",shape="box"];220 -> 266[label="",style="solid", color="black", weight=3]; 26.21/9.52 221[label="compare (xwv4000 :% xwv4001) (xwv3000 :% xwv3001)",fontsize=16,color="black",shape="box"];221 -> 267[label="",style="solid", color="black", weight=3]; 26.21/9.52 222 -> 155[label="",style="dashed", color="red", weight=0]; 26.21/9.52 222[label="compare xwv32 xwv33",fontsize=16,color="magenta"];222 -> 268[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 222 -> 269[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 223 -> 156[label="",style="dashed", color="red", weight=0]; 26.21/9.52 223[label="compare xwv32 xwv33",fontsize=16,color="magenta"];223 -> 270[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 223 -> 271[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 224 -> 157[label="",style="dashed", color="red", weight=0]; 26.21/9.52 224[label="compare xwv32 xwv33",fontsize=16,color="magenta"];224 -> 272[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 224 -> 273[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 225 -> 158[label="",style="dashed", color="red", weight=0]; 26.21/9.52 225[label="compare xwv32 xwv33",fontsize=16,color="magenta"];225 -> 274[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 225 -> 275[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 226 -> 159[label="",style="dashed", color="red", weight=0]; 26.21/9.52 226[label="compare xwv32 xwv33",fontsize=16,color="magenta"];226 -> 276[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 226 -> 277[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 227 -> 160[label="",style="dashed", color="red", weight=0]; 26.21/9.52 227[label="compare xwv32 xwv33",fontsize=16,color="magenta"];227 -> 278[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 227 -> 279[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 228 -> 161[label="",style="dashed", color="red", weight=0]; 26.21/9.52 228[label="compare xwv32 xwv33",fontsize=16,color="magenta"];228 -> 280[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 228 -> 281[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 229 -> 162[label="",style="dashed", color="red", weight=0]; 26.21/9.52 229[label="compare xwv32 xwv33",fontsize=16,color="magenta"];229 -> 282[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 229 -> 283[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 230 -> 163[label="",style="dashed", color="red", weight=0]; 26.21/9.52 230[label="compare xwv32 xwv33",fontsize=16,color="magenta"];230 -> 284[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 230 -> 285[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 231 -> 164[label="",style="dashed", color="red", weight=0]; 26.21/9.52 231[label="compare xwv32 xwv33",fontsize=16,color="magenta"];231 -> 286[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 231 -> 287[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 232 -> 165[label="",style="dashed", color="red", weight=0]; 26.21/9.52 232[label="compare xwv32 xwv33",fontsize=16,color="magenta"];232 -> 288[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 232 -> 289[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 233 -> 166[label="",style="dashed", color="red", weight=0]; 26.21/9.52 233[label="compare xwv32 xwv33",fontsize=16,color="magenta"];233 -> 290[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 233 -> 291[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 234 -> 167[label="",style="dashed", color="red", weight=0]; 26.21/9.52 234[label="compare xwv32 xwv33",fontsize=16,color="magenta"];234 -> 292[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 234 -> 293[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 235 -> 168[label="",style="dashed", color="red", weight=0]; 26.21/9.52 235[label="compare xwv32 xwv33",fontsize=16,color="magenta"];235 -> 294[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 235 -> 295[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 237 -> 163[label="",style="dashed", color="red", weight=0]; 26.21/9.52 237[label="compare (xwv21 : xwv22) (xwv15 : xwv16)",fontsize=16,color="magenta"];237 -> 296[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 237 -> 297[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 236[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (xwv37 == LT)",fontsize=16,color="burlywood",shape="triangle"];4712[label="xwv37/LT",fontsize=10,color="white",style="solid",shape="box"];236 -> 4712[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4712 -> 298[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4713[label="xwv37/EQ",fontsize=10,color="white",style="solid",shape="box"];236 -> 4713[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4713 -> 299[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4714[label="xwv37/GT",fontsize=10,color="white",style="solid",shape="box"];236 -> 4714[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4714 -> 300[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 3737[label="xwv21 : xwv22",fontsize=16,color="green",shape="box"];3738[label="xwv20",fontsize=16,color="green",shape="box"];3763 -> 1380[label="",style="dashed", color="red", weight=0]; 26.21/9.52 3763[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv340 + FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv340 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];3763 -> 3764[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3763 -> 3765[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3762[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv340 xwv341 xwv344 xwv340 xwv340 xwv341 xwv340 xwv344 xwv341",fontsize=16,color="burlywood",shape="triangle"];4715[label="xwv341/False",fontsize=10,color="white",style="solid",shape="box"];3762 -> 4715[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4715 -> 3766[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4716[label="xwv341/True",fontsize=10,color="white",style="solid",shape="box"];3762 -> 4716[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4716 -> 3767[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 173[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] True",fontsize=16,color="black",shape="box"];173 -> 301[label="",style="solid", color="black", weight=3]; 26.21/9.52 174[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] False",fontsize=16,color="black",shape="triangle"];174 -> 302[label="",style="solid", color="black", weight=3]; 26.21/9.52 175 -> 174[label="",style="dashed", color="red", weight=0]; 26.21/9.52 175[label="FiniteMap.delFromFM1 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] False",fontsize=16,color="magenta"];176[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] True",fontsize=16,color="black",shape="box"];176 -> 303[label="",style="solid", color="black", weight=3]; 26.21/9.52 177[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] False",fontsize=16,color="black",shape="triangle"];177 -> 304[label="",style="solid", color="black", weight=3]; 26.21/9.52 178 -> 177[label="",style="dashed", color="red", weight=0]; 26.21/9.52 178[label="FiniteMap.delFromFM1 [] xwv31 xwv32 xwv33 xwv34 [] False",fontsize=16,color="magenta"];241[label="primCmpInt (Pos (Succ xwv40000)) xwv300",fontsize=16,color="burlywood",shape="box"];4717[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];241 -> 4717[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4717 -> 311[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4718[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];241 -> 4718[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4718 -> 312[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 242[label="primCmpInt (Pos Zero) xwv300",fontsize=16,color="burlywood",shape="box"];4719[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];242 -> 4719[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4719 -> 313[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4720[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];242 -> 4720[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4720 -> 314[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 243[label="primCmpInt (Neg (Succ xwv40000)) xwv300",fontsize=16,color="burlywood",shape="box"];4721[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];243 -> 4721[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4721 -> 315[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4722[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];243 -> 4722[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4722 -> 316[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 244[label="primCmpInt (Neg Zero) xwv300",fontsize=16,color="burlywood",shape="box"];4723[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];244 -> 4723[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4723 -> 317[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4724[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];244 -> 4724[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4724 -> 318[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 245[label="primCmpChar (Char xwv4000) (Char xwv3000)",fontsize=16,color="black",shape="box"];245 -> 319[label="",style="solid", color="black", weight=3]; 26.21/9.52 246[label="compare2 False xwv300 (False == xwv300)",fontsize=16,color="burlywood",shape="box"];4725[label="xwv300/False",fontsize=10,color="white",style="solid",shape="box"];246 -> 4725[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4725 -> 320[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4726[label="xwv300/True",fontsize=10,color="white",style="solid",shape="box"];246 -> 4726[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4726 -> 321[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 247[label="compare2 True xwv300 (True == xwv300)",fontsize=16,color="burlywood",shape="box"];4727[label="xwv300/False",fontsize=10,color="white",style="solid",shape="box"];247 -> 4727[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4727 -> 322[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4728[label="xwv300/True",fontsize=10,color="white",style="solid",shape="box"];247 -> 4728[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4728 -> 323[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 248[label="compare2 (xwv4000,xwv4001) xwv300 ((xwv4000,xwv4001) == xwv300)",fontsize=16,color="burlywood",shape="box"];4729[label="xwv300/(xwv3000,xwv3001)",fontsize=10,color="white",style="solid",shape="box"];248 -> 4729[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4729 -> 324[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 249[label="compare2 Nothing xwv300 (Nothing == xwv300)",fontsize=16,color="burlywood",shape="box"];4730[label="xwv300/Nothing",fontsize=10,color="white",style="solid",shape="box"];249 -> 4730[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4730 -> 325[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4731[label="xwv300/Just xwv3000",fontsize=10,color="white",style="solid",shape="box"];249 -> 4731[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4731 -> 326[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 250[label="compare2 (Just xwv4000) xwv300 (Just xwv4000 == xwv300)",fontsize=16,color="burlywood",shape="box"];4732[label="xwv300/Nothing",fontsize=10,color="white",style="solid",shape="box"];250 -> 4732[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4732 -> 327[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4733[label="xwv300/Just xwv3000",fontsize=10,color="white",style="solid",shape="box"];250 -> 4733[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4733 -> 328[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 251[label="primCmpDouble (Double xwv4000 (Pos xwv40010)) xwv300",fontsize=16,color="burlywood",shape="box"];4734[label="xwv300/Double xwv3000 xwv3001",fontsize=10,color="white",style="solid",shape="box"];251 -> 4734[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4734 -> 329[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 252[label="primCmpDouble (Double xwv4000 (Neg xwv40010)) xwv300",fontsize=16,color="burlywood",shape="box"];4735[label="xwv300/Double xwv3000 xwv3001",fontsize=10,color="white",style="solid",shape="box"];252 -> 4735[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4735 -> 330[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 253[label="primCmpFloat (Float xwv4000 (Pos xwv40010)) xwv300",fontsize=16,color="burlywood",shape="box"];4736[label="xwv300/Float xwv3000 xwv3001",fontsize=10,color="white",style="solid",shape="box"];253 -> 4736[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4736 -> 331[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 254[label="primCmpFloat (Float xwv4000 (Neg xwv40010)) xwv300",fontsize=16,color="burlywood",shape="box"];4737[label="xwv300/Float xwv3000 xwv3001",fontsize=10,color="white",style="solid",shape="box"];254 -> 4737[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4737 -> 332[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 255[label="EQ",fontsize=16,color="green",shape="box"];256 -> 119[label="",style="dashed", color="red", weight=0]; 26.21/9.52 256[label="primCompAux xwv4000 xwv3000 (compare xwv4001 xwv3001)",fontsize=16,color="magenta"];256 -> 333[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 256 -> 334[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 256 -> 335[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 256 -> 336[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 257[label="GT",fontsize=16,color="green",shape="box"];258[label="LT",fontsize=16,color="green",shape="box"];259[label="EQ",fontsize=16,color="green",shape="box"];260[label="compare2 LT xwv300 (LT == xwv300)",fontsize=16,color="burlywood",shape="box"];4738[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];260 -> 4738[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4738 -> 337[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4739[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];260 -> 4739[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4739 -> 338[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4740[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];260 -> 4740[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4740 -> 339[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 261[label="compare2 EQ xwv300 (EQ == xwv300)",fontsize=16,color="burlywood",shape="box"];4741[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];261 -> 4741[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4741 -> 340[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4742[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];261 -> 4742[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4742 -> 341[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4743[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];261 -> 4743[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4743 -> 342[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 262[label="compare2 GT xwv300 (GT == xwv300)",fontsize=16,color="burlywood",shape="box"];4744[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];262 -> 4744[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4744 -> 343[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4745[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];262 -> 4745[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4745 -> 344[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4746[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];262 -> 4746[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4746 -> 345[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 263[label="compare2 (xwv4000,xwv4001,xwv4002) xwv300 ((xwv4000,xwv4001,xwv4002) == xwv300)",fontsize=16,color="burlywood",shape="box"];4747[label="xwv300/(xwv3000,xwv3001,xwv3002)",fontsize=10,color="white",style="solid",shape="box"];263 -> 4747[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4747 -> 346[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 264[label="compare2 (Left xwv4000) xwv300 (Left xwv4000 == xwv300)",fontsize=16,color="burlywood",shape="box"];4748[label="xwv300/Left xwv3000",fontsize=10,color="white",style="solid",shape="box"];264 -> 4748[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4748 -> 347[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4749[label="xwv300/Right xwv3000",fontsize=10,color="white",style="solid",shape="box"];264 -> 4749[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4749 -> 348[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 265[label="compare2 (Right xwv4000) xwv300 (Right xwv4000 == xwv300)",fontsize=16,color="burlywood",shape="box"];4750[label="xwv300/Left xwv3000",fontsize=10,color="white",style="solid",shape="box"];265 -> 4750[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4750 -> 349[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4751[label="xwv300/Right xwv3000",fontsize=10,color="white",style="solid",shape="box"];265 -> 4751[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4751 -> 350[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 266 -> 181[label="",style="dashed", color="red", weight=0]; 26.21/9.52 266[label="primCmpInt xwv4000 xwv3000",fontsize=16,color="magenta"];266 -> 351[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 266 -> 352[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 267[label="compare (xwv4000 * xwv3001) (xwv3000 * xwv4001)",fontsize=16,color="blue",shape="box"];4752[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];267 -> 4752[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4752 -> 353[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4753[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];267 -> 4753[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4753 -> 354[label="",style="solid", color="blue", weight=3]; 26.21/9.52 268[label="xwv32",fontsize=16,color="green",shape="box"];269[label="xwv33",fontsize=16,color="green",shape="box"];270[label="xwv32",fontsize=16,color="green",shape="box"];271[label="xwv33",fontsize=16,color="green",shape="box"];272[label="xwv32",fontsize=16,color="green",shape="box"];273[label="xwv33",fontsize=16,color="green",shape="box"];274[label="xwv32",fontsize=16,color="green",shape="box"];275[label="xwv33",fontsize=16,color="green",shape="box"];276[label="xwv32",fontsize=16,color="green",shape="box"];277[label="xwv33",fontsize=16,color="green",shape="box"];278[label="xwv32",fontsize=16,color="green",shape="box"];279[label="xwv33",fontsize=16,color="green",shape="box"];280[label="xwv32",fontsize=16,color="green",shape="box"];281[label="xwv33",fontsize=16,color="green",shape="box"];282[label="xwv32",fontsize=16,color="green",shape="box"];283[label="xwv33",fontsize=16,color="green",shape="box"];284[label="xwv32",fontsize=16,color="green",shape="box"];285[label="xwv33",fontsize=16,color="green",shape="box"];286[label="xwv32",fontsize=16,color="green",shape="box"];287[label="xwv33",fontsize=16,color="green",shape="box"];288[label="xwv32",fontsize=16,color="green",shape="box"];289[label="xwv33",fontsize=16,color="green",shape="box"];290[label="xwv32",fontsize=16,color="green",shape="box"];291[label="xwv33",fontsize=16,color="green",shape="box"];292[label="xwv32",fontsize=16,color="green",shape="box"];293[label="xwv33",fontsize=16,color="green",shape="box"];294[label="xwv32",fontsize=16,color="green",shape="box"];295[label="xwv33",fontsize=16,color="green",shape="box"];296[label="xwv21 : xwv22",fontsize=16,color="green",shape="box"];297[label="xwv15 : xwv16",fontsize=16,color="green",shape="box"];298[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (LT == LT)",fontsize=16,color="black",shape="box"];298 -> 355[label="",style="solid", color="black", weight=3]; 26.21/9.52 299[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (EQ == LT)",fontsize=16,color="black",shape="box"];299 -> 356[label="",style="solid", color="black", weight=3]; 26.21/9.52 300[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (GT == LT)",fontsize=16,color="black",shape="box"];300 -> 357[label="",style="solid", color="black", weight=3]; 26.21/9.52 3764[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3765[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv340 + FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv340",fontsize=16,color="black",shape="box"];3765 -> 3781[label="",style="solid", color="black", weight=3]; 26.21/9.52 1380[label="xwv113 < xwv115",fontsize=16,color="black",shape="triangle"];1380 -> 1585[label="",style="solid", color="black", weight=3]; 26.21/9.52 3766[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv340 xwv341 xwv344 xwv340 xwv340 xwv341 xwv340 xwv344 False",fontsize=16,color="black",shape="box"];3766 -> 3782[label="",style="solid", color="black", weight=3]; 26.21/9.52 3767[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv340 xwv341 xwv344 xwv340 xwv340 xwv341 xwv340 xwv344 True",fontsize=16,color="black",shape="box"];3767 -> 3783[label="",style="solid", color="black", weight=3]; 26.21/9.52 301 -> 3696[label="",style="dashed", color="red", weight=0]; 26.21/9.52 301[label="FiniteMap.mkBalBranch (xwv300 : xwv301) xwv31 (FiniteMap.delFromFM xwv33 []) xwv34",fontsize=16,color="magenta"];301 -> 3713[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 301 -> 3714[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 301 -> 3715[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 301 -> 3716[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 302[label="FiniteMap.delFromFM0 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] (xwv300 : xwv301 == [])",fontsize=16,color="black",shape="box"];302 -> 363[label="",style="solid", color="black", weight=3]; 26.21/9.52 303 -> 3696[label="",style="dashed", color="red", weight=0]; 26.21/9.52 303[label="FiniteMap.mkBalBranch [] xwv31 (FiniteMap.delFromFM xwv33 []) xwv34",fontsize=16,color="magenta"];303 -> 3717[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 303 -> 3718[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 303 -> 3719[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 303 -> 3720[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 304[label="FiniteMap.delFromFM0 [] xwv31 xwv32 xwv33 xwv34 [] ([] == [])",fontsize=16,color="black",shape="box"];304 -> 366[label="",style="solid", color="black", weight=3]; 26.21/9.52 311[label="primCmpInt (Pos (Succ xwv40000)) (Pos xwv3000)",fontsize=16,color="black",shape="box"];311 -> 372[label="",style="solid", color="black", weight=3]; 26.21/9.52 312[label="primCmpInt (Pos (Succ xwv40000)) (Neg xwv3000)",fontsize=16,color="black",shape="box"];312 -> 373[label="",style="solid", color="black", weight=3]; 26.21/9.52 313[label="primCmpInt (Pos Zero) (Pos xwv3000)",fontsize=16,color="burlywood",shape="box"];4754[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];313 -> 4754[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4754 -> 374[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4755[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];313 -> 4755[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4755 -> 375[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 314[label="primCmpInt (Pos Zero) (Neg xwv3000)",fontsize=16,color="burlywood",shape="box"];4756[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];314 -> 4756[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4756 -> 376[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4757[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];314 -> 4757[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4757 -> 377[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 315[label="primCmpInt (Neg (Succ xwv40000)) (Pos xwv3000)",fontsize=16,color="black",shape="box"];315 -> 378[label="",style="solid", color="black", weight=3]; 26.21/9.52 316[label="primCmpInt (Neg (Succ xwv40000)) (Neg xwv3000)",fontsize=16,color="black",shape="box"];316 -> 379[label="",style="solid", color="black", weight=3]; 26.21/9.52 317[label="primCmpInt (Neg Zero) (Pos xwv3000)",fontsize=16,color="burlywood",shape="box"];4758[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];317 -> 4758[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4758 -> 380[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4759[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];317 -> 4759[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4759 -> 381[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 318[label="primCmpInt (Neg Zero) (Neg xwv3000)",fontsize=16,color="burlywood",shape="box"];4760[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];318 -> 4760[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4760 -> 382[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4761[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];318 -> 4761[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4761 -> 383[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 319[label="primCmpNat xwv4000 xwv3000",fontsize=16,color="burlywood",shape="triangle"];4762[label="xwv4000/Succ xwv40000",fontsize=10,color="white",style="solid",shape="box"];319 -> 4762[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4762 -> 384[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4763[label="xwv4000/Zero",fontsize=10,color="white",style="solid",shape="box"];319 -> 4763[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4763 -> 385[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 320[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];320 -> 386[label="",style="solid", color="black", weight=3]; 26.21/9.52 321[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];321 -> 387[label="",style="solid", color="black", weight=3]; 26.21/9.52 322[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];322 -> 388[label="",style="solid", color="black", weight=3]; 26.21/9.52 323[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];323 -> 389[label="",style="solid", color="black", weight=3]; 26.21/9.52 324[label="compare2 (xwv4000,xwv4001) (xwv3000,xwv3001) ((xwv4000,xwv4001) == (xwv3000,xwv3001))",fontsize=16,color="black",shape="box"];324 -> 390[label="",style="solid", color="black", weight=3]; 26.21/9.52 325[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];325 -> 391[label="",style="solid", color="black", weight=3]; 26.21/9.52 326[label="compare2 Nothing (Just xwv3000) (Nothing == Just xwv3000)",fontsize=16,color="black",shape="box"];326 -> 392[label="",style="solid", color="black", weight=3]; 26.21/9.52 327[label="compare2 (Just xwv4000) Nothing (Just xwv4000 == Nothing)",fontsize=16,color="black",shape="box"];327 -> 393[label="",style="solid", color="black", weight=3]; 26.21/9.52 328[label="compare2 (Just xwv4000) (Just xwv3000) (Just xwv4000 == Just xwv3000)",fontsize=16,color="black",shape="box"];328 -> 394[label="",style="solid", color="black", weight=3]; 26.21/9.52 329[label="primCmpDouble (Double xwv4000 (Pos xwv40010)) (Double xwv3000 xwv3001)",fontsize=16,color="burlywood",shape="box"];4764[label="xwv3001/Pos xwv30010",fontsize=10,color="white",style="solid",shape="box"];329 -> 4764[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4764 -> 395[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4765[label="xwv3001/Neg xwv30010",fontsize=10,color="white",style="solid",shape="box"];329 -> 4765[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4765 -> 396[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 330[label="primCmpDouble (Double xwv4000 (Neg xwv40010)) (Double xwv3000 xwv3001)",fontsize=16,color="burlywood",shape="box"];4766[label="xwv3001/Pos xwv30010",fontsize=10,color="white",style="solid",shape="box"];330 -> 4766[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4766 -> 397[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4767[label="xwv3001/Neg xwv30010",fontsize=10,color="white",style="solid",shape="box"];330 -> 4767[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4767 -> 398[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 331[label="primCmpFloat (Float xwv4000 (Pos xwv40010)) (Float xwv3000 xwv3001)",fontsize=16,color="burlywood",shape="box"];4768[label="xwv3001/Pos xwv30010",fontsize=10,color="white",style="solid",shape="box"];331 -> 4768[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4768 -> 399[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4769[label="xwv3001/Neg xwv30010",fontsize=10,color="white",style="solid",shape="box"];331 -> 4769[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4769 -> 400[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 332[label="primCmpFloat (Float xwv4000 (Neg xwv40010)) (Float xwv3000 xwv3001)",fontsize=16,color="burlywood",shape="box"];4770[label="xwv3001/Pos xwv30010",fontsize=10,color="white",style="solid",shape="box"];332 -> 4770[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4770 -> 401[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4771[label="xwv3001/Neg xwv30010",fontsize=10,color="white",style="solid",shape="box"];332 -> 4771[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4771 -> 402[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 333[label="xwv4000",fontsize=16,color="green",shape="box"];334[label="xwv3001",fontsize=16,color="green",shape="box"];335[label="xwv3000",fontsize=16,color="green",shape="box"];336[label="xwv4001",fontsize=16,color="green",shape="box"];337[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];337 -> 403[label="",style="solid", color="black", weight=3]; 26.21/9.52 338[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];338 -> 404[label="",style="solid", color="black", weight=3]; 26.21/9.52 339[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];339 -> 405[label="",style="solid", color="black", weight=3]; 26.21/9.52 340[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];340 -> 406[label="",style="solid", color="black", weight=3]; 26.21/9.52 341[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];341 -> 407[label="",style="solid", color="black", weight=3]; 26.21/9.52 342[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];342 -> 408[label="",style="solid", color="black", weight=3]; 26.21/9.52 343[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];343 -> 409[label="",style="solid", color="black", weight=3]; 26.21/9.52 344[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];344 -> 410[label="",style="solid", color="black", weight=3]; 26.21/9.52 345[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];345 -> 411[label="",style="solid", color="black", weight=3]; 26.21/9.52 346[label="compare2 (xwv4000,xwv4001,xwv4002) (xwv3000,xwv3001,xwv3002) ((xwv4000,xwv4001,xwv4002) == (xwv3000,xwv3001,xwv3002))",fontsize=16,color="black",shape="box"];346 -> 412[label="",style="solid", color="black", weight=3]; 26.21/9.52 347[label="compare2 (Left xwv4000) (Left xwv3000) (Left xwv4000 == Left xwv3000)",fontsize=16,color="black",shape="box"];347 -> 413[label="",style="solid", color="black", weight=3]; 26.21/9.52 348[label="compare2 (Left xwv4000) (Right xwv3000) (Left xwv4000 == Right xwv3000)",fontsize=16,color="black",shape="box"];348 -> 414[label="",style="solid", color="black", weight=3]; 26.21/9.52 349[label="compare2 (Right xwv4000) (Left xwv3000) (Right xwv4000 == Left xwv3000)",fontsize=16,color="black",shape="box"];349 -> 415[label="",style="solid", color="black", weight=3]; 26.21/9.52 350[label="compare2 (Right xwv4000) (Right xwv3000) (Right xwv4000 == Right xwv3000)",fontsize=16,color="black",shape="box"];350 -> 416[label="",style="solid", color="black", weight=3]; 26.21/9.52 351[label="xwv4000",fontsize=16,color="green",shape="box"];352[label="xwv3000",fontsize=16,color="green",shape="box"];353 -> 155[label="",style="dashed", color="red", weight=0]; 26.21/9.52 353[label="compare (xwv4000 * xwv3001) (xwv3000 * xwv4001)",fontsize=16,color="magenta"];353 -> 417[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 353 -> 418[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 354 -> 167[label="",style="dashed", color="red", weight=0]; 26.21/9.52 354[label="compare (xwv4000 * xwv3001) (xwv3000 * xwv4001)",fontsize=16,color="magenta"];354 -> 419[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 354 -> 420[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 355[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) True",fontsize=16,color="black",shape="box"];355 -> 421[label="",style="solid", color="black", weight=3]; 26.21/9.52 356[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) False",fontsize=16,color="black",shape="triangle"];356 -> 422[label="",style="solid", color="black", weight=3]; 26.21/9.52 357 -> 356[label="",style="dashed", color="red", weight=0]; 26.21/9.52 357[label="FiniteMap.delFromFM1 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) False",fontsize=16,color="magenta"];3781 -> 3806[label="",style="dashed", color="red", weight=0]; 26.21/9.52 3781[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv340) (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv340)",fontsize=16,color="magenta"];3781 -> 3807[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 1585 -> 529[label="",style="dashed", color="red", weight=0]; 26.21/9.52 1585[label="compare xwv113 xwv115 == LT",fontsize=16,color="magenta"];1585 -> 1862[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 1585 -> 1863[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3782 -> 3803[label="",style="dashed", color="red", weight=0]; 26.21/9.52 3782[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv340 xwv341 xwv344 xwv340 xwv340 xwv341 xwv340 xwv344 (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv340 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv340)",fontsize=16,color="magenta"];3782 -> 3804[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3783 -> 4498[label="",style="dashed", color="red", weight=0]; 26.21/9.52 3783[label="FiniteMap.mkBranch (Pos (Succ Zero)) xwv340 xwv341 xwv340 xwv344",fontsize=16,color="magenta"];3783 -> 4499[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3783 -> 4500[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3783 -> 4501[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3783 -> 4502[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3783 -> 4503[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3713 -> 11[label="",style="dashed", color="red", weight=0]; 26.21/9.52 3713[label="FiniteMap.delFromFM xwv33 []",fontsize=16,color="magenta"];3713 -> 3739[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3713 -> 3740[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3714[label="xwv34",fontsize=16,color="green",shape="box"];3715[label="xwv300 : xwv301",fontsize=16,color="green",shape="box"];3716[label="xwv31",fontsize=16,color="green",shape="box"];363[label="FiniteMap.delFromFM0 (xwv300 : xwv301) xwv31 xwv32 xwv33 xwv34 [] False",fontsize=16,color="black",shape="box"];363 -> 425[label="",style="solid", color="black", weight=3]; 26.21/9.52 3717 -> 11[label="",style="dashed", color="red", weight=0]; 26.21/9.52 3717[label="FiniteMap.delFromFM xwv33 []",fontsize=16,color="magenta"];3717 -> 3741[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3717 -> 3742[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3718[label="xwv34",fontsize=16,color="green",shape="box"];3719[label="[]",fontsize=16,color="green",shape="box"];3720[label="xwv31",fontsize=16,color="green",shape="box"];366[label="FiniteMap.delFromFM0 [] xwv31 xwv32 xwv33 xwv34 [] True",fontsize=16,color="black",shape="box"];366 -> 428[label="",style="solid", color="black", weight=3]; 26.21/9.52 372 -> 319[label="",style="dashed", color="red", weight=0]; 26.21/9.52 372[label="primCmpNat (Succ xwv40000) xwv3000",fontsize=16,color="magenta"];372 -> 434[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 372 -> 435[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 373[label="GT",fontsize=16,color="green",shape="box"];374[label="primCmpInt (Pos Zero) (Pos (Succ xwv30000))",fontsize=16,color="black",shape="box"];374 -> 436[label="",style="solid", color="black", weight=3]; 26.21/9.52 375[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];375 -> 437[label="",style="solid", color="black", weight=3]; 26.21/9.52 376[label="primCmpInt (Pos Zero) (Neg (Succ xwv30000))",fontsize=16,color="black",shape="box"];376 -> 438[label="",style="solid", color="black", weight=3]; 26.21/9.52 377[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];377 -> 439[label="",style="solid", color="black", weight=3]; 26.21/9.52 378[label="LT",fontsize=16,color="green",shape="box"];379 -> 319[label="",style="dashed", color="red", weight=0]; 26.21/9.52 379[label="primCmpNat xwv3000 (Succ xwv40000)",fontsize=16,color="magenta"];379 -> 440[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 379 -> 441[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 380[label="primCmpInt (Neg Zero) (Pos (Succ xwv30000))",fontsize=16,color="black",shape="box"];380 -> 442[label="",style="solid", color="black", weight=3]; 26.21/9.52 381[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];381 -> 443[label="",style="solid", color="black", weight=3]; 26.21/9.52 382[label="primCmpInt (Neg Zero) (Neg (Succ xwv30000))",fontsize=16,color="black",shape="box"];382 -> 444[label="",style="solid", color="black", weight=3]; 26.21/9.52 383[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];383 -> 445[label="",style="solid", color="black", weight=3]; 26.21/9.52 384[label="primCmpNat (Succ xwv40000) xwv3000",fontsize=16,color="burlywood",shape="box"];4772[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];384 -> 4772[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4772 -> 446[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4773[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];384 -> 4773[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4773 -> 447[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 385[label="primCmpNat Zero xwv3000",fontsize=16,color="burlywood",shape="box"];4774[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];385 -> 4774[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4774 -> 448[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4775[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];385 -> 4775[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4775 -> 449[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 386[label="compare2 False False True",fontsize=16,color="black",shape="box"];386 -> 450[label="",style="solid", color="black", weight=3]; 26.21/9.52 387[label="compare2 False True False",fontsize=16,color="black",shape="box"];387 -> 451[label="",style="solid", color="black", weight=3]; 26.21/9.52 388[label="compare2 True False False",fontsize=16,color="black",shape="box"];388 -> 452[label="",style="solid", color="black", weight=3]; 26.21/9.52 389[label="compare2 True True True",fontsize=16,color="black",shape="box"];389 -> 453[label="",style="solid", color="black", weight=3]; 26.21/9.52 390 -> 947[label="",style="dashed", color="red", weight=0]; 26.21/9.52 390[label="compare2 (xwv4000,xwv4001) (xwv3000,xwv3001) (xwv4000 == xwv3000 && xwv4001 == xwv3001)",fontsize=16,color="magenta"];390 -> 948[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 390 -> 949[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 390 -> 950[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 390 -> 951[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 390 -> 952[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 391[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];391 -> 460[label="",style="solid", color="black", weight=3]; 26.21/9.52 392[label="compare2 Nothing (Just xwv3000) False",fontsize=16,color="black",shape="box"];392 -> 461[label="",style="solid", color="black", weight=3]; 26.21/9.52 393[label="compare2 (Just xwv4000) Nothing False",fontsize=16,color="black",shape="box"];393 -> 462[label="",style="solid", color="black", weight=3]; 26.21/9.52 394 -> 463[label="",style="dashed", color="red", weight=0]; 26.21/9.52 394[label="compare2 (Just xwv4000) (Just xwv3000) (xwv4000 == xwv3000)",fontsize=16,color="magenta"];394 -> 464[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 394 -> 465[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 394 -> 466[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 395[label="primCmpDouble (Double xwv4000 (Pos xwv40010)) (Double xwv3000 (Pos xwv30010))",fontsize=16,color="black",shape="box"];395 -> 467[label="",style="solid", color="black", weight=3]; 26.21/9.52 396[label="primCmpDouble (Double xwv4000 (Pos xwv40010)) (Double xwv3000 (Neg xwv30010))",fontsize=16,color="black",shape="box"];396 -> 468[label="",style="solid", color="black", weight=3]; 26.21/9.52 397[label="primCmpDouble (Double xwv4000 (Neg xwv40010)) (Double xwv3000 (Pos xwv30010))",fontsize=16,color="black",shape="box"];397 -> 469[label="",style="solid", color="black", weight=3]; 26.21/9.52 398[label="primCmpDouble (Double xwv4000 (Neg xwv40010)) (Double xwv3000 (Neg xwv30010))",fontsize=16,color="black",shape="box"];398 -> 470[label="",style="solid", color="black", weight=3]; 26.21/9.52 399[label="primCmpFloat (Float xwv4000 (Pos xwv40010)) (Float xwv3000 (Pos xwv30010))",fontsize=16,color="black",shape="box"];399 -> 471[label="",style="solid", color="black", weight=3]; 26.21/9.52 400[label="primCmpFloat (Float xwv4000 (Pos xwv40010)) (Float xwv3000 (Neg xwv30010))",fontsize=16,color="black",shape="box"];400 -> 472[label="",style="solid", color="black", weight=3]; 26.21/9.52 401[label="primCmpFloat (Float xwv4000 (Neg xwv40010)) (Float xwv3000 (Pos xwv30010))",fontsize=16,color="black",shape="box"];401 -> 473[label="",style="solid", color="black", weight=3]; 26.21/9.52 402[label="primCmpFloat (Float xwv4000 (Neg xwv40010)) (Float xwv3000 (Neg xwv30010))",fontsize=16,color="black",shape="box"];402 -> 474[label="",style="solid", color="black", weight=3]; 26.21/9.52 403[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];403 -> 475[label="",style="solid", color="black", weight=3]; 26.21/9.52 404[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];404 -> 476[label="",style="solid", color="black", weight=3]; 26.21/9.52 405[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];405 -> 477[label="",style="solid", color="black", weight=3]; 26.21/9.52 406[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];406 -> 478[label="",style="solid", color="black", weight=3]; 26.21/9.52 407[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];407 -> 479[label="",style="solid", color="black", weight=3]; 26.21/9.52 408[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];408 -> 480[label="",style="solid", color="black", weight=3]; 26.21/9.52 409[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];409 -> 481[label="",style="solid", color="black", weight=3]; 26.21/9.52 410[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];410 -> 482[label="",style="solid", color="black", weight=3]; 26.21/9.52 411[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];411 -> 483[label="",style="solid", color="black", weight=3]; 26.21/9.52 412 -> 996[label="",style="dashed", color="red", weight=0]; 26.21/9.52 412[label="compare2 (xwv4000,xwv4001,xwv4002) (xwv3000,xwv3001,xwv3002) (xwv4000 == xwv3000 && xwv4001 == xwv3001 && xwv4002 == xwv3002)",fontsize=16,color="magenta"];412 -> 997[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 412 -> 998[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 412 -> 999[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 412 -> 1000[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 412 -> 1001[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 412 -> 1002[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 412 -> 1003[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 413 -> 492[label="",style="dashed", color="red", weight=0]; 26.21/9.52 413[label="compare2 (Left xwv4000) (Left xwv3000) (xwv4000 == xwv3000)",fontsize=16,color="magenta"];413 -> 493[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 413 -> 494[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 413 -> 495[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 414[label="compare2 (Left xwv4000) (Right xwv3000) False",fontsize=16,color="black",shape="box"];414 -> 496[label="",style="solid", color="black", weight=3]; 26.21/9.52 415[label="compare2 (Right xwv4000) (Left xwv3000) False",fontsize=16,color="black",shape="box"];415 -> 497[label="",style="solid", color="black", weight=3]; 26.21/9.52 416 -> 498[label="",style="dashed", color="red", weight=0]; 26.21/9.52 416[label="compare2 (Right xwv4000) (Right xwv3000) (xwv4000 == xwv3000)",fontsize=16,color="magenta"];416 -> 499[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 416 -> 500[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 416 -> 501[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 417[label="xwv4000 * xwv3001",fontsize=16,color="black",shape="triangle"];417 -> 502[label="",style="solid", color="black", weight=3]; 26.21/9.52 418 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.52 418[label="xwv3000 * xwv4001",fontsize=16,color="magenta"];418 -> 503[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 418 -> 504[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 419[label="xwv4000 * xwv3001",fontsize=16,color="burlywood",shape="triangle"];4776[label="xwv4000/Integer xwv40000",fontsize=10,color="white",style="solid",shape="box"];419 -> 4776[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4776 -> 505[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 420 -> 419[label="",style="dashed", color="red", weight=0]; 26.21/9.52 420[label="xwv3000 * xwv4001",fontsize=16,color="magenta"];420 -> 506[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 420 -> 507[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 421 -> 3696[label="",style="dashed", color="red", weight=0]; 26.21/9.52 421[label="FiniteMap.mkBalBranch (xwv15 : xwv16) xwv17 (FiniteMap.delFromFM xwv19 (xwv21 : xwv22)) xwv20",fontsize=16,color="magenta"];421 -> 3721[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 421 -> 3722[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 421 -> 3723[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 421 -> 3724[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 422[label="FiniteMap.delFromFM0 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (xwv15 : xwv16 == xwv21 : xwv22)",fontsize=16,color="black",shape="box"];422 -> 510[label="",style="solid", color="black", weight=3]; 26.21/9.52 3807[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv340",fontsize=16,color="black",shape="triangle"];3807 -> 3809[label="",style="solid", color="black", weight=3]; 26.21/9.52 3806[label="primPlusInt xwv344 (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv340)",fontsize=16,color="burlywood",shape="triangle"];4777[label="xwv344/Pos xwv3440",fontsize=10,color="white",style="solid",shape="box"];3806 -> 4777[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4777 -> 3810[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4778[label="xwv344/Neg xwv3440",fontsize=10,color="white",style="solid",shape="box"];3806 -> 4778[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4778 -> 3811[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 1862 -> 155[label="",style="dashed", color="red", weight=0]; 26.21/9.52 1862[label="compare xwv113 xwv115",fontsize=16,color="magenta"];1862 -> 2250[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 1862 -> 2251[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 1863[label="LT",fontsize=16,color="green",shape="box"];529[label="xwv4000 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4779[label="xwv4000/LT",fontsize=10,color="white",style="solid",shape="box"];529 -> 4779[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4779 -> 667[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4780[label="xwv4000/EQ",fontsize=10,color="white",style="solid",shape="box"];529 -> 4780[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4780 -> 668[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4781[label="xwv4000/GT",fontsize=10,color="white",style="solid",shape="box"];529 -> 4781[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4781 -> 669[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 3804 -> 1565[label="",style="dashed", color="red", weight=0]; 26.21/9.52 3804[label="FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv340 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv340",fontsize=16,color="magenta"];3804 -> 3812[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3804 -> 3813[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 3803[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv340 xwv341 xwv344 xwv340 xwv340 xwv341 xwv340 xwv344 xwv342",fontsize=16,color="burlywood",shape="triangle"];4782[label="xwv342/False",fontsize=10,color="white",style="solid",shape="box"];3803 -> 4782[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4782 -> 3814[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4783[label="xwv342/True",fontsize=10,color="white",style="solid",shape="box"];3803 -> 4783[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4783 -> 3815[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4499[label="xwv340",fontsize=16,color="green",shape="box"];4500[label="xwv344",fontsize=16,color="green",shape="box"];4501[label="Zero",fontsize=16,color="green",shape="box"];4502[label="xwv340",fontsize=16,color="green",shape="box"];4503[label="xwv341",fontsize=16,color="green",shape="box"];4498[label="FiniteMap.mkBranch (Pos (Succ xwv457)) xwv458 xwv459 xwv460 xwv461",fontsize=16,color="black",shape="triangle"];4498 -> 4554[label="",style="solid", color="black", weight=3]; 26.21/9.52 3739[label="[]",fontsize=16,color="green",shape="box"];3740[label="xwv33",fontsize=16,color="green",shape="box"];425[label="error []",fontsize=16,color="red",shape="box"];3741[label="[]",fontsize=16,color="green",shape="box"];3742[label="xwv33",fontsize=16,color="green",shape="box"];428[label="FiniteMap.glueBal xwv33 xwv34",fontsize=16,color="burlywood",shape="triangle"];4784[label="xwv33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];428 -> 4784[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4784 -> 516[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4785[label="xwv33/FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=10,color="white",style="solid",shape="box"];428 -> 4785[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4785 -> 517[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 434[label="xwv3000",fontsize=16,color="green",shape="box"];435[label="Succ xwv40000",fontsize=16,color="green",shape="box"];436 -> 319[label="",style="dashed", color="red", weight=0]; 26.21/9.52 436[label="primCmpNat Zero (Succ xwv30000)",fontsize=16,color="magenta"];436 -> 518[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 436 -> 519[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 437[label="EQ",fontsize=16,color="green",shape="box"];438[label="GT",fontsize=16,color="green",shape="box"];439[label="EQ",fontsize=16,color="green",shape="box"];440[label="Succ xwv40000",fontsize=16,color="green",shape="box"];441[label="xwv3000",fontsize=16,color="green",shape="box"];442[label="LT",fontsize=16,color="green",shape="box"];443[label="EQ",fontsize=16,color="green",shape="box"];444 -> 319[label="",style="dashed", color="red", weight=0]; 26.21/9.52 444[label="primCmpNat (Succ xwv30000) Zero",fontsize=16,color="magenta"];444 -> 520[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 444 -> 521[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 445[label="EQ",fontsize=16,color="green",shape="box"];446[label="primCmpNat (Succ xwv40000) (Succ xwv30000)",fontsize=16,color="black",shape="box"];446 -> 522[label="",style="solid", color="black", weight=3]; 26.21/9.52 447[label="primCmpNat (Succ xwv40000) Zero",fontsize=16,color="black",shape="box"];447 -> 523[label="",style="solid", color="black", weight=3]; 26.21/9.52 448[label="primCmpNat Zero (Succ xwv30000)",fontsize=16,color="black",shape="box"];448 -> 524[label="",style="solid", color="black", weight=3]; 26.21/9.52 449[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];449 -> 525[label="",style="solid", color="black", weight=3]; 26.21/9.52 450[label="EQ",fontsize=16,color="green",shape="box"];451[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];451 -> 526[label="",style="solid", color="black", weight=3]; 26.21/9.52 452[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];452 -> 527[label="",style="solid", color="black", weight=3]; 26.21/9.52 453[label="EQ",fontsize=16,color="green",shape="box"];948[label="xwv4001",fontsize=16,color="green",shape="box"];949[label="xwv3000",fontsize=16,color="green",shape="box"];950 -> 1028[label="",style="dashed", color="red", weight=0]; 26.21/9.52 950[label="xwv4000 == xwv3000 && xwv4001 == xwv3001",fontsize=16,color="magenta"];950 -> 1029[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 950 -> 1030[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 951[label="xwv4000",fontsize=16,color="green",shape="box"];952[label="xwv3001",fontsize=16,color="green",shape="box"];947[label="compare2 (xwv113,xwv114) (xwv115,xwv116) xwv117",fontsize=16,color="burlywood",shape="triangle"];4786[label="xwv117/False",fontsize=10,color="white",style="solid",shape="box"];947 -> 4786[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4786 -> 972[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4787[label="xwv117/True",fontsize=10,color="white",style="solid",shape="box"];947 -> 4787[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4787 -> 973[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 460[label="EQ",fontsize=16,color="green",shape="box"];461[label="compare1 Nothing (Just xwv3000) (Nothing <= Just xwv3000)",fontsize=16,color="black",shape="box"];461 -> 544[label="",style="solid", color="black", weight=3]; 26.21/9.52 462[label="compare1 (Just xwv4000) Nothing (Just xwv4000 <= Nothing)",fontsize=16,color="black",shape="box"];462 -> 545[label="",style="solid", color="black", weight=3]; 26.21/9.52 464[label="xwv3000",fontsize=16,color="green",shape="box"];465[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4788[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 4788[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4788 -> 546[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4789[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 4789[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4789 -> 547[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4790[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 4790[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4790 -> 548[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4791[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 4791[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4791 -> 549[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4792[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 4792[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4792 -> 550[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4793[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 4793[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4793 -> 551[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4794[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 4794[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4794 -> 552[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4795[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 4795[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4795 -> 553[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4796[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 4796[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4796 -> 554[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4797[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 4797[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4797 -> 555[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4798[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 4798[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4798 -> 556[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4799[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 4799[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4799 -> 557[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4800[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 4800[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4800 -> 558[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4801[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];465 -> 4801[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4801 -> 559[label="",style="solid", color="blue", weight=3]; 26.21/9.52 466[label="xwv4000",fontsize=16,color="green",shape="box"];463[label="compare2 (Just xwv54) (Just xwv55) xwv56",fontsize=16,color="burlywood",shape="triangle"];4802[label="xwv56/False",fontsize=10,color="white",style="solid",shape="box"];463 -> 4802[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4802 -> 560[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4803[label="xwv56/True",fontsize=10,color="white",style="solid",shape="box"];463 -> 4803[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4803 -> 561[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 467 -> 155[label="",style="dashed", color="red", weight=0]; 26.21/9.52 467[label="compare (xwv4000 * Pos xwv30010) (Pos xwv40010 * xwv3000)",fontsize=16,color="magenta"];467 -> 562[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 467 -> 563[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 468 -> 155[label="",style="dashed", color="red", weight=0]; 26.21/9.52 468[label="compare (xwv4000 * Pos xwv30010) (Neg xwv40010 * xwv3000)",fontsize=16,color="magenta"];468 -> 564[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 468 -> 565[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 469 -> 155[label="",style="dashed", color="red", weight=0]; 26.21/9.52 469[label="compare (xwv4000 * Neg xwv30010) (Pos xwv40010 * xwv3000)",fontsize=16,color="magenta"];469 -> 566[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 469 -> 567[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 470 -> 155[label="",style="dashed", color="red", weight=0]; 26.21/9.52 470[label="compare (xwv4000 * Neg xwv30010) (Neg xwv40010 * xwv3000)",fontsize=16,color="magenta"];470 -> 568[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 470 -> 569[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 471 -> 155[label="",style="dashed", color="red", weight=0]; 26.21/9.52 471[label="compare (xwv4000 * Pos xwv30010) (Pos xwv40010 * xwv3000)",fontsize=16,color="magenta"];471 -> 570[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 471 -> 571[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 472 -> 155[label="",style="dashed", color="red", weight=0]; 26.21/9.52 472[label="compare (xwv4000 * Pos xwv30010) (Neg xwv40010 * xwv3000)",fontsize=16,color="magenta"];472 -> 572[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 472 -> 573[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 473 -> 155[label="",style="dashed", color="red", weight=0]; 26.21/9.52 473[label="compare (xwv4000 * Neg xwv30010) (Pos xwv40010 * xwv3000)",fontsize=16,color="magenta"];473 -> 574[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 473 -> 575[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 474 -> 155[label="",style="dashed", color="red", weight=0]; 26.21/9.52 474[label="compare (xwv4000 * Neg xwv30010) (Neg xwv40010 * xwv3000)",fontsize=16,color="magenta"];474 -> 576[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 474 -> 577[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 475[label="EQ",fontsize=16,color="green",shape="box"];476[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];476 -> 578[label="",style="solid", color="black", weight=3]; 26.21/9.52 477[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];477 -> 579[label="",style="solid", color="black", weight=3]; 26.21/9.52 478[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];478 -> 580[label="",style="solid", color="black", weight=3]; 26.21/9.52 479[label="EQ",fontsize=16,color="green",shape="box"];480[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];480 -> 581[label="",style="solid", color="black", weight=3]; 26.21/9.52 481[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];481 -> 582[label="",style="solid", color="black", weight=3]; 26.21/9.52 482[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];482 -> 583[label="",style="solid", color="black", weight=3]; 26.21/9.52 483[label="EQ",fontsize=16,color="green",shape="box"];997[label="xwv4001",fontsize=16,color="green",shape="box"];998[label="xwv4002",fontsize=16,color="green",shape="box"];999[label="xwv3000",fontsize=16,color="green",shape="box"];1000 -> 1028[label="",style="dashed", color="red", weight=0]; 26.21/9.52 1000[label="xwv4000 == xwv3000 && xwv4001 == xwv3001 && xwv4002 == xwv3002",fontsize=16,color="magenta"];1000 -> 1031[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 1000 -> 1032[label="",style="dashed", color="magenta", weight=3]; 26.21/9.52 1001[label="xwv3001",fontsize=16,color="green",shape="box"];1002[label="xwv4000",fontsize=16,color="green",shape="box"];1003[label="xwv3002",fontsize=16,color="green",shape="box"];996[label="compare2 (xwv65,xwv66,xwv67) (xwv68,xwv69,xwv70) xwv125",fontsize=16,color="burlywood",shape="triangle"];4804[label="xwv125/False",fontsize=10,color="white",style="solid",shape="box"];996 -> 4804[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4804 -> 1012[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4805[label="xwv125/True",fontsize=10,color="white",style="solid",shape="box"];996 -> 4805[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4805 -> 1013[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 493[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4806[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 4806[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4806 -> 600[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4807[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 4807[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4807 -> 601[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4808[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 4808[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4808 -> 602[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4809[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 4809[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4809 -> 603[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4810[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 4810[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4810 -> 604[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4811[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 4811[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4811 -> 605[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4812[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 4812[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4812 -> 606[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4813[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 4813[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4813 -> 607[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4814[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 4814[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4814 -> 608[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4815[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 4815[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4815 -> 609[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4816[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 4816[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4816 -> 610[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4817[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 4817[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4817 -> 611[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4818[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 4818[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4818 -> 612[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4819[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 4819[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4819 -> 613[label="",style="solid", color="blue", weight=3]; 26.21/9.52 494[label="xwv4000",fontsize=16,color="green",shape="box"];495[label="xwv3000",fontsize=16,color="green",shape="box"];492[label="compare2 (Left xwv76) (Left xwv77) xwv78",fontsize=16,color="burlywood",shape="triangle"];4820[label="xwv78/False",fontsize=10,color="white",style="solid",shape="box"];492 -> 4820[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4820 -> 614[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 4821[label="xwv78/True",fontsize=10,color="white",style="solid",shape="box"];492 -> 4821[label="",style="solid", color="burlywood", weight=9]; 26.21/9.52 4821 -> 615[label="",style="solid", color="burlywood", weight=3]; 26.21/9.52 496[label="compare1 (Left xwv4000) (Right xwv3000) (Left xwv4000 <= Right xwv3000)",fontsize=16,color="black",shape="box"];496 -> 616[label="",style="solid", color="black", weight=3]; 26.21/9.52 497[label="compare1 (Right xwv4000) (Left xwv3000) (Right xwv4000 <= Left xwv3000)",fontsize=16,color="black",shape="box"];497 -> 617[label="",style="solid", color="black", weight=3]; 26.21/9.52 499[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4822[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4822[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4822 -> 618[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4823[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4823[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4823 -> 619[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4824[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4824[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4824 -> 620[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4825[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4825[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4825 -> 621[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4826[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4826[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4826 -> 622[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4827[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4827[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4827 -> 623[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4828[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4828[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4828 -> 624[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4829[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4829[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4829 -> 625[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4830[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4830[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4830 -> 626[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4831[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4831[label="",style="solid", color="blue", weight=9]; 26.21/9.52 4831 -> 627[label="",style="solid", color="blue", weight=3]; 26.21/9.52 4832[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4832[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4832 -> 628[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4833[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4833[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4833 -> 629[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4834[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4834[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4834 -> 630[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4835[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];499 -> 4835[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4835 -> 631[label="",style="solid", color="blue", weight=3]; 26.21/9.53 500[label="xwv3000",fontsize=16,color="green",shape="box"];501[label="xwv4000",fontsize=16,color="green",shape="box"];498[label="compare2 (Right xwv83) (Right xwv84) xwv85",fontsize=16,color="burlywood",shape="triangle"];4836[label="xwv85/False",fontsize=10,color="white",style="solid",shape="box"];498 -> 4836[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4836 -> 632[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4837[label="xwv85/True",fontsize=10,color="white",style="solid",shape="box"];498 -> 4837[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4837 -> 633[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 502[label="primMulInt xwv4000 xwv3001",fontsize=16,color="burlywood",shape="triangle"];4838[label="xwv4000/Pos xwv40000",fontsize=10,color="white",style="solid",shape="box"];502 -> 4838[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4838 -> 639[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4839[label="xwv4000/Neg xwv40000",fontsize=10,color="white",style="solid",shape="box"];502 -> 4839[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4839 -> 640[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 503[label="xwv3000",fontsize=16,color="green",shape="box"];504[label="xwv4001",fontsize=16,color="green",shape="box"];505[label="Integer xwv40000 * xwv3001",fontsize=16,color="burlywood",shape="box"];4840[label="xwv3001/Integer xwv30010",fontsize=10,color="white",style="solid",shape="box"];505 -> 4840[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4840 -> 641[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 506[label="xwv3000",fontsize=16,color="green",shape="box"];507[label="xwv4001",fontsize=16,color="green",shape="box"];3721 -> 11[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3721[label="FiniteMap.delFromFM xwv19 (xwv21 : xwv22)",fontsize=16,color="magenta"];3721 -> 3743[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3721 -> 3744[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3722[label="xwv20",fontsize=16,color="green",shape="box"];3723[label="xwv15 : xwv16",fontsize=16,color="green",shape="box"];3724[label="xwv17",fontsize=16,color="green",shape="box"];510 -> 868[label="",style="dashed", color="red", weight=0]; 26.21/9.53 510[label="FiniteMap.delFromFM0 (xwv15 : xwv16) xwv17 xwv18 xwv19 xwv20 (xwv21 : xwv22) (xwv15 == xwv21 && xwv16 == xwv22)",fontsize=16,color="magenta"];510 -> 869[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 510 -> 870[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 510 -> 871[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 510 -> 872[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 510 -> 873[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 510 -> 874[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 510 -> 875[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 510 -> 876[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 510 -> 877[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 510 -> 878[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3809 -> 1356[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3809[label="FiniteMap.sizeFM xwv340",fontsize=16,color="magenta"];3809 -> 3829[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3810[label="primPlusInt (Pos xwv3440) (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv340)",fontsize=16,color="black",shape="box"];3810 -> 3830[label="",style="solid", color="black", weight=3]; 26.21/9.53 3811[label="primPlusInt (Neg xwv3440) (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv340)",fontsize=16,color="black",shape="box"];3811 -> 3831[label="",style="solid", color="black", weight=3]; 26.21/9.53 2250[label="xwv113",fontsize=16,color="green",shape="box"];2251[label="xwv115",fontsize=16,color="green",shape="box"];667[label="LT == xwv3000",fontsize=16,color="burlywood",shape="box"];4841[label="xwv3000/LT",fontsize=10,color="white",style="solid",shape="box"];667 -> 4841[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4841 -> 915[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4842[label="xwv3000/EQ",fontsize=10,color="white",style="solid",shape="box"];667 -> 4842[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4842 -> 916[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4843[label="xwv3000/GT",fontsize=10,color="white",style="solid",shape="box"];667 -> 4843[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4843 -> 917[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 668[label="EQ == xwv3000",fontsize=16,color="burlywood",shape="box"];4844[label="xwv3000/LT",fontsize=10,color="white",style="solid",shape="box"];668 -> 4844[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4844 -> 918[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4845[label="xwv3000/EQ",fontsize=10,color="white",style="solid",shape="box"];668 -> 4845[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4845 -> 919[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4846[label="xwv3000/GT",fontsize=10,color="white",style="solid",shape="box"];668 -> 4846[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4846 -> 920[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 669[label="GT == xwv3000",fontsize=16,color="burlywood",shape="box"];4847[label="xwv3000/LT",fontsize=10,color="white",style="solid",shape="box"];669 -> 4847[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4847 -> 921[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4848[label="xwv3000/EQ",fontsize=10,color="white",style="solid",shape="box"];669 -> 4848[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4848 -> 922[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4849[label="xwv3000/GT",fontsize=10,color="white",style="solid",shape="box"];669 -> 4849[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4849 -> 923[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 3812[label="FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv340",fontsize=16,color="black",shape="triangle"];3812 -> 3832[label="",style="solid", color="black", weight=3]; 26.21/9.53 3813 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3813[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv340",fontsize=16,color="magenta"];3813 -> 3833[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3813 -> 3834[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1565[label="xwv202 > xwv201",fontsize=16,color="black",shape="triangle"];1565 -> 1579[label="",style="solid", color="black", weight=3]; 26.21/9.53 3814[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv340 xwv341 xwv344 xwv340 xwv340 xwv341 xwv340 xwv344 False",fontsize=16,color="black",shape="box"];3814 -> 3835[label="",style="solid", color="black", weight=3]; 26.21/9.53 3815[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv340 xwv341 xwv344 xwv340 xwv340 xwv341 xwv340 xwv344 True",fontsize=16,color="black",shape="box"];3815 -> 3836[label="",style="solid", color="black", weight=3]; 26.21/9.53 4554[label="FiniteMap.mkBranchResult xwv458 xwv459 xwv461 xwv460",fontsize=16,color="black",shape="box"];4554 -> 4593[label="",style="solid", color="black", weight=3]; 26.21/9.53 516[label="FiniteMap.glueBal FiniteMap.EmptyFM xwv34",fontsize=16,color="black",shape="box"];516 -> 658[label="",style="solid", color="black", weight=3]; 26.21/9.53 517[label="FiniteMap.glueBal (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) xwv34",fontsize=16,color="burlywood",shape="box"];4850[label="xwv34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];517 -> 4850[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4850 -> 659[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4851[label="xwv34/FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344",fontsize=10,color="white",style="solid",shape="box"];517 -> 4851[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4851 -> 660[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 518[label="Succ xwv30000",fontsize=16,color="green",shape="box"];519[label="Zero",fontsize=16,color="green",shape="box"];520[label="Zero",fontsize=16,color="green",shape="box"];521[label="Succ xwv30000",fontsize=16,color="green",shape="box"];522 -> 319[label="",style="dashed", color="red", weight=0]; 26.21/9.53 522[label="primCmpNat xwv40000 xwv30000",fontsize=16,color="magenta"];522 -> 661[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 522 -> 662[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 523[label="GT",fontsize=16,color="green",shape="box"];524[label="LT",fontsize=16,color="green",shape="box"];525[label="EQ",fontsize=16,color="green",shape="box"];526[label="compare1 False True True",fontsize=16,color="black",shape="box"];526 -> 663[label="",style="solid", color="black", weight=3]; 26.21/9.53 527[label="compare1 True False False",fontsize=16,color="black",shape="box"];527 -> 664[label="",style="solid", color="black", weight=3]; 26.21/9.53 1029[label="xwv4001 == xwv3001",fontsize=16,color="blue",shape="box"];4852[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4852[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4852 -> 1037[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4853[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4853[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4853 -> 1038[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4854[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4854[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4854 -> 1039[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4855[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4855[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4855 -> 1040[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4856[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4856[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4856 -> 1041[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4857[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4857[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4857 -> 1042[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4858[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4858[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4858 -> 1043[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4859[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4859[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4859 -> 1044[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4860[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4860[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4860 -> 1045[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4861[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4861[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4861 -> 1046[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4862[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4862[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4862 -> 1047[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4863[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4863[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4863 -> 1048[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4864[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4864[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4864 -> 1049[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4865[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4865[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4865 -> 1050[label="",style="solid", color="blue", weight=3]; 26.21/9.53 1030[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4866[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4866[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4866 -> 1051[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4867[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4867[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4867 -> 1052[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4868[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4868[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4868 -> 1053[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4869[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4869[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4869 -> 1054[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4870[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4870[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4870 -> 1055[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4871[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4871[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4871 -> 1056[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4872[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4872[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4872 -> 1057[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4873[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4873[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4873 -> 1058[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4874[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4874[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4874 -> 1059[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4875[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4875[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4875 -> 1060[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4876[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4876[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4876 -> 1061[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4877[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4877[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4877 -> 1062[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4878[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4878[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4878 -> 1063[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4879[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1030 -> 4879[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4879 -> 1064[label="",style="solid", color="blue", weight=3]; 26.21/9.53 1028[label="xwv130 && xwv131",fontsize=16,color="burlywood",shape="triangle"];4880[label="xwv130/False",fontsize=10,color="white",style="solid",shape="box"];1028 -> 4880[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4880 -> 1065[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4881[label="xwv130/True",fontsize=10,color="white",style="solid",shape="box"];1028 -> 4881[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4881 -> 1066[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 972[label="compare2 (xwv113,xwv114) (xwv115,xwv116) False",fontsize=16,color="black",shape="box"];972 -> 1067[label="",style="solid", color="black", weight=3]; 26.21/9.53 973[label="compare2 (xwv113,xwv114) (xwv115,xwv116) True",fontsize=16,color="black",shape="box"];973 -> 1068[label="",style="solid", color="black", weight=3]; 26.21/9.53 544[label="compare1 Nothing (Just xwv3000) True",fontsize=16,color="black",shape="box"];544 -> 687[label="",style="solid", color="black", weight=3]; 26.21/9.53 545[label="compare1 (Just xwv4000) Nothing False",fontsize=16,color="black",shape="box"];545 -> 688[label="",style="solid", color="black", weight=3]; 26.21/9.53 546 -> 528[label="",style="dashed", color="red", weight=0]; 26.21/9.53 546[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];546 -> 689[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 546 -> 690[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 547 -> 529[label="",style="dashed", color="red", weight=0]; 26.21/9.53 547[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];547 -> 691[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 547 -> 692[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 548 -> 530[label="",style="dashed", color="red", weight=0]; 26.21/9.53 548[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];548 -> 693[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 548 -> 694[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 549 -> 531[label="",style="dashed", color="red", weight=0]; 26.21/9.53 549[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];549 -> 695[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 549 -> 696[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 550 -> 532[label="",style="dashed", color="red", weight=0]; 26.21/9.53 550[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];550 -> 697[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 550 -> 698[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 551 -> 533[label="",style="dashed", color="red", weight=0]; 26.21/9.53 551[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];551 -> 699[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 551 -> 700[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 552 -> 534[label="",style="dashed", color="red", weight=0]; 26.21/9.53 552[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];552 -> 701[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 552 -> 702[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 553 -> 535[label="",style="dashed", color="red", weight=0]; 26.21/9.53 553[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];553 -> 703[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 553 -> 704[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 554 -> 536[label="",style="dashed", color="red", weight=0]; 26.21/9.53 554[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];554 -> 705[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 554 -> 706[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 555 -> 537[label="",style="dashed", color="red", weight=0]; 26.21/9.53 555[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];555 -> 707[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 555 -> 708[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 556 -> 538[label="",style="dashed", color="red", weight=0]; 26.21/9.53 556[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];556 -> 709[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 556 -> 710[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 557 -> 539[label="",style="dashed", color="red", weight=0]; 26.21/9.53 557[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];557 -> 711[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 557 -> 712[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 558 -> 540[label="",style="dashed", color="red", weight=0]; 26.21/9.53 558[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];558 -> 713[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 558 -> 714[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 559 -> 541[label="",style="dashed", color="red", weight=0]; 26.21/9.53 559[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];559 -> 715[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 559 -> 716[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 560[label="compare2 (Just xwv54) (Just xwv55) False",fontsize=16,color="black",shape="box"];560 -> 717[label="",style="solid", color="black", weight=3]; 26.21/9.53 561[label="compare2 (Just xwv54) (Just xwv55) True",fontsize=16,color="black",shape="box"];561 -> 718[label="",style="solid", color="black", weight=3]; 26.21/9.53 562 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 562[label="xwv4000 * Pos xwv30010",fontsize=16,color="magenta"];562 -> 719[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 562 -> 720[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 563 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 563[label="Pos xwv40010 * xwv3000",fontsize=16,color="magenta"];563 -> 721[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 563 -> 722[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 564 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 564[label="xwv4000 * Pos xwv30010",fontsize=16,color="magenta"];564 -> 723[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 564 -> 724[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 565 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 565[label="Neg xwv40010 * xwv3000",fontsize=16,color="magenta"];565 -> 725[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 565 -> 726[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 566 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 566[label="xwv4000 * Neg xwv30010",fontsize=16,color="magenta"];566 -> 727[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 566 -> 728[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 567 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 567[label="Pos xwv40010 * xwv3000",fontsize=16,color="magenta"];567 -> 729[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 567 -> 730[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 568 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 568[label="xwv4000 * Neg xwv30010",fontsize=16,color="magenta"];568 -> 731[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 568 -> 732[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 569 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 569[label="Neg xwv40010 * xwv3000",fontsize=16,color="magenta"];569 -> 733[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 569 -> 734[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 570 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 570[label="xwv4000 * Pos xwv30010",fontsize=16,color="magenta"];570 -> 735[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 570 -> 736[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 571 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 571[label="Pos xwv40010 * xwv3000",fontsize=16,color="magenta"];571 -> 737[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 571 -> 738[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 572 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 572[label="xwv4000 * Pos xwv30010",fontsize=16,color="magenta"];572 -> 739[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 572 -> 740[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 573 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 573[label="Neg xwv40010 * xwv3000",fontsize=16,color="magenta"];573 -> 741[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 573 -> 742[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 574 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 574[label="xwv4000 * Neg xwv30010",fontsize=16,color="magenta"];574 -> 743[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 574 -> 744[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 575 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 575[label="Pos xwv40010 * xwv3000",fontsize=16,color="magenta"];575 -> 745[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 575 -> 746[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 576 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 576[label="xwv4000 * Neg xwv30010",fontsize=16,color="magenta"];576 -> 747[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 576 -> 748[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 577 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 577[label="Neg xwv40010 * xwv3000",fontsize=16,color="magenta"];577 -> 749[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 577 -> 750[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 578[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];578 -> 751[label="",style="solid", color="black", weight=3]; 26.21/9.53 579[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];579 -> 752[label="",style="solid", color="black", weight=3]; 26.21/9.53 580[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];580 -> 753[label="",style="solid", color="black", weight=3]; 26.21/9.53 581[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];581 -> 754[label="",style="solid", color="black", weight=3]; 26.21/9.53 582[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];582 -> 755[label="",style="solid", color="black", weight=3]; 26.21/9.53 583[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];583 -> 756[label="",style="solid", color="black", weight=3]; 26.21/9.53 1031 -> 1028[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1031[label="xwv4001 == xwv3001 && xwv4002 == xwv3002",fontsize=16,color="magenta"];1031 -> 1069[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1031 -> 1070[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1032[label="xwv4000 == xwv3000",fontsize=16,color="blue",shape="box"];4882[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 4882[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4882 -> 1071[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4883[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 4883[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4883 -> 1072[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4884[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 4884[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4884 -> 1073[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4885[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 4885[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4885 -> 1074[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4886[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 4886[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4886 -> 1075[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4887[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 4887[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4887 -> 1076[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4888[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 4888[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4888 -> 1077[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4889[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 4889[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4889 -> 1078[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4890[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 4890[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4890 -> 1079[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4891[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 4891[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4891 -> 1080[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4892[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 4892[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4892 -> 1081[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4893[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 4893[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4893 -> 1082[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4894[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 4894[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4894 -> 1083[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4895[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1032 -> 4895[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4895 -> 1084[label="",style="solid", color="blue", weight=3]; 26.21/9.53 1012[label="compare2 (xwv65,xwv66,xwv67) (xwv68,xwv69,xwv70) False",fontsize=16,color="black",shape="box"];1012 -> 1085[label="",style="solid", color="black", weight=3]; 26.21/9.53 1013[label="compare2 (xwv65,xwv66,xwv67) (xwv68,xwv69,xwv70) True",fontsize=16,color="black",shape="box"];1013 -> 1086[label="",style="solid", color="black", weight=3]; 26.21/9.53 600 -> 528[label="",style="dashed", color="red", weight=0]; 26.21/9.53 600[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];600 -> 787[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 600 -> 788[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 601 -> 529[label="",style="dashed", color="red", weight=0]; 26.21/9.53 601[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];601 -> 789[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 601 -> 790[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 602 -> 530[label="",style="dashed", color="red", weight=0]; 26.21/9.53 602[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];602 -> 791[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 602 -> 792[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 603 -> 531[label="",style="dashed", color="red", weight=0]; 26.21/9.53 603[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];603 -> 793[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 603 -> 794[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 604 -> 532[label="",style="dashed", color="red", weight=0]; 26.21/9.53 604[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];604 -> 795[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 604 -> 796[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 605 -> 533[label="",style="dashed", color="red", weight=0]; 26.21/9.53 605[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];605 -> 797[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 605 -> 798[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 606 -> 534[label="",style="dashed", color="red", weight=0]; 26.21/9.53 606[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];606 -> 799[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 606 -> 800[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 607 -> 535[label="",style="dashed", color="red", weight=0]; 26.21/9.53 607[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];607 -> 801[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 607 -> 802[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 608 -> 536[label="",style="dashed", color="red", weight=0]; 26.21/9.53 608[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];608 -> 803[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 608 -> 804[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 609 -> 537[label="",style="dashed", color="red", weight=0]; 26.21/9.53 609[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];609 -> 805[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 609 -> 806[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 610 -> 538[label="",style="dashed", color="red", weight=0]; 26.21/9.53 610[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];610 -> 807[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 610 -> 808[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 611 -> 539[label="",style="dashed", color="red", weight=0]; 26.21/9.53 611[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];611 -> 809[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 611 -> 810[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 612 -> 540[label="",style="dashed", color="red", weight=0]; 26.21/9.53 612[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];612 -> 811[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 612 -> 812[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 613 -> 541[label="",style="dashed", color="red", weight=0]; 26.21/9.53 613[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];613 -> 813[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 613 -> 814[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 614[label="compare2 (Left xwv76) (Left xwv77) False",fontsize=16,color="black",shape="box"];614 -> 815[label="",style="solid", color="black", weight=3]; 26.21/9.53 615[label="compare2 (Left xwv76) (Left xwv77) True",fontsize=16,color="black",shape="box"];615 -> 816[label="",style="solid", color="black", weight=3]; 26.21/9.53 616[label="compare1 (Left xwv4000) (Right xwv3000) True",fontsize=16,color="black",shape="box"];616 -> 817[label="",style="solid", color="black", weight=3]; 26.21/9.53 617[label="compare1 (Right xwv4000) (Left xwv3000) False",fontsize=16,color="black",shape="box"];617 -> 818[label="",style="solid", color="black", weight=3]; 26.21/9.53 618 -> 528[label="",style="dashed", color="red", weight=0]; 26.21/9.53 618[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];618 -> 819[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 618 -> 820[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 619 -> 529[label="",style="dashed", color="red", weight=0]; 26.21/9.53 619[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];619 -> 821[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 619 -> 822[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 620 -> 530[label="",style="dashed", color="red", weight=0]; 26.21/9.53 620[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];620 -> 823[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 620 -> 824[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 621 -> 531[label="",style="dashed", color="red", weight=0]; 26.21/9.53 621[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];621 -> 825[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 621 -> 826[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 622 -> 532[label="",style="dashed", color="red", weight=0]; 26.21/9.53 622[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];622 -> 827[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 622 -> 828[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 623 -> 533[label="",style="dashed", color="red", weight=0]; 26.21/9.53 623[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];623 -> 829[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 623 -> 830[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 624 -> 534[label="",style="dashed", color="red", weight=0]; 26.21/9.53 624[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];624 -> 831[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 624 -> 832[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 625 -> 535[label="",style="dashed", color="red", weight=0]; 26.21/9.53 625[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];625 -> 833[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 625 -> 834[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 626 -> 536[label="",style="dashed", color="red", weight=0]; 26.21/9.53 626[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];626 -> 835[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 626 -> 836[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 627 -> 537[label="",style="dashed", color="red", weight=0]; 26.21/9.53 627[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];627 -> 837[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 627 -> 838[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 628 -> 538[label="",style="dashed", color="red", weight=0]; 26.21/9.53 628[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];628 -> 839[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 628 -> 840[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 629 -> 539[label="",style="dashed", color="red", weight=0]; 26.21/9.53 629[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];629 -> 841[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 629 -> 842[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 630 -> 540[label="",style="dashed", color="red", weight=0]; 26.21/9.53 630[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];630 -> 843[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 630 -> 844[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 631 -> 541[label="",style="dashed", color="red", weight=0]; 26.21/9.53 631[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];631 -> 845[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 631 -> 846[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 632[label="compare2 (Right xwv83) (Right xwv84) False",fontsize=16,color="black",shape="box"];632 -> 847[label="",style="solid", color="black", weight=3]; 26.21/9.53 633[label="compare2 (Right xwv83) (Right xwv84) True",fontsize=16,color="black",shape="box"];633 -> 848[label="",style="solid", color="black", weight=3]; 26.21/9.53 639[label="primMulInt (Pos xwv40000) xwv3001",fontsize=16,color="burlywood",shape="box"];4896[label="xwv3001/Pos xwv30010",fontsize=10,color="white",style="solid",shape="box"];639 -> 4896[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4896 -> 849[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4897[label="xwv3001/Neg xwv30010",fontsize=10,color="white",style="solid",shape="box"];639 -> 4897[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4897 -> 850[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 640[label="primMulInt (Neg xwv40000) xwv3001",fontsize=16,color="burlywood",shape="box"];4898[label="xwv3001/Pos xwv30010",fontsize=10,color="white",style="solid",shape="box"];640 -> 4898[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4898 -> 851[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4899[label="xwv3001/Neg xwv30010",fontsize=10,color="white",style="solid",shape="box"];640 -> 4899[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4899 -> 852[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 641[label="Integer xwv40000 * Integer xwv30010",fontsize=16,color="black",shape="box"];641 -> 853[label="",style="solid", color="black", weight=3]; 26.21/9.53 3743[label="xwv21 : xwv22",fontsize=16,color="green",shape="box"];3744[label="xwv19",fontsize=16,color="green",shape="box"];869[label="xwv15",fontsize=16,color="green",shape="box"];870[label="xwv18",fontsize=16,color="green",shape="box"];871[label="xwv15 == xwv21",fontsize=16,color="blue",shape="box"];4900[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];871 -> 4900[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4900 -> 880[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4901[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];871 -> 4901[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4901 -> 881[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4902[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];871 -> 4902[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4902 -> 882[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4903[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];871 -> 4903[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4903 -> 883[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4904[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];871 -> 4904[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4904 -> 884[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4905[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];871 -> 4905[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4905 -> 885[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4906[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];871 -> 4906[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4906 -> 886[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4907[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];871 -> 4907[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4907 -> 887[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4908[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];871 -> 4908[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4908 -> 888[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4909[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];871 -> 4909[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4909 -> 889[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4910[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];871 -> 4910[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4910 -> 890[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4911[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];871 -> 4911[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4911 -> 891[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4912[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];871 -> 4912[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4912 -> 892[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4913[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];871 -> 4913[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4913 -> 893[label="",style="solid", color="blue", weight=3]; 26.21/9.53 872 -> 541[label="",style="dashed", color="red", weight=0]; 26.21/9.53 872[label="xwv16 == xwv22",fontsize=16,color="magenta"];872 -> 894[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 872 -> 895[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 873[label="xwv21",fontsize=16,color="green",shape="box"];874[label="xwv19",fontsize=16,color="green",shape="box"];875[label="xwv16",fontsize=16,color="green",shape="box"];876[label="xwv22",fontsize=16,color="green",shape="box"];877[label="xwv17",fontsize=16,color="green",shape="box"];878[label="xwv20",fontsize=16,color="green",shape="box"];868[label="FiniteMap.delFromFM0 (xwv97 : xwv98) xwv99 xwv100 xwv101 xwv102 (xwv103 : xwv104) (xwv105 && xwv106)",fontsize=16,color="burlywood",shape="triangle"];4914[label="xwv105/False",fontsize=10,color="white",style="solid",shape="box"];868 -> 4914[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4914 -> 896[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4915[label="xwv105/True",fontsize=10,color="white",style="solid",shape="box"];868 -> 4915[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4915 -> 897[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 3829[label="xwv340",fontsize=16,color="green",shape="box"];1356[label="FiniteMap.sizeFM xwv33",fontsize=16,color="burlywood",shape="triangle"];4916[label="xwv33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4916[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4916 -> 1551[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4917[label="xwv33/FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=10,color="white",style="solid",shape="box"];1356 -> 4917[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4917 -> 1552[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 3830 -> 3846[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3830[label="primPlusInt (Pos xwv3440) (FiniteMap.sizeFM xwv344)",fontsize=16,color="magenta"];3830 -> 3847[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3831 -> 3848[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3831[label="primPlusInt (Neg xwv3440) (FiniteMap.sizeFM xwv344)",fontsize=16,color="magenta"];3831 -> 3849[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 915[label="LT == LT",fontsize=16,color="black",shape="box"];915 -> 1402[label="",style="solid", color="black", weight=3]; 26.21/9.53 916[label="LT == EQ",fontsize=16,color="black",shape="box"];916 -> 1403[label="",style="solid", color="black", weight=3]; 26.21/9.53 917[label="LT == GT",fontsize=16,color="black",shape="box"];917 -> 1404[label="",style="solid", color="black", weight=3]; 26.21/9.53 918[label="EQ == LT",fontsize=16,color="black",shape="box"];918 -> 1405[label="",style="solid", color="black", weight=3]; 26.21/9.53 919[label="EQ == EQ",fontsize=16,color="black",shape="box"];919 -> 1406[label="",style="solid", color="black", weight=3]; 26.21/9.53 920[label="EQ == GT",fontsize=16,color="black",shape="box"];920 -> 1407[label="",style="solid", color="black", weight=3]; 26.21/9.53 921[label="GT == LT",fontsize=16,color="black",shape="box"];921 -> 1408[label="",style="solid", color="black", weight=3]; 26.21/9.53 922[label="GT == EQ",fontsize=16,color="black",shape="box"];922 -> 1409[label="",style="solid", color="black", weight=3]; 26.21/9.53 923[label="GT == GT",fontsize=16,color="black",shape="box"];923 -> 1410[label="",style="solid", color="black", weight=3]; 26.21/9.53 3832 -> 1356[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3832[label="FiniteMap.sizeFM xwv344",fontsize=16,color="magenta"];3832 -> 3850[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3833[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];3833 -> 3851[label="",style="solid", color="black", weight=3]; 26.21/9.53 3834 -> 3807[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3834[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv340",fontsize=16,color="magenta"];1579 -> 529[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1579[label="compare xwv202 xwv201 == GT",fontsize=16,color="magenta"];1579 -> 1744[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1579 -> 1745[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3835 -> 3852[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3835[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv340 xwv341 xwv344 xwv340 xwv340 xwv341 xwv340 xwv344 (FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv340 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv340)",fontsize=16,color="magenta"];3835 -> 3853[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3836[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv340 xwv341 xwv344 xwv340 xwv340 xwv344 xwv344",fontsize=16,color="burlywood",shape="box"];4918[label="xwv344/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3836 -> 4918[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4918 -> 3854[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4919[label="xwv344/FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444",fontsize=10,color="white",style="solid",shape="box"];3836 -> 4919[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4919 -> 3855[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4593[label="FiniteMap.Branch xwv458 xwv459 (FiniteMap.mkBranchUnbox xwv461 xwv458 xwv460 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv461 xwv458 xwv460 + FiniteMap.mkBranchRight_size xwv461 xwv458 xwv460)) xwv460 xwv461",fontsize=16,color="green",shape="box"];4593 -> 4600[label="",style="dashed", color="green", weight=3]; 26.21/9.53 658[label="FiniteMap.glueBal4 FiniteMap.EmptyFM xwv34",fontsize=16,color="black",shape="box"];658 -> 907[label="",style="solid", color="black", weight=3]; 26.21/9.53 659[label="FiniteMap.glueBal (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];659 -> 908[label="",style="solid", color="black", weight=3]; 26.21/9.53 660[label="FiniteMap.glueBal (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];660 -> 909[label="",style="solid", color="black", weight=3]; 26.21/9.53 661[label="xwv30000",fontsize=16,color="green",shape="box"];662[label="xwv40000",fontsize=16,color="green",shape="box"];663[label="LT",fontsize=16,color="green",shape="box"];664[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];664 -> 910[label="",style="solid", color="black", weight=3]; 26.21/9.53 1037 -> 528[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1037[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1037 -> 1130[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1037 -> 1131[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1038 -> 529[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1038[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1038 -> 1132[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1038 -> 1133[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1039 -> 530[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1039[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1039 -> 1134[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1039 -> 1135[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1040 -> 531[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1040[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1040 -> 1136[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1040 -> 1137[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1041 -> 532[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1041[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1041 -> 1138[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1041 -> 1139[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1042 -> 533[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1042[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1042 -> 1140[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1042 -> 1141[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1043 -> 534[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1043[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1043 -> 1142[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1043 -> 1143[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1044 -> 535[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1044[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1044 -> 1144[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1044 -> 1145[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1045 -> 536[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1045[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1045 -> 1146[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1045 -> 1147[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1046 -> 537[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1046[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1046 -> 1148[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1046 -> 1149[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1047 -> 538[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1047[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1047 -> 1150[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1047 -> 1151[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1048 -> 539[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1048[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1048 -> 1152[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1048 -> 1153[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1049 -> 540[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1049[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1049 -> 1154[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1049 -> 1155[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1050 -> 541[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1050[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1050 -> 1156[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1050 -> 1157[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1051 -> 528[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1051[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1052 -> 529[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1052[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1053 -> 530[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1053[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1054 -> 531[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1054[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1055 -> 532[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1055[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1056 -> 533[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1056[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1057 -> 534[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1057[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1058 -> 535[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1058[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1059 -> 536[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1059[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1060 -> 537[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1060[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1061 -> 538[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1061[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1062 -> 539[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1062[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1063 -> 540[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1063[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1064 -> 541[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1064[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1065[label="False && xwv131",fontsize=16,color="black",shape="box"];1065 -> 1158[label="",style="solid", color="black", weight=3]; 26.21/9.53 1066[label="True && xwv131",fontsize=16,color="black",shape="box"];1066 -> 1159[label="",style="solid", color="black", weight=3]; 26.21/9.53 1067[label="compare1 (xwv113,xwv114) (xwv115,xwv116) ((xwv113,xwv114) <= (xwv115,xwv116))",fontsize=16,color="black",shape="box"];1067 -> 1160[label="",style="solid", color="black", weight=3]; 26.21/9.53 1068[label="EQ",fontsize=16,color="green",shape="box"];687[label="LT",fontsize=16,color="green",shape="box"];688[label="compare0 (Just xwv4000) Nothing otherwise",fontsize=16,color="black",shape="box"];688 -> 990[label="",style="solid", color="black", weight=3]; 26.21/9.53 689[label="xwv4000",fontsize=16,color="green",shape="box"];690[label="xwv3000",fontsize=16,color="green",shape="box"];528[label="xwv4000 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4920[label="xwv4000/False",fontsize=10,color="white",style="solid",shape="box"];528 -> 4920[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4920 -> 665[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4921[label="xwv4000/True",fontsize=10,color="white",style="solid",shape="box"];528 -> 4921[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4921 -> 666[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 691[label="xwv4000",fontsize=16,color="green",shape="box"];692[label="xwv3000",fontsize=16,color="green",shape="box"];693[label="xwv4000",fontsize=16,color="green",shape="box"];694[label="xwv3000",fontsize=16,color="green",shape="box"];530[label="xwv4000 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4922[label="xwv4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];530 -> 4922[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4922 -> 670[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4923[label="xwv4000/Just xwv40000",fontsize=10,color="white",style="solid",shape="box"];530 -> 4923[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4923 -> 671[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 695[label="xwv4000",fontsize=16,color="green",shape="box"];696[label="xwv3000",fontsize=16,color="green",shape="box"];531[label="xwv4000 == xwv3000",fontsize=16,color="black",shape="triangle"];531 -> 672[label="",style="solid", color="black", weight=3]; 26.21/9.53 697[label="xwv4000",fontsize=16,color="green",shape="box"];698[label="xwv3000",fontsize=16,color="green",shape="box"];532[label="xwv4000 == xwv3000",fontsize=16,color="black",shape="triangle"];532 -> 673[label="",style="solid", color="black", weight=3]; 26.21/9.53 699[label="xwv4000",fontsize=16,color="green",shape="box"];700[label="xwv3000",fontsize=16,color="green",shape="box"];533[label="xwv4000 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4924[label="xwv4000/Left xwv40000",fontsize=10,color="white",style="solid",shape="box"];533 -> 4924[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4924 -> 674[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4925[label="xwv4000/Right xwv40000",fontsize=10,color="white",style="solid",shape="box"];533 -> 4925[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4925 -> 675[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 701[label="xwv4000",fontsize=16,color="green",shape="box"];702[label="xwv3000",fontsize=16,color="green",shape="box"];534[label="xwv4000 == xwv3000",fontsize=16,color="black",shape="triangle"];534 -> 676[label="",style="solid", color="black", weight=3]; 26.21/9.53 703[label="xwv4000",fontsize=16,color="green",shape="box"];704[label="xwv3000",fontsize=16,color="green",shape="box"];535[label="xwv4000 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4926[label="xwv4000/(xwv40000,xwv40001)",fontsize=10,color="white",style="solid",shape="box"];535 -> 4926[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4926 -> 677[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 705[label="xwv4000",fontsize=16,color="green",shape="box"];706[label="xwv3000",fontsize=16,color="green",shape="box"];536[label="xwv4000 == xwv3000",fontsize=16,color="black",shape="triangle"];536 -> 678[label="",style="solid", color="black", weight=3]; 26.21/9.53 707[label="xwv4000",fontsize=16,color="green",shape="box"];708[label="xwv3000",fontsize=16,color="green",shape="box"];537[label="xwv4000 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4927[label="xwv4000/xwv40000 :% xwv40001",fontsize=10,color="white",style="solid",shape="box"];537 -> 4927[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4927 -> 679[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 709[label="xwv4000",fontsize=16,color="green",shape="box"];710[label="xwv3000",fontsize=16,color="green",shape="box"];538[label="xwv4000 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4928[label="xwv4000/()",fontsize=10,color="white",style="solid",shape="box"];538 -> 4928[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4928 -> 680[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 711[label="xwv4000",fontsize=16,color="green",shape="box"];712[label="xwv3000",fontsize=16,color="green",shape="box"];539[label="xwv4000 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4929[label="xwv4000/(xwv40000,xwv40001,xwv40002)",fontsize=10,color="white",style="solid",shape="box"];539 -> 4929[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4929 -> 681[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 713[label="xwv4000",fontsize=16,color="green",shape="box"];714[label="xwv3000",fontsize=16,color="green",shape="box"];540[label="xwv4000 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4930[label="xwv4000/Integer xwv40000",fontsize=10,color="white",style="solid",shape="box"];540 -> 4930[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4930 -> 682[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 715[label="xwv4000",fontsize=16,color="green",shape="box"];716[label="xwv3000",fontsize=16,color="green",shape="box"];541[label="xwv4000 == xwv3000",fontsize=16,color="burlywood",shape="triangle"];4931[label="xwv4000/xwv40000 : xwv40001",fontsize=10,color="white",style="solid",shape="box"];541 -> 4931[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4931 -> 683[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4932[label="xwv4000/[]",fontsize=10,color="white",style="solid",shape="box"];541 -> 4932[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4932 -> 684[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 717 -> 1243[label="",style="dashed", color="red", weight=0]; 26.21/9.53 717[label="compare1 (Just xwv54) (Just xwv55) (Just xwv54 <= Just xwv55)",fontsize=16,color="magenta"];717 -> 1244[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 717 -> 1245[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 717 -> 1246[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 718[label="EQ",fontsize=16,color="green",shape="box"];719[label="xwv4000",fontsize=16,color="green",shape="box"];720[label="Pos xwv30010",fontsize=16,color="green",shape="box"];721[label="Pos xwv40010",fontsize=16,color="green",shape="box"];722[label="xwv3000",fontsize=16,color="green",shape="box"];723[label="xwv4000",fontsize=16,color="green",shape="box"];724[label="Pos xwv30010",fontsize=16,color="green",shape="box"];725[label="Neg xwv40010",fontsize=16,color="green",shape="box"];726[label="xwv3000",fontsize=16,color="green",shape="box"];727[label="xwv4000",fontsize=16,color="green",shape="box"];728[label="Neg xwv30010",fontsize=16,color="green",shape="box"];729[label="Pos xwv40010",fontsize=16,color="green",shape="box"];730[label="xwv3000",fontsize=16,color="green",shape="box"];731[label="xwv4000",fontsize=16,color="green",shape="box"];732[label="Neg xwv30010",fontsize=16,color="green",shape="box"];733[label="Neg xwv40010",fontsize=16,color="green",shape="box"];734[label="xwv3000",fontsize=16,color="green",shape="box"];735[label="xwv4000",fontsize=16,color="green",shape="box"];736[label="Pos xwv30010",fontsize=16,color="green",shape="box"];737[label="Pos xwv40010",fontsize=16,color="green",shape="box"];738[label="xwv3000",fontsize=16,color="green",shape="box"];739[label="xwv4000",fontsize=16,color="green",shape="box"];740[label="Pos xwv30010",fontsize=16,color="green",shape="box"];741[label="Neg xwv40010",fontsize=16,color="green",shape="box"];742[label="xwv3000",fontsize=16,color="green",shape="box"];743[label="xwv4000",fontsize=16,color="green",shape="box"];744[label="Neg xwv30010",fontsize=16,color="green",shape="box"];745[label="Pos xwv40010",fontsize=16,color="green",shape="box"];746[label="xwv3000",fontsize=16,color="green",shape="box"];747[label="xwv4000",fontsize=16,color="green",shape="box"];748[label="Neg xwv30010",fontsize=16,color="green",shape="box"];749[label="Neg xwv40010",fontsize=16,color="green",shape="box"];750[label="xwv3000",fontsize=16,color="green",shape="box"];751[label="LT",fontsize=16,color="green",shape="box"];752[label="LT",fontsize=16,color="green",shape="box"];753[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];753 -> 992[label="",style="solid", color="black", weight=3]; 26.21/9.53 754[label="LT",fontsize=16,color="green",shape="box"];755[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];755 -> 993[label="",style="solid", color="black", weight=3]; 26.21/9.53 756[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];756 -> 994[label="",style="solid", color="black", weight=3]; 26.21/9.53 1069[label="xwv4002 == xwv3002",fontsize=16,color="blue",shape="box"];4933[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 4933[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4933 -> 1161[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4934[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 4934[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4934 -> 1162[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4935[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 4935[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4935 -> 1163[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4936[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 4936[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4936 -> 1164[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4937[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 4937[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4937 -> 1165[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4938[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 4938[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4938 -> 1166[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4939[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 4939[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4939 -> 1167[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4940[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 4940[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4940 -> 1168[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4941[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 4941[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4941 -> 1169[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4942[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 4942[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4942 -> 1170[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4943[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 4943[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4943 -> 1171[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4944[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 4944[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4944 -> 1172[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4945[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 4945[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4945 -> 1173[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4946[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 4946[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4946 -> 1174[label="",style="solid", color="blue", weight=3]; 26.21/9.53 1070[label="xwv4001 == xwv3001",fontsize=16,color="blue",shape="box"];4947[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 4947[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4947 -> 1175[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4948[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 4948[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4948 -> 1176[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4949[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 4949[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4949 -> 1177[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4950[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 4950[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4950 -> 1178[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4951[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 4951[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4951 -> 1179[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4952[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 4952[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4952 -> 1180[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4953[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 4953[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4953 -> 1181[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4954[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 4954[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4954 -> 1182[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4955[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 4955[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4955 -> 1183[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4956[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 4956[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4956 -> 1184[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4957[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 4957[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4957 -> 1185[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4958[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 4958[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4958 -> 1186[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4959[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 4959[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4959 -> 1187[label="",style="solid", color="blue", weight=3]; 26.21/9.53 4960[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 4960[label="",style="solid", color="blue", weight=9]; 26.21/9.53 4960 -> 1188[label="",style="solid", color="blue", weight=3]; 26.21/9.53 1071 -> 528[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1071[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1071 -> 1189[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1071 -> 1190[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1072 -> 529[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1072[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1072 -> 1191[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1072 -> 1192[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1073 -> 530[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1073[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1073 -> 1193[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1073 -> 1194[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1074 -> 531[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1074[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1074 -> 1195[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1074 -> 1196[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1075 -> 532[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1075[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1075 -> 1197[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1075 -> 1198[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1076 -> 533[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1076[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1076 -> 1199[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1076 -> 1200[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1077 -> 534[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1077[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1077 -> 1201[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1077 -> 1202[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1078 -> 535[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1078[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1078 -> 1203[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1078 -> 1204[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1079 -> 536[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1079[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1079 -> 1205[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1079 -> 1206[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1080 -> 537[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1080[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1080 -> 1207[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1080 -> 1208[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1081 -> 538[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1081[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1081 -> 1209[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1081 -> 1210[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1082 -> 539[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1082[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1082 -> 1211[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1082 -> 1212[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1083 -> 540[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1083[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1083 -> 1213[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1083 -> 1214[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1084 -> 541[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1084[label="xwv4000 == xwv3000",fontsize=16,color="magenta"];1084 -> 1215[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1084 -> 1216[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1085[label="compare1 (xwv65,xwv66,xwv67) (xwv68,xwv69,xwv70) ((xwv65,xwv66,xwv67) <= (xwv68,xwv69,xwv70))",fontsize=16,color="black",shape="box"];1085 -> 1217[label="",style="solid", color="black", weight=3]; 26.21/9.53 1086[label="EQ",fontsize=16,color="green",shape="box"];787[label="xwv4000",fontsize=16,color="green",shape="box"];788[label="xwv3000",fontsize=16,color="green",shape="box"];789[label="xwv4000",fontsize=16,color="green",shape="box"];790[label="xwv3000",fontsize=16,color="green",shape="box"];791[label="xwv4000",fontsize=16,color="green",shape="box"];792[label="xwv3000",fontsize=16,color="green",shape="box"];793[label="xwv4000",fontsize=16,color="green",shape="box"];794[label="xwv3000",fontsize=16,color="green",shape="box"];795[label="xwv4000",fontsize=16,color="green",shape="box"];796[label="xwv3000",fontsize=16,color="green",shape="box"];797[label="xwv4000",fontsize=16,color="green",shape="box"];798[label="xwv3000",fontsize=16,color="green",shape="box"];799[label="xwv4000",fontsize=16,color="green",shape="box"];800[label="xwv3000",fontsize=16,color="green",shape="box"];801[label="xwv4000",fontsize=16,color="green",shape="box"];802[label="xwv3000",fontsize=16,color="green",shape="box"];803[label="xwv4000",fontsize=16,color="green",shape="box"];804[label="xwv3000",fontsize=16,color="green",shape="box"];805[label="xwv4000",fontsize=16,color="green",shape="box"];806[label="xwv3000",fontsize=16,color="green",shape="box"];807[label="xwv4000",fontsize=16,color="green",shape="box"];808[label="xwv3000",fontsize=16,color="green",shape="box"];809[label="xwv4000",fontsize=16,color="green",shape="box"];810[label="xwv3000",fontsize=16,color="green",shape="box"];811[label="xwv4000",fontsize=16,color="green",shape="box"];812[label="xwv3000",fontsize=16,color="green",shape="box"];813[label="xwv4000",fontsize=16,color="green",shape="box"];814[label="xwv3000",fontsize=16,color="green",shape="box"];815 -> 1314[label="",style="dashed", color="red", weight=0]; 26.21/9.53 815[label="compare1 (Left xwv76) (Left xwv77) (Left xwv76 <= Left xwv77)",fontsize=16,color="magenta"];815 -> 1315[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 815 -> 1316[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 815 -> 1317[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 816[label="EQ",fontsize=16,color="green",shape="box"];817[label="LT",fontsize=16,color="green",shape="box"];818[label="compare0 (Right xwv4000) (Left xwv3000) otherwise",fontsize=16,color="black",shape="box"];818 -> 1088[label="",style="solid", color="black", weight=3]; 26.21/9.53 819[label="xwv4000",fontsize=16,color="green",shape="box"];820[label="xwv3000",fontsize=16,color="green",shape="box"];821[label="xwv4000",fontsize=16,color="green",shape="box"];822[label="xwv3000",fontsize=16,color="green",shape="box"];823[label="xwv4000",fontsize=16,color="green",shape="box"];824[label="xwv3000",fontsize=16,color="green",shape="box"];825[label="xwv4000",fontsize=16,color="green",shape="box"];826[label="xwv3000",fontsize=16,color="green",shape="box"];827[label="xwv4000",fontsize=16,color="green",shape="box"];828[label="xwv3000",fontsize=16,color="green",shape="box"];829[label="xwv4000",fontsize=16,color="green",shape="box"];830[label="xwv3000",fontsize=16,color="green",shape="box"];831[label="xwv4000",fontsize=16,color="green",shape="box"];832[label="xwv3000",fontsize=16,color="green",shape="box"];833[label="xwv4000",fontsize=16,color="green",shape="box"];834[label="xwv3000",fontsize=16,color="green",shape="box"];835[label="xwv4000",fontsize=16,color="green",shape="box"];836[label="xwv3000",fontsize=16,color="green",shape="box"];837[label="xwv4000",fontsize=16,color="green",shape="box"];838[label="xwv3000",fontsize=16,color="green",shape="box"];839[label="xwv4000",fontsize=16,color="green",shape="box"];840[label="xwv3000",fontsize=16,color="green",shape="box"];841[label="xwv4000",fontsize=16,color="green",shape="box"];842[label="xwv3000",fontsize=16,color="green",shape="box"];843[label="xwv4000",fontsize=16,color="green",shape="box"];844[label="xwv3000",fontsize=16,color="green",shape="box"];845[label="xwv4000",fontsize=16,color="green",shape="box"];846[label="xwv3000",fontsize=16,color="green",shape="box"];847 -> 1325[label="",style="dashed", color="red", weight=0]; 26.21/9.53 847[label="compare1 (Right xwv83) (Right xwv84) (Right xwv83 <= Right xwv84)",fontsize=16,color="magenta"];847 -> 1326[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 847 -> 1327[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 847 -> 1328[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 848[label="EQ",fontsize=16,color="green",shape="box"];849[label="primMulInt (Pos xwv40000) (Pos xwv30010)",fontsize=16,color="black",shape="box"];849 -> 1090[label="",style="solid", color="black", weight=3]; 26.21/9.53 850[label="primMulInt (Pos xwv40000) (Neg xwv30010)",fontsize=16,color="black",shape="box"];850 -> 1091[label="",style="solid", color="black", weight=3]; 26.21/9.53 851[label="primMulInt (Neg xwv40000) (Pos xwv30010)",fontsize=16,color="black",shape="box"];851 -> 1092[label="",style="solid", color="black", weight=3]; 26.21/9.53 852[label="primMulInt (Neg xwv40000) (Neg xwv30010)",fontsize=16,color="black",shape="box"];852 -> 1093[label="",style="solid", color="black", weight=3]; 26.21/9.53 853[label="Integer (primMulInt xwv40000 xwv30010)",fontsize=16,color="green",shape="box"];853 -> 1094[label="",style="dashed", color="green", weight=3]; 26.21/9.53 880 -> 528[label="",style="dashed", color="red", weight=0]; 26.21/9.53 880[label="xwv15 == xwv21",fontsize=16,color="magenta"];880 -> 1095[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 880 -> 1096[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 881 -> 529[label="",style="dashed", color="red", weight=0]; 26.21/9.53 881[label="xwv15 == xwv21",fontsize=16,color="magenta"];881 -> 1097[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 881 -> 1098[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 882 -> 530[label="",style="dashed", color="red", weight=0]; 26.21/9.53 882[label="xwv15 == xwv21",fontsize=16,color="magenta"];882 -> 1099[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 882 -> 1100[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 883 -> 531[label="",style="dashed", color="red", weight=0]; 26.21/9.53 883[label="xwv15 == xwv21",fontsize=16,color="magenta"];883 -> 1101[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 883 -> 1102[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 884 -> 532[label="",style="dashed", color="red", weight=0]; 26.21/9.53 884[label="xwv15 == xwv21",fontsize=16,color="magenta"];884 -> 1103[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 884 -> 1104[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 885 -> 533[label="",style="dashed", color="red", weight=0]; 26.21/9.53 885[label="xwv15 == xwv21",fontsize=16,color="magenta"];885 -> 1105[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 885 -> 1106[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 886 -> 534[label="",style="dashed", color="red", weight=0]; 26.21/9.53 886[label="xwv15 == xwv21",fontsize=16,color="magenta"];886 -> 1107[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 886 -> 1108[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 887 -> 535[label="",style="dashed", color="red", weight=0]; 26.21/9.53 887[label="xwv15 == xwv21",fontsize=16,color="magenta"];887 -> 1109[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 887 -> 1110[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 888 -> 536[label="",style="dashed", color="red", weight=0]; 26.21/9.53 888[label="xwv15 == xwv21",fontsize=16,color="magenta"];888 -> 1111[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 888 -> 1112[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 889 -> 537[label="",style="dashed", color="red", weight=0]; 26.21/9.53 889[label="xwv15 == xwv21",fontsize=16,color="magenta"];889 -> 1113[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 889 -> 1114[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 890 -> 538[label="",style="dashed", color="red", weight=0]; 26.21/9.53 890[label="xwv15 == xwv21",fontsize=16,color="magenta"];890 -> 1115[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 890 -> 1116[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 891 -> 539[label="",style="dashed", color="red", weight=0]; 26.21/9.53 891[label="xwv15 == xwv21",fontsize=16,color="magenta"];891 -> 1117[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 891 -> 1118[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 892 -> 540[label="",style="dashed", color="red", weight=0]; 26.21/9.53 892[label="xwv15 == xwv21",fontsize=16,color="magenta"];892 -> 1119[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 892 -> 1120[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 893 -> 541[label="",style="dashed", color="red", weight=0]; 26.21/9.53 893[label="xwv15 == xwv21",fontsize=16,color="magenta"];893 -> 1121[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 893 -> 1122[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 894[label="xwv16",fontsize=16,color="green",shape="box"];895[label="xwv22",fontsize=16,color="green",shape="box"];896[label="FiniteMap.delFromFM0 (xwv97 : xwv98) xwv99 xwv100 xwv101 xwv102 (xwv103 : xwv104) (False && xwv106)",fontsize=16,color="black",shape="box"];896 -> 1123[label="",style="solid", color="black", weight=3]; 26.21/9.53 897[label="FiniteMap.delFromFM0 (xwv97 : xwv98) xwv99 xwv100 xwv101 xwv102 (xwv103 : xwv104) (True && xwv106)",fontsize=16,color="black",shape="box"];897 -> 1124[label="",style="solid", color="black", weight=3]; 26.21/9.53 1551[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1551 -> 1847[label="",style="solid", color="black", weight=3]; 26.21/9.53 1552[label="FiniteMap.sizeFM (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="black",shape="box"];1552 -> 1848[label="",style="solid", color="black", weight=3]; 26.21/9.53 3847 -> 1356[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3847[label="FiniteMap.sizeFM xwv344",fontsize=16,color="magenta"];3847 -> 3857[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3846[label="primPlusInt (Pos xwv3440) xwv345",fontsize=16,color="burlywood",shape="triangle"];4961[label="xwv345/Pos xwv3450",fontsize=10,color="white",style="solid",shape="box"];3846 -> 4961[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4961 -> 3858[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4962[label="xwv345/Neg xwv3450",fontsize=10,color="white",style="solid",shape="box"];3846 -> 4962[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4962 -> 3859[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 3849 -> 1356[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3849[label="FiniteMap.sizeFM xwv344",fontsize=16,color="magenta"];3849 -> 3860[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3848[label="primPlusInt (Neg xwv3440) xwv346",fontsize=16,color="burlywood",shape="triangle"];4963[label="xwv346/Pos xwv3460",fontsize=10,color="white",style="solid",shape="box"];3848 -> 4963[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4963 -> 3861[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4964[label="xwv346/Neg xwv3460",fontsize=10,color="white",style="solid",shape="box"];3848 -> 4964[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4964 -> 3862[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 1402[label="True",fontsize=16,color="green",shape="box"];1403[label="False",fontsize=16,color="green",shape="box"];1404[label="False",fontsize=16,color="green",shape="box"];1405[label="False",fontsize=16,color="green",shape="box"];1406[label="True",fontsize=16,color="green",shape="box"];1407[label="False",fontsize=16,color="green",shape="box"];1408[label="False",fontsize=16,color="green",shape="box"];1409[label="False",fontsize=16,color="green",shape="box"];1410[label="True",fontsize=16,color="green",shape="box"];3850[label="xwv344",fontsize=16,color="green",shape="box"];3851[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1744 -> 155[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1744[label="compare xwv202 xwv201",fontsize=16,color="magenta"];1744 -> 1835[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1744 -> 1836[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1745[label="GT",fontsize=16,color="green",shape="box"];3853 -> 1565[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3853[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv340 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv340",fontsize=16,color="magenta"];3853 -> 3863[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3853 -> 3864[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3852[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv340 xwv341 xwv344 xwv340 xwv340 xwv341 xwv340 xwv344 xwv347",fontsize=16,color="burlywood",shape="triangle"];4965[label="xwv347/False",fontsize=10,color="white",style="solid",shape="box"];3852 -> 4965[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4965 -> 3865[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4966[label="xwv347/True",fontsize=10,color="white",style="solid",shape="box"];3852 -> 4966[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4966 -> 3866[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 3854[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv340 xwv341 FiniteMap.EmptyFM xwv340 xwv340 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3854 -> 3879[label="",style="solid", color="black", weight=3]; 26.21/9.53 3855[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv340 xwv340 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444)",fontsize=16,color="black",shape="box"];3855 -> 3880[label="",style="solid", color="black", weight=3]; 26.21/9.53 4600[label="FiniteMap.mkBranchUnbox xwv461 xwv458 xwv460 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv461 xwv458 xwv460 + FiniteMap.mkBranchRight_size xwv461 xwv458 xwv460)",fontsize=16,color="black",shape="box"];4600 -> 4601[label="",style="solid", color="black", weight=3]; 26.21/9.53 907[label="xwv34",fontsize=16,color="green",shape="box"];908[label="FiniteMap.glueBal3 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];908 -> 1235[label="",style="solid", color="black", weight=3]; 26.21/9.53 909[label="FiniteMap.glueBal2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];909 -> 1236[label="",style="solid", color="black", weight=3]; 26.21/9.53 910[label="compare0 True False True",fontsize=16,color="black",shape="box"];910 -> 1237[label="",style="solid", color="black", weight=3]; 26.21/9.53 1130[label="xwv4001",fontsize=16,color="green",shape="box"];1131[label="xwv3001",fontsize=16,color="green",shape="box"];1132[label="xwv4001",fontsize=16,color="green",shape="box"];1133[label="xwv3001",fontsize=16,color="green",shape="box"];1134[label="xwv4001",fontsize=16,color="green",shape="box"];1135[label="xwv3001",fontsize=16,color="green",shape="box"];1136[label="xwv4001",fontsize=16,color="green",shape="box"];1137[label="xwv3001",fontsize=16,color="green",shape="box"];1138[label="xwv4001",fontsize=16,color="green",shape="box"];1139[label="xwv3001",fontsize=16,color="green",shape="box"];1140[label="xwv4001",fontsize=16,color="green",shape="box"];1141[label="xwv3001",fontsize=16,color="green",shape="box"];1142[label="xwv4001",fontsize=16,color="green",shape="box"];1143[label="xwv3001",fontsize=16,color="green",shape="box"];1144[label="xwv4001",fontsize=16,color="green",shape="box"];1145[label="xwv3001",fontsize=16,color="green",shape="box"];1146[label="xwv4001",fontsize=16,color="green",shape="box"];1147[label="xwv3001",fontsize=16,color="green",shape="box"];1148[label="xwv4001",fontsize=16,color="green",shape="box"];1149[label="xwv3001",fontsize=16,color="green",shape="box"];1150[label="xwv4001",fontsize=16,color="green",shape="box"];1151[label="xwv3001",fontsize=16,color="green",shape="box"];1152[label="xwv4001",fontsize=16,color="green",shape="box"];1153[label="xwv3001",fontsize=16,color="green",shape="box"];1154[label="xwv4001",fontsize=16,color="green",shape="box"];1155[label="xwv3001",fontsize=16,color="green",shape="box"];1156[label="xwv4001",fontsize=16,color="green",shape="box"];1157[label="xwv3001",fontsize=16,color="green",shape="box"];1158[label="False",fontsize=16,color="green",shape="box"];1159[label="xwv131",fontsize=16,color="green",shape="box"];1160 -> 1367[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1160[label="compare1 (xwv113,xwv114) (xwv115,xwv116) (xwv113 < xwv115 || xwv113 == xwv115 && xwv114 <= xwv116)",fontsize=16,color="magenta"];1160 -> 1368[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1160 -> 1369[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1160 -> 1370[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1160 -> 1371[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1160 -> 1372[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1160 -> 1373[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 990[label="compare0 (Just xwv4000) Nothing True",fontsize=16,color="black",shape="box"];990 -> 1242[label="",style="solid", color="black", weight=3]; 26.21/9.53 665[label="False == xwv3000",fontsize=16,color="burlywood",shape="box"];4967[label="xwv3000/False",fontsize=10,color="white",style="solid",shape="box"];665 -> 4967[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4967 -> 911[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4968[label="xwv3000/True",fontsize=10,color="white",style="solid",shape="box"];665 -> 4968[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4968 -> 912[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 666[label="True == xwv3000",fontsize=16,color="burlywood",shape="box"];4969[label="xwv3000/False",fontsize=10,color="white",style="solid",shape="box"];666 -> 4969[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4969 -> 913[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4970[label="xwv3000/True",fontsize=10,color="white",style="solid",shape="box"];666 -> 4970[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4970 -> 914[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 670[label="Nothing == xwv3000",fontsize=16,color="burlywood",shape="box"];4971[label="xwv3000/Nothing",fontsize=10,color="white",style="solid",shape="box"];670 -> 4971[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4971 -> 924[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4972[label="xwv3000/Just xwv30000",fontsize=10,color="white",style="solid",shape="box"];670 -> 4972[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4972 -> 925[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 671[label="Just xwv40000 == xwv3000",fontsize=16,color="burlywood",shape="box"];4973[label="xwv3000/Nothing",fontsize=10,color="white",style="solid",shape="box"];671 -> 4973[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4973 -> 926[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4974[label="xwv3000/Just xwv30000",fontsize=10,color="white",style="solid",shape="box"];671 -> 4974[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4974 -> 927[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 672[label="primEqDouble xwv4000 xwv3000",fontsize=16,color="burlywood",shape="box"];4975[label="xwv4000/Double xwv40000 xwv40001",fontsize=10,color="white",style="solid",shape="box"];672 -> 4975[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4975 -> 928[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 673[label="primEqInt xwv4000 xwv3000",fontsize=16,color="burlywood",shape="triangle"];4976[label="xwv4000/Pos xwv40000",fontsize=10,color="white",style="solid",shape="box"];673 -> 4976[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4976 -> 929[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4977[label="xwv4000/Neg xwv40000",fontsize=10,color="white",style="solid",shape="box"];673 -> 4977[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4977 -> 930[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 674[label="Left xwv40000 == xwv3000",fontsize=16,color="burlywood",shape="box"];4978[label="xwv3000/Left xwv30000",fontsize=10,color="white",style="solid",shape="box"];674 -> 4978[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4978 -> 931[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4979[label="xwv3000/Right xwv30000",fontsize=10,color="white",style="solid",shape="box"];674 -> 4979[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4979 -> 932[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 675[label="Right xwv40000 == xwv3000",fontsize=16,color="burlywood",shape="box"];4980[label="xwv3000/Left xwv30000",fontsize=10,color="white",style="solid",shape="box"];675 -> 4980[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4980 -> 933[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4981[label="xwv3000/Right xwv30000",fontsize=10,color="white",style="solid",shape="box"];675 -> 4981[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4981 -> 934[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 676[label="primEqChar xwv4000 xwv3000",fontsize=16,color="burlywood",shape="box"];4982[label="xwv4000/Char xwv40000",fontsize=10,color="white",style="solid",shape="box"];676 -> 4982[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4982 -> 935[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 677[label="(xwv40000,xwv40001) == xwv3000",fontsize=16,color="burlywood",shape="box"];4983[label="xwv3000/(xwv30000,xwv30001)",fontsize=10,color="white",style="solid",shape="box"];677 -> 4983[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4983 -> 936[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 678[label="primEqFloat xwv4000 xwv3000",fontsize=16,color="burlywood",shape="box"];4984[label="xwv4000/Float xwv40000 xwv40001",fontsize=10,color="white",style="solid",shape="box"];678 -> 4984[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4984 -> 937[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 679[label="xwv40000 :% xwv40001 == xwv3000",fontsize=16,color="burlywood",shape="box"];4985[label="xwv3000/xwv30000 :% xwv30001",fontsize=10,color="white",style="solid",shape="box"];679 -> 4985[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4985 -> 938[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 680[label="() == xwv3000",fontsize=16,color="burlywood",shape="box"];4986[label="xwv3000/()",fontsize=10,color="white",style="solid",shape="box"];680 -> 4986[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4986 -> 939[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 681[label="(xwv40000,xwv40001,xwv40002) == xwv3000",fontsize=16,color="burlywood",shape="box"];4987[label="xwv3000/(xwv30000,xwv30001,xwv30002)",fontsize=10,color="white",style="solid",shape="box"];681 -> 4987[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4987 -> 940[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 682[label="Integer xwv40000 == xwv3000",fontsize=16,color="burlywood",shape="box"];4988[label="xwv3000/Integer xwv30000",fontsize=10,color="white",style="solid",shape="box"];682 -> 4988[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4988 -> 941[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 683[label="xwv40000 : xwv40001 == xwv3000",fontsize=16,color="burlywood",shape="box"];4989[label="xwv3000/xwv30000 : xwv30001",fontsize=10,color="white",style="solid",shape="box"];683 -> 4989[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4989 -> 942[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4990[label="xwv3000/[]",fontsize=10,color="white",style="solid",shape="box"];683 -> 4990[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4990 -> 943[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 684[label="[] == xwv3000",fontsize=16,color="burlywood",shape="box"];4991[label="xwv3000/xwv30000 : xwv30001",fontsize=10,color="white",style="solid",shape="box"];684 -> 4991[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4991 -> 944[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4992[label="xwv3000/[]",fontsize=10,color="white",style="solid",shape="box"];684 -> 4992[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4992 -> 945[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 1244[label="xwv54",fontsize=16,color="green",shape="box"];1245[label="xwv55",fontsize=16,color="green",shape="box"];1246[label="Just xwv54 <= Just xwv55",fontsize=16,color="black",shape="box"];1246 -> 1250[label="",style="solid", color="black", weight=3]; 26.21/9.53 1243[label="compare1 (Just xwv141) (Just xwv142) xwv143",fontsize=16,color="burlywood",shape="triangle"];4993[label="xwv143/False",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4993[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4993 -> 1251[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4994[label="xwv143/True",fontsize=10,color="white",style="solid",shape="box"];1243 -> 4994[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4994 -> 1252[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 992[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];992 -> 1253[label="",style="solid", color="black", weight=3]; 26.21/9.53 993[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];993 -> 1254[label="",style="solid", color="black", weight=3]; 26.21/9.53 994[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];994 -> 1255[label="",style="solid", color="black", weight=3]; 26.21/9.53 1161 -> 528[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1161[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];1161 -> 1256[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1161 -> 1257[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1162 -> 529[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1162[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];1162 -> 1258[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1162 -> 1259[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1163 -> 530[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1163[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];1163 -> 1260[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1163 -> 1261[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1164 -> 531[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1164[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];1164 -> 1262[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1164 -> 1263[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1165 -> 532[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1165[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];1165 -> 1264[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1165 -> 1265[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1166 -> 533[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1166[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];1166 -> 1266[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1166 -> 1267[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1167 -> 534[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1167[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];1167 -> 1268[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1167 -> 1269[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1168 -> 535[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1168[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];1168 -> 1270[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1168 -> 1271[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1169 -> 536[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1169[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];1169 -> 1272[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1169 -> 1273[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1170 -> 537[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1170[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];1170 -> 1274[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1170 -> 1275[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1171 -> 538[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1171[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];1171 -> 1276[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1171 -> 1277[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1172 -> 539[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1172[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];1172 -> 1278[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1172 -> 1279[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1173 -> 540[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1173[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];1173 -> 1280[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1173 -> 1281[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1174 -> 541[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1174[label="xwv4002 == xwv3002",fontsize=16,color="magenta"];1174 -> 1282[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1174 -> 1283[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1175 -> 528[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1175[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1175 -> 1284[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1175 -> 1285[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1176 -> 529[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1176[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1176 -> 1286[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1176 -> 1287[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1177 -> 530[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1177[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1177 -> 1288[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1177 -> 1289[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1178 -> 531[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1178[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1178 -> 1290[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1178 -> 1291[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1179 -> 532[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1179[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1179 -> 1292[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1179 -> 1293[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1180 -> 533[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1180[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1180 -> 1294[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1180 -> 1295[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1181 -> 534[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1181[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1181 -> 1296[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1181 -> 1297[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1182 -> 535[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1182[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1182 -> 1298[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1182 -> 1299[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1183 -> 536[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1183[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1183 -> 1300[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1183 -> 1301[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1184 -> 537[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1184[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1184 -> 1302[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1184 -> 1303[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1185 -> 538[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1185[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1185 -> 1304[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1185 -> 1305[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1186 -> 539[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1186[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1186 -> 1306[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1186 -> 1307[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1187 -> 540[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1187[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1187 -> 1308[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1187 -> 1309[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1188 -> 541[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1188[label="xwv4001 == xwv3001",fontsize=16,color="magenta"];1188 -> 1310[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1188 -> 1311[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1189[label="xwv4000",fontsize=16,color="green",shape="box"];1190[label="xwv3000",fontsize=16,color="green",shape="box"];1191[label="xwv4000",fontsize=16,color="green",shape="box"];1192[label="xwv3000",fontsize=16,color="green",shape="box"];1193[label="xwv4000",fontsize=16,color="green",shape="box"];1194[label="xwv3000",fontsize=16,color="green",shape="box"];1195[label="xwv4000",fontsize=16,color="green",shape="box"];1196[label="xwv3000",fontsize=16,color="green",shape="box"];1197[label="xwv4000",fontsize=16,color="green",shape="box"];1198[label="xwv3000",fontsize=16,color="green",shape="box"];1199[label="xwv4000",fontsize=16,color="green",shape="box"];1200[label="xwv3000",fontsize=16,color="green",shape="box"];1201[label="xwv4000",fontsize=16,color="green",shape="box"];1202[label="xwv3000",fontsize=16,color="green",shape="box"];1203[label="xwv4000",fontsize=16,color="green",shape="box"];1204[label="xwv3000",fontsize=16,color="green",shape="box"];1205[label="xwv4000",fontsize=16,color="green",shape="box"];1206[label="xwv3000",fontsize=16,color="green",shape="box"];1207[label="xwv4000",fontsize=16,color="green",shape="box"];1208[label="xwv3000",fontsize=16,color="green",shape="box"];1209[label="xwv4000",fontsize=16,color="green",shape="box"];1210[label="xwv3000",fontsize=16,color="green",shape="box"];1211[label="xwv4000",fontsize=16,color="green",shape="box"];1212[label="xwv3000",fontsize=16,color="green",shape="box"];1213[label="xwv4000",fontsize=16,color="green",shape="box"];1214[label="xwv3000",fontsize=16,color="green",shape="box"];1215[label="xwv4000",fontsize=16,color="green",shape="box"];1216[label="xwv3000",fontsize=16,color="green",shape="box"];1217 -> 1453[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1217[label="compare1 (xwv65,xwv66,xwv67) (xwv68,xwv69,xwv70) (xwv65 < xwv68 || xwv65 == xwv68 && (xwv66 < xwv69 || xwv66 == xwv69 && xwv67 <= xwv70))",fontsize=16,color="magenta"];1217 -> 1454[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1217 -> 1455[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1217 -> 1456[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1217 -> 1457[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1217 -> 1458[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1217 -> 1459[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1217 -> 1460[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1217 -> 1461[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1315[label="xwv76",fontsize=16,color="green",shape="box"];1316[label="Left xwv76 <= Left xwv77",fontsize=16,color="black",shape="box"];1316 -> 1321[label="",style="solid", color="black", weight=3]; 26.21/9.53 1317[label="xwv77",fontsize=16,color="green",shape="box"];1314[label="compare1 (Left xwv150) (Left xwv151) xwv152",fontsize=16,color="burlywood",shape="triangle"];4995[label="xwv152/False",fontsize=10,color="white",style="solid",shape="box"];1314 -> 4995[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4995 -> 1322[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4996[label="xwv152/True",fontsize=10,color="white",style="solid",shape="box"];1314 -> 4996[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4996 -> 1323[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 1088[label="compare0 (Right xwv4000) (Left xwv3000) True",fontsize=16,color="black",shape="box"];1088 -> 1324[label="",style="solid", color="black", weight=3]; 26.21/9.53 1326[label="xwv84",fontsize=16,color="green",shape="box"];1327[label="xwv83",fontsize=16,color="green",shape="box"];1328[label="Right xwv83 <= Right xwv84",fontsize=16,color="black",shape="box"];1328 -> 1332[label="",style="solid", color="black", weight=3]; 26.21/9.53 1325[label="compare1 (Right xwv157) (Right xwv158) xwv159",fontsize=16,color="burlywood",shape="triangle"];4997[label="xwv159/False",fontsize=10,color="white",style="solid",shape="box"];1325 -> 4997[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4997 -> 1333[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 4998[label="xwv159/True",fontsize=10,color="white",style="solid",shape="box"];1325 -> 4998[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4998 -> 1334[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 1090[label="Pos (primMulNat xwv40000 xwv30010)",fontsize=16,color="green",shape="box"];1090 -> 1335[label="",style="dashed", color="green", weight=3]; 26.21/9.53 1091[label="Neg (primMulNat xwv40000 xwv30010)",fontsize=16,color="green",shape="box"];1091 -> 1336[label="",style="dashed", color="green", weight=3]; 26.21/9.53 1092[label="Neg (primMulNat xwv40000 xwv30010)",fontsize=16,color="green",shape="box"];1092 -> 1337[label="",style="dashed", color="green", weight=3]; 26.21/9.53 1093[label="Pos (primMulNat xwv40000 xwv30010)",fontsize=16,color="green",shape="box"];1093 -> 1338[label="",style="dashed", color="green", weight=3]; 26.21/9.53 1094 -> 502[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1094[label="primMulInt xwv40000 xwv30010",fontsize=16,color="magenta"];1094 -> 1339[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1094 -> 1340[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1095[label="xwv15",fontsize=16,color="green",shape="box"];1096[label="xwv21",fontsize=16,color="green",shape="box"];1097[label="xwv15",fontsize=16,color="green",shape="box"];1098[label="xwv21",fontsize=16,color="green",shape="box"];1099[label="xwv15",fontsize=16,color="green",shape="box"];1100[label="xwv21",fontsize=16,color="green",shape="box"];1101[label="xwv15",fontsize=16,color="green",shape="box"];1102[label="xwv21",fontsize=16,color="green",shape="box"];1103[label="xwv15",fontsize=16,color="green",shape="box"];1104[label="xwv21",fontsize=16,color="green",shape="box"];1105[label="xwv15",fontsize=16,color="green",shape="box"];1106[label="xwv21",fontsize=16,color="green",shape="box"];1107[label="xwv15",fontsize=16,color="green",shape="box"];1108[label="xwv21",fontsize=16,color="green",shape="box"];1109[label="xwv15",fontsize=16,color="green",shape="box"];1110[label="xwv21",fontsize=16,color="green",shape="box"];1111[label="xwv15",fontsize=16,color="green",shape="box"];1112[label="xwv21",fontsize=16,color="green",shape="box"];1113[label="xwv15",fontsize=16,color="green",shape="box"];1114[label="xwv21",fontsize=16,color="green",shape="box"];1115[label="xwv15",fontsize=16,color="green",shape="box"];1116[label="xwv21",fontsize=16,color="green",shape="box"];1117[label="xwv15",fontsize=16,color="green",shape="box"];1118[label="xwv21",fontsize=16,color="green",shape="box"];1119[label="xwv15",fontsize=16,color="green",shape="box"];1120[label="xwv21",fontsize=16,color="green",shape="box"];1121[label="xwv15",fontsize=16,color="green",shape="box"];1122[label="xwv21",fontsize=16,color="green",shape="box"];1123[label="FiniteMap.delFromFM0 (xwv97 : xwv98) xwv99 xwv100 xwv101 xwv102 (xwv103 : xwv104) False",fontsize=16,color="black",shape="box"];1123 -> 1341[label="",style="solid", color="black", weight=3]; 26.21/9.53 1124[label="FiniteMap.delFromFM0 (xwv97 : xwv98) xwv99 xwv100 xwv101 xwv102 (xwv103 : xwv104) xwv106",fontsize=16,color="burlywood",shape="box"];4999[label="xwv106/False",fontsize=10,color="white",style="solid",shape="box"];1124 -> 4999[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 4999 -> 1342[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 5000[label="xwv106/True",fontsize=10,color="white",style="solid",shape="box"];1124 -> 5000[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5000 -> 1343[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 1847[label="Pos Zero",fontsize=16,color="green",shape="box"];1848[label="xwv332",fontsize=16,color="green",shape="box"];3857[label="xwv344",fontsize=16,color="green",shape="box"];3858[label="primPlusInt (Pos xwv3440) (Pos xwv3450)",fontsize=16,color="black",shape="box"];3858 -> 3882[label="",style="solid", color="black", weight=3]; 26.21/9.53 3859[label="primPlusInt (Pos xwv3440) (Neg xwv3450)",fontsize=16,color="black",shape="box"];3859 -> 3883[label="",style="solid", color="black", weight=3]; 26.21/9.53 3860[label="xwv344",fontsize=16,color="green",shape="box"];3861[label="primPlusInt (Neg xwv3440) (Pos xwv3460)",fontsize=16,color="black",shape="box"];3861 -> 3884[label="",style="solid", color="black", weight=3]; 26.21/9.53 3862[label="primPlusInt (Neg xwv3440) (Neg xwv3460)",fontsize=16,color="black",shape="box"];3862 -> 3885[label="",style="solid", color="black", weight=3]; 26.21/9.53 1835[label="xwv202",fontsize=16,color="green",shape="box"];1836[label="xwv201",fontsize=16,color="green",shape="box"];3863 -> 3807[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3863[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv340",fontsize=16,color="magenta"];3864 -> 417[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3864[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv340",fontsize=16,color="magenta"];3864 -> 3886[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3864 -> 3887[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3865[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv340 xwv341 xwv344 xwv340 xwv340 xwv341 xwv340 xwv344 False",fontsize=16,color="black",shape="box"];3865 -> 3888[label="",style="solid", color="black", weight=3]; 26.21/9.53 3866[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv340 xwv341 xwv344 xwv340 xwv340 xwv341 xwv340 xwv344 True",fontsize=16,color="black",shape="box"];3866 -> 3889[label="",style="solid", color="black", weight=3]; 26.21/9.53 3879[label="error []",fontsize=16,color="red",shape="box"];3880[label="FiniteMap.mkBalBranch6MkBalBranch02 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv340 xwv340 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444)",fontsize=16,color="black",shape="box"];3880 -> 3898[label="",style="solid", color="black", weight=3]; 26.21/9.53 4601[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv461 xwv458 xwv460 + FiniteMap.mkBranchRight_size xwv461 xwv458 xwv460",fontsize=16,color="black",shape="box"];4601 -> 4602[label="",style="solid", color="black", weight=3]; 26.21/9.53 1235[label="FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=16,color="green",shape="box"];1236 -> 1560[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1236[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"];1236 -> 1561[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1237[label="GT",fontsize=16,color="green",shape="box"];1368[label="xwv113 < xwv115",fontsize=16,color="blue",shape="box"];5001[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1368 -> 5001[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5001 -> 1380[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5002[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1368 -> 5002[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5002 -> 1381[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5003[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1368 -> 5003[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5003 -> 1382[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5004[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1368 -> 5004[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5004 -> 1383[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5005[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1368 -> 5005[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5005 -> 1384[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5006[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1368 -> 5006[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5006 -> 1385[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5007[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1368 -> 5007[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5007 -> 1386[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5008[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1368 -> 5008[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5008 -> 1387[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5009[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1368 -> 5009[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5009 -> 1388[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5010[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1368 -> 5010[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5010 -> 1389[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5011[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1368 -> 5011[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5011 -> 1390[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5012[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1368 -> 5012[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5012 -> 1391[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5013[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1368 -> 5013[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5013 -> 1392[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5014[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1368 -> 5014[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5014 -> 1393[label="",style="solid", color="blue", weight=3]; 26.21/9.53 1369 -> 1028[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1369[label="xwv113 == xwv115 && xwv114 <= xwv116",fontsize=16,color="magenta"];1369 -> 1394[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1369 -> 1395[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1370[label="xwv114",fontsize=16,color="green",shape="box"];1371[label="xwv116",fontsize=16,color="green",shape="box"];1372[label="xwv115",fontsize=16,color="green",shape="box"];1373[label="xwv113",fontsize=16,color="green",shape="box"];1367[label="compare1 (xwv170,xwv171) (xwv172,xwv173) (xwv174 || xwv175)",fontsize=16,color="burlywood",shape="triangle"];5015[label="xwv174/False",fontsize=10,color="white",style="solid",shape="box"];1367 -> 5015[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5015 -> 1396[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 5016[label="xwv174/True",fontsize=10,color="white",style="solid",shape="box"];1367 -> 5016[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5016 -> 1397[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 1242[label="GT",fontsize=16,color="green",shape="box"];911[label="False == False",fontsize=16,color="black",shape="box"];911 -> 1398[label="",style="solid", color="black", weight=3]; 26.21/9.53 912[label="False == True",fontsize=16,color="black",shape="box"];912 -> 1399[label="",style="solid", color="black", weight=3]; 26.21/9.53 913[label="True == False",fontsize=16,color="black",shape="box"];913 -> 1400[label="",style="solid", color="black", weight=3]; 26.21/9.53 914[label="True == True",fontsize=16,color="black",shape="box"];914 -> 1401[label="",style="solid", color="black", weight=3]; 26.21/9.53 924[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];924 -> 1411[label="",style="solid", color="black", weight=3]; 26.21/9.53 925[label="Nothing == Just xwv30000",fontsize=16,color="black",shape="box"];925 -> 1412[label="",style="solid", color="black", weight=3]; 26.21/9.53 926[label="Just xwv40000 == Nothing",fontsize=16,color="black",shape="box"];926 -> 1413[label="",style="solid", color="black", weight=3]; 26.21/9.53 927[label="Just xwv40000 == Just xwv30000",fontsize=16,color="black",shape="box"];927 -> 1414[label="",style="solid", color="black", weight=3]; 26.21/9.53 928[label="primEqDouble (Double xwv40000 xwv40001) xwv3000",fontsize=16,color="burlywood",shape="box"];5017[label="xwv3000/Double xwv30000 xwv30001",fontsize=10,color="white",style="solid",shape="box"];928 -> 5017[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5017 -> 1415[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 929[label="primEqInt (Pos xwv40000) xwv3000",fontsize=16,color="burlywood",shape="box"];5018[label="xwv40000/Succ xwv400000",fontsize=10,color="white",style="solid",shape="box"];929 -> 5018[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5018 -> 1416[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 5019[label="xwv40000/Zero",fontsize=10,color="white",style="solid",shape="box"];929 -> 5019[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5019 -> 1417[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 930[label="primEqInt (Neg xwv40000) xwv3000",fontsize=16,color="burlywood",shape="box"];5020[label="xwv40000/Succ xwv400000",fontsize=10,color="white",style="solid",shape="box"];930 -> 5020[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5020 -> 1418[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 5021[label="xwv40000/Zero",fontsize=10,color="white",style="solid",shape="box"];930 -> 5021[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5021 -> 1419[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 931[label="Left xwv40000 == Left xwv30000",fontsize=16,color="black",shape="box"];931 -> 1420[label="",style="solid", color="black", weight=3]; 26.21/9.53 932[label="Left xwv40000 == Right xwv30000",fontsize=16,color="black",shape="box"];932 -> 1421[label="",style="solid", color="black", weight=3]; 26.21/9.53 933[label="Right xwv40000 == Left xwv30000",fontsize=16,color="black",shape="box"];933 -> 1422[label="",style="solid", color="black", weight=3]; 26.21/9.53 934[label="Right xwv40000 == Right xwv30000",fontsize=16,color="black",shape="box"];934 -> 1423[label="",style="solid", color="black", weight=3]; 26.21/9.53 935[label="primEqChar (Char xwv40000) xwv3000",fontsize=16,color="burlywood",shape="box"];5022[label="xwv3000/Char xwv30000",fontsize=10,color="white",style="solid",shape="box"];935 -> 5022[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5022 -> 1424[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 936[label="(xwv40000,xwv40001) == (xwv30000,xwv30001)",fontsize=16,color="black",shape="box"];936 -> 1425[label="",style="solid", color="black", weight=3]; 26.21/9.53 937[label="primEqFloat (Float xwv40000 xwv40001) xwv3000",fontsize=16,color="burlywood",shape="box"];5023[label="xwv3000/Float xwv30000 xwv30001",fontsize=10,color="white",style="solid",shape="box"];937 -> 5023[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5023 -> 1426[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 938[label="xwv40000 :% xwv40001 == xwv30000 :% xwv30001",fontsize=16,color="black",shape="box"];938 -> 1427[label="",style="solid", color="black", weight=3]; 26.21/9.53 939[label="() == ()",fontsize=16,color="black",shape="box"];939 -> 1428[label="",style="solid", color="black", weight=3]; 26.21/9.53 940[label="(xwv40000,xwv40001,xwv40002) == (xwv30000,xwv30001,xwv30002)",fontsize=16,color="black",shape="box"];940 -> 1429[label="",style="solid", color="black", weight=3]; 26.21/9.53 941[label="Integer xwv40000 == Integer xwv30000",fontsize=16,color="black",shape="box"];941 -> 1430[label="",style="solid", color="black", weight=3]; 26.21/9.53 942[label="xwv40000 : xwv40001 == xwv30000 : xwv30001",fontsize=16,color="black",shape="box"];942 -> 1431[label="",style="solid", color="black", weight=3]; 26.21/9.53 943[label="xwv40000 : xwv40001 == []",fontsize=16,color="black",shape="box"];943 -> 1432[label="",style="solid", color="black", weight=3]; 26.21/9.53 944[label="[] == xwv30000 : xwv30001",fontsize=16,color="black",shape="box"];944 -> 1433[label="",style="solid", color="black", weight=3]; 26.21/9.53 945[label="[] == []",fontsize=16,color="black",shape="box"];945 -> 1434[label="",style="solid", color="black", weight=3]; 26.21/9.53 1250[label="xwv54 <= xwv55",fontsize=16,color="blue",shape="box"];5024[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 5024[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5024 -> 1435[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5025[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 5025[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5025 -> 1436[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5026[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 5026[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5026 -> 1437[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5027[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 5027[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5027 -> 1438[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5028[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 5028[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5028 -> 1439[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5029[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 5029[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5029 -> 1440[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5030[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 5030[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5030 -> 1441[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5031[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 5031[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5031 -> 1442[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5032[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 5032[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5032 -> 1443[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5033[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 5033[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5033 -> 1444[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5034[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 5034[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5034 -> 1445[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5035[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 5035[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5035 -> 1446[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5036[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 5036[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5036 -> 1447[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5037[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1250 -> 5037[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5037 -> 1448[label="",style="solid", color="blue", weight=3]; 26.21/9.53 1251[label="compare1 (Just xwv141) (Just xwv142) False",fontsize=16,color="black",shape="box"];1251 -> 1449[label="",style="solid", color="black", weight=3]; 26.21/9.53 1252[label="compare1 (Just xwv141) (Just xwv142) True",fontsize=16,color="black",shape="box"];1252 -> 1450[label="",style="solid", color="black", weight=3]; 26.21/9.53 1253[label="GT",fontsize=16,color="green",shape="box"];1254[label="GT",fontsize=16,color="green",shape="box"];1255[label="GT",fontsize=16,color="green",shape="box"];1256[label="xwv4002",fontsize=16,color="green",shape="box"];1257[label="xwv3002",fontsize=16,color="green",shape="box"];1258[label="xwv4002",fontsize=16,color="green",shape="box"];1259[label="xwv3002",fontsize=16,color="green",shape="box"];1260[label="xwv4002",fontsize=16,color="green",shape="box"];1261[label="xwv3002",fontsize=16,color="green",shape="box"];1262[label="xwv4002",fontsize=16,color="green",shape="box"];1263[label="xwv3002",fontsize=16,color="green",shape="box"];1264[label="xwv4002",fontsize=16,color="green",shape="box"];1265[label="xwv3002",fontsize=16,color="green",shape="box"];1266[label="xwv4002",fontsize=16,color="green",shape="box"];1267[label="xwv3002",fontsize=16,color="green",shape="box"];1268[label="xwv4002",fontsize=16,color="green",shape="box"];1269[label="xwv3002",fontsize=16,color="green",shape="box"];1270[label="xwv4002",fontsize=16,color="green",shape="box"];1271[label="xwv3002",fontsize=16,color="green",shape="box"];1272[label="xwv4002",fontsize=16,color="green",shape="box"];1273[label="xwv3002",fontsize=16,color="green",shape="box"];1274[label="xwv4002",fontsize=16,color="green",shape="box"];1275[label="xwv3002",fontsize=16,color="green",shape="box"];1276[label="xwv4002",fontsize=16,color="green",shape="box"];1277[label="xwv3002",fontsize=16,color="green",shape="box"];1278[label="xwv4002",fontsize=16,color="green",shape="box"];1279[label="xwv3002",fontsize=16,color="green",shape="box"];1280[label="xwv4002",fontsize=16,color="green",shape="box"];1281[label="xwv3002",fontsize=16,color="green",shape="box"];1282[label="xwv4002",fontsize=16,color="green",shape="box"];1283[label="xwv3002",fontsize=16,color="green",shape="box"];1284[label="xwv4001",fontsize=16,color="green",shape="box"];1285[label="xwv3001",fontsize=16,color="green",shape="box"];1286[label="xwv4001",fontsize=16,color="green",shape="box"];1287[label="xwv3001",fontsize=16,color="green",shape="box"];1288[label="xwv4001",fontsize=16,color="green",shape="box"];1289[label="xwv3001",fontsize=16,color="green",shape="box"];1290[label="xwv4001",fontsize=16,color="green",shape="box"];1291[label="xwv3001",fontsize=16,color="green",shape="box"];1292[label="xwv4001",fontsize=16,color="green",shape="box"];1293[label="xwv3001",fontsize=16,color="green",shape="box"];1294[label="xwv4001",fontsize=16,color="green",shape="box"];1295[label="xwv3001",fontsize=16,color="green",shape="box"];1296[label="xwv4001",fontsize=16,color="green",shape="box"];1297[label="xwv3001",fontsize=16,color="green",shape="box"];1298[label="xwv4001",fontsize=16,color="green",shape="box"];1299[label="xwv3001",fontsize=16,color="green",shape="box"];1300[label="xwv4001",fontsize=16,color="green",shape="box"];1301[label="xwv3001",fontsize=16,color="green",shape="box"];1302[label="xwv4001",fontsize=16,color="green",shape="box"];1303[label="xwv3001",fontsize=16,color="green",shape="box"];1304[label="xwv4001",fontsize=16,color="green",shape="box"];1305[label="xwv3001",fontsize=16,color="green",shape="box"];1306[label="xwv4001",fontsize=16,color="green",shape="box"];1307[label="xwv3001",fontsize=16,color="green",shape="box"];1308[label="xwv4001",fontsize=16,color="green",shape="box"];1309[label="xwv3001",fontsize=16,color="green",shape="box"];1310[label="xwv4001",fontsize=16,color="green",shape="box"];1311[label="xwv3001",fontsize=16,color="green",shape="box"];1454[label="xwv65 < xwv68",fontsize=16,color="blue",shape="box"];5038[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 5038[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5038 -> 1470[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5039[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 5039[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5039 -> 1471[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5040[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 5040[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5040 -> 1472[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5041[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 5041[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5041 -> 1473[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5042[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 5042[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5042 -> 1474[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5043[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 5043[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5043 -> 1475[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5044[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 5044[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5044 -> 1476[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5045[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 5045[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5045 -> 1477[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5046[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 5046[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5046 -> 1478[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5047[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 5047[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5047 -> 1479[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5048[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 5048[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5048 -> 1480[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5049[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 5049[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5049 -> 1481[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5050[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 5050[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5050 -> 1482[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5051[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1454 -> 5051[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5051 -> 1483[label="",style="solid", color="blue", weight=3]; 26.21/9.53 1455[label="xwv66",fontsize=16,color="green",shape="box"];1456[label="xwv68",fontsize=16,color="green",shape="box"];1457[label="xwv69",fontsize=16,color="green",shape="box"];1458[label="xwv67",fontsize=16,color="green",shape="box"];1459[label="xwv70",fontsize=16,color="green",shape="box"];1460[label="xwv65",fontsize=16,color="green",shape="box"];1461 -> 1028[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1461[label="xwv65 == xwv68 && (xwv66 < xwv69 || xwv66 == xwv69 && xwv67 <= xwv70)",fontsize=16,color="magenta"];1461 -> 1484[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1461 -> 1485[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1453[label="compare1 (xwv185,xwv186,xwv187) (xwv188,xwv189,xwv190) (xwv191 || xwv192)",fontsize=16,color="burlywood",shape="triangle"];5052[label="xwv191/False",fontsize=10,color="white",style="solid",shape="box"];1453 -> 5052[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5052 -> 1486[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 5053[label="xwv191/True",fontsize=10,color="white",style="solid",shape="box"];1453 -> 5053[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5053 -> 1487[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 1321[label="xwv76 <= xwv77",fontsize=16,color="blue",shape="box"];5054[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 5054[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5054 -> 1488[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5055[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 5055[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5055 -> 1489[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5056[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 5056[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5056 -> 1490[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5057[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 5057[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5057 -> 1491[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5058[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 5058[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5058 -> 1492[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5059[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 5059[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5059 -> 1493[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5060[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 5060[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5060 -> 1494[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5061[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 5061[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5061 -> 1495[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5062[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 5062[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5062 -> 1496[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5063[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 5063[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5063 -> 1497[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5064[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 5064[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5064 -> 1498[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5065[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 5065[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5065 -> 1499[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5066[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 5066[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5066 -> 1500[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5067[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 5067[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5067 -> 1501[label="",style="solid", color="blue", weight=3]; 26.21/9.53 1322[label="compare1 (Left xwv150) (Left xwv151) False",fontsize=16,color="black",shape="box"];1322 -> 1502[label="",style="solid", color="black", weight=3]; 26.21/9.53 1323[label="compare1 (Left xwv150) (Left xwv151) True",fontsize=16,color="black",shape="box"];1323 -> 1503[label="",style="solid", color="black", weight=3]; 26.21/9.53 1324[label="GT",fontsize=16,color="green",shape="box"];1332[label="xwv83 <= xwv84",fontsize=16,color="blue",shape="box"];5068[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1332 -> 5068[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5068 -> 1504[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5069[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1332 -> 5069[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5069 -> 1505[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5070[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1332 -> 5070[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5070 -> 1506[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5071[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1332 -> 5071[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5071 -> 1507[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5072[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1332 -> 5072[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5072 -> 1508[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5073[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1332 -> 5073[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5073 -> 1509[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5074[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1332 -> 5074[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5074 -> 1510[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5075[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1332 -> 5075[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5075 -> 1511[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5076[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1332 -> 5076[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5076 -> 1512[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5077[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1332 -> 5077[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5077 -> 1513[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5078[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1332 -> 5078[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5078 -> 1514[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5079[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1332 -> 5079[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5079 -> 1515[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5080[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1332 -> 5080[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5080 -> 1516[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5081[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1332 -> 5081[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5081 -> 1517[label="",style="solid", color="blue", weight=3]; 26.21/9.53 1333[label="compare1 (Right xwv157) (Right xwv158) False",fontsize=16,color="black",shape="box"];1333 -> 1518[label="",style="solid", color="black", weight=3]; 26.21/9.53 1334[label="compare1 (Right xwv157) (Right xwv158) True",fontsize=16,color="black",shape="box"];1334 -> 1519[label="",style="solid", color="black", weight=3]; 26.21/9.53 1335[label="primMulNat xwv40000 xwv30010",fontsize=16,color="burlywood",shape="triangle"];5082[label="xwv40000/Succ xwv400000",fontsize=10,color="white",style="solid",shape="box"];1335 -> 5082[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5082 -> 1520[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 5083[label="xwv40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1335 -> 5083[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5083 -> 1521[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 1336 -> 1335[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1336[label="primMulNat xwv40000 xwv30010",fontsize=16,color="magenta"];1336 -> 1522[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1337 -> 1335[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1337[label="primMulNat xwv40000 xwv30010",fontsize=16,color="magenta"];1337 -> 1523[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1338 -> 1335[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1338[label="primMulNat xwv40000 xwv30010",fontsize=16,color="magenta"];1338 -> 1524[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1338 -> 1525[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1339[label="xwv40000",fontsize=16,color="green",shape="box"];1340[label="xwv30010",fontsize=16,color="green",shape="box"];1341[label="error []",fontsize=16,color="red",shape="box"];1342[label="FiniteMap.delFromFM0 (xwv97 : xwv98) xwv99 xwv100 xwv101 xwv102 (xwv103 : xwv104) False",fontsize=16,color="black",shape="box"];1342 -> 1526[label="",style="solid", color="black", weight=3]; 26.21/9.53 1343[label="FiniteMap.delFromFM0 (xwv97 : xwv98) xwv99 xwv100 xwv101 xwv102 (xwv103 : xwv104) True",fontsize=16,color="black",shape="box"];1343 -> 1527[label="",style="solid", color="black", weight=3]; 26.21/9.53 3882[label="Pos (primPlusNat xwv3440 xwv3450)",fontsize=16,color="green",shape="box"];3882 -> 3900[label="",style="dashed", color="green", weight=3]; 26.21/9.53 3883[label="primMinusNat xwv3440 xwv3450",fontsize=16,color="burlywood",shape="triangle"];5084[label="xwv3440/Succ xwv34400",fontsize=10,color="white",style="solid",shape="box"];3883 -> 5084[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5084 -> 3901[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 5085[label="xwv3440/Zero",fontsize=10,color="white",style="solid",shape="box"];3883 -> 5085[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5085 -> 3902[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 3884 -> 3883[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3884[label="primMinusNat xwv3460 xwv3440",fontsize=16,color="magenta"];3884 -> 3903[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3884 -> 3904[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 3885[label="Neg (primPlusNat xwv3440 xwv3460)",fontsize=16,color="green",shape="box"];3885 -> 3905[label="",style="dashed", color="green", weight=3]; 26.21/9.53 3886 -> 3833[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3886[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3887 -> 3812[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3887[label="FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv340",fontsize=16,color="magenta"];3888[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv340 xwv341 xwv344 xwv340 xwv340 xwv341 xwv340 xwv344 otherwise",fontsize=16,color="black",shape="box"];3888 -> 3906[label="",style="solid", color="black", weight=3]; 26.21/9.53 3889[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv340 xwv341 xwv344 xwv340 xwv340 xwv344 xwv340",fontsize=16,color="burlywood",shape="box"];5086[label="xwv340/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3889 -> 5086[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5086 -> 3907[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 5087[label="xwv340/FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404",fontsize=10,color="white",style="solid",shape="box"];3889 -> 5087[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5087 -> 3908[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 3898 -> 3921[label="",style="dashed", color="red", weight=0]; 26.21/9.53 3898[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv340 xwv340 (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"];3898 -> 3922[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 4602 -> 4604[label="",style="dashed", color="red", weight=0]; 26.21/9.53 4602[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv461 xwv458 xwv460) (FiniteMap.mkBranchRight_size xwv461 xwv458 xwv460)",fontsize=16,color="magenta"];4602 -> 4605[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1561 -> 1565[label="",style="dashed", color="red", weight=0]; 26.21/9.53 1561[label="FiniteMap.sizeFM (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) > FiniteMap.sizeFM (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="magenta"];1561 -> 1574[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1561 -> 1575[label="",style="dashed", color="magenta", weight=3]; 26.21/9.53 1560[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) xwv197",fontsize=16,color="burlywood",shape="triangle"];5088[label="xwv197/False",fontsize=10,color="white",style="solid",shape="box"];1560 -> 5088[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5088 -> 1583[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 5089[label="xwv197/True",fontsize=10,color="white",style="solid",shape="box"];1560 -> 5089[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5089 -> 1584[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 1381[label="xwv113 < xwv115",fontsize=16,color="black",shape="triangle"];1381 -> 1586[label="",style="solid", color="black", weight=3]; 26.21/9.53 1382[label="xwv113 < xwv115",fontsize=16,color="black",shape="triangle"];1382 -> 1587[label="",style="solid", color="black", weight=3]; 26.21/9.53 1383[label="xwv113 < xwv115",fontsize=16,color="black",shape="triangle"];1383 -> 1588[label="",style="solid", color="black", weight=3]; 26.21/9.53 1384[label="xwv113 < xwv115",fontsize=16,color="black",shape="triangle"];1384 -> 1589[label="",style="solid", color="black", weight=3]; 26.21/9.53 1385[label="xwv113 < xwv115",fontsize=16,color="black",shape="triangle"];1385 -> 1590[label="",style="solid", color="black", weight=3]; 26.21/9.53 1386[label="xwv113 < xwv115",fontsize=16,color="black",shape="triangle"];1386 -> 1591[label="",style="solid", color="black", weight=3]; 26.21/9.53 1387[label="xwv113 < xwv115",fontsize=16,color="black",shape="triangle"];1387 -> 1592[label="",style="solid", color="black", weight=3]; 26.21/9.53 1388[label="xwv113 < xwv115",fontsize=16,color="black",shape="triangle"];1388 -> 1593[label="",style="solid", color="black", weight=3]; 26.21/9.53 1389[label="xwv113 < xwv115",fontsize=16,color="black",shape="triangle"];1389 -> 1594[label="",style="solid", color="black", weight=3]; 26.21/9.53 1390[label="xwv113 < xwv115",fontsize=16,color="black",shape="triangle"];1390 -> 1595[label="",style="solid", color="black", weight=3]; 26.21/9.53 1391[label="xwv113 < xwv115",fontsize=16,color="black",shape="triangle"];1391 -> 1596[label="",style="solid", color="black", weight=3]; 26.21/9.53 1392[label="xwv113 < xwv115",fontsize=16,color="black",shape="triangle"];1392 -> 1597[label="",style="solid", color="black", weight=3]; 26.21/9.53 1393[label="xwv113 < xwv115",fontsize=16,color="black",shape="triangle"];1393 -> 1598[label="",style="solid", color="black", weight=3]; 26.21/9.53 1394[label="xwv114 <= xwv116",fontsize=16,color="blue",shape="box"];5090[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1394 -> 5090[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5090 -> 1599[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5091[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1394 -> 5091[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5091 -> 1600[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5092[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1394 -> 5092[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5092 -> 1601[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5093[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1394 -> 5093[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5093 -> 1602[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5094[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1394 -> 5094[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5094 -> 1603[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5095[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1394 -> 5095[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5095 -> 1604[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5096[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1394 -> 5096[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5096 -> 1605[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5097[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1394 -> 5097[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5097 -> 1606[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5098[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1394 -> 5098[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5098 -> 1607[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5099[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1394 -> 5099[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5099 -> 1608[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5100[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1394 -> 5100[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5100 -> 1609[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5101[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1394 -> 5101[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5101 -> 1610[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5102[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1394 -> 5102[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5102 -> 1611[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5103[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1394 -> 5103[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5103 -> 1612[label="",style="solid", color="blue", weight=3]; 26.21/9.53 1395[label="xwv113 == xwv115",fontsize=16,color="blue",shape="box"];5104[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1395 -> 5104[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5104 -> 1613[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5105[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1395 -> 5105[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5105 -> 1614[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5106[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1395 -> 5106[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5106 -> 1615[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5107[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1395 -> 5107[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5107 -> 1616[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5108[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1395 -> 5108[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5108 -> 1617[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5109[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1395 -> 5109[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5109 -> 1618[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5110[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1395 -> 5110[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5110 -> 1619[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5111[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1395 -> 5111[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5111 -> 1620[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5112[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1395 -> 5112[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5112 -> 1621[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5113[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1395 -> 5113[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5113 -> 1622[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5114[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1395 -> 5114[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5114 -> 1623[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5115[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1395 -> 5115[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5115 -> 1624[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5116[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1395 -> 5116[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5116 -> 1625[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5117[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1395 -> 5117[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5117 -> 1626[label="",style="solid", color="blue", weight=3]; 26.21/9.53 1396[label="compare1 (xwv170,xwv171) (xwv172,xwv173) (False || xwv175)",fontsize=16,color="black",shape="box"];1396 -> 1627[label="",style="solid", color="black", weight=3]; 26.21/9.53 1397[label="compare1 (xwv170,xwv171) (xwv172,xwv173) (True || xwv175)",fontsize=16,color="black",shape="box"];1397 -> 1628[label="",style="solid", color="black", weight=3]; 26.21/9.53 1398[label="True",fontsize=16,color="green",shape="box"];1399[label="False",fontsize=16,color="green",shape="box"];1400[label="False",fontsize=16,color="green",shape="box"];1401[label="True",fontsize=16,color="green",shape="box"];1411[label="True",fontsize=16,color="green",shape="box"];1412[label="False",fontsize=16,color="green",shape="box"];1413[label="False",fontsize=16,color="green",shape="box"];1414[label="xwv40000 == xwv30000",fontsize=16,color="blue",shape="box"];5118[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1414 -> 5118[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5118 -> 1629[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5119[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1414 -> 5119[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5119 -> 1630[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5120[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1414 -> 5120[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5120 -> 1631[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5121[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1414 -> 5121[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5121 -> 1632[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5122[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1414 -> 5122[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5122 -> 1633[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5123[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1414 -> 5123[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5123 -> 1634[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5124[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1414 -> 5124[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5124 -> 1635[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5125[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1414 -> 5125[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5125 -> 1636[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5126[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1414 -> 5126[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5126 -> 1637[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5127[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1414 -> 5127[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5127 -> 1638[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5128[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1414 -> 5128[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5128 -> 1639[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5129[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1414 -> 5129[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5129 -> 1640[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5130[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1414 -> 5130[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5130 -> 1641[label="",style="solid", color="blue", weight=3]; 26.21/9.53 5131[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1414 -> 5131[label="",style="solid", color="blue", weight=9]; 26.21/9.53 5131 -> 1642[label="",style="solid", color="blue", weight=3]; 26.21/9.53 1415[label="primEqDouble (Double xwv40000 xwv40001) (Double xwv30000 xwv30001)",fontsize=16,color="black",shape="box"];1415 -> 1643[label="",style="solid", color="black", weight=3]; 26.21/9.53 1416[label="primEqInt (Pos (Succ xwv400000)) xwv3000",fontsize=16,color="burlywood",shape="box"];5132[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];1416 -> 5132[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5132 -> 1644[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 5133[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];1416 -> 5133[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5133 -> 1645[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 1417[label="primEqInt (Pos Zero) xwv3000",fontsize=16,color="burlywood",shape="box"];5134[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];1417 -> 5134[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5134 -> 1646[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 5135[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];1417 -> 5135[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5135 -> 1647[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 1418[label="primEqInt (Neg (Succ xwv400000)) xwv3000",fontsize=16,color="burlywood",shape="box"];5136[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];1418 -> 5136[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5136 -> 1648[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 5137[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];1418 -> 5137[label="",style="solid", color="burlywood", weight=9]; 26.21/9.53 5137 -> 1649[label="",style="solid", color="burlywood", weight=3]; 26.21/9.53 1419[label="primEqInt (Neg Zero) xwv3000",fontsize=16,color="burlywood",shape="box"];5138[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];1419 -> 5138[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5138 -> 1650[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 5139[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];1419 -> 5139[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5139 -> 1651[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 1420[label="xwv40000 == xwv30000",fontsize=16,color="blue",shape="box"];5140[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 5140[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5140 -> 1652[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5141[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 5141[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5141 -> 1653[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5142[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 5142[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5142 -> 1654[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5143[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 5143[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5143 -> 1655[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5144[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 5144[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5144 -> 1656[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5145[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 5145[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5145 -> 1657[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5146[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 5146[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5146 -> 1658[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5147[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 5147[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5147 -> 1659[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5148[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 5148[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5148 -> 1660[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5149[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 5149[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5149 -> 1661[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5150[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 5150[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5150 -> 1662[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5151[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 5151[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5151 -> 1663[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5152[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 5152[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5152 -> 1664[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5153[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1420 -> 5153[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5153 -> 1665[label="",style="solid", color="blue", weight=3]; 26.47/9.53 1421[label="False",fontsize=16,color="green",shape="box"];1422[label="False",fontsize=16,color="green",shape="box"];1423[label="xwv40000 == xwv30000",fontsize=16,color="blue",shape="box"];5154[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1423 -> 5154[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5154 -> 1666[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5155[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1423 -> 5155[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5155 -> 1667[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5156[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1423 -> 5156[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5156 -> 1668[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5157[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1423 -> 5157[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5157 -> 1669[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5158[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1423 -> 5158[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5158 -> 1670[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5159[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1423 -> 5159[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5159 -> 1671[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5160[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1423 -> 5160[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5160 -> 1672[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5161[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1423 -> 5161[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5161 -> 1673[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5162[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1423 -> 5162[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5162 -> 1674[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5163[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1423 -> 5163[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5163 -> 1675[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5164[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1423 -> 5164[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5164 -> 1676[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5165[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1423 -> 5165[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5165 -> 1677[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5166[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1423 -> 5166[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5166 -> 1678[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5167[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1423 -> 5167[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5167 -> 1679[label="",style="solid", color="blue", weight=3]; 26.47/9.53 1424[label="primEqChar (Char xwv40000) (Char xwv30000)",fontsize=16,color="black",shape="box"];1424 -> 1680[label="",style="solid", color="black", weight=3]; 26.47/9.53 1425 -> 1028[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1425[label="xwv40000 == xwv30000 && xwv40001 == xwv30001",fontsize=16,color="magenta"];1425 -> 1681[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1425 -> 1682[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1426[label="primEqFloat (Float xwv40000 xwv40001) (Float xwv30000 xwv30001)",fontsize=16,color="black",shape="box"];1426 -> 1683[label="",style="solid", color="black", weight=3]; 26.47/9.53 1427 -> 1028[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1427[label="xwv40000 == xwv30000 && xwv40001 == xwv30001",fontsize=16,color="magenta"];1427 -> 1684[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1427 -> 1685[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1428[label="True",fontsize=16,color="green",shape="box"];1429 -> 1028[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1429[label="xwv40000 == xwv30000 && xwv40001 == xwv30001 && xwv40002 == xwv30002",fontsize=16,color="magenta"];1429 -> 1686[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1429 -> 1687[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1430 -> 673[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1430[label="primEqInt xwv40000 xwv30000",fontsize=16,color="magenta"];1430 -> 1688[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1430 -> 1689[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1431 -> 1028[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1431[label="xwv40000 == xwv30000 && xwv40001 == xwv30001",fontsize=16,color="magenta"];1431 -> 1690[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1431 -> 1691[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1432[label="False",fontsize=16,color="green",shape="box"];1433[label="False",fontsize=16,color="green",shape="box"];1434[label="True",fontsize=16,color="green",shape="box"];1435[label="xwv54 <= xwv55",fontsize=16,color="black",shape="triangle"];1435 -> 1692[label="",style="solid", color="black", weight=3]; 26.47/9.53 1436[label="xwv54 <= xwv55",fontsize=16,color="black",shape="triangle"];1436 -> 1693[label="",style="solid", color="black", weight=3]; 26.47/9.53 1437[label="xwv54 <= xwv55",fontsize=16,color="burlywood",shape="triangle"];5168[label="xwv54/False",fontsize=10,color="white",style="solid",shape="box"];1437 -> 5168[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5168 -> 1694[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 5169[label="xwv54/True",fontsize=10,color="white",style="solid",shape="box"];1437 -> 5169[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5169 -> 1695[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 1438[label="xwv54 <= xwv55",fontsize=16,color="burlywood",shape="triangle"];5170[label="xwv54/(xwv540,xwv541)",fontsize=10,color="white",style="solid",shape="box"];1438 -> 5170[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5170 -> 1696[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 1439[label="xwv54 <= xwv55",fontsize=16,color="burlywood",shape="triangle"];5171[label="xwv54/Nothing",fontsize=10,color="white",style="solid",shape="box"];1439 -> 5171[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5171 -> 1697[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 5172[label="xwv54/Just xwv540",fontsize=10,color="white",style="solid",shape="box"];1439 -> 5172[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5172 -> 1698[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 1440[label="xwv54 <= xwv55",fontsize=16,color="black",shape="triangle"];1440 -> 1699[label="",style="solid", color="black", weight=3]; 26.47/9.53 1441[label="xwv54 <= xwv55",fontsize=16,color="black",shape="triangle"];1441 -> 1700[label="",style="solid", color="black", weight=3]; 26.47/9.53 1442[label="xwv54 <= xwv55",fontsize=16,color="black",shape="triangle"];1442 -> 1701[label="",style="solid", color="black", weight=3]; 26.47/9.53 1443[label="xwv54 <= xwv55",fontsize=16,color="black",shape="triangle"];1443 -> 1702[label="",style="solid", color="black", weight=3]; 26.47/9.53 1444[label="xwv54 <= xwv55",fontsize=16,color="burlywood",shape="triangle"];5173[label="xwv54/LT",fontsize=10,color="white",style="solid",shape="box"];1444 -> 5173[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5173 -> 1703[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 5174[label="xwv54/EQ",fontsize=10,color="white",style="solid",shape="box"];1444 -> 5174[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5174 -> 1704[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 5175[label="xwv54/GT",fontsize=10,color="white",style="solid",shape="box"];1444 -> 5175[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5175 -> 1705[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 1445[label="xwv54 <= xwv55",fontsize=16,color="burlywood",shape="triangle"];5176[label="xwv54/(xwv540,xwv541,xwv542)",fontsize=10,color="white",style="solid",shape="box"];1445 -> 5176[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5176 -> 1706[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 1446[label="xwv54 <= xwv55",fontsize=16,color="burlywood",shape="triangle"];5177[label="xwv54/Left xwv540",fontsize=10,color="white",style="solid",shape="box"];1446 -> 5177[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5177 -> 1707[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 5178[label="xwv54/Right xwv540",fontsize=10,color="white",style="solid",shape="box"];1446 -> 5178[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5178 -> 1708[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 1447[label="xwv54 <= xwv55",fontsize=16,color="black",shape="triangle"];1447 -> 1709[label="",style="solid", color="black", weight=3]; 26.47/9.53 1448[label="xwv54 <= xwv55",fontsize=16,color="black",shape="triangle"];1448 -> 1710[label="",style="solid", color="black", weight=3]; 26.47/9.53 1449[label="compare0 (Just xwv141) (Just xwv142) otherwise",fontsize=16,color="black",shape="box"];1449 -> 1711[label="",style="solid", color="black", weight=3]; 26.47/9.53 1450[label="LT",fontsize=16,color="green",shape="box"];1470 -> 1380[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1470[label="xwv65 < xwv68",fontsize=16,color="magenta"];1470 -> 1712[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1470 -> 1713[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1471 -> 1381[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1471[label="xwv65 < xwv68",fontsize=16,color="magenta"];1471 -> 1714[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1471 -> 1715[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1472 -> 1382[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1472[label="xwv65 < xwv68",fontsize=16,color="magenta"];1472 -> 1716[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1472 -> 1717[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1473 -> 1383[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1473[label="xwv65 < xwv68",fontsize=16,color="magenta"];1473 -> 1718[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1473 -> 1719[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1474 -> 1384[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1474[label="xwv65 < xwv68",fontsize=16,color="magenta"];1474 -> 1720[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1474 -> 1721[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1475 -> 1385[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1475[label="xwv65 < xwv68",fontsize=16,color="magenta"];1475 -> 1722[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1475 -> 1723[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1476 -> 1386[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1476[label="xwv65 < xwv68",fontsize=16,color="magenta"];1476 -> 1724[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1476 -> 1725[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1477 -> 1387[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1477[label="xwv65 < xwv68",fontsize=16,color="magenta"];1477 -> 1726[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1477 -> 1727[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1478 -> 1388[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1478[label="xwv65 < xwv68",fontsize=16,color="magenta"];1478 -> 1728[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1478 -> 1729[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1479 -> 1389[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1479[label="xwv65 < xwv68",fontsize=16,color="magenta"];1479 -> 1730[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1479 -> 1731[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1480 -> 1390[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1480[label="xwv65 < xwv68",fontsize=16,color="magenta"];1480 -> 1732[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1480 -> 1733[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1481 -> 1391[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1481[label="xwv65 < xwv68",fontsize=16,color="magenta"];1481 -> 1734[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1481 -> 1735[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1482 -> 1392[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1482[label="xwv65 < xwv68",fontsize=16,color="magenta"];1482 -> 1736[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1482 -> 1737[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1483 -> 1393[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1483[label="xwv65 < xwv68",fontsize=16,color="magenta"];1483 -> 1738[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1483 -> 1739[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1484 -> 2156[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1484[label="xwv66 < xwv69 || xwv66 == xwv69 && xwv67 <= xwv70",fontsize=16,color="magenta"];1484 -> 2157[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1484 -> 2158[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1485[label="xwv65 == xwv68",fontsize=16,color="blue",shape="box"];5179[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 5179[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5179 -> 1746[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5180[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 5180[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5180 -> 1747[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5181[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 5181[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5181 -> 1748[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5182[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 5182[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5182 -> 1749[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5183[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 5183[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5183 -> 1750[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5184[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 5184[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5184 -> 1751[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5185[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 5185[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5185 -> 1752[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5186[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 5186[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5186 -> 1753[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5187[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 5187[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5187 -> 1754[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5188[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 5188[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5188 -> 1755[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5189[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 5189[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5189 -> 1756[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5190[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 5190[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5190 -> 1757[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5191[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 5191[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5191 -> 1758[label="",style="solid", color="blue", weight=3]; 26.47/9.53 5192[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1485 -> 5192[label="",style="solid", color="blue", weight=9]; 26.47/9.53 5192 -> 1759[label="",style="solid", color="blue", weight=3]; 26.47/9.53 1486[label="compare1 (xwv185,xwv186,xwv187) (xwv188,xwv189,xwv190) (False || xwv192)",fontsize=16,color="black",shape="box"];1486 -> 1760[label="",style="solid", color="black", weight=3]; 26.47/9.53 1487[label="compare1 (xwv185,xwv186,xwv187) (xwv188,xwv189,xwv190) (True || xwv192)",fontsize=16,color="black",shape="box"];1487 -> 1761[label="",style="solid", color="black", weight=3]; 26.47/9.53 1488 -> 1435[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1488[label="xwv76 <= xwv77",fontsize=16,color="magenta"];1488 -> 1762[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1488 -> 1763[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1489 -> 1436[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1489[label="xwv76 <= xwv77",fontsize=16,color="magenta"];1489 -> 1764[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1489 -> 1765[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1490 -> 1437[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1490[label="xwv76 <= xwv77",fontsize=16,color="magenta"];1490 -> 1766[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1490 -> 1767[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1491 -> 1438[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1491[label="xwv76 <= xwv77",fontsize=16,color="magenta"];1491 -> 1768[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1491 -> 1769[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1492 -> 1439[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1492[label="xwv76 <= xwv77",fontsize=16,color="magenta"];1492 -> 1770[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1492 -> 1771[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1493 -> 1440[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1493[label="xwv76 <= xwv77",fontsize=16,color="magenta"];1493 -> 1772[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1493 -> 1773[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1494 -> 1441[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1494[label="xwv76 <= xwv77",fontsize=16,color="magenta"];1494 -> 1774[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1494 -> 1775[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1495 -> 1442[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1495[label="xwv76 <= xwv77",fontsize=16,color="magenta"];1495 -> 1776[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1495 -> 1777[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1496 -> 1443[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1496[label="xwv76 <= xwv77",fontsize=16,color="magenta"];1496 -> 1778[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1496 -> 1779[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1497 -> 1444[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1497[label="xwv76 <= xwv77",fontsize=16,color="magenta"];1497 -> 1780[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1497 -> 1781[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1498 -> 1445[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1498[label="xwv76 <= xwv77",fontsize=16,color="magenta"];1498 -> 1782[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1498 -> 1783[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1499 -> 1446[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1499[label="xwv76 <= xwv77",fontsize=16,color="magenta"];1499 -> 1784[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1499 -> 1785[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1500 -> 1447[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1500[label="xwv76 <= xwv77",fontsize=16,color="magenta"];1500 -> 1786[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1500 -> 1787[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1501 -> 1448[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1501[label="xwv76 <= xwv77",fontsize=16,color="magenta"];1501 -> 1788[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1501 -> 1789[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1502[label="compare0 (Left xwv150) (Left xwv151) otherwise",fontsize=16,color="black",shape="box"];1502 -> 1790[label="",style="solid", color="black", weight=3]; 26.47/9.53 1503[label="LT",fontsize=16,color="green",shape="box"];1504 -> 1435[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1504[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1504 -> 1791[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1504 -> 1792[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1505 -> 1436[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1505[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1505 -> 1793[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1505 -> 1794[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1506 -> 1437[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1506[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1506 -> 1795[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1506 -> 1796[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1507 -> 1438[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1507[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1507 -> 1797[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1507 -> 1798[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1508 -> 1439[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1508[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1508 -> 1799[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1508 -> 1800[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1509 -> 1440[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1509[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1509 -> 1801[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1509 -> 1802[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1510 -> 1441[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1510[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1510 -> 1803[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1510 -> 1804[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1511 -> 1442[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1511[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1511 -> 1805[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1511 -> 1806[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1512 -> 1443[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1512[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1512 -> 1807[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1512 -> 1808[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1513 -> 1444[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1513[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1513 -> 1809[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1513 -> 1810[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1514 -> 1445[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1514[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1514 -> 1811[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1514 -> 1812[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1515 -> 1446[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1515[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1515 -> 1813[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1515 -> 1814[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1516 -> 1447[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1516[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1516 -> 1815[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1516 -> 1816[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1517 -> 1448[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1517[label="xwv83 <= xwv84",fontsize=16,color="magenta"];1517 -> 1817[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1517 -> 1818[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1518[label="compare0 (Right xwv157) (Right xwv158) otherwise",fontsize=16,color="black",shape="box"];1518 -> 1819[label="",style="solid", color="black", weight=3]; 26.47/9.53 1519[label="LT",fontsize=16,color="green",shape="box"];1520[label="primMulNat (Succ xwv400000) xwv30010",fontsize=16,color="burlywood",shape="box"];5193[label="xwv30010/Succ xwv300100",fontsize=10,color="white",style="solid",shape="box"];1520 -> 5193[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5193 -> 1820[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 5194[label="xwv30010/Zero",fontsize=10,color="white",style="solid",shape="box"];1520 -> 5194[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5194 -> 1821[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 1521[label="primMulNat Zero xwv30010",fontsize=16,color="burlywood",shape="box"];5195[label="xwv30010/Succ xwv300100",fontsize=10,color="white",style="solid",shape="box"];1521 -> 5195[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5195 -> 1822[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 5196[label="xwv30010/Zero",fontsize=10,color="white",style="solid",shape="box"];1521 -> 5196[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5196 -> 1823[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 1522[label="xwv30010",fontsize=16,color="green",shape="box"];1523[label="xwv40000",fontsize=16,color="green",shape="box"];1524[label="xwv30010",fontsize=16,color="green",shape="box"];1525[label="xwv40000",fontsize=16,color="green",shape="box"];1526[label="error []",fontsize=16,color="red",shape="box"];1527 -> 428[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1527[label="FiniteMap.glueBal xwv101 xwv102",fontsize=16,color="magenta"];1527 -> 1824[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1527 -> 1825[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 3900 -> 2774[label="",style="dashed", color="red", weight=0]; 26.47/9.53 3900[label="primPlusNat xwv3440 xwv3450",fontsize=16,color="magenta"];3900 -> 3929[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 3900 -> 3930[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 3901[label="primMinusNat (Succ xwv34400) xwv3450",fontsize=16,color="burlywood",shape="box"];5197[label="xwv3450/Succ xwv34500",fontsize=10,color="white",style="solid",shape="box"];3901 -> 5197[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5197 -> 3931[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 5198[label="xwv3450/Zero",fontsize=10,color="white",style="solid",shape="box"];3901 -> 5198[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5198 -> 3932[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 3902[label="primMinusNat Zero xwv3450",fontsize=16,color="burlywood",shape="box"];5199[label="xwv3450/Succ xwv34500",fontsize=10,color="white",style="solid",shape="box"];3902 -> 5199[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5199 -> 3933[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 5200[label="xwv3450/Zero",fontsize=10,color="white",style="solid",shape="box"];3902 -> 5200[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5200 -> 3934[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 3903[label="xwv3440",fontsize=16,color="green",shape="box"];3904[label="xwv3460",fontsize=16,color="green",shape="box"];3905 -> 2774[label="",style="dashed", color="red", weight=0]; 26.47/9.53 3905[label="primPlusNat xwv3440 xwv3460",fontsize=16,color="magenta"];3905 -> 3935[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 3905 -> 3936[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 3906[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv340 xwv341 xwv344 xwv340 xwv340 xwv341 xwv340 xwv344 True",fontsize=16,color="black",shape="box"];3906 -> 3937[label="",style="solid", color="black", weight=3]; 26.47/9.53 3907[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv340 xwv341 xwv344 FiniteMap.EmptyFM FiniteMap.EmptyFM xwv344 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3907 -> 3938[label="",style="solid", color="black", weight=3]; 26.47/9.53 3908[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) xwv344 (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404)",fontsize=16,color="black",shape="box"];3908 -> 3939[label="",style="solid", color="black", weight=3]; 26.47/9.53 3922 -> 1380[label="",style="dashed", color="red", weight=0]; 26.47/9.53 3922[label="FiniteMap.sizeFM xwv3443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3444",fontsize=16,color="magenta"];3922 -> 3940[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 3922 -> 3941[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 3921[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv340 xwv340 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 xwv352",fontsize=16,color="burlywood",shape="triangle"];5201[label="xwv352/False",fontsize=10,color="white",style="solid",shape="box"];3921 -> 5201[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5201 -> 3942[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 5202[label="xwv352/True",fontsize=10,color="white",style="solid",shape="box"];3921 -> 5202[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5202 -> 3943[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 4605[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv461 xwv458 xwv460",fontsize=16,color="black",shape="box"];4605 -> 4607[label="",style="solid", color="black", weight=3]; 26.47/9.53 4604[label="primPlusInt xwv462 (FiniteMap.mkBranchRight_size xwv461 xwv458 xwv460)",fontsize=16,color="burlywood",shape="triangle"];5203[label="xwv462/Pos xwv4620",fontsize=10,color="white",style="solid",shape="box"];4604 -> 5203[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5203 -> 4608[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 5204[label="xwv462/Neg xwv4620",fontsize=10,color="white",style="solid",shape="box"];4604 -> 5204[label="",style="solid", color="burlywood", weight=9]; 26.47/9.53 5204 -> 4609[label="",style="solid", color="burlywood", weight=3]; 26.47/9.53 1574 -> 1356[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1574[label="FiniteMap.sizeFM (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="magenta"];1574 -> 1858[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1575 -> 1356[label="",style="dashed", color="red", weight=0]; 26.47/9.53 1575[label="FiniteMap.sizeFM (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="magenta"];1575 -> 1859[label="",style="dashed", color="magenta", weight=3]; 26.47/9.53 1583[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"];1583 -> 1860[label="",style="solid", color="black", weight=3]; 26.47/9.53 1584[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"];1584 -> 1861[label="",style="solid", color="black", weight=3]; 26.47/9.54 1586 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1586[label="compare xwv113 xwv115 == LT",fontsize=16,color="magenta"];1586 -> 1864[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1586 -> 1865[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1587 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1587[label="compare xwv113 xwv115 == LT",fontsize=16,color="magenta"];1587 -> 1866[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1587 -> 1867[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1588 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1588[label="compare xwv113 xwv115 == LT",fontsize=16,color="magenta"];1588 -> 1868[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1588 -> 1869[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1589 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1589[label="compare xwv113 xwv115 == LT",fontsize=16,color="magenta"];1589 -> 1870[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1589 -> 1871[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1590 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1590[label="compare xwv113 xwv115 == LT",fontsize=16,color="magenta"];1590 -> 1872[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1590 -> 1873[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1591 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1591[label="compare xwv113 xwv115 == LT",fontsize=16,color="magenta"];1591 -> 1874[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1591 -> 1875[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1592 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1592[label="compare xwv113 xwv115 == LT",fontsize=16,color="magenta"];1592 -> 1876[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1592 -> 1877[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1593 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1593[label="compare xwv113 xwv115 == LT",fontsize=16,color="magenta"];1593 -> 1878[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1593 -> 1879[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1594 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1594[label="compare xwv113 xwv115 == LT",fontsize=16,color="magenta"];1594 -> 1880[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1594 -> 1881[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1595 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1595[label="compare xwv113 xwv115 == LT",fontsize=16,color="magenta"];1595 -> 1882[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1595 -> 1883[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1596 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1596[label="compare xwv113 xwv115 == LT",fontsize=16,color="magenta"];1596 -> 1884[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1596 -> 1885[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1597 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1597[label="compare xwv113 xwv115 == LT",fontsize=16,color="magenta"];1597 -> 1886[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1597 -> 1887[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1598 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1598[label="compare xwv113 xwv115 == LT",fontsize=16,color="magenta"];1598 -> 1888[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1598 -> 1889[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1599 -> 1435[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1599[label="xwv114 <= xwv116",fontsize=16,color="magenta"];1599 -> 1890[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1599 -> 1891[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1600 -> 1436[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1600[label="xwv114 <= xwv116",fontsize=16,color="magenta"];1600 -> 1892[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1600 -> 1893[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1601 -> 1437[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1601[label="xwv114 <= xwv116",fontsize=16,color="magenta"];1601 -> 1894[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1601 -> 1895[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1602 -> 1438[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1602[label="xwv114 <= xwv116",fontsize=16,color="magenta"];1602 -> 1896[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1602 -> 1897[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1603 -> 1439[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1603[label="xwv114 <= xwv116",fontsize=16,color="magenta"];1603 -> 1898[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1603 -> 1899[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1604 -> 1440[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1604[label="xwv114 <= xwv116",fontsize=16,color="magenta"];1604 -> 1900[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1604 -> 1901[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1605 -> 1441[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1605[label="xwv114 <= xwv116",fontsize=16,color="magenta"];1605 -> 1902[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1605 -> 1903[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1606 -> 1442[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1606[label="xwv114 <= xwv116",fontsize=16,color="magenta"];1606 -> 1904[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1606 -> 1905[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1607 -> 1443[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1607[label="xwv114 <= xwv116",fontsize=16,color="magenta"];1607 -> 1906[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1607 -> 1907[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1608 -> 1444[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1608[label="xwv114 <= xwv116",fontsize=16,color="magenta"];1608 -> 1908[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1608 -> 1909[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1609 -> 1445[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1609[label="xwv114 <= xwv116",fontsize=16,color="magenta"];1609 -> 1910[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1609 -> 1911[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1610 -> 1446[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1610[label="xwv114 <= xwv116",fontsize=16,color="magenta"];1610 -> 1912[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1610 -> 1913[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1611 -> 1447[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1611[label="xwv114 <= xwv116",fontsize=16,color="magenta"];1611 -> 1914[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1611 -> 1915[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1612 -> 1448[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1612[label="xwv114 <= xwv116",fontsize=16,color="magenta"];1612 -> 1916[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1612 -> 1917[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1613 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1613[label="xwv113 == xwv115",fontsize=16,color="magenta"];1613 -> 1918[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1613 -> 1919[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1614 -> 534[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1614[label="xwv113 == xwv115",fontsize=16,color="magenta"];1614 -> 1920[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1614 -> 1921[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1615 -> 528[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1615[label="xwv113 == xwv115",fontsize=16,color="magenta"];1615 -> 1922[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1615 -> 1923[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1616 -> 535[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1616[label="xwv113 == xwv115",fontsize=16,color="magenta"];1616 -> 1924[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1616 -> 1925[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1617 -> 530[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1617[label="xwv113 == xwv115",fontsize=16,color="magenta"];1617 -> 1926[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1617 -> 1927[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1618 -> 531[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1618[label="xwv113 == xwv115",fontsize=16,color="magenta"];1618 -> 1928[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1618 -> 1929[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1619 -> 536[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1619[label="xwv113 == xwv115",fontsize=16,color="magenta"];1619 -> 1930[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1619 -> 1931[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1620 -> 538[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1620[label="xwv113 == xwv115",fontsize=16,color="magenta"];1620 -> 1932[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1620 -> 1933[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1621 -> 541[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1621[label="xwv113 == xwv115",fontsize=16,color="magenta"];1621 -> 1934[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1621 -> 1935[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1622 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1622[label="xwv113 == xwv115",fontsize=16,color="magenta"];1622 -> 1936[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1622 -> 1937[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1623 -> 539[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1623[label="xwv113 == xwv115",fontsize=16,color="magenta"];1623 -> 1938[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1623 -> 1939[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1624 -> 533[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1624[label="xwv113 == xwv115",fontsize=16,color="magenta"];1624 -> 1940[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1624 -> 1941[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1625 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1625[label="xwv113 == xwv115",fontsize=16,color="magenta"];1625 -> 1942[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1625 -> 1943[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1626 -> 537[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1626[label="xwv113 == xwv115",fontsize=16,color="magenta"];1626 -> 1944[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1626 -> 1945[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1627[label="compare1 (xwv170,xwv171) (xwv172,xwv173) xwv175",fontsize=16,color="burlywood",shape="triangle"];5205[label="xwv175/False",fontsize=10,color="white",style="solid",shape="box"];1627 -> 5205[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5205 -> 1946[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5206[label="xwv175/True",fontsize=10,color="white",style="solid",shape="box"];1627 -> 5206[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5206 -> 1947[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1628 -> 1627[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1628[label="compare1 (xwv170,xwv171) (xwv172,xwv173) True",fontsize=16,color="magenta"];1628 -> 1948[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1629 -> 528[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1629[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1629 -> 1949[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1629 -> 1950[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1630 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1630[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1630 -> 1951[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1630 -> 1952[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1631 -> 530[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1631[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1631 -> 1953[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1631 -> 1954[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1632 -> 531[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1632[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1632 -> 1955[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1632 -> 1956[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1633 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1633[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1633 -> 1957[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1633 -> 1958[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1634 -> 533[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1634[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1634 -> 1959[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1634 -> 1960[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1635 -> 534[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1635[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1635 -> 1961[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1635 -> 1962[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1636 -> 535[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1636[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1636 -> 1963[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1636 -> 1964[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1637 -> 536[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1637[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1637 -> 1965[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1637 -> 1966[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1638 -> 537[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1638[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1638 -> 1967[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1638 -> 1968[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1639 -> 538[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1639[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1639 -> 1969[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1639 -> 1970[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1640 -> 539[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1640[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1640 -> 1971[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1640 -> 1972[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1641 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1641[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1641 -> 1973[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1641 -> 1974[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1642 -> 541[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1642[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1642 -> 1975[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1642 -> 1976[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1643 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1643[label="xwv40000 * xwv30001 == xwv40001 * xwv30000",fontsize=16,color="magenta"];1643 -> 1977[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1643 -> 1978[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1644[label="primEqInt (Pos (Succ xwv400000)) (Pos xwv30000)",fontsize=16,color="burlywood",shape="box"];5207[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1644 -> 5207[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5207 -> 1979[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5208[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1644 -> 5208[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5208 -> 1980[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1645[label="primEqInt (Pos (Succ xwv400000)) (Neg xwv30000)",fontsize=16,color="black",shape="box"];1645 -> 1981[label="",style="solid", color="black", weight=3]; 26.47/9.54 1646[label="primEqInt (Pos Zero) (Pos xwv30000)",fontsize=16,color="burlywood",shape="box"];5209[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1646 -> 5209[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5209 -> 1982[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5210[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1646 -> 5210[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5210 -> 1983[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1647[label="primEqInt (Pos Zero) (Neg xwv30000)",fontsize=16,color="burlywood",shape="box"];5211[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1647 -> 5211[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5211 -> 1984[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5212[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1647 -> 5212[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5212 -> 1985[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1648[label="primEqInt (Neg (Succ xwv400000)) (Pos xwv30000)",fontsize=16,color="black",shape="box"];1648 -> 1986[label="",style="solid", color="black", weight=3]; 26.47/9.54 1649[label="primEqInt (Neg (Succ xwv400000)) (Neg xwv30000)",fontsize=16,color="burlywood",shape="box"];5213[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1649 -> 5213[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5213 -> 1987[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5214[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1649 -> 5214[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5214 -> 1988[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1650[label="primEqInt (Neg Zero) (Pos xwv30000)",fontsize=16,color="burlywood",shape="box"];5215[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1650 -> 5215[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5215 -> 1989[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5216[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1650 -> 5216[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5216 -> 1990[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1651[label="primEqInt (Neg Zero) (Neg xwv30000)",fontsize=16,color="burlywood",shape="box"];5217[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1651 -> 5217[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5217 -> 1991[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5218[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1651 -> 5218[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5218 -> 1992[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1652 -> 528[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1652[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1652 -> 1993[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1652 -> 1994[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1653 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1653[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1653 -> 1995[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1653 -> 1996[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1654 -> 530[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1654[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1654 -> 1997[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1654 -> 1998[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1655 -> 531[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1655[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1655 -> 1999[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1655 -> 2000[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1656 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1656[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1656 -> 2001[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1656 -> 2002[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1657 -> 533[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1657[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1657 -> 2003[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1657 -> 2004[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1658 -> 534[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1658[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1658 -> 2005[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1658 -> 2006[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1659 -> 535[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1659[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1659 -> 2007[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1659 -> 2008[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1660 -> 536[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1660[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1660 -> 2009[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1660 -> 2010[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1661 -> 537[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1661[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1661 -> 2011[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1661 -> 2012[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1662 -> 538[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1662[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1662 -> 2013[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1662 -> 2014[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1663 -> 539[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1663[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1663 -> 2015[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1663 -> 2016[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1664 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1664[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1664 -> 2017[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1664 -> 2018[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1665 -> 541[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1665[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1665 -> 2019[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1665 -> 2020[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1666 -> 528[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1666[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1666 -> 2021[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1666 -> 2022[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1667 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1667[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1667 -> 2023[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1667 -> 2024[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1668 -> 530[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1668[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1668 -> 2025[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1668 -> 2026[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1669 -> 531[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1669[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1669 -> 2027[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1669 -> 2028[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1670 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1670[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1670 -> 2029[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1670 -> 2030[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1671 -> 533[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1671[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1671 -> 2031[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1671 -> 2032[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1672 -> 534[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1672[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1672 -> 2033[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1672 -> 2034[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1673 -> 535[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1673[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1673 -> 2035[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1673 -> 2036[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1674 -> 536[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1674[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1674 -> 2037[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1674 -> 2038[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1675 -> 537[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1675[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1675 -> 2039[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1675 -> 2040[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1676 -> 538[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1676[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1676 -> 2041[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1676 -> 2042[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1677 -> 539[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1677[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1677 -> 2043[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1677 -> 2044[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1678 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1678[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1678 -> 2045[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1678 -> 2046[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1679 -> 541[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1679[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];1679 -> 2047[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1679 -> 2048[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1680[label="primEqNat xwv40000 xwv30000",fontsize=16,color="burlywood",shape="triangle"];5219[label="xwv40000/Succ xwv400000",fontsize=10,color="white",style="solid",shape="box"];1680 -> 5219[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5219 -> 2049[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5220[label="xwv40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1680 -> 5220[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5220 -> 2050[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1681[label="xwv40001 == xwv30001",fontsize=16,color="blue",shape="box"];5221[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 5221[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5221 -> 2051[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5222[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 5222[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5222 -> 2052[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5223[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 5223[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5223 -> 2053[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5224[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 5224[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5224 -> 2054[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5225[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 5225[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5225 -> 2055[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5226[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 5226[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5226 -> 2056[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5227[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 5227[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5227 -> 2057[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5228[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 5228[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5228 -> 2058[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5229[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 5229[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5229 -> 2059[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5230[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 5230[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5230 -> 2060[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5231[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 5231[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5231 -> 2061[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5232[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 5232[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5232 -> 2062[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5233[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 5233[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5233 -> 2063[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5234[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1681 -> 5234[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5234 -> 2064[label="",style="solid", color="blue", weight=3]; 26.47/9.54 1682[label="xwv40000 == xwv30000",fontsize=16,color="blue",shape="box"];5235[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1682 -> 5235[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5235 -> 2065[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5236[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1682 -> 5236[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5236 -> 2066[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5237[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1682 -> 5237[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5237 -> 2067[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5238[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1682 -> 5238[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5238 -> 2068[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5239[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1682 -> 5239[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5239 -> 2069[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5240[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1682 -> 5240[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5240 -> 2070[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5241[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1682 -> 5241[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5241 -> 2071[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5242[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1682 -> 5242[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5242 -> 2072[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5243[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1682 -> 5243[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5243 -> 2073[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5244[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1682 -> 5244[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5244 -> 2074[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5245[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1682 -> 5245[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5245 -> 2075[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5246[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1682 -> 5246[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5246 -> 2076[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5247[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1682 -> 5247[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5247 -> 2077[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5248[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1682 -> 5248[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5248 -> 2078[label="",style="solid", color="blue", weight=3]; 26.47/9.54 1683 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1683[label="xwv40000 * xwv30001 == xwv40001 * xwv30000",fontsize=16,color="magenta"];1683 -> 2079[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1683 -> 2080[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1684[label="xwv40001 == xwv30001",fontsize=16,color="blue",shape="box"];5249[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 5249[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5249 -> 2081[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5250[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 5250[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5250 -> 2082[label="",style="solid", color="blue", weight=3]; 26.47/9.54 1685[label="xwv40000 == xwv30000",fontsize=16,color="blue",shape="box"];5251[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1685 -> 5251[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5251 -> 2083[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5252[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1685 -> 5252[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5252 -> 2084[label="",style="solid", color="blue", weight=3]; 26.47/9.54 1686 -> 1028[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1686[label="xwv40001 == xwv30001 && xwv40002 == xwv30002",fontsize=16,color="magenta"];1686 -> 2085[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1686 -> 2086[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1687[label="xwv40000 == xwv30000",fontsize=16,color="blue",shape="box"];5253[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1687 -> 5253[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5253 -> 2087[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5254[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1687 -> 5254[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5254 -> 2088[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5255[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1687 -> 5255[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5255 -> 2089[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5256[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1687 -> 5256[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5256 -> 2090[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5257[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1687 -> 5257[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5257 -> 2091[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5258[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1687 -> 5258[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5258 -> 2092[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5259[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1687 -> 5259[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5259 -> 2093[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5260[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1687 -> 5260[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5260 -> 2094[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5261[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1687 -> 5261[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5261 -> 2095[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5262[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1687 -> 5262[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5262 -> 2096[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5263[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1687 -> 5263[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5263 -> 2097[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5264[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1687 -> 5264[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5264 -> 2098[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5265[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1687 -> 5265[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5265 -> 2099[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5266[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1687 -> 5266[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5266 -> 2100[label="",style="solid", color="blue", weight=3]; 26.47/9.54 1688[label="xwv40000",fontsize=16,color="green",shape="box"];1689[label="xwv30000",fontsize=16,color="green",shape="box"];1690 -> 541[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1690[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];1690 -> 2101[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1690 -> 2102[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1691[label="xwv40000 == xwv30000",fontsize=16,color="blue",shape="box"];5267[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1691 -> 5267[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5267 -> 2103[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5268[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1691 -> 5268[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5268 -> 2104[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5269[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1691 -> 5269[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5269 -> 2105[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5270[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1691 -> 5270[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5270 -> 2106[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5271[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1691 -> 5271[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5271 -> 2107[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5272[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1691 -> 5272[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5272 -> 2108[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5273[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1691 -> 5273[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5273 -> 2109[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5274[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1691 -> 5274[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5274 -> 2110[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5275[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1691 -> 5275[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5275 -> 2111[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5276[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1691 -> 5276[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5276 -> 2112[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5277[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1691 -> 5277[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5277 -> 2113[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5278[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1691 -> 5278[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5278 -> 2114[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5279[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1691 -> 5279[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5279 -> 2115[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5280[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1691 -> 5280[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5280 -> 2116[label="",style="solid", color="blue", weight=3]; 26.47/9.54 1692 -> 2117[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1692[label="compare xwv54 xwv55 /= GT",fontsize=16,color="magenta"];1692 -> 2118[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1693 -> 2117[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1693[label="compare xwv54 xwv55 /= GT",fontsize=16,color="magenta"];1693 -> 2119[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1694[label="False <= xwv55",fontsize=16,color="burlywood",shape="box"];5281[label="xwv55/False",fontsize=10,color="white",style="solid",shape="box"];1694 -> 5281[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5281 -> 2130[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5282[label="xwv55/True",fontsize=10,color="white",style="solid",shape="box"];1694 -> 5282[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5282 -> 2131[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1695[label="True <= xwv55",fontsize=16,color="burlywood",shape="box"];5283[label="xwv55/False",fontsize=10,color="white",style="solid",shape="box"];1695 -> 5283[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5283 -> 2132[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5284[label="xwv55/True",fontsize=10,color="white",style="solid",shape="box"];1695 -> 5284[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5284 -> 2133[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1696[label="(xwv540,xwv541) <= xwv55",fontsize=16,color="burlywood",shape="box"];5285[label="xwv55/(xwv550,xwv551)",fontsize=10,color="white",style="solid",shape="box"];1696 -> 5285[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5285 -> 2134[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1697[label="Nothing <= xwv55",fontsize=16,color="burlywood",shape="box"];5286[label="xwv55/Nothing",fontsize=10,color="white",style="solid",shape="box"];1697 -> 5286[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5286 -> 2135[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5287[label="xwv55/Just xwv550",fontsize=10,color="white",style="solid",shape="box"];1697 -> 5287[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5287 -> 2136[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1698[label="Just xwv540 <= xwv55",fontsize=16,color="burlywood",shape="box"];5288[label="xwv55/Nothing",fontsize=10,color="white",style="solid",shape="box"];1698 -> 5288[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5288 -> 2137[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5289[label="xwv55/Just xwv550",fontsize=10,color="white",style="solid",shape="box"];1698 -> 5289[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5289 -> 2138[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1699 -> 2117[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1699[label="compare xwv54 xwv55 /= GT",fontsize=16,color="magenta"];1699 -> 2120[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1700 -> 2117[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1700[label="compare xwv54 xwv55 /= GT",fontsize=16,color="magenta"];1700 -> 2121[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1701 -> 2117[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1701[label="compare xwv54 xwv55 /= GT",fontsize=16,color="magenta"];1701 -> 2122[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1702 -> 2117[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1702[label="compare xwv54 xwv55 /= GT",fontsize=16,color="magenta"];1702 -> 2123[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1703[label="LT <= xwv55",fontsize=16,color="burlywood",shape="box"];5290[label="xwv55/LT",fontsize=10,color="white",style="solid",shape="box"];1703 -> 5290[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5290 -> 2139[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5291[label="xwv55/EQ",fontsize=10,color="white",style="solid",shape="box"];1703 -> 5291[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5291 -> 2140[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5292[label="xwv55/GT",fontsize=10,color="white",style="solid",shape="box"];1703 -> 5292[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5292 -> 2141[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1704[label="EQ <= xwv55",fontsize=16,color="burlywood",shape="box"];5293[label="xwv55/LT",fontsize=10,color="white",style="solid",shape="box"];1704 -> 5293[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5293 -> 2142[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5294[label="xwv55/EQ",fontsize=10,color="white",style="solid",shape="box"];1704 -> 5294[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5294 -> 2143[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5295[label="xwv55/GT",fontsize=10,color="white",style="solid",shape="box"];1704 -> 5295[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5295 -> 2144[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1705[label="GT <= xwv55",fontsize=16,color="burlywood",shape="box"];5296[label="xwv55/LT",fontsize=10,color="white",style="solid",shape="box"];1705 -> 5296[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5296 -> 2145[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5297[label="xwv55/EQ",fontsize=10,color="white",style="solid",shape="box"];1705 -> 5297[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5297 -> 2146[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5298[label="xwv55/GT",fontsize=10,color="white",style="solid",shape="box"];1705 -> 5298[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5298 -> 2147[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1706[label="(xwv540,xwv541,xwv542) <= xwv55",fontsize=16,color="burlywood",shape="box"];5299[label="xwv55/(xwv550,xwv551,xwv552)",fontsize=10,color="white",style="solid",shape="box"];1706 -> 5299[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5299 -> 2148[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1707[label="Left xwv540 <= xwv55",fontsize=16,color="burlywood",shape="box"];5300[label="xwv55/Left xwv550",fontsize=10,color="white",style="solid",shape="box"];1707 -> 5300[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5300 -> 2149[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5301[label="xwv55/Right xwv550",fontsize=10,color="white",style="solid",shape="box"];1707 -> 5301[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5301 -> 2150[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1708[label="Right xwv540 <= xwv55",fontsize=16,color="burlywood",shape="box"];5302[label="xwv55/Left xwv550",fontsize=10,color="white",style="solid",shape="box"];1708 -> 5302[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5302 -> 2151[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5303[label="xwv55/Right xwv550",fontsize=10,color="white",style="solid",shape="box"];1708 -> 5303[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5303 -> 2152[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1709 -> 2117[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1709[label="compare xwv54 xwv55 /= GT",fontsize=16,color="magenta"];1709 -> 2124[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1710 -> 2117[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1710[label="compare xwv54 xwv55 /= GT",fontsize=16,color="magenta"];1710 -> 2125[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1711[label="compare0 (Just xwv141) (Just xwv142) True",fontsize=16,color="black",shape="box"];1711 -> 2153[label="",style="solid", color="black", weight=3]; 26.47/9.54 1712[label="xwv68",fontsize=16,color="green",shape="box"];1713[label="xwv65",fontsize=16,color="green",shape="box"];1714[label="xwv68",fontsize=16,color="green",shape="box"];1715[label="xwv65",fontsize=16,color="green",shape="box"];1716[label="xwv68",fontsize=16,color="green",shape="box"];1717[label="xwv65",fontsize=16,color="green",shape="box"];1718[label="xwv68",fontsize=16,color="green",shape="box"];1719[label="xwv65",fontsize=16,color="green",shape="box"];1720[label="xwv68",fontsize=16,color="green",shape="box"];1721[label="xwv65",fontsize=16,color="green",shape="box"];1722[label="xwv68",fontsize=16,color="green",shape="box"];1723[label="xwv65",fontsize=16,color="green",shape="box"];1724[label="xwv68",fontsize=16,color="green",shape="box"];1725[label="xwv65",fontsize=16,color="green",shape="box"];1726[label="xwv68",fontsize=16,color="green",shape="box"];1727[label="xwv65",fontsize=16,color="green",shape="box"];1728[label="xwv68",fontsize=16,color="green",shape="box"];1729[label="xwv65",fontsize=16,color="green",shape="box"];1730[label="xwv68",fontsize=16,color="green",shape="box"];1731[label="xwv65",fontsize=16,color="green",shape="box"];1732[label="xwv68",fontsize=16,color="green",shape="box"];1733[label="xwv65",fontsize=16,color="green",shape="box"];1734[label="xwv68",fontsize=16,color="green",shape="box"];1735[label="xwv65",fontsize=16,color="green",shape="box"];1736[label="xwv68",fontsize=16,color="green",shape="box"];1737[label="xwv65",fontsize=16,color="green",shape="box"];1738[label="xwv68",fontsize=16,color="green",shape="box"];1739[label="xwv65",fontsize=16,color="green",shape="box"];2157 -> 1028[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2157[label="xwv66 == xwv69 && xwv67 <= xwv70",fontsize=16,color="magenta"];2157 -> 2161[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2157 -> 2162[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2158[label="xwv66 < xwv69",fontsize=16,color="blue",shape="box"];5304[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2158 -> 5304[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5304 -> 2163[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5305[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2158 -> 5305[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5305 -> 2164[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5306[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2158 -> 5306[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5306 -> 2165[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5307[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2158 -> 5307[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5307 -> 2166[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5308[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2158 -> 5308[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5308 -> 2167[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5309[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2158 -> 5309[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5309 -> 2168[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5310[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2158 -> 5310[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5310 -> 2169[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5311[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2158 -> 5311[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5311 -> 2170[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5312[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2158 -> 5312[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5312 -> 2171[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5313[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2158 -> 5313[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5313 -> 2172[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5314[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2158 -> 5314[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5314 -> 2173[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5315[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2158 -> 5315[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5315 -> 2174[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5316[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2158 -> 5316[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5316 -> 2175[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5317[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2158 -> 5317[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5317 -> 2176[label="",style="solid", color="blue", weight=3]; 26.47/9.54 2156[label="xwv215 || xwv216",fontsize=16,color="burlywood",shape="triangle"];5318[label="xwv215/False",fontsize=10,color="white",style="solid",shape="box"];2156 -> 5318[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5318 -> 2177[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5319[label="xwv215/True",fontsize=10,color="white",style="solid",shape="box"];2156 -> 5319[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5319 -> 2178[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1746 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1746[label="xwv65 == xwv68",fontsize=16,color="magenta"];1746 -> 2179[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1746 -> 2180[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1747 -> 534[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1747[label="xwv65 == xwv68",fontsize=16,color="magenta"];1747 -> 2181[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1747 -> 2182[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1748 -> 528[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1748[label="xwv65 == xwv68",fontsize=16,color="magenta"];1748 -> 2183[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1748 -> 2184[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1749 -> 535[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1749[label="xwv65 == xwv68",fontsize=16,color="magenta"];1749 -> 2185[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1749 -> 2186[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1750 -> 530[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1750[label="xwv65 == xwv68",fontsize=16,color="magenta"];1750 -> 2187[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1750 -> 2188[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1751 -> 531[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1751[label="xwv65 == xwv68",fontsize=16,color="magenta"];1751 -> 2189[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1751 -> 2190[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1752 -> 536[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1752[label="xwv65 == xwv68",fontsize=16,color="magenta"];1752 -> 2191[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1752 -> 2192[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1753 -> 538[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1753[label="xwv65 == xwv68",fontsize=16,color="magenta"];1753 -> 2193[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1753 -> 2194[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1754 -> 541[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1754[label="xwv65 == xwv68",fontsize=16,color="magenta"];1754 -> 2195[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1754 -> 2196[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1755 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1755[label="xwv65 == xwv68",fontsize=16,color="magenta"];1755 -> 2197[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1755 -> 2198[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1756 -> 539[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1756[label="xwv65 == xwv68",fontsize=16,color="magenta"];1756 -> 2199[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1756 -> 2200[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1757 -> 533[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1757[label="xwv65 == xwv68",fontsize=16,color="magenta"];1757 -> 2201[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1757 -> 2202[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1758 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1758[label="xwv65 == xwv68",fontsize=16,color="magenta"];1758 -> 2203[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1758 -> 2204[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1759 -> 537[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1759[label="xwv65 == xwv68",fontsize=16,color="magenta"];1759 -> 2205[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1759 -> 2206[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1760[label="compare1 (xwv185,xwv186,xwv187) (xwv188,xwv189,xwv190) xwv192",fontsize=16,color="burlywood",shape="triangle"];5320[label="xwv192/False",fontsize=10,color="white",style="solid",shape="box"];1760 -> 5320[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5320 -> 2207[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5321[label="xwv192/True",fontsize=10,color="white",style="solid",shape="box"];1760 -> 5321[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5321 -> 2208[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 1761 -> 1760[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1761[label="compare1 (xwv185,xwv186,xwv187) (xwv188,xwv189,xwv190) True",fontsize=16,color="magenta"];1761 -> 2209[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1762[label="xwv77",fontsize=16,color="green",shape="box"];1763[label="xwv76",fontsize=16,color="green",shape="box"];1764[label="xwv77",fontsize=16,color="green",shape="box"];1765[label="xwv76",fontsize=16,color="green",shape="box"];1766[label="xwv77",fontsize=16,color="green",shape="box"];1767[label="xwv76",fontsize=16,color="green",shape="box"];1768[label="xwv77",fontsize=16,color="green",shape="box"];1769[label="xwv76",fontsize=16,color="green",shape="box"];1770[label="xwv77",fontsize=16,color="green",shape="box"];1771[label="xwv76",fontsize=16,color="green",shape="box"];1772[label="xwv77",fontsize=16,color="green",shape="box"];1773[label="xwv76",fontsize=16,color="green",shape="box"];1774[label="xwv77",fontsize=16,color="green",shape="box"];1775[label="xwv76",fontsize=16,color="green",shape="box"];1776[label="xwv77",fontsize=16,color="green",shape="box"];1777[label="xwv76",fontsize=16,color="green",shape="box"];1778[label="xwv77",fontsize=16,color="green",shape="box"];1779[label="xwv76",fontsize=16,color="green",shape="box"];1780[label="xwv77",fontsize=16,color="green",shape="box"];1781[label="xwv76",fontsize=16,color="green",shape="box"];1782[label="xwv77",fontsize=16,color="green",shape="box"];1783[label="xwv76",fontsize=16,color="green",shape="box"];1784[label="xwv77",fontsize=16,color="green",shape="box"];1785[label="xwv76",fontsize=16,color="green",shape="box"];1786[label="xwv77",fontsize=16,color="green",shape="box"];1787[label="xwv76",fontsize=16,color="green",shape="box"];1788[label="xwv77",fontsize=16,color="green",shape="box"];1789[label="xwv76",fontsize=16,color="green",shape="box"];1790[label="compare0 (Left xwv150) (Left xwv151) True",fontsize=16,color="black",shape="box"];1790 -> 2210[label="",style="solid", color="black", weight=3]; 26.47/9.54 1791[label="xwv84",fontsize=16,color="green",shape="box"];1792[label="xwv83",fontsize=16,color="green",shape="box"];1793[label="xwv84",fontsize=16,color="green",shape="box"];1794[label="xwv83",fontsize=16,color="green",shape="box"];1795[label="xwv84",fontsize=16,color="green",shape="box"];1796[label="xwv83",fontsize=16,color="green",shape="box"];1797[label="xwv84",fontsize=16,color="green",shape="box"];1798[label="xwv83",fontsize=16,color="green",shape="box"];1799[label="xwv84",fontsize=16,color="green",shape="box"];1800[label="xwv83",fontsize=16,color="green",shape="box"];1801[label="xwv84",fontsize=16,color="green",shape="box"];1802[label="xwv83",fontsize=16,color="green",shape="box"];1803[label="xwv84",fontsize=16,color="green",shape="box"];1804[label="xwv83",fontsize=16,color="green",shape="box"];1805[label="xwv84",fontsize=16,color="green",shape="box"];1806[label="xwv83",fontsize=16,color="green",shape="box"];1807[label="xwv84",fontsize=16,color="green",shape="box"];1808[label="xwv83",fontsize=16,color="green",shape="box"];1809[label="xwv84",fontsize=16,color="green",shape="box"];1810[label="xwv83",fontsize=16,color="green",shape="box"];1811[label="xwv84",fontsize=16,color="green",shape="box"];1812[label="xwv83",fontsize=16,color="green",shape="box"];1813[label="xwv84",fontsize=16,color="green",shape="box"];1814[label="xwv83",fontsize=16,color="green",shape="box"];1815[label="xwv84",fontsize=16,color="green",shape="box"];1816[label="xwv83",fontsize=16,color="green",shape="box"];1817[label="xwv84",fontsize=16,color="green",shape="box"];1818[label="xwv83",fontsize=16,color="green",shape="box"];1819[label="compare0 (Right xwv157) (Right xwv158) True",fontsize=16,color="black",shape="box"];1819 -> 2211[label="",style="solid", color="black", weight=3]; 26.47/9.54 1820[label="primMulNat (Succ xwv400000) (Succ xwv300100)",fontsize=16,color="black",shape="box"];1820 -> 2212[label="",style="solid", color="black", weight=3]; 26.47/9.54 1821[label="primMulNat (Succ xwv400000) Zero",fontsize=16,color="black",shape="box"];1821 -> 2213[label="",style="solid", color="black", weight=3]; 26.47/9.54 1822[label="primMulNat Zero (Succ xwv300100)",fontsize=16,color="black",shape="box"];1822 -> 2214[label="",style="solid", color="black", weight=3]; 26.47/9.54 1823[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1823 -> 2215[label="",style="solid", color="black", weight=3]; 26.47/9.54 1824[label="xwv101",fontsize=16,color="green",shape="box"];1825[label="xwv102",fontsize=16,color="green",shape="box"];3929[label="xwv3450",fontsize=16,color="green",shape="box"];3930[label="xwv3440",fontsize=16,color="green",shape="box"];2774[label="primPlusNat xwv3320 xwv2420",fontsize=16,color="burlywood",shape="triangle"];5322[label="xwv3320/Succ xwv33200",fontsize=10,color="white",style="solid",shape="box"];2774 -> 5322[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5322 -> 2936[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5323[label="xwv3320/Zero",fontsize=10,color="white",style="solid",shape="box"];2774 -> 5323[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5323 -> 2937[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 3931[label="primMinusNat (Succ xwv34400) (Succ xwv34500)",fontsize=16,color="black",shape="box"];3931 -> 3956[label="",style="solid", color="black", weight=3]; 26.47/9.54 3932[label="primMinusNat (Succ xwv34400) Zero",fontsize=16,color="black",shape="box"];3932 -> 3957[label="",style="solid", color="black", weight=3]; 26.47/9.54 3933[label="primMinusNat Zero (Succ xwv34500)",fontsize=16,color="black",shape="box"];3933 -> 3958[label="",style="solid", color="black", weight=3]; 26.47/9.54 3934[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];3934 -> 3959[label="",style="solid", color="black", weight=3]; 26.47/9.54 3935[label="xwv3460",fontsize=16,color="green",shape="box"];3936[label="xwv3440",fontsize=16,color="green",shape="box"];3937 -> 4498[label="",style="dashed", color="red", weight=0]; 26.47/9.54 3937[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) xwv340 xwv341 xwv340 xwv344",fontsize=16,color="magenta"];3937 -> 4504[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3937 -> 4505[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3937 -> 4506[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3937 -> 4507[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3937 -> 4508[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3938[label="error []",fontsize=16,color="red",shape="box"];3939[label="FiniteMap.mkBalBranch6MkBalBranch12 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) xwv344 (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404)",fontsize=16,color="black",shape="box"];3939 -> 3961[label="",style="solid", color="black", weight=3]; 26.47/9.54 3940 -> 417[label="",style="dashed", color="red", weight=0]; 26.47/9.54 3940[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3444",fontsize=16,color="magenta"];3940 -> 3962[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3940 -> 3963[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3941 -> 1356[label="",style="dashed", color="red", weight=0]; 26.47/9.54 3941[label="FiniteMap.sizeFM xwv3443",fontsize=16,color="magenta"];3941 -> 3964[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3942[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv340 xwv340 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 False",fontsize=16,color="black",shape="box"];3942 -> 3965[label="",style="solid", color="black", weight=3]; 26.47/9.54 3943[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv340 xwv340 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 True",fontsize=16,color="black",shape="box"];3943 -> 3966[label="",style="solid", color="black", weight=3]; 26.47/9.54 4607 -> 3846[label="",style="dashed", color="red", weight=0]; 26.47/9.54 4607[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xwv461 xwv458 xwv460)",fontsize=16,color="magenta"];4607 -> 4610[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 4607 -> 4611[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 4608[label="primPlusInt (Pos xwv4620) (FiniteMap.mkBranchRight_size xwv461 xwv458 xwv460)",fontsize=16,color="black",shape="box"];4608 -> 4612[label="",style="solid", color="black", weight=3]; 26.47/9.54 4609[label="primPlusInt (Neg xwv4620) (FiniteMap.mkBranchRight_size xwv461 xwv458 xwv460)",fontsize=16,color="black",shape="box"];4609 -> 4613[label="",style="solid", color="black", weight=3]; 26.47/9.54 1858[label="FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344",fontsize=16,color="green",shape="box"];1859[label="FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=16,color="green",shape="box"];1860[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"];1860 -> 2248[label="",style="solid", color="black", weight=3]; 26.47/9.54 1861 -> 3696[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1861[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"];1861 -> 3725[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1861 -> 3726[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1861 -> 3727[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1861 -> 3728[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1864 -> 156[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1864[label="compare xwv113 xwv115",fontsize=16,color="magenta"];1864 -> 2252[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1864 -> 2253[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1865[label="LT",fontsize=16,color="green",shape="box"];1866 -> 157[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1866[label="compare xwv113 xwv115",fontsize=16,color="magenta"];1866 -> 2254[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1866 -> 2255[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1867[label="LT",fontsize=16,color="green",shape="box"];1868 -> 158[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1868[label="compare xwv113 xwv115",fontsize=16,color="magenta"];1868 -> 2256[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1868 -> 2257[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1869[label="LT",fontsize=16,color="green",shape="box"];1870 -> 159[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1870[label="compare xwv113 xwv115",fontsize=16,color="magenta"];1870 -> 2258[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1870 -> 2259[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1871[label="LT",fontsize=16,color="green",shape="box"];1872 -> 160[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1872[label="compare xwv113 xwv115",fontsize=16,color="magenta"];1872 -> 2260[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1872 -> 2261[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1873[label="LT",fontsize=16,color="green",shape="box"];1874 -> 161[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1874[label="compare xwv113 xwv115",fontsize=16,color="magenta"];1874 -> 2262[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1874 -> 2263[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1875[label="LT",fontsize=16,color="green",shape="box"];1876 -> 162[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1876[label="compare xwv113 xwv115",fontsize=16,color="magenta"];1876 -> 2264[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1876 -> 2265[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1877[label="LT",fontsize=16,color="green",shape="box"];1878 -> 163[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1878[label="compare xwv113 xwv115",fontsize=16,color="magenta"];1878 -> 2266[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1878 -> 2267[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1879[label="LT",fontsize=16,color="green",shape="box"];1880 -> 164[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1880[label="compare xwv113 xwv115",fontsize=16,color="magenta"];1880 -> 2268[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1880 -> 2269[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1881[label="LT",fontsize=16,color="green",shape="box"];1882 -> 165[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1882[label="compare xwv113 xwv115",fontsize=16,color="magenta"];1882 -> 2270[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1882 -> 2271[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1883[label="LT",fontsize=16,color="green",shape="box"];1884 -> 166[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1884[label="compare xwv113 xwv115",fontsize=16,color="magenta"];1884 -> 2272[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1884 -> 2273[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1885[label="LT",fontsize=16,color="green",shape="box"];1886 -> 167[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1886[label="compare xwv113 xwv115",fontsize=16,color="magenta"];1886 -> 2274[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1886 -> 2275[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1887[label="LT",fontsize=16,color="green",shape="box"];1888 -> 168[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1888[label="compare xwv113 xwv115",fontsize=16,color="magenta"];1888 -> 2276[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1888 -> 2277[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1889[label="LT",fontsize=16,color="green",shape="box"];1890[label="xwv116",fontsize=16,color="green",shape="box"];1891[label="xwv114",fontsize=16,color="green",shape="box"];1892[label="xwv116",fontsize=16,color="green",shape="box"];1893[label="xwv114",fontsize=16,color="green",shape="box"];1894[label="xwv116",fontsize=16,color="green",shape="box"];1895[label="xwv114",fontsize=16,color="green",shape="box"];1896[label="xwv116",fontsize=16,color="green",shape="box"];1897[label="xwv114",fontsize=16,color="green",shape="box"];1898[label="xwv116",fontsize=16,color="green",shape="box"];1899[label="xwv114",fontsize=16,color="green",shape="box"];1900[label="xwv116",fontsize=16,color="green",shape="box"];1901[label="xwv114",fontsize=16,color="green",shape="box"];1902[label="xwv116",fontsize=16,color="green",shape="box"];1903[label="xwv114",fontsize=16,color="green",shape="box"];1904[label="xwv116",fontsize=16,color="green",shape="box"];1905[label="xwv114",fontsize=16,color="green",shape="box"];1906[label="xwv116",fontsize=16,color="green",shape="box"];1907[label="xwv114",fontsize=16,color="green",shape="box"];1908[label="xwv116",fontsize=16,color="green",shape="box"];1909[label="xwv114",fontsize=16,color="green",shape="box"];1910[label="xwv116",fontsize=16,color="green",shape="box"];1911[label="xwv114",fontsize=16,color="green",shape="box"];1912[label="xwv116",fontsize=16,color="green",shape="box"];1913[label="xwv114",fontsize=16,color="green",shape="box"];1914[label="xwv116",fontsize=16,color="green",shape="box"];1915[label="xwv114",fontsize=16,color="green",shape="box"];1916[label="xwv116",fontsize=16,color="green",shape="box"];1917[label="xwv114",fontsize=16,color="green",shape="box"];1918[label="xwv113",fontsize=16,color="green",shape="box"];1919[label="xwv115",fontsize=16,color="green",shape="box"];1920[label="xwv113",fontsize=16,color="green",shape="box"];1921[label="xwv115",fontsize=16,color="green",shape="box"];1922[label="xwv113",fontsize=16,color="green",shape="box"];1923[label="xwv115",fontsize=16,color="green",shape="box"];1924[label="xwv113",fontsize=16,color="green",shape="box"];1925[label="xwv115",fontsize=16,color="green",shape="box"];1926[label="xwv113",fontsize=16,color="green",shape="box"];1927[label="xwv115",fontsize=16,color="green",shape="box"];1928[label="xwv113",fontsize=16,color="green",shape="box"];1929[label="xwv115",fontsize=16,color="green",shape="box"];1930[label="xwv113",fontsize=16,color="green",shape="box"];1931[label="xwv115",fontsize=16,color="green",shape="box"];1932[label="xwv113",fontsize=16,color="green",shape="box"];1933[label="xwv115",fontsize=16,color="green",shape="box"];1934[label="xwv113",fontsize=16,color="green",shape="box"];1935[label="xwv115",fontsize=16,color="green",shape="box"];1936[label="xwv113",fontsize=16,color="green",shape="box"];1937[label="xwv115",fontsize=16,color="green",shape="box"];1938[label="xwv113",fontsize=16,color="green",shape="box"];1939[label="xwv115",fontsize=16,color="green",shape="box"];1940[label="xwv113",fontsize=16,color="green",shape="box"];1941[label="xwv115",fontsize=16,color="green",shape="box"];1942[label="xwv113",fontsize=16,color="green",shape="box"];1943[label="xwv115",fontsize=16,color="green",shape="box"];1944[label="xwv113",fontsize=16,color="green",shape="box"];1945[label="xwv115",fontsize=16,color="green",shape="box"];1946[label="compare1 (xwv170,xwv171) (xwv172,xwv173) False",fontsize=16,color="black",shape="box"];1946 -> 2278[label="",style="solid", color="black", weight=3]; 26.47/9.54 1947[label="compare1 (xwv170,xwv171) (xwv172,xwv173) True",fontsize=16,color="black",shape="box"];1947 -> 2279[label="",style="solid", color="black", weight=3]; 26.47/9.54 1948[label="True",fontsize=16,color="green",shape="box"];1949[label="xwv40000",fontsize=16,color="green",shape="box"];1950[label="xwv30000",fontsize=16,color="green",shape="box"];1951[label="xwv40000",fontsize=16,color="green",shape="box"];1952[label="xwv30000",fontsize=16,color="green",shape="box"];1953[label="xwv40000",fontsize=16,color="green",shape="box"];1954[label="xwv30000",fontsize=16,color="green",shape="box"];1955[label="xwv40000",fontsize=16,color="green",shape="box"];1956[label="xwv30000",fontsize=16,color="green",shape="box"];1957[label="xwv40000",fontsize=16,color="green",shape="box"];1958[label="xwv30000",fontsize=16,color="green",shape="box"];1959[label="xwv40000",fontsize=16,color="green",shape="box"];1960[label="xwv30000",fontsize=16,color="green",shape="box"];1961[label="xwv40000",fontsize=16,color="green",shape="box"];1962[label="xwv30000",fontsize=16,color="green",shape="box"];1963[label="xwv40000",fontsize=16,color="green",shape="box"];1964[label="xwv30000",fontsize=16,color="green",shape="box"];1965[label="xwv40000",fontsize=16,color="green",shape="box"];1966[label="xwv30000",fontsize=16,color="green",shape="box"];1967[label="xwv40000",fontsize=16,color="green",shape="box"];1968[label="xwv30000",fontsize=16,color="green",shape="box"];1969[label="xwv40000",fontsize=16,color="green",shape="box"];1970[label="xwv30000",fontsize=16,color="green",shape="box"];1971[label="xwv40000",fontsize=16,color="green",shape="box"];1972[label="xwv30000",fontsize=16,color="green",shape="box"];1973[label="xwv40000",fontsize=16,color="green",shape="box"];1974[label="xwv30000",fontsize=16,color="green",shape="box"];1975[label="xwv40000",fontsize=16,color="green",shape="box"];1976[label="xwv30000",fontsize=16,color="green",shape="box"];1977 -> 417[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1977[label="xwv40000 * xwv30001",fontsize=16,color="magenta"];1977 -> 2280[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1977 -> 2281[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1978 -> 417[label="",style="dashed", color="red", weight=0]; 26.47/9.54 1978[label="xwv40001 * xwv30000",fontsize=16,color="magenta"];1978 -> 2282[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1978 -> 2283[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 1979[label="primEqInt (Pos (Succ xwv400000)) (Pos (Succ xwv300000))",fontsize=16,color="black",shape="box"];1979 -> 2284[label="",style="solid", color="black", weight=3]; 26.47/9.54 1980[label="primEqInt (Pos (Succ xwv400000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1980 -> 2285[label="",style="solid", color="black", weight=3]; 26.47/9.54 1981[label="False",fontsize=16,color="green",shape="box"];1982[label="primEqInt (Pos Zero) (Pos (Succ xwv300000))",fontsize=16,color="black",shape="box"];1982 -> 2286[label="",style="solid", color="black", weight=3]; 26.47/9.54 1983[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1983 -> 2287[label="",style="solid", color="black", weight=3]; 26.47/9.54 1984[label="primEqInt (Pos Zero) (Neg (Succ xwv300000))",fontsize=16,color="black",shape="box"];1984 -> 2288[label="",style="solid", color="black", weight=3]; 26.47/9.54 1985[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1985 -> 2289[label="",style="solid", color="black", weight=3]; 26.47/9.54 1986[label="False",fontsize=16,color="green",shape="box"];1987[label="primEqInt (Neg (Succ xwv400000)) (Neg (Succ xwv300000))",fontsize=16,color="black",shape="box"];1987 -> 2290[label="",style="solid", color="black", weight=3]; 26.47/9.54 1988[label="primEqInt (Neg (Succ xwv400000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1988 -> 2291[label="",style="solid", color="black", weight=3]; 26.47/9.54 1989[label="primEqInt (Neg Zero) (Pos (Succ xwv300000))",fontsize=16,color="black",shape="box"];1989 -> 2292[label="",style="solid", color="black", weight=3]; 26.47/9.54 1990[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1990 -> 2293[label="",style="solid", color="black", weight=3]; 26.47/9.54 1991[label="primEqInt (Neg Zero) (Neg (Succ xwv300000))",fontsize=16,color="black",shape="box"];1991 -> 2294[label="",style="solid", color="black", weight=3]; 26.47/9.54 1992[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1992 -> 2295[label="",style="solid", color="black", weight=3]; 26.47/9.54 1993[label="xwv40000",fontsize=16,color="green",shape="box"];1994[label="xwv30000",fontsize=16,color="green",shape="box"];1995[label="xwv40000",fontsize=16,color="green",shape="box"];1996[label="xwv30000",fontsize=16,color="green",shape="box"];1997[label="xwv40000",fontsize=16,color="green",shape="box"];1998[label="xwv30000",fontsize=16,color="green",shape="box"];1999[label="xwv40000",fontsize=16,color="green",shape="box"];2000[label="xwv30000",fontsize=16,color="green",shape="box"];2001[label="xwv40000",fontsize=16,color="green",shape="box"];2002[label="xwv30000",fontsize=16,color="green",shape="box"];2003[label="xwv40000",fontsize=16,color="green",shape="box"];2004[label="xwv30000",fontsize=16,color="green",shape="box"];2005[label="xwv40000",fontsize=16,color="green",shape="box"];2006[label="xwv30000",fontsize=16,color="green",shape="box"];2007[label="xwv40000",fontsize=16,color="green",shape="box"];2008[label="xwv30000",fontsize=16,color="green",shape="box"];2009[label="xwv40000",fontsize=16,color="green",shape="box"];2010[label="xwv30000",fontsize=16,color="green",shape="box"];2011[label="xwv40000",fontsize=16,color="green",shape="box"];2012[label="xwv30000",fontsize=16,color="green",shape="box"];2013[label="xwv40000",fontsize=16,color="green",shape="box"];2014[label="xwv30000",fontsize=16,color="green",shape="box"];2015[label="xwv40000",fontsize=16,color="green",shape="box"];2016[label="xwv30000",fontsize=16,color="green",shape="box"];2017[label="xwv40000",fontsize=16,color="green",shape="box"];2018[label="xwv30000",fontsize=16,color="green",shape="box"];2019[label="xwv40000",fontsize=16,color="green",shape="box"];2020[label="xwv30000",fontsize=16,color="green",shape="box"];2021[label="xwv40000",fontsize=16,color="green",shape="box"];2022[label="xwv30000",fontsize=16,color="green",shape="box"];2023[label="xwv40000",fontsize=16,color="green",shape="box"];2024[label="xwv30000",fontsize=16,color="green",shape="box"];2025[label="xwv40000",fontsize=16,color="green",shape="box"];2026[label="xwv30000",fontsize=16,color="green",shape="box"];2027[label="xwv40000",fontsize=16,color="green",shape="box"];2028[label="xwv30000",fontsize=16,color="green",shape="box"];2029[label="xwv40000",fontsize=16,color="green",shape="box"];2030[label="xwv30000",fontsize=16,color="green",shape="box"];2031[label="xwv40000",fontsize=16,color="green",shape="box"];2032[label="xwv30000",fontsize=16,color="green",shape="box"];2033[label="xwv40000",fontsize=16,color="green",shape="box"];2034[label="xwv30000",fontsize=16,color="green",shape="box"];2035[label="xwv40000",fontsize=16,color="green",shape="box"];2036[label="xwv30000",fontsize=16,color="green",shape="box"];2037[label="xwv40000",fontsize=16,color="green",shape="box"];2038[label="xwv30000",fontsize=16,color="green",shape="box"];2039[label="xwv40000",fontsize=16,color="green",shape="box"];2040[label="xwv30000",fontsize=16,color="green",shape="box"];2041[label="xwv40000",fontsize=16,color="green",shape="box"];2042[label="xwv30000",fontsize=16,color="green",shape="box"];2043[label="xwv40000",fontsize=16,color="green",shape="box"];2044[label="xwv30000",fontsize=16,color="green",shape="box"];2045[label="xwv40000",fontsize=16,color="green",shape="box"];2046[label="xwv30000",fontsize=16,color="green",shape="box"];2047[label="xwv40000",fontsize=16,color="green",shape="box"];2048[label="xwv30000",fontsize=16,color="green",shape="box"];2049[label="primEqNat (Succ xwv400000) xwv30000",fontsize=16,color="burlywood",shape="box"];5324[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];2049 -> 5324[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5324 -> 2296[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5325[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2049 -> 5325[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5325 -> 2297[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 2050[label="primEqNat Zero xwv30000",fontsize=16,color="burlywood",shape="box"];5326[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];2050 -> 5326[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5326 -> 2298[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5327[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2050 -> 5327[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5327 -> 2299[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 2051 -> 528[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2051[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2051 -> 2300[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2051 -> 2301[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2052 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2052[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2052 -> 2302[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2052 -> 2303[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2053 -> 530[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2053[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2053 -> 2304[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2053 -> 2305[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2054 -> 531[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2054[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2054 -> 2306[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2054 -> 2307[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2055 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2055[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2055 -> 2308[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2055 -> 2309[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2056 -> 533[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2056[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2056 -> 2310[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2056 -> 2311[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2057 -> 534[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2057[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2057 -> 2312[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2057 -> 2313[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2058 -> 535[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2058[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2058 -> 2314[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2058 -> 2315[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2059 -> 536[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2059[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2059 -> 2316[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2059 -> 2317[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2060 -> 537[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2060[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2060 -> 2318[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2060 -> 2319[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2061 -> 538[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2061[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2061 -> 2320[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2061 -> 2321[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2062 -> 539[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2062[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2062 -> 2322[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2062 -> 2323[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2063 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2063[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2063 -> 2324[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2063 -> 2325[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2064 -> 541[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2064[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2064 -> 2326[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2064 -> 2327[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2065 -> 528[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2065[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2065 -> 2328[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2065 -> 2329[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2066 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2066[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2066 -> 2330[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2066 -> 2331[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2067 -> 530[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2067[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2067 -> 2332[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2067 -> 2333[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2068 -> 531[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2068[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2068 -> 2334[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2068 -> 2335[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2069 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2069[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2069 -> 2336[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2069 -> 2337[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2070 -> 533[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2070[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2070 -> 2338[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2070 -> 2339[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2071 -> 534[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2071[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2071 -> 2340[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2071 -> 2341[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2072 -> 535[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2072[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2072 -> 2342[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2072 -> 2343[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2073 -> 536[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2073[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2073 -> 2344[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2073 -> 2345[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2074 -> 537[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2074[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2074 -> 2346[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2074 -> 2347[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2075 -> 538[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2075[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2075 -> 2348[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2075 -> 2349[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2076 -> 539[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2076[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2076 -> 2350[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2076 -> 2351[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2077 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2077[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2077 -> 2352[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2077 -> 2353[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2078 -> 541[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2078[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2078 -> 2354[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2078 -> 2355[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2079 -> 417[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2079[label="xwv40000 * xwv30001",fontsize=16,color="magenta"];2079 -> 2356[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2079 -> 2357[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2080 -> 417[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2080[label="xwv40001 * xwv30000",fontsize=16,color="magenta"];2080 -> 2358[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2080 -> 2359[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2081 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2081[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2081 -> 2360[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2081 -> 2361[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2082 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2082[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2082 -> 2362[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2082 -> 2363[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2083 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2083[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2083 -> 2364[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2083 -> 2365[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2084 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2084[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2084 -> 2366[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2084 -> 2367[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2085[label="xwv40002 == xwv30002",fontsize=16,color="blue",shape="box"];5328[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 5328[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5328 -> 2368[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5329[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 5329[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5329 -> 2369[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5330[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 5330[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5330 -> 2370[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5331[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 5331[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5331 -> 2371[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5332[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 5332[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5332 -> 2372[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5333[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 5333[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5333 -> 2373[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5334[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 5334[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5334 -> 2374[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5335[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 5335[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5335 -> 2375[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5336[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 5336[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5336 -> 2376[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5337[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 5337[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5337 -> 2377[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5338[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 5338[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5338 -> 2378[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5339[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 5339[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5339 -> 2379[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5340[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 5340[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5340 -> 2380[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5341[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2085 -> 5341[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5341 -> 2381[label="",style="solid", color="blue", weight=3]; 26.47/9.54 2086[label="xwv40001 == xwv30001",fontsize=16,color="blue",shape="box"];5342[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 5342[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5342 -> 2382[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5343[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 5343[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5343 -> 2383[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5344[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 5344[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5344 -> 2384[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5345[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 5345[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5345 -> 2385[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5346[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 5346[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5346 -> 2386[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5347[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 5347[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5347 -> 2387[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5348[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 5348[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5348 -> 2388[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5349[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 5349[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5349 -> 2389[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5350[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 5350[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5350 -> 2390[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5351[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 5351[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5351 -> 2391[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5352[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 5352[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5352 -> 2392[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5353[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 5353[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5353 -> 2393[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5354[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 5354[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5354 -> 2394[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5355[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 5355[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5355 -> 2395[label="",style="solid", color="blue", weight=3]; 26.47/9.54 2087 -> 528[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2087[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2087 -> 2396[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2087 -> 2397[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2088 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2088[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2088 -> 2398[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2088 -> 2399[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2089 -> 530[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2089[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2089 -> 2400[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2089 -> 2401[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2090 -> 531[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2090[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2090 -> 2402[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2090 -> 2403[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2091 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2091[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2091 -> 2404[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2091 -> 2405[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2092 -> 533[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2092[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2092 -> 2406[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2092 -> 2407[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2093 -> 534[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2093[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2093 -> 2408[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2093 -> 2409[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2094 -> 535[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2094[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2094 -> 2410[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2094 -> 2411[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2095 -> 536[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2095[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2095 -> 2412[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2095 -> 2413[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2096 -> 537[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2096[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2096 -> 2414[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2096 -> 2415[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2097 -> 538[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2097[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2097 -> 2416[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2097 -> 2417[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2098 -> 539[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2098[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2098 -> 2418[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2098 -> 2419[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2099 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2099[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2099 -> 2420[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2099 -> 2421[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2100 -> 541[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2100[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2100 -> 2422[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2100 -> 2423[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2101[label="xwv40001",fontsize=16,color="green",shape="box"];2102[label="xwv30001",fontsize=16,color="green",shape="box"];2103 -> 528[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2103[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2103 -> 2424[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2103 -> 2425[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2104 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2104[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2104 -> 2426[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2104 -> 2427[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2105 -> 530[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2105[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2105 -> 2428[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2105 -> 2429[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2106 -> 531[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2106[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2106 -> 2430[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2106 -> 2431[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2107 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2107[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2107 -> 2432[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2107 -> 2433[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2108 -> 533[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2108[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2108 -> 2434[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2108 -> 2435[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2109 -> 534[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2109[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2109 -> 2436[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2109 -> 2437[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2110 -> 535[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2110[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2110 -> 2438[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2110 -> 2439[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2111 -> 536[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2111[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2111 -> 2440[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2111 -> 2441[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2112 -> 537[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2112[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2112 -> 2442[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2112 -> 2443[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2113 -> 538[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2113[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2113 -> 2444[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2113 -> 2445[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2114 -> 539[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2114[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2114 -> 2446[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2114 -> 2447[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2115 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2115[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2115 -> 2448[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2115 -> 2449[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2116 -> 541[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2116[label="xwv40000 == xwv30000",fontsize=16,color="magenta"];2116 -> 2450[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2116 -> 2451[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2118 -> 155[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2118[label="compare xwv54 xwv55",fontsize=16,color="magenta"];2118 -> 2452[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2118 -> 2453[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2117[label="xwv211 /= GT",fontsize=16,color="black",shape="triangle"];2117 -> 2454[label="",style="solid", color="black", weight=3]; 26.47/9.54 2119 -> 156[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2119[label="compare xwv54 xwv55",fontsize=16,color="magenta"];2119 -> 2455[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2119 -> 2456[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2130[label="False <= False",fontsize=16,color="black",shape="box"];2130 -> 2457[label="",style="solid", color="black", weight=3]; 26.47/9.54 2131[label="False <= True",fontsize=16,color="black",shape="box"];2131 -> 2458[label="",style="solid", color="black", weight=3]; 26.47/9.54 2132[label="True <= False",fontsize=16,color="black",shape="box"];2132 -> 2459[label="",style="solid", color="black", weight=3]; 26.47/9.54 2133[label="True <= True",fontsize=16,color="black",shape="box"];2133 -> 2460[label="",style="solid", color="black", weight=3]; 26.47/9.54 2134[label="(xwv540,xwv541) <= (xwv550,xwv551)",fontsize=16,color="black",shape="box"];2134 -> 2461[label="",style="solid", color="black", weight=3]; 26.47/9.54 2135[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2135 -> 2462[label="",style="solid", color="black", weight=3]; 26.47/9.54 2136[label="Nothing <= Just xwv550",fontsize=16,color="black",shape="box"];2136 -> 2463[label="",style="solid", color="black", weight=3]; 26.47/9.54 2137[label="Just xwv540 <= Nothing",fontsize=16,color="black",shape="box"];2137 -> 2464[label="",style="solid", color="black", weight=3]; 26.47/9.54 2138[label="Just xwv540 <= Just xwv550",fontsize=16,color="black",shape="box"];2138 -> 2465[label="",style="solid", color="black", weight=3]; 26.47/9.54 2120 -> 160[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2120[label="compare xwv54 xwv55",fontsize=16,color="magenta"];2120 -> 2466[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2120 -> 2467[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2121 -> 161[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2121[label="compare xwv54 xwv55",fontsize=16,color="magenta"];2121 -> 2468[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2121 -> 2469[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2122 -> 162[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2122[label="compare xwv54 xwv55",fontsize=16,color="magenta"];2122 -> 2470[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2122 -> 2471[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2123 -> 163[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2123[label="compare xwv54 xwv55",fontsize=16,color="magenta"];2123 -> 2472[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2123 -> 2473[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2139[label="LT <= LT",fontsize=16,color="black",shape="box"];2139 -> 2474[label="",style="solid", color="black", weight=3]; 26.47/9.54 2140[label="LT <= EQ",fontsize=16,color="black",shape="box"];2140 -> 2475[label="",style="solid", color="black", weight=3]; 26.47/9.54 2141[label="LT <= GT",fontsize=16,color="black",shape="box"];2141 -> 2476[label="",style="solid", color="black", weight=3]; 26.47/9.54 2142[label="EQ <= LT",fontsize=16,color="black",shape="box"];2142 -> 2477[label="",style="solid", color="black", weight=3]; 26.47/9.54 2143[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2143 -> 2478[label="",style="solid", color="black", weight=3]; 26.47/9.54 2144[label="EQ <= GT",fontsize=16,color="black",shape="box"];2144 -> 2479[label="",style="solid", color="black", weight=3]; 26.47/9.54 2145[label="GT <= LT",fontsize=16,color="black",shape="box"];2145 -> 2480[label="",style="solid", color="black", weight=3]; 26.47/9.54 2146[label="GT <= EQ",fontsize=16,color="black",shape="box"];2146 -> 2481[label="",style="solid", color="black", weight=3]; 26.47/9.54 2147[label="GT <= GT",fontsize=16,color="black",shape="box"];2147 -> 2482[label="",style="solid", color="black", weight=3]; 26.47/9.54 2148[label="(xwv540,xwv541,xwv542) <= (xwv550,xwv551,xwv552)",fontsize=16,color="black",shape="box"];2148 -> 2483[label="",style="solid", color="black", weight=3]; 26.47/9.54 2149[label="Left xwv540 <= Left xwv550",fontsize=16,color="black",shape="box"];2149 -> 2484[label="",style="solid", color="black", weight=3]; 26.47/9.54 2150[label="Left xwv540 <= Right xwv550",fontsize=16,color="black",shape="box"];2150 -> 2485[label="",style="solid", color="black", weight=3]; 26.47/9.54 2151[label="Right xwv540 <= Left xwv550",fontsize=16,color="black",shape="box"];2151 -> 2486[label="",style="solid", color="black", weight=3]; 26.47/9.54 2152[label="Right xwv540 <= Right xwv550",fontsize=16,color="black",shape="box"];2152 -> 2487[label="",style="solid", color="black", weight=3]; 26.47/9.54 2124 -> 167[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2124[label="compare xwv54 xwv55",fontsize=16,color="magenta"];2124 -> 2488[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2124 -> 2489[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2125 -> 168[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2125[label="compare xwv54 xwv55",fontsize=16,color="magenta"];2125 -> 2490[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2125 -> 2491[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2153[label="GT",fontsize=16,color="green",shape="box"];2161[label="xwv67 <= xwv70",fontsize=16,color="blue",shape="box"];5356[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 5356[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5356 -> 2492[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5357[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 5357[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5357 -> 2493[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5358[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 5358[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5358 -> 2494[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5359[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 5359[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5359 -> 2495[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5360[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 5360[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5360 -> 2496[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5361[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 5361[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5361 -> 2497[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5362[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 5362[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5362 -> 2498[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5363[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 5363[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5363 -> 2499[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5364[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 5364[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5364 -> 2500[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5365[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 5365[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5365 -> 2501[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5366[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 5366[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5366 -> 2502[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5367[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 5367[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5367 -> 2503[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5368[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 5368[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5368 -> 2504[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5369[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2161 -> 5369[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5369 -> 2505[label="",style="solid", color="blue", weight=3]; 26.47/9.54 2162[label="xwv66 == xwv69",fontsize=16,color="blue",shape="box"];5370[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2162 -> 5370[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5370 -> 2506[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5371[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2162 -> 5371[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5371 -> 2507[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5372[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2162 -> 5372[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5372 -> 2508[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5373[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2162 -> 5373[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5373 -> 2509[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5374[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2162 -> 5374[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5374 -> 2510[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5375[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2162 -> 5375[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5375 -> 2511[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5376[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2162 -> 5376[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5376 -> 2512[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5377[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2162 -> 5377[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5377 -> 2513[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5378[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2162 -> 5378[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5378 -> 2514[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5379[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2162 -> 5379[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5379 -> 2515[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5380[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2162 -> 5380[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5380 -> 2516[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5381[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2162 -> 5381[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5381 -> 2517[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5382[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2162 -> 5382[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5382 -> 2518[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5383[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2162 -> 5383[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5383 -> 2519[label="",style="solid", color="blue", weight=3]; 26.47/9.54 2163 -> 1380[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2163[label="xwv66 < xwv69",fontsize=16,color="magenta"];2163 -> 2520[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2163 -> 2521[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2164 -> 1381[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2164[label="xwv66 < xwv69",fontsize=16,color="magenta"];2164 -> 2522[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2164 -> 2523[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2165 -> 1382[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2165[label="xwv66 < xwv69",fontsize=16,color="magenta"];2165 -> 2524[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2165 -> 2525[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2166 -> 1383[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2166[label="xwv66 < xwv69",fontsize=16,color="magenta"];2166 -> 2526[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2166 -> 2527[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2167 -> 1384[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2167[label="xwv66 < xwv69",fontsize=16,color="magenta"];2167 -> 2528[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2167 -> 2529[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2168 -> 1385[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2168[label="xwv66 < xwv69",fontsize=16,color="magenta"];2168 -> 2530[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2168 -> 2531[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2169 -> 1386[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2169[label="xwv66 < xwv69",fontsize=16,color="magenta"];2169 -> 2532[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2169 -> 2533[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2170 -> 1387[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2170[label="xwv66 < xwv69",fontsize=16,color="magenta"];2170 -> 2534[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2170 -> 2535[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2171 -> 1388[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2171[label="xwv66 < xwv69",fontsize=16,color="magenta"];2171 -> 2536[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2171 -> 2537[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2172 -> 1389[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2172[label="xwv66 < xwv69",fontsize=16,color="magenta"];2172 -> 2538[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2172 -> 2539[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2173 -> 1390[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2173[label="xwv66 < xwv69",fontsize=16,color="magenta"];2173 -> 2540[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2173 -> 2541[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2174 -> 1391[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2174[label="xwv66 < xwv69",fontsize=16,color="magenta"];2174 -> 2542[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2174 -> 2543[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2175 -> 1392[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2175[label="xwv66 < xwv69",fontsize=16,color="magenta"];2175 -> 2544[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2175 -> 2545[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2176 -> 1393[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2176[label="xwv66 < xwv69",fontsize=16,color="magenta"];2176 -> 2546[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2176 -> 2547[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2177[label="False || xwv216",fontsize=16,color="black",shape="box"];2177 -> 2548[label="",style="solid", color="black", weight=3]; 26.47/9.54 2178[label="True || xwv216",fontsize=16,color="black",shape="box"];2178 -> 2549[label="",style="solid", color="black", weight=3]; 26.47/9.54 2179[label="xwv65",fontsize=16,color="green",shape="box"];2180[label="xwv68",fontsize=16,color="green",shape="box"];2181[label="xwv65",fontsize=16,color="green",shape="box"];2182[label="xwv68",fontsize=16,color="green",shape="box"];2183[label="xwv65",fontsize=16,color="green",shape="box"];2184[label="xwv68",fontsize=16,color="green",shape="box"];2185[label="xwv65",fontsize=16,color="green",shape="box"];2186[label="xwv68",fontsize=16,color="green",shape="box"];2187[label="xwv65",fontsize=16,color="green",shape="box"];2188[label="xwv68",fontsize=16,color="green",shape="box"];2189[label="xwv65",fontsize=16,color="green",shape="box"];2190[label="xwv68",fontsize=16,color="green",shape="box"];2191[label="xwv65",fontsize=16,color="green",shape="box"];2192[label="xwv68",fontsize=16,color="green",shape="box"];2193[label="xwv65",fontsize=16,color="green",shape="box"];2194[label="xwv68",fontsize=16,color="green",shape="box"];2195[label="xwv65",fontsize=16,color="green",shape="box"];2196[label="xwv68",fontsize=16,color="green",shape="box"];2197[label="xwv65",fontsize=16,color="green",shape="box"];2198[label="xwv68",fontsize=16,color="green",shape="box"];2199[label="xwv65",fontsize=16,color="green",shape="box"];2200[label="xwv68",fontsize=16,color="green",shape="box"];2201[label="xwv65",fontsize=16,color="green",shape="box"];2202[label="xwv68",fontsize=16,color="green",shape="box"];2203[label="xwv65",fontsize=16,color="green",shape="box"];2204[label="xwv68",fontsize=16,color="green",shape="box"];2205[label="xwv65",fontsize=16,color="green",shape="box"];2206[label="xwv68",fontsize=16,color="green",shape="box"];2207[label="compare1 (xwv185,xwv186,xwv187) (xwv188,xwv189,xwv190) False",fontsize=16,color="black",shape="box"];2207 -> 2550[label="",style="solid", color="black", weight=3]; 26.47/9.54 2208[label="compare1 (xwv185,xwv186,xwv187) (xwv188,xwv189,xwv190) True",fontsize=16,color="black",shape="box"];2208 -> 2551[label="",style="solid", color="black", weight=3]; 26.47/9.54 2209[label="True",fontsize=16,color="green",shape="box"];2210[label="GT",fontsize=16,color="green",shape="box"];2211[label="GT",fontsize=16,color="green",shape="box"];2212 -> 2552[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2212[label="primPlusNat (primMulNat xwv400000 (Succ xwv300100)) (Succ xwv300100)",fontsize=16,color="magenta"];2212 -> 2553[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2213[label="Zero",fontsize=16,color="green",shape="box"];2214[label="Zero",fontsize=16,color="green",shape="box"];2215[label="Zero",fontsize=16,color="green",shape="box"];2936[label="primPlusNat (Succ xwv33200) xwv2420",fontsize=16,color="burlywood",shape="box"];5384[label="xwv2420/Succ xwv24200",fontsize=10,color="white",style="solid",shape="box"];2936 -> 5384[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5384 -> 3071[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5385[label="xwv2420/Zero",fontsize=10,color="white",style="solid",shape="box"];2936 -> 5385[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5385 -> 3072[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 2937[label="primPlusNat Zero xwv2420",fontsize=16,color="burlywood",shape="box"];5386[label="xwv2420/Succ xwv24200",fontsize=10,color="white",style="solid",shape="box"];2937 -> 5386[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5386 -> 3073[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5387[label="xwv2420/Zero",fontsize=10,color="white",style="solid",shape="box"];2937 -> 5387[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5387 -> 3074[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 3956 -> 3883[label="",style="dashed", color="red", weight=0]; 26.47/9.54 3956[label="primMinusNat xwv34400 xwv34500",fontsize=16,color="magenta"];3956 -> 3984[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3956 -> 3985[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3957[label="Pos (Succ xwv34400)",fontsize=16,color="green",shape="box"];3958[label="Neg (Succ xwv34500)",fontsize=16,color="green",shape="box"];3959[label="Pos Zero",fontsize=16,color="green",shape="box"];4504[label="xwv340",fontsize=16,color="green",shape="box"];4505[label="xwv344",fontsize=16,color="green",shape="box"];4506[label="Succ Zero",fontsize=16,color="green",shape="box"];4507[label="xwv340",fontsize=16,color="green",shape="box"];4508[label="xwv341",fontsize=16,color="green",shape="box"];3961 -> 3986[label="",style="dashed", color="red", weight=0]; 26.47/9.54 3961[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) xwv344 xwv3400 xwv3401 xwv3402 xwv3403 xwv3404 (FiniteMap.sizeFM xwv3404 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3403)",fontsize=16,color="magenta"];3961 -> 3987[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3962[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3963 -> 1356[label="",style="dashed", color="red", weight=0]; 26.47/9.54 3963[label="FiniteMap.sizeFM xwv3444",fontsize=16,color="magenta"];3963 -> 3988[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3964[label="xwv3443",fontsize=16,color="green",shape="box"];3965[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv340 xwv340 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 otherwise",fontsize=16,color="black",shape="box"];3965 -> 3989[label="",style="solid", color="black", weight=3]; 26.47/9.54 3966[label="FiniteMap.mkBalBranch6Single_L xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv340 xwv340 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444)",fontsize=16,color="black",shape="box"];3966 -> 3990[label="",style="solid", color="black", weight=3]; 26.47/9.54 4610[label="FiniteMap.mkBranchLeft_size xwv461 xwv458 xwv460",fontsize=16,color="black",shape="box"];4610 -> 4614[label="",style="solid", color="black", weight=3]; 26.47/9.54 4611[label="Succ Zero",fontsize=16,color="green",shape="box"];4612 -> 3846[label="",style="dashed", color="red", weight=0]; 26.47/9.54 4612[label="primPlusInt (Pos xwv4620) (FiniteMap.sizeFM xwv461)",fontsize=16,color="magenta"];4612 -> 4615[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 4612 -> 4616[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 4613 -> 3848[label="",style="dashed", color="red", weight=0]; 26.47/9.54 4613[label="primPlusInt (Neg xwv4620) (FiniteMap.sizeFM xwv461)",fontsize=16,color="magenta"];4613 -> 4617[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 4613 -> 4618[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2248[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"];2248 -> 2581[label="",style="solid", color="black", weight=3]; 26.47/9.54 3725[label="FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=16,color="green",shape="box"];3726[label="FiniteMap.deleteMin (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="burlywood",shape="triangle"];5388[label="xwv343/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3726 -> 5388[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5388 -> 3745[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5389[label="xwv343/FiniteMap.Branch xwv3430 xwv3431 xwv3432 xwv3433 xwv3434",fontsize=10,color="white",style="solid",shape="box"];3726 -> 5389[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5389 -> 3746[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 3727[label="FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];3727 -> 3747[label="",style="solid", color="black", weight=3]; 26.47/9.54 3728[label="FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];3728 -> 3748[label="",style="solid", color="black", weight=3]; 26.47/9.54 2252[label="xwv113",fontsize=16,color="green",shape="box"];2253[label="xwv115",fontsize=16,color="green",shape="box"];2254[label="xwv113",fontsize=16,color="green",shape="box"];2255[label="xwv115",fontsize=16,color="green",shape="box"];2256[label="xwv113",fontsize=16,color="green",shape="box"];2257[label="xwv115",fontsize=16,color="green",shape="box"];2258[label="xwv113",fontsize=16,color="green",shape="box"];2259[label="xwv115",fontsize=16,color="green",shape="box"];2260[label="xwv113",fontsize=16,color="green",shape="box"];2261[label="xwv115",fontsize=16,color="green",shape="box"];2262[label="xwv113",fontsize=16,color="green",shape="box"];2263[label="xwv115",fontsize=16,color="green",shape="box"];2264[label="xwv113",fontsize=16,color="green",shape="box"];2265[label="xwv115",fontsize=16,color="green",shape="box"];2266[label="xwv113",fontsize=16,color="green",shape="box"];2267[label="xwv115",fontsize=16,color="green",shape="box"];2268[label="xwv113",fontsize=16,color="green",shape="box"];2269[label="xwv115",fontsize=16,color="green",shape="box"];2270[label="xwv113",fontsize=16,color="green",shape="box"];2271[label="xwv115",fontsize=16,color="green",shape="box"];2272[label="xwv113",fontsize=16,color="green",shape="box"];2273[label="xwv115",fontsize=16,color="green",shape="box"];2274[label="xwv113",fontsize=16,color="green",shape="box"];2275[label="xwv115",fontsize=16,color="green",shape="box"];2276[label="xwv113",fontsize=16,color="green",shape="box"];2277[label="xwv115",fontsize=16,color="green",shape="box"];2278[label="compare0 (xwv170,xwv171) (xwv172,xwv173) otherwise",fontsize=16,color="black",shape="box"];2278 -> 2583[label="",style="solid", color="black", weight=3]; 26.47/9.54 2279[label="LT",fontsize=16,color="green",shape="box"];2280[label="xwv40000",fontsize=16,color="green",shape="box"];2281[label="xwv30001",fontsize=16,color="green",shape="box"];2282[label="xwv40001",fontsize=16,color="green",shape="box"];2283[label="xwv30000",fontsize=16,color="green",shape="box"];2284 -> 1680[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2284[label="primEqNat xwv400000 xwv300000",fontsize=16,color="magenta"];2284 -> 2584[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2284 -> 2585[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2285[label="False",fontsize=16,color="green",shape="box"];2286[label="False",fontsize=16,color="green",shape="box"];2287[label="True",fontsize=16,color="green",shape="box"];2288[label="False",fontsize=16,color="green",shape="box"];2289[label="True",fontsize=16,color="green",shape="box"];2290 -> 1680[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2290[label="primEqNat xwv400000 xwv300000",fontsize=16,color="magenta"];2290 -> 2586[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2290 -> 2587[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2291[label="False",fontsize=16,color="green",shape="box"];2292[label="False",fontsize=16,color="green",shape="box"];2293[label="True",fontsize=16,color="green",shape="box"];2294[label="False",fontsize=16,color="green",shape="box"];2295[label="True",fontsize=16,color="green",shape="box"];2296[label="primEqNat (Succ xwv400000) (Succ xwv300000)",fontsize=16,color="black",shape="box"];2296 -> 2588[label="",style="solid", color="black", weight=3]; 26.47/9.54 2297[label="primEqNat (Succ xwv400000) Zero",fontsize=16,color="black",shape="box"];2297 -> 2589[label="",style="solid", color="black", weight=3]; 26.47/9.54 2298[label="primEqNat Zero (Succ xwv300000)",fontsize=16,color="black",shape="box"];2298 -> 2590[label="",style="solid", color="black", weight=3]; 26.47/9.54 2299[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2299 -> 2591[label="",style="solid", color="black", weight=3]; 26.47/9.54 2300[label="xwv40001",fontsize=16,color="green",shape="box"];2301[label="xwv30001",fontsize=16,color="green",shape="box"];2302[label="xwv40001",fontsize=16,color="green",shape="box"];2303[label="xwv30001",fontsize=16,color="green",shape="box"];2304[label="xwv40001",fontsize=16,color="green",shape="box"];2305[label="xwv30001",fontsize=16,color="green",shape="box"];2306[label="xwv40001",fontsize=16,color="green",shape="box"];2307[label="xwv30001",fontsize=16,color="green",shape="box"];2308[label="xwv40001",fontsize=16,color="green",shape="box"];2309[label="xwv30001",fontsize=16,color="green",shape="box"];2310[label="xwv40001",fontsize=16,color="green",shape="box"];2311[label="xwv30001",fontsize=16,color="green",shape="box"];2312[label="xwv40001",fontsize=16,color="green",shape="box"];2313[label="xwv30001",fontsize=16,color="green",shape="box"];2314[label="xwv40001",fontsize=16,color="green",shape="box"];2315[label="xwv30001",fontsize=16,color="green",shape="box"];2316[label="xwv40001",fontsize=16,color="green",shape="box"];2317[label="xwv30001",fontsize=16,color="green",shape="box"];2318[label="xwv40001",fontsize=16,color="green",shape="box"];2319[label="xwv30001",fontsize=16,color="green",shape="box"];2320[label="xwv40001",fontsize=16,color="green",shape="box"];2321[label="xwv30001",fontsize=16,color="green",shape="box"];2322[label="xwv40001",fontsize=16,color="green",shape="box"];2323[label="xwv30001",fontsize=16,color="green",shape="box"];2324[label="xwv40001",fontsize=16,color="green",shape="box"];2325[label="xwv30001",fontsize=16,color="green",shape="box"];2326[label="xwv40001",fontsize=16,color="green",shape="box"];2327[label="xwv30001",fontsize=16,color="green",shape="box"];2328[label="xwv40000",fontsize=16,color="green",shape="box"];2329[label="xwv30000",fontsize=16,color="green",shape="box"];2330[label="xwv40000",fontsize=16,color="green",shape="box"];2331[label="xwv30000",fontsize=16,color="green",shape="box"];2332[label="xwv40000",fontsize=16,color="green",shape="box"];2333[label="xwv30000",fontsize=16,color="green",shape="box"];2334[label="xwv40000",fontsize=16,color="green",shape="box"];2335[label="xwv30000",fontsize=16,color="green",shape="box"];2336[label="xwv40000",fontsize=16,color="green",shape="box"];2337[label="xwv30000",fontsize=16,color="green",shape="box"];2338[label="xwv40000",fontsize=16,color="green",shape="box"];2339[label="xwv30000",fontsize=16,color="green",shape="box"];2340[label="xwv40000",fontsize=16,color="green",shape="box"];2341[label="xwv30000",fontsize=16,color="green",shape="box"];2342[label="xwv40000",fontsize=16,color="green",shape="box"];2343[label="xwv30000",fontsize=16,color="green",shape="box"];2344[label="xwv40000",fontsize=16,color="green",shape="box"];2345[label="xwv30000",fontsize=16,color="green",shape="box"];2346[label="xwv40000",fontsize=16,color="green",shape="box"];2347[label="xwv30000",fontsize=16,color="green",shape="box"];2348[label="xwv40000",fontsize=16,color="green",shape="box"];2349[label="xwv30000",fontsize=16,color="green",shape="box"];2350[label="xwv40000",fontsize=16,color="green",shape="box"];2351[label="xwv30000",fontsize=16,color="green",shape="box"];2352[label="xwv40000",fontsize=16,color="green",shape="box"];2353[label="xwv30000",fontsize=16,color="green",shape="box"];2354[label="xwv40000",fontsize=16,color="green",shape="box"];2355[label="xwv30000",fontsize=16,color="green",shape="box"];2356[label="xwv40000",fontsize=16,color="green",shape="box"];2357[label="xwv30001",fontsize=16,color="green",shape="box"];2358[label="xwv40001",fontsize=16,color="green",shape="box"];2359[label="xwv30000",fontsize=16,color="green",shape="box"];2360[label="xwv40001",fontsize=16,color="green",shape="box"];2361[label="xwv30001",fontsize=16,color="green",shape="box"];2362[label="xwv40001",fontsize=16,color="green",shape="box"];2363[label="xwv30001",fontsize=16,color="green",shape="box"];2364[label="xwv40000",fontsize=16,color="green",shape="box"];2365[label="xwv30000",fontsize=16,color="green",shape="box"];2366[label="xwv40000",fontsize=16,color="green",shape="box"];2367[label="xwv30000",fontsize=16,color="green",shape="box"];2368 -> 528[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2368[label="xwv40002 == xwv30002",fontsize=16,color="magenta"];2368 -> 2592[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2368 -> 2593[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2369 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2369[label="xwv40002 == xwv30002",fontsize=16,color="magenta"];2369 -> 2594[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2369 -> 2595[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2370 -> 530[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2370[label="xwv40002 == xwv30002",fontsize=16,color="magenta"];2370 -> 2596[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2370 -> 2597[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2371 -> 531[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2371[label="xwv40002 == xwv30002",fontsize=16,color="magenta"];2371 -> 2598[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2371 -> 2599[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2372 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2372[label="xwv40002 == xwv30002",fontsize=16,color="magenta"];2372 -> 2600[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2372 -> 2601[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2373 -> 533[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2373[label="xwv40002 == xwv30002",fontsize=16,color="magenta"];2373 -> 2602[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2373 -> 2603[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2374 -> 534[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2374[label="xwv40002 == xwv30002",fontsize=16,color="magenta"];2374 -> 2604[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2374 -> 2605[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2375 -> 535[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2375[label="xwv40002 == xwv30002",fontsize=16,color="magenta"];2375 -> 2606[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2375 -> 2607[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2376 -> 536[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2376[label="xwv40002 == xwv30002",fontsize=16,color="magenta"];2376 -> 2608[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2376 -> 2609[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2377 -> 537[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2377[label="xwv40002 == xwv30002",fontsize=16,color="magenta"];2377 -> 2610[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2377 -> 2611[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2378 -> 538[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2378[label="xwv40002 == xwv30002",fontsize=16,color="magenta"];2378 -> 2612[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2378 -> 2613[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2379 -> 539[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2379[label="xwv40002 == xwv30002",fontsize=16,color="magenta"];2379 -> 2614[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2379 -> 2615[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2380 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2380[label="xwv40002 == xwv30002",fontsize=16,color="magenta"];2380 -> 2616[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2380 -> 2617[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2381 -> 541[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2381[label="xwv40002 == xwv30002",fontsize=16,color="magenta"];2381 -> 2618[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2381 -> 2619[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2382 -> 528[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2382[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2382 -> 2620[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2382 -> 2621[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2383 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2383[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2383 -> 2622[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2383 -> 2623[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2384 -> 530[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2384[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2384 -> 2624[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2384 -> 2625[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2385 -> 531[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2385[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2385 -> 2626[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2385 -> 2627[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2386 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2386[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2386 -> 2628[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2386 -> 2629[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2387 -> 533[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2387[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2387 -> 2630[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2387 -> 2631[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2388 -> 534[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2388[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2388 -> 2632[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2388 -> 2633[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2389 -> 535[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2389[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2389 -> 2634[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2389 -> 2635[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2390 -> 536[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2390[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2390 -> 2636[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2390 -> 2637[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2391 -> 537[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2391[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2391 -> 2638[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2391 -> 2639[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2392 -> 538[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2392[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2392 -> 2640[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2392 -> 2641[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2393 -> 539[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2393[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2393 -> 2642[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2393 -> 2643[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2394 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2394[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2394 -> 2644[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2394 -> 2645[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2395 -> 541[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2395[label="xwv40001 == xwv30001",fontsize=16,color="magenta"];2395 -> 2646[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2395 -> 2647[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2396[label="xwv40000",fontsize=16,color="green",shape="box"];2397[label="xwv30000",fontsize=16,color="green",shape="box"];2398[label="xwv40000",fontsize=16,color="green",shape="box"];2399[label="xwv30000",fontsize=16,color="green",shape="box"];2400[label="xwv40000",fontsize=16,color="green",shape="box"];2401[label="xwv30000",fontsize=16,color="green",shape="box"];2402[label="xwv40000",fontsize=16,color="green",shape="box"];2403[label="xwv30000",fontsize=16,color="green",shape="box"];2404[label="xwv40000",fontsize=16,color="green",shape="box"];2405[label="xwv30000",fontsize=16,color="green",shape="box"];2406[label="xwv40000",fontsize=16,color="green",shape="box"];2407[label="xwv30000",fontsize=16,color="green",shape="box"];2408[label="xwv40000",fontsize=16,color="green",shape="box"];2409[label="xwv30000",fontsize=16,color="green",shape="box"];2410[label="xwv40000",fontsize=16,color="green",shape="box"];2411[label="xwv30000",fontsize=16,color="green",shape="box"];2412[label="xwv40000",fontsize=16,color="green",shape="box"];2413[label="xwv30000",fontsize=16,color="green",shape="box"];2414[label="xwv40000",fontsize=16,color="green",shape="box"];2415[label="xwv30000",fontsize=16,color="green",shape="box"];2416[label="xwv40000",fontsize=16,color="green",shape="box"];2417[label="xwv30000",fontsize=16,color="green",shape="box"];2418[label="xwv40000",fontsize=16,color="green",shape="box"];2419[label="xwv30000",fontsize=16,color="green",shape="box"];2420[label="xwv40000",fontsize=16,color="green",shape="box"];2421[label="xwv30000",fontsize=16,color="green",shape="box"];2422[label="xwv40000",fontsize=16,color="green",shape="box"];2423[label="xwv30000",fontsize=16,color="green",shape="box"];2424[label="xwv40000",fontsize=16,color="green",shape="box"];2425[label="xwv30000",fontsize=16,color="green",shape="box"];2426[label="xwv40000",fontsize=16,color="green",shape="box"];2427[label="xwv30000",fontsize=16,color="green",shape="box"];2428[label="xwv40000",fontsize=16,color="green",shape="box"];2429[label="xwv30000",fontsize=16,color="green",shape="box"];2430[label="xwv40000",fontsize=16,color="green",shape="box"];2431[label="xwv30000",fontsize=16,color="green",shape="box"];2432[label="xwv40000",fontsize=16,color="green",shape="box"];2433[label="xwv30000",fontsize=16,color="green",shape="box"];2434[label="xwv40000",fontsize=16,color="green",shape="box"];2435[label="xwv30000",fontsize=16,color="green",shape="box"];2436[label="xwv40000",fontsize=16,color="green",shape="box"];2437[label="xwv30000",fontsize=16,color="green",shape="box"];2438[label="xwv40000",fontsize=16,color="green",shape="box"];2439[label="xwv30000",fontsize=16,color="green",shape="box"];2440[label="xwv40000",fontsize=16,color="green",shape="box"];2441[label="xwv30000",fontsize=16,color="green",shape="box"];2442[label="xwv40000",fontsize=16,color="green",shape="box"];2443[label="xwv30000",fontsize=16,color="green",shape="box"];2444[label="xwv40000",fontsize=16,color="green",shape="box"];2445[label="xwv30000",fontsize=16,color="green",shape="box"];2446[label="xwv40000",fontsize=16,color="green",shape="box"];2447[label="xwv30000",fontsize=16,color="green",shape="box"];2448[label="xwv40000",fontsize=16,color="green",shape="box"];2449[label="xwv30000",fontsize=16,color="green",shape="box"];2450[label="xwv40000",fontsize=16,color="green",shape="box"];2451[label="xwv30000",fontsize=16,color="green",shape="box"];2452[label="xwv54",fontsize=16,color="green",shape="box"];2453[label="xwv55",fontsize=16,color="green",shape="box"];2454 -> 2648[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2454[label="not (xwv211 == GT)",fontsize=16,color="magenta"];2454 -> 2649[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2455[label="xwv54",fontsize=16,color="green",shape="box"];2456[label="xwv55",fontsize=16,color="green",shape="box"];2457[label="True",fontsize=16,color="green",shape="box"];2458[label="True",fontsize=16,color="green",shape="box"];2459[label="False",fontsize=16,color="green",shape="box"];2460[label="True",fontsize=16,color="green",shape="box"];2461 -> 2156[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2461[label="xwv540 < xwv550 || xwv540 == xwv550 && xwv541 <= xwv551",fontsize=16,color="magenta"];2461 -> 2650[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2461 -> 2651[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2462[label="True",fontsize=16,color="green",shape="box"];2463[label="True",fontsize=16,color="green",shape="box"];2464[label="False",fontsize=16,color="green",shape="box"];2465[label="xwv540 <= xwv550",fontsize=16,color="blue",shape="box"];5390[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5390[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5390 -> 2652[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5391[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5391[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5391 -> 2653[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5392[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5392[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5392 -> 2654[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5393[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5393[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5393 -> 2655[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5394[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5394[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5394 -> 2656[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5395[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5395[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5395 -> 2657[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5396[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5396[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5396 -> 2658[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5397[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5397[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5397 -> 2659[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5398[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5398[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5398 -> 2660[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5399[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5399[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5399 -> 2661[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5400[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5400[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5400 -> 2662[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5401[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5401[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5401 -> 2663[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5402[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5402[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5402 -> 2664[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5403[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2465 -> 5403[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5403 -> 2665[label="",style="solid", color="blue", weight=3]; 26.47/9.54 2466[label="xwv54",fontsize=16,color="green",shape="box"];2467[label="xwv55",fontsize=16,color="green",shape="box"];2468[label="xwv54",fontsize=16,color="green",shape="box"];2469[label="xwv55",fontsize=16,color="green",shape="box"];2470[label="xwv54",fontsize=16,color="green",shape="box"];2471[label="xwv55",fontsize=16,color="green",shape="box"];2472[label="xwv54",fontsize=16,color="green",shape="box"];2473[label="xwv55",fontsize=16,color="green",shape="box"];2474[label="True",fontsize=16,color="green",shape="box"];2475[label="True",fontsize=16,color="green",shape="box"];2476[label="True",fontsize=16,color="green",shape="box"];2477[label="False",fontsize=16,color="green",shape="box"];2478[label="True",fontsize=16,color="green",shape="box"];2479[label="True",fontsize=16,color="green",shape="box"];2480[label="False",fontsize=16,color="green",shape="box"];2481[label="False",fontsize=16,color="green",shape="box"];2482[label="True",fontsize=16,color="green",shape="box"];2483 -> 2156[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2483[label="xwv540 < xwv550 || xwv540 == xwv550 && (xwv541 < xwv551 || xwv541 == xwv551 && xwv542 <= xwv552)",fontsize=16,color="magenta"];2483 -> 2666[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2483 -> 2667[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2484[label="xwv540 <= xwv550",fontsize=16,color="blue",shape="box"];5404[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 5404[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5404 -> 2668[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5405[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 5405[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5405 -> 2669[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5406[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 5406[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5406 -> 2670[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5407[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 5407[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5407 -> 2671[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5408[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 5408[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5408 -> 2672[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5409[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 5409[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5409 -> 2673[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5410[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 5410[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5410 -> 2674[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5411[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 5411[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5411 -> 2675[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5412[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 5412[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5412 -> 2676[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5413[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 5413[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5413 -> 2677[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5414[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 5414[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5414 -> 2678[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5415[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 5415[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5415 -> 2679[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5416[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 5416[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5416 -> 2680[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5417[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 5417[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5417 -> 2681[label="",style="solid", color="blue", weight=3]; 26.47/9.54 2485[label="True",fontsize=16,color="green",shape="box"];2486[label="False",fontsize=16,color="green",shape="box"];2487[label="xwv540 <= xwv550",fontsize=16,color="blue",shape="box"];5418[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 5418[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5418 -> 2682[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5419[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 5419[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5419 -> 2683[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5420[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 5420[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5420 -> 2684[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5421[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 5421[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5421 -> 2685[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5422[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 5422[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5422 -> 2686[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5423[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 5423[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5423 -> 2687[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5424[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 5424[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5424 -> 2688[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5425[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 5425[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5425 -> 2689[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5426[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 5426[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5426 -> 2690[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5427[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 5427[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5427 -> 2691[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5428[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 5428[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5428 -> 2692[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5429[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 5429[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5429 -> 2693[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5430[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 5430[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5430 -> 2694[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5431[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2487 -> 5431[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5431 -> 2695[label="",style="solid", color="blue", weight=3]; 26.47/9.54 2488[label="xwv54",fontsize=16,color="green",shape="box"];2489[label="xwv55",fontsize=16,color="green",shape="box"];2490[label="xwv54",fontsize=16,color="green",shape="box"];2491[label="xwv55",fontsize=16,color="green",shape="box"];2492 -> 1435[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2492[label="xwv67 <= xwv70",fontsize=16,color="magenta"];2492 -> 2696[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2492 -> 2697[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2493 -> 1436[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2493[label="xwv67 <= xwv70",fontsize=16,color="magenta"];2493 -> 2698[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2493 -> 2699[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2494 -> 1437[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2494[label="xwv67 <= xwv70",fontsize=16,color="magenta"];2494 -> 2700[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2494 -> 2701[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2495 -> 1438[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2495[label="xwv67 <= xwv70",fontsize=16,color="magenta"];2495 -> 2702[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2495 -> 2703[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2496 -> 1439[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2496[label="xwv67 <= xwv70",fontsize=16,color="magenta"];2496 -> 2704[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2496 -> 2705[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2497 -> 1440[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2497[label="xwv67 <= xwv70",fontsize=16,color="magenta"];2497 -> 2706[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2497 -> 2707[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2498 -> 1441[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2498[label="xwv67 <= xwv70",fontsize=16,color="magenta"];2498 -> 2708[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2498 -> 2709[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2499 -> 1442[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2499[label="xwv67 <= xwv70",fontsize=16,color="magenta"];2499 -> 2710[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2499 -> 2711[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2500 -> 1443[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2500[label="xwv67 <= xwv70",fontsize=16,color="magenta"];2500 -> 2712[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2500 -> 2713[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2501 -> 1444[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2501[label="xwv67 <= xwv70",fontsize=16,color="magenta"];2501 -> 2714[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2501 -> 2715[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2502 -> 1445[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2502[label="xwv67 <= xwv70",fontsize=16,color="magenta"];2502 -> 2716[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2502 -> 2717[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2503 -> 1446[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2503[label="xwv67 <= xwv70",fontsize=16,color="magenta"];2503 -> 2718[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2503 -> 2719[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2504 -> 1447[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2504[label="xwv67 <= xwv70",fontsize=16,color="magenta"];2504 -> 2720[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2504 -> 2721[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2505 -> 1448[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2505[label="xwv67 <= xwv70",fontsize=16,color="magenta"];2505 -> 2722[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2505 -> 2723[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2506 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2506[label="xwv66 == xwv69",fontsize=16,color="magenta"];2506 -> 2724[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2506 -> 2725[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2507 -> 534[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2507[label="xwv66 == xwv69",fontsize=16,color="magenta"];2507 -> 2726[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2507 -> 2727[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2508 -> 528[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2508[label="xwv66 == xwv69",fontsize=16,color="magenta"];2508 -> 2728[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2508 -> 2729[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2509 -> 535[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2509[label="xwv66 == xwv69",fontsize=16,color="magenta"];2509 -> 2730[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2509 -> 2731[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2510 -> 530[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2510[label="xwv66 == xwv69",fontsize=16,color="magenta"];2510 -> 2732[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2510 -> 2733[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2511 -> 531[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2511[label="xwv66 == xwv69",fontsize=16,color="magenta"];2511 -> 2734[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2511 -> 2735[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2512 -> 536[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2512[label="xwv66 == xwv69",fontsize=16,color="magenta"];2512 -> 2736[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2512 -> 2737[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2513 -> 538[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2513[label="xwv66 == xwv69",fontsize=16,color="magenta"];2513 -> 2738[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2513 -> 2739[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2514 -> 541[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2514[label="xwv66 == xwv69",fontsize=16,color="magenta"];2514 -> 2740[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2514 -> 2741[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2515 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2515[label="xwv66 == xwv69",fontsize=16,color="magenta"];2515 -> 2742[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2515 -> 2743[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2516 -> 539[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2516[label="xwv66 == xwv69",fontsize=16,color="magenta"];2516 -> 2744[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2516 -> 2745[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2517 -> 533[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2517[label="xwv66 == xwv69",fontsize=16,color="magenta"];2517 -> 2746[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2517 -> 2747[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2518 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2518[label="xwv66 == xwv69",fontsize=16,color="magenta"];2518 -> 2748[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2518 -> 2749[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2519 -> 537[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2519[label="xwv66 == xwv69",fontsize=16,color="magenta"];2519 -> 2750[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2519 -> 2751[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2520[label="xwv69",fontsize=16,color="green",shape="box"];2521[label="xwv66",fontsize=16,color="green",shape="box"];2522[label="xwv69",fontsize=16,color="green",shape="box"];2523[label="xwv66",fontsize=16,color="green",shape="box"];2524[label="xwv69",fontsize=16,color="green",shape="box"];2525[label="xwv66",fontsize=16,color="green",shape="box"];2526[label="xwv69",fontsize=16,color="green",shape="box"];2527[label="xwv66",fontsize=16,color="green",shape="box"];2528[label="xwv69",fontsize=16,color="green",shape="box"];2529[label="xwv66",fontsize=16,color="green",shape="box"];2530[label="xwv69",fontsize=16,color="green",shape="box"];2531[label="xwv66",fontsize=16,color="green",shape="box"];2532[label="xwv69",fontsize=16,color="green",shape="box"];2533[label="xwv66",fontsize=16,color="green",shape="box"];2534[label="xwv69",fontsize=16,color="green",shape="box"];2535[label="xwv66",fontsize=16,color="green",shape="box"];2536[label="xwv69",fontsize=16,color="green",shape="box"];2537[label="xwv66",fontsize=16,color="green",shape="box"];2538[label="xwv69",fontsize=16,color="green",shape="box"];2539[label="xwv66",fontsize=16,color="green",shape="box"];2540[label="xwv69",fontsize=16,color="green",shape="box"];2541[label="xwv66",fontsize=16,color="green",shape="box"];2542[label="xwv69",fontsize=16,color="green",shape="box"];2543[label="xwv66",fontsize=16,color="green",shape="box"];2544[label="xwv69",fontsize=16,color="green",shape="box"];2545[label="xwv66",fontsize=16,color="green",shape="box"];2546[label="xwv69",fontsize=16,color="green",shape="box"];2547[label="xwv66",fontsize=16,color="green",shape="box"];2548[label="xwv216",fontsize=16,color="green",shape="box"];2549[label="True",fontsize=16,color="green",shape="box"];2550[label="compare0 (xwv185,xwv186,xwv187) (xwv188,xwv189,xwv190) otherwise",fontsize=16,color="black",shape="box"];2550 -> 2752[label="",style="solid", color="black", weight=3]; 26.47/9.54 2551[label="LT",fontsize=16,color="green",shape="box"];2553 -> 1335[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2553[label="primMulNat xwv400000 (Succ xwv300100)",fontsize=16,color="magenta"];2553 -> 2753[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2553 -> 2754[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2552[label="primPlusNat xwv222 (Succ xwv300100)",fontsize=16,color="burlywood",shape="triangle"];5432[label="xwv222/Succ xwv2220",fontsize=10,color="white",style="solid",shape="box"];2552 -> 5432[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5432 -> 2755[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5433[label="xwv222/Zero",fontsize=10,color="white",style="solid",shape="box"];2552 -> 5433[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5433 -> 2756[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 3071[label="primPlusNat (Succ xwv33200) (Succ xwv24200)",fontsize=16,color="black",shape="box"];3071 -> 3200[label="",style="solid", color="black", weight=3]; 26.47/9.54 3072[label="primPlusNat (Succ xwv33200) Zero",fontsize=16,color="black",shape="box"];3072 -> 3201[label="",style="solid", color="black", weight=3]; 26.47/9.54 3073[label="primPlusNat Zero (Succ xwv24200)",fontsize=16,color="black",shape="box"];3073 -> 3202[label="",style="solid", color="black", weight=3]; 26.47/9.54 3074[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3074 -> 3203[label="",style="solid", color="black", weight=3]; 26.47/9.54 3984[label="xwv34500",fontsize=16,color="green",shape="box"];3985[label="xwv34400",fontsize=16,color="green",shape="box"];3987 -> 1380[label="",style="dashed", color="red", weight=0]; 26.47/9.54 3987[label="FiniteMap.sizeFM xwv3404 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3403",fontsize=16,color="magenta"];3987 -> 3994[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3987 -> 3995[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3986[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) xwv344 xwv3400 xwv3401 xwv3402 xwv3403 xwv3404 xwv357",fontsize=16,color="burlywood",shape="triangle"];5434[label="xwv357/False",fontsize=10,color="white",style="solid",shape="box"];3986 -> 5434[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5434 -> 3996[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5435[label="xwv357/True",fontsize=10,color="white",style="solid",shape="box"];3986 -> 5435[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5435 -> 3997[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 3988[label="xwv3444",fontsize=16,color="green",shape="box"];3989[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv340 xwv340 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 True",fontsize=16,color="black",shape="box"];3989 -> 4006[label="",style="solid", color="black", weight=3]; 26.47/9.54 3990 -> 4498[label="",style="dashed", color="red", weight=0]; 26.47/9.54 3990[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xwv3440 xwv3441 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv340 xwv341 xwv340 xwv3443) xwv3444",fontsize=16,color="magenta"];3990 -> 4509[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3990 -> 4510[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3990 -> 4511[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3990 -> 4512[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3990 -> 4513[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 4614[label="FiniteMap.sizeFM xwv460",fontsize=16,color="burlywood",shape="triangle"];5436[label="xwv460/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4614 -> 5436[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5436 -> 4619[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5437[label="xwv460/FiniteMap.Branch xwv4600 xwv4601 xwv4602 xwv4603 xwv4604",fontsize=10,color="white",style="solid",shape="box"];4614 -> 5437[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5437 -> 4620[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 4615 -> 4614[label="",style="dashed", color="red", weight=0]; 26.47/9.54 4615[label="FiniteMap.sizeFM xwv461",fontsize=16,color="magenta"];4615 -> 4621[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 4616[label="xwv4620",fontsize=16,color="green",shape="box"];4617[label="xwv4620",fontsize=16,color="green",shape="box"];4618 -> 4614[label="",style="dashed", color="red", weight=0]; 26.47/9.54 4618[label="FiniteMap.sizeFM xwv461",fontsize=16,color="magenta"];4618 -> 4622[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2581 -> 3696[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2581[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"];2581 -> 3729[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2581 -> 3730[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2581 -> 3731[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2581 -> 3732[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3745[label="FiniteMap.deleteMin (FiniteMap.Branch xwv340 xwv341 xwv342 FiniteMap.EmptyFM xwv344)",fontsize=16,color="black",shape="box"];3745 -> 3754[label="",style="solid", color="black", weight=3]; 26.47/9.54 3746[label="FiniteMap.deleteMin (FiniteMap.Branch xwv340 xwv341 xwv342 (FiniteMap.Branch xwv3430 xwv3431 xwv3432 xwv3433 xwv3434) xwv344)",fontsize=16,color="black",shape="box"];3746 -> 3755[label="",style="solid", color="black", weight=3]; 26.47/9.54 3747[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"];3747 -> 3756[label="",style="solid", color="black", weight=3]; 26.47/9.54 3748[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"];3748 -> 3757[label="",style="solid", color="black", weight=3]; 26.47/9.54 2583[label="compare0 (xwv170,xwv171) (xwv172,xwv173) True",fontsize=16,color="black",shape="box"];2583 -> 2795[label="",style="solid", color="black", weight=3]; 26.47/9.54 2584[label="xwv300000",fontsize=16,color="green",shape="box"];2585[label="xwv400000",fontsize=16,color="green",shape="box"];2586[label="xwv300000",fontsize=16,color="green",shape="box"];2587[label="xwv400000",fontsize=16,color="green",shape="box"];2588 -> 1680[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2588[label="primEqNat xwv400000 xwv300000",fontsize=16,color="magenta"];2588 -> 2796[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2588 -> 2797[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2589[label="False",fontsize=16,color="green",shape="box"];2590[label="False",fontsize=16,color="green",shape="box"];2591[label="True",fontsize=16,color="green",shape="box"];2592[label="xwv40002",fontsize=16,color="green",shape="box"];2593[label="xwv30002",fontsize=16,color="green",shape="box"];2594[label="xwv40002",fontsize=16,color="green",shape="box"];2595[label="xwv30002",fontsize=16,color="green",shape="box"];2596[label="xwv40002",fontsize=16,color="green",shape="box"];2597[label="xwv30002",fontsize=16,color="green",shape="box"];2598[label="xwv40002",fontsize=16,color="green",shape="box"];2599[label="xwv30002",fontsize=16,color="green",shape="box"];2600[label="xwv40002",fontsize=16,color="green",shape="box"];2601[label="xwv30002",fontsize=16,color="green",shape="box"];2602[label="xwv40002",fontsize=16,color="green",shape="box"];2603[label="xwv30002",fontsize=16,color="green",shape="box"];2604[label="xwv40002",fontsize=16,color="green",shape="box"];2605[label="xwv30002",fontsize=16,color="green",shape="box"];2606[label="xwv40002",fontsize=16,color="green",shape="box"];2607[label="xwv30002",fontsize=16,color="green",shape="box"];2608[label="xwv40002",fontsize=16,color="green",shape="box"];2609[label="xwv30002",fontsize=16,color="green",shape="box"];2610[label="xwv40002",fontsize=16,color="green",shape="box"];2611[label="xwv30002",fontsize=16,color="green",shape="box"];2612[label="xwv40002",fontsize=16,color="green",shape="box"];2613[label="xwv30002",fontsize=16,color="green",shape="box"];2614[label="xwv40002",fontsize=16,color="green",shape="box"];2615[label="xwv30002",fontsize=16,color="green",shape="box"];2616[label="xwv40002",fontsize=16,color="green",shape="box"];2617[label="xwv30002",fontsize=16,color="green",shape="box"];2618[label="xwv40002",fontsize=16,color="green",shape="box"];2619[label="xwv30002",fontsize=16,color="green",shape="box"];2620[label="xwv40001",fontsize=16,color="green",shape="box"];2621[label="xwv30001",fontsize=16,color="green",shape="box"];2622[label="xwv40001",fontsize=16,color="green",shape="box"];2623[label="xwv30001",fontsize=16,color="green",shape="box"];2624[label="xwv40001",fontsize=16,color="green",shape="box"];2625[label="xwv30001",fontsize=16,color="green",shape="box"];2626[label="xwv40001",fontsize=16,color="green",shape="box"];2627[label="xwv30001",fontsize=16,color="green",shape="box"];2628[label="xwv40001",fontsize=16,color="green",shape="box"];2629[label="xwv30001",fontsize=16,color="green",shape="box"];2630[label="xwv40001",fontsize=16,color="green",shape="box"];2631[label="xwv30001",fontsize=16,color="green",shape="box"];2632[label="xwv40001",fontsize=16,color="green",shape="box"];2633[label="xwv30001",fontsize=16,color="green",shape="box"];2634[label="xwv40001",fontsize=16,color="green",shape="box"];2635[label="xwv30001",fontsize=16,color="green",shape="box"];2636[label="xwv40001",fontsize=16,color="green",shape="box"];2637[label="xwv30001",fontsize=16,color="green",shape="box"];2638[label="xwv40001",fontsize=16,color="green",shape="box"];2639[label="xwv30001",fontsize=16,color="green",shape="box"];2640[label="xwv40001",fontsize=16,color="green",shape="box"];2641[label="xwv30001",fontsize=16,color="green",shape="box"];2642[label="xwv40001",fontsize=16,color="green",shape="box"];2643[label="xwv30001",fontsize=16,color="green",shape="box"];2644[label="xwv40001",fontsize=16,color="green",shape="box"];2645[label="xwv30001",fontsize=16,color="green",shape="box"];2646[label="xwv40001",fontsize=16,color="green",shape="box"];2647[label="xwv30001",fontsize=16,color="green",shape="box"];2649 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2649[label="xwv211 == GT",fontsize=16,color="magenta"];2649 -> 2798[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2649 -> 2799[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2648[label="not xwv223",fontsize=16,color="burlywood",shape="triangle"];5438[label="xwv223/False",fontsize=10,color="white",style="solid",shape="box"];2648 -> 5438[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5438 -> 2800[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5439[label="xwv223/True",fontsize=10,color="white",style="solid",shape="box"];2648 -> 5439[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5439 -> 2801[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 2650 -> 1028[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2650[label="xwv540 == xwv550 && xwv541 <= xwv551",fontsize=16,color="magenta"];2650 -> 2802[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2650 -> 2803[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2651[label="xwv540 < xwv550",fontsize=16,color="blue",shape="box"];5440[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5440[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5440 -> 2804[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5441[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5441[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5441 -> 2805[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5442[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5442[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5442 -> 2806[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5443[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5443[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5443 -> 2807[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5444[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5444[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5444 -> 2808[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5445[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5445[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5445 -> 2809[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5446[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5446[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5446 -> 2810[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5447[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5447[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5447 -> 2811[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5448[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5448[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5448 -> 2812[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5449[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5449[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5449 -> 2813[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5450[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5450[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5450 -> 2814[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5451[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5451[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5451 -> 2815[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5452[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5452[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5452 -> 2816[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5453[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5453[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5453 -> 2817[label="",style="solid", color="blue", weight=3]; 26.47/9.54 2652 -> 1435[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2652[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2652 -> 2818[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2652 -> 2819[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2653 -> 1436[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2653[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2653 -> 2820[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2653 -> 2821[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2654 -> 1437[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2654[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2654 -> 2822[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2654 -> 2823[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2655 -> 1438[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2655[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2655 -> 2824[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2655 -> 2825[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2656 -> 1439[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2656[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2656 -> 2826[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2656 -> 2827[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2657 -> 1440[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2657[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2657 -> 2828[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2657 -> 2829[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2658 -> 1441[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2658[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2658 -> 2830[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2658 -> 2831[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2659 -> 1442[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2659[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2659 -> 2832[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2659 -> 2833[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2660 -> 1443[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2660[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2660 -> 2834[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2660 -> 2835[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2661 -> 1444[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2661[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2661 -> 2836[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2661 -> 2837[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2662 -> 1445[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2662[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2662 -> 2838[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2662 -> 2839[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2663 -> 1446[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2663[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2663 -> 2840[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2663 -> 2841[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2664 -> 1447[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2664[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2664 -> 2842[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2664 -> 2843[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2665 -> 1448[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2665[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2665 -> 2844[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2665 -> 2845[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2666 -> 1028[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2666[label="xwv540 == xwv550 && (xwv541 < xwv551 || xwv541 == xwv551 && xwv542 <= xwv552)",fontsize=16,color="magenta"];2666 -> 2846[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2666 -> 2847[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2667[label="xwv540 < xwv550",fontsize=16,color="blue",shape="box"];5454[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5454[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5454 -> 2848[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5455[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5455[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5455 -> 2849[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5456[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5456[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5456 -> 2850[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5457[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5457[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5457 -> 2851[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5458[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5458[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5458 -> 2852[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5459[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5459[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5459 -> 2853[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5460[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5460[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5460 -> 2854[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5461[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5461[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5461 -> 2855[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5462[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5462[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5462 -> 2856[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5463[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5463[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5463 -> 2857[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5464[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5464[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5464 -> 2858[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5465[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5465[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5465 -> 2859[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5466[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5466[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5466 -> 2860[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5467[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2667 -> 5467[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5467 -> 2861[label="",style="solid", color="blue", weight=3]; 26.47/9.54 2668 -> 1435[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2668[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2668 -> 2862[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2668 -> 2863[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2669 -> 1436[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2669[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2669 -> 2864[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2669 -> 2865[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2670 -> 1437[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2670[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2670 -> 2866[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2670 -> 2867[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2671 -> 1438[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2671[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2671 -> 2868[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2671 -> 2869[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2672 -> 1439[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2672[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2672 -> 2870[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2672 -> 2871[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2673 -> 1440[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2673[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2673 -> 2872[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2673 -> 2873[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2674 -> 1441[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2674[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2674 -> 2874[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2674 -> 2875[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2675 -> 1442[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2675[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2675 -> 2876[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2675 -> 2877[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2676 -> 1443[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2676[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2676 -> 2878[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2676 -> 2879[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2677 -> 1444[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2677[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2677 -> 2880[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2677 -> 2881[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2678 -> 1445[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2678[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2678 -> 2882[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2678 -> 2883[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2679 -> 1446[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2679[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2679 -> 2884[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2679 -> 2885[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2680 -> 1447[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2680[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2680 -> 2886[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2680 -> 2887[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2681 -> 1448[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2681[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2681 -> 2888[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2681 -> 2889[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2682 -> 1435[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2682[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2682 -> 2890[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2682 -> 2891[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2683 -> 1436[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2683[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2683 -> 2892[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2683 -> 2893[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2684 -> 1437[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2684[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2684 -> 2894[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2684 -> 2895[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2685 -> 1438[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2685[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2685 -> 2896[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2685 -> 2897[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2686 -> 1439[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2686[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2686 -> 2898[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2686 -> 2899[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2687 -> 1440[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2687[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2687 -> 2900[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2687 -> 2901[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2688 -> 1441[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2688[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2688 -> 2902[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2688 -> 2903[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2689 -> 1442[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2689[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2689 -> 2904[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2689 -> 2905[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2690 -> 1443[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2690[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2690 -> 2906[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2690 -> 2907[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2691 -> 1444[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2691[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2691 -> 2908[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2691 -> 2909[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2692 -> 1445[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2692[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2692 -> 2910[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2692 -> 2911[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2693 -> 1446[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2693[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2693 -> 2912[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2693 -> 2913[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2694 -> 1447[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2694[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2694 -> 2914[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2694 -> 2915[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2695 -> 1448[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2695[label="xwv540 <= xwv550",fontsize=16,color="magenta"];2695 -> 2916[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2695 -> 2917[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2696[label="xwv70",fontsize=16,color="green",shape="box"];2697[label="xwv67",fontsize=16,color="green",shape="box"];2698[label="xwv70",fontsize=16,color="green",shape="box"];2699[label="xwv67",fontsize=16,color="green",shape="box"];2700[label="xwv70",fontsize=16,color="green",shape="box"];2701[label="xwv67",fontsize=16,color="green",shape="box"];2702[label="xwv70",fontsize=16,color="green",shape="box"];2703[label="xwv67",fontsize=16,color="green",shape="box"];2704[label="xwv70",fontsize=16,color="green",shape="box"];2705[label="xwv67",fontsize=16,color="green",shape="box"];2706[label="xwv70",fontsize=16,color="green",shape="box"];2707[label="xwv67",fontsize=16,color="green",shape="box"];2708[label="xwv70",fontsize=16,color="green",shape="box"];2709[label="xwv67",fontsize=16,color="green",shape="box"];2710[label="xwv70",fontsize=16,color="green",shape="box"];2711[label="xwv67",fontsize=16,color="green",shape="box"];2712[label="xwv70",fontsize=16,color="green",shape="box"];2713[label="xwv67",fontsize=16,color="green",shape="box"];2714[label="xwv70",fontsize=16,color="green",shape="box"];2715[label="xwv67",fontsize=16,color="green",shape="box"];2716[label="xwv70",fontsize=16,color="green",shape="box"];2717[label="xwv67",fontsize=16,color="green",shape="box"];2718[label="xwv70",fontsize=16,color="green",shape="box"];2719[label="xwv67",fontsize=16,color="green",shape="box"];2720[label="xwv70",fontsize=16,color="green",shape="box"];2721[label="xwv67",fontsize=16,color="green",shape="box"];2722[label="xwv70",fontsize=16,color="green",shape="box"];2723[label="xwv67",fontsize=16,color="green",shape="box"];2724[label="xwv66",fontsize=16,color="green",shape="box"];2725[label="xwv69",fontsize=16,color="green",shape="box"];2726[label="xwv66",fontsize=16,color="green",shape="box"];2727[label="xwv69",fontsize=16,color="green",shape="box"];2728[label="xwv66",fontsize=16,color="green",shape="box"];2729[label="xwv69",fontsize=16,color="green",shape="box"];2730[label="xwv66",fontsize=16,color="green",shape="box"];2731[label="xwv69",fontsize=16,color="green",shape="box"];2732[label="xwv66",fontsize=16,color="green",shape="box"];2733[label="xwv69",fontsize=16,color="green",shape="box"];2734[label="xwv66",fontsize=16,color="green",shape="box"];2735[label="xwv69",fontsize=16,color="green",shape="box"];2736[label="xwv66",fontsize=16,color="green",shape="box"];2737[label="xwv69",fontsize=16,color="green",shape="box"];2738[label="xwv66",fontsize=16,color="green",shape="box"];2739[label="xwv69",fontsize=16,color="green",shape="box"];2740[label="xwv66",fontsize=16,color="green",shape="box"];2741[label="xwv69",fontsize=16,color="green",shape="box"];2742[label="xwv66",fontsize=16,color="green",shape="box"];2743[label="xwv69",fontsize=16,color="green",shape="box"];2744[label="xwv66",fontsize=16,color="green",shape="box"];2745[label="xwv69",fontsize=16,color="green",shape="box"];2746[label="xwv66",fontsize=16,color="green",shape="box"];2747[label="xwv69",fontsize=16,color="green",shape="box"];2748[label="xwv66",fontsize=16,color="green",shape="box"];2749[label="xwv69",fontsize=16,color="green",shape="box"];2750[label="xwv66",fontsize=16,color="green",shape="box"];2751[label="xwv69",fontsize=16,color="green",shape="box"];2752[label="compare0 (xwv185,xwv186,xwv187) (xwv188,xwv189,xwv190) True",fontsize=16,color="black",shape="box"];2752 -> 2918[label="",style="solid", color="black", weight=3]; 26.47/9.54 2753[label="Succ xwv300100",fontsize=16,color="green",shape="box"];2754[label="xwv400000",fontsize=16,color="green",shape="box"];2755[label="primPlusNat (Succ xwv2220) (Succ xwv300100)",fontsize=16,color="black",shape="box"];2755 -> 2919[label="",style="solid", color="black", weight=3]; 26.47/9.54 2756[label="primPlusNat Zero (Succ xwv300100)",fontsize=16,color="black",shape="box"];2756 -> 2920[label="",style="solid", color="black", weight=3]; 26.47/9.54 3200[label="Succ (Succ (primPlusNat xwv33200 xwv24200))",fontsize=16,color="green",shape="box"];3200 -> 3284[label="",style="dashed", color="green", weight=3]; 26.47/9.54 3201[label="Succ xwv33200",fontsize=16,color="green",shape="box"];3202[label="Succ xwv24200",fontsize=16,color="green",shape="box"];3203[label="Zero",fontsize=16,color="green",shape="box"];3994 -> 417[label="",style="dashed", color="red", weight=0]; 26.47/9.54 3994[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3403",fontsize=16,color="magenta"];3994 -> 4008[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3994 -> 4009[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3995 -> 1356[label="",style="dashed", color="red", weight=0]; 26.47/9.54 3995[label="FiniteMap.sizeFM xwv3404",fontsize=16,color="magenta"];3995 -> 4010[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3996[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) xwv344 xwv3400 xwv3401 xwv3402 xwv3403 xwv3404 False",fontsize=16,color="black",shape="box"];3996 -> 4011[label="",style="solid", color="black", weight=3]; 26.47/9.54 3997[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) xwv344 xwv3400 xwv3401 xwv3402 xwv3403 xwv3404 True",fontsize=16,color="black",shape="box"];3997 -> 4012[label="",style="solid", color="black", weight=3]; 26.47/9.54 4006[label="FiniteMap.mkBalBranch6Double_L xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv340 xwv340 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444)",fontsize=16,color="burlywood",shape="box"];5468[label="xwv3443/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4006 -> 5468[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5468 -> 4105[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5469[label="xwv3443/FiniteMap.Branch xwv34430 xwv34431 xwv34432 xwv34433 xwv34434",fontsize=10,color="white",style="solid",shape="box"];4006 -> 5469[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5469 -> 4106[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 4509[label="xwv3440",fontsize=16,color="green",shape="box"];4510[label="xwv3444",fontsize=16,color="green",shape="box"];4511[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4512 -> 4498[label="",style="dashed", color="red", weight=0]; 26.47/9.54 4512[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv340 xwv341 xwv340 xwv3443",fontsize=16,color="magenta"];4512 -> 4555[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 4512 -> 4556[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 4512 -> 4557[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 4512 -> 4558[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 4512 -> 4559[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 4513[label="xwv3441",fontsize=16,color="green",shape="box"];4619[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4619 -> 4623[label="",style="solid", color="black", weight=3]; 26.47/9.54 4620[label="FiniteMap.sizeFM (FiniteMap.Branch xwv4600 xwv4601 xwv4602 xwv4603 xwv4604)",fontsize=16,color="black",shape="box"];4620 -> 4624[label="",style="solid", color="black", weight=3]; 26.47/9.54 4621[label="xwv461",fontsize=16,color="green",shape="box"];4622[label="xwv461",fontsize=16,color="green",shape="box"];3729[label="FiniteMap.deleteMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="burlywood",shape="triangle"];5470[label="xwv334/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3729 -> 5470[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5470 -> 3749[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 5471[label="xwv334/FiniteMap.Branch xwv3340 xwv3341 xwv3342 xwv3343 xwv3344",fontsize=10,color="white",style="solid",shape="box"];3729 -> 5471[label="",style="solid", color="burlywood", weight=9]; 26.47/9.54 5471 -> 3750[label="",style="solid", color="burlywood", weight=3]; 26.47/9.54 3730[label="FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344",fontsize=16,color="green",shape="box"];3731[label="FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];3731 -> 3751[label="",style="solid", color="black", weight=3]; 26.47/9.54 3732[label="FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];3732 -> 3752[label="",style="solid", color="black", weight=3]; 26.47/9.54 3754[label="xwv344",fontsize=16,color="green",shape="box"];3755 -> 3696[label="",style="dashed", color="red", weight=0]; 26.47/9.54 3755[label="FiniteMap.mkBalBranch xwv340 xwv341 (FiniteMap.deleteMin (FiniteMap.Branch xwv3430 xwv3431 xwv3432 xwv3433 xwv3434)) xwv344",fontsize=16,color="magenta"];3755 -> 3768[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3756 -> 4014[label="",style="dashed", color="red", weight=0]; 26.47/9.54 3756[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"];3756 -> 4015[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3756 -> 4016[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3756 -> 4017[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3756 -> 4018[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3756 -> 4019[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3756 -> 4020[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3756 -> 4021[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3756 -> 4022[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3756 -> 4023[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3756 -> 4024[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3756 -> 4025[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3756 -> 4026[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3756 -> 4027[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3756 -> 4028[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3756 -> 4029[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3757 -> 4117[label="",style="dashed", color="red", weight=0]; 26.47/9.54 3757[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"];3757 -> 4118[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3757 -> 4119[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3757 -> 4120[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3757 -> 4121[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3757 -> 4122[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3757 -> 4123[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3757 -> 4124[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3757 -> 4125[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3757 -> 4126[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3757 -> 4127[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3757 -> 4128[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3757 -> 4129[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3757 -> 4130[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3757 -> 4131[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 3757 -> 4132[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2795[label="GT",fontsize=16,color="green",shape="box"];2796[label="xwv300000",fontsize=16,color="green",shape="box"];2797[label="xwv400000",fontsize=16,color="green",shape="box"];2798[label="xwv211",fontsize=16,color="green",shape="box"];2799[label="GT",fontsize=16,color="green",shape="box"];2800[label="not False",fontsize=16,color="black",shape="box"];2800 -> 2956[label="",style="solid", color="black", weight=3]; 26.47/9.54 2801[label="not True",fontsize=16,color="black",shape="box"];2801 -> 2957[label="",style="solid", color="black", weight=3]; 26.47/9.54 2802[label="xwv541 <= xwv551",fontsize=16,color="blue",shape="box"];5472[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2802 -> 5472[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5472 -> 2958[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5473[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2802 -> 5473[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5473 -> 2959[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5474[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2802 -> 5474[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5474 -> 2960[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5475[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2802 -> 5475[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5475 -> 2961[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5476[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2802 -> 5476[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5476 -> 2962[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5477[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2802 -> 5477[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5477 -> 2963[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5478[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2802 -> 5478[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5478 -> 2964[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5479[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2802 -> 5479[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5479 -> 2965[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5480[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2802 -> 5480[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5480 -> 2966[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5481[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2802 -> 5481[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5481 -> 2967[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5482[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2802 -> 5482[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5482 -> 2968[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5483[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2802 -> 5483[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5483 -> 2969[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5484[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2802 -> 5484[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5484 -> 2970[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5485[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2802 -> 5485[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5485 -> 2971[label="",style="solid", color="blue", weight=3]; 26.47/9.54 2803[label="xwv540 == xwv550",fontsize=16,color="blue",shape="box"];5486[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2803 -> 5486[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5486 -> 2972[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5487[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2803 -> 5487[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5487 -> 2973[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5488[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2803 -> 5488[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5488 -> 2974[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5489[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2803 -> 5489[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5489 -> 2975[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5490[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2803 -> 5490[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5490 -> 2976[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5491[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2803 -> 5491[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5491 -> 2977[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5492[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2803 -> 5492[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5492 -> 2978[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5493[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2803 -> 5493[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5493 -> 2979[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5494[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2803 -> 5494[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5494 -> 2980[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5495[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2803 -> 5495[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5495 -> 2981[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5496[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2803 -> 5496[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5496 -> 2982[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5497[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2803 -> 5497[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5497 -> 2983[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5498[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2803 -> 5498[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5498 -> 2984[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5499[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2803 -> 5499[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5499 -> 2985[label="",style="solid", color="blue", weight=3]; 26.47/9.54 2804 -> 1380[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2804[label="xwv540 < xwv550",fontsize=16,color="magenta"];2804 -> 2986[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2804 -> 2987[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2805 -> 1381[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2805[label="xwv540 < xwv550",fontsize=16,color="magenta"];2805 -> 2988[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2805 -> 2989[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2806 -> 1382[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2806[label="xwv540 < xwv550",fontsize=16,color="magenta"];2806 -> 2990[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2806 -> 2991[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2807 -> 1383[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2807[label="xwv540 < xwv550",fontsize=16,color="magenta"];2807 -> 2992[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2807 -> 2993[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2808 -> 1384[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2808[label="xwv540 < xwv550",fontsize=16,color="magenta"];2808 -> 2994[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2808 -> 2995[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2809 -> 1385[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2809[label="xwv540 < xwv550",fontsize=16,color="magenta"];2809 -> 2996[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2809 -> 2997[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2810 -> 1386[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2810[label="xwv540 < xwv550",fontsize=16,color="magenta"];2810 -> 2998[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2810 -> 2999[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2811 -> 1387[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2811[label="xwv540 < xwv550",fontsize=16,color="magenta"];2811 -> 3000[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2811 -> 3001[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2812 -> 1388[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2812[label="xwv540 < xwv550",fontsize=16,color="magenta"];2812 -> 3002[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2812 -> 3003[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2813 -> 1389[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2813[label="xwv540 < xwv550",fontsize=16,color="magenta"];2813 -> 3004[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2813 -> 3005[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2814 -> 1390[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2814[label="xwv540 < xwv550",fontsize=16,color="magenta"];2814 -> 3006[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2814 -> 3007[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2815 -> 1391[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2815[label="xwv540 < xwv550",fontsize=16,color="magenta"];2815 -> 3008[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2815 -> 3009[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2816 -> 1392[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2816[label="xwv540 < xwv550",fontsize=16,color="magenta"];2816 -> 3010[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2816 -> 3011[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2817 -> 1393[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2817[label="xwv540 < xwv550",fontsize=16,color="magenta"];2817 -> 3012[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2817 -> 3013[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2818[label="xwv550",fontsize=16,color="green",shape="box"];2819[label="xwv540",fontsize=16,color="green",shape="box"];2820[label="xwv550",fontsize=16,color="green",shape="box"];2821[label="xwv540",fontsize=16,color="green",shape="box"];2822[label="xwv550",fontsize=16,color="green",shape="box"];2823[label="xwv540",fontsize=16,color="green",shape="box"];2824[label="xwv550",fontsize=16,color="green",shape="box"];2825[label="xwv540",fontsize=16,color="green",shape="box"];2826[label="xwv550",fontsize=16,color="green",shape="box"];2827[label="xwv540",fontsize=16,color="green",shape="box"];2828[label="xwv550",fontsize=16,color="green",shape="box"];2829[label="xwv540",fontsize=16,color="green",shape="box"];2830[label="xwv550",fontsize=16,color="green",shape="box"];2831[label="xwv540",fontsize=16,color="green",shape="box"];2832[label="xwv550",fontsize=16,color="green",shape="box"];2833[label="xwv540",fontsize=16,color="green",shape="box"];2834[label="xwv550",fontsize=16,color="green",shape="box"];2835[label="xwv540",fontsize=16,color="green",shape="box"];2836[label="xwv550",fontsize=16,color="green",shape="box"];2837[label="xwv540",fontsize=16,color="green",shape="box"];2838[label="xwv550",fontsize=16,color="green",shape="box"];2839[label="xwv540",fontsize=16,color="green",shape="box"];2840[label="xwv550",fontsize=16,color="green",shape="box"];2841[label="xwv540",fontsize=16,color="green",shape="box"];2842[label="xwv550",fontsize=16,color="green",shape="box"];2843[label="xwv540",fontsize=16,color="green",shape="box"];2844[label="xwv550",fontsize=16,color="green",shape="box"];2845[label="xwv540",fontsize=16,color="green",shape="box"];2846 -> 2156[label="",style="dashed", color="red", weight=0]; 26.47/9.54 2846[label="xwv541 < xwv551 || xwv541 == xwv551 && xwv542 <= xwv552",fontsize=16,color="magenta"];2846 -> 3014[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2846 -> 3015[label="",style="dashed", color="magenta", weight=3]; 26.47/9.54 2847[label="xwv540 == xwv550",fontsize=16,color="blue",shape="box"];5500[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2847 -> 5500[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5500 -> 3016[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5501[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2847 -> 5501[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5501 -> 3017[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5502[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2847 -> 5502[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5502 -> 3018[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5503[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2847 -> 5503[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5503 -> 3019[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5504[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2847 -> 5504[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5504 -> 3020[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5505[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2847 -> 5505[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5505 -> 3021[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5506[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2847 -> 5506[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5506 -> 3022[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5507[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2847 -> 5507[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5507 -> 3023[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5508[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2847 -> 5508[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5508 -> 3024[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5509[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2847 -> 5509[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5509 -> 3025[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5510[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2847 -> 5510[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5510 -> 3026[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5511[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2847 -> 5511[label="",style="solid", color="blue", weight=9]; 26.47/9.54 5511 -> 3027[label="",style="solid", color="blue", weight=3]; 26.47/9.54 5512[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2847 -> 5512[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5512 -> 3028[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5513[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2847 -> 5513[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5513 -> 3029[label="",style="solid", color="blue", weight=3]; 26.47/9.55 2848 -> 1380[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2848[label="xwv540 < xwv550",fontsize=16,color="magenta"];2848 -> 3030[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2848 -> 3031[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2849 -> 1381[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2849[label="xwv540 < xwv550",fontsize=16,color="magenta"];2849 -> 3032[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2849 -> 3033[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2850 -> 1382[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2850[label="xwv540 < xwv550",fontsize=16,color="magenta"];2850 -> 3034[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2850 -> 3035[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2851 -> 1383[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2851[label="xwv540 < xwv550",fontsize=16,color="magenta"];2851 -> 3036[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2851 -> 3037[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2852 -> 1384[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2852[label="xwv540 < xwv550",fontsize=16,color="magenta"];2852 -> 3038[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2852 -> 3039[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2853 -> 1385[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2853[label="xwv540 < xwv550",fontsize=16,color="magenta"];2853 -> 3040[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2853 -> 3041[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2854 -> 1386[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2854[label="xwv540 < xwv550",fontsize=16,color="magenta"];2854 -> 3042[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2854 -> 3043[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2855 -> 1387[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2855[label="xwv540 < xwv550",fontsize=16,color="magenta"];2855 -> 3044[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2855 -> 3045[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2856 -> 1388[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2856[label="xwv540 < xwv550",fontsize=16,color="magenta"];2856 -> 3046[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2856 -> 3047[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2857 -> 1389[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2857[label="xwv540 < xwv550",fontsize=16,color="magenta"];2857 -> 3048[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2857 -> 3049[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2858 -> 1390[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2858[label="xwv540 < xwv550",fontsize=16,color="magenta"];2858 -> 3050[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2858 -> 3051[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2859 -> 1391[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2859[label="xwv540 < xwv550",fontsize=16,color="magenta"];2859 -> 3052[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2859 -> 3053[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2860 -> 1392[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2860[label="xwv540 < xwv550",fontsize=16,color="magenta"];2860 -> 3054[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2860 -> 3055[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2861 -> 1393[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2861[label="xwv540 < xwv550",fontsize=16,color="magenta"];2861 -> 3056[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2861 -> 3057[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2862[label="xwv550",fontsize=16,color="green",shape="box"];2863[label="xwv540",fontsize=16,color="green",shape="box"];2864[label="xwv550",fontsize=16,color="green",shape="box"];2865[label="xwv540",fontsize=16,color="green",shape="box"];2866[label="xwv550",fontsize=16,color="green",shape="box"];2867[label="xwv540",fontsize=16,color="green",shape="box"];2868[label="xwv550",fontsize=16,color="green",shape="box"];2869[label="xwv540",fontsize=16,color="green",shape="box"];2870[label="xwv550",fontsize=16,color="green",shape="box"];2871[label="xwv540",fontsize=16,color="green",shape="box"];2872[label="xwv550",fontsize=16,color="green",shape="box"];2873[label="xwv540",fontsize=16,color="green",shape="box"];2874[label="xwv550",fontsize=16,color="green",shape="box"];2875[label="xwv540",fontsize=16,color="green",shape="box"];2876[label="xwv550",fontsize=16,color="green",shape="box"];2877[label="xwv540",fontsize=16,color="green",shape="box"];2878[label="xwv550",fontsize=16,color="green",shape="box"];2879[label="xwv540",fontsize=16,color="green",shape="box"];2880[label="xwv550",fontsize=16,color="green",shape="box"];2881[label="xwv540",fontsize=16,color="green",shape="box"];2882[label="xwv550",fontsize=16,color="green",shape="box"];2883[label="xwv540",fontsize=16,color="green",shape="box"];2884[label="xwv550",fontsize=16,color="green",shape="box"];2885[label="xwv540",fontsize=16,color="green",shape="box"];2886[label="xwv550",fontsize=16,color="green",shape="box"];2887[label="xwv540",fontsize=16,color="green",shape="box"];2888[label="xwv550",fontsize=16,color="green",shape="box"];2889[label="xwv540",fontsize=16,color="green",shape="box"];2890[label="xwv550",fontsize=16,color="green",shape="box"];2891[label="xwv540",fontsize=16,color="green",shape="box"];2892[label="xwv550",fontsize=16,color="green",shape="box"];2893[label="xwv540",fontsize=16,color="green",shape="box"];2894[label="xwv550",fontsize=16,color="green",shape="box"];2895[label="xwv540",fontsize=16,color="green",shape="box"];2896[label="xwv550",fontsize=16,color="green",shape="box"];2897[label="xwv540",fontsize=16,color="green",shape="box"];2898[label="xwv550",fontsize=16,color="green",shape="box"];2899[label="xwv540",fontsize=16,color="green",shape="box"];2900[label="xwv550",fontsize=16,color="green",shape="box"];2901[label="xwv540",fontsize=16,color="green",shape="box"];2902[label="xwv550",fontsize=16,color="green",shape="box"];2903[label="xwv540",fontsize=16,color="green",shape="box"];2904[label="xwv550",fontsize=16,color="green",shape="box"];2905[label="xwv540",fontsize=16,color="green",shape="box"];2906[label="xwv550",fontsize=16,color="green",shape="box"];2907[label="xwv540",fontsize=16,color="green",shape="box"];2908[label="xwv550",fontsize=16,color="green",shape="box"];2909[label="xwv540",fontsize=16,color="green",shape="box"];2910[label="xwv550",fontsize=16,color="green",shape="box"];2911[label="xwv540",fontsize=16,color="green",shape="box"];2912[label="xwv550",fontsize=16,color="green",shape="box"];2913[label="xwv540",fontsize=16,color="green",shape="box"];2914[label="xwv550",fontsize=16,color="green",shape="box"];2915[label="xwv540",fontsize=16,color="green",shape="box"];2916[label="xwv550",fontsize=16,color="green",shape="box"];2917[label="xwv540",fontsize=16,color="green",shape="box"];2918[label="GT",fontsize=16,color="green",shape="box"];2919[label="Succ (Succ (primPlusNat xwv2220 xwv300100))",fontsize=16,color="green",shape="box"];2919 -> 3058[label="",style="dashed", color="green", weight=3]; 26.47/9.55 2920[label="Succ xwv300100",fontsize=16,color="green",shape="box"];3284 -> 2774[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3284[label="primPlusNat xwv33200 xwv24200",fontsize=16,color="magenta"];3284 -> 3370[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3284 -> 3371[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4008[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4009 -> 1356[label="",style="dashed", color="red", weight=0]; 26.47/9.55 4009[label="FiniteMap.sizeFM xwv3403",fontsize=16,color="magenta"];4009 -> 4111[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4010[label="xwv3404",fontsize=16,color="green",shape="box"];4011[label="FiniteMap.mkBalBranch6MkBalBranch10 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) xwv344 xwv3400 xwv3401 xwv3402 xwv3403 xwv3404 otherwise",fontsize=16,color="black",shape="box"];4011 -> 4112[label="",style="solid", color="black", weight=3]; 26.47/9.55 4012[label="FiniteMap.mkBalBranch6Single_R xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) xwv344",fontsize=16,color="black",shape="box"];4012 -> 4113[label="",style="solid", color="black", weight=3]; 26.47/9.55 4105[label="FiniteMap.mkBalBranch6Double_L xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 FiniteMap.EmptyFM xwv3444) xwv340 xwv340 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 FiniteMap.EmptyFM xwv3444)",fontsize=16,color="black",shape="box"];4105 -> 4208[label="",style="solid", color="black", weight=3]; 26.47/9.55 4106[label="FiniteMap.mkBalBranch6Double_L xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 (FiniteMap.Branch xwv34430 xwv34431 xwv34432 xwv34433 xwv34434) xwv3444) xwv340 xwv340 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 (FiniteMap.Branch xwv34430 xwv34431 xwv34432 xwv34433 xwv34434) xwv3444)",fontsize=16,color="black",shape="box"];4106 -> 4209[label="",style="solid", color="black", weight=3]; 26.47/9.55 4555[label="xwv340",fontsize=16,color="green",shape="box"];4556[label="xwv3443",fontsize=16,color="green",shape="box"];4557[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4558[label="xwv340",fontsize=16,color="green",shape="box"];4559[label="xwv341",fontsize=16,color="green",shape="box"];4623[label="Pos Zero",fontsize=16,color="green",shape="box"];4624[label="xwv4602",fontsize=16,color="green",shape="box"];3749[label="FiniteMap.deleteMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 FiniteMap.EmptyFM)",fontsize=16,color="black",shape="box"];3749 -> 3758[label="",style="solid", color="black", weight=3]; 26.47/9.55 3750[label="FiniteMap.deleteMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 (FiniteMap.Branch xwv3340 xwv3341 xwv3342 xwv3343 xwv3344))",fontsize=16,color="black",shape="box"];3750 -> 3759[label="",style="solid", color="black", weight=3]; 26.47/9.55 3751[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"];3751 -> 3760[label="",style="solid", color="black", weight=3]; 26.47/9.55 3752[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"];3752 -> 3761[label="",style="solid", color="black", weight=3]; 26.47/9.55 3768 -> 3726[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3768[label="FiniteMap.deleteMin (FiniteMap.Branch xwv3430 xwv3431 xwv3432 xwv3433 xwv3434)",fontsize=16,color="magenta"];3768 -> 3784[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3768 -> 3785[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3768 -> 3786[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3768 -> 3787[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3768 -> 3788[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4015[label="xwv331",fontsize=16,color="green",shape="box"];4016[label="xwv333",fontsize=16,color="green",shape="box"];4017[label="xwv340",fontsize=16,color="green",shape="box"];4018[label="xwv330",fontsize=16,color="green",shape="box"];4019[label="xwv334",fontsize=16,color="green",shape="box"];4020[label="xwv344",fontsize=16,color="green",shape="box"];4021[label="xwv343",fontsize=16,color="green",shape="box"];4022[label="xwv332",fontsize=16,color="green",shape="box"];4023[label="xwv342",fontsize=16,color="green",shape="box"];4024[label="xwv344",fontsize=16,color="green",shape="box"];4025[label="xwv341",fontsize=16,color="green",shape="box"];4026[label="xwv343",fontsize=16,color="green",shape="box"];4027[label="xwv340",fontsize=16,color="green",shape="box"];4028[label="xwv341",fontsize=16,color="green",shape="box"];4029[label="xwv342",fontsize=16,color="green",shape="box"];4014[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv362 xwv363 xwv364 xwv365 xwv366) (FiniteMap.Branch xwv367 xwv368 xwv369 xwv370 xwv371) (FiniteMap.findMin (FiniteMap.Branch xwv372 xwv373 xwv374 xwv375 xwv376))",fontsize=16,color="burlywood",shape="triangle"];5514[label="xwv375/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4014 -> 5514[label="",style="solid", color="burlywood", weight=9]; 26.47/9.55 5514 -> 4114[label="",style="solid", color="burlywood", weight=3]; 26.47/9.55 5515[label="xwv375/FiniteMap.Branch xwv3750 xwv3751 xwv3752 xwv3753 xwv3754",fontsize=10,color="white",style="solid",shape="box"];4014 -> 5515[label="",style="solid", color="burlywood", weight=9]; 26.47/9.55 5515 -> 4115[label="",style="solid", color="burlywood", weight=3]; 26.47/9.55 4118[label="xwv342",fontsize=16,color="green",shape="box"];4119[label="xwv340",fontsize=16,color="green",shape="box"];4120[label="xwv331",fontsize=16,color="green",shape="box"];4121[label="xwv343",fontsize=16,color="green",shape="box"];4122[label="xwv333",fontsize=16,color="green",shape="box"];4123[label="xwv341",fontsize=16,color="green",shape="box"];4124[label="xwv334",fontsize=16,color="green",shape="box"];4125[label="xwv341",fontsize=16,color="green",shape="box"];4126[label="xwv342",fontsize=16,color="green",shape="box"];4127[label="xwv330",fontsize=16,color="green",shape="box"];4128[label="xwv343",fontsize=16,color="green",shape="box"];4129[label="xwv344",fontsize=16,color="green",shape="box"];4130[label="xwv344",fontsize=16,color="green",shape="box"];4131[label="xwv332",fontsize=16,color="green",shape="box"];4132[label="xwv340",fontsize=16,color="green",shape="box"];4117[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv378 xwv379 xwv380 xwv381 xwv382) (FiniteMap.Branch xwv383 xwv384 xwv385 xwv386 xwv387) (FiniteMap.findMin (FiniteMap.Branch xwv388 xwv389 xwv390 xwv391 xwv392))",fontsize=16,color="burlywood",shape="triangle"];5516[label="xwv391/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4117 -> 5516[label="",style="solid", color="burlywood", weight=9]; 26.47/9.55 5516 -> 4211[label="",style="solid", color="burlywood", weight=3]; 26.47/9.55 5517[label="xwv391/FiniteMap.Branch xwv3910 xwv3911 xwv3912 xwv3913 xwv3914",fontsize=10,color="white",style="solid",shape="box"];4117 -> 5517[label="",style="solid", color="burlywood", weight=9]; 26.47/9.55 5517 -> 4212[label="",style="solid", color="burlywood", weight=3]; 26.47/9.55 2956[label="True",fontsize=16,color="green",shape="box"];2957[label="False",fontsize=16,color="green",shape="box"];2958 -> 1435[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2958[label="xwv541 <= xwv551",fontsize=16,color="magenta"];2958 -> 3090[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2958 -> 3091[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2959 -> 1436[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2959[label="xwv541 <= xwv551",fontsize=16,color="magenta"];2959 -> 3092[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2959 -> 3093[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2960 -> 1437[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2960[label="xwv541 <= xwv551",fontsize=16,color="magenta"];2960 -> 3094[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2960 -> 3095[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2961 -> 1438[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2961[label="xwv541 <= xwv551",fontsize=16,color="magenta"];2961 -> 3096[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2961 -> 3097[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2962 -> 1439[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2962[label="xwv541 <= xwv551",fontsize=16,color="magenta"];2962 -> 3098[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2962 -> 3099[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2963 -> 1440[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2963[label="xwv541 <= xwv551",fontsize=16,color="magenta"];2963 -> 3100[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2963 -> 3101[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2964 -> 1441[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2964[label="xwv541 <= xwv551",fontsize=16,color="magenta"];2964 -> 3102[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2964 -> 3103[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2965 -> 1442[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2965[label="xwv541 <= xwv551",fontsize=16,color="magenta"];2965 -> 3104[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2965 -> 3105[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2966 -> 1443[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2966[label="xwv541 <= xwv551",fontsize=16,color="magenta"];2966 -> 3106[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2966 -> 3107[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2967 -> 1444[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2967[label="xwv541 <= xwv551",fontsize=16,color="magenta"];2967 -> 3108[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2967 -> 3109[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2968 -> 1445[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2968[label="xwv541 <= xwv551",fontsize=16,color="magenta"];2968 -> 3110[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2968 -> 3111[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2969 -> 1446[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2969[label="xwv541 <= xwv551",fontsize=16,color="magenta"];2969 -> 3112[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2969 -> 3113[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2970 -> 1447[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2970[label="xwv541 <= xwv551",fontsize=16,color="magenta"];2970 -> 3114[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2970 -> 3115[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2971 -> 1448[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2971[label="xwv541 <= xwv551",fontsize=16,color="magenta"];2971 -> 3116[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2971 -> 3117[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2972 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2972[label="xwv540 == xwv550",fontsize=16,color="magenta"];2972 -> 3118[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2972 -> 3119[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2973 -> 534[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2973[label="xwv540 == xwv550",fontsize=16,color="magenta"];2973 -> 3120[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2973 -> 3121[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2974 -> 528[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2974[label="xwv540 == xwv550",fontsize=16,color="magenta"];2974 -> 3122[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2974 -> 3123[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2975 -> 535[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2975[label="xwv540 == xwv550",fontsize=16,color="magenta"];2975 -> 3124[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2975 -> 3125[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2976 -> 530[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2976[label="xwv540 == xwv550",fontsize=16,color="magenta"];2976 -> 3126[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2976 -> 3127[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2977 -> 531[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2977[label="xwv540 == xwv550",fontsize=16,color="magenta"];2977 -> 3128[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2977 -> 3129[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2978 -> 536[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2978[label="xwv540 == xwv550",fontsize=16,color="magenta"];2978 -> 3130[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2978 -> 3131[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2979 -> 538[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2979[label="xwv540 == xwv550",fontsize=16,color="magenta"];2979 -> 3132[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2979 -> 3133[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2980 -> 541[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2980[label="xwv540 == xwv550",fontsize=16,color="magenta"];2980 -> 3134[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2980 -> 3135[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2981 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2981[label="xwv540 == xwv550",fontsize=16,color="magenta"];2981 -> 3136[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2981 -> 3137[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2982 -> 539[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2982[label="xwv540 == xwv550",fontsize=16,color="magenta"];2982 -> 3138[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2982 -> 3139[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2983 -> 533[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2983[label="xwv540 == xwv550",fontsize=16,color="magenta"];2983 -> 3140[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2983 -> 3141[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2984 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2984[label="xwv540 == xwv550",fontsize=16,color="magenta"];2984 -> 3142[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2984 -> 3143[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2985 -> 537[label="",style="dashed", color="red", weight=0]; 26.47/9.55 2985[label="xwv540 == xwv550",fontsize=16,color="magenta"];2985 -> 3144[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2985 -> 3145[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 2986[label="xwv550",fontsize=16,color="green",shape="box"];2987[label="xwv540",fontsize=16,color="green",shape="box"];2988[label="xwv550",fontsize=16,color="green",shape="box"];2989[label="xwv540",fontsize=16,color="green",shape="box"];2990[label="xwv550",fontsize=16,color="green",shape="box"];2991[label="xwv540",fontsize=16,color="green",shape="box"];2992[label="xwv550",fontsize=16,color="green",shape="box"];2993[label="xwv540",fontsize=16,color="green",shape="box"];2994[label="xwv550",fontsize=16,color="green",shape="box"];2995[label="xwv540",fontsize=16,color="green",shape="box"];2996[label="xwv550",fontsize=16,color="green",shape="box"];2997[label="xwv540",fontsize=16,color="green",shape="box"];2998[label="xwv550",fontsize=16,color="green",shape="box"];2999[label="xwv540",fontsize=16,color="green",shape="box"];3000[label="xwv550",fontsize=16,color="green",shape="box"];3001[label="xwv540",fontsize=16,color="green",shape="box"];3002[label="xwv550",fontsize=16,color="green",shape="box"];3003[label="xwv540",fontsize=16,color="green",shape="box"];3004[label="xwv550",fontsize=16,color="green",shape="box"];3005[label="xwv540",fontsize=16,color="green",shape="box"];3006[label="xwv550",fontsize=16,color="green",shape="box"];3007[label="xwv540",fontsize=16,color="green",shape="box"];3008[label="xwv550",fontsize=16,color="green",shape="box"];3009[label="xwv540",fontsize=16,color="green",shape="box"];3010[label="xwv550",fontsize=16,color="green",shape="box"];3011[label="xwv540",fontsize=16,color="green",shape="box"];3012[label="xwv550",fontsize=16,color="green",shape="box"];3013[label="xwv540",fontsize=16,color="green",shape="box"];3014 -> 1028[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3014[label="xwv541 == xwv551 && xwv542 <= xwv552",fontsize=16,color="magenta"];3014 -> 3146[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3014 -> 3147[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3015[label="xwv541 < xwv551",fontsize=16,color="blue",shape="box"];5518[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5518[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5518 -> 3148[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5519[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5519[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5519 -> 3149[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5520[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5520[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5520 -> 3150[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5521[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5521[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5521 -> 3151[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5522[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5522[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5522 -> 3152[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5523[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5523[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5523 -> 3153[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5524[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5524[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5524 -> 3154[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5525[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5525[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5525 -> 3155[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5526[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5526[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5526 -> 3156[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5527[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5527[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5527 -> 3157[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5528[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5528[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5528 -> 3158[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5529[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5529[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5529 -> 3159[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5530[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5530[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5530 -> 3160[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5531[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3015 -> 5531[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5531 -> 3161[label="",style="solid", color="blue", weight=3]; 26.47/9.55 3016 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3016[label="xwv540 == xwv550",fontsize=16,color="magenta"];3016 -> 3162[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3016 -> 3163[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3017 -> 534[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3017[label="xwv540 == xwv550",fontsize=16,color="magenta"];3017 -> 3164[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3017 -> 3165[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3018 -> 528[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3018[label="xwv540 == xwv550",fontsize=16,color="magenta"];3018 -> 3166[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3018 -> 3167[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3019 -> 535[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3019[label="xwv540 == xwv550",fontsize=16,color="magenta"];3019 -> 3168[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3019 -> 3169[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3020 -> 530[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3020[label="xwv540 == xwv550",fontsize=16,color="magenta"];3020 -> 3170[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3020 -> 3171[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3021 -> 531[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3021[label="xwv540 == xwv550",fontsize=16,color="magenta"];3021 -> 3172[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3021 -> 3173[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3022 -> 536[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3022[label="xwv540 == xwv550",fontsize=16,color="magenta"];3022 -> 3174[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3022 -> 3175[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3023 -> 538[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3023[label="xwv540 == xwv550",fontsize=16,color="magenta"];3023 -> 3176[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3023 -> 3177[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3024 -> 541[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3024[label="xwv540 == xwv550",fontsize=16,color="magenta"];3024 -> 3178[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3024 -> 3179[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3025 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3025[label="xwv540 == xwv550",fontsize=16,color="magenta"];3025 -> 3180[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3025 -> 3181[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3026 -> 539[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3026[label="xwv540 == xwv550",fontsize=16,color="magenta"];3026 -> 3182[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3026 -> 3183[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3027 -> 533[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3027[label="xwv540 == xwv550",fontsize=16,color="magenta"];3027 -> 3184[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3027 -> 3185[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3028 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3028[label="xwv540 == xwv550",fontsize=16,color="magenta"];3028 -> 3186[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3028 -> 3187[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3029 -> 537[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3029[label="xwv540 == xwv550",fontsize=16,color="magenta"];3029 -> 3188[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3029 -> 3189[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3030[label="xwv550",fontsize=16,color="green",shape="box"];3031[label="xwv540",fontsize=16,color="green",shape="box"];3032[label="xwv550",fontsize=16,color="green",shape="box"];3033[label="xwv540",fontsize=16,color="green",shape="box"];3034[label="xwv550",fontsize=16,color="green",shape="box"];3035[label="xwv540",fontsize=16,color="green",shape="box"];3036[label="xwv550",fontsize=16,color="green",shape="box"];3037[label="xwv540",fontsize=16,color="green",shape="box"];3038[label="xwv550",fontsize=16,color="green",shape="box"];3039[label="xwv540",fontsize=16,color="green",shape="box"];3040[label="xwv550",fontsize=16,color="green",shape="box"];3041[label="xwv540",fontsize=16,color="green",shape="box"];3042[label="xwv550",fontsize=16,color="green",shape="box"];3043[label="xwv540",fontsize=16,color="green",shape="box"];3044[label="xwv550",fontsize=16,color="green",shape="box"];3045[label="xwv540",fontsize=16,color="green",shape="box"];3046[label="xwv550",fontsize=16,color="green",shape="box"];3047[label="xwv540",fontsize=16,color="green",shape="box"];3048[label="xwv550",fontsize=16,color="green",shape="box"];3049[label="xwv540",fontsize=16,color="green",shape="box"];3050[label="xwv550",fontsize=16,color="green",shape="box"];3051[label="xwv540",fontsize=16,color="green",shape="box"];3052[label="xwv550",fontsize=16,color="green",shape="box"];3053[label="xwv540",fontsize=16,color="green",shape="box"];3054[label="xwv550",fontsize=16,color="green",shape="box"];3055[label="xwv540",fontsize=16,color="green",shape="box"];3056[label="xwv550",fontsize=16,color="green",shape="box"];3057[label="xwv540",fontsize=16,color="green",shape="box"];3058 -> 2774[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3058[label="primPlusNat xwv2220 xwv300100",fontsize=16,color="magenta"];3058 -> 3190[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3058 -> 3191[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3370[label="xwv24200",fontsize=16,color="green",shape="box"];3371[label="xwv33200",fontsize=16,color="green",shape="box"];4111[label="xwv3403",fontsize=16,color="green",shape="box"];4112[label="FiniteMap.mkBalBranch6MkBalBranch10 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) xwv344 xwv3400 xwv3401 xwv3402 xwv3403 xwv3404 True",fontsize=16,color="black",shape="box"];4112 -> 4213[label="",style="solid", color="black", weight=3]; 26.47/9.55 4113 -> 4498[label="",style="dashed", color="red", weight=0]; 26.47/9.55 4113[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xwv3400 xwv3401 xwv3403 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xwv340 xwv341 xwv3404 xwv344)",fontsize=16,color="magenta"];4113 -> 4519[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4113 -> 4520[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4113 -> 4521[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4113 -> 4522[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4113 -> 4523[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4208[label="error []",fontsize=16,color="red",shape="box"];4209 -> 4498[label="",style="dashed", color="red", weight=0]; 26.47/9.55 4209[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xwv34430 xwv34431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv340 xwv341 xwv340 xwv34433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xwv3440 xwv3441 xwv34434 xwv3444)",fontsize=16,color="magenta"];4209 -> 4524[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4209 -> 4525[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4209 -> 4526[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4209 -> 4527[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4209 -> 4528[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3758[label="xwv333",fontsize=16,color="green",shape="box"];3759 -> 3696[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3759[label="FiniteMap.mkBalBranch xwv330 xwv331 xwv333 (FiniteMap.deleteMax (FiniteMap.Branch xwv3340 xwv3341 xwv3342 xwv3343 xwv3344))",fontsize=16,color="magenta"];3759 -> 3773[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3759 -> 3774[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3759 -> 3775[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3759 -> 3776[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3760 -> 4296[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3760[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"];3760 -> 4297[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3760 -> 4298[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3760 -> 4299[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3760 -> 4300[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3760 -> 4301[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3760 -> 4302[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3760 -> 4303[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3760 -> 4304[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3760 -> 4305[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3760 -> 4306[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3760 -> 4307[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3760 -> 4308[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3760 -> 4309[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3760 -> 4310[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3760 -> 4311[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3761 -> 4401[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3761[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"];3761 -> 4402[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3761 -> 4403[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3761 -> 4404[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3761 -> 4405[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3761 -> 4406[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3761 -> 4407[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3761 -> 4408[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3761 -> 4409[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3761 -> 4410[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3761 -> 4411[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3761 -> 4412[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3761 -> 4413[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3761 -> 4414[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3761 -> 4415[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3761 -> 4416[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3784[label="xwv3434",fontsize=16,color="green",shape="box"];3785[label="xwv3433",fontsize=16,color="green",shape="box"];3786[label="xwv3430",fontsize=16,color="green",shape="box"];3787[label="xwv3431",fontsize=16,color="green",shape="box"];3788[label="xwv3432",fontsize=16,color="green",shape="box"];4114[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv362 xwv363 xwv364 xwv365 xwv366) (FiniteMap.Branch xwv367 xwv368 xwv369 xwv370 xwv371) (FiniteMap.findMin (FiniteMap.Branch xwv372 xwv373 xwv374 FiniteMap.EmptyFM xwv376))",fontsize=16,color="black",shape="box"];4114 -> 4236[label="",style="solid", color="black", weight=3]; 26.47/9.55 4115[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv362 xwv363 xwv364 xwv365 xwv366) (FiniteMap.Branch xwv367 xwv368 xwv369 xwv370 xwv371) (FiniteMap.findMin (FiniteMap.Branch xwv372 xwv373 xwv374 (FiniteMap.Branch xwv3750 xwv3751 xwv3752 xwv3753 xwv3754) xwv376))",fontsize=16,color="black",shape="box"];4115 -> 4237[label="",style="solid", color="black", weight=3]; 26.47/9.55 4211[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv378 xwv379 xwv380 xwv381 xwv382) (FiniteMap.Branch xwv383 xwv384 xwv385 xwv386 xwv387) (FiniteMap.findMin (FiniteMap.Branch xwv388 xwv389 xwv390 FiniteMap.EmptyFM xwv392))",fontsize=16,color="black",shape="box"];4211 -> 4238[label="",style="solid", color="black", weight=3]; 26.47/9.55 4212[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv378 xwv379 xwv380 xwv381 xwv382) (FiniteMap.Branch xwv383 xwv384 xwv385 xwv386 xwv387) (FiniteMap.findMin (FiniteMap.Branch xwv388 xwv389 xwv390 (FiniteMap.Branch xwv3910 xwv3911 xwv3912 xwv3913 xwv3914) xwv392))",fontsize=16,color="black",shape="box"];4212 -> 4239[label="",style="solid", color="black", weight=3]; 26.47/9.55 3090[label="xwv551",fontsize=16,color="green",shape="box"];3091[label="xwv541",fontsize=16,color="green",shape="box"];3092[label="xwv551",fontsize=16,color="green",shape="box"];3093[label="xwv541",fontsize=16,color="green",shape="box"];3094[label="xwv551",fontsize=16,color="green",shape="box"];3095[label="xwv541",fontsize=16,color="green",shape="box"];3096[label="xwv551",fontsize=16,color="green",shape="box"];3097[label="xwv541",fontsize=16,color="green",shape="box"];3098[label="xwv551",fontsize=16,color="green",shape="box"];3099[label="xwv541",fontsize=16,color="green",shape="box"];3100[label="xwv551",fontsize=16,color="green",shape="box"];3101[label="xwv541",fontsize=16,color="green",shape="box"];3102[label="xwv551",fontsize=16,color="green",shape="box"];3103[label="xwv541",fontsize=16,color="green",shape="box"];3104[label="xwv551",fontsize=16,color="green",shape="box"];3105[label="xwv541",fontsize=16,color="green",shape="box"];3106[label="xwv551",fontsize=16,color="green",shape="box"];3107[label="xwv541",fontsize=16,color="green",shape="box"];3108[label="xwv551",fontsize=16,color="green",shape="box"];3109[label="xwv541",fontsize=16,color="green",shape="box"];3110[label="xwv551",fontsize=16,color="green",shape="box"];3111[label="xwv541",fontsize=16,color="green",shape="box"];3112[label="xwv551",fontsize=16,color="green",shape="box"];3113[label="xwv541",fontsize=16,color="green",shape="box"];3114[label="xwv551",fontsize=16,color="green",shape="box"];3115[label="xwv541",fontsize=16,color="green",shape="box"];3116[label="xwv551",fontsize=16,color="green",shape="box"];3117[label="xwv541",fontsize=16,color="green",shape="box"];3118[label="xwv540",fontsize=16,color="green",shape="box"];3119[label="xwv550",fontsize=16,color="green",shape="box"];3120[label="xwv540",fontsize=16,color="green",shape="box"];3121[label="xwv550",fontsize=16,color="green",shape="box"];3122[label="xwv540",fontsize=16,color="green",shape="box"];3123[label="xwv550",fontsize=16,color="green",shape="box"];3124[label="xwv540",fontsize=16,color="green",shape="box"];3125[label="xwv550",fontsize=16,color="green",shape="box"];3126[label="xwv540",fontsize=16,color="green",shape="box"];3127[label="xwv550",fontsize=16,color="green",shape="box"];3128[label="xwv540",fontsize=16,color="green",shape="box"];3129[label="xwv550",fontsize=16,color="green",shape="box"];3130[label="xwv540",fontsize=16,color="green",shape="box"];3131[label="xwv550",fontsize=16,color="green",shape="box"];3132[label="xwv540",fontsize=16,color="green",shape="box"];3133[label="xwv550",fontsize=16,color="green",shape="box"];3134[label="xwv540",fontsize=16,color="green",shape="box"];3135[label="xwv550",fontsize=16,color="green",shape="box"];3136[label="xwv540",fontsize=16,color="green",shape="box"];3137[label="xwv550",fontsize=16,color="green",shape="box"];3138[label="xwv540",fontsize=16,color="green",shape="box"];3139[label="xwv550",fontsize=16,color="green",shape="box"];3140[label="xwv540",fontsize=16,color="green",shape="box"];3141[label="xwv550",fontsize=16,color="green",shape="box"];3142[label="xwv540",fontsize=16,color="green",shape="box"];3143[label="xwv550",fontsize=16,color="green",shape="box"];3144[label="xwv540",fontsize=16,color="green",shape="box"];3145[label="xwv550",fontsize=16,color="green",shape="box"];3146[label="xwv542 <= xwv552",fontsize=16,color="blue",shape="box"];5532[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3146 -> 5532[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5532 -> 3222[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5533[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3146 -> 5533[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5533 -> 3223[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5534[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3146 -> 5534[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5534 -> 3224[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5535[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3146 -> 5535[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5535 -> 3225[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5536[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3146 -> 5536[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5536 -> 3226[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5537[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3146 -> 5537[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5537 -> 3227[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5538[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3146 -> 5538[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5538 -> 3228[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5539[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3146 -> 5539[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5539 -> 3229[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5540[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3146 -> 5540[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5540 -> 3230[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5541[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3146 -> 5541[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5541 -> 3231[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5542[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3146 -> 5542[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5542 -> 3232[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5543[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3146 -> 5543[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5543 -> 3233[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5544[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3146 -> 5544[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5544 -> 3234[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5545[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3146 -> 5545[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5545 -> 3235[label="",style="solid", color="blue", weight=3]; 26.47/9.55 3147[label="xwv541 == xwv551",fontsize=16,color="blue",shape="box"];5546[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3147 -> 5546[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5546 -> 3236[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5547[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3147 -> 5547[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5547 -> 3237[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5548[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3147 -> 5548[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5548 -> 3238[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5549[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3147 -> 5549[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5549 -> 3239[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5550[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3147 -> 5550[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5550 -> 3240[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5551[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3147 -> 5551[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5551 -> 3241[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5552[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3147 -> 5552[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5552 -> 3242[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5553[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3147 -> 5553[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5553 -> 3243[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5554[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3147 -> 5554[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5554 -> 3244[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5555[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3147 -> 5555[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5555 -> 3245[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5556[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3147 -> 5556[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5556 -> 3246[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5557[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3147 -> 5557[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5557 -> 3247[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5558[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3147 -> 5558[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5558 -> 3248[label="",style="solid", color="blue", weight=3]; 26.47/9.55 5559[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3147 -> 5559[label="",style="solid", color="blue", weight=9]; 26.47/9.55 5559 -> 3249[label="",style="solid", color="blue", weight=3]; 26.47/9.55 3148 -> 1380[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3148[label="xwv541 < xwv551",fontsize=16,color="magenta"];3148 -> 3250[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3148 -> 3251[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3149 -> 1381[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3149[label="xwv541 < xwv551",fontsize=16,color="magenta"];3149 -> 3252[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3149 -> 3253[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3150 -> 1382[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3150[label="xwv541 < xwv551",fontsize=16,color="magenta"];3150 -> 3254[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3150 -> 3255[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3151 -> 1383[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3151[label="xwv541 < xwv551",fontsize=16,color="magenta"];3151 -> 3256[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3151 -> 3257[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3152 -> 1384[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3152[label="xwv541 < xwv551",fontsize=16,color="magenta"];3152 -> 3258[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3152 -> 3259[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3153 -> 1385[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3153[label="xwv541 < xwv551",fontsize=16,color="magenta"];3153 -> 3260[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3153 -> 3261[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3154 -> 1386[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3154[label="xwv541 < xwv551",fontsize=16,color="magenta"];3154 -> 3262[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3154 -> 3263[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3155 -> 1387[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3155[label="xwv541 < xwv551",fontsize=16,color="magenta"];3155 -> 3264[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3155 -> 3265[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3156 -> 1388[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3156[label="xwv541 < xwv551",fontsize=16,color="magenta"];3156 -> 3266[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3156 -> 3267[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3157 -> 1389[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3157[label="xwv541 < xwv551",fontsize=16,color="magenta"];3157 -> 3268[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3157 -> 3269[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3158 -> 1390[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3158[label="xwv541 < xwv551",fontsize=16,color="magenta"];3158 -> 3270[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3158 -> 3271[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3159 -> 1391[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3159[label="xwv541 < xwv551",fontsize=16,color="magenta"];3159 -> 3272[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3159 -> 3273[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3160 -> 1392[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3160[label="xwv541 < xwv551",fontsize=16,color="magenta"];3160 -> 3274[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3160 -> 3275[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3161 -> 1393[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3161[label="xwv541 < xwv551",fontsize=16,color="magenta"];3161 -> 3276[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3161 -> 3277[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3162[label="xwv540",fontsize=16,color="green",shape="box"];3163[label="xwv550",fontsize=16,color="green",shape="box"];3164[label="xwv540",fontsize=16,color="green",shape="box"];3165[label="xwv550",fontsize=16,color="green",shape="box"];3166[label="xwv540",fontsize=16,color="green",shape="box"];3167[label="xwv550",fontsize=16,color="green",shape="box"];3168[label="xwv540",fontsize=16,color="green",shape="box"];3169[label="xwv550",fontsize=16,color="green",shape="box"];3170[label="xwv540",fontsize=16,color="green",shape="box"];3171[label="xwv550",fontsize=16,color="green",shape="box"];3172[label="xwv540",fontsize=16,color="green",shape="box"];3173[label="xwv550",fontsize=16,color="green",shape="box"];3174[label="xwv540",fontsize=16,color="green",shape="box"];3175[label="xwv550",fontsize=16,color="green",shape="box"];3176[label="xwv540",fontsize=16,color="green",shape="box"];3177[label="xwv550",fontsize=16,color="green",shape="box"];3178[label="xwv540",fontsize=16,color="green",shape="box"];3179[label="xwv550",fontsize=16,color="green",shape="box"];3180[label="xwv540",fontsize=16,color="green",shape="box"];3181[label="xwv550",fontsize=16,color="green",shape="box"];3182[label="xwv540",fontsize=16,color="green",shape="box"];3183[label="xwv550",fontsize=16,color="green",shape="box"];3184[label="xwv540",fontsize=16,color="green",shape="box"];3185[label="xwv550",fontsize=16,color="green",shape="box"];3186[label="xwv540",fontsize=16,color="green",shape="box"];3187[label="xwv550",fontsize=16,color="green",shape="box"];3188[label="xwv540",fontsize=16,color="green",shape="box"];3189[label="xwv550",fontsize=16,color="green",shape="box"];3190[label="xwv300100",fontsize=16,color="green",shape="box"];3191[label="xwv2220",fontsize=16,color="green",shape="box"];4213[label="FiniteMap.mkBalBranch6Double_R xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 xwv3404) xwv344",fontsize=16,color="burlywood",shape="box"];5560[label="xwv3404/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4213 -> 5560[label="",style="solid", color="burlywood", weight=9]; 26.47/9.55 5560 -> 4240[label="",style="solid", color="burlywood", weight=3]; 26.47/9.55 5561[label="xwv3404/FiniteMap.Branch xwv34040 xwv34041 xwv34042 xwv34043 xwv34044",fontsize=10,color="white",style="solid",shape="box"];4213 -> 5561[label="",style="solid", color="burlywood", weight=9]; 26.47/9.55 5561 -> 4241[label="",style="solid", color="burlywood", weight=3]; 26.47/9.55 4519[label="xwv3400",fontsize=16,color="green",shape="box"];4520 -> 4498[label="",style="dashed", color="red", weight=0]; 26.47/9.55 4520[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xwv340 xwv341 xwv3404 xwv344",fontsize=16,color="magenta"];4520 -> 4560[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4520 -> 4561[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4520 -> 4562[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4520 -> 4563[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4520 -> 4564[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4521[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4522[label="xwv3403",fontsize=16,color="green",shape="box"];4523[label="xwv3401",fontsize=16,color="green",shape="box"];4524[label="xwv34430",fontsize=16,color="green",shape="box"];4525 -> 4498[label="",style="dashed", color="red", weight=0]; 26.47/9.55 4525[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xwv3440 xwv3441 xwv34434 xwv3444",fontsize=16,color="magenta"];4525 -> 4565[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4525 -> 4566[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4525 -> 4567[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4525 -> 4568[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4525 -> 4569[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4526[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4527 -> 4498[label="",style="dashed", color="red", weight=0]; 26.47/9.55 4527[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv340 xwv341 xwv340 xwv34433",fontsize=16,color="magenta"];4527 -> 4570[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4527 -> 4571[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4527 -> 4572[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4527 -> 4573[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4527 -> 4574[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4528[label="xwv34431",fontsize=16,color="green",shape="box"];3773[label="xwv333",fontsize=16,color="green",shape="box"];3774 -> 3729[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3774[label="FiniteMap.deleteMax (FiniteMap.Branch xwv3340 xwv3341 xwv3342 xwv3343 xwv3344)",fontsize=16,color="magenta"];3774 -> 3793[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3774 -> 3794[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3774 -> 3795[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3774 -> 3796[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3774 -> 3797[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3775[label="xwv330",fontsize=16,color="green",shape="box"];3776[label="xwv331",fontsize=16,color="green",shape="box"];4297[label="xwv330",fontsize=16,color="green",shape="box"];4298[label="xwv333",fontsize=16,color="green",shape="box"];4299[label="xwv334",fontsize=16,color="green",shape="box"];4300[label="xwv344",fontsize=16,color="green",shape="box"];4301[label="xwv340",fontsize=16,color="green",shape="box"];4302[label="xwv334",fontsize=16,color="green",shape="box"];4303[label="xwv332",fontsize=16,color="green",shape="box"];4304[label="xwv333",fontsize=16,color="green",shape="box"];4305[label="xwv331",fontsize=16,color="green",shape="box"];4306[label="xwv332",fontsize=16,color="green",shape="box"];4307[label="xwv342",fontsize=16,color="green",shape="box"];4308[label="xwv343",fontsize=16,color="green",shape="box"];4309[label="xwv330",fontsize=16,color="green",shape="box"];4310[label="xwv331",fontsize=16,color="green",shape="box"];4311[label="xwv341",fontsize=16,color="green",shape="box"];4296[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv425 xwv426 xwv427 xwv428 xwv429) (FiniteMap.Branch xwv430 xwv431 xwv432 xwv433 xwv434) (FiniteMap.findMax (FiniteMap.Branch xwv435 xwv436 xwv437 xwv438 xwv439))",fontsize=16,color="burlywood",shape="triangle"];5562[label="xwv439/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4296 -> 5562[label="",style="solid", color="burlywood", weight=9]; 26.47/9.55 5562 -> 4387[label="",style="solid", color="burlywood", weight=3]; 26.47/9.55 5563[label="xwv439/FiniteMap.Branch xwv4390 xwv4391 xwv4392 xwv4393 xwv4394",fontsize=10,color="white",style="solid",shape="box"];4296 -> 5563[label="",style="solid", color="burlywood", weight=9]; 26.47/9.55 5563 -> 4388[label="",style="solid", color="burlywood", weight=3]; 26.47/9.55 4402[label="xwv342",fontsize=16,color="green",shape="box"];4403[label="xwv332",fontsize=16,color="green",shape="box"];4404[label="xwv333",fontsize=16,color="green",shape="box"];4405[label="xwv330",fontsize=16,color="green",shape="box"];4406[label="xwv343",fontsize=16,color="green",shape="box"];4407[label="xwv331",fontsize=16,color="green",shape="box"];4408[label="xwv340",fontsize=16,color="green",shape="box"];4409[label="xwv334",fontsize=16,color="green",shape="box"];4410[label="xwv344",fontsize=16,color="green",shape="box"];4411[label="xwv331",fontsize=16,color="green",shape="box"];4412[label="xwv330",fontsize=16,color="green",shape="box"];4413[label="xwv334",fontsize=16,color="green",shape="box"];4414[label="xwv332",fontsize=16,color="green",shape="box"];4415[label="xwv341",fontsize=16,color="green",shape="box"];4416[label="xwv333",fontsize=16,color="green",shape="box"];4401[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv441 xwv442 xwv443 xwv444 xwv445) (FiniteMap.Branch xwv446 xwv447 xwv448 xwv449 xwv450) (FiniteMap.findMax (FiniteMap.Branch xwv451 xwv452 xwv453 xwv454 xwv455))",fontsize=16,color="burlywood",shape="triangle"];5564[label="xwv455/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4401 -> 5564[label="",style="solid", color="burlywood", weight=9]; 26.47/9.55 5564 -> 4492[label="",style="solid", color="burlywood", weight=3]; 26.47/9.55 5565[label="xwv455/FiniteMap.Branch xwv4550 xwv4551 xwv4552 xwv4553 xwv4554",fontsize=10,color="white",style="solid",shape="box"];4401 -> 5565[label="",style="solid", color="burlywood", weight=9]; 26.47/9.55 5565 -> 4493[label="",style="solid", color="burlywood", weight=3]; 26.47/9.55 4236[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv362 xwv363 xwv364 xwv365 xwv366) (FiniteMap.Branch xwv367 xwv368 xwv369 xwv370 xwv371) (xwv372,xwv373)",fontsize=16,color="black",shape="box"];4236 -> 4281[label="",style="solid", color="black", weight=3]; 26.47/9.55 4237 -> 4014[label="",style="dashed", color="red", weight=0]; 26.47/9.55 4237[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv362 xwv363 xwv364 xwv365 xwv366) (FiniteMap.Branch xwv367 xwv368 xwv369 xwv370 xwv371) (FiniteMap.findMin (FiniteMap.Branch xwv3750 xwv3751 xwv3752 xwv3753 xwv3754))",fontsize=16,color="magenta"];4237 -> 4282[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4237 -> 4283[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4237 -> 4284[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4237 -> 4285[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4237 -> 4286[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4238[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv378 xwv379 xwv380 xwv381 xwv382) (FiniteMap.Branch xwv383 xwv384 xwv385 xwv386 xwv387) (xwv388,xwv389)",fontsize=16,color="black",shape="box"];4238 -> 4287[label="",style="solid", color="black", weight=3]; 26.47/9.55 4239 -> 4117[label="",style="dashed", color="red", weight=0]; 26.47/9.55 4239[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv378 xwv379 xwv380 xwv381 xwv382) (FiniteMap.Branch xwv383 xwv384 xwv385 xwv386 xwv387) (FiniteMap.findMin (FiniteMap.Branch xwv3910 xwv3911 xwv3912 xwv3913 xwv3914))",fontsize=16,color="magenta"];4239 -> 4288[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4239 -> 4289[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4239 -> 4290[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4239 -> 4291[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4239 -> 4292[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3222 -> 1435[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3222[label="xwv542 <= xwv552",fontsize=16,color="magenta"];3222 -> 3306[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3222 -> 3307[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3223 -> 1436[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3223[label="xwv542 <= xwv552",fontsize=16,color="magenta"];3223 -> 3308[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3223 -> 3309[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3224 -> 1437[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3224[label="xwv542 <= xwv552",fontsize=16,color="magenta"];3224 -> 3310[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3224 -> 3311[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3225 -> 1438[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3225[label="xwv542 <= xwv552",fontsize=16,color="magenta"];3225 -> 3312[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3225 -> 3313[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3226 -> 1439[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3226[label="xwv542 <= xwv552",fontsize=16,color="magenta"];3226 -> 3314[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3226 -> 3315[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3227 -> 1440[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3227[label="xwv542 <= xwv552",fontsize=16,color="magenta"];3227 -> 3316[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3227 -> 3317[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3228 -> 1441[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3228[label="xwv542 <= xwv552",fontsize=16,color="magenta"];3228 -> 3318[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3228 -> 3319[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3229 -> 1442[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3229[label="xwv542 <= xwv552",fontsize=16,color="magenta"];3229 -> 3320[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3229 -> 3321[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3230 -> 1443[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3230[label="xwv542 <= xwv552",fontsize=16,color="magenta"];3230 -> 3322[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3230 -> 3323[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3231 -> 1444[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3231[label="xwv542 <= xwv552",fontsize=16,color="magenta"];3231 -> 3324[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3231 -> 3325[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3232 -> 1445[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3232[label="xwv542 <= xwv552",fontsize=16,color="magenta"];3232 -> 3326[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3232 -> 3327[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3233 -> 1446[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3233[label="xwv542 <= xwv552",fontsize=16,color="magenta"];3233 -> 3328[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3233 -> 3329[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3234 -> 1447[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3234[label="xwv542 <= xwv552",fontsize=16,color="magenta"];3234 -> 3330[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3234 -> 3331[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3235 -> 1448[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3235[label="xwv542 <= xwv552",fontsize=16,color="magenta"];3235 -> 3332[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3235 -> 3333[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3236 -> 532[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3236[label="xwv541 == xwv551",fontsize=16,color="magenta"];3236 -> 3334[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3236 -> 3335[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3237 -> 534[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3237[label="xwv541 == xwv551",fontsize=16,color="magenta"];3237 -> 3336[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3237 -> 3337[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3238 -> 528[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3238[label="xwv541 == xwv551",fontsize=16,color="magenta"];3238 -> 3338[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3238 -> 3339[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3239 -> 535[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3239[label="xwv541 == xwv551",fontsize=16,color="magenta"];3239 -> 3340[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3239 -> 3341[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3240 -> 530[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3240[label="xwv541 == xwv551",fontsize=16,color="magenta"];3240 -> 3342[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3240 -> 3343[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3241 -> 531[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3241[label="xwv541 == xwv551",fontsize=16,color="magenta"];3241 -> 3344[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3241 -> 3345[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3242 -> 536[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3242[label="xwv541 == xwv551",fontsize=16,color="magenta"];3242 -> 3346[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3242 -> 3347[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3243 -> 538[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3243[label="xwv541 == xwv551",fontsize=16,color="magenta"];3243 -> 3348[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3243 -> 3349[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3244 -> 541[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3244[label="xwv541 == xwv551",fontsize=16,color="magenta"];3244 -> 3350[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3244 -> 3351[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3245 -> 529[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3245[label="xwv541 == xwv551",fontsize=16,color="magenta"];3245 -> 3352[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3245 -> 3353[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3246 -> 539[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3246[label="xwv541 == xwv551",fontsize=16,color="magenta"];3246 -> 3354[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3246 -> 3355[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3247 -> 533[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3247[label="xwv541 == xwv551",fontsize=16,color="magenta"];3247 -> 3356[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3247 -> 3357[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3248 -> 540[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3248[label="xwv541 == xwv551",fontsize=16,color="magenta"];3248 -> 3358[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3248 -> 3359[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3249 -> 537[label="",style="dashed", color="red", weight=0]; 26.47/9.55 3249[label="xwv541 == xwv551",fontsize=16,color="magenta"];3249 -> 3360[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3249 -> 3361[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 3250[label="xwv551",fontsize=16,color="green",shape="box"];3251[label="xwv541",fontsize=16,color="green",shape="box"];3252[label="xwv551",fontsize=16,color="green",shape="box"];3253[label="xwv541",fontsize=16,color="green",shape="box"];3254[label="xwv551",fontsize=16,color="green",shape="box"];3255[label="xwv541",fontsize=16,color="green",shape="box"];3256[label="xwv551",fontsize=16,color="green",shape="box"];3257[label="xwv541",fontsize=16,color="green",shape="box"];3258[label="xwv551",fontsize=16,color="green",shape="box"];3259[label="xwv541",fontsize=16,color="green",shape="box"];3260[label="xwv551",fontsize=16,color="green",shape="box"];3261[label="xwv541",fontsize=16,color="green",shape="box"];3262[label="xwv551",fontsize=16,color="green",shape="box"];3263[label="xwv541",fontsize=16,color="green",shape="box"];3264[label="xwv551",fontsize=16,color="green",shape="box"];3265[label="xwv541",fontsize=16,color="green",shape="box"];3266[label="xwv551",fontsize=16,color="green",shape="box"];3267[label="xwv541",fontsize=16,color="green",shape="box"];3268[label="xwv551",fontsize=16,color="green",shape="box"];3269[label="xwv541",fontsize=16,color="green",shape="box"];3270[label="xwv551",fontsize=16,color="green",shape="box"];3271[label="xwv541",fontsize=16,color="green",shape="box"];3272[label="xwv551",fontsize=16,color="green",shape="box"];3273[label="xwv541",fontsize=16,color="green",shape="box"];3274[label="xwv551",fontsize=16,color="green",shape="box"];3275[label="xwv541",fontsize=16,color="green",shape="box"];3276[label="xwv551",fontsize=16,color="green",shape="box"];3277[label="xwv541",fontsize=16,color="green",shape="box"];4240[label="FiniteMap.mkBalBranch6Double_R xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 FiniteMap.EmptyFM) (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 FiniteMap.EmptyFM) xwv344",fontsize=16,color="black",shape="box"];4240 -> 4293[label="",style="solid", color="black", weight=3]; 26.47/9.55 4241[label="FiniteMap.mkBalBranch6Double_R xwv340 xwv341 xwv344 (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 (FiniteMap.Branch xwv34040 xwv34041 xwv34042 xwv34043 xwv34044)) (FiniteMap.Branch xwv3400 xwv3401 xwv3402 xwv3403 (FiniteMap.Branch xwv34040 xwv34041 xwv34042 xwv34043 xwv34044)) xwv344",fontsize=16,color="black",shape="box"];4241 -> 4294[label="",style="solid", color="black", weight=3]; 26.47/9.55 4560[label="xwv340",fontsize=16,color="green",shape="box"];4561[label="xwv344",fontsize=16,color="green",shape="box"];4562[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4563[label="xwv3404",fontsize=16,color="green",shape="box"];4564[label="xwv341",fontsize=16,color="green",shape="box"];4565[label="xwv3440",fontsize=16,color="green",shape="box"];4566[label="xwv3444",fontsize=16,color="green",shape="box"];4567[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4568[label="xwv34434",fontsize=16,color="green",shape="box"];4569[label="xwv3441",fontsize=16,color="green",shape="box"];4570[label="xwv340",fontsize=16,color="green",shape="box"];4571[label="xwv34433",fontsize=16,color="green",shape="box"];4572[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4573[label="xwv340",fontsize=16,color="green",shape="box"];4574[label="xwv341",fontsize=16,color="green",shape="box"];3793[label="xwv3343",fontsize=16,color="green",shape="box"];3794[label="xwv3344",fontsize=16,color="green",shape="box"];3795[label="xwv3341",fontsize=16,color="green",shape="box"];3796[label="xwv3342",fontsize=16,color="green",shape="box"];3797[label="xwv3340",fontsize=16,color="green",shape="box"];4387[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv425 xwv426 xwv427 xwv428 xwv429) (FiniteMap.Branch xwv430 xwv431 xwv432 xwv433 xwv434) (FiniteMap.findMax (FiniteMap.Branch xwv435 xwv436 xwv437 xwv438 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];4387 -> 4494[label="",style="solid", color="black", weight=3]; 26.47/9.55 4388[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv425 xwv426 xwv427 xwv428 xwv429) (FiniteMap.Branch xwv430 xwv431 xwv432 xwv433 xwv434) (FiniteMap.findMax (FiniteMap.Branch xwv435 xwv436 xwv437 xwv438 (FiniteMap.Branch xwv4390 xwv4391 xwv4392 xwv4393 xwv4394)))",fontsize=16,color="black",shape="box"];4388 -> 4495[label="",style="solid", color="black", weight=3]; 26.47/9.55 4492[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv441 xwv442 xwv443 xwv444 xwv445) (FiniteMap.Branch xwv446 xwv447 xwv448 xwv449 xwv450) (FiniteMap.findMax (FiniteMap.Branch xwv451 xwv452 xwv453 xwv454 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];4492 -> 4575[label="",style="solid", color="black", weight=3]; 26.47/9.55 4493[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv441 xwv442 xwv443 xwv444 xwv445) (FiniteMap.Branch xwv446 xwv447 xwv448 xwv449 xwv450) (FiniteMap.findMax (FiniteMap.Branch xwv451 xwv452 xwv453 xwv454 (FiniteMap.Branch xwv4550 xwv4551 xwv4552 xwv4553 xwv4554)))",fontsize=16,color="black",shape="box"];4493 -> 4576[label="",style="solid", color="black", weight=3]; 26.47/9.55 4281[label="xwv372",fontsize=16,color="green",shape="box"];4282[label="xwv3750",fontsize=16,color="green",shape="box"];4283[label="xwv3754",fontsize=16,color="green",shape="box"];4284[label="xwv3753",fontsize=16,color="green",shape="box"];4285[label="xwv3751",fontsize=16,color="green",shape="box"];4286[label="xwv3752",fontsize=16,color="green",shape="box"];4287[label="xwv389",fontsize=16,color="green",shape="box"];4288[label="xwv3910",fontsize=16,color="green",shape="box"];4289[label="xwv3911",fontsize=16,color="green",shape="box"];4290[label="xwv3912",fontsize=16,color="green",shape="box"];4291[label="xwv3913",fontsize=16,color="green",shape="box"];4292[label="xwv3914",fontsize=16,color="green",shape="box"];3306[label="xwv552",fontsize=16,color="green",shape="box"];3307[label="xwv542",fontsize=16,color="green",shape="box"];3308[label="xwv552",fontsize=16,color="green",shape="box"];3309[label="xwv542",fontsize=16,color="green",shape="box"];3310[label="xwv552",fontsize=16,color="green",shape="box"];3311[label="xwv542",fontsize=16,color="green",shape="box"];3312[label="xwv552",fontsize=16,color="green",shape="box"];3313[label="xwv542",fontsize=16,color="green",shape="box"];3314[label="xwv552",fontsize=16,color="green",shape="box"];3315[label="xwv542",fontsize=16,color="green",shape="box"];3316[label="xwv552",fontsize=16,color="green",shape="box"];3317[label="xwv542",fontsize=16,color="green",shape="box"];3318[label="xwv552",fontsize=16,color="green",shape="box"];3319[label="xwv542",fontsize=16,color="green",shape="box"];3320[label="xwv552",fontsize=16,color="green",shape="box"];3321[label="xwv542",fontsize=16,color="green",shape="box"];3322[label="xwv552",fontsize=16,color="green",shape="box"];3323[label="xwv542",fontsize=16,color="green",shape="box"];3324[label="xwv552",fontsize=16,color="green",shape="box"];3325[label="xwv542",fontsize=16,color="green",shape="box"];3326[label="xwv552",fontsize=16,color="green",shape="box"];3327[label="xwv542",fontsize=16,color="green",shape="box"];3328[label="xwv552",fontsize=16,color="green",shape="box"];3329[label="xwv542",fontsize=16,color="green",shape="box"];3330[label="xwv552",fontsize=16,color="green",shape="box"];3331[label="xwv542",fontsize=16,color="green",shape="box"];3332[label="xwv552",fontsize=16,color="green",shape="box"];3333[label="xwv542",fontsize=16,color="green",shape="box"];3334[label="xwv541",fontsize=16,color="green",shape="box"];3335[label="xwv551",fontsize=16,color="green",shape="box"];3336[label="xwv541",fontsize=16,color="green",shape="box"];3337[label="xwv551",fontsize=16,color="green",shape="box"];3338[label="xwv541",fontsize=16,color="green",shape="box"];3339[label="xwv551",fontsize=16,color="green",shape="box"];3340[label="xwv541",fontsize=16,color="green",shape="box"];3341[label="xwv551",fontsize=16,color="green",shape="box"];3342[label="xwv541",fontsize=16,color="green",shape="box"];3343[label="xwv551",fontsize=16,color="green",shape="box"];3344[label="xwv541",fontsize=16,color="green",shape="box"];3345[label="xwv551",fontsize=16,color="green",shape="box"];3346[label="xwv541",fontsize=16,color="green",shape="box"];3347[label="xwv551",fontsize=16,color="green",shape="box"];3348[label="xwv541",fontsize=16,color="green",shape="box"];3349[label="xwv551",fontsize=16,color="green",shape="box"];3350[label="xwv541",fontsize=16,color="green",shape="box"];3351[label="xwv551",fontsize=16,color="green",shape="box"];3352[label="xwv541",fontsize=16,color="green",shape="box"];3353[label="xwv551",fontsize=16,color="green",shape="box"];3354[label="xwv541",fontsize=16,color="green",shape="box"];3355[label="xwv551",fontsize=16,color="green",shape="box"];3356[label="xwv541",fontsize=16,color="green",shape="box"];3357[label="xwv551",fontsize=16,color="green",shape="box"];3358[label="xwv541",fontsize=16,color="green",shape="box"];3359[label="xwv551",fontsize=16,color="green",shape="box"];3360[label="xwv541",fontsize=16,color="green",shape="box"];3361[label="xwv551",fontsize=16,color="green",shape="box"];4293[label="error []",fontsize=16,color="red",shape="box"];4294 -> 4498[label="",style="dashed", color="red", weight=0]; 26.47/9.55 4294[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xwv34040 xwv34041 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv3400 xwv3401 xwv3403 xwv34043) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xwv340 xwv341 xwv34044 xwv344)",fontsize=16,color="magenta"];4294 -> 4539[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4294 -> 4540[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4294 -> 4541[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4294 -> 4542[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4294 -> 4543[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4494[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv425 xwv426 xwv427 xwv428 xwv429) (FiniteMap.Branch xwv430 xwv431 xwv432 xwv433 xwv434) (xwv435,xwv436)",fontsize=16,color="black",shape="box"];4494 -> 4577[label="",style="solid", color="black", weight=3]; 26.47/9.55 4495 -> 4296[label="",style="dashed", color="red", weight=0]; 26.47/9.55 4495[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv425 xwv426 xwv427 xwv428 xwv429) (FiniteMap.Branch xwv430 xwv431 xwv432 xwv433 xwv434) (FiniteMap.findMax (FiniteMap.Branch xwv4390 xwv4391 xwv4392 xwv4393 xwv4394))",fontsize=16,color="magenta"];4495 -> 4578[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4495 -> 4579[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4495 -> 4580[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4495 -> 4581[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4495 -> 4582[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4575[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv441 xwv442 xwv443 xwv444 xwv445) (FiniteMap.Branch xwv446 xwv447 xwv448 xwv449 xwv450) (xwv451,xwv452)",fontsize=16,color="black",shape="box"];4575 -> 4594[label="",style="solid", color="black", weight=3]; 26.47/9.55 4576 -> 4401[label="",style="dashed", color="red", weight=0]; 26.47/9.55 4576[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv441 xwv442 xwv443 xwv444 xwv445) (FiniteMap.Branch xwv446 xwv447 xwv448 xwv449 xwv450) (FiniteMap.findMax (FiniteMap.Branch xwv4550 xwv4551 xwv4552 xwv4553 xwv4554))",fontsize=16,color="magenta"];4576 -> 4595[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4576 -> 4596[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4576 -> 4597[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4576 -> 4598[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4576 -> 4599[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4539[label="xwv34040",fontsize=16,color="green",shape="box"];4540 -> 4498[label="",style="dashed", color="red", weight=0]; 26.47/9.55 4540[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xwv340 xwv341 xwv34044 xwv344",fontsize=16,color="magenta"];4540 -> 4583[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4540 -> 4584[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4540 -> 4585[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4540 -> 4586[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4540 -> 4587[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4541[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4542 -> 4498[label="",style="dashed", color="red", weight=0]; 26.47/9.55 4542[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv3400 xwv3401 xwv3403 xwv34043",fontsize=16,color="magenta"];4542 -> 4588[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4542 -> 4589[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4542 -> 4590[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4542 -> 4591[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4542 -> 4592[label="",style="dashed", color="magenta", weight=3]; 26.47/9.55 4543[label="xwv34041",fontsize=16,color="green",shape="box"];4577[label="xwv435",fontsize=16,color="green",shape="box"];4578[label="xwv4393",fontsize=16,color="green",shape="box"];4579[label="xwv4394",fontsize=16,color="green",shape="box"];4580[label="xwv4392",fontsize=16,color="green",shape="box"];4581[label="xwv4390",fontsize=16,color="green",shape="box"];4582[label="xwv4391",fontsize=16,color="green",shape="box"];4594[label="xwv452",fontsize=16,color="green",shape="box"];4595[label="xwv4553",fontsize=16,color="green",shape="box"];4596[label="xwv4551",fontsize=16,color="green",shape="box"];4597[label="xwv4550",fontsize=16,color="green",shape="box"];4598[label="xwv4554",fontsize=16,color="green",shape="box"];4599[label="xwv4552",fontsize=16,color="green",shape="box"];4583[label="xwv340",fontsize=16,color="green",shape="box"];4584[label="xwv344",fontsize=16,color="green",shape="box"];4585[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4586[label="xwv34044",fontsize=16,color="green",shape="box"];4587[label="xwv341",fontsize=16,color="green",shape="box"];4588[label="xwv3400",fontsize=16,color="green",shape="box"];4589[label="xwv34043",fontsize=16,color="green",shape="box"];4590[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4591[label="xwv3403",fontsize=16,color="green",shape="box"];4592[label="xwv3401",fontsize=16,color="green",shape="box"];} 26.47/9.55 26.47/9.55 ---------------------------------------- 26.47/9.55 26.47/9.55 (16) 26.47/9.55 Complex Obligation (AND) 26.47/9.55 26.47/9.55 ---------------------------------------- 26.47/9.55 26.47/9.55 (17) 26.47/9.55 Obligation: 26.47/9.55 Q DP problem: 26.47/9.55 The TRS P consists of the following rules: 26.47/9.55 26.47/9.55 new_primCmpNat(Succ(xwv40000), Succ(xwv30000)) -> new_primCmpNat(xwv40000, xwv30000) 26.47/9.55 26.47/9.55 R is empty. 26.47/9.55 Q is empty. 26.47/9.55 We have to consider all minimal (P,Q,R)-chains. 26.47/9.55 ---------------------------------------- 26.47/9.55 26.47/9.55 (18) QDPSizeChangeProof (EQUIVALENT) 26.47/9.55 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. 26.47/9.55 26.47/9.55 From the DPs we obtained the following set of size-change graphs: 26.47/9.55 *new_primCmpNat(Succ(xwv40000), Succ(xwv30000)) -> new_primCmpNat(xwv40000, xwv30000) 26.47/9.55 The graph contains the following edges 1 > 1, 2 > 2 26.47/9.55 26.47/9.55 26.47/9.55 ---------------------------------------- 26.47/9.55 26.47/9.55 (19) 26.47/9.55 YES 26.47/9.55 26.47/9.55 ---------------------------------------- 26.47/9.55 26.47/9.55 (20) 26.47/9.55 Obligation: 26.47/9.55 Q DP problem: 26.47/9.55 The TRS P consists of the following rules: 26.47/9.55 26.47/9.55 new_delFromFM(Branch([], xwv31, xwv32, xwv33, xwv34), :(xwv400, xwv401), bb, bc) -> new_delFromFM(xwv34, :(xwv400, xwv401), bb, bc) 26.47/9.55 new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, LT, h, ba) -> new_delFromFM(xwv19, :(xwv21, xwv22), h, ba) 26.47/9.55 new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, EQ, h, ba) -> new_delFromFM20(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, h, ba) 26.47/9.55 new_delFromFM11(xwv31, xwv32, xwv33, xwv34, LT, bb, bc) -> new_delFromFM(xwv33, [], bb, bc) 26.47/9.55 new_delFromFM(Branch(:(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), [], bb, bc) -> new_delFromFM10(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, LT, bb, bc) 26.47/9.55 new_delFromFM(Branch([], xwv31, xwv32, xwv33, xwv34), [], bb, bc) -> new_delFromFM11(xwv31, xwv32, xwv33, xwv34, EQ, bb, bc) 26.47/9.55 new_delFromFM20(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, h, ba) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_compare26(:(xwv21, xwv22), :(xwv15, xwv16), h), h, ba) 26.47/9.55 new_delFromFM10(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, LT, bb, bc) -> new_delFromFM(xwv33, [], bb, bc) 26.47/9.55 new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, GT, h, ba) -> new_delFromFM(xwv20, :(xwv21, xwv22), h, ba) 26.47/9.55 new_delFromFM(Branch(:(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), :(xwv400, xwv401), bb, bc) -> new_delFromFM2(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, xwv400, xwv401, new_primCompAux1(xwv400, xwv300, xwv401, xwv301, bb), bb, bc) 26.47/9.55 new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, LT, h, ba) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_compare26(:(xwv21, xwv22), :(xwv15, xwv16), h), h, ba) 26.47/9.55 26.47/9.55 The TRS R consists of the following rules: 26.47/9.55 26.47/9.55 new_primCompAux00(xwv32, xwv33, EQ, ty_@0) -> new_compare6(xwv32, xwv33) 26.47/9.55 new_ltEs24(xwv54, xwv55, ty_Float) -> new_ltEs12(xwv54, xwv55) 26.47/9.55 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.47/9.55 new_esEs33(xwv540, xwv550, app(ty_Ratio, def)) -> new_esEs23(xwv540, xwv550, def) 26.47/9.55 new_esEs28(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.55 new_ltEs21(xwv83, xwv84, ty_Bool) -> new_ltEs8(xwv83, xwv84) 26.47/9.55 new_primPlusNat0(Zero, Zero) -> Zero 26.47/9.55 new_ltEs22(xwv76, xwv77, app(app(app(ty_@3, eeg), eeh), efa)) -> new_ltEs15(xwv76, xwv77, eeg, eeh, efa) 26.47/9.55 new_primCompAux1(xwv400, xwv300, xwv401, xwv301, bb) -> new_primCompAux00(xwv401, xwv301, new_compare0(xwv400, xwv300, bb), app(ty_[], bb)) 26.47/9.55 new_esEs24(@0, @0) -> True 26.47/9.55 new_pePe(True, xwv216) -> True 26.47/9.55 new_esEs10(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.47/9.55 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Integer, ffc) -> new_esEs26(xwv40000, xwv30000) 26.47/9.55 new_compare212(xwv113, xwv114, xwv115, xwv116, True, cdb, cdc) -> EQ 26.47/9.55 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(ty_@2, ffg), ffh), ffc) -> new_esEs21(xwv40000, xwv30000, ffg, ffh) 26.47/9.55 new_ltEs24(xwv54, xwv55, ty_Ordering) -> new_ltEs14(xwv54, xwv55) 26.47/9.55 new_esEs34(xwv541, xwv551, ty_Double) -> new_esEs17(xwv541, xwv551) 26.47/9.55 new_esEs35(xwv540, xwv550, app(ty_[], eaa)) -> new_esEs12(xwv540, xwv550, eaa) 26.47/9.55 new_esEs30(xwv40002, xwv30002, app(app(ty_@2, cgf), cgg)) -> new_esEs21(xwv40002, xwv30002, cgf, cgg) 26.47/9.55 new_esEs34(xwv541, xwv551, ty_Float) -> new_esEs22(xwv541, xwv551) 26.47/9.55 new_esEs13(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.55 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.47/9.55 new_compare27(LT, EQ) -> LT 26.47/9.55 new_lt6(xwv113, xwv115, ty_Char) -> new_lt8(xwv113, xwv115) 26.47/9.55 new_ltEs7(xwv54, xwv55) -> new_fsEs(new_compare16(xwv54, xwv55)) 26.47/9.55 new_compare27(LT, GT) -> LT 26.47/9.55 new_esEs32(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.47/9.55 new_esEs7(xwv4002, xwv3002, ty_Char) -> new_esEs20(xwv4002, xwv3002) 26.47/9.55 new_esEs28(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.47/9.55 new_esEs20(Char(xwv40000), Char(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 26.47/9.55 new_primMulNat0(Succ(xwv400000), Succ(xwv300100)) -> new_primPlusNat1(new_primMulNat0(xwv400000, Succ(xwv300100)), xwv300100) 26.47/9.55 new_compare111(xwv170, xwv171, xwv172, xwv173, False, bfd, bfe) -> GT 26.47/9.55 new_esEs39(xwv65, xwv68, ty_Ordering) -> new_esEs15(xwv65, xwv68) 26.47/9.55 new_ltEs5(Left(xwv540), Left(xwv550), ty_Int, da) -> new_ltEs6(xwv540, xwv550) 26.47/9.55 new_esEs10(xwv4000, xwv3000, app(ty_Maybe, bah)) -> new_esEs16(xwv4000, xwv3000, bah) 26.47/9.55 new_ltEs19(xwv541, xwv551, ty_Double) -> new_ltEs11(xwv541, xwv551) 26.47/9.55 new_ltEs5(Left(xwv540), Right(xwv550), ed, da) -> True 26.47/9.55 new_compare0(xwv400, xwv300, ty_@0) -> new_compare6(xwv400, xwv300) 26.47/9.55 new_esEs7(xwv4002, xwv3002, ty_Int) -> new_esEs18(xwv4002, xwv3002) 26.47/9.55 new_esEs34(xwv541, xwv551, ty_Ordering) -> new_esEs15(xwv541, xwv551) 26.47/9.55 new_lt19(xwv540, xwv550, app(ty_Ratio, def)) -> new_lt18(xwv540, xwv550, def) 26.47/9.55 new_ltEs20(xwv542, xwv552, ty_@0) -> new_ltEs4(xwv542, xwv552) 26.47/9.55 new_lt20(xwv541, xwv551, app(ty_[], dgg)) -> new_lt13(xwv541, xwv551, dgg) 26.47/9.55 new_esEs9(xwv4000, xwv3000, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs25(xwv4000, xwv3000, ccf, ccg, cch) 26.47/9.55 new_ltEs23(xwv67, xwv70, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(xwv67, xwv70, fcc, fcd) 26.47/9.55 new_compare18(Nothing, Just(xwv3000), bff) -> LT 26.47/9.55 new_primEqNat0(Succ(xwv400000), Succ(xwv300000)) -> new_primEqNat0(xwv400000, xwv300000) 26.47/9.55 new_ltEs22(xwv76, xwv77, app(ty_Maybe, eee)) -> new_ltEs10(xwv76, xwv77, eee) 26.47/9.55 new_ltEs21(xwv83, xwv84, ty_Char) -> new_ltEs7(xwv83, xwv84) 26.47/9.55 new_not(True) -> False 26.47/9.55 new_lt18(xwv113, xwv115, cee) -> new_esEs15(new_compare29(xwv113, xwv115, cee), LT) 26.47/9.55 new_esEs4(xwv4001, xwv3001, ty_Bool) -> new_esEs14(xwv4001, xwv3001) 26.47/9.55 new_esEs35(xwv540, xwv550, app(app(ty_@2, dhf), dhg)) -> new_esEs21(xwv540, xwv550, dhf, dhg) 26.47/9.55 new_esEs29(xwv113, xwv115, ty_Ordering) -> new_esEs15(xwv113, xwv115) 26.47/9.55 new_esEs38(xwv66, xwv69, app(ty_Ratio, fdg)) -> new_esEs23(xwv66, xwv69, fdg) 26.47/9.55 new_ltEs10(Just(xwv540), Just(xwv550), ty_Bool) -> new_ltEs8(xwv540, xwv550) 26.47/9.55 new_ltEs16(xwv54, xwv55) -> new_fsEs(new_compare8(xwv54, xwv55)) 26.47/9.55 new_esEs4(xwv4001, xwv3001, app(ty_[], ffa)) -> new_esEs12(xwv4001, xwv3001, ffa) 26.47/9.55 new_esEs30(xwv40002, xwv30002, ty_Bool) -> new_esEs14(xwv40002, xwv30002) 26.47/9.55 new_ltEs19(xwv541, xwv551, ty_Bool) -> new_ltEs8(xwv541, xwv551) 26.47/9.55 new_esEs30(xwv40002, xwv30002, ty_Int) -> new_esEs18(xwv40002, xwv30002) 26.47/9.55 new_compare11(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, False, xwv192, bdd, bde, bdf) -> new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, xwv192, bdd, bde, bdf) 26.47/9.55 new_primCompAux00(xwv32, xwv33, EQ, ty_Bool) -> new_compare9(xwv32, xwv33) 26.47/9.55 new_lt20(xwv541, xwv551, app(app(app(ty_@3, dgh), dha), dhb)) -> new_lt15(xwv541, xwv551, dgh, dha, dhb) 26.47/9.55 new_ltEs18(xwv114, xwv116, ty_@0) -> new_ltEs4(xwv114, xwv116) 26.47/9.55 new_esEs28(xwv40000, xwv30000, app(app(ty_@2, hg), hh)) -> new_esEs21(xwv40000, xwv30000, hg, hh) 26.47/9.55 new_ltEs24(xwv54, xwv55, ty_Integer) -> new_ltEs16(xwv54, xwv55) 26.47/9.55 new_compare28(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), bha, bhb, bhc) -> new_compare211(xwv4000, xwv4001, xwv4002, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs9(xwv4000, xwv3000, bha), new_asAs(new_esEs8(xwv4001, xwv3001, bhb), new_esEs7(xwv4002, xwv3002, bhc))), bha, bhb, bhc) 26.47/9.55 new_esEs37(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.55 new_primEqNat0(Succ(xwv400000), Zero) -> False 26.47/9.55 new_primEqNat0(Zero, Succ(xwv300000)) -> False 26.47/9.55 new_esEs10(xwv4000, xwv3000, app(app(ty_@2, bbc), bbd)) -> new_esEs21(xwv4000, xwv3000, bbc, bbd) 26.47/9.55 new_ltEs20(xwv542, xwv552, ty_Int) -> new_ltEs6(xwv542, xwv552) 26.47/9.55 new_esEs39(xwv65, xwv68, ty_Double) -> new_esEs17(xwv65, xwv68) 26.47/9.55 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Float, ffc) -> new_esEs22(xwv40000, xwv30000) 26.47/9.55 new_ltEs5(Left(xwv540), Left(xwv550), ty_@0, da) -> new_ltEs4(xwv540, xwv550) 26.47/9.55 new_esEs30(xwv40002, xwv30002, ty_Char) -> new_esEs20(xwv40002, xwv30002) 26.47/9.55 new_esEs14(False, True) -> False 26.47/9.55 new_esEs14(True, False) -> False 26.47/9.55 new_ltEs5(Left(xwv540), Left(xwv550), app(app(ty_Either, ea), eb), da) -> new_ltEs5(xwv540, xwv550, ea, eb) 26.47/9.55 new_esEs29(xwv113, xwv115, ty_Double) -> new_esEs17(xwv113, xwv115) 26.47/9.55 new_ltEs14(EQ, EQ) -> True 26.47/9.55 new_ltEs10(Nothing, Just(xwv550), egc) -> True 26.47/9.55 new_esEs13(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.47/9.55 new_ltEs10(Just(xwv540), Just(xwv550), ty_Double) -> new_ltEs11(xwv540, xwv550) 26.47/9.55 new_ltEs21(xwv83, xwv84, ty_Double) -> new_ltEs11(xwv83, xwv84) 26.47/9.55 new_primCmpInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> GT 26.47/9.55 new_esEs6(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.47/9.55 new_esEs10(xwv4000, xwv3000, app(ty_[], bca)) -> new_esEs12(xwv4000, xwv3000, bca) 26.47/9.55 new_lt23(xwv66, xwv69, ty_Integer) -> new_lt17(xwv66, xwv69) 26.47/9.55 new_esEs35(xwv540, xwv550, ty_Bool) -> new_esEs14(xwv540, xwv550) 26.47/9.55 new_esEs5(xwv4000, xwv3000, app(app(ty_Either, ffb), ffc)) -> new_esEs19(xwv4000, xwv3000, ffb, ffc) 26.47/9.55 new_primCompAux00(xwv32, xwv33, GT, bea) -> GT 26.47/9.55 new_ltEs10(Just(xwv540), Just(xwv550), ty_Char) -> new_ltEs7(xwv540, xwv550) 26.47/9.55 new_compare27(EQ, GT) -> LT 26.47/9.55 new_primCmpNat0(Zero, Succ(xwv30000)) -> LT 26.47/9.55 new_esEs4(xwv4001, xwv3001, app(app(ty_@2, fec), fed)) -> new_esEs21(xwv4001, xwv3001, fec, fed) 26.47/9.55 new_lt20(xwv541, xwv551, ty_@0) -> new_lt12(xwv541, xwv551) 26.47/9.55 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(ty_[], fhg)) -> new_esEs12(xwv40000, xwv30000, fhg) 26.47/9.55 new_primCompAux00(xwv32, xwv33, EQ, app(ty_[], bee)) -> new_compare26(xwv32, xwv33, bee) 26.47/9.55 new_esEs6(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.47/9.55 new_esEs9(xwv4000, xwv3000, app(ty_[], cda)) -> new_esEs12(xwv4000, xwv3000, cda) 26.47/9.55 new_ltEs19(xwv541, xwv551, ty_Char) -> new_ltEs7(xwv541, xwv551) 26.47/9.55 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Ordering, ffc) -> new_esEs15(xwv40000, xwv30000) 26.47/9.55 new_esEs15(GT, GT) -> True 26.47/9.55 new_esEs6(xwv4000, xwv3000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs25(xwv4000, xwv3000, bge, bgf, bgg) 26.47/9.55 new_ltEs9(@2(xwv540, xwv541), @2(xwv550, xwv551), dca, dcb) -> new_pePe(new_lt19(xwv540, xwv550, dca), new_asAs(new_esEs33(xwv540, xwv550, dca), new_ltEs19(xwv541, xwv551, dcb))) 26.47/9.55 new_esEs10(xwv4000, xwv3000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs25(xwv4000, xwv3000, bbf, bbg, bbh) 26.47/9.55 new_esEs11(xwv4000, xwv3000, app(ty_Ratio, bcg)) -> new_esEs23(xwv4000, xwv3000, bcg) 26.47/9.55 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.47/9.55 new_esEs28(xwv40000, xwv30000, app(ty_Maybe, hd)) -> new_esEs16(xwv40000, xwv30000, hd) 26.47/9.55 new_ltEs19(xwv541, xwv551, ty_Ordering) -> new_ltEs14(xwv541, xwv551) 26.47/9.55 new_esEs8(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 26.47/9.55 new_esEs7(xwv4002, xwv3002, app(ty_Maybe, bhd)) -> new_esEs16(xwv4002, xwv3002, bhd) 26.47/9.55 new_esEs38(xwv66, xwv69, app(ty_[], fda)) -> new_esEs12(xwv66, xwv69, fda) 26.47/9.55 new_lt21(xwv540, xwv550, ty_Int) -> new_lt7(xwv540, xwv550) 26.47/9.55 new_esEs31(xwv40001, xwv30001, app(app(ty_Either, chf), chg)) -> new_esEs19(xwv40001, xwv30001, chf, chg) 26.47/9.55 new_ltEs14(EQ, GT) -> True 26.47/9.55 new_ltEs6(xwv54, xwv55) -> new_fsEs(new_compare15(xwv54, xwv55)) 26.47/9.55 new_esEs13(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.47/9.55 new_compare0(xwv400, xwv300, app(app(ty_Either, baf), bag)) -> new_compare7(xwv400, xwv300, baf, bag) 26.47/9.55 new_primEqInt(Neg(Succ(xwv400000)), Neg(Succ(xwv300000))) -> new_primEqNat0(xwv400000, xwv300000) 26.47/9.55 new_compare15(xwv400, xwv300) -> new_primCmpInt(xwv400, xwv300) 26.47/9.55 new_primCmpInt(Neg(Zero), Pos(Succ(xwv30000))) -> LT 26.47/9.55 new_lt22(xwv65, xwv68, app(app(app(ty_@3, faf), fag), fah)) -> new_lt15(xwv65, xwv68, faf, fag, fah) 26.47/9.55 new_lt23(xwv66, xwv69, app(ty_[], fda)) -> new_lt13(xwv66, xwv69, fda) 26.47/9.55 new_primMulInt(Pos(xwv40000), Pos(xwv30010)) -> Pos(new_primMulNat0(xwv40000, xwv30010)) 26.47/9.55 new_ltEs8(True, False) -> False 26.47/9.55 new_ltEs14(LT, GT) -> True 26.47/9.55 new_ltEs14(GT, GT) -> True 26.47/9.55 new_ltEs22(xwv76, xwv77, ty_Int) -> new_ltEs6(xwv76, xwv77) 26.47/9.55 new_esEs32(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.55 new_esEs11(xwv4000, xwv3000, app(app(ty_Either, bcc), bcd)) -> new_esEs19(xwv4000, xwv3000, bcc, bcd) 26.47/9.55 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.47/9.55 new_esEs28(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.47/9.55 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(app(ty_@3, fgb), fgc), fgd), ffc) -> new_esEs25(xwv40000, xwv30000, fgb, fgc, fgd) 26.47/9.55 new_compare10(xwv141, xwv142, True, cg) -> LT 26.47/9.55 new_ltEs22(xwv76, xwv77, ty_Integer) -> new_ltEs16(xwv76, xwv77) 26.47/9.55 new_primMulNat0(Succ(xwv400000), Zero) -> Zero 26.47/9.55 new_primMulNat0(Zero, Succ(xwv300100)) -> Zero 26.47/9.55 new_ltEs8(False, False) -> True 26.47/9.55 new_esEs8(xwv4001, xwv3001, ty_Float) -> new_esEs22(xwv4001, xwv3001) 26.47/9.55 new_primCompAux00(xwv32, xwv33, EQ, ty_Integer) -> new_compare8(xwv32, xwv33) 26.47/9.55 new_lt6(xwv113, xwv115, app(app(ty_@2, cdd), cde)) -> new_lt9(xwv113, xwv115, cdd, cde) 26.47/9.55 new_esEs6(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.47/9.55 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.55 new_primPlusNat1(Succ(xwv2220), xwv300100) -> Succ(Succ(new_primPlusNat0(xwv2220, xwv300100))) 26.47/9.55 new_lt23(xwv66, xwv69, ty_Float) -> new_lt11(xwv66, xwv69) 26.47/9.55 new_ltEs19(xwv541, xwv551, ty_Float) -> new_ltEs12(xwv541, xwv551) 26.47/9.55 new_compare0(xwv400, xwv300, ty_Bool) -> new_compare9(xwv400, xwv300) 26.47/9.55 new_ltEs22(xwv76, xwv77, app(app(ty_@2, eec), eed)) -> new_ltEs9(xwv76, xwv77, eec, eed) 26.47/9.55 new_primPlusNat0(Succ(xwv33200), Zero) -> Succ(xwv33200) 26.47/9.55 new_primPlusNat0(Zero, Succ(xwv24200)) -> Succ(xwv24200) 26.47/9.55 new_compare9(True, True) -> EQ 26.47/9.55 new_primPlusNat1(Zero, xwv300100) -> Succ(xwv300100) 26.47/9.55 new_lt23(xwv66, xwv69, ty_Int) -> new_lt7(xwv66, xwv69) 26.47/9.55 new_ltEs5(Left(xwv540), Left(xwv550), app(app(app(ty_@3, df), dg), dh), da) -> new_ltEs15(xwv540, xwv550, df, dg, dh) 26.47/9.55 new_esEs7(xwv4002, xwv3002, app(app(ty_Either, bhe), bhf)) -> new_esEs19(xwv4002, xwv3002, bhe, bhf) 26.47/9.55 new_esEs4(xwv4001, xwv3001, app(ty_Maybe, fdh)) -> new_esEs16(xwv4001, xwv3001, fdh) 26.47/9.55 new_ltEs19(xwv541, xwv551, ty_Integer) -> new_ltEs16(xwv541, xwv551) 26.47/9.55 new_esEs8(xwv4001, xwv3001, ty_Integer) -> new_esEs26(xwv4001, xwv3001) 26.47/9.55 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.47/9.55 new_esEs7(xwv4002, xwv3002, app(app(ty_@2, bhg), bhh)) -> new_esEs21(xwv4002, xwv3002, bhg, bhh) 26.47/9.55 new_lt6(xwv113, xwv115, ty_Ordering) -> new_lt14(xwv113, xwv115) 26.47/9.55 new_esEs38(xwv66, xwv69, ty_Char) -> new_esEs20(xwv66, xwv69) 26.47/9.55 new_esEs4(xwv4001, xwv3001, ty_Char) -> new_esEs20(xwv4001, xwv3001) 26.47/9.55 new_esEs9(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.47/9.55 new_lt6(xwv113, xwv115, app(ty_Ratio, cee)) -> new_lt18(xwv113, xwv115, cee) 26.47/9.55 new_esEs16(Just(xwv40000), Just(xwv30000), ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.47/9.55 new_esEs34(xwv541, xwv551, ty_Integer) -> new_esEs26(xwv541, xwv551) 26.47/9.55 new_ltEs4(xwv54, xwv55) -> new_fsEs(new_compare6(xwv54, xwv55)) 26.47/9.55 new_esEs33(xwv540, xwv550, app(app(ty_Either, ded), dee)) -> new_esEs19(xwv540, xwv550, ded, dee) 26.47/9.55 new_esEs31(xwv40001, xwv30001, ty_Double) -> new_esEs17(xwv40001, xwv30001) 26.47/9.55 new_esEs30(xwv40002, xwv30002, app(ty_Maybe, cgc)) -> new_esEs16(xwv40002, xwv30002, cgc) 26.47/9.55 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Float) -> new_ltEs12(xwv540, xwv550) 26.47/9.55 new_lt21(xwv540, xwv550, app(ty_Ratio, eag)) -> new_lt18(xwv540, xwv550, eag) 26.47/9.55 new_ltEs20(xwv542, xwv552, app(app(app(ty_@3, dff), dfg), dfh)) -> new_ltEs15(xwv542, xwv552, dff, dfg, dfh) 26.47/9.55 new_compare212(xwv113, xwv114, xwv115, xwv116, False, cdb, cdc) -> new_compare110(xwv113, xwv114, xwv115, xwv116, new_lt6(xwv113, xwv115, cdb), new_asAs(new_esEs29(xwv113, xwv115, cdb), new_ltEs18(xwv114, xwv116, cdc)), cdb, cdc) 26.47/9.55 new_compare0(xwv400, xwv300, ty_Char) -> new_compare16(xwv400, xwv300) 26.47/9.55 new_esEs27(xwv40001, xwv30001, ty_Ordering) -> new_esEs15(xwv40001, xwv30001) 26.47/9.55 new_esEs32(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.47/9.55 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Integer) -> new_ltEs16(xwv540, xwv550) 26.47/9.55 new_lt20(xwv541, xwv551, app(ty_Maybe, dgf)) -> new_lt10(xwv541, xwv551, dgf) 26.47/9.55 new_esEs38(xwv66, xwv69, ty_Int) -> new_esEs18(xwv66, xwv69) 26.47/9.55 new_esEs13(xwv40000, xwv30000, app(ty_Ratio, cb)) -> new_esEs23(xwv40000, xwv30000, cb) 26.47/9.55 new_lt23(xwv66, xwv69, ty_@0) -> new_lt12(xwv66, xwv69) 26.47/9.55 new_esEs10(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.47/9.55 new_esEs8(xwv4001, xwv3001, app(app(ty_Either, cag), cah)) -> new_esEs19(xwv4001, xwv3001, cag, cah) 26.47/9.55 new_lt19(xwv540, xwv550, app(app(ty_@2, dde), ddf)) -> new_lt9(xwv540, xwv550, dde, ddf) 26.47/9.55 new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_@2, beb), bec)) -> new_compare17(xwv32, xwv33, beb, bec) 26.47/9.55 new_esEs38(xwv66, xwv69, ty_Bool) -> new_esEs14(xwv66, xwv69) 26.47/9.55 new_esEs13(xwv40000, xwv30000, app(ty_[], cf)) -> new_esEs12(xwv40000, xwv30000, cf) 26.47/9.55 new_ltEs21(xwv83, xwv84, ty_Float) -> new_ltEs12(xwv83, xwv84) 26.47/9.55 new_esEs32(xwv40000, xwv30000, app(app(app(ty_@3, dbe), dbf), dbg)) -> new_esEs25(xwv40000, xwv30000, dbe, dbf, dbg) 26.47/9.55 new_ltEs8(False, True) -> True 26.47/9.55 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(app(ty_@3, ede), edf), edg)) -> new_esEs25(xwv40000, xwv30000, ede, edf, edg) 26.47/9.55 new_lt22(xwv65, xwv68, ty_Ordering) -> new_lt14(xwv65, xwv68) 26.47/9.55 new_compare24(xwv76, xwv77, False, eea, eeb) -> new_compare14(xwv76, xwv77, new_ltEs22(xwv76, xwv77, eea), eea, eeb) 26.47/9.55 new_esEs9(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.47/9.55 new_esEs27(xwv40001, xwv30001, ty_Bool) -> new_esEs14(xwv40001, xwv30001) 26.47/9.55 new_compare26([], :(xwv3000, xwv3001), efg) -> LT 26.47/9.55 new_esEs11(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.47/9.55 new_lt19(xwv540, xwv550, ty_Ordering) -> new_lt14(xwv540, xwv550) 26.47/9.55 new_lt22(xwv65, xwv68, ty_Bool) -> new_lt4(xwv65, xwv68) 26.47/9.55 new_esEs11(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.47/9.55 new_ltEs23(xwv67, xwv70, ty_Double) -> new_ltEs11(xwv67, xwv70) 26.47/9.55 new_compare7(Left(xwv4000), Right(xwv3000), baf, bag) -> LT 26.47/9.55 new_compare13(Double(xwv4000, Pos(xwv40010)), Double(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.47/9.55 new_compare13(Double(xwv4000, Neg(xwv40010)), Double(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.47/9.55 new_esEs36(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.47/9.55 new_esEs10(xwv4000, xwv3000, app(ty_Ratio, bbe)) -> new_esEs23(xwv4000, xwv3000, bbe) 26.47/9.55 new_esEs15(LT, LT) -> True 26.47/9.55 new_esEs32(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.47/9.55 new_esEs11(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.47/9.55 new_ltEs10(Just(xwv540), Just(xwv550), app(app(ty_@2, egd), ege)) -> new_ltEs9(xwv540, xwv550, egd, ege) 26.47/9.55 new_lt6(xwv113, xwv115, app(app(app(ty_@3, cdh), cea), ceb)) -> new_lt15(xwv113, xwv115, cdh, cea, ceb) 26.47/9.55 new_esEs4(xwv4001, xwv3001, ty_Integer) -> new_esEs26(xwv4001, xwv3001) 26.47/9.55 new_lt20(xwv541, xwv551, ty_Float) -> new_lt11(xwv541, xwv551) 26.47/9.55 new_esEs7(xwv4002, xwv3002, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs25(xwv4002, xwv3002, cab, cac, cad) 26.47/9.55 new_esEs33(xwv540, xwv550, ty_Bool) -> new_esEs14(xwv540, xwv550) 26.47/9.55 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(ty_[], eh)) -> new_ltEs13(xwv540, xwv550, eh) 26.47/9.55 new_esEs34(xwv541, xwv551, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs25(xwv541, xwv551, dgh, dha, dhb) 26.47/9.55 new_lt22(xwv65, xwv68, app(ty_[], fae)) -> new_lt13(xwv65, xwv68, fae) 26.47/9.55 new_lt19(xwv540, xwv550, ty_Integer) -> new_lt17(xwv540, xwv550) 26.47/9.55 new_esEs31(xwv40001, xwv30001, app(ty_Ratio, dab)) -> new_esEs23(xwv40001, xwv30001, dab) 26.47/9.55 new_lt23(xwv66, xwv69, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_lt15(xwv66, xwv69, fdb, fdc, fdd) 26.47/9.55 new_esEs32(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.47/9.55 new_lt22(xwv65, xwv68, ty_@0) -> new_lt12(xwv65, xwv68) 26.47/9.55 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.55 new_compare111(xwv170, xwv171, xwv172, xwv173, True, bfd, bfe) -> LT 26.47/9.55 new_esEs5(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.47/9.55 new_lt9(xwv113, xwv115, cdd, cde) -> new_esEs15(new_compare17(xwv113, xwv115, cdd, cde), LT) 26.47/9.55 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_Ratio, ec), da) -> new_ltEs17(xwv540, xwv550, ec) 26.47/9.55 new_esEs35(xwv540, xwv550, app(ty_Ratio, eag)) -> new_esEs23(xwv540, xwv550, eag) 26.47/9.55 new_ltEs5(Right(xwv540), Left(xwv550), ed, da) -> False 26.47/9.55 new_esEs33(xwv540, xwv550, app(ty_Maybe, ddg)) -> new_esEs16(xwv540, xwv550, ddg) 26.47/9.55 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.47/9.55 new_esEs11(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.47/9.55 new_esEs9(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.47/9.55 new_esEs7(xwv4002, xwv3002, ty_@0) -> new_esEs24(xwv4002, xwv3002) 26.47/9.55 new_lt21(xwv540, xwv550, ty_Char) -> new_lt8(xwv540, xwv550) 26.47/9.55 new_esEs34(xwv541, xwv551, ty_@0) -> new_esEs24(xwv541, xwv551) 26.47/9.55 new_compare24(xwv76, xwv77, True, eea, eeb) -> EQ 26.47/9.55 new_esEs39(xwv65, xwv68, app(app(app(ty_@3, faf), fag), fah)) -> new_esEs25(xwv65, xwv68, faf, fag, fah) 26.47/9.55 new_ltEs8(True, True) -> True 26.47/9.55 new_primCmpInt(Pos(Succ(xwv40000)), Pos(xwv3000)) -> new_primCmpNat0(Succ(xwv40000), xwv3000) 26.47/9.55 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_Maybe, dd), da) -> new_ltEs10(xwv540, xwv550, dd) 26.47/9.55 new_esEs39(xwv65, xwv68, app(app(ty_Either, fba), fbb)) -> new_esEs19(xwv65, xwv68, fba, fbb) 26.47/9.55 new_lt7(xwv113, xwv115) -> new_esEs15(new_compare15(xwv113, xwv115), LT) 26.47/9.55 new_lt15(xwv113, xwv115, cdh, cea, ceb) -> new_esEs15(new_compare28(xwv113, xwv115, cdh, cea, ceb), LT) 26.47/9.55 new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_Either, bfa), bfb)) -> new_compare7(xwv32, xwv33, bfa, bfb) 26.47/9.55 new_lt19(xwv540, xwv550, ty_Char) -> new_lt8(xwv540, xwv550) 26.47/9.55 new_esEs35(xwv540, xwv550, ty_Integer) -> new_esEs26(xwv540, xwv550) 26.47/9.55 new_esEs13(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.47/9.55 new_esEs34(xwv541, xwv551, app(app(ty_Either, dhc), dhd)) -> new_esEs19(xwv541, xwv551, dhc, dhd) 26.47/9.55 new_esEs13(xwv40000, xwv30000, app(app(app(ty_@3, cc), cd), ce)) -> new_esEs25(xwv40000, xwv30000, cc, cd, ce) 26.47/9.55 new_esEs9(xwv4000, xwv3000, app(app(ty_@2, ccc), ccd)) -> new_esEs21(xwv4000, xwv3000, ccc, ccd) 26.47/9.55 new_ltEs18(xwv114, xwv116, app(ty_[], cfa)) -> new_ltEs13(xwv114, xwv116, cfa) 26.47/9.55 new_ltEs24(xwv54, xwv55, app(ty_[], ehf)) -> new_ltEs13(xwv54, xwv55, ehf) 26.47/9.55 new_ltEs11(xwv54, xwv55) -> new_fsEs(new_compare13(xwv54, xwv55)) 26.47/9.55 new_compare17(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), efe, eff) -> new_compare212(xwv4000, xwv4001, xwv3000, xwv3001, new_asAs(new_esEs5(xwv4000, xwv3000, efe), new_esEs4(xwv4001, xwv3001, eff)), efe, eff) 26.47/9.55 new_esEs31(xwv40001, xwv30001, ty_Char) -> new_esEs20(xwv40001, xwv30001) 26.47/9.55 new_lt20(xwv541, xwv551, ty_Ordering) -> new_lt14(xwv541, xwv551) 26.47/9.55 new_compare26(:(xwv4000, xwv4001), [], efg) -> GT 26.47/9.55 new_esEs27(xwv40001, xwv30001, app(app(ty_@2, ge), gf)) -> new_esEs21(xwv40001, xwv30001, ge, gf) 26.47/9.55 new_esEs38(xwv66, xwv69, app(ty_Maybe, fch)) -> new_esEs16(xwv66, xwv69, fch) 26.47/9.55 new_lt19(xwv540, xwv550, ty_Int) -> new_lt7(xwv540, xwv550) 26.47/9.55 new_lt20(xwv541, xwv551, ty_Char) -> new_lt8(xwv541, xwv551) 26.47/9.55 new_esEs35(xwv540, xwv550, app(app(app(ty_@3, eab), eac), ead)) -> new_esEs25(xwv540, xwv550, eab, eac, ead) 26.47/9.55 new_esEs35(xwv540, xwv550, ty_@0) -> new_esEs24(xwv540, xwv550) 26.47/9.55 new_compare0(xwv400, xwv300, app(app(ty_@2, efe), eff)) -> new_compare17(xwv400, xwv300, efe, eff) 26.47/9.55 new_ltEs24(xwv54, xwv55, app(app(ty_@2, dca), dcb)) -> new_ltEs9(xwv54, xwv55, dca, dcb) 26.47/9.55 new_lt22(xwv65, xwv68, app(app(ty_Either, fba), fbb)) -> new_lt16(xwv65, xwv68, fba, fbb) 26.47/9.55 new_compare26([], [], efg) -> EQ 26.47/9.55 new_lt8(xwv113, xwv115) -> new_esEs15(new_compare16(xwv113, xwv115), LT) 26.47/9.55 new_lt6(xwv113, xwv115, ty_Bool) -> new_lt4(xwv113, xwv115) 26.47/9.55 new_lt20(xwv541, xwv551, ty_Int) -> new_lt7(xwv541, xwv551) 26.47/9.55 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Double) -> new_ltEs11(xwv540, xwv550) 26.47/9.55 new_esEs14(False, False) -> True 26.47/9.55 new_esEs32(xwv40000, xwv30000, app(ty_Maybe, dag)) -> new_esEs16(xwv40000, xwv30000, dag) 26.47/9.55 new_esEs35(xwv540, xwv550, app(app(ty_Either, eae), eaf)) -> new_esEs19(xwv540, xwv550, eae, eaf) 26.47/9.55 new_esEs36(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.47/9.55 new_compare0(xwv400, xwv300, app(ty_[], efg)) -> new_compare26(xwv400, xwv300, efg) 26.47/9.55 new_lt21(xwv540, xwv550, ty_Bool) -> new_lt4(xwv540, xwv550) 26.47/9.55 new_esEs35(xwv540, xwv550, ty_Int) -> new_esEs18(xwv540, xwv550) 26.47/9.55 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_Maybe, ecg)) -> new_esEs16(xwv40000, xwv30000, ecg) 26.47/9.55 new_lt21(xwv540, xwv550, ty_Float) -> new_lt11(xwv540, xwv550) 26.47/9.55 new_esEs34(xwv541, xwv551, ty_Bool) -> new_esEs14(xwv541, xwv551) 26.47/9.55 new_esEs31(xwv40001, xwv30001, ty_Ordering) -> new_esEs15(xwv40001, xwv30001) 26.47/9.55 new_primCompAux00(xwv32, xwv33, EQ, ty_Char) -> new_compare16(xwv32, xwv33) 26.47/9.55 new_lt22(xwv65, xwv68, ty_Char) -> new_lt8(xwv65, xwv68) 26.47/9.55 new_esEs11(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.47/9.55 new_esEs13(xwv40000, xwv30000, app(ty_Maybe, be)) -> new_esEs16(xwv40000, xwv30000, be) 26.47/9.55 new_esEs15(EQ, EQ) -> True 26.47/9.55 new_esEs35(xwv540, xwv550, ty_Char) -> new_esEs20(xwv540, xwv550) 26.47/9.55 new_esEs10(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.47/9.55 new_fsEs(xwv211) -> new_not(new_esEs15(xwv211, GT)) 26.47/9.55 new_ltEs20(xwv542, xwv552, app(ty_[], dfe)) -> new_ltEs13(xwv542, xwv552, dfe) 26.47/9.55 new_esEs38(xwv66, xwv69, app(app(ty_Either, fde), fdf)) -> new_esEs19(xwv66, xwv69, fde, fdf) 26.47/9.55 new_esEs11(xwv4000, xwv3000, app(ty_Maybe, bcb)) -> new_esEs16(xwv4000, xwv3000, bcb) 26.47/9.55 new_ltEs24(xwv54, xwv55, ty_Double) -> new_ltEs11(xwv54, xwv55) 26.47/9.55 new_lt12(xwv113, xwv115) -> new_esEs15(new_compare6(xwv113, xwv115), LT) 26.47/9.55 new_esEs10(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.47/9.55 new_lt16(xwv113, xwv115, cec, ced) -> new_esEs15(new_compare7(xwv113, xwv115, cec, ced), LT) 26.47/9.55 new_esEs6(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.47/9.55 new_esEs34(xwv541, xwv551, app(ty_Maybe, dgf)) -> new_esEs16(xwv541, xwv551, dgf) 26.47/9.55 new_primPlusNat0(Succ(xwv33200), Succ(xwv24200)) -> Succ(Succ(new_primPlusNat0(xwv33200, xwv24200))) 26.47/9.55 new_ltEs5(Left(xwv540), Left(xwv550), ty_Ordering, da) -> new_ltEs14(xwv540, xwv550) 26.47/9.55 new_esEs7(xwv4002, xwv3002, app(ty_[], cae)) -> new_esEs12(xwv4002, xwv3002, cae) 26.47/9.55 new_esEs33(xwv540, xwv550, ty_Int) -> new_esEs18(xwv540, xwv550) 26.47/9.55 new_ltEs10(Just(xwv540), Nothing, egc) -> False 26.47/9.55 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_Ratio, fga), ffc) -> new_esEs23(xwv40000, xwv30000, fga) 26.47/9.55 new_ltEs10(Nothing, Nothing, egc) -> True 26.47/9.55 new_esEs4(xwv4001, xwv3001, app(app(ty_Either, fea), feb)) -> new_esEs19(xwv4001, xwv3001, fea, feb) 26.47/9.55 new_esEs4(xwv4001, xwv3001, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs25(xwv4001, xwv3001, fef, feg, feh) 26.47/9.55 new_ltEs5(Left(xwv540), Left(xwv550), app(app(ty_@2, db), dc), da) -> new_ltEs9(xwv540, xwv550, db, dc) 26.47/9.55 new_esEs4(xwv4001, xwv3001, ty_@0) -> new_esEs24(xwv4001, xwv3001) 26.47/9.55 new_esEs13(xwv40000, xwv30000, app(app(ty_Either, bf), bg)) -> new_esEs19(xwv40000, xwv30000, bf, bg) 26.47/9.55 new_esEs28(xwv40000, xwv30000, app(ty_Ratio, baa)) -> new_esEs23(xwv40000, xwv30000, baa) 26.47/9.55 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(app(ty_@2, fha), fhb)) -> new_esEs21(xwv40000, xwv30000, fha, fhb) 26.47/9.55 new_lt6(xwv113, xwv115, app(app(ty_Either, cec), ced)) -> new_lt16(xwv113, xwv115, cec, ced) 26.47/9.55 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_Ratio, edd)) -> new_esEs23(xwv40000, xwv30000, edd) 26.47/9.55 new_esEs32(xwv40000, xwv30000, app(ty_Ratio, dbd)) -> new_esEs23(xwv40000, xwv30000, dbd) 26.47/9.55 new_esEs19(Left(xwv40000), Left(xwv30000), ty_@0, ffc) -> new_esEs24(xwv40000, xwv30000) 26.47/9.55 new_compare18(Nothing, Nothing, bff) -> EQ 26.47/9.55 new_compare16(Char(xwv4000), Char(xwv3000)) -> new_primCmpNat0(xwv4000, xwv3000) 26.47/9.55 new_ltEs22(xwv76, xwv77, ty_Double) -> new_ltEs11(xwv76, xwv77) 26.47/9.55 new_lt21(xwv540, xwv550, app(app(ty_Either, eae), eaf)) -> new_lt16(xwv540, xwv550, eae, eaf) 26.47/9.55 new_lt19(xwv540, xwv550, ty_Bool) -> new_lt4(xwv540, xwv550) 26.47/9.55 new_ltEs5(Left(xwv540), Left(xwv550), ty_Float, da) -> new_ltEs12(xwv540, xwv550) 26.47/9.55 new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, bdd, bde, bdf) -> LT 26.47/9.55 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.47/9.55 new_esEs27(xwv40001, xwv30001, ty_Double) -> new_esEs17(xwv40001, xwv30001) 26.47/9.55 new_esEs5(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.47/9.55 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.47/9.55 new_lt4(xwv113, xwv115) -> new_esEs15(new_compare9(xwv113, xwv115), LT) 26.47/9.55 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(app(ty_@2, ee), ef)) -> new_ltEs9(xwv540, xwv550, ee, ef) 26.47/9.55 new_esEs39(xwv65, xwv68, ty_Float) -> new_esEs22(xwv65, xwv68) 26.47/9.55 new_esEs31(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.47/9.55 new_esEs5(xwv4000, xwv3000, app(ty_[], bd)) -> new_esEs12(xwv4000, xwv3000, bd) 26.47/9.55 new_lt6(xwv113, xwv115, ty_Integer) -> new_lt17(xwv113, xwv115) 26.47/9.55 new_lt20(xwv541, xwv551, app(app(ty_Either, dhc), dhd)) -> new_lt16(xwv541, xwv551, dhc, dhd) 26.47/9.55 new_ltEs5(Left(xwv540), Left(xwv550), ty_Integer, da) -> new_ltEs16(xwv540, xwv550) 26.47/9.55 new_esEs38(xwv66, xwv69, ty_Float) -> new_esEs22(xwv66, xwv69) 26.47/9.55 new_primCmpNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primCmpNat0(xwv40000, xwv30000) 26.47/9.55 new_compare13(Double(xwv4000, Neg(xwv40010)), Double(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.47/9.55 new_ltEs23(xwv67, xwv70, app(ty_[], fbg)) -> new_ltEs13(xwv67, xwv70, fbg) 26.47/9.55 new_compare0(xwv400, xwv300, ty_Int) -> new_compare15(xwv400, xwv300) 26.47/9.55 new_esEs38(xwv66, xwv69, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_esEs25(xwv66, xwv69, fdb, fdc, fdd) 26.47/9.55 new_esEs39(xwv65, xwv68, ty_@0) -> new_esEs24(xwv65, xwv68) 26.47/9.55 new_esEs29(xwv113, xwv115, app(ty_Ratio, cee)) -> new_esEs23(xwv113, xwv115, cee) 26.47/9.55 new_lt19(xwv540, xwv550, ty_Float) -> new_lt11(xwv540, xwv550) 26.47/9.55 new_lt21(xwv540, xwv550, ty_Integer) -> new_lt17(xwv540, xwv550) 26.47/9.55 new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, False, bdd, bde, bdf) -> GT 26.47/9.55 new_esEs30(xwv40002, xwv30002, app(ty_Ratio, cgh)) -> new_esEs23(xwv40002, xwv30002, cgh) 26.47/9.55 new_compare14(xwv150, xwv151, False, bdg, bdh) -> GT 26.47/9.55 new_esEs32(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.47/9.55 new_lt20(xwv541, xwv551, ty_Integer) -> new_lt17(xwv541, xwv551) 26.47/9.55 new_ltEs22(xwv76, xwv77, app(ty_[], eef)) -> new_ltEs13(xwv76, xwv77, eef) 26.47/9.55 new_lt17(xwv113, xwv115) -> new_esEs15(new_compare8(xwv113, xwv115), LT) 26.47/9.55 new_ltEs14(LT, LT) -> True 26.47/9.55 new_esEs33(xwv540, xwv550, ty_Char) -> new_esEs20(xwv540, xwv550) 26.47/9.55 new_esEs19(Left(xwv40000), Right(xwv30000), ffb, ffc) -> False 26.47/9.55 new_esEs19(Right(xwv40000), Left(xwv30000), ffb, ffc) -> False 26.47/9.55 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.55 new_esEs4(xwv4001, xwv3001, ty_Float) -> new_esEs22(xwv4001, xwv3001) 26.47/9.55 new_esEs32(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.55 new_esEs35(xwv540, xwv550, app(ty_Maybe, dhh)) -> new_esEs16(xwv540, xwv550, dhh) 26.47/9.55 new_esEs6(xwv4000, xwv3000, app(ty_[], bgh)) -> new_esEs12(xwv4000, xwv3000, bgh) 26.47/9.55 new_esEs38(xwv66, xwv69, ty_@0) -> new_esEs24(xwv66, xwv69) 26.47/9.55 new_esEs39(xwv65, xwv68, ty_Integer) -> new_esEs26(xwv65, xwv68) 26.47/9.55 new_esEs33(xwv540, xwv550, ty_Ordering) -> new_esEs15(xwv540, xwv550) 26.47/9.55 new_compare9(False, True) -> LT 26.47/9.55 new_lt19(xwv540, xwv550, app(app(ty_Either, ded), dee)) -> new_lt16(xwv540, xwv550, ded, dee) 26.47/9.55 new_esEs10(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.47/9.55 new_esEs29(xwv113, xwv115, app(ty_Maybe, cdf)) -> new_esEs16(xwv113, xwv115, cdf) 26.47/9.55 new_primCmpInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> LT 26.47/9.55 new_esEs29(xwv113, xwv115, app(ty_[], cdg)) -> new_esEs12(xwv113, xwv115, cdg) 26.47/9.55 new_primCompAux00(xwv32, xwv33, EQ, ty_Double) -> new_compare13(xwv32, xwv33) 26.47/9.55 new_lt22(xwv65, xwv68, ty_Double) -> new_lt5(xwv65, xwv68) 26.47/9.55 new_compare27(GT, EQ) -> GT 26.47/9.55 new_ltEs18(xwv114, xwv116, ty_Ordering) -> new_ltEs14(xwv114, xwv116) 26.47/9.55 new_esEs7(xwv4002, xwv3002, ty_Float) -> new_esEs22(xwv4002, xwv3002) 26.47/9.55 new_compare9(False, False) -> EQ 26.47/9.55 new_esEs28(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.47/9.55 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(app(app(ty_@3, fhd), fhe), fhf)) -> new_esEs25(xwv40000, xwv30000, fhd, fhe, fhf) 26.47/9.55 new_lt22(xwv65, xwv68, ty_Float) -> new_lt11(xwv65, xwv68) 26.47/9.55 new_esEs7(xwv4002, xwv3002, ty_Double) -> new_esEs17(xwv4002, xwv3002) 26.47/9.55 new_ltEs18(xwv114, xwv116, ty_Float) -> new_ltEs12(xwv114, xwv116) 26.47/9.55 new_esEs8(xwv4001, xwv3001, app(ty_[], cbg)) -> new_esEs12(xwv4001, xwv3001, cbg) 26.47/9.55 new_lt23(xwv66, xwv69, ty_Char) -> new_lt8(xwv66, xwv69) 26.47/9.55 new_esEs12(:(xwv40000, xwv40001), [], bd) -> False 26.47/9.55 new_esEs12([], :(xwv30000, xwv30001), bd) -> False 26.47/9.55 new_compare14(xwv150, xwv151, True, bdg, bdh) -> LT 26.47/9.55 new_lt20(xwv541, xwv551, app(ty_Ratio, dhe)) -> new_lt18(xwv541, xwv551, dhe) 26.47/9.55 new_primCmpInt(Pos(Zero), Neg(Succ(xwv30000))) -> GT 26.47/9.55 new_esEs17(Double(xwv40000, xwv40001), Double(xwv30000, xwv30001)) -> new_esEs18(new_sr(xwv40000, xwv30001), new_sr(xwv40001, xwv30000)) 26.47/9.55 new_compare210(xwv54, xwv55, False, fhh) -> new_compare10(xwv54, xwv55, new_ltEs24(xwv54, xwv55, fhh), fhh) 26.47/9.55 new_primCmpInt(Neg(Succ(xwv40000)), Neg(xwv3000)) -> new_primCmpNat0(xwv3000, Succ(xwv40000)) 26.47/9.55 new_esEs5(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.47/9.55 new_esEs34(xwv541, xwv551, ty_Char) -> new_esEs20(xwv541, xwv551) 26.47/9.55 new_lt19(xwv540, xwv550, app(app(app(ty_@3, dea), deb), dec)) -> new_lt15(xwv540, xwv550, dea, deb, dec) 26.47/9.55 new_ltEs5(Left(xwv540), Left(xwv550), ty_Double, da) -> new_ltEs11(xwv540, xwv550) 26.47/9.55 new_esEs11(xwv4000, xwv3000, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs25(xwv4000, xwv3000, bch, bda, bdb) 26.47/9.55 new_compare0(xwv400, xwv300, ty_Ordering) -> new_compare27(xwv400, xwv300) 26.47/9.55 new_esEs7(xwv4002, xwv3002, ty_Ordering) -> new_esEs15(xwv4002, xwv3002) 26.47/9.55 new_esEs38(xwv66, xwv69, ty_Integer) -> new_esEs26(xwv66, xwv69) 26.47/9.55 new_compare0(xwv400, xwv300, ty_Double) -> new_compare13(xwv400, xwv300) 26.47/9.55 new_esEs39(xwv65, xwv68, app(ty_Maybe, fad)) -> new_esEs16(xwv65, xwv68, fad) 26.47/9.55 new_esEs11(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.47/9.55 new_lt20(xwv541, xwv551, ty_Bool) -> new_lt4(xwv541, xwv551) 26.47/9.55 new_primEqInt(Pos(Succ(xwv400000)), Pos(Zero)) -> False 26.47/9.55 new_primEqInt(Pos(Zero), Pos(Succ(xwv300000))) -> False 26.47/9.55 new_compare110(xwv170, xwv171, xwv172, xwv173, False, xwv175, bfd, bfe) -> new_compare111(xwv170, xwv171, xwv172, xwv173, xwv175, bfd, bfe) 26.47/9.55 new_esEs34(xwv541, xwv551, ty_Int) -> new_esEs18(xwv541, xwv551) 26.47/9.55 new_compare0(xwv400, xwv300, app(ty_Maybe, bff)) -> new_compare18(xwv400, xwv300, bff) 26.47/9.55 new_esEs29(xwv113, xwv115, app(app(ty_@2, cdd), cde)) -> new_esEs21(xwv113, xwv115, cdd, cde) 26.47/9.55 new_lt23(xwv66, xwv69, ty_Ordering) -> new_lt14(xwv66, xwv69) 26.47/9.55 new_esEs28(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.47/9.55 new_esEs13(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.47/9.55 new_esEs31(xwv40001, xwv30001, ty_Bool) -> new_esEs14(xwv40001, xwv30001) 26.47/9.55 new_primCompAux00(xwv32, xwv33, EQ, app(ty_Maybe, bed)) -> new_compare18(xwv32, xwv33, bed) 26.47/9.55 new_lt5(xwv113, xwv115) -> new_esEs15(new_compare13(xwv113, xwv115), LT) 26.47/9.55 new_ltEs21(xwv83, xwv84, app(ty_[], ebf)) -> new_ltEs13(xwv83, xwv84, ebf) 26.47/9.55 new_ltEs19(xwv541, xwv551, app(ty_Ratio, ddd)) -> new_ltEs17(xwv541, xwv551, ddd) 26.47/9.55 new_lt22(xwv65, xwv68, ty_Integer) -> new_lt17(xwv65, xwv68) 26.47/9.55 new_ltEs20(xwv542, xwv552, ty_Ordering) -> new_ltEs14(xwv542, xwv552) 26.47/9.55 new_ltEs18(xwv114, xwv116, ty_Integer) -> new_ltEs16(xwv114, xwv116) 26.47/9.55 new_primCmpNat0(Zero, Zero) -> EQ 26.47/9.55 new_lt19(xwv540, xwv550, app(ty_[], ddh)) -> new_lt13(xwv540, xwv550, ddh) 26.47/9.55 new_compare27(EQ, LT) -> GT 26.47/9.55 new_lt6(xwv113, xwv115, ty_Int) -> new_lt7(xwv113, xwv115) 26.47/9.55 new_lt23(xwv66, xwv69, app(app(ty_@2, fcf), fcg)) -> new_lt9(xwv66, xwv69, fcf, fcg) 26.47/9.55 new_esEs13(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.47/9.55 new_esEs30(xwv40002, xwv30002, ty_Float) -> new_esEs22(xwv40002, xwv30002) 26.47/9.55 new_esEs16(Nothing, Just(xwv30000), ecf) -> False 26.47/9.55 new_esEs16(Just(xwv40000), Nothing, ecf) -> False 26.47/9.55 new_esEs31(xwv40001, xwv30001, app(ty_Maybe, che)) -> new_esEs16(xwv40001, xwv30001, che) 26.47/9.55 new_esEs34(xwv541, xwv551, app(app(ty_@2, dgd), dge)) -> new_esEs21(xwv541, xwv551, dgd, dge) 26.47/9.55 new_esEs30(xwv40002, xwv30002, ty_Double) -> new_esEs17(xwv40002, xwv30002) 26.47/9.55 new_ltEs5(Left(xwv540), Left(xwv550), ty_Bool, da) -> new_ltEs8(xwv540, xwv550) 26.47/9.55 new_ltEs10(Just(xwv540), Just(xwv550), ty_@0) -> new_ltEs4(xwv540, xwv550) 26.47/9.55 new_esEs15(LT, EQ) -> False 26.47/9.55 new_esEs15(EQ, LT) -> False 26.47/9.55 new_compare13(Double(xwv4000, Pos(xwv40010)), Double(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.47/9.55 new_esEs35(xwv540, xwv550, ty_Ordering) -> new_esEs15(xwv540, xwv550) 26.47/9.55 new_ltEs20(xwv542, xwv552, ty_Double) -> new_ltEs11(xwv542, xwv552) 26.47/9.55 new_esEs7(xwv4002, xwv3002, ty_Integer) -> new_esEs26(xwv4002, xwv3002) 26.47/9.55 new_ltEs19(xwv541, xwv551, ty_Int) -> new_ltEs6(xwv541, xwv551) 26.47/9.55 new_lt14(xwv113, xwv115) -> new_esEs15(new_compare27(xwv113, xwv115), LT) 26.47/9.55 new_esEs6(xwv4000, xwv3000, app(app(ty_Either, bfh), bga)) -> new_esEs19(xwv4000, xwv3000, bfh, bga) 26.47/9.55 new_ltEs23(xwv67, xwv70, app(app(ty_@2, fbd), fbe)) -> new_ltEs9(xwv67, xwv70, fbd, fbe) 26.47/9.55 new_ltEs19(xwv541, xwv551, ty_@0) -> new_ltEs4(xwv541, xwv551) 26.47/9.55 new_esEs13(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.47/9.55 new_ltEs23(xwv67, xwv70, ty_Integer) -> new_ltEs16(xwv67, xwv70) 26.47/9.55 new_primCompAux00(xwv32, xwv33, EQ, ty_Int) -> new_compare15(xwv32, xwv33) 26.47/9.55 new_primCompAux00(xwv32, xwv33, EQ, app(ty_Ratio, bfc)) -> new_compare29(xwv32, xwv33, bfc) 26.47/9.55 new_ltEs21(xwv83, xwv84, ty_Int) -> new_ltEs6(xwv83, xwv84) 26.47/9.55 new_ltEs10(Just(xwv540), Just(xwv550), ty_Int) -> new_ltEs6(xwv540, xwv550) 26.47/9.55 new_lt19(xwv540, xwv550, ty_@0) -> new_lt12(xwv540, xwv550) 26.47/9.55 new_esEs6(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.47/9.55 new_ltEs24(xwv54, xwv55, ty_@0) -> new_ltEs4(xwv54, xwv55) 26.47/9.55 new_lt6(xwv113, xwv115, ty_Float) -> new_lt11(xwv113, xwv115) 26.47/9.55 new_ltEs14(EQ, LT) -> False 26.47/9.55 new_esEs28(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.47/9.55 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_[], egg)) -> new_ltEs13(xwv540, xwv550, egg) 26.47/9.55 new_esEs39(xwv65, xwv68, app(ty_[], fae)) -> new_esEs12(xwv65, xwv68, fae) 26.47/9.55 new_esEs8(xwv4001, xwv3001, app(ty_Maybe, caf)) -> new_esEs16(xwv4001, xwv3001, caf) 26.47/9.55 new_esEs27(xwv40001, xwv30001, app(ty_Ratio, gg)) -> new_esEs23(xwv40001, xwv30001, gg) 26.47/9.55 new_esEs13(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.55 new_esEs30(xwv40002, xwv30002, ty_Ordering) -> new_esEs15(xwv40002, xwv30002) 26.47/9.55 new_esEs16(Nothing, Nothing, ecf) -> True 26.47/9.55 new_esEs39(xwv65, xwv68, app(app(ty_@2, fab), fac)) -> new_esEs21(xwv65, xwv68, fab, fac) 26.47/9.55 new_lt21(xwv540, xwv550, app(app(app(ty_@3, eab), eac), ead)) -> new_lt15(xwv540, xwv550, eab, eac, ead) 26.47/9.55 new_ltEs20(xwv542, xwv552, ty_Bool) -> new_ltEs8(xwv542, xwv552) 26.47/9.55 new_esEs29(xwv113, xwv115, ty_Int) -> new_esEs18(xwv113, xwv115) 26.47/9.55 new_ltEs5(Left(xwv540), Left(xwv550), ty_Char, da) -> new_ltEs7(xwv540, xwv550) 26.47/9.55 new_esEs29(xwv113, xwv115, ty_Bool) -> new_esEs14(xwv113, xwv115) 26.47/9.55 new_esEs5(xwv4000, xwv3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs25(xwv4000, xwv3000, cfh, cga, cgb) 26.47/9.55 new_ltEs19(xwv541, xwv551, app(ty_[], dcf)) -> new_ltEs13(xwv541, xwv551, dcf) 26.47/9.55 new_primCmpNat0(Succ(xwv40000), Zero) -> GT 26.47/9.55 new_pePe(False, xwv216) -> xwv216 26.47/9.55 new_esEs33(xwv540, xwv550, ty_@0) -> new_esEs24(xwv540, xwv550) 26.47/9.55 new_lt21(xwv540, xwv550, app(ty_[], eaa)) -> new_lt13(xwv540, xwv550, eaa) 26.47/9.55 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_Maybe, egf)) -> new_ltEs10(xwv540, xwv550, egf) 26.47/9.55 new_esEs10(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.47/9.55 new_esEs4(xwv4001, xwv3001, ty_Ordering) -> new_esEs15(xwv4001, xwv3001) 26.47/9.55 new_compare19(Float(xwv4000, Pos(xwv40010)), Float(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.47/9.55 new_ltEs17(xwv54, xwv55, eah) -> new_fsEs(new_compare29(xwv54, xwv55, eah)) 26.47/9.55 new_compare27(LT, LT) -> EQ 26.47/9.55 new_esEs33(xwv540, xwv550, app(app(app(ty_@3, dea), deb), dec)) -> new_esEs25(xwv540, xwv550, dea, deb, dec) 26.47/9.55 new_compare25(xwv83, xwv84, True, eba, ebb) -> EQ 26.47/9.55 new_compare210(xwv54, xwv55, True, fhh) -> EQ 26.47/9.55 new_esEs27(xwv40001, xwv30001, ty_Char) -> new_esEs20(xwv40001, xwv30001) 26.47/9.55 new_esEs15(EQ, GT) -> False 26.47/9.55 new_esEs15(GT, EQ) -> False 26.47/9.55 new_compare112(xwv157, xwv158, True, ega, egb) -> LT 26.47/9.55 new_lt11(xwv113, xwv115) -> new_esEs15(new_compare19(xwv113, xwv115), LT) 26.47/9.55 new_compare11(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, xwv192, bdd, bde, bdf) -> new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, bdd, bde, bdf) 26.47/9.55 new_lt23(xwv66, xwv69, ty_Bool) -> new_lt4(xwv66, xwv69) 26.47/9.55 new_esEs23(:%(xwv40000, xwv40001), :%(xwv30000, xwv30001), ece) -> new_asAs(new_esEs37(xwv40000, xwv30000, ece), new_esEs36(xwv40001, xwv30001, ece)) 26.47/9.55 new_esEs27(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.47/9.55 new_esEs34(xwv541, xwv551, app(ty_Ratio, dhe)) -> new_esEs23(xwv541, xwv551, dhe) 26.47/9.55 new_compare110(xwv170, xwv171, xwv172, xwv173, True, xwv175, bfd, bfe) -> new_compare111(xwv170, xwv171, xwv172, xwv173, True, bfd, bfe) 26.47/9.55 new_ltEs24(xwv54, xwv55, ty_Int) -> new_ltEs6(xwv54, xwv55) 26.47/9.55 new_compare10(xwv141, xwv142, False, cg) -> GT 26.47/9.55 new_primEqInt(Pos(Zero), Neg(Succ(xwv300000))) -> False 26.47/9.55 new_primEqInt(Neg(Zero), Pos(Succ(xwv300000))) -> False 26.47/9.55 new_ltEs20(xwv542, xwv552, ty_Integer) -> new_ltEs16(xwv542, xwv552) 26.47/9.55 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.47/9.55 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_Maybe, ffd), ffc) -> new_esEs16(xwv40000, xwv30000, ffd) 26.47/9.55 new_esEs10(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.47/9.55 new_compare9(True, False) -> GT 26.47/9.55 new_ltEs23(xwv67, xwv70, ty_Float) -> new_ltEs12(xwv67, xwv70) 26.47/9.55 new_lt23(xwv66, xwv69, app(app(ty_Either, fde), fdf)) -> new_lt16(xwv66, xwv69, fde, fdf) 26.47/9.55 new_esEs34(xwv541, xwv551, app(ty_[], dgg)) -> new_esEs12(xwv541, xwv551, dgg) 26.47/9.55 new_esEs11(xwv4000, xwv3000, app(ty_[], bdc)) -> new_esEs12(xwv4000, xwv3000, bdc) 26.47/9.55 new_esEs37(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.55 new_esEs33(xwv540, xwv550, ty_Float) -> new_esEs22(xwv540, xwv550) 26.47/9.55 new_esEs9(xwv4000, xwv3000, app(app(ty_Either, cca), ccb)) -> new_esEs19(xwv4000, xwv3000, cca, ccb) 26.47/9.55 new_ltEs14(GT, EQ) -> False 26.47/9.55 new_compare26(:(xwv4000, xwv4001), :(xwv3000, xwv3001), efg) -> new_primCompAux1(xwv4000, xwv3000, xwv4001, xwv3001, efg) 26.47/9.55 new_ltEs18(xwv114, xwv116, ty_Double) -> new_ltEs11(xwv114, xwv116) 26.47/9.55 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Char, ffc) -> new_esEs20(xwv40000, xwv30000) 26.47/9.55 new_esEs29(xwv113, xwv115, ty_Char) -> new_esEs20(xwv113, xwv115) 26.47/9.55 new_esEs31(xwv40001, xwv30001, ty_@0) -> new_esEs24(xwv40001, xwv30001) 26.47/9.55 new_esEs31(xwv40001, xwv30001, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs25(xwv40001, xwv30001, dac, dad, dae) 26.47/9.55 new_lt13(xwv113, xwv115, cdg) -> new_esEs15(new_compare26(xwv113, xwv115, cdg), LT) 26.47/9.55 new_lt21(xwv540, xwv550, ty_@0) -> new_lt12(xwv540, xwv550) 26.47/9.55 new_compare29(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), ty_Integer) -> new_compare8(new_sr0(xwv4000, xwv3001), new_sr0(xwv3000, xwv4001)) 26.47/9.55 new_ltEs21(xwv83, xwv84, app(app(app(ty_@3, ebg), ebh), eca)) -> new_ltEs15(xwv83, xwv84, ebg, ebh, eca) 26.47/9.55 new_esEs33(xwv540, xwv550, ty_Double) -> new_esEs17(xwv540, xwv550) 26.47/9.55 new_lt6(xwv113, xwv115, ty_@0) -> new_lt12(xwv113, xwv115) 26.47/9.55 new_esEs8(xwv4001, xwv3001, app(app(ty_@2, cba), cbb)) -> new_esEs21(xwv4001, xwv3001, cba, cbb) 26.47/9.55 new_esEs35(xwv540, xwv550, ty_Float) -> new_esEs22(xwv540, xwv550) 26.47/9.55 new_esEs39(xwv65, xwv68, ty_Int) -> new_esEs18(xwv65, xwv68) 26.47/9.55 new_lt21(xwv540, xwv550, app(ty_Maybe, dhh)) -> new_lt10(xwv540, xwv550, dhh) 26.47/9.55 new_ltEs13(xwv54, xwv55, ehf) -> new_fsEs(new_compare26(xwv54, xwv55, ehf)) 26.47/9.55 new_esEs15(LT, GT) -> False 26.47/9.55 new_esEs15(GT, LT) -> False 26.47/9.55 new_esEs39(xwv65, xwv68, ty_Char) -> new_esEs20(xwv65, xwv68) 26.47/9.55 new_ltEs18(xwv114, xwv116, ty_Bool) -> new_ltEs8(xwv114, xwv116) 26.47/9.55 new_esEs39(xwv65, xwv68, ty_Bool) -> new_esEs14(xwv65, xwv68) 26.47/9.55 new_compare18(Just(xwv4000), Just(xwv3000), bff) -> new_compare210(xwv4000, xwv3000, new_esEs6(xwv4000, xwv3000, bff), bff) 26.47/9.55 new_lt21(xwv540, xwv550, ty_Ordering) -> new_lt14(xwv540, xwv550) 26.47/9.55 new_primCompAux00(xwv32, xwv33, EQ, ty_Ordering) -> new_compare27(xwv32, xwv33) 26.47/9.55 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_Ratio, ehe)) -> new_ltEs17(xwv540, xwv550, ehe) 26.47/9.55 new_ltEs20(xwv542, xwv552, ty_Float) -> new_ltEs12(xwv542, xwv552) 26.47/9.55 new_compare211(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, ehg, ehh, faa) -> new_compare11(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, new_lt22(xwv65, xwv68, ehg), new_asAs(new_esEs39(xwv65, xwv68, ehg), new_pePe(new_lt23(xwv66, xwv69, ehh), new_asAs(new_esEs38(xwv66, xwv69, ehh), new_ltEs23(xwv67, xwv70, faa)))), ehg, ehh, faa) 26.47/9.55 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Int, ffc) -> new_esEs18(xwv40000, xwv30000) 26.47/9.55 new_esEs11(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.47/9.55 new_lt22(xwv65, xwv68, ty_Int) -> new_lt7(xwv65, xwv68) 26.47/9.55 new_ltEs18(xwv114, xwv116, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_ltEs15(xwv114, xwv116, cfb, cfc, cfd) 26.47/9.55 new_esEs12(:(xwv40000, xwv40001), :(xwv30000, xwv30001), bd) -> new_asAs(new_esEs13(xwv40000, xwv30000, bd), new_esEs12(xwv40001, xwv30001, bd)) 26.47/9.55 new_compare0(xwv400, xwv300, app(ty_Ratio, efh)) -> new_compare29(xwv400, xwv300, efh) 26.47/9.55 new_esEs10(xwv4000, xwv3000, app(app(ty_Either, bba), bbb)) -> new_esEs19(xwv4000, xwv3000, bba, bbb) 26.47/9.55 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Bool, ffc) -> new_esEs14(xwv40000, xwv30000) 26.47/9.55 new_esEs6(xwv4000, xwv3000, app(app(ty_@2, bgb), bgc)) -> new_esEs21(xwv4000, xwv3000, bgb, bgc) 26.47/9.55 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(ty_Ratio, fhc)) -> new_esEs23(xwv40000, xwv30000, fhc) 26.47/9.55 new_esEs8(xwv4001, xwv3001, ty_@0) -> new_esEs24(xwv4001, xwv3001) 26.47/9.55 new_esEs33(xwv540, xwv550, ty_Integer) -> new_esEs26(xwv540, xwv550) 26.47/9.55 new_esEs8(xwv4001, xwv3001, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs25(xwv4001, xwv3001, cbd, cbe, cbf) 26.47/9.55 new_esEs22(Float(xwv40000, xwv40001), Float(xwv30000, xwv30001)) -> new_esEs18(new_sr(xwv40000, xwv30001), new_sr(xwv40001, xwv30000)) 26.47/9.55 new_lt20(xwv541, xwv551, app(app(ty_@2, dgd), dge)) -> new_lt9(xwv541, xwv551, dgd, dge) 26.47/9.55 new_esEs10(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.47/9.55 new_primMulInt(Neg(xwv40000), Neg(xwv30010)) -> Pos(new_primMulNat0(xwv40000, xwv30010)) 26.47/9.55 new_primCmpInt(Pos(Zero), Pos(Succ(xwv30000))) -> new_primCmpNat0(Zero, Succ(xwv30000)) 26.47/9.55 new_esEs14(True, True) -> True 26.47/9.55 new_esEs38(xwv66, xwv69, ty_Ordering) -> new_esEs15(xwv66, xwv69) 26.47/9.55 new_esEs9(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.47/9.55 new_compare29(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), ty_Int) -> new_compare15(new_sr(xwv4000, xwv3001), new_sr(xwv3000, xwv4001)) 26.47/9.55 new_esEs32(xwv40000, xwv30000, app(app(ty_Either, dah), dba)) -> new_esEs19(xwv40000, xwv30000, dah, dba) 26.47/9.55 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(ty_Either, ech), eda)) -> new_esEs19(xwv40000, xwv30000, ech, eda) 26.47/9.55 new_ltEs19(xwv541, xwv551, app(app(app(ty_@3, dcg), dch), dda)) -> new_ltEs15(xwv541, xwv551, dcg, dch, dda) 26.47/9.55 new_lt6(xwv113, xwv115, app(ty_[], cdg)) -> new_lt13(xwv113, xwv115, cdg) 26.47/9.55 new_ltEs21(xwv83, xwv84, app(app(ty_@2, ebc), ebd)) -> new_ltEs9(xwv83, xwv84, ebc, ebd) 26.47/9.55 new_esEs5(xwv4000, xwv3000, app(ty_Maybe, ecf)) -> new_esEs16(xwv4000, xwv3000, ecf) 26.47/9.55 new_lt19(xwv540, xwv550, app(ty_Maybe, ddg)) -> new_lt10(xwv540, xwv550, ddg) 26.47/9.55 new_ltEs14(GT, LT) -> False 26.47/9.55 new_esEs31(xwv40001, xwv30001, app(app(ty_@2, chh), daa)) -> new_esEs21(xwv40001, xwv30001, chh, daa) 26.47/9.55 new_compare7(Left(xwv4000), Left(xwv3000), baf, bag) -> new_compare24(xwv4000, xwv3000, new_esEs10(xwv4000, xwv3000, baf), baf, bag) 26.47/9.55 new_ltEs19(xwv541, xwv551, app(app(ty_Either, ddb), ddc)) -> new_ltEs5(xwv541, xwv551, ddb, ddc) 26.47/9.55 new_esEs31(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.47/9.55 new_ltEs12(xwv54, xwv55) -> new_fsEs(new_compare19(xwv54, xwv55)) 26.47/9.55 new_compare0(xwv400, xwv300, app(app(app(ty_@3, bha), bhb), bhc)) -> new_compare28(xwv400, xwv300, bha, bhb, bhc) 26.47/9.55 new_ltEs10(Just(xwv540), Just(xwv550), app(app(ty_Either, ehc), ehd)) -> new_ltEs5(xwv540, xwv550, ehc, ehd) 26.47/9.55 new_compare8(Integer(xwv4000), Integer(xwv3000)) -> new_primCmpInt(xwv4000, xwv3000) 26.47/9.55 new_primMulInt(Pos(xwv40000), Neg(xwv30010)) -> Neg(new_primMulNat0(xwv40000, xwv30010)) 26.47/9.55 new_primMulInt(Neg(xwv40000), Pos(xwv30010)) -> Neg(new_primMulNat0(xwv40000, xwv30010)) 26.47/9.55 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_[], de), da) -> new_ltEs13(xwv540, xwv550, de) 26.47/9.55 new_ltEs18(xwv114, xwv116, app(ty_Maybe, ceh)) -> new_ltEs10(xwv114, xwv116, ceh) 26.47/9.55 new_ltEs23(xwv67, xwv70, ty_Int) -> new_ltEs6(xwv67, xwv70) 26.47/9.55 new_esEs5(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.47/9.55 new_ltEs21(xwv83, xwv84, ty_Integer) -> new_ltEs16(xwv83, xwv84) 26.47/9.55 new_esEs9(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.47/9.55 new_ltEs15(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), deg, deh, dfa) -> new_pePe(new_lt21(xwv540, xwv550, deg), new_asAs(new_esEs35(xwv540, xwv550, deg), new_pePe(new_lt20(xwv541, xwv551, deh), new_asAs(new_esEs34(xwv541, xwv551, deh), new_ltEs20(xwv542, xwv552, dfa))))) 26.47/9.55 new_ltEs22(xwv76, xwv77, ty_@0) -> new_ltEs4(xwv76, xwv77) 26.47/9.55 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(ty_@2, edb), edc)) -> new_esEs21(xwv40000, xwv30000, edb, edc) 26.47/9.55 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(ty_Either, ffe), fff), ffc) -> new_esEs19(xwv40000, xwv30000, ffe, fff) 26.47/9.55 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(ty_Ratio, fg)) -> new_ltEs17(xwv540, xwv550, fg) 26.47/9.55 new_compare19(Float(xwv4000, Neg(xwv40010)), Float(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.47/9.55 new_esEs11(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.47/9.55 new_sr0(Integer(xwv40000), Integer(xwv30010)) -> Integer(new_primMulInt(xwv40000, xwv30010)) 26.47/9.55 new_esEs30(xwv40002, xwv30002, app(app(ty_Either, cgd), cge)) -> new_esEs19(xwv40002, xwv30002, cgd, cge) 26.47/9.55 new_ltEs24(xwv54, xwv55, app(ty_Maybe, egc)) -> new_ltEs10(xwv54, xwv55, egc) 26.47/9.55 new_esEs8(xwv4001, xwv3001, app(ty_Ratio, cbc)) -> new_esEs23(xwv4001, xwv3001, cbc) 26.47/9.55 new_ltEs24(xwv54, xwv55, app(app(app(ty_@3, deg), deh), dfa)) -> new_ltEs15(xwv54, xwv55, deg, deh, dfa) 26.47/9.55 new_esEs6(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.47/9.55 new_ltEs23(xwv67, xwv70, app(ty_Ratio, fce)) -> new_ltEs17(xwv67, xwv70, fce) 26.47/9.55 new_esEs4(xwv4001, xwv3001, app(ty_Ratio, fee)) -> new_esEs23(xwv4001, xwv3001, fee) 26.47/9.55 new_ltEs24(xwv54, xwv55, ty_Char) -> new_ltEs7(xwv54, xwv55) 26.47/9.55 new_esEs28(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.47/9.55 new_esEs28(xwv40000, xwv30000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs25(xwv40000, xwv30000, bab, bac, bad) 26.47/9.55 new_esEs5(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.47/9.55 new_esEs18(xwv4000, xwv3000) -> new_primEqInt(xwv4000, xwv3000) 26.47/9.55 new_asAs(True, xwv131) -> xwv131 26.47/9.55 new_compare27(GT, GT) -> EQ 26.47/9.55 new_esEs32(xwv40000, xwv30000, app(app(ty_@2, dbb), dbc)) -> new_esEs21(xwv40000, xwv30000, dbb, dbc) 26.47/9.55 new_esEs6(xwv4000, xwv3000, app(ty_Maybe, bfg)) -> new_esEs16(xwv4000, xwv3000, bfg) 26.47/9.55 new_ltEs20(xwv542, xwv552, app(app(ty_@2, dfb), dfc)) -> new_ltEs9(xwv542, xwv552, dfb, dfc) 26.47/9.55 new_ltEs22(xwv76, xwv77, ty_Ordering) -> new_ltEs14(xwv76, xwv77) 26.47/9.55 new_esEs5(xwv4000, xwv3000, app(app(ty_@2, fh), ga)) -> new_esEs21(xwv4000, xwv3000, fh, ga) 26.47/9.55 new_esEs27(xwv40001, xwv30001, app(ty_Maybe, gb)) -> new_esEs16(xwv40001, xwv30001, gb) 26.47/9.55 new_ltEs22(xwv76, xwv77, ty_Float) -> new_ltEs12(xwv76, xwv77) 26.47/9.55 new_esEs32(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.47/9.55 new_compare0(xwv400, xwv300, ty_Float) -> new_compare19(xwv400, xwv300) 26.47/9.55 new_ltEs20(xwv542, xwv552, app(app(ty_Either, dga), dgb)) -> new_ltEs5(xwv542, xwv552, dga, dgb) 26.47/9.55 new_lt21(xwv540, xwv550, app(app(ty_@2, dhf), dhg)) -> new_lt9(xwv540, xwv550, dhf, dhg) 26.47/9.55 new_ltEs18(xwv114, xwv116, ty_Char) -> new_ltEs7(xwv114, xwv116) 26.47/9.55 new_ltEs19(xwv541, xwv551, app(app(ty_@2, dcc), dcd)) -> new_ltEs9(xwv541, xwv551, dcc, dcd) 26.47/9.55 new_lt20(xwv541, xwv551, ty_Double) -> new_lt5(xwv541, xwv551) 26.47/9.55 new_compare211(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, True, ehg, ehh, faa) -> EQ 26.47/9.55 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(app(ty_Either, fd), ff)) -> new_ltEs5(xwv540, xwv550, fd, ff) 26.47/9.55 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_[], edh)) -> new_esEs12(xwv40000, xwv30000, edh) 26.47/9.55 new_compare27(EQ, EQ) -> EQ 26.47/9.55 new_lt22(xwv65, xwv68, app(ty_Ratio, fbc)) -> new_lt18(xwv65, xwv68, fbc) 26.47/9.55 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_@0) -> new_ltEs4(xwv540, xwv550) 26.47/9.55 new_sr(xwv4000, xwv3001) -> new_primMulInt(xwv4000, xwv3001) 26.47/9.55 new_compare0(xwv400, xwv300, ty_Integer) -> new_compare8(xwv400, xwv300) 26.47/9.55 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.47/9.55 new_primCompAux00(xwv32, xwv33, EQ, ty_Float) -> new_compare19(xwv32, xwv33) 26.47/9.55 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(ty_Maybe, eg)) -> new_ltEs10(xwv540, xwv550, eg) 26.47/9.55 new_primMulNat0(Zero, Zero) -> Zero 26.47/9.55 new_esEs11(xwv4000, xwv3000, app(app(ty_@2, bce), bcf)) -> new_esEs21(xwv4000, xwv3000, bce, bcf) 26.47/9.55 new_lt19(xwv540, xwv550, ty_Double) -> new_lt5(xwv540, xwv550) 26.47/9.55 new_lt22(xwv65, xwv68, app(app(ty_@2, fab), fac)) -> new_lt9(xwv65, xwv68, fab, fac) 26.47/9.55 new_compare25(xwv83, xwv84, False, eba, ebb) -> new_compare112(xwv83, xwv84, new_ltEs21(xwv83, xwv84, ebb), eba, ebb) 26.47/9.55 new_esEs4(xwv4001, xwv3001, ty_Int) -> new_esEs18(xwv4001, xwv3001) 26.47/9.55 new_esEs29(xwv113, xwv115, ty_Integer) -> new_esEs26(xwv113, xwv115) 26.47/9.55 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(app(app(ty_@3, fa), fb), fc)) -> new_ltEs15(xwv540, xwv550, fa, fb, fc) 26.47/9.55 new_lt6(xwv113, xwv115, app(ty_Maybe, cdf)) -> new_lt10(xwv113, xwv115, cdf) 26.47/9.55 new_lt23(xwv66, xwv69, app(ty_Ratio, fdg)) -> new_lt18(xwv66, xwv69, fdg) 26.47/9.55 new_lt22(xwv65, xwv68, app(ty_Maybe, fad)) -> new_lt10(xwv65, xwv68, fad) 26.47/9.55 new_esEs29(xwv113, xwv115, ty_@0) -> new_esEs24(xwv113, xwv115) 26.47/9.55 new_ltEs21(xwv83, xwv84, ty_Ordering) -> new_ltEs14(xwv83, xwv84) 26.47/9.55 new_esEs39(xwv65, xwv68, app(ty_Ratio, fbc)) -> new_esEs23(xwv65, xwv68, fbc) 26.47/9.55 new_esEs4(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 26.47/9.55 new_esEs33(xwv540, xwv550, app(app(ty_@2, dde), ddf)) -> new_esEs21(xwv540, xwv550, dde, ddf) 26.47/9.55 new_lt23(xwv66, xwv69, app(ty_Maybe, fch)) -> new_lt10(xwv66, xwv69, fch) 26.47/9.55 new_esEs30(xwv40002, xwv30002, ty_@0) -> new_esEs24(xwv40002, xwv30002) 26.47/9.55 new_esEs30(xwv40002, xwv30002, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs25(xwv40002, xwv30002, cha, chb, chc) 26.47/9.55 new_ltEs24(xwv54, xwv55, app(app(ty_Either, ed), da)) -> new_ltEs5(xwv54, xwv55, ed, da) 26.47/9.55 new_compare7(Right(xwv4000), Left(xwv3000), baf, bag) -> GT 26.47/9.55 new_primCompAux00(xwv32, xwv33, EQ, app(app(app(ty_@3, bef), beg), beh)) -> new_compare28(xwv32, xwv33, bef, beg, beh) 26.47/9.55 new_ltEs23(xwv67, xwv70, app(ty_Maybe, fbf)) -> new_ltEs10(xwv67, xwv70, fbf) 26.47/9.55 new_ltEs20(xwv542, xwv552, ty_Char) -> new_ltEs7(xwv542, xwv552) 26.47/9.55 new_primEqInt(Neg(Succ(xwv400000)), Neg(Zero)) -> False 26.47/9.55 new_primEqInt(Neg(Zero), Neg(Succ(xwv300000))) -> False 26.47/9.55 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Bool) -> new_ltEs8(xwv540, xwv550) 26.47/9.55 new_esEs27(xwv40001, xwv30001, app(ty_[], hc)) -> new_esEs12(xwv40001, xwv30001, hc) 26.47/9.55 new_esEs9(xwv4000, xwv3000, app(ty_Ratio, cce)) -> new_esEs23(xwv4000, xwv3000, cce) 26.47/9.55 new_esEs25(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), cfh, cga, cgb) -> new_asAs(new_esEs32(xwv40000, xwv30000, cfh), new_asAs(new_esEs31(xwv40001, xwv30001, cga), new_esEs30(xwv40002, xwv30002, cgb))) 26.47/9.55 new_esEs33(xwv540, xwv550, app(ty_[], ddh)) -> new_esEs12(xwv540, xwv550, ddh) 26.47/9.55 new_primEqInt(Pos(Succ(xwv400000)), Pos(Succ(xwv300000))) -> new_primEqNat0(xwv400000, xwv300000) 26.47/9.55 new_ltEs24(xwv54, xwv55, app(ty_Ratio, eah)) -> new_ltEs17(xwv54, xwv55, eah) 26.47/9.55 new_ltEs18(xwv114, xwv116, app(ty_Ratio, cfg)) -> new_ltEs17(xwv114, xwv116, cfg) 26.47/9.55 new_esEs5(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.47/9.55 new_ltEs18(xwv114, xwv116, app(app(ty_@2, cef), ceg)) -> new_ltEs9(xwv114, xwv116, cef, ceg) 26.47/9.55 new_esEs5(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.47/9.55 new_esEs29(xwv113, xwv115, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs25(xwv113, xwv115, cdh, cea, ceb) 26.47/9.55 new_lt10(xwv113, xwv115, cdf) -> new_esEs15(new_compare18(xwv113, xwv115, cdf), LT) 26.47/9.55 new_esEs6(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.47/9.55 new_ltEs18(xwv114, xwv116, app(app(ty_Either, cfe), cff)) -> new_ltEs5(xwv114, xwv116, cfe, cff) 26.47/9.55 new_esEs5(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.47/9.55 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Int) -> new_ltEs6(xwv540, xwv550) 26.47/9.55 new_primEqInt(Pos(Succ(xwv400000)), Neg(xwv30000)) -> False 26.47/9.55 new_primEqInt(Neg(Succ(xwv400000)), Pos(xwv30000)) -> False 26.47/9.55 new_primCmpInt(Neg(Zero), Neg(Succ(xwv30000))) -> new_primCmpNat0(Succ(xwv30000), Zero) 26.47/9.55 new_esEs29(xwv113, xwv115, app(app(ty_Either, cec), ced)) -> new_esEs19(xwv113, xwv115, cec, ced) 26.47/9.55 new_esEs31(xwv40001, xwv30001, ty_Float) -> new_esEs22(xwv40001, xwv30001) 26.47/9.55 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Ordering) -> new_ltEs14(xwv540, xwv550) 26.47/9.55 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.47/9.55 new_esEs27(xwv40001, xwv30001, ty_Float) -> new_esEs22(xwv40001, xwv30001) 26.47/9.55 new_primCompAux00(xwv32, xwv33, LT, bea) -> LT 26.47/9.55 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(app(ty_Either, fgg), fgh)) -> new_esEs19(xwv40000, xwv30000, fgg, fgh) 26.47/9.55 new_ltEs19(xwv541, xwv551, app(ty_Maybe, dce)) -> new_ltEs10(xwv541, xwv551, dce) 26.47/9.55 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_[], fge), ffc) -> new_esEs12(xwv40000, xwv30000, fge) 26.47/9.55 new_compare112(xwv157, xwv158, False, ega, egb) -> GT 26.47/9.55 new_esEs7(xwv4002, xwv3002, ty_Bool) -> new_esEs14(xwv4002, xwv3002) 26.47/9.55 new_esEs7(xwv4002, xwv3002, app(ty_Ratio, caa)) -> new_esEs23(xwv4002, xwv3002, caa) 26.47/9.55 new_esEs8(xwv4001, xwv3001, ty_Char) -> new_esEs20(xwv4001, xwv3001) 26.47/9.55 new_ltEs22(xwv76, xwv77, app(ty_Ratio, efd)) -> new_ltEs17(xwv76, xwv77, efd) 26.47/9.55 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(ty_Maybe, fgf)) -> new_esEs16(xwv40000, xwv30000, fgf) 26.47/9.55 new_ltEs10(Just(xwv540), Just(xwv550), ty_Ordering) -> new_ltEs14(xwv540, xwv550) 26.47/9.55 new_ltEs22(xwv76, xwv77, ty_Bool) -> new_ltEs8(xwv76, xwv77) 26.47/9.55 new_esEs35(xwv540, xwv550, ty_Double) -> new_esEs17(xwv540, xwv550) 26.47/9.55 new_not(False) -> True 26.47/9.55 new_esEs28(xwv40000, xwv30000, app(ty_[], bae)) -> new_esEs12(xwv40000, xwv30000, bae) 26.47/9.55 new_lt21(xwv540, xwv550, ty_Double) -> new_lt5(xwv540, xwv550) 26.47/9.55 new_ltEs23(xwv67, xwv70, app(app(app(ty_@3, fbh), fca), fcb)) -> new_ltEs15(xwv67, xwv70, fbh, fca, fcb) 26.47/9.55 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Char) -> new_ltEs7(xwv540, xwv550) 26.47/9.55 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.47/9.55 new_esEs30(xwv40002, xwv30002, ty_Integer) -> new_esEs26(xwv40002, xwv30002) 26.47/9.55 new_esEs26(Integer(xwv40000), Integer(xwv30000)) -> new_primEqInt(xwv40000, xwv30000) 26.47/9.55 new_ltEs21(xwv83, xwv84, ty_@0) -> new_ltEs4(xwv83, xwv84) 26.47/9.55 new_compare18(Just(xwv4000), Nothing, bff) -> GT 26.47/9.55 new_esEs6(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.47/9.55 new_ltEs18(xwv114, xwv116, ty_Int) -> new_ltEs6(xwv114, xwv116) 26.47/9.55 new_esEs21(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), fh, ga) -> new_asAs(new_esEs28(xwv40000, xwv30000, fh), new_esEs27(xwv40001, xwv30001, ga)) 26.47/9.55 new_esEs28(xwv40000, xwv30000, app(app(ty_Either, he), hf)) -> new_esEs19(xwv40000, xwv30000, he, hf) 26.47/9.55 new_esEs9(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.47/9.55 new_esEs38(xwv66, xwv69, app(app(ty_@2, fcf), fcg)) -> new_esEs21(xwv66, xwv69, fcf, fcg) 26.47/9.55 new_esEs27(xwv40001, xwv30001, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs25(xwv40001, xwv30001, gh, ha, hb) 26.47/9.55 new_ltEs20(xwv542, xwv552, app(ty_Ratio, dgc)) -> new_ltEs17(xwv542, xwv552, dgc) 26.47/9.55 new_ltEs10(Just(xwv540), Just(xwv550), ty_Float) -> new_ltEs12(xwv540, xwv550) 26.47/9.55 new_esEs5(xwv4000, xwv3000, app(ty_Ratio, ece)) -> new_esEs23(xwv4000, xwv3000, ece) 26.47/9.55 new_lt23(xwv66, xwv69, ty_Double) -> new_lt5(xwv66, xwv69) 26.47/9.55 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.47/9.55 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.47/9.55 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.47/9.55 new_ltEs24(xwv54, xwv55, ty_Bool) -> new_ltEs8(xwv54, xwv55) 26.47/9.55 new_ltEs14(LT, EQ) -> True 26.47/9.55 new_ltEs23(xwv67, xwv70, ty_@0) -> new_ltEs4(xwv67, xwv70) 26.47/9.55 new_compare27(GT, LT) -> GT 26.47/9.55 new_esEs32(xwv40000, xwv30000, app(ty_[], dbh)) -> new_esEs12(xwv40000, xwv30000, dbh) 26.47/9.55 new_esEs9(xwv4000, xwv3000, app(ty_Maybe, cbh)) -> new_esEs16(xwv4000, xwv3000, cbh) 26.47/9.55 new_esEs29(xwv113, xwv115, ty_Float) -> new_esEs22(xwv113, xwv115) 26.47/9.55 new_compare6(@0, @0) -> EQ 26.47/9.55 new_esEs31(xwv40001, xwv30001, app(ty_[], daf)) -> new_esEs12(xwv40001, xwv30001, daf) 26.47/9.55 new_ltEs22(xwv76, xwv77, ty_Char) -> new_ltEs7(xwv76, xwv77) 26.47/9.55 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.47/9.55 new_esEs9(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.47/9.55 new_esEs38(xwv66, xwv69, ty_Double) -> new_esEs17(xwv66, xwv69) 26.47/9.55 new_compare19(Float(xwv4000, Pos(xwv40010)), Float(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.47/9.55 new_compare19(Float(xwv4000, Neg(xwv40010)), Float(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.47/9.55 new_ltEs21(xwv83, xwv84, app(app(ty_Either, ecb), ecc)) -> new_ltEs5(xwv83, xwv84, ecb, ecc) 26.47/9.55 new_ltEs21(xwv83, xwv84, app(ty_Maybe, ebe)) -> new_ltEs10(xwv83, xwv84, ebe) 26.47/9.55 new_ltEs22(xwv76, xwv77, app(app(ty_Either, efb), efc)) -> new_ltEs5(xwv76, xwv77, efb, efc) 26.47/9.55 new_ltEs10(Just(xwv540), Just(xwv550), app(app(app(ty_@3, egh), eha), ehb)) -> new_ltEs15(xwv540, xwv550, egh, eha, ehb) 26.47/9.55 new_esEs8(xwv4001, xwv3001, ty_Ordering) -> new_esEs15(xwv4001, xwv3001) 26.47/9.55 new_esEs30(xwv40002, xwv30002, app(ty_[], chd)) -> new_esEs12(xwv40002, xwv30002, chd) 26.47/9.55 new_ltEs20(xwv542, xwv552, app(ty_Maybe, dfd)) -> new_ltEs10(xwv542, xwv552, dfd) 26.47/9.55 new_esEs27(xwv40001, xwv30001, app(app(ty_Either, gc), gd)) -> new_esEs19(xwv40001, xwv30001, gc, gd) 26.47/9.55 new_ltEs23(xwv67, xwv70, ty_Char) -> new_ltEs7(xwv67, xwv70) 26.47/9.55 new_esEs13(xwv40000, xwv30000, app(app(ty_@2, bh), ca)) -> new_esEs21(xwv40000, xwv30000, bh, ca) 26.47/9.55 new_esEs12([], [], bd) -> True 26.47/9.55 new_esEs28(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.55 new_ltEs10(Just(xwv540), Just(xwv550), ty_Integer) -> new_ltEs16(xwv540, xwv550) 26.47/9.55 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.47/9.55 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.47/9.55 new_ltEs23(xwv67, xwv70, ty_Bool) -> new_ltEs8(xwv67, xwv70) 26.47/9.55 new_primEqNat0(Zero, Zero) -> True 26.47/9.55 new_esEs27(xwv40001, xwv30001, ty_@0) -> new_esEs24(xwv40001, xwv30001) 26.47/9.55 new_esEs27(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.47/9.55 new_asAs(False, xwv131) -> False 26.47/9.55 new_compare7(Right(xwv4000), Right(xwv3000), baf, bag) -> new_compare25(xwv4000, xwv3000, new_esEs11(xwv4000, xwv3000, bag), baf, bag) 26.47/9.55 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.47/9.55 new_lt6(xwv113, xwv115, ty_Double) -> new_lt5(xwv113, xwv115) 26.47/9.55 new_esEs8(xwv4001, xwv3001, ty_Int) -> new_esEs18(xwv4001, xwv3001) 26.47/9.55 new_esEs8(xwv4001, xwv3001, ty_Bool) -> new_esEs14(xwv4001, xwv3001) 26.47/9.55 new_ltEs23(xwv67, xwv70, ty_Ordering) -> new_ltEs14(xwv67, xwv70) 26.47/9.55 new_esEs6(xwv4000, xwv3000, app(ty_Ratio, bgd)) -> new_esEs23(xwv4000, xwv3000, bgd) 26.47/9.55 new_esEs9(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.47/9.55 new_ltEs21(xwv83, xwv84, app(ty_Ratio, ecd)) -> new_ltEs17(xwv83, xwv84, ecd) 26.47/9.55 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Double, ffc) -> new_esEs17(xwv40000, xwv30000) 26.47/9.55 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.55 26.47/9.55 The set Q consists of the following terms: 26.47/9.55 26.47/9.55 new_esEs13(x0, x1, app(ty_[], x2)) 26.47/9.55 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.47/9.55 new_esEs30(x0, x1, ty_Integer) 26.47/9.55 new_ltEs22(x0, x1, app(ty_[], x2)) 26.47/9.55 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_esEs31(x0, x1, ty_@0) 26.47/9.55 new_compare0(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_lt11(x0, x1) 26.47/9.55 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_lt20(x0, x1, ty_Int) 26.47/9.55 new_ltEs21(x0, x1, ty_Int) 26.47/9.55 new_primCmpNat0(Succ(x0), Succ(x1)) 26.47/9.55 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_esEs16(Just(x0), Just(x1), ty_Int) 26.47/9.55 new_esEs31(x0, x1, ty_Bool) 26.47/9.55 new_esEs19(Left(x0), Left(x1), ty_Integer, x2) 26.47/9.55 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_pePe(True, x0) 26.47/9.55 new_compare0(x0, x1, ty_Ordering) 26.47/9.55 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_esEs6(x0, x1, ty_Integer) 26.47/9.55 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.47/9.55 new_esEs10(x0, x1, app(ty_[], x2)) 26.47/9.55 new_sr(x0, x1) 26.47/9.55 new_esEs13(x0, x1, ty_Integer) 26.47/9.55 new_esEs39(x0, x1, ty_Int) 26.47/9.55 new_esEs7(x0, x1, ty_Int) 26.47/9.55 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_primEqInt(Pos(Zero), Pos(Zero)) 26.47/9.55 new_compare0(x0, x1, ty_Char) 26.47/9.55 new_ltEs22(x0, x1, ty_@0) 26.47/9.55 new_primPlusNat0(Zero, Succ(x0)) 26.47/9.55 new_esEs10(x0, x1, ty_Integer) 26.47/9.55 new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.47/9.55 new_esEs14(True, True) 26.47/9.55 new_primEqInt(Neg(Zero), Neg(Zero)) 26.47/9.55 new_compare0(x0, x1, ty_Double) 26.47/9.55 new_esEs38(x0, x1, ty_Bool) 26.47/9.55 new_compare6(@0, @0) 26.47/9.55 new_lt23(x0, x1, ty_Int) 26.47/9.55 new_lt22(x0, x1, ty_Double) 26.47/9.55 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_esEs19(Left(x0), Left(x1), ty_@0, x2) 26.47/9.55 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_primMulInt(Pos(x0), Neg(x1)) 26.47/9.55 new_primMulInt(Neg(x0), Pos(x1)) 26.47/9.55 new_ltEs19(x0, x1, ty_Integer) 26.47/9.55 new_esEs6(x0, x1, ty_@0) 26.47/9.55 new_primMulInt(Neg(x0), Neg(x1)) 26.47/9.55 new_ltEs22(x0, x1, ty_Int) 26.47/9.55 new_esEs4(x0, x1, ty_Int) 26.47/9.55 new_esEs10(x0, x1, ty_@0) 26.47/9.55 new_esEs30(x0, x1, ty_@0) 26.47/9.55 new_lt10(x0, x1, x2) 26.47/9.55 new_esEs6(x0, x1, ty_Float) 26.47/9.55 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.47/9.55 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.47/9.55 new_esEs31(x0, x1, ty_Integer) 26.47/9.55 new_esEs19(Left(x0), Left(x1), ty_Float, x2) 26.47/9.55 new_esEs39(x0, x1, app(ty_[], x2)) 26.47/9.55 new_esEs13(x0, x1, ty_Bool) 26.47/9.55 new_lt22(x0, x1, ty_Ordering) 26.47/9.55 new_compare0(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.47/9.55 new_esEs30(x0, x1, ty_Bool) 26.47/9.55 new_esEs30(x0, x1, ty_Float) 26.47/9.55 new_ltEs4(x0, x1) 26.47/9.55 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_esEs38(x0, x1, ty_Integer) 26.47/9.55 new_primEqInt(Pos(Zero), Neg(Zero)) 26.47/9.55 new_primEqInt(Neg(Zero), Pos(Zero)) 26.47/9.55 new_lt22(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_ltEs18(x0, x1, ty_Double) 26.47/9.55 new_esEs32(x0, x1, ty_Integer) 26.47/9.55 new_esEs9(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_ltEs18(x0, x1, ty_Char) 26.47/9.55 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_esEs7(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_primEqNat0(Succ(x0), Succ(x1)) 26.47/9.55 new_esEs10(x0, x1, ty_Bool) 26.47/9.55 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.47/9.55 new_esEs11(x0, x1, ty_Ordering) 26.47/9.55 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.47/9.55 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_ltEs22(x0, x1, ty_Bool) 26.47/9.55 new_esEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.47/9.55 new_ltEs21(x0, x1, ty_Integer) 26.47/9.55 new_esEs11(x0, x1, ty_Char) 26.47/9.55 new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.47/9.55 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 26.47/9.55 new_compare15(x0, x1) 26.47/9.55 new_primMulNat0(Zero, Succ(x0)) 26.47/9.55 new_lt20(x0, x1, ty_Integer) 26.47/9.55 new_ltEs23(x0, x1, ty_Int) 26.47/9.55 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.47/9.55 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.47/9.55 new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.47/9.55 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_esEs5(x0, x1, ty_Int) 26.47/9.55 new_esEs7(x0, x1, ty_@0) 26.47/9.55 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.47/9.55 new_ltEs10(Nothing, Nothing, x0) 26.47/9.55 new_lt20(x0, x1, app(ty_[], x2)) 26.47/9.55 new_compare29(:%(x0, x1), :%(x2, x3), ty_Integer) 26.47/9.55 new_ltEs10(Just(x0), Just(x1), ty_Double) 26.47/9.55 new_esEs10(x0, x1, ty_Int) 26.47/9.55 new_lt21(x0, x1, ty_Bool) 26.47/9.55 new_esEs4(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_lt19(x0, x1, ty_Float) 26.47/9.55 new_esEs27(x0, x1, ty_Bool) 26.47/9.55 new_compare10(x0, x1, False, x2) 26.47/9.55 new_esEs27(x0, x1, app(ty_[], x2)) 26.47/9.55 new_esEs27(x0, x1, ty_Integer) 26.47/9.55 new_compare210(x0, x1, True, x2) 26.47/9.55 new_compare18(Nothing, Nothing, x0) 26.47/9.55 new_esEs33(x0, x1, ty_Float) 26.47/9.55 new_lt6(x0, x1, ty_Char) 26.47/9.55 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.47/9.55 new_esEs28(x0, x1, ty_@0) 26.47/9.55 new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) 26.47/9.55 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_esEs12(:(x0, x1), :(x2, x3), x4) 26.47/9.55 new_compare25(x0, x1, False, x2, x3) 26.47/9.55 new_esEs6(x0, x1, ty_Int) 26.47/9.55 new_ltEs22(x0, x1, ty_Integer) 26.47/9.55 new_esEs39(x0, x1, ty_Integer) 26.47/9.55 new_compare212(x0, x1, x2, x3, True, x4, x5) 26.47/9.55 new_compare14(x0, x1, False, x2, x3) 26.47/9.55 new_esEs19(Left(x0), Left(x1), ty_Int, x2) 26.47/9.55 new_esEs4(x0, x1, ty_@0) 26.47/9.55 new_ltEs13(x0, x1, x2) 26.47/9.55 new_lt22(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.47/9.55 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_esEs7(x0, x1, app(ty_[], x2)) 26.47/9.55 new_esEs10(x0, x1, ty_Float) 26.47/9.55 new_ltEs19(x0, x1, ty_Bool) 26.47/9.55 new_lt19(x0, x1, ty_Char) 26.47/9.55 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_esEs32(x0, x1, ty_Bool) 26.47/9.55 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_esEs19(Right(x0), Right(x1), x2, ty_Int) 26.47/9.55 new_lt13(x0, x1, x2) 26.47/9.55 new_esEs13(x0, x1, ty_@0) 26.47/9.55 new_compare0(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_esEs12([], :(x0, x1), x2) 26.47/9.55 new_esEs32(x0, x1, ty_Float) 26.47/9.55 new_esEs8(x0, x1, ty_Int) 26.47/9.55 new_lt16(x0, x1, x2, x3) 26.47/9.55 new_ltEs21(x0, x1, ty_Float) 26.47/9.55 new_esEs6(x0, x1, ty_Bool) 26.47/9.55 new_esEs11(x0, x1, ty_Float) 26.47/9.55 new_ltEs19(x0, x1, ty_Int) 26.47/9.55 new_esEs36(x0, x1, ty_Integer) 26.47/9.55 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_esEs8(x0, x1, ty_Bool) 26.47/9.55 new_compare27(LT, GT) 26.47/9.55 new_compare27(GT, LT) 26.47/9.55 new_ltEs21(x0, x1, ty_Bool) 26.47/9.55 new_esEs24(@0, @0) 26.47/9.55 new_ltEs8(True, False) 26.47/9.55 new_esEs13(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_ltEs8(False, True) 26.47/9.55 new_lt23(x0, x1, ty_Integer) 26.47/9.55 new_lt20(x0, x1, ty_@0) 26.47/9.55 new_lt15(x0, x1, x2, x3, x4) 26.47/9.55 new_lt23(x0, x1, ty_Bool) 26.47/9.55 new_esEs19(Left(x0), Left(x1), ty_Bool, x2) 26.47/9.55 new_esEs25(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.47/9.55 new_esEs19(Left(x0), Right(x1), x2, x3) 26.47/9.55 new_esEs19(Right(x0), Left(x1), x2, x3) 26.47/9.55 new_primCompAux00(x0, x1, EQ, ty_Int) 26.47/9.55 new_esEs32(x0, x1, ty_Int) 26.47/9.55 new_esEs16(Just(x0), Just(x1), ty_@0) 26.47/9.55 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_esEs29(x0, x1, ty_Double) 26.47/9.55 new_ltEs23(x0, x1, ty_Bool) 26.47/9.55 new_esEs27(x0, x1, ty_Int) 26.47/9.55 new_esEs38(x0, x1, ty_@0) 26.47/9.55 new_compare27(EQ, GT) 26.47/9.55 new_compare27(GT, EQ) 26.47/9.55 new_esEs6(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 26.47/9.55 new_compare8(Integer(x0), Integer(x1)) 26.47/9.55 new_ltEs19(x0, x1, ty_Float) 26.47/9.55 new_esEs39(x0, x1, ty_Bool) 26.47/9.55 new_lt21(x0, x1, ty_Int) 26.47/9.55 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_compare110(x0, x1, x2, x3, False, x4, x5, x6) 26.47/9.55 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_primMulInt(Pos(x0), Pos(x1)) 26.47/9.55 new_lt7(x0, x1) 26.47/9.55 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 26.47/9.55 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.47/9.55 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 26.47/9.55 new_lt8(x0, x1) 26.47/9.55 new_esEs34(x0, x1, ty_Bool) 26.47/9.55 new_lt12(x0, x1) 26.47/9.55 new_compare7(Left(x0), Left(x1), x2, x3) 26.47/9.55 new_esEs18(x0, x1) 26.47/9.55 new_ltEs5(Left(x0), Right(x1), x2, x3) 26.47/9.55 new_ltEs5(Right(x0), Left(x1), x2, x3) 26.47/9.55 new_ltEs19(x0, x1, ty_Double) 26.47/9.55 new_esEs33(x0, x1, ty_@0) 26.47/9.55 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_lt22(x0, x1, ty_Integer) 26.47/9.55 new_esEs12([], [], x0) 26.47/9.55 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_esEs9(x0, x1, ty_Integer) 26.47/9.55 new_esEs32(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_esEs27(x0, x1, ty_Float) 26.47/9.55 new_esEs15(EQ, EQ) 26.47/9.55 new_esEs34(x0, x1, ty_@0) 26.47/9.55 new_esEs32(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_esEs9(x0, x1, ty_Bool) 26.47/9.55 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 26.47/9.55 new_esEs17(Double(x0, x1), Double(x2, x3)) 26.47/9.55 new_esEs34(x0, x1, ty_Integer) 26.47/9.55 new_esEs35(x0, x1, ty_@0) 26.47/9.55 new_esEs19(Right(x0), Right(x1), x2, ty_Char) 26.47/9.55 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_esEs9(x0, x1, ty_@0) 26.47/9.55 new_ltEs20(x0, x1, ty_Integer) 26.47/9.55 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 26.47/9.55 new_compare112(x0, x1, True, x2, x3) 26.47/9.55 new_primEqNat0(Zero, Succ(x0)) 26.47/9.55 new_esEs39(x0, x1, ty_Float) 26.47/9.55 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 26.47/9.55 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_primPlusNat0(Zero, Zero) 26.47/9.55 new_esEs5(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_esEs19(Right(x0), Right(x1), x2, ty_Bool) 26.47/9.55 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.47/9.55 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_not(True) 26.47/9.55 new_esEs5(x0, x1, app(ty_[], x2)) 26.47/9.55 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 26.47/9.55 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 26.47/9.55 new_esEs13(x0, x1, ty_Double) 26.47/9.55 new_primCompAux00(x0, x1, GT, x2) 26.47/9.55 new_esEs38(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_ltEs24(x0, x1, ty_Ordering) 26.47/9.55 new_esEs33(x0, x1, ty_Int) 26.47/9.55 new_lt22(x0, x1, ty_Bool) 26.47/9.55 new_lt21(x0, x1, ty_Integer) 26.47/9.55 new_esEs28(x0, x1, ty_Float) 26.47/9.55 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 26.47/9.55 new_ltEs20(x0, x1, ty_Char) 26.47/9.55 new_esEs9(x0, x1, ty_Float) 26.47/9.55 new_ltEs19(x0, x1, ty_Ordering) 26.47/9.55 new_esEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.47/9.55 new_lt23(x0, x1, ty_Float) 26.47/9.55 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_esEs39(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_compare112(x0, x1, False, x2, x3) 26.47/9.55 new_lt19(x0, x1, ty_Ordering) 26.47/9.55 new_esEs33(x0, x1, ty_Bool) 26.47/9.55 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_esEs19(Right(x0), Right(x1), x2, ty_Integer) 26.47/9.55 new_esEs33(x0, x1, ty_Char) 26.47/9.55 new_lt21(x0, x1, app(ty_[], x2)) 26.47/9.55 new_ltEs20(x0, x1, ty_Bool) 26.47/9.55 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_compare29(:%(x0, x1), :%(x2, x3), ty_Int) 26.47/9.55 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 26.47/9.55 new_primCmpNat0(Zero, Succ(x0)) 26.47/9.55 new_esEs30(x0, x1, ty_Int) 26.47/9.55 new_esEs16(Just(x0), Just(x1), ty_Integer) 26.47/9.55 new_esEs7(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_ltEs23(x0, x1, app(ty_[], x2)) 26.47/9.55 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_esEs31(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.47/9.55 new_lt21(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.47/9.55 new_primCompAux00(x0, x1, EQ, ty_Double) 26.47/9.55 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.47/9.55 new_esEs9(x0, x1, ty_Int) 26.47/9.55 new_lt21(x0, x1, ty_@0) 26.47/9.55 new_lt6(x0, x1, ty_Ordering) 26.47/9.55 new_compare27(LT, LT) 26.47/9.55 new_lt19(x0, x1, ty_Double) 26.47/9.55 new_ltEs20(x0, x1, ty_Int) 26.47/9.55 new_ltEs14(GT, GT) 26.47/9.55 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.47/9.55 new_esEs26(Integer(x0), Integer(x1)) 26.47/9.55 new_esEs13(x0, x1, ty_Char) 26.47/9.55 new_lt23(x0, x1, app(ty_[], x2)) 26.47/9.55 new_esEs22(Float(x0, x1), Float(x2, x3)) 26.47/9.55 new_esEs11(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_compare9(False, False) 26.47/9.55 new_lt6(x0, x1, ty_Double) 26.47/9.55 new_esEs34(x0, x1, ty_Int) 26.47/9.55 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.47/9.55 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.47/9.55 new_esEs4(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 26.47/9.55 new_esEs28(x0, x1, ty_Char) 26.47/9.55 new_lt20(x0, x1, ty_Bool) 26.47/9.55 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_esEs9(x0, x1, ty_Char) 26.47/9.55 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 26.47/9.55 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_ltEs12(x0, x1) 26.47/9.55 new_esEs6(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 26.47/9.55 new_esEs35(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_esEs16(Nothing, Just(x0), x1) 26.47/9.55 new_ltEs20(x0, x1, ty_Float) 26.47/9.55 new_lt22(x0, x1, ty_Int) 26.47/9.55 new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 26.47/9.55 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_esEs29(x0, x1, ty_Bool) 26.47/9.55 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.47/9.55 new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.47/9.55 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.47/9.55 new_esEs13(x0, x1, ty_Int) 26.47/9.55 new_esEs34(x0, x1, ty_Float) 26.47/9.55 new_esEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.47/9.55 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 26.47/9.55 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_esEs28(x0, x1, ty_Int) 26.47/9.55 new_lt22(x0, x1, ty_Char) 26.47/9.55 new_ltEs10(Just(x0), Just(x1), ty_Ordering) 26.47/9.55 new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.47/9.55 new_primMulNat0(Succ(x0), Succ(x1)) 26.47/9.55 new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.47/9.55 new_esEs35(x0, x1, app(ty_[], x2)) 26.47/9.55 new_esEs16(Nothing, Nothing, x0) 26.47/9.55 new_esEs16(Just(x0), Just(x1), ty_Bool) 26.47/9.55 new_primEqNat0(Zero, Zero) 26.47/9.55 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_lt22(x0, x1, ty_Float) 26.47/9.55 new_esEs29(x0, x1, ty_Int) 26.47/9.55 new_esEs39(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_esEs33(x0, x1, ty_Integer) 26.47/9.55 new_not(False) 26.47/9.55 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 26.47/9.55 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_compare18(Just(x0), Nothing, x1) 26.47/9.55 new_esEs5(x0, x1, ty_Double) 26.47/9.55 new_esEs9(x0, x1, app(ty_[], x2)) 26.47/9.55 new_esEs28(x0, x1, ty_Integer) 26.47/9.55 new_compare27(EQ, EQ) 26.47/9.55 new_lt6(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_esEs13(x0, x1, ty_Float) 26.47/9.55 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_ltEs18(x0, x1, ty_Ordering) 26.47/9.55 new_lt19(x0, x1, app(ty_[], x2)) 26.47/9.55 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_esEs33(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_esEs11(x0, x1, ty_Double) 26.47/9.55 new_esEs30(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_ltEs8(True, True) 26.47/9.55 new_esEs28(x0, x1, ty_Bool) 26.47/9.55 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_esEs10(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_esEs32(x0, x1, ty_Double) 26.47/9.55 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 26.47/9.55 new_esEs29(x0, x1, ty_Float) 26.47/9.55 new_esEs39(x0, x1, ty_Double) 26.47/9.55 new_lt20(x0, x1, ty_Float) 26.47/9.55 new_esEs29(x0, x1, ty_Char) 26.47/9.55 new_esEs19(Right(x0), Right(x1), x2, ty_@0) 26.47/9.55 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_primPlusNat0(Succ(x0), Succ(x1)) 26.47/9.55 new_esEs27(x0, x1, ty_Double) 26.47/9.55 new_ltEs21(x0, x1, ty_Double) 26.47/9.55 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.47/9.55 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.47/9.55 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_ltEs14(EQ, LT) 26.47/9.55 new_esEs16(Just(x0), Just(x1), ty_Float) 26.47/9.55 new_ltEs14(LT, EQ) 26.47/9.55 new_fsEs(x0) 26.47/9.55 new_primCompAux1(x0, x1, x2, x3, x4) 26.47/9.55 new_ltEs23(x0, x1, ty_Double) 26.47/9.55 new_esEs34(x0, x1, ty_Char) 26.47/9.55 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.47/9.55 new_esEs8(x0, x1, ty_Double) 26.47/9.55 new_esEs16(Just(x0), Just(x1), app(ty_[], x2)) 26.47/9.55 new_compare16(Char(x0), Char(x1)) 26.47/9.55 new_ltEs10(Just(x0), Just(x1), ty_Bool) 26.47/9.55 new_compare26([], [], x0) 26.47/9.55 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_compare0(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_compare18(Nothing, Just(x0), x1) 26.47/9.55 new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_esEs7(x0, x1, ty_Double) 26.47/9.55 new_esEs27(x0, x1, ty_Ordering) 26.47/9.55 new_esEs9(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_esEs30(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_esEs16(Just(x0), Just(x1), ty_Ordering) 26.47/9.55 new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.47/9.55 new_esEs34(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_compare0(x0, x1, ty_Int) 26.47/9.55 new_esEs39(x0, x1, ty_Ordering) 26.47/9.55 new_esEs35(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_esEs32(x0, x1, ty_Char) 26.47/9.55 new_compare26([], :(x0, x1), x2) 26.47/9.55 new_esEs32(x0, x1, app(ty_[], x2)) 26.47/9.55 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 26.47/9.55 new_lt6(x0, x1, ty_Bool) 26.47/9.55 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_esEs4(x0, x1, ty_Double) 26.47/9.55 new_lt20(x0, x1, ty_Ordering) 26.47/9.55 new_esEs38(x0, x1, ty_Char) 26.47/9.55 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_esEs7(x0, x1, ty_Ordering) 26.47/9.55 new_lt6(x0, x1, ty_Integer) 26.47/9.55 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_compare17(@2(x0, x1), @2(x2, x3), x4, x5) 26.47/9.55 new_lt20(x0, x1, ty_Double) 26.47/9.55 new_lt6(x0, x1, ty_@0) 26.47/9.55 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.55 new_lt23(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_ltEs10(Just(x0), Just(x1), ty_Integer) 26.47/9.55 new_esEs16(Just(x0), Just(x1), ty_Char) 26.47/9.55 new_esEs4(x0, x1, ty_Ordering) 26.47/9.55 new_lt17(x0, x1) 26.47/9.55 new_lt5(x0, x1) 26.47/9.55 new_esEs16(Just(x0), Just(x1), ty_Double) 26.47/9.55 new_lt23(x0, x1, ty_Ordering) 26.47/9.55 new_lt23(x0, x1, ty_Double) 26.47/9.55 new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_esEs12(:(x0, x1), [], x2) 26.47/9.55 new_esEs28(x0, x1, ty_Double) 26.47/9.55 new_ltEs14(LT, LT) 26.47/9.55 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 26.47/9.55 new_esEs28(x0, x1, ty_Ordering) 26.47/9.55 new_ltEs10(Just(x0), Just(x1), ty_@0) 26.47/9.55 new_esEs28(x0, x1, app(ty_[], x2)) 26.47/9.55 new_esEs7(x0, x1, ty_Char) 26.47/9.55 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_lt20(x0, x1, ty_Char) 26.47/9.55 new_primMulNat0(Succ(x0), Zero) 26.47/9.55 new_esEs15(EQ, GT) 26.47/9.55 new_esEs15(GT, EQ) 26.47/9.55 new_asAs(False, x0) 26.47/9.55 new_esEs15(LT, LT) 26.47/9.55 new_esEs30(x0, x1, app(ty_[], x2)) 26.47/9.55 new_lt6(x0, x1, app(ty_[], x2)) 26.47/9.55 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_esEs38(x0, x1, ty_Ordering) 26.47/9.55 new_esEs31(x0, x1, ty_Char) 26.47/9.55 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_ltEs8(False, False) 26.47/9.55 new_esEs14(False, True) 26.47/9.55 new_esEs14(True, False) 26.47/9.55 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 26.47/9.55 new_esEs6(x0, x1, app(ty_[], x2)) 26.47/9.55 new_compare14(x0, x1, True, x2, x3) 26.47/9.55 new_esEs4(x0, x1, ty_Char) 26.47/9.55 new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.47/9.55 new_esEs29(x0, x1, ty_Integer) 26.47/9.55 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 26.47/9.55 new_lt21(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.47/9.55 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_esEs8(x0, x1, ty_Ordering) 26.47/9.55 new_ltEs18(x0, x1, ty_Int) 26.47/9.55 new_ltEs22(x0, x1, ty_Char) 26.47/9.55 new_esEs11(x0, x1, app(ty_Maybe, x2)) 26.47/9.55 new_ltEs21(x0, x1, ty_Ordering) 26.47/9.55 new_ltEs23(x0, x1, ty_Ordering) 26.47/9.55 new_ltEs22(x0, x1, ty_Double) 26.47/9.55 new_esEs35(x0, x1, ty_Float) 26.47/9.55 new_compare210(x0, x1, False, x2) 26.47/9.55 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.55 new_esEs5(x0, x1, ty_Ordering) 26.47/9.55 new_lt21(x0, x1, ty_Ordering) 26.47/9.55 new_esEs30(x0, x1, ty_Char) 26.47/9.55 new_esEs32(x0, x1, ty_Ordering) 26.47/9.55 new_primCompAux00(x0, x1, LT, x2) 26.47/9.55 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.47/9.55 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.47/9.55 new_esEs34(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_compare26(:(x0, x1), [], x2) 26.47/9.55 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.47/9.55 new_ltEs21(x0, x1, app(ty_[], x2)) 26.47/9.55 new_esEs5(x0, x1, ty_Char) 26.47/9.55 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 26.47/9.55 new_compare13(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.47/9.55 new_esEs31(x0, x1, ty_Double) 26.47/9.55 new_compare13(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.47/9.55 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.55 new_esEs19(Left(x0), Left(x1), ty_Char, x2) 26.47/9.55 new_primCompAux00(x0, x1, EQ, ty_Float) 26.47/9.55 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.47/9.55 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.47/9.55 new_primCompAux00(x0, x1, EQ, ty_Ordering) 26.47/9.55 new_esEs16(Just(x0), Nothing, x1) 26.47/9.55 new_esEs6(x0, x1, ty_Char) 26.47/9.56 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.47/9.56 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs29(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs10(x0, x1, ty_Char) 26.47/9.56 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs15(LT, GT) 26.47/9.56 new_esEs15(GT, LT) 26.47/9.56 new_esEs8(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_lt6(x0, x1, ty_Float) 26.47/9.56 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs38(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_ltEs20(x0, x1, ty_Double) 26.47/9.56 new_compare0(x0, x1, ty_@0) 26.47/9.56 new_esEs10(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_ltEs14(LT, GT) 26.47/9.56 new_ltEs14(GT, LT) 26.47/9.56 new_esEs9(x0, x1, ty_Double) 26.47/9.56 new_esEs6(x0, x1, ty_Ordering) 26.47/9.56 new_ltEs23(x0, x1, ty_Float) 26.47/9.56 new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) 26.47/9.56 new_esEs13(x0, x1, ty_Ordering) 26.47/9.56 new_compare18(Just(x0), Just(x1), x2) 26.47/9.56 new_esEs31(x0, x1, app(ty_[], x2)) 26.47/9.56 new_pePe(False, x0) 26.47/9.56 new_ltEs10(Nothing, Just(x0), x1) 26.47/9.56 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_ltEs20(x0, x1, ty_Ordering) 26.47/9.56 new_primPlusNat1(Succ(x0), x1) 26.47/9.56 new_esEs31(x0, x1, ty_Ordering) 26.47/9.56 new_ltEs24(x0, x1, ty_Double) 26.47/9.56 new_lt23(x0, x1, ty_Char) 26.47/9.56 new_ltEs22(x0, x1, ty_Ordering) 26.47/9.56 new_compare111(x0, x1, x2, x3, True, x4, x5) 26.47/9.56 new_lt6(x0, x1, ty_Int) 26.47/9.56 new_sr0(Integer(x0), Integer(x1)) 26.47/9.56 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.47/9.56 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs14(EQ, GT) 26.47/9.56 new_ltEs14(GT, EQ) 26.47/9.56 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_lt23(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_lt22(x0, x1, ty_@0) 26.47/9.56 new_ltEs17(x0, x1, x2) 26.47/9.56 new_lt21(x0, x1, ty_Char) 26.47/9.56 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.47/9.56 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.47/9.56 new_esEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs11(x0, x1, ty_Bool) 26.47/9.56 new_esEs8(x0, x1, ty_Float) 26.47/9.56 new_esEs35(x0, x1, ty_Integer) 26.47/9.56 new_esEs38(x0, x1, ty_Double) 26.47/9.56 new_esEs35(x0, x1, ty_Ordering) 26.47/9.56 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_ltEs19(x0, x1, ty_Char) 26.47/9.56 new_compare7(Right(x0), Right(x1), x2, x3) 26.47/9.56 new_esEs35(x0, x1, ty_Bool) 26.47/9.56 new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 26.47/9.56 new_lt6(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_ltEs6(x0, x1) 26.47/9.56 new_lt9(x0, x1, x2, x3) 26.47/9.56 new_esEs39(x0, x1, ty_Char) 26.47/9.56 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, ty_Float) 26.47/9.56 new_ltEs24(x0, x1, ty_@0) 26.47/9.56 new_lt18(x0, x1, x2) 26.47/9.56 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_esEs33(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs34(x0, x1, ty_Double) 26.47/9.56 new_esEs11(x0, x1, ty_Int) 26.47/9.56 new_primCmpNat0(Succ(x0), Zero) 26.47/9.56 new_lt19(x0, x1, ty_Int) 26.47/9.56 new_esEs5(x0, x1, ty_Float) 26.47/9.56 new_primCompAux00(x0, x1, EQ, ty_Char) 26.47/9.56 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs29(x0, x1, ty_@0) 26.47/9.56 new_compare7(Left(x0), Right(x1), x2, x3) 26.47/9.56 new_esEs27(x0, x1, ty_Char) 26.47/9.56 new_compare7(Right(x0), Left(x1), x2, x3) 26.47/9.56 new_ltEs21(x0, x1, ty_Char) 26.47/9.56 new_primPlusNat0(Succ(x0), Zero) 26.47/9.56 new_primEqNat0(Succ(x0), Zero) 26.47/9.56 new_ltEs23(x0, x1, ty_Char) 26.47/9.56 new_esEs8(x0, x1, ty_Char) 26.47/9.56 new_ltEs19(x0, x1, app(ty_[], x2)) 26.47/9.56 new_lt19(x0, x1, ty_@0) 26.47/9.56 new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) 26.47/9.56 new_esEs7(x0, x1, ty_Float) 26.47/9.56 new_esEs38(x0, x1, app(ty_[], x2)) 26.47/9.56 new_ltEs23(x0, x1, ty_Integer) 26.47/9.56 new_esEs37(x0, x1, ty_Int) 26.47/9.56 new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) 26.47/9.56 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_compare9(False, True) 26.47/9.56 new_compare9(True, False) 26.47/9.56 new_lt21(x0, x1, ty_Float) 26.47/9.56 new_primMulNat0(Zero, Zero) 26.47/9.56 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_primCompAux00(x0, x1, EQ, ty_@0) 26.47/9.56 new_esEs11(x0, x1, ty_Integer) 26.47/9.56 new_ltEs14(EQ, EQ) 26.47/9.56 new_esEs13(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_primCompAux00(x0, x1, EQ, ty_Bool) 26.47/9.56 new_lt19(x0, x1, ty_Bool) 26.47/9.56 new_esEs34(x0, x1, app(ty_[], x2)) 26.47/9.56 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.47/9.56 new_ltEs20(x0, x1, ty_@0) 26.47/9.56 new_esEs35(x0, x1, ty_Char) 26.47/9.56 new_compare10(x0, x1, True, x2) 26.47/9.56 new_esEs4(x0, x1, ty_Float) 26.47/9.56 new_ltEs24(x0, x1, ty_Char) 26.47/9.56 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 26.47/9.56 new_compare110(x0, x1, x2, x3, True, x4, x5, x6) 26.47/9.56 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs8(x0, x1, ty_Integer) 26.47/9.56 new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 26.47/9.56 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs5(x0, x1, ty_Bool) 26.47/9.56 new_esEs5(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_lt14(x0, x1) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) 26.47/9.56 new_ltEs18(x0, x1, ty_Float) 26.47/9.56 new_ltEs18(x0, x1, ty_Integer) 26.47/9.56 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.47/9.56 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.47/9.56 new_esEs4(x0, x1, ty_Integer) 26.47/9.56 new_esEs35(x0, x1, ty_Int) 26.47/9.56 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 26.47/9.56 new_compare24(x0, x1, True, x2, x3) 26.47/9.56 new_esEs10(x0, x1, ty_Double) 26.47/9.56 new_ltEs24(x0, x1, ty_Bool) 26.47/9.56 new_lt19(x0, x1, ty_Integer) 26.47/9.56 new_primCompAux00(x0, x1, EQ, ty_Integer) 26.47/9.56 new_ltEs24(x0, x1, app(ty_[], x2)) 26.47/9.56 new_compare0(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs8(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs4(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs20(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs24(x0, x1, ty_Integer) 26.47/9.56 new_esEs7(x0, x1, ty_Integer) 26.47/9.56 new_ltEs7(x0, x1) 26.47/9.56 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_primPlusNat1(Zero, x0) 26.47/9.56 new_esEs30(x0, x1, ty_Double) 26.47/9.56 new_ltEs18(x0, x1, ty_Bool) 26.47/9.56 new_compare0(x0, x1, ty_Float) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) 26.47/9.56 new_ltEs10(Just(x0), Nothing, x1) 26.47/9.56 new_esEs33(x0, x1, ty_Double) 26.47/9.56 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.47/9.56 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs36(x0, x1, ty_Int) 26.47/9.56 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs4(x0, x1, ty_Bool) 26.47/9.56 new_esEs29(x0, x1, ty_Ordering) 26.47/9.56 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.47/9.56 new_esEs5(x0, x1, ty_Integer) 26.47/9.56 new_ltEs16(x0, x1) 26.47/9.56 new_compare13(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.47/9.56 new_compare13(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.47/9.56 new_esEs7(x0, x1, ty_Bool) 26.47/9.56 new_esEs31(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), ty_Float) 26.47/9.56 new_ltEs19(x0, x1, ty_@0) 26.47/9.56 new_esEs37(x0, x1, ty_Integer) 26.47/9.56 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.47/9.56 new_compare0(x0, x1, ty_Bool) 26.47/9.56 new_compare9(True, True) 26.47/9.56 new_lt23(x0, x1, ty_@0) 26.47/9.56 new_lt22(x0, x1, app(ty_[], x2)) 26.47/9.56 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs27(x0, x1, ty_@0) 26.47/9.56 new_esEs31(x0, x1, ty_Float) 26.47/9.56 new_esEs34(x0, x1, ty_Ordering) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, ty_Double) 26.47/9.56 new_esEs35(x0, x1, ty_Double) 26.47/9.56 new_ltEs18(x0, x1, ty_@0) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), ty_Int) 26.47/9.56 new_esEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs33(x0, x1, ty_Ordering) 26.47/9.56 new_esEs39(x0, x1, ty_@0) 26.47/9.56 new_esEs15(GT, GT) 26.47/9.56 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs22(x0, x1, ty_Float) 26.47/9.56 new_esEs9(x0, x1, ty_Ordering) 26.47/9.56 new_esEs15(LT, EQ) 26.47/9.56 new_esEs15(EQ, LT) 26.47/9.56 new_ltEs18(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_compare26(:(x0, x1), :(x2, x3), x4) 26.47/9.56 new_esEs33(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs31(x0, x1, ty_Int) 26.47/9.56 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_compare24(x0, x1, False, x2, x3) 26.47/9.56 new_esEs11(x0, x1, ty_@0) 26.47/9.56 new_esEs8(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs19(Left(x0), Left(x1), ty_Double, x2) 26.47/9.56 new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.47/9.56 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs5(x0, x1, ty_@0) 26.47/9.56 new_ltEs23(x0, x1, ty_@0) 26.47/9.56 new_ltEs24(x0, x1, ty_Int) 26.47/9.56 new_esEs10(x0, x1, ty_Ordering) 26.47/9.56 new_esEs20(Char(x0), Char(x1)) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), ty_Char) 26.47/9.56 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.47/9.56 new_esEs6(x0, x1, ty_Double) 26.47/9.56 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.47/9.56 new_esEs14(False, False) 26.47/9.56 new_ltEs21(x0, x1, ty_@0) 26.47/9.56 new_esEs11(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs8(x0, x1, ty_@0) 26.47/9.56 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 26.47/9.56 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs30(x0, x1, ty_Ordering) 26.47/9.56 new_lt4(x0, x1) 26.47/9.56 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_compare111(x0, x1, x2, x3, False, x4, x5) 26.47/9.56 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_compare0(x0, x1, ty_Integer) 26.47/9.56 new_esEs38(x0, x1, ty_Int) 26.47/9.56 new_compare27(GT, GT) 26.47/9.56 new_compare212(x0, x1, x2, x3, False, x4, x5) 26.47/9.56 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_ltEs11(x0, x1) 26.47/9.56 new_esEs32(x0, x1, ty_@0) 26.47/9.56 new_asAs(True, x0) 26.47/9.56 new_lt21(x0, x1, ty_Double) 26.47/9.56 new_compare27(LT, EQ) 26.47/9.56 new_compare27(EQ, LT) 26.47/9.56 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs38(x0, x1, ty_Float) 26.47/9.56 new_compare28(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.47/9.56 new_ltEs24(x0, x1, ty_Float) 26.47/9.56 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_primCmpNat0(Zero, Zero) 26.47/9.56 new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.47/9.56 new_compare25(x0, x1, True, x2, x3) 26.47/9.56 26.47/9.56 We have to consider all minimal (P,Q,R)-chains. 26.47/9.56 ---------------------------------------- 26.47/9.56 26.47/9.56 (21) DependencyGraphProof (EQUIVALENT) 26.47/9.56 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 2 less nodes. 26.47/9.56 ---------------------------------------- 26.47/9.56 26.47/9.56 (22) 26.47/9.56 Complex Obligation (AND) 26.47/9.56 26.47/9.56 ---------------------------------------- 26.47/9.56 26.47/9.56 (23) 26.47/9.56 Obligation: 26.47/9.56 Q DP problem: 26.47/9.56 The TRS P consists of the following rules: 26.47/9.56 26.47/9.56 new_delFromFM10(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, LT, bb, bc) -> new_delFromFM(xwv33, [], bb, bc) 26.47/9.56 new_delFromFM(Branch(:(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), [], bb, bc) -> new_delFromFM10(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, LT, bb, bc) 26.47/9.56 26.47/9.56 The TRS R consists of the following rules: 26.47/9.56 26.47/9.56 new_primCompAux00(xwv32, xwv33, EQ, ty_@0) -> new_compare6(xwv32, xwv33) 26.47/9.56 new_ltEs24(xwv54, xwv55, ty_Float) -> new_ltEs12(xwv54, xwv55) 26.47/9.56 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.47/9.56 new_esEs33(xwv540, xwv550, app(ty_Ratio, def)) -> new_esEs23(xwv540, xwv550, def) 26.47/9.56 new_esEs28(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.56 new_ltEs21(xwv83, xwv84, ty_Bool) -> new_ltEs8(xwv83, xwv84) 26.47/9.56 new_primPlusNat0(Zero, Zero) -> Zero 26.47/9.56 new_ltEs22(xwv76, xwv77, app(app(app(ty_@3, eeg), eeh), efa)) -> new_ltEs15(xwv76, xwv77, eeg, eeh, efa) 26.47/9.56 new_primCompAux1(xwv400, xwv300, xwv401, xwv301, bb) -> new_primCompAux00(xwv401, xwv301, new_compare0(xwv400, xwv300, bb), app(ty_[], bb)) 26.47/9.56 new_esEs24(@0, @0) -> True 26.47/9.56 new_pePe(True, xwv216) -> True 26.47/9.56 new_esEs10(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Integer, ffc) -> new_esEs26(xwv40000, xwv30000) 26.47/9.56 new_compare212(xwv113, xwv114, xwv115, xwv116, True, cdb, cdc) -> EQ 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(ty_@2, ffg), ffh), ffc) -> new_esEs21(xwv40000, xwv30000, ffg, ffh) 26.47/9.56 new_ltEs24(xwv54, xwv55, ty_Ordering) -> new_ltEs14(xwv54, xwv55) 26.47/9.56 new_esEs34(xwv541, xwv551, ty_Double) -> new_esEs17(xwv541, xwv551) 26.47/9.56 new_esEs35(xwv540, xwv550, app(ty_[], eaa)) -> new_esEs12(xwv540, xwv550, eaa) 26.47/9.56 new_esEs30(xwv40002, xwv30002, app(app(ty_@2, cgf), cgg)) -> new_esEs21(xwv40002, xwv30002, cgf, cgg) 26.47/9.56 new_esEs34(xwv541, xwv551, ty_Float) -> new_esEs22(xwv541, xwv551) 26.47/9.56 new_esEs13(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.56 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.47/9.56 new_compare27(LT, EQ) -> LT 26.47/9.56 new_lt6(xwv113, xwv115, ty_Char) -> new_lt8(xwv113, xwv115) 26.47/9.56 new_ltEs7(xwv54, xwv55) -> new_fsEs(new_compare16(xwv54, xwv55)) 26.47/9.56 new_compare27(LT, GT) -> LT 26.47/9.56 new_esEs32(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.47/9.56 new_esEs7(xwv4002, xwv3002, ty_Char) -> new_esEs20(xwv4002, xwv3002) 26.47/9.56 new_esEs28(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.47/9.56 new_esEs20(Char(xwv40000), Char(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 26.47/9.56 new_primMulNat0(Succ(xwv400000), Succ(xwv300100)) -> new_primPlusNat1(new_primMulNat0(xwv400000, Succ(xwv300100)), xwv300100) 26.47/9.56 new_compare111(xwv170, xwv171, xwv172, xwv173, False, bfd, bfe) -> GT 26.47/9.56 new_esEs39(xwv65, xwv68, ty_Ordering) -> new_esEs15(xwv65, xwv68) 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), ty_Int, da) -> new_ltEs6(xwv540, xwv550) 26.47/9.56 new_esEs10(xwv4000, xwv3000, app(ty_Maybe, bah)) -> new_esEs16(xwv4000, xwv3000, bah) 26.47/9.56 new_ltEs19(xwv541, xwv551, ty_Double) -> new_ltEs11(xwv541, xwv551) 26.47/9.56 new_ltEs5(Left(xwv540), Right(xwv550), ed, da) -> True 26.47/9.56 new_compare0(xwv400, xwv300, ty_@0) -> new_compare6(xwv400, xwv300) 26.47/9.56 new_esEs7(xwv4002, xwv3002, ty_Int) -> new_esEs18(xwv4002, xwv3002) 26.47/9.56 new_esEs34(xwv541, xwv551, ty_Ordering) -> new_esEs15(xwv541, xwv551) 26.47/9.56 new_lt19(xwv540, xwv550, app(ty_Ratio, def)) -> new_lt18(xwv540, xwv550, def) 26.47/9.56 new_ltEs20(xwv542, xwv552, ty_@0) -> new_ltEs4(xwv542, xwv552) 26.47/9.56 new_lt20(xwv541, xwv551, app(ty_[], dgg)) -> new_lt13(xwv541, xwv551, dgg) 26.47/9.56 new_esEs9(xwv4000, xwv3000, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs25(xwv4000, xwv3000, ccf, ccg, cch) 26.47/9.56 new_ltEs23(xwv67, xwv70, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(xwv67, xwv70, fcc, fcd) 26.47/9.56 new_compare18(Nothing, Just(xwv3000), bff) -> LT 26.47/9.56 new_primEqNat0(Succ(xwv400000), Succ(xwv300000)) -> new_primEqNat0(xwv400000, xwv300000) 26.47/9.56 new_ltEs22(xwv76, xwv77, app(ty_Maybe, eee)) -> new_ltEs10(xwv76, xwv77, eee) 26.47/9.56 new_ltEs21(xwv83, xwv84, ty_Char) -> new_ltEs7(xwv83, xwv84) 26.47/9.56 new_not(True) -> False 26.47/9.56 new_lt18(xwv113, xwv115, cee) -> new_esEs15(new_compare29(xwv113, xwv115, cee), LT) 26.47/9.56 new_esEs4(xwv4001, xwv3001, ty_Bool) -> new_esEs14(xwv4001, xwv3001) 26.47/9.56 new_esEs35(xwv540, xwv550, app(app(ty_@2, dhf), dhg)) -> new_esEs21(xwv540, xwv550, dhf, dhg) 26.47/9.56 new_esEs29(xwv113, xwv115, ty_Ordering) -> new_esEs15(xwv113, xwv115) 26.47/9.56 new_esEs38(xwv66, xwv69, app(ty_Ratio, fdg)) -> new_esEs23(xwv66, xwv69, fdg) 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), ty_Bool) -> new_ltEs8(xwv540, xwv550) 26.47/9.56 new_ltEs16(xwv54, xwv55) -> new_fsEs(new_compare8(xwv54, xwv55)) 26.47/9.56 new_esEs4(xwv4001, xwv3001, app(ty_[], ffa)) -> new_esEs12(xwv4001, xwv3001, ffa) 26.47/9.56 new_esEs30(xwv40002, xwv30002, ty_Bool) -> new_esEs14(xwv40002, xwv30002) 26.47/9.56 new_ltEs19(xwv541, xwv551, ty_Bool) -> new_ltEs8(xwv541, xwv551) 26.47/9.56 new_esEs30(xwv40002, xwv30002, ty_Int) -> new_esEs18(xwv40002, xwv30002) 26.47/9.56 new_compare11(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, False, xwv192, bdd, bde, bdf) -> new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, xwv192, bdd, bde, bdf) 26.47/9.56 new_primCompAux00(xwv32, xwv33, EQ, ty_Bool) -> new_compare9(xwv32, xwv33) 26.47/9.56 new_lt20(xwv541, xwv551, app(app(app(ty_@3, dgh), dha), dhb)) -> new_lt15(xwv541, xwv551, dgh, dha, dhb) 26.47/9.56 new_ltEs18(xwv114, xwv116, ty_@0) -> new_ltEs4(xwv114, xwv116) 26.47/9.56 new_esEs28(xwv40000, xwv30000, app(app(ty_@2, hg), hh)) -> new_esEs21(xwv40000, xwv30000, hg, hh) 26.47/9.56 new_ltEs24(xwv54, xwv55, ty_Integer) -> new_ltEs16(xwv54, xwv55) 26.47/9.56 new_compare28(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), bha, bhb, bhc) -> new_compare211(xwv4000, xwv4001, xwv4002, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs9(xwv4000, xwv3000, bha), new_asAs(new_esEs8(xwv4001, xwv3001, bhb), new_esEs7(xwv4002, xwv3002, bhc))), bha, bhb, bhc) 26.47/9.56 new_esEs37(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.56 new_primEqNat0(Succ(xwv400000), Zero) -> False 26.47/9.56 new_primEqNat0(Zero, Succ(xwv300000)) -> False 26.47/9.56 new_esEs10(xwv4000, xwv3000, app(app(ty_@2, bbc), bbd)) -> new_esEs21(xwv4000, xwv3000, bbc, bbd) 26.47/9.56 new_ltEs20(xwv542, xwv552, ty_Int) -> new_ltEs6(xwv542, xwv552) 26.47/9.56 new_esEs39(xwv65, xwv68, ty_Double) -> new_esEs17(xwv65, xwv68) 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Float, ffc) -> new_esEs22(xwv40000, xwv30000) 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), ty_@0, da) -> new_ltEs4(xwv540, xwv550) 26.47/9.56 new_esEs30(xwv40002, xwv30002, ty_Char) -> new_esEs20(xwv40002, xwv30002) 26.47/9.56 new_esEs14(False, True) -> False 26.47/9.56 new_esEs14(True, False) -> False 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), app(app(ty_Either, ea), eb), da) -> new_ltEs5(xwv540, xwv550, ea, eb) 26.47/9.56 new_esEs29(xwv113, xwv115, ty_Double) -> new_esEs17(xwv113, xwv115) 26.47/9.56 new_ltEs14(EQ, EQ) -> True 26.47/9.56 new_ltEs10(Nothing, Just(xwv550), egc) -> True 26.47/9.56 new_esEs13(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), ty_Double) -> new_ltEs11(xwv540, xwv550) 26.47/9.56 new_ltEs21(xwv83, xwv84, ty_Double) -> new_ltEs11(xwv83, xwv84) 26.47/9.56 new_primCmpInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> GT 26.47/9.56 new_esEs6(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.47/9.56 new_esEs10(xwv4000, xwv3000, app(ty_[], bca)) -> new_esEs12(xwv4000, xwv3000, bca) 26.47/9.56 new_lt23(xwv66, xwv69, ty_Integer) -> new_lt17(xwv66, xwv69) 26.47/9.56 new_esEs35(xwv540, xwv550, ty_Bool) -> new_esEs14(xwv540, xwv550) 26.47/9.56 new_esEs5(xwv4000, xwv3000, app(app(ty_Either, ffb), ffc)) -> new_esEs19(xwv4000, xwv3000, ffb, ffc) 26.47/9.56 new_primCompAux00(xwv32, xwv33, GT, bea) -> GT 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), ty_Char) -> new_ltEs7(xwv540, xwv550) 26.47/9.56 new_compare27(EQ, GT) -> LT 26.47/9.56 new_primCmpNat0(Zero, Succ(xwv30000)) -> LT 26.47/9.56 new_esEs4(xwv4001, xwv3001, app(app(ty_@2, fec), fed)) -> new_esEs21(xwv4001, xwv3001, fec, fed) 26.47/9.56 new_lt20(xwv541, xwv551, ty_@0) -> new_lt12(xwv541, xwv551) 26.47/9.56 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(ty_[], fhg)) -> new_esEs12(xwv40000, xwv30000, fhg) 26.47/9.56 new_primCompAux00(xwv32, xwv33, EQ, app(ty_[], bee)) -> new_compare26(xwv32, xwv33, bee) 26.47/9.56 new_esEs6(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.47/9.56 new_esEs9(xwv4000, xwv3000, app(ty_[], cda)) -> new_esEs12(xwv4000, xwv3000, cda) 26.47/9.56 new_ltEs19(xwv541, xwv551, ty_Char) -> new_ltEs7(xwv541, xwv551) 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Ordering, ffc) -> new_esEs15(xwv40000, xwv30000) 26.47/9.56 new_esEs15(GT, GT) -> True 26.47/9.56 new_esEs6(xwv4000, xwv3000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs25(xwv4000, xwv3000, bge, bgf, bgg) 26.47/9.56 new_ltEs9(@2(xwv540, xwv541), @2(xwv550, xwv551), dca, dcb) -> new_pePe(new_lt19(xwv540, xwv550, dca), new_asAs(new_esEs33(xwv540, xwv550, dca), new_ltEs19(xwv541, xwv551, dcb))) 26.47/9.56 new_esEs10(xwv4000, xwv3000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs25(xwv4000, xwv3000, bbf, bbg, bbh) 26.47/9.56 new_esEs11(xwv4000, xwv3000, app(ty_Ratio, bcg)) -> new_esEs23(xwv4000, xwv3000, bcg) 26.47/9.56 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.47/9.56 new_esEs28(xwv40000, xwv30000, app(ty_Maybe, hd)) -> new_esEs16(xwv40000, xwv30000, hd) 26.47/9.56 new_ltEs19(xwv541, xwv551, ty_Ordering) -> new_ltEs14(xwv541, xwv551) 26.47/9.56 new_esEs8(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 26.47/9.56 new_esEs7(xwv4002, xwv3002, app(ty_Maybe, bhd)) -> new_esEs16(xwv4002, xwv3002, bhd) 26.47/9.56 new_esEs38(xwv66, xwv69, app(ty_[], fda)) -> new_esEs12(xwv66, xwv69, fda) 26.47/9.56 new_lt21(xwv540, xwv550, ty_Int) -> new_lt7(xwv540, xwv550) 26.47/9.56 new_esEs31(xwv40001, xwv30001, app(app(ty_Either, chf), chg)) -> new_esEs19(xwv40001, xwv30001, chf, chg) 26.47/9.56 new_ltEs14(EQ, GT) -> True 26.47/9.56 new_ltEs6(xwv54, xwv55) -> new_fsEs(new_compare15(xwv54, xwv55)) 26.47/9.56 new_esEs13(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.47/9.56 new_compare0(xwv400, xwv300, app(app(ty_Either, baf), bag)) -> new_compare7(xwv400, xwv300, baf, bag) 26.47/9.56 new_primEqInt(Neg(Succ(xwv400000)), Neg(Succ(xwv300000))) -> new_primEqNat0(xwv400000, xwv300000) 26.47/9.56 new_compare15(xwv400, xwv300) -> new_primCmpInt(xwv400, xwv300) 26.47/9.56 new_primCmpInt(Neg(Zero), Pos(Succ(xwv30000))) -> LT 26.47/9.56 new_lt22(xwv65, xwv68, app(app(app(ty_@3, faf), fag), fah)) -> new_lt15(xwv65, xwv68, faf, fag, fah) 26.47/9.56 new_lt23(xwv66, xwv69, app(ty_[], fda)) -> new_lt13(xwv66, xwv69, fda) 26.47/9.56 new_primMulInt(Pos(xwv40000), Pos(xwv30010)) -> Pos(new_primMulNat0(xwv40000, xwv30010)) 26.47/9.56 new_ltEs8(True, False) -> False 26.47/9.56 new_ltEs14(LT, GT) -> True 26.47/9.56 new_ltEs14(GT, GT) -> True 26.47/9.56 new_ltEs22(xwv76, xwv77, ty_Int) -> new_ltEs6(xwv76, xwv77) 26.47/9.56 new_esEs32(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.56 new_esEs11(xwv4000, xwv3000, app(app(ty_Either, bcc), bcd)) -> new_esEs19(xwv4000, xwv3000, bcc, bcd) 26.47/9.56 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.47/9.56 new_esEs28(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(app(ty_@3, fgb), fgc), fgd), ffc) -> new_esEs25(xwv40000, xwv30000, fgb, fgc, fgd) 26.47/9.56 new_compare10(xwv141, xwv142, True, cg) -> LT 26.47/9.56 new_ltEs22(xwv76, xwv77, ty_Integer) -> new_ltEs16(xwv76, xwv77) 26.47/9.56 new_primMulNat0(Succ(xwv400000), Zero) -> Zero 26.47/9.56 new_primMulNat0(Zero, Succ(xwv300100)) -> Zero 26.47/9.56 new_ltEs8(False, False) -> True 26.47/9.56 new_esEs8(xwv4001, xwv3001, ty_Float) -> new_esEs22(xwv4001, xwv3001) 26.47/9.56 new_primCompAux00(xwv32, xwv33, EQ, ty_Integer) -> new_compare8(xwv32, xwv33) 26.47/9.56 new_lt6(xwv113, xwv115, app(app(ty_@2, cdd), cde)) -> new_lt9(xwv113, xwv115, cdd, cde) 26.47/9.56 new_esEs6(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.47/9.56 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.56 new_primPlusNat1(Succ(xwv2220), xwv300100) -> Succ(Succ(new_primPlusNat0(xwv2220, xwv300100))) 26.47/9.56 new_lt23(xwv66, xwv69, ty_Float) -> new_lt11(xwv66, xwv69) 26.47/9.56 new_ltEs19(xwv541, xwv551, ty_Float) -> new_ltEs12(xwv541, xwv551) 26.47/9.56 new_compare0(xwv400, xwv300, ty_Bool) -> new_compare9(xwv400, xwv300) 26.47/9.56 new_ltEs22(xwv76, xwv77, app(app(ty_@2, eec), eed)) -> new_ltEs9(xwv76, xwv77, eec, eed) 26.47/9.56 new_primPlusNat0(Succ(xwv33200), Zero) -> Succ(xwv33200) 26.47/9.56 new_primPlusNat0(Zero, Succ(xwv24200)) -> Succ(xwv24200) 26.47/9.56 new_compare9(True, True) -> EQ 26.47/9.56 new_primPlusNat1(Zero, xwv300100) -> Succ(xwv300100) 26.47/9.56 new_lt23(xwv66, xwv69, ty_Int) -> new_lt7(xwv66, xwv69) 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), app(app(app(ty_@3, df), dg), dh), da) -> new_ltEs15(xwv540, xwv550, df, dg, dh) 26.47/9.56 new_esEs7(xwv4002, xwv3002, app(app(ty_Either, bhe), bhf)) -> new_esEs19(xwv4002, xwv3002, bhe, bhf) 26.47/9.56 new_esEs4(xwv4001, xwv3001, app(ty_Maybe, fdh)) -> new_esEs16(xwv4001, xwv3001, fdh) 26.47/9.56 new_ltEs19(xwv541, xwv551, ty_Integer) -> new_ltEs16(xwv541, xwv551) 26.47/9.56 new_esEs8(xwv4001, xwv3001, ty_Integer) -> new_esEs26(xwv4001, xwv3001) 26.47/9.56 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.47/9.56 new_esEs7(xwv4002, xwv3002, app(app(ty_@2, bhg), bhh)) -> new_esEs21(xwv4002, xwv3002, bhg, bhh) 26.47/9.56 new_lt6(xwv113, xwv115, ty_Ordering) -> new_lt14(xwv113, xwv115) 26.47/9.56 new_esEs38(xwv66, xwv69, ty_Char) -> new_esEs20(xwv66, xwv69) 26.47/9.56 new_esEs4(xwv4001, xwv3001, ty_Char) -> new_esEs20(xwv4001, xwv3001) 26.47/9.56 new_esEs9(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.47/9.56 new_lt6(xwv113, xwv115, app(ty_Ratio, cee)) -> new_lt18(xwv113, xwv115, cee) 26.47/9.56 new_esEs16(Just(xwv40000), Just(xwv30000), ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.47/9.56 new_esEs34(xwv541, xwv551, ty_Integer) -> new_esEs26(xwv541, xwv551) 26.47/9.56 new_ltEs4(xwv54, xwv55) -> new_fsEs(new_compare6(xwv54, xwv55)) 26.47/9.56 new_esEs33(xwv540, xwv550, app(app(ty_Either, ded), dee)) -> new_esEs19(xwv540, xwv550, ded, dee) 26.47/9.56 new_esEs31(xwv40001, xwv30001, ty_Double) -> new_esEs17(xwv40001, xwv30001) 26.47/9.56 new_esEs30(xwv40002, xwv30002, app(ty_Maybe, cgc)) -> new_esEs16(xwv40002, xwv30002, cgc) 26.47/9.56 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Float) -> new_ltEs12(xwv540, xwv550) 26.47/9.56 new_lt21(xwv540, xwv550, app(ty_Ratio, eag)) -> new_lt18(xwv540, xwv550, eag) 26.47/9.56 new_ltEs20(xwv542, xwv552, app(app(app(ty_@3, dff), dfg), dfh)) -> new_ltEs15(xwv542, xwv552, dff, dfg, dfh) 26.47/9.56 new_compare212(xwv113, xwv114, xwv115, xwv116, False, cdb, cdc) -> new_compare110(xwv113, xwv114, xwv115, xwv116, new_lt6(xwv113, xwv115, cdb), new_asAs(new_esEs29(xwv113, xwv115, cdb), new_ltEs18(xwv114, xwv116, cdc)), cdb, cdc) 26.47/9.56 new_compare0(xwv400, xwv300, ty_Char) -> new_compare16(xwv400, xwv300) 26.47/9.56 new_esEs27(xwv40001, xwv30001, ty_Ordering) -> new_esEs15(xwv40001, xwv30001) 26.47/9.56 new_esEs32(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.47/9.56 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Integer) -> new_ltEs16(xwv540, xwv550) 26.47/9.56 new_lt20(xwv541, xwv551, app(ty_Maybe, dgf)) -> new_lt10(xwv541, xwv551, dgf) 26.47/9.56 new_esEs38(xwv66, xwv69, ty_Int) -> new_esEs18(xwv66, xwv69) 26.47/9.56 new_esEs13(xwv40000, xwv30000, app(ty_Ratio, cb)) -> new_esEs23(xwv40000, xwv30000, cb) 26.47/9.56 new_lt23(xwv66, xwv69, ty_@0) -> new_lt12(xwv66, xwv69) 26.47/9.56 new_esEs10(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.47/9.56 new_esEs8(xwv4001, xwv3001, app(app(ty_Either, cag), cah)) -> new_esEs19(xwv4001, xwv3001, cag, cah) 26.47/9.56 new_lt19(xwv540, xwv550, app(app(ty_@2, dde), ddf)) -> new_lt9(xwv540, xwv550, dde, ddf) 26.47/9.56 new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_@2, beb), bec)) -> new_compare17(xwv32, xwv33, beb, bec) 26.47/9.56 new_esEs38(xwv66, xwv69, ty_Bool) -> new_esEs14(xwv66, xwv69) 26.47/9.56 new_esEs13(xwv40000, xwv30000, app(ty_[], cf)) -> new_esEs12(xwv40000, xwv30000, cf) 26.47/9.56 new_ltEs21(xwv83, xwv84, ty_Float) -> new_ltEs12(xwv83, xwv84) 26.47/9.56 new_esEs32(xwv40000, xwv30000, app(app(app(ty_@3, dbe), dbf), dbg)) -> new_esEs25(xwv40000, xwv30000, dbe, dbf, dbg) 26.47/9.56 new_ltEs8(False, True) -> True 26.47/9.56 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(app(ty_@3, ede), edf), edg)) -> new_esEs25(xwv40000, xwv30000, ede, edf, edg) 26.47/9.56 new_lt22(xwv65, xwv68, ty_Ordering) -> new_lt14(xwv65, xwv68) 26.47/9.56 new_compare24(xwv76, xwv77, False, eea, eeb) -> new_compare14(xwv76, xwv77, new_ltEs22(xwv76, xwv77, eea), eea, eeb) 26.47/9.56 new_esEs9(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.47/9.56 new_esEs27(xwv40001, xwv30001, ty_Bool) -> new_esEs14(xwv40001, xwv30001) 26.47/9.56 new_compare26([], :(xwv3000, xwv3001), efg) -> LT 26.47/9.56 new_esEs11(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.47/9.56 new_lt19(xwv540, xwv550, ty_Ordering) -> new_lt14(xwv540, xwv550) 26.47/9.56 new_lt22(xwv65, xwv68, ty_Bool) -> new_lt4(xwv65, xwv68) 26.47/9.56 new_esEs11(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.47/9.56 new_ltEs23(xwv67, xwv70, ty_Double) -> new_ltEs11(xwv67, xwv70) 26.47/9.56 new_compare7(Left(xwv4000), Right(xwv3000), baf, bag) -> LT 26.47/9.56 new_compare13(Double(xwv4000, Pos(xwv40010)), Double(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.47/9.56 new_compare13(Double(xwv4000, Neg(xwv40010)), Double(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.47/9.56 new_esEs36(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.47/9.56 new_esEs10(xwv4000, xwv3000, app(ty_Ratio, bbe)) -> new_esEs23(xwv4000, xwv3000, bbe) 26.47/9.56 new_esEs15(LT, LT) -> True 26.47/9.56 new_esEs32(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.47/9.56 new_esEs11(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), app(app(ty_@2, egd), ege)) -> new_ltEs9(xwv540, xwv550, egd, ege) 26.47/9.56 new_lt6(xwv113, xwv115, app(app(app(ty_@3, cdh), cea), ceb)) -> new_lt15(xwv113, xwv115, cdh, cea, ceb) 26.47/9.56 new_esEs4(xwv4001, xwv3001, ty_Integer) -> new_esEs26(xwv4001, xwv3001) 26.47/9.56 new_lt20(xwv541, xwv551, ty_Float) -> new_lt11(xwv541, xwv551) 26.47/9.56 new_esEs7(xwv4002, xwv3002, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs25(xwv4002, xwv3002, cab, cac, cad) 26.47/9.56 new_esEs33(xwv540, xwv550, ty_Bool) -> new_esEs14(xwv540, xwv550) 26.47/9.56 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(ty_[], eh)) -> new_ltEs13(xwv540, xwv550, eh) 26.47/9.56 new_esEs34(xwv541, xwv551, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs25(xwv541, xwv551, dgh, dha, dhb) 26.47/9.56 new_lt22(xwv65, xwv68, app(ty_[], fae)) -> new_lt13(xwv65, xwv68, fae) 26.47/9.56 new_lt19(xwv540, xwv550, ty_Integer) -> new_lt17(xwv540, xwv550) 26.47/9.56 new_esEs31(xwv40001, xwv30001, app(ty_Ratio, dab)) -> new_esEs23(xwv40001, xwv30001, dab) 26.47/9.56 new_lt23(xwv66, xwv69, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_lt15(xwv66, xwv69, fdb, fdc, fdd) 26.47/9.56 new_esEs32(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.47/9.56 new_lt22(xwv65, xwv68, ty_@0) -> new_lt12(xwv65, xwv68) 26.47/9.56 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.56 new_compare111(xwv170, xwv171, xwv172, xwv173, True, bfd, bfe) -> LT 26.47/9.56 new_esEs5(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.47/9.56 new_lt9(xwv113, xwv115, cdd, cde) -> new_esEs15(new_compare17(xwv113, xwv115, cdd, cde), LT) 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_Ratio, ec), da) -> new_ltEs17(xwv540, xwv550, ec) 26.47/9.56 new_esEs35(xwv540, xwv550, app(ty_Ratio, eag)) -> new_esEs23(xwv540, xwv550, eag) 26.47/9.56 new_ltEs5(Right(xwv540), Left(xwv550), ed, da) -> False 26.47/9.56 new_esEs33(xwv540, xwv550, app(ty_Maybe, ddg)) -> new_esEs16(xwv540, xwv550, ddg) 26.47/9.56 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.47/9.56 new_esEs11(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.47/9.56 new_esEs9(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.47/9.56 new_esEs7(xwv4002, xwv3002, ty_@0) -> new_esEs24(xwv4002, xwv3002) 26.47/9.56 new_lt21(xwv540, xwv550, ty_Char) -> new_lt8(xwv540, xwv550) 26.47/9.56 new_esEs34(xwv541, xwv551, ty_@0) -> new_esEs24(xwv541, xwv551) 26.47/9.56 new_compare24(xwv76, xwv77, True, eea, eeb) -> EQ 26.47/9.56 new_esEs39(xwv65, xwv68, app(app(app(ty_@3, faf), fag), fah)) -> new_esEs25(xwv65, xwv68, faf, fag, fah) 26.47/9.56 new_ltEs8(True, True) -> True 26.47/9.56 new_primCmpInt(Pos(Succ(xwv40000)), Pos(xwv3000)) -> new_primCmpNat0(Succ(xwv40000), xwv3000) 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_Maybe, dd), da) -> new_ltEs10(xwv540, xwv550, dd) 26.47/9.56 new_esEs39(xwv65, xwv68, app(app(ty_Either, fba), fbb)) -> new_esEs19(xwv65, xwv68, fba, fbb) 26.47/9.56 new_lt7(xwv113, xwv115) -> new_esEs15(new_compare15(xwv113, xwv115), LT) 26.47/9.56 new_lt15(xwv113, xwv115, cdh, cea, ceb) -> new_esEs15(new_compare28(xwv113, xwv115, cdh, cea, ceb), LT) 26.47/9.56 new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_Either, bfa), bfb)) -> new_compare7(xwv32, xwv33, bfa, bfb) 26.47/9.56 new_lt19(xwv540, xwv550, ty_Char) -> new_lt8(xwv540, xwv550) 26.47/9.56 new_esEs35(xwv540, xwv550, ty_Integer) -> new_esEs26(xwv540, xwv550) 26.47/9.56 new_esEs13(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.47/9.56 new_esEs34(xwv541, xwv551, app(app(ty_Either, dhc), dhd)) -> new_esEs19(xwv541, xwv551, dhc, dhd) 26.47/9.56 new_esEs13(xwv40000, xwv30000, app(app(app(ty_@3, cc), cd), ce)) -> new_esEs25(xwv40000, xwv30000, cc, cd, ce) 26.47/9.56 new_esEs9(xwv4000, xwv3000, app(app(ty_@2, ccc), ccd)) -> new_esEs21(xwv4000, xwv3000, ccc, ccd) 26.47/9.56 new_ltEs18(xwv114, xwv116, app(ty_[], cfa)) -> new_ltEs13(xwv114, xwv116, cfa) 26.47/9.56 new_ltEs24(xwv54, xwv55, app(ty_[], ehf)) -> new_ltEs13(xwv54, xwv55, ehf) 26.47/9.56 new_ltEs11(xwv54, xwv55) -> new_fsEs(new_compare13(xwv54, xwv55)) 26.47/9.56 new_compare17(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), efe, eff) -> new_compare212(xwv4000, xwv4001, xwv3000, xwv3001, new_asAs(new_esEs5(xwv4000, xwv3000, efe), new_esEs4(xwv4001, xwv3001, eff)), efe, eff) 26.47/9.56 new_esEs31(xwv40001, xwv30001, ty_Char) -> new_esEs20(xwv40001, xwv30001) 26.47/9.56 new_lt20(xwv541, xwv551, ty_Ordering) -> new_lt14(xwv541, xwv551) 26.47/9.56 new_compare26(:(xwv4000, xwv4001), [], efg) -> GT 26.47/9.56 new_esEs27(xwv40001, xwv30001, app(app(ty_@2, ge), gf)) -> new_esEs21(xwv40001, xwv30001, ge, gf) 26.47/9.56 new_esEs38(xwv66, xwv69, app(ty_Maybe, fch)) -> new_esEs16(xwv66, xwv69, fch) 26.47/9.56 new_lt19(xwv540, xwv550, ty_Int) -> new_lt7(xwv540, xwv550) 26.47/9.56 new_lt20(xwv541, xwv551, ty_Char) -> new_lt8(xwv541, xwv551) 26.47/9.56 new_esEs35(xwv540, xwv550, app(app(app(ty_@3, eab), eac), ead)) -> new_esEs25(xwv540, xwv550, eab, eac, ead) 26.47/9.56 new_esEs35(xwv540, xwv550, ty_@0) -> new_esEs24(xwv540, xwv550) 26.47/9.56 new_compare0(xwv400, xwv300, app(app(ty_@2, efe), eff)) -> new_compare17(xwv400, xwv300, efe, eff) 26.47/9.56 new_ltEs24(xwv54, xwv55, app(app(ty_@2, dca), dcb)) -> new_ltEs9(xwv54, xwv55, dca, dcb) 26.47/9.56 new_lt22(xwv65, xwv68, app(app(ty_Either, fba), fbb)) -> new_lt16(xwv65, xwv68, fba, fbb) 26.47/9.56 new_compare26([], [], efg) -> EQ 26.47/9.56 new_lt8(xwv113, xwv115) -> new_esEs15(new_compare16(xwv113, xwv115), LT) 26.47/9.56 new_lt6(xwv113, xwv115, ty_Bool) -> new_lt4(xwv113, xwv115) 26.47/9.56 new_lt20(xwv541, xwv551, ty_Int) -> new_lt7(xwv541, xwv551) 26.47/9.56 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Double) -> new_ltEs11(xwv540, xwv550) 26.47/9.56 new_esEs14(False, False) -> True 26.47/9.56 new_esEs32(xwv40000, xwv30000, app(ty_Maybe, dag)) -> new_esEs16(xwv40000, xwv30000, dag) 26.47/9.56 new_esEs35(xwv540, xwv550, app(app(ty_Either, eae), eaf)) -> new_esEs19(xwv540, xwv550, eae, eaf) 26.47/9.56 new_esEs36(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.47/9.56 new_compare0(xwv400, xwv300, app(ty_[], efg)) -> new_compare26(xwv400, xwv300, efg) 26.47/9.56 new_lt21(xwv540, xwv550, ty_Bool) -> new_lt4(xwv540, xwv550) 26.47/9.56 new_esEs35(xwv540, xwv550, ty_Int) -> new_esEs18(xwv540, xwv550) 26.47/9.56 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_Maybe, ecg)) -> new_esEs16(xwv40000, xwv30000, ecg) 26.47/9.56 new_lt21(xwv540, xwv550, ty_Float) -> new_lt11(xwv540, xwv550) 26.47/9.56 new_esEs34(xwv541, xwv551, ty_Bool) -> new_esEs14(xwv541, xwv551) 26.47/9.56 new_esEs31(xwv40001, xwv30001, ty_Ordering) -> new_esEs15(xwv40001, xwv30001) 26.47/9.56 new_primCompAux00(xwv32, xwv33, EQ, ty_Char) -> new_compare16(xwv32, xwv33) 26.47/9.56 new_lt22(xwv65, xwv68, ty_Char) -> new_lt8(xwv65, xwv68) 26.47/9.56 new_esEs11(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.47/9.56 new_esEs13(xwv40000, xwv30000, app(ty_Maybe, be)) -> new_esEs16(xwv40000, xwv30000, be) 26.47/9.56 new_esEs15(EQ, EQ) -> True 26.47/9.56 new_esEs35(xwv540, xwv550, ty_Char) -> new_esEs20(xwv540, xwv550) 26.47/9.56 new_esEs10(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.47/9.56 new_fsEs(xwv211) -> new_not(new_esEs15(xwv211, GT)) 26.47/9.56 new_ltEs20(xwv542, xwv552, app(ty_[], dfe)) -> new_ltEs13(xwv542, xwv552, dfe) 26.47/9.56 new_esEs38(xwv66, xwv69, app(app(ty_Either, fde), fdf)) -> new_esEs19(xwv66, xwv69, fde, fdf) 26.47/9.56 new_esEs11(xwv4000, xwv3000, app(ty_Maybe, bcb)) -> new_esEs16(xwv4000, xwv3000, bcb) 26.47/9.56 new_ltEs24(xwv54, xwv55, ty_Double) -> new_ltEs11(xwv54, xwv55) 26.47/9.56 new_lt12(xwv113, xwv115) -> new_esEs15(new_compare6(xwv113, xwv115), LT) 26.47/9.56 new_esEs10(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.47/9.56 new_lt16(xwv113, xwv115, cec, ced) -> new_esEs15(new_compare7(xwv113, xwv115, cec, ced), LT) 26.47/9.56 new_esEs6(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.47/9.56 new_esEs34(xwv541, xwv551, app(ty_Maybe, dgf)) -> new_esEs16(xwv541, xwv551, dgf) 26.47/9.56 new_primPlusNat0(Succ(xwv33200), Succ(xwv24200)) -> Succ(Succ(new_primPlusNat0(xwv33200, xwv24200))) 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), ty_Ordering, da) -> new_ltEs14(xwv540, xwv550) 26.47/9.56 new_esEs7(xwv4002, xwv3002, app(ty_[], cae)) -> new_esEs12(xwv4002, xwv3002, cae) 26.47/9.56 new_esEs33(xwv540, xwv550, ty_Int) -> new_esEs18(xwv540, xwv550) 26.47/9.56 new_ltEs10(Just(xwv540), Nothing, egc) -> False 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_Ratio, fga), ffc) -> new_esEs23(xwv40000, xwv30000, fga) 26.47/9.56 new_ltEs10(Nothing, Nothing, egc) -> True 26.47/9.56 new_esEs4(xwv4001, xwv3001, app(app(ty_Either, fea), feb)) -> new_esEs19(xwv4001, xwv3001, fea, feb) 26.47/9.56 new_esEs4(xwv4001, xwv3001, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs25(xwv4001, xwv3001, fef, feg, feh) 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), app(app(ty_@2, db), dc), da) -> new_ltEs9(xwv540, xwv550, db, dc) 26.47/9.56 new_esEs4(xwv4001, xwv3001, ty_@0) -> new_esEs24(xwv4001, xwv3001) 26.47/9.56 new_esEs13(xwv40000, xwv30000, app(app(ty_Either, bf), bg)) -> new_esEs19(xwv40000, xwv30000, bf, bg) 26.47/9.56 new_esEs28(xwv40000, xwv30000, app(ty_Ratio, baa)) -> new_esEs23(xwv40000, xwv30000, baa) 26.47/9.56 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(app(ty_@2, fha), fhb)) -> new_esEs21(xwv40000, xwv30000, fha, fhb) 26.47/9.56 new_lt6(xwv113, xwv115, app(app(ty_Either, cec), ced)) -> new_lt16(xwv113, xwv115, cec, ced) 26.47/9.56 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_Ratio, edd)) -> new_esEs23(xwv40000, xwv30000, edd) 26.47/9.56 new_esEs32(xwv40000, xwv30000, app(ty_Ratio, dbd)) -> new_esEs23(xwv40000, xwv30000, dbd) 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), ty_@0, ffc) -> new_esEs24(xwv40000, xwv30000) 26.47/9.56 new_compare18(Nothing, Nothing, bff) -> EQ 26.47/9.56 new_compare16(Char(xwv4000), Char(xwv3000)) -> new_primCmpNat0(xwv4000, xwv3000) 26.47/9.56 new_ltEs22(xwv76, xwv77, ty_Double) -> new_ltEs11(xwv76, xwv77) 26.47/9.56 new_lt21(xwv540, xwv550, app(app(ty_Either, eae), eaf)) -> new_lt16(xwv540, xwv550, eae, eaf) 26.47/9.56 new_lt19(xwv540, xwv550, ty_Bool) -> new_lt4(xwv540, xwv550) 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), ty_Float, da) -> new_ltEs12(xwv540, xwv550) 26.47/9.56 new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, bdd, bde, bdf) -> LT 26.47/9.56 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.47/9.56 new_esEs27(xwv40001, xwv30001, ty_Double) -> new_esEs17(xwv40001, xwv30001) 26.47/9.56 new_esEs5(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.47/9.56 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.47/9.56 new_lt4(xwv113, xwv115) -> new_esEs15(new_compare9(xwv113, xwv115), LT) 26.47/9.56 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(app(ty_@2, ee), ef)) -> new_ltEs9(xwv540, xwv550, ee, ef) 26.47/9.56 new_esEs39(xwv65, xwv68, ty_Float) -> new_esEs22(xwv65, xwv68) 26.47/9.56 new_esEs31(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.47/9.56 new_esEs5(xwv4000, xwv3000, app(ty_[], bd)) -> new_esEs12(xwv4000, xwv3000, bd) 26.47/9.56 new_lt6(xwv113, xwv115, ty_Integer) -> new_lt17(xwv113, xwv115) 26.47/9.56 new_lt20(xwv541, xwv551, app(app(ty_Either, dhc), dhd)) -> new_lt16(xwv541, xwv551, dhc, dhd) 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), ty_Integer, da) -> new_ltEs16(xwv540, xwv550) 26.47/9.56 new_esEs38(xwv66, xwv69, ty_Float) -> new_esEs22(xwv66, xwv69) 26.47/9.56 new_primCmpNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primCmpNat0(xwv40000, xwv30000) 26.47/9.56 new_compare13(Double(xwv4000, Neg(xwv40010)), Double(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.47/9.56 new_ltEs23(xwv67, xwv70, app(ty_[], fbg)) -> new_ltEs13(xwv67, xwv70, fbg) 26.47/9.56 new_compare0(xwv400, xwv300, ty_Int) -> new_compare15(xwv400, xwv300) 26.47/9.56 new_esEs38(xwv66, xwv69, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_esEs25(xwv66, xwv69, fdb, fdc, fdd) 26.47/9.56 new_esEs39(xwv65, xwv68, ty_@0) -> new_esEs24(xwv65, xwv68) 26.47/9.56 new_esEs29(xwv113, xwv115, app(ty_Ratio, cee)) -> new_esEs23(xwv113, xwv115, cee) 26.47/9.56 new_lt19(xwv540, xwv550, ty_Float) -> new_lt11(xwv540, xwv550) 26.47/9.56 new_lt21(xwv540, xwv550, ty_Integer) -> new_lt17(xwv540, xwv550) 26.47/9.56 new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, False, bdd, bde, bdf) -> GT 26.47/9.56 new_esEs30(xwv40002, xwv30002, app(ty_Ratio, cgh)) -> new_esEs23(xwv40002, xwv30002, cgh) 26.47/9.56 new_compare14(xwv150, xwv151, False, bdg, bdh) -> GT 26.47/9.56 new_esEs32(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.47/9.56 new_lt20(xwv541, xwv551, ty_Integer) -> new_lt17(xwv541, xwv551) 26.47/9.56 new_ltEs22(xwv76, xwv77, app(ty_[], eef)) -> new_ltEs13(xwv76, xwv77, eef) 26.47/9.56 new_lt17(xwv113, xwv115) -> new_esEs15(new_compare8(xwv113, xwv115), LT) 26.47/9.56 new_ltEs14(LT, LT) -> True 26.47/9.56 new_esEs33(xwv540, xwv550, ty_Char) -> new_esEs20(xwv540, xwv550) 26.47/9.56 new_esEs19(Left(xwv40000), Right(xwv30000), ffb, ffc) -> False 26.47/9.56 new_esEs19(Right(xwv40000), Left(xwv30000), ffb, ffc) -> False 26.47/9.56 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.56 new_esEs4(xwv4001, xwv3001, ty_Float) -> new_esEs22(xwv4001, xwv3001) 26.47/9.56 new_esEs32(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.56 new_esEs35(xwv540, xwv550, app(ty_Maybe, dhh)) -> new_esEs16(xwv540, xwv550, dhh) 26.47/9.56 new_esEs6(xwv4000, xwv3000, app(ty_[], bgh)) -> new_esEs12(xwv4000, xwv3000, bgh) 26.47/9.56 new_esEs38(xwv66, xwv69, ty_@0) -> new_esEs24(xwv66, xwv69) 26.47/9.56 new_esEs39(xwv65, xwv68, ty_Integer) -> new_esEs26(xwv65, xwv68) 26.47/9.56 new_esEs33(xwv540, xwv550, ty_Ordering) -> new_esEs15(xwv540, xwv550) 26.47/9.56 new_compare9(False, True) -> LT 26.47/9.56 new_lt19(xwv540, xwv550, app(app(ty_Either, ded), dee)) -> new_lt16(xwv540, xwv550, ded, dee) 26.47/9.56 new_esEs10(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.47/9.56 new_esEs29(xwv113, xwv115, app(ty_Maybe, cdf)) -> new_esEs16(xwv113, xwv115, cdf) 26.47/9.56 new_primCmpInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> LT 26.47/9.56 new_esEs29(xwv113, xwv115, app(ty_[], cdg)) -> new_esEs12(xwv113, xwv115, cdg) 26.47/9.56 new_primCompAux00(xwv32, xwv33, EQ, ty_Double) -> new_compare13(xwv32, xwv33) 26.47/9.56 new_lt22(xwv65, xwv68, ty_Double) -> new_lt5(xwv65, xwv68) 26.47/9.56 new_compare27(GT, EQ) -> GT 26.47/9.56 new_ltEs18(xwv114, xwv116, ty_Ordering) -> new_ltEs14(xwv114, xwv116) 26.47/9.56 new_esEs7(xwv4002, xwv3002, ty_Float) -> new_esEs22(xwv4002, xwv3002) 26.47/9.56 new_compare9(False, False) -> EQ 26.47/9.56 new_esEs28(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.47/9.56 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(app(app(ty_@3, fhd), fhe), fhf)) -> new_esEs25(xwv40000, xwv30000, fhd, fhe, fhf) 26.47/9.56 new_lt22(xwv65, xwv68, ty_Float) -> new_lt11(xwv65, xwv68) 26.47/9.56 new_esEs7(xwv4002, xwv3002, ty_Double) -> new_esEs17(xwv4002, xwv3002) 26.47/9.56 new_ltEs18(xwv114, xwv116, ty_Float) -> new_ltEs12(xwv114, xwv116) 26.47/9.56 new_esEs8(xwv4001, xwv3001, app(ty_[], cbg)) -> new_esEs12(xwv4001, xwv3001, cbg) 26.47/9.56 new_lt23(xwv66, xwv69, ty_Char) -> new_lt8(xwv66, xwv69) 26.47/9.56 new_esEs12(:(xwv40000, xwv40001), [], bd) -> False 26.47/9.56 new_esEs12([], :(xwv30000, xwv30001), bd) -> False 26.47/9.56 new_compare14(xwv150, xwv151, True, bdg, bdh) -> LT 26.47/9.56 new_lt20(xwv541, xwv551, app(ty_Ratio, dhe)) -> new_lt18(xwv541, xwv551, dhe) 26.47/9.56 new_primCmpInt(Pos(Zero), Neg(Succ(xwv30000))) -> GT 26.47/9.56 new_esEs17(Double(xwv40000, xwv40001), Double(xwv30000, xwv30001)) -> new_esEs18(new_sr(xwv40000, xwv30001), new_sr(xwv40001, xwv30000)) 26.47/9.56 new_compare210(xwv54, xwv55, False, fhh) -> new_compare10(xwv54, xwv55, new_ltEs24(xwv54, xwv55, fhh), fhh) 26.47/9.56 new_primCmpInt(Neg(Succ(xwv40000)), Neg(xwv3000)) -> new_primCmpNat0(xwv3000, Succ(xwv40000)) 26.47/9.56 new_esEs5(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.47/9.56 new_esEs34(xwv541, xwv551, ty_Char) -> new_esEs20(xwv541, xwv551) 26.47/9.56 new_lt19(xwv540, xwv550, app(app(app(ty_@3, dea), deb), dec)) -> new_lt15(xwv540, xwv550, dea, deb, dec) 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), ty_Double, da) -> new_ltEs11(xwv540, xwv550) 26.47/9.56 new_esEs11(xwv4000, xwv3000, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs25(xwv4000, xwv3000, bch, bda, bdb) 26.47/9.56 new_compare0(xwv400, xwv300, ty_Ordering) -> new_compare27(xwv400, xwv300) 26.47/9.56 new_esEs7(xwv4002, xwv3002, ty_Ordering) -> new_esEs15(xwv4002, xwv3002) 26.47/9.56 new_esEs38(xwv66, xwv69, ty_Integer) -> new_esEs26(xwv66, xwv69) 26.47/9.56 new_compare0(xwv400, xwv300, ty_Double) -> new_compare13(xwv400, xwv300) 26.47/9.56 new_esEs39(xwv65, xwv68, app(ty_Maybe, fad)) -> new_esEs16(xwv65, xwv68, fad) 26.47/9.56 new_esEs11(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.47/9.56 new_lt20(xwv541, xwv551, ty_Bool) -> new_lt4(xwv541, xwv551) 26.47/9.56 new_primEqInt(Pos(Succ(xwv400000)), Pos(Zero)) -> False 26.47/9.56 new_primEqInt(Pos(Zero), Pos(Succ(xwv300000))) -> False 26.47/9.56 new_compare110(xwv170, xwv171, xwv172, xwv173, False, xwv175, bfd, bfe) -> new_compare111(xwv170, xwv171, xwv172, xwv173, xwv175, bfd, bfe) 26.47/9.56 new_esEs34(xwv541, xwv551, ty_Int) -> new_esEs18(xwv541, xwv551) 26.47/9.56 new_compare0(xwv400, xwv300, app(ty_Maybe, bff)) -> new_compare18(xwv400, xwv300, bff) 26.47/9.56 new_esEs29(xwv113, xwv115, app(app(ty_@2, cdd), cde)) -> new_esEs21(xwv113, xwv115, cdd, cde) 26.47/9.56 new_lt23(xwv66, xwv69, ty_Ordering) -> new_lt14(xwv66, xwv69) 26.47/9.56 new_esEs28(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.47/9.56 new_esEs13(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.47/9.56 new_esEs31(xwv40001, xwv30001, ty_Bool) -> new_esEs14(xwv40001, xwv30001) 26.47/9.56 new_primCompAux00(xwv32, xwv33, EQ, app(ty_Maybe, bed)) -> new_compare18(xwv32, xwv33, bed) 26.47/9.56 new_lt5(xwv113, xwv115) -> new_esEs15(new_compare13(xwv113, xwv115), LT) 26.47/9.56 new_ltEs21(xwv83, xwv84, app(ty_[], ebf)) -> new_ltEs13(xwv83, xwv84, ebf) 26.47/9.56 new_ltEs19(xwv541, xwv551, app(ty_Ratio, ddd)) -> new_ltEs17(xwv541, xwv551, ddd) 26.47/9.56 new_lt22(xwv65, xwv68, ty_Integer) -> new_lt17(xwv65, xwv68) 26.47/9.56 new_ltEs20(xwv542, xwv552, ty_Ordering) -> new_ltEs14(xwv542, xwv552) 26.47/9.56 new_ltEs18(xwv114, xwv116, ty_Integer) -> new_ltEs16(xwv114, xwv116) 26.47/9.56 new_primCmpNat0(Zero, Zero) -> EQ 26.47/9.56 new_lt19(xwv540, xwv550, app(ty_[], ddh)) -> new_lt13(xwv540, xwv550, ddh) 26.47/9.56 new_compare27(EQ, LT) -> GT 26.47/9.56 new_lt6(xwv113, xwv115, ty_Int) -> new_lt7(xwv113, xwv115) 26.47/9.56 new_lt23(xwv66, xwv69, app(app(ty_@2, fcf), fcg)) -> new_lt9(xwv66, xwv69, fcf, fcg) 26.47/9.56 new_esEs13(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.47/9.56 new_esEs30(xwv40002, xwv30002, ty_Float) -> new_esEs22(xwv40002, xwv30002) 26.47/9.56 new_esEs16(Nothing, Just(xwv30000), ecf) -> False 26.47/9.56 new_esEs16(Just(xwv40000), Nothing, ecf) -> False 26.47/9.56 new_esEs31(xwv40001, xwv30001, app(ty_Maybe, che)) -> new_esEs16(xwv40001, xwv30001, che) 26.47/9.56 new_esEs34(xwv541, xwv551, app(app(ty_@2, dgd), dge)) -> new_esEs21(xwv541, xwv551, dgd, dge) 26.47/9.56 new_esEs30(xwv40002, xwv30002, ty_Double) -> new_esEs17(xwv40002, xwv30002) 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), ty_Bool, da) -> new_ltEs8(xwv540, xwv550) 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), ty_@0) -> new_ltEs4(xwv540, xwv550) 26.47/9.56 new_esEs15(LT, EQ) -> False 26.47/9.56 new_esEs15(EQ, LT) -> False 26.47/9.56 new_compare13(Double(xwv4000, Pos(xwv40010)), Double(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.47/9.56 new_esEs35(xwv540, xwv550, ty_Ordering) -> new_esEs15(xwv540, xwv550) 26.47/9.56 new_ltEs20(xwv542, xwv552, ty_Double) -> new_ltEs11(xwv542, xwv552) 26.47/9.56 new_esEs7(xwv4002, xwv3002, ty_Integer) -> new_esEs26(xwv4002, xwv3002) 26.47/9.56 new_ltEs19(xwv541, xwv551, ty_Int) -> new_ltEs6(xwv541, xwv551) 26.47/9.56 new_lt14(xwv113, xwv115) -> new_esEs15(new_compare27(xwv113, xwv115), LT) 26.47/9.56 new_esEs6(xwv4000, xwv3000, app(app(ty_Either, bfh), bga)) -> new_esEs19(xwv4000, xwv3000, bfh, bga) 26.47/9.56 new_ltEs23(xwv67, xwv70, app(app(ty_@2, fbd), fbe)) -> new_ltEs9(xwv67, xwv70, fbd, fbe) 26.47/9.56 new_ltEs19(xwv541, xwv551, ty_@0) -> new_ltEs4(xwv541, xwv551) 26.47/9.56 new_esEs13(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.47/9.56 new_ltEs23(xwv67, xwv70, ty_Integer) -> new_ltEs16(xwv67, xwv70) 26.47/9.56 new_primCompAux00(xwv32, xwv33, EQ, ty_Int) -> new_compare15(xwv32, xwv33) 26.47/9.56 new_primCompAux00(xwv32, xwv33, EQ, app(ty_Ratio, bfc)) -> new_compare29(xwv32, xwv33, bfc) 26.47/9.56 new_ltEs21(xwv83, xwv84, ty_Int) -> new_ltEs6(xwv83, xwv84) 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), ty_Int) -> new_ltEs6(xwv540, xwv550) 26.47/9.56 new_lt19(xwv540, xwv550, ty_@0) -> new_lt12(xwv540, xwv550) 26.47/9.56 new_esEs6(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.47/9.56 new_ltEs24(xwv54, xwv55, ty_@0) -> new_ltEs4(xwv54, xwv55) 26.47/9.56 new_lt6(xwv113, xwv115, ty_Float) -> new_lt11(xwv113, xwv115) 26.47/9.56 new_ltEs14(EQ, LT) -> False 26.47/9.56 new_esEs28(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_[], egg)) -> new_ltEs13(xwv540, xwv550, egg) 26.47/9.56 new_esEs39(xwv65, xwv68, app(ty_[], fae)) -> new_esEs12(xwv65, xwv68, fae) 26.47/9.56 new_esEs8(xwv4001, xwv3001, app(ty_Maybe, caf)) -> new_esEs16(xwv4001, xwv3001, caf) 26.47/9.56 new_esEs27(xwv40001, xwv30001, app(ty_Ratio, gg)) -> new_esEs23(xwv40001, xwv30001, gg) 26.47/9.56 new_esEs13(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.56 new_esEs30(xwv40002, xwv30002, ty_Ordering) -> new_esEs15(xwv40002, xwv30002) 26.47/9.56 new_esEs16(Nothing, Nothing, ecf) -> True 26.47/9.56 new_esEs39(xwv65, xwv68, app(app(ty_@2, fab), fac)) -> new_esEs21(xwv65, xwv68, fab, fac) 26.47/9.56 new_lt21(xwv540, xwv550, app(app(app(ty_@3, eab), eac), ead)) -> new_lt15(xwv540, xwv550, eab, eac, ead) 26.47/9.56 new_ltEs20(xwv542, xwv552, ty_Bool) -> new_ltEs8(xwv542, xwv552) 26.47/9.56 new_esEs29(xwv113, xwv115, ty_Int) -> new_esEs18(xwv113, xwv115) 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), ty_Char, da) -> new_ltEs7(xwv540, xwv550) 26.47/9.56 new_esEs29(xwv113, xwv115, ty_Bool) -> new_esEs14(xwv113, xwv115) 26.47/9.56 new_esEs5(xwv4000, xwv3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs25(xwv4000, xwv3000, cfh, cga, cgb) 26.47/9.56 new_ltEs19(xwv541, xwv551, app(ty_[], dcf)) -> new_ltEs13(xwv541, xwv551, dcf) 26.47/9.56 new_primCmpNat0(Succ(xwv40000), Zero) -> GT 26.47/9.56 new_pePe(False, xwv216) -> xwv216 26.47/9.56 new_esEs33(xwv540, xwv550, ty_@0) -> new_esEs24(xwv540, xwv550) 26.47/9.56 new_lt21(xwv540, xwv550, app(ty_[], eaa)) -> new_lt13(xwv540, xwv550, eaa) 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_Maybe, egf)) -> new_ltEs10(xwv540, xwv550, egf) 26.47/9.56 new_esEs10(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.47/9.56 new_esEs4(xwv4001, xwv3001, ty_Ordering) -> new_esEs15(xwv4001, xwv3001) 26.47/9.56 new_compare19(Float(xwv4000, Pos(xwv40010)), Float(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.47/9.56 new_ltEs17(xwv54, xwv55, eah) -> new_fsEs(new_compare29(xwv54, xwv55, eah)) 26.47/9.56 new_compare27(LT, LT) -> EQ 26.47/9.56 new_esEs33(xwv540, xwv550, app(app(app(ty_@3, dea), deb), dec)) -> new_esEs25(xwv540, xwv550, dea, deb, dec) 26.47/9.56 new_compare25(xwv83, xwv84, True, eba, ebb) -> EQ 26.47/9.56 new_compare210(xwv54, xwv55, True, fhh) -> EQ 26.47/9.56 new_esEs27(xwv40001, xwv30001, ty_Char) -> new_esEs20(xwv40001, xwv30001) 26.47/9.56 new_esEs15(EQ, GT) -> False 26.47/9.56 new_esEs15(GT, EQ) -> False 26.47/9.56 new_compare112(xwv157, xwv158, True, ega, egb) -> LT 26.47/9.56 new_lt11(xwv113, xwv115) -> new_esEs15(new_compare19(xwv113, xwv115), LT) 26.47/9.56 new_compare11(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, xwv192, bdd, bde, bdf) -> new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, bdd, bde, bdf) 26.47/9.56 new_lt23(xwv66, xwv69, ty_Bool) -> new_lt4(xwv66, xwv69) 26.47/9.56 new_esEs23(:%(xwv40000, xwv40001), :%(xwv30000, xwv30001), ece) -> new_asAs(new_esEs37(xwv40000, xwv30000, ece), new_esEs36(xwv40001, xwv30001, ece)) 26.47/9.56 new_esEs27(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.47/9.56 new_esEs34(xwv541, xwv551, app(ty_Ratio, dhe)) -> new_esEs23(xwv541, xwv551, dhe) 26.47/9.56 new_compare110(xwv170, xwv171, xwv172, xwv173, True, xwv175, bfd, bfe) -> new_compare111(xwv170, xwv171, xwv172, xwv173, True, bfd, bfe) 26.47/9.56 new_ltEs24(xwv54, xwv55, ty_Int) -> new_ltEs6(xwv54, xwv55) 26.47/9.56 new_compare10(xwv141, xwv142, False, cg) -> GT 26.47/9.56 new_primEqInt(Pos(Zero), Neg(Succ(xwv300000))) -> False 26.47/9.56 new_primEqInt(Neg(Zero), Pos(Succ(xwv300000))) -> False 26.47/9.56 new_ltEs20(xwv542, xwv552, ty_Integer) -> new_ltEs16(xwv542, xwv552) 26.47/9.56 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_Maybe, ffd), ffc) -> new_esEs16(xwv40000, xwv30000, ffd) 26.47/9.56 new_esEs10(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.47/9.56 new_compare9(True, False) -> GT 26.47/9.56 new_ltEs23(xwv67, xwv70, ty_Float) -> new_ltEs12(xwv67, xwv70) 26.47/9.56 new_lt23(xwv66, xwv69, app(app(ty_Either, fde), fdf)) -> new_lt16(xwv66, xwv69, fde, fdf) 26.47/9.56 new_esEs34(xwv541, xwv551, app(ty_[], dgg)) -> new_esEs12(xwv541, xwv551, dgg) 26.47/9.56 new_esEs11(xwv4000, xwv3000, app(ty_[], bdc)) -> new_esEs12(xwv4000, xwv3000, bdc) 26.47/9.56 new_esEs37(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.56 new_esEs33(xwv540, xwv550, ty_Float) -> new_esEs22(xwv540, xwv550) 26.47/9.56 new_esEs9(xwv4000, xwv3000, app(app(ty_Either, cca), ccb)) -> new_esEs19(xwv4000, xwv3000, cca, ccb) 26.47/9.56 new_ltEs14(GT, EQ) -> False 26.47/9.56 new_compare26(:(xwv4000, xwv4001), :(xwv3000, xwv3001), efg) -> new_primCompAux1(xwv4000, xwv3000, xwv4001, xwv3001, efg) 26.47/9.56 new_ltEs18(xwv114, xwv116, ty_Double) -> new_ltEs11(xwv114, xwv116) 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Char, ffc) -> new_esEs20(xwv40000, xwv30000) 26.47/9.56 new_esEs29(xwv113, xwv115, ty_Char) -> new_esEs20(xwv113, xwv115) 26.47/9.56 new_esEs31(xwv40001, xwv30001, ty_@0) -> new_esEs24(xwv40001, xwv30001) 26.47/9.56 new_esEs31(xwv40001, xwv30001, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs25(xwv40001, xwv30001, dac, dad, dae) 26.47/9.56 new_lt13(xwv113, xwv115, cdg) -> new_esEs15(new_compare26(xwv113, xwv115, cdg), LT) 26.47/9.56 new_lt21(xwv540, xwv550, ty_@0) -> new_lt12(xwv540, xwv550) 26.47/9.56 new_compare29(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), ty_Integer) -> new_compare8(new_sr0(xwv4000, xwv3001), new_sr0(xwv3000, xwv4001)) 26.47/9.56 new_ltEs21(xwv83, xwv84, app(app(app(ty_@3, ebg), ebh), eca)) -> new_ltEs15(xwv83, xwv84, ebg, ebh, eca) 26.47/9.56 new_esEs33(xwv540, xwv550, ty_Double) -> new_esEs17(xwv540, xwv550) 26.47/9.56 new_lt6(xwv113, xwv115, ty_@0) -> new_lt12(xwv113, xwv115) 26.47/9.56 new_esEs8(xwv4001, xwv3001, app(app(ty_@2, cba), cbb)) -> new_esEs21(xwv4001, xwv3001, cba, cbb) 26.47/9.56 new_esEs35(xwv540, xwv550, ty_Float) -> new_esEs22(xwv540, xwv550) 26.47/9.56 new_esEs39(xwv65, xwv68, ty_Int) -> new_esEs18(xwv65, xwv68) 26.47/9.56 new_lt21(xwv540, xwv550, app(ty_Maybe, dhh)) -> new_lt10(xwv540, xwv550, dhh) 26.47/9.56 new_ltEs13(xwv54, xwv55, ehf) -> new_fsEs(new_compare26(xwv54, xwv55, ehf)) 26.47/9.56 new_esEs15(LT, GT) -> False 26.47/9.56 new_esEs15(GT, LT) -> False 26.47/9.56 new_esEs39(xwv65, xwv68, ty_Char) -> new_esEs20(xwv65, xwv68) 26.47/9.56 new_ltEs18(xwv114, xwv116, ty_Bool) -> new_ltEs8(xwv114, xwv116) 26.47/9.56 new_esEs39(xwv65, xwv68, ty_Bool) -> new_esEs14(xwv65, xwv68) 26.47/9.56 new_compare18(Just(xwv4000), Just(xwv3000), bff) -> new_compare210(xwv4000, xwv3000, new_esEs6(xwv4000, xwv3000, bff), bff) 26.47/9.56 new_lt21(xwv540, xwv550, ty_Ordering) -> new_lt14(xwv540, xwv550) 26.47/9.56 new_primCompAux00(xwv32, xwv33, EQ, ty_Ordering) -> new_compare27(xwv32, xwv33) 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_Ratio, ehe)) -> new_ltEs17(xwv540, xwv550, ehe) 26.47/9.56 new_ltEs20(xwv542, xwv552, ty_Float) -> new_ltEs12(xwv542, xwv552) 26.47/9.56 new_compare211(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, ehg, ehh, faa) -> new_compare11(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, new_lt22(xwv65, xwv68, ehg), new_asAs(new_esEs39(xwv65, xwv68, ehg), new_pePe(new_lt23(xwv66, xwv69, ehh), new_asAs(new_esEs38(xwv66, xwv69, ehh), new_ltEs23(xwv67, xwv70, faa)))), ehg, ehh, faa) 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Int, ffc) -> new_esEs18(xwv40000, xwv30000) 26.47/9.56 new_esEs11(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.47/9.56 new_lt22(xwv65, xwv68, ty_Int) -> new_lt7(xwv65, xwv68) 26.47/9.56 new_ltEs18(xwv114, xwv116, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_ltEs15(xwv114, xwv116, cfb, cfc, cfd) 26.47/9.56 new_esEs12(:(xwv40000, xwv40001), :(xwv30000, xwv30001), bd) -> new_asAs(new_esEs13(xwv40000, xwv30000, bd), new_esEs12(xwv40001, xwv30001, bd)) 26.47/9.56 new_compare0(xwv400, xwv300, app(ty_Ratio, efh)) -> new_compare29(xwv400, xwv300, efh) 26.47/9.56 new_esEs10(xwv4000, xwv3000, app(app(ty_Either, bba), bbb)) -> new_esEs19(xwv4000, xwv3000, bba, bbb) 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Bool, ffc) -> new_esEs14(xwv40000, xwv30000) 26.47/9.56 new_esEs6(xwv4000, xwv3000, app(app(ty_@2, bgb), bgc)) -> new_esEs21(xwv4000, xwv3000, bgb, bgc) 26.47/9.56 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(ty_Ratio, fhc)) -> new_esEs23(xwv40000, xwv30000, fhc) 26.47/9.56 new_esEs8(xwv4001, xwv3001, ty_@0) -> new_esEs24(xwv4001, xwv3001) 26.47/9.56 new_esEs33(xwv540, xwv550, ty_Integer) -> new_esEs26(xwv540, xwv550) 26.47/9.56 new_esEs8(xwv4001, xwv3001, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs25(xwv4001, xwv3001, cbd, cbe, cbf) 26.47/9.56 new_esEs22(Float(xwv40000, xwv40001), Float(xwv30000, xwv30001)) -> new_esEs18(new_sr(xwv40000, xwv30001), new_sr(xwv40001, xwv30000)) 26.47/9.56 new_lt20(xwv541, xwv551, app(app(ty_@2, dgd), dge)) -> new_lt9(xwv541, xwv551, dgd, dge) 26.47/9.56 new_esEs10(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.47/9.56 new_primMulInt(Neg(xwv40000), Neg(xwv30010)) -> Pos(new_primMulNat0(xwv40000, xwv30010)) 26.47/9.56 new_primCmpInt(Pos(Zero), Pos(Succ(xwv30000))) -> new_primCmpNat0(Zero, Succ(xwv30000)) 26.47/9.56 new_esEs14(True, True) -> True 26.47/9.56 new_esEs38(xwv66, xwv69, ty_Ordering) -> new_esEs15(xwv66, xwv69) 26.47/9.56 new_esEs9(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.47/9.56 new_compare29(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), ty_Int) -> new_compare15(new_sr(xwv4000, xwv3001), new_sr(xwv3000, xwv4001)) 26.47/9.56 new_esEs32(xwv40000, xwv30000, app(app(ty_Either, dah), dba)) -> new_esEs19(xwv40000, xwv30000, dah, dba) 26.47/9.56 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(ty_Either, ech), eda)) -> new_esEs19(xwv40000, xwv30000, ech, eda) 26.47/9.56 new_ltEs19(xwv541, xwv551, app(app(app(ty_@3, dcg), dch), dda)) -> new_ltEs15(xwv541, xwv551, dcg, dch, dda) 26.47/9.56 new_lt6(xwv113, xwv115, app(ty_[], cdg)) -> new_lt13(xwv113, xwv115, cdg) 26.47/9.56 new_ltEs21(xwv83, xwv84, app(app(ty_@2, ebc), ebd)) -> new_ltEs9(xwv83, xwv84, ebc, ebd) 26.47/9.56 new_esEs5(xwv4000, xwv3000, app(ty_Maybe, ecf)) -> new_esEs16(xwv4000, xwv3000, ecf) 26.47/9.56 new_lt19(xwv540, xwv550, app(ty_Maybe, ddg)) -> new_lt10(xwv540, xwv550, ddg) 26.47/9.56 new_ltEs14(GT, LT) -> False 26.47/9.56 new_esEs31(xwv40001, xwv30001, app(app(ty_@2, chh), daa)) -> new_esEs21(xwv40001, xwv30001, chh, daa) 26.47/9.56 new_compare7(Left(xwv4000), Left(xwv3000), baf, bag) -> new_compare24(xwv4000, xwv3000, new_esEs10(xwv4000, xwv3000, baf), baf, bag) 26.47/9.56 new_ltEs19(xwv541, xwv551, app(app(ty_Either, ddb), ddc)) -> new_ltEs5(xwv541, xwv551, ddb, ddc) 26.47/9.56 new_esEs31(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.47/9.56 new_ltEs12(xwv54, xwv55) -> new_fsEs(new_compare19(xwv54, xwv55)) 26.47/9.56 new_compare0(xwv400, xwv300, app(app(app(ty_@3, bha), bhb), bhc)) -> new_compare28(xwv400, xwv300, bha, bhb, bhc) 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), app(app(ty_Either, ehc), ehd)) -> new_ltEs5(xwv540, xwv550, ehc, ehd) 26.47/9.56 new_compare8(Integer(xwv4000), Integer(xwv3000)) -> new_primCmpInt(xwv4000, xwv3000) 26.47/9.56 new_primMulInt(Pos(xwv40000), Neg(xwv30010)) -> Neg(new_primMulNat0(xwv40000, xwv30010)) 26.47/9.56 new_primMulInt(Neg(xwv40000), Pos(xwv30010)) -> Neg(new_primMulNat0(xwv40000, xwv30010)) 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_[], de), da) -> new_ltEs13(xwv540, xwv550, de) 26.47/9.56 new_ltEs18(xwv114, xwv116, app(ty_Maybe, ceh)) -> new_ltEs10(xwv114, xwv116, ceh) 26.47/9.56 new_ltEs23(xwv67, xwv70, ty_Int) -> new_ltEs6(xwv67, xwv70) 26.47/9.56 new_esEs5(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.47/9.56 new_ltEs21(xwv83, xwv84, ty_Integer) -> new_ltEs16(xwv83, xwv84) 26.47/9.56 new_esEs9(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.47/9.56 new_ltEs15(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), deg, deh, dfa) -> new_pePe(new_lt21(xwv540, xwv550, deg), new_asAs(new_esEs35(xwv540, xwv550, deg), new_pePe(new_lt20(xwv541, xwv551, deh), new_asAs(new_esEs34(xwv541, xwv551, deh), new_ltEs20(xwv542, xwv552, dfa))))) 26.47/9.56 new_ltEs22(xwv76, xwv77, ty_@0) -> new_ltEs4(xwv76, xwv77) 26.47/9.56 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(ty_@2, edb), edc)) -> new_esEs21(xwv40000, xwv30000, edb, edc) 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(ty_Either, ffe), fff), ffc) -> new_esEs19(xwv40000, xwv30000, ffe, fff) 26.47/9.56 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(ty_Ratio, fg)) -> new_ltEs17(xwv540, xwv550, fg) 26.47/9.56 new_compare19(Float(xwv4000, Neg(xwv40010)), Float(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.47/9.56 new_esEs11(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.47/9.56 new_sr0(Integer(xwv40000), Integer(xwv30010)) -> Integer(new_primMulInt(xwv40000, xwv30010)) 26.47/9.56 new_esEs30(xwv40002, xwv30002, app(app(ty_Either, cgd), cge)) -> new_esEs19(xwv40002, xwv30002, cgd, cge) 26.47/9.56 new_ltEs24(xwv54, xwv55, app(ty_Maybe, egc)) -> new_ltEs10(xwv54, xwv55, egc) 26.47/9.56 new_esEs8(xwv4001, xwv3001, app(ty_Ratio, cbc)) -> new_esEs23(xwv4001, xwv3001, cbc) 26.47/9.56 new_ltEs24(xwv54, xwv55, app(app(app(ty_@3, deg), deh), dfa)) -> new_ltEs15(xwv54, xwv55, deg, deh, dfa) 26.47/9.56 new_esEs6(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.47/9.56 new_ltEs23(xwv67, xwv70, app(ty_Ratio, fce)) -> new_ltEs17(xwv67, xwv70, fce) 26.47/9.56 new_esEs4(xwv4001, xwv3001, app(ty_Ratio, fee)) -> new_esEs23(xwv4001, xwv3001, fee) 26.47/9.56 new_ltEs24(xwv54, xwv55, ty_Char) -> new_ltEs7(xwv54, xwv55) 26.47/9.56 new_esEs28(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.47/9.56 new_esEs28(xwv40000, xwv30000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs25(xwv40000, xwv30000, bab, bac, bad) 26.47/9.56 new_esEs5(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.47/9.56 new_esEs18(xwv4000, xwv3000) -> new_primEqInt(xwv4000, xwv3000) 26.47/9.56 new_asAs(True, xwv131) -> xwv131 26.47/9.56 new_compare27(GT, GT) -> EQ 26.47/9.56 new_esEs32(xwv40000, xwv30000, app(app(ty_@2, dbb), dbc)) -> new_esEs21(xwv40000, xwv30000, dbb, dbc) 26.47/9.56 new_esEs6(xwv4000, xwv3000, app(ty_Maybe, bfg)) -> new_esEs16(xwv4000, xwv3000, bfg) 26.47/9.56 new_ltEs20(xwv542, xwv552, app(app(ty_@2, dfb), dfc)) -> new_ltEs9(xwv542, xwv552, dfb, dfc) 26.47/9.56 new_ltEs22(xwv76, xwv77, ty_Ordering) -> new_ltEs14(xwv76, xwv77) 26.47/9.56 new_esEs5(xwv4000, xwv3000, app(app(ty_@2, fh), ga)) -> new_esEs21(xwv4000, xwv3000, fh, ga) 26.47/9.56 new_esEs27(xwv40001, xwv30001, app(ty_Maybe, gb)) -> new_esEs16(xwv40001, xwv30001, gb) 26.47/9.56 new_ltEs22(xwv76, xwv77, ty_Float) -> new_ltEs12(xwv76, xwv77) 26.47/9.56 new_esEs32(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.47/9.56 new_compare0(xwv400, xwv300, ty_Float) -> new_compare19(xwv400, xwv300) 26.47/9.56 new_ltEs20(xwv542, xwv552, app(app(ty_Either, dga), dgb)) -> new_ltEs5(xwv542, xwv552, dga, dgb) 26.47/9.56 new_lt21(xwv540, xwv550, app(app(ty_@2, dhf), dhg)) -> new_lt9(xwv540, xwv550, dhf, dhg) 26.47/9.56 new_ltEs18(xwv114, xwv116, ty_Char) -> new_ltEs7(xwv114, xwv116) 26.47/9.56 new_ltEs19(xwv541, xwv551, app(app(ty_@2, dcc), dcd)) -> new_ltEs9(xwv541, xwv551, dcc, dcd) 26.47/9.56 new_lt20(xwv541, xwv551, ty_Double) -> new_lt5(xwv541, xwv551) 26.47/9.56 new_compare211(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, True, ehg, ehh, faa) -> EQ 26.47/9.56 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(app(ty_Either, fd), ff)) -> new_ltEs5(xwv540, xwv550, fd, ff) 26.47/9.56 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_[], edh)) -> new_esEs12(xwv40000, xwv30000, edh) 26.47/9.56 new_compare27(EQ, EQ) -> EQ 26.47/9.56 new_lt22(xwv65, xwv68, app(ty_Ratio, fbc)) -> new_lt18(xwv65, xwv68, fbc) 26.47/9.56 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_@0) -> new_ltEs4(xwv540, xwv550) 26.47/9.56 new_sr(xwv4000, xwv3001) -> new_primMulInt(xwv4000, xwv3001) 26.47/9.56 new_compare0(xwv400, xwv300, ty_Integer) -> new_compare8(xwv400, xwv300) 26.47/9.56 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.47/9.56 new_primCompAux00(xwv32, xwv33, EQ, ty_Float) -> new_compare19(xwv32, xwv33) 26.47/9.56 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(ty_Maybe, eg)) -> new_ltEs10(xwv540, xwv550, eg) 26.47/9.56 new_primMulNat0(Zero, Zero) -> Zero 26.47/9.56 new_esEs11(xwv4000, xwv3000, app(app(ty_@2, bce), bcf)) -> new_esEs21(xwv4000, xwv3000, bce, bcf) 26.47/9.56 new_lt19(xwv540, xwv550, ty_Double) -> new_lt5(xwv540, xwv550) 26.47/9.56 new_lt22(xwv65, xwv68, app(app(ty_@2, fab), fac)) -> new_lt9(xwv65, xwv68, fab, fac) 26.47/9.56 new_compare25(xwv83, xwv84, False, eba, ebb) -> new_compare112(xwv83, xwv84, new_ltEs21(xwv83, xwv84, ebb), eba, ebb) 26.47/9.56 new_esEs4(xwv4001, xwv3001, ty_Int) -> new_esEs18(xwv4001, xwv3001) 26.47/9.56 new_esEs29(xwv113, xwv115, ty_Integer) -> new_esEs26(xwv113, xwv115) 26.47/9.56 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(app(app(ty_@3, fa), fb), fc)) -> new_ltEs15(xwv540, xwv550, fa, fb, fc) 26.47/9.56 new_lt6(xwv113, xwv115, app(ty_Maybe, cdf)) -> new_lt10(xwv113, xwv115, cdf) 26.47/9.56 new_lt23(xwv66, xwv69, app(ty_Ratio, fdg)) -> new_lt18(xwv66, xwv69, fdg) 26.47/9.56 new_lt22(xwv65, xwv68, app(ty_Maybe, fad)) -> new_lt10(xwv65, xwv68, fad) 26.47/9.56 new_esEs29(xwv113, xwv115, ty_@0) -> new_esEs24(xwv113, xwv115) 26.47/9.56 new_ltEs21(xwv83, xwv84, ty_Ordering) -> new_ltEs14(xwv83, xwv84) 26.47/9.56 new_esEs39(xwv65, xwv68, app(ty_Ratio, fbc)) -> new_esEs23(xwv65, xwv68, fbc) 26.47/9.56 new_esEs4(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 26.47/9.56 new_esEs33(xwv540, xwv550, app(app(ty_@2, dde), ddf)) -> new_esEs21(xwv540, xwv550, dde, ddf) 26.47/9.56 new_lt23(xwv66, xwv69, app(ty_Maybe, fch)) -> new_lt10(xwv66, xwv69, fch) 26.47/9.56 new_esEs30(xwv40002, xwv30002, ty_@0) -> new_esEs24(xwv40002, xwv30002) 26.47/9.56 new_esEs30(xwv40002, xwv30002, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs25(xwv40002, xwv30002, cha, chb, chc) 26.47/9.56 new_ltEs24(xwv54, xwv55, app(app(ty_Either, ed), da)) -> new_ltEs5(xwv54, xwv55, ed, da) 26.47/9.56 new_compare7(Right(xwv4000), Left(xwv3000), baf, bag) -> GT 26.47/9.56 new_primCompAux00(xwv32, xwv33, EQ, app(app(app(ty_@3, bef), beg), beh)) -> new_compare28(xwv32, xwv33, bef, beg, beh) 26.47/9.56 new_ltEs23(xwv67, xwv70, app(ty_Maybe, fbf)) -> new_ltEs10(xwv67, xwv70, fbf) 26.47/9.56 new_ltEs20(xwv542, xwv552, ty_Char) -> new_ltEs7(xwv542, xwv552) 26.47/9.56 new_primEqInt(Neg(Succ(xwv400000)), Neg(Zero)) -> False 26.47/9.56 new_primEqInt(Neg(Zero), Neg(Succ(xwv300000))) -> False 26.47/9.56 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Bool) -> new_ltEs8(xwv540, xwv550) 26.47/9.56 new_esEs27(xwv40001, xwv30001, app(ty_[], hc)) -> new_esEs12(xwv40001, xwv30001, hc) 26.47/9.56 new_esEs9(xwv4000, xwv3000, app(ty_Ratio, cce)) -> new_esEs23(xwv4000, xwv3000, cce) 26.47/9.56 new_esEs25(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), cfh, cga, cgb) -> new_asAs(new_esEs32(xwv40000, xwv30000, cfh), new_asAs(new_esEs31(xwv40001, xwv30001, cga), new_esEs30(xwv40002, xwv30002, cgb))) 26.47/9.56 new_esEs33(xwv540, xwv550, app(ty_[], ddh)) -> new_esEs12(xwv540, xwv550, ddh) 26.47/9.56 new_primEqInt(Pos(Succ(xwv400000)), Pos(Succ(xwv300000))) -> new_primEqNat0(xwv400000, xwv300000) 26.47/9.56 new_ltEs24(xwv54, xwv55, app(ty_Ratio, eah)) -> new_ltEs17(xwv54, xwv55, eah) 26.47/9.56 new_ltEs18(xwv114, xwv116, app(ty_Ratio, cfg)) -> new_ltEs17(xwv114, xwv116, cfg) 26.47/9.56 new_esEs5(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.47/9.56 new_ltEs18(xwv114, xwv116, app(app(ty_@2, cef), ceg)) -> new_ltEs9(xwv114, xwv116, cef, ceg) 26.47/9.56 new_esEs5(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.47/9.56 new_esEs29(xwv113, xwv115, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs25(xwv113, xwv115, cdh, cea, ceb) 26.47/9.56 new_lt10(xwv113, xwv115, cdf) -> new_esEs15(new_compare18(xwv113, xwv115, cdf), LT) 26.47/9.56 new_esEs6(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.47/9.56 new_ltEs18(xwv114, xwv116, app(app(ty_Either, cfe), cff)) -> new_ltEs5(xwv114, xwv116, cfe, cff) 26.47/9.56 new_esEs5(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.47/9.56 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Int) -> new_ltEs6(xwv540, xwv550) 26.47/9.56 new_primEqInt(Pos(Succ(xwv400000)), Neg(xwv30000)) -> False 26.47/9.56 new_primEqInt(Neg(Succ(xwv400000)), Pos(xwv30000)) -> False 26.47/9.56 new_primCmpInt(Neg(Zero), Neg(Succ(xwv30000))) -> new_primCmpNat0(Succ(xwv30000), Zero) 26.47/9.56 new_esEs29(xwv113, xwv115, app(app(ty_Either, cec), ced)) -> new_esEs19(xwv113, xwv115, cec, ced) 26.47/9.56 new_esEs31(xwv40001, xwv30001, ty_Float) -> new_esEs22(xwv40001, xwv30001) 26.47/9.56 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Ordering) -> new_ltEs14(xwv540, xwv550) 26.47/9.56 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.47/9.56 new_esEs27(xwv40001, xwv30001, ty_Float) -> new_esEs22(xwv40001, xwv30001) 26.47/9.56 new_primCompAux00(xwv32, xwv33, LT, bea) -> LT 26.47/9.56 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(app(ty_Either, fgg), fgh)) -> new_esEs19(xwv40000, xwv30000, fgg, fgh) 26.47/9.56 new_ltEs19(xwv541, xwv551, app(ty_Maybe, dce)) -> new_ltEs10(xwv541, xwv551, dce) 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_[], fge), ffc) -> new_esEs12(xwv40000, xwv30000, fge) 26.47/9.56 new_compare112(xwv157, xwv158, False, ega, egb) -> GT 26.47/9.56 new_esEs7(xwv4002, xwv3002, ty_Bool) -> new_esEs14(xwv4002, xwv3002) 26.47/9.56 new_esEs7(xwv4002, xwv3002, app(ty_Ratio, caa)) -> new_esEs23(xwv4002, xwv3002, caa) 26.47/9.56 new_esEs8(xwv4001, xwv3001, ty_Char) -> new_esEs20(xwv4001, xwv3001) 26.47/9.56 new_ltEs22(xwv76, xwv77, app(ty_Ratio, efd)) -> new_ltEs17(xwv76, xwv77, efd) 26.47/9.56 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(ty_Maybe, fgf)) -> new_esEs16(xwv40000, xwv30000, fgf) 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), ty_Ordering) -> new_ltEs14(xwv540, xwv550) 26.47/9.56 new_ltEs22(xwv76, xwv77, ty_Bool) -> new_ltEs8(xwv76, xwv77) 26.47/9.56 new_esEs35(xwv540, xwv550, ty_Double) -> new_esEs17(xwv540, xwv550) 26.47/9.56 new_not(False) -> True 26.47/9.56 new_esEs28(xwv40000, xwv30000, app(ty_[], bae)) -> new_esEs12(xwv40000, xwv30000, bae) 26.47/9.56 new_lt21(xwv540, xwv550, ty_Double) -> new_lt5(xwv540, xwv550) 26.47/9.56 new_ltEs23(xwv67, xwv70, app(app(app(ty_@3, fbh), fca), fcb)) -> new_ltEs15(xwv67, xwv70, fbh, fca, fcb) 26.47/9.56 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Char) -> new_ltEs7(xwv540, xwv550) 26.47/9.56 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.47/9.56 new_esEs30(xwv40002, xwv30002, ty_Integer) -> new_esEs26(xwv40002, xwv30002) 26.47/9.56 new_esEs26(Integer(xwv40000), Integer(xwv30000)) -> new_primEqInt(xwv40000, xwv30000) 26.47/9.56 new_ltEs21(xwv83, xwv84, ty_@0) -> new_ltEs4(xwv83, xwv84) 26.47/9.56 new_compare18(Just(xwv4000), Nothing, bff) -> GT 26.47/9.56 new_esEs6(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.47/9.56 new_ltEs18(xwv114, xwv116, ty_Int) -> new_ltEs6(xwv114, xwv116) 26.47/9.56 new_esEs21(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), fh, ga) -> new_asAs(new_esEs28(xwv40000, xwv30000, fh), new_esEs27(xwv40001, xwv30001, ga)) 26.47/9.56 new_esEs28(xwv40000, xwv30000, app(app(ty_Either, he), hf)) -> new_esEs19(xwv40000, xwv30000, he, hf) 26.47/9.56 new_esEs9(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.47/9.56 new_esEs38(xwv66, xwv69, app(app(ty_@2, fcf), fcg)) -> new_esEs21(xwv66, xwv69, fcf, fcg) 26.47/9.56 new_esEs27(xwv40001, xwv30001, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs25(xwv40001, xwv30001, gh, ha, hb) 26.47/9.56 new_ltEs20(xwv542, xwv552, app(ty_Ratio, dgc)) -> new_ltEs17(xwv542, xwv552, dgc) 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), ty_Float) -> new_ltEs12(xwv540, xwv550) 26.47/9.56 new_esEs5(xwv4000, xwv3000, app(ty_Ratio, ece)) -> new_esEs23(xwv4000, xwv3000, ece) 26.47/9.56 new_lt23(xwv66, xwv69, ty_Double) -> new_lt5(xwv66, xwv69) 26.47/9.56 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.47/9.56 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.47/9.56 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.47/9.56 new_ltEs24(xwv54, xwv55, ty_Bool) -> new_ltEs8(xwv54, xwv55) 26.47/9.56 new_ltEs14(LT, EQ) -> True 26.47/9.56 new_ltEs23(xwv67, xwv70, ty_@0) -> new_ltEs4(xwv67, xwv70) 26.47/9.56 new_compare27(GT, LT) -> GT 26.47/9.56 new_esEs32(xwv40000, xwv30000, app(ty_[], dbh)) -> new_esEs12(xwv40000, xwv30000, dbh) 26.47/9.56 new_esEs9(xwv4000, xwv3000, app(ty_Maybe, cbh)) -> new_esEs16(xwv4000, xwv3000, cbh) 26.47/9.56 new_esEs29(xwv113, xwv115, ty_Float) -> new_esEs22(xwv113, xwv115) 26.47/9.56 new_compare6(@0, @0) -> EQ 26.47/9.56 new_esEs31(xwv40001, xwv30001, app(ty_[], daf)) -> new_esEs12(xwv40001, xwv30001, daf) 26.47/9.56 new_ltEs22(xwv76, xwv77, ty_Char) -> new_ltEs7(xwv76, xwv77) 26.47/9.56 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.47/9.56 new_esEs9(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.47/9.56 new_esEs38(xwv66, xwv69, ty_Double) -> new_esEs17(xwv66, xwv69) 26.47/9.56 new_compare19(Float(xwv4000, Pos(xwv40010)), Float(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.47/9.56 new_compare19(Float(xwv4000, Neg(xwv40010)), Float(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.47/9.56 new_ltEs21(xwv83, xwv84, app(app(ty_Either, ecb), ecc)) -> new_ltEs5(xwv83, xwv84, ecb, ecc) 26.47/9.56 new_ltEs21(xwv83, xwv84, app(ty_Maybe, ebe)) -> new_ltEs10(xwv83, xwv84, ebe) 26.47/9.56 new_ltEs22(xwv76, xwv77, app(app(ty_Either, efb), efc)) -> new_ltEs5(xwv76, xwv77, efb, efc) 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), app(app(app(ty_@3, egh), eha), ehb)) -> new_ltEs15(xwv540, xwv550, egh, eha, ehb) 26.47/9.56 new_esEs8(xwv4001, xwv3001, ty_Ordering) -> new_esEs15(xwv4001, xwv3001) 26.47/9.56 new_esEs30(xwv40002, xwv30002, app(ty_[], chd)) -> new_esEs12(xwv40002, xwv30002, chd) 26.47/9.56 new_ltEs20(xwv542, xwv552, app(ty_Maybe, dfd)) -> new_ltEs10(xwv542, xwv552, dfd) 26.47/9.56 new_esEs27(xwv40001, xwv30001, app(app(ty_Either, gc), gd)) -> new_esEs19(xwv40001, xwv30001, gc, gd) 26.47/9.56 new_ltEs23(xwv67, xwv70, ty_Char) -> new_ltEs7(xwv67, xwv70) 26.47/9.56 new_esEs13(xwv40000, xwv30000, app(app(ty_@2, bh), ca)) -> new_esEs21(xwv40000, xwv30000, bh, ca) 26.47/9.56 new_esEs12([], [], bd) -> True 26.47/9.56 new_esEs28(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), ty_Integer) -> new_ltEs16(xwv540, xwv550) 26.47/9.56 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.47/9.56 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.47/9.56 new_ltEs23(xwv67, xwv70, ty_Bool) -> new_ltEs8(xwv67, xwv70) 26.47/9.56 new_primEqNat0(Zero, Zero) -> True 26.47/9.56 new_esEs27(xwv40001, xwv30001, ty_@0) -> new_esEs24(xwv40001, xwv30001) 26.47/9.56 new_esEs27(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.47/9.56 new_asAs(False, xwv131) -> False 26.47/9.56 new_compare7(Right(xwv4000), Right(xwv3000), baf, bag) -> new_compare25(xwv4000, xwv3000, new_esEs11(xwv4000, xwv3000, bag), baf, bag) 26.47/9.56 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.47/9.56 new_lt6(xwv113, xwv115, ty_Double) -> new_lt5(xwv113, xwv115) 26.47/9.56 new_esEs8(xwv4001, xwv3001, ty_Int) -> new_esEs18(xwv4001, xwv3001) 26.47/9.56 new_esEs8(xwv4001, xwv3001, ty_Bool) -> new_esEs14(xwv4001, xwv3001) 26.47/9.56 new_ltEs23(xwv67, xwv70, ty_Ordering) -> new_ltEs14(xwv67, xwv70) 26.47/9.56 new_esEs6(xwv4000, xwv3000, app(ty_Ratio, bgd)) -> new_esEs23(xwv4000, xwv3000, bgd) 26.47/9.56 new_esEs9(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.47/9.56 new_ltEs21(xwv83, xwv84, app(ty_Ratio, ecd)) -> new_ltEs17(xwv83, xwv84, ecd) 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Double, ffc) -> new_esEs17(xwv40000, xwv30000) 26.47/9.56 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.56 26.47/9.56 The set Q consists of the following terms: 26.47/9.56 26.47/9.56 new_esEs13(x0, x1, app(ty_[], x2)) 26.47/9.56 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.47/9.56 new_esEs30(x0, x1, ty_Integer) 26.47/9.56 new_ltEs22(x0, x1, app(ty_[], x2)) 26.47/9.56 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs31(x0, x1, ty_@0) 26.47/9.56 new_compare0(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_lt11(x0, x1) 26.47/9.56 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_lt20(x0, x1, ty_Int) 26.47/9.56 new_ltEs21(x0, x1, ty_Int) 26.47/9.56 new_primCmpNat0(Succ(x0), Succ(x1)) 26.47/9.56 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs16(Just(x0), Just(x1), ty_Int) 26.47/9.56 new_esEs31(x0, x1, ty_Bool) 26.47/9.56 new_esEs19(Left(x0), Left(x1), ty_Integer, x2) 26.47/9.56 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_pePe(True, x0) 26.47/9.56 new_compare0(x0, x1, ty_Ordering) 26.47/9.56 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs6(x0, x1, ty_Integer) 26.47/9.56 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.47/9.56 new_esEs10(x0, x1, app(ty_[], x2)) 26.47/9.56 new_sr(x0, x1) 26.47/9.56 new_esEs13(x0, x1, ty_Integer) 26.47/9.56 new_esEs39(x0, x1, ty_Int) 26.47/9.56 new_esEs7(x0, x1, ty_Int) 26.47/9.56 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_primEqInt(Pos(Zero), Pos(Zero)) 26.47/9.56 new_compare0(x0, x1, ty_Char) 26.47/9.56 new_ltEs22(x0, x1, ty_@0) 26.47/9.56 new_primPlusNat0(Zero, Succ(x0)) 26.47/9.56 new_esEs10(x0, x1, ty_Integer) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.47/9.56 new_esEs14(True, True) 26.47/9.56 new_primEqInt(Neg(Zero), Neg(Zero)) 26.47/9.56 new_compare0(x0, x1, ty_Double) 26.47/9.56 new_esEs38(x0, x1, ty_Bool) 26.47/9.56 new_compare6(@0, @0) 26.47/9.56 new_lt23(x0, x1, ty_Int) 26.47/9.56 new_lt22(x0, x1, ty_Double) 26.47/9.56 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs19(Left(x0), Left(x1), ty_@0, x2) 26.47/9.56 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_primMulInt(Pos(x0), Neg(x1)) 26.47/9.56 new_primMulInt(Neg(x0), Pos(x1)) 26.47/9.56 new_ltEs19(x0, x1, ty_Integer) 26.47/9.56 new_esEs6(x0, x1, ty_@0) 26.47/9.56 new_primMulInt(Neg(x0), Neg(x1)) 26.47/9.56 new_ltEs22(x0, x1, ty_Int) 26.47/9.56 new_esEs4(x0, x1, ty_Int) 26.47/9.56 new_esEs10(x0, x1, ty_@0) 26.47/9.56 new_esEs30(x0, x1, ty_@0) 26.47/9.56 new_lt10(x0, x1, x2) 26.47/9.56 new_esEs6(x0, x1, ty_Float) 26.47/9.56 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.47/9.56 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.47/9.56 new_esEs31(x0, x1, ty_Integer) 26.47/9.56 new_esEs19(Left(x0), Left(x1), ty_Float, x2) 26.47/9.56 new_esEs39(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs13(x0, x1, ty_Bool) 26.47/9.56 new_lt22(x0, x1, ty_Ordering) 26.47/9.56 new_compare0(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.47/9.56 new_esEs30(x0, x1, ty_Bool) 26.47/9.56 new_esEs30(x0, x1, ty_Float) 26.47/9.56 new_ltEs4(x0, x1) 26.47/9.56 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs38(x0, x1, ty_Integer) 26.47/9.56 new_primEqInt(Pos(Zero), Neg(Zero)) 26.47/9.56 new_primEqInt(Neg(Zero), Pos(Zero)) 26.47/9.56 new_lt22(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_ltEs18(x0, x1, ty_Double) 26.47/9.56 new_esEs32(x0, x1, ty_Integer) 26.47/9.56 new_esEs9(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_ltEs18(x0, x1, ty_Char) 26.47/9.56 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs7(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_primEqNat0(Succ(x0), Succ(x1)) 26.47/9.56 new_esEs10(x0, x1, ty_Bool) 26.47/9.56 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.47/9.56 new_esEs11(x0, x1, ty_Ordering) 26.47/9.56 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.47/9.56 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_ltEs22(x0, x1, ty_Bool) 26.47/9.56 new_esEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.47/9.56 new_ltEs21(x0, x1, ty_Integer) 26.47/9.56 new_esEs11(x0, x1, ty_Char) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.47/9.56 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 26.47/9.56 new_compare15(x0, x1) 26.47/9.56 new_primMulNat0(Zero, Succ(x0)) 26.47/9.56 new_lt20(x0, x1, ty_Integer) 26.47/9.56 new_ltEs23(x0, x1, ty_Int) 26.47/9.56 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.47/9.56 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.47/9.56 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs5(x0, x1, ty_Int) 26.47/9.56 new_esEs7(x0, x1, ty_@0) 26.47/9.56 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.47/9.56 new_ltEs10(Nothing, Nothing, x0) 26.47/9.56 new_lt20(x0, x1, app(ty_[], x2)) 26.47/9.56 new_compare29(:%(x0, x1), :%(x2, x3), ty_Integer) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), ty_Double) 26.47/9.56 new_esEs10(x0, x1, ty_Int) 26.47/9.56 new_lt21(x0, x1, ty_Bool) 26.47/9.56 new_esEs4(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_lt19(x0, x1, ty_Float) 26.47/9.56 new_esEs27(x0, x1, ty_Bool) 26.47/9.56 new_compare10(x0, x1, False, x2) 26.47/9.56 new_esEs27(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs27(x0, x1, ty_Integer) 26.47/9.56 new_compare210(x0, x1, True, x2) 26.47/9.56 new_compare18(Nothing, Nothing, x0) 26.47/9.56 new_esEs33(x0, x1, ty_Float) 26.47/9.56 new_lt6(x0, x1, ty_Char) 26.47/9.56 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.47/9.56 new_esEs28(x0, x1, ty_@0) 26.47/9.56 new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) 26.47/9.56 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs12(:(x0, x1), :(x2, x3), x4) 26.47/9.56 new_compare25(x0, x1, False, x2, x3) 26.47/9.56 new_esEs6(x0, x1, ty_Int) 26.47/9.56 new_ltEs22(x0, x1, ty_Integer) 26.47/9.56 new_esEs39(x0, x1, ty_Integer) 26.47/9.56 new_compare212(x0, x1, x2, x3, True, x4, x5) 26.47/9.56 new_compare14(x0, x1, False, x2, x3) 26.47/9.56 new_esEs19(Left(x0), Left(x1), ty_Int, x2) 26.47/9.56 new_esEs4(x0, x1, ty_@0) 26.47/9.56 new_ltEs13(x0, x1, x2) 26.47/9.56 new_lt22(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.47/9.56 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs7(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs10(x0, x1, ty_Float) 26.47/9.56 new_ltEs19(x0, x1, ty_Bool) 26.47/9.56 new_lt19(x0, x1, ty_Char) 26.47/9.56 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs32(x0, x1, ty_Bool) 26.47/9.56 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, ty_Int) 26.47/9.56 new_lt13(x0, x1, x2) 26.47/9.56 new_esEs13(x0, x1, ty_@0) 26.47/9.56 new_compare0(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs12([], :(x0, x1), x2) 26.47/9.56 new_esEs32(x0, x1, ty_Float) 26.47/9.56 new_esEs8(x0, x1, ty_Int) 26.47/9.56 new_lt16(x0, x1, x2, x3) 26.47/9.56 new_ltEs21(x0, x1, ty_Float) 26.47/9.56 new_esEs6(x0, x1, ty_Bool) 26.47/9.56 new_esEs11(x0, x1, ty_Float) 26.47/9.56 new_ltEs19(x0, x1, ty_Int) 26.47/9.56 new_esEs36(x0, x1, ty_Integer) 26.47/9.56 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_esEs8(x0, x1, ty_Bool) 26.47/9.56 new_compare27(LT, GT) 26.47/9.56 new_compare27(GT, LT) 26.47/9.56 new_ltEs21(x0, x1, ty_Bool) 26.47/9.56 new_esEs24(@0, @0) 26.47/9.56 new_ltEs8(True, False) 26.47/9.56 new_esEs13(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_ltEs8(False, True) 26.47/9.56 new_lt23(x0, x1, ty_Integer) 26.47/9.56 new_lt20(x0, x1, ty_@0) 26.47/9.56 new_lt15(x0, x1, x2, x3, x4) 26.47/9.56 new_lt23(x0, x1, ty_Bool) 26.47/9.56 new_esEs19(Left(x0), Left(x1), ty_Bool, x2) 26.47/9.56 new_esEs25(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.47/9.56 new_esEs19(Left(x0), Right(x1), x2, x3) 26.47/9.56 new_esEs19(Right(x0), Left(x1), x2, x3) 26.47/9.56 new_primCompAux00(x0, x1, EQ, ty_Int) 26.47/9.56 new_esEs32(x0, x1, ty_Int) 26.47/9.56 new_esEs16(Just(x0), Just(x1), ty_@0) 26.47/9.56 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs29(x0, x1, ty_Double) 26.47/9.56 new_ltEs23(x0, x1, ty_Bool) 26.47/9.56 new_esEs27(x0, x1, ty_Int) 26.47/9.56 new_esEs38(x0, x1, ty_@0) 26.47/9.56 new_compare27(EQ, GT) 26.47/9.56 new_compare27(GT, EQ) 26.47/9.56 new_esEs6(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 26.47/9.56 new_compare8(Integer(x0), Integer(x1)) 26.47/9.56 new_ltEs19(x0, x1, ty_Float) 26.47/9.56 new_esEs39(x0, x1, ty_Bool) 26.47/9.56 new_lt21(x0, x1, ty_Int) 26.47/9.56 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_compare110(x0, x1, x2, x3, False, x4, x5, x6) 26.47/9.56 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_primMulInt(Pos(x0), Pos(x1)) 26.47/9.56 new_lt7(x0, x1) 26.47/9.56 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.47/9.56 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 26.47/9.56 new_lt8(x0, x1) 26.47/9.56 new_esEs34(x0, x1, ty_Bool) 26.47/9.56 new_lt12(x0, x1) 26.47/9.56 new_compare7(Left(x0), Left(x1), x2, x3) 26.47/9.56 new_esEs18(x0, x1) 26.47/9.56 new_ltEs5(Left(x0), Right(x1), x2, x3) 26.47/9.56 new_ltEs5(Right(x0), Left(x1), x2, x3) 26.47/9.56 new_ltEs19(x0, x1, ty_Double) 26.47/9.56 new_esEs33(x0, x1, ty_@0) 26.47/9.56 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_lt22(x0, x1, ty_Integer) 26.47/9.56 new_esEs12([], [], x0) 26.47/9.56 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs9(x0, x1, ty_Integer) 26.47/9.56 new_esEs32(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_esEs27(x0, x1, ty_Float) 26.47/9.56 new_esEs15(EQ, EQ) 26.47/9.56 new_esEs34(x0, x1, ty_@0) 26.47/9.56 new_esEs32(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs9(x0, x1, ty_Bool) 26.47/9.56 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 26.47/9.56 new_esEs17(Double(x0, x1), Double(x2, x3)) 26.47/9.56 new_esEs34(x0, x1, ty_Integer) 26.47/9.56 new_esEs35(x0, x1, ty_@0) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, ty_Char) 26.47/9.56 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs9(x0, x1, ty_@0) 26.47/9.56 new_ltEs20(x0, x1, ty_Integer) 26.47/9.56 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 26.47/9.56 new_compare112(x0, x1, True, x2, x3) 26.47/9.56 new_primEqNat0(Zero, Succ(x0)) 26.47/9.56 new_esEs39(x0, x1, ty_Float) 26.47/9.56 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_primPlusNat0(Zero, Zero) 26.47/9.56 new_esEs5(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, ty_Bool) 26.47/9.56 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.47/9.56 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_not(True) 26.47/9.56 new_esEs5(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 26.47/9.56 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 26.47/9.56 new_esEs13(x0, x1, ty_Double) 26.47/9.56 new_primCompAux00(x0, x1, GT, x2) 26.47/9.56 new_esEs38(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_ltEs24(x0, x1, ty_Ordering) 26.47/9.56 new_esEs33(x0, x1, ty_Int) 26.47/9.56 new_lt22(x0, x1, ty_Bool) 26.47/9.56 new_lt21(x0, x1, ty_Integer) 26.47/9.56 new_esEs28(x0, x1, ty_Float) 26.47/9.56 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 26.47/9.56 new_ltEs20(x0, x1, ty_Char) 26.47/9.56 new_esEs9(x0, x1, ty_Float) 26.47/9.56 new_ltEs19(x0, x1, ty_Ordering) 26.47/9.56 new_esEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.47/9.56 new_lt23(x0, x1, ty_Float) 26.47/9.56 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs39(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_compare112(x0, x1, False, x2, x3) 26.47/9.56 new_lt19(x0, x1, ty_Ordering) 26.47/9.56 new_esEs33(x0, x1, ty_Bool) 26.47/9.56 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, ty_Integer) 26.47/9.56 new_esEs33(x0, x1, ty_Char) 26.47/9.56 new_lt21(x0, x1, app(ty_[], x2)) 26.47/9.56 new_ltEs20(x0, x1, ty_Bool) 26.47/9.56 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_compare29(:%(x0, x1), :%(x2, x3), ty_Int) 26.47/9.56 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 26.47/9.56 new_primCmpNat0(Zero, Succ(x0)) 26.47/9.56 new_esEs30(x0, x1, ty_Int) 26.47/9.56 new_esEs16(Just(x0), Just(x1), ty_Integer) 26.47/9.56 new_esEs7(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_ltEs23(x0, x1, app(ty_[], x2)) 26.47/9.56 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs31(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.47/9.56 new_lt21(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.47/9.56 new_primCompAux00(x0, x1, EQ, ty_Double) 26.47/9.56 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.47/9.56 new_esEs9(x0, x1, ty_Int) 26.47/9.56 new_lt21(x0, x1, ty_@0) 26.47/9.56 new_lt6(x0, x1, ty_Ordering) 26.47/9.56 new_compare27(LT, LT) 26.47/9.56 new_lt19(x0, x1, ty_Double) 26.47/9.56 new_ltEs20(x0, x1, ty_Int) 26.47/9.56 new_ltEs14(GT, GT) 26.47/9.56 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.47/9.56 new_esEs26(Integer(x0), Integer(x1)) 26.47/9.56 new_esEs13(x0, x1, ty_Char) 26.47/9.56 new_lt23(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs22(Float(x0, x1), Float(x2, x3)) 26.47/9.56 new_esEs11(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_compare9(False, False) 26.47/9.56 new_lt6(x0, x1, ty_Double) 26.47/9.56 new_esEs34(x0, x1, ty_Int) 26.47/9.56 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.47/9.56 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.47/9.56 new_esEs4(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 26.47/9.56 new_esEs28(x0, x1, ty_Char) 26.47/9.56 new_lt20(x0, x1, ty_Bool) 26.47/9.56 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs9(x0, x1, ty_Char) 26.47/9.56 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 26.47/9.56 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_ltEs12(x0, x1) 26.47/9.56 new_esEs6(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 26.47/9.56 new_esEs35(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs16(Nothing, Just(x0), x1) 26.47/9.56 new_ltEs20(x0, x1, ty_Float) 26.47/9.56 new_lt22(x0, x1, ty_Int) 26.47/9.56 new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 26.47/9.56 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs29(x0, x1, ty_Bool) 26.47/9.56 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.47/9.56 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.47/9.56 new_esEs13(x0, x1, ty_Int) 26.47/9.56 new_esEs34(x0, x1, ty_Float) 26.47/9.56 new_esEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.47/9.56 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 26.47/9.56 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs28(x0, x1, ty_Int) 26.47/9.56 new_lt22(x0, x1, ty_Char) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), ty_Ordering) 26.47/9.56 new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.47/9.56 new_primMulNat0(Succ(x0), Succ(x1)) 26.47/9.56 new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.47/9.56 new_esEs35(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs16(Nothing, Nothing, x0) 26.47/9.56 new_esEs16(Just(x0), Just(x1), ty_Bool) 26.47/9.56 new_primEqNat0(Zero, Zero) 26.47/9.56 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_lt22(x0, x1, ty_Float) 26.47/9.56 new_esEs29(x0, x1, ty_Int) 26.47/9.56 new_esEs39(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_esEs33(x0, x1, ty_Integer) 26.47/9.56 new_not(False) 26.47/9.56 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 26.47/9.56 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_compare18(Just(x0), Nothing, x1) 26.47/9.56 new_esEs5(x0, x1, ty_Double) 26.47/9.56 new_esEs9(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs28(x0, x1, ty_Integer) 26.47/9.56 new_compare27(EQ, EQ) 26.47/9.56 new_lt6(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_esEs13(x0, x1, ty_Float) 26.47/9.56 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_ltEs18(x0, x1, ty_Ordering) 26.47/9.56 new_lt19(x0, x1, app(ty_[], x2)) 26.47/9.56 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs33(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_esEs11(x0, x1, ty_Double) 26.47/9.56 new_esEs30(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_ltEs8(True, True) 26.47/9.56 new_esEs28(x0, x1, ty_Bool) 26.47/9.56 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs10(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_esEs32(x0, x1, ty_Double) 26.47/9.56 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 26.47/9.56 new_esEs29(x0, x1, ty_Float) 26.47/9.56 new_esEs39(x0, x1, ty_Double) 26.47/9.56 new_lt20(x0, x1, ty_Float) 26.47/9.56 new_esEs29(x0, x1, ty_Char) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, ty_@0) 26.47/9.56 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_primPlusNat0(Succ(x0), Succ(x1)) 26.47/9.56 new_esEs27(x0, x1, ty_Double) 26.47/9.56 new_ltEs21(x0, x1, ty_Double) 26.47/9.56 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.47/9.56 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.47/9.56 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_ltEs14(EQ, LT) 26.47/9.56 new_esEs16(Just(x0), Just(x1), ty_Float) 26.47/9.56 new_ltEs14(LT, EQ) 26.47/9.56 new_fsEs(x0) 26.47/9.56 new_primCompAux1(x0, x1, x2, x3, x4) 26.47/9.56 new_ltEs23(x0, x1, ty_Double) 26.47/9.56 new_esEs34(x0, x1, ty_Char) 26.47/9.56 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.47/9.56 new_esEs8(x0, x1, ty_Double) 26.47/9.56 new_esEs16(Just(x0), Just(x1), app(ty_[], x2)) 26.47/9.56 new_compare16(Char(x0), Char(x1)) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), ty_Bool) 26.47/9.56 new_compare26([], [], x0) 26.47/9.56 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_compare0(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_compare18(Nothing, Just(x0), x1) 26.47/9.56 new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs7(x0, x1, ty_Double) 26.47/9.56 new_esEs27(x0, x1, ty_Ordering) 26.47/9.56 new_esEs9(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs30(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_esEs16(Just(x0), Just(x1), ty_Ordering) 26.47/9.56 new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.47/9.56 new_esEs34(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_compare0(x0, x1, ty_Int) 26.47/9.56 new_esEs39(x0, x1, ty_Ordering) 26.47/9.56 new_esEs35(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_esEs32(x0, x1, ty_Char) 26.47/9.56 new_compare26([], :(x0, x1), x2) 26.47/9.56 new_esEs32(x0, x1, app(ty_[], x2)) 26.47/9.56 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 26.47/9.56 new_lt6(x0, x1, ty_Bool) 26.47/9.56 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs4(x0, x1, ty_Double) 26.47/9.56 new_lt20(x0, x1, ty_Ordering) 26.47/9.56 new_esEs38(x0, x1, ty_Char) 26.47/9.56 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_esEs7(x0, x1, ty_Ordering) 26.47/9.56 new_lt6(x0, x1, ty_Integer) 26.47/9.56 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_compare17(@2(x0, x1), @2(x2, x3), x4, x5) 26.47/9.56 new_lt20(x0, x1, ty_Double) 26.47/9.56 new_lt6(x0, x1, ty_@0) 26.47/9.56 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_lt23(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), ty_Integer) 26.47/9.56 new_esEs16(Just(x0), Just(x1), ty_Char) 26.47/9.56 new_esEs4(x0, x1, ty_Ordering) 26.47/9.56 new_lt17(x0, x1) 26.47/9.56 new_lt5(x0, x1) 26.47/9.56 new_esEs16(Just(x0), Just(x1), ty_Double) 26.47/9.56 new_lt23(x0, x1, ty_Ordering) 26.47/9.56 new_lt23(x0, x1, ty_Double) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs12(:(x0, x1), [], x2) 26.47/9.56 new_esEs28(x0, x1, ty_Double) 26.47/9.56 new_ltEs14(LT, LT) 26.47/9.56 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 26.47/9.56 new_esEs28(x0, x1, ty_Ordering) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), ty_@0) 26.47/9.56 new_esEs28(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs7(x0, x1, ty_Char) 26.47/9.56 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_lt20(x0, x1, ty_Char) 26.47/9.56 new_primMulNat0(Succ(x0), Zero) 26.47/9.56 new_esEs15(EQ, GT) 26.47/9.56 new_esEs15(GT, EQ) 26.47/9.56 new_asAs(False, x0) 26.47/9.56 new_esEs15(LT, LT) 26.47/9.56 new_esEs30(x0, x1, app(ty_[], x2)) 26.47/9.56 new_lt6(x0, x1, app(ty_[], x2)) 26.47/9.56 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs38(x0, x1, ty_Ordering) 26.47/9.56 new_esEs31(x0, x1, ty_Char) 26.47/9.56 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_ltEs8(False, False) 26.47/9.56 new_esEs14(False, True) 26.47/9.56 new_esEs14(True, False) 26.47/9.56 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 26.47/9.56 new_esEs6(x0, x1, app(ty_[], x2)) 26.47/9.56 new_compare14(x0, x1, True, x2, x3) 26.47/9.56 new_esEs4(x0, x1, ty_Char) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.47/9.56 new_esEs29(x0, x1, ty_Integer) 26.47/9.56 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 26.47/9.56 new_lt21(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.47/9.56 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs8(x0, x1, ty_Ordering) 26.47/9.56 new_ltEs18(x0, x1, ty_Int) 26.47/9.56 new_ltEs22(x0, x1, ty_Char) 26.47/9.56 new_esEs11(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_ltEs21(x0, x1, ty_Ordering) 26.47/9.56 new_ltEs23(x0, x1, ty_Ordering) 26.47/9.56 new_ltEs22(x0, x1, ty_Double) 26.47/9.56 new_esEs35(x0, x1, ty_Float) 26.47/9.56 new_compare210(x0, x1, False, x2) 26.47/9.56 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs5(x0, x1, ty_Ordering) 26.47/9.56 new_lt21(x0, x1, ty_Ordering) 26.47/9.56 new_esEs30(x0, x1, ty_Char) 26.47/9.56 new_esEs32(x0, x1, ty_Ordering) 26.47/9.56 new_primCompAux00(x0, x1, LT, x2) 26.47/9.56 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.47/9.56 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.47/9.56 new_esEs34(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_compare26(:(x0, x1), [], x2) 26.47/9.56 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_ltEs21(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs5(x0, x1, ty_Char) 26.47/9.56 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 26.47/9.56 new_compare13(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.47/9.56 new_esEs31(x0, x1, ty_Double) 26.47/9.56 new_compare13(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.47/9.56 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs19(Left(x0), Left(x1), ty_Char, x2) 26.47/9.56 new_primCompAux00(x0, x1, EQ, ty_Float) 26.47/9.56 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.47/9.56 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.47/9.56 new_primCompAux00(x0, x1, EQ, ty_Ordering) 26.47/9.56 new_esEs16(Just(x0), Nothing, x1) 26.47/9.56 new_esEs6(x0, x1, ty_Char) 26.47/9.56 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.47/9.56 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs29(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs10(x0, x1, ty_Char) 26.47/9.56 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs15(LT, GT) 26.47/9.56 new_esEs15(GT, LT) 26.47/9.56 new_esEs8(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_lt6(x0, x1, ty_Float) 26.47/9.56 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs38(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_ltEs20(x0, x1, ty_Double) 26.47/9.56 new_compare0(x0, x1, ty_@0) 26.47/9.56 new_esEs10(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_ltEs14(LT, GT) 26.47/9.56 new_ltEs14(GT, LT) 26.47/9.56 new_esEs9(x0, x1, ty_Double) 26.47/9.56 new_esEs6(x0, x1, ty_Ordering) 26.47/9.56 new_ltEs23(x0, x1, ty_Float) 26.47/9.56 new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) 26.47/9.56 new_esEs13(x0, x1, ty_Ordering) 26.47/9.56 new_compare18(Just(x0), Just(x1), x2) 26.47/9.56 new_esEs31(x0, x1, app(ty_[], x2)) 26.47/9.56 new_pePe(False, x0) 26.47/9.56 new_ltEs10(Nothing, Just(x0), x1) 26.47/9.56 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_ltEs20(x0, x1, ty_Ordering) 26.47/9.56 new_primPlusNat1(Succ(x0), x1) 26.47/9.56 new_esEs31(x0, x1, ty_Ordering) 26.47/9.56 new_ltEs24(x0, x1, ty_Double) 26.47/9.56 new_lt23(x0, x1, ty_Char) 26.47/9.56 new_ltEs22(x0, x1, ty_Ordering) 26.47/9.56 new_compare111(x0, x1, x2, x3, True, x4, x5) 26.47/9.56 new_lt6(x0, x1, ty_Int) 26.47/9.56 new_sr0(Integer(x0), Integer(x1)) 26.47/9.56 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.47/9.56 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs14(EQ, GT) 26.47/9.56 new_ltEs14(GT, EQ) 26.47/9.56 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_lt23(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_lt22(x0, x1, ty_@0) 26.47/9.56 new_ltEs17(x0, x1, x2) 26.47/9.56 new_lt21(x0, x1, ty_Char) 26.47/9.56 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.47/9.56 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.47/9.56 new_esEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs11(x0, x1, ty_Bool) 26.47/9.56 new_esEs8(x0, x1, ty_Float) 26.47/9.56 new_esEs35(x0, x1, ty_Integer) 26.47/9.56 new_esEs38(x0, x1, ty_Double) 26.47/9.56 new_esEs35(x0, x1, ty_Ordering) 26.47/9.56 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_ltEs19(x0, x1, ty_Char) 26.47/9.56 new_compare7(Right(x0), Right(x1), x2, x3) 26.47/9.56 new_esEs35(x0, x1, ty_Bool) 26.47/9.56 new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 26.47/9.56 new_lt6(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_ltEs6(x0, x1) 26.47/9.56 new_lt9(x0, x1, x2, x3) 26.47/9.56 new_esEs39(x0, x1, ty_Char) 26.47/9.56 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, ty_Float) 26.47/9.56 new_ltEs24(x0, x1, ty_@0) 26.47/9.56 new_lt18(x0, x1, x2) 26.47/9.56 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_esEs33(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs34(x0, x1, ty_Double) 26.47/9.56 new_esEs11(x0, x1, ty_Int) 26.47/9.56 new_primCmpNat0(Succ(x0), Zero) 26.47/9.56 new_lt19(x0, x1, ty_Int) 26.47/9.56 new_esEs5(x0, x1, ty_Float) 26.47/9.56 new_primCompAux00(x0, x1, EQ, ty_Char) 26.47/9.56 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs29(x0, x1, ty_@0) 26.47/9.56 new_compare7(Left(x0), Right(x1), x2, x3) 26.47/9.56 new_esEs27(x0, x1, ty_Char) 26.47/9.56 new_compare7(Right(x0), Left(x1), x2, x3) 26.47/9.56 new_ltEs21(x0, x1, ty_Char) 26.47/9.56 new_primPlusNat0(Succ(x0), Zero) 26.47/9.56 new_primEqNat0(Succ(x0), Zero) 26.47/9.56 new_ltEs23(x0, x1, ty_Char) 26.47/9.56 new_esEs8(x0, x1, ty_Char) 26.47/9.56 new_ltEs19(x0, x1, app(ty_[], x2)) 26.47/9.56 new_lt19(x0, x1, ty_@0) 26.47/9.56 new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) 26.47/9.56 new_esEs7(x0, x1, ty_Float) 26.47/9.56 new_esEs38(x0, x1, app(ty_[], x2)) 26.47/9.56 new_ltEs23(x0, x1, ty_Integer) 26.47/9.56 new_esEs37(x0, x1, ty_Int) 26.47/9.56 new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) 26.47/9.56 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_compare9(False, True) 26.47/9.56 new_compare9(True, False) 26.47/9.56 new_lt21(x0, x1, ty_Float) 26.47/9.56 new_primMulNat0(Zero, Zero) 26.47/9.56 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_primCompAux00(x0, x1, EQ, ty_@0) 26.47/9.56 new_esEs11(x0, x1, ty_Integer) 26.47/9.56 new_ltEs14(EQ, EQ) 26.47/9.56 new_esEs13(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_primCompAux00(x0, x1, EQ, ty_Bool) 26.47/9.56 new_lt19(x0, x1, ty_Bool) 26.47/9.56 new_esEs34(x0, x1, app(ty_[], x2)) 26.47/9.56 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.47/9.56 new_ltEs20(x0, x1, ty_@0) 26.47/9.56 new_esEs35(x0, x1, ty_Char) 26.47/9.56 new_compare10(x0, x1, True, x2) 26.47/9.56 new_esEs4(x0, x1, ty_Float) 26.47/9.56 new_ltEs24(x0, x1, ty_Char) 26.47/9.56 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 26.47/9.56 new_compare110(x0, x1, x2, x3, True, x4, x5, x6) 26.47/9.56 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs8(x0, x1, ty_Integer) 26.47/9.56 new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 26.47/9.56 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs5(x0, x1, ty_Bool) 26.47/9.56 new_esEs5(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_lt14(x0, x1) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) 26.47/9.56 new_ltEs18(x0, x1, ty_Float) 26.47/9.56 new_ltEs18(x0, x1, ty_Integer) 26.47/9.56 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.47/9.56 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.47/9.56 new_esEs4(x0, x1, ty_Integer) 26.47/9.56 new_esEs35(x0, x1, ty_Int) 26.47/9.56 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 26.47/9.56 new_compare24(x0, x1, True, x2, x3) 26.47/9.56 new_esEs10(x0, x1, ty_Double) 26.47/9.56 new_ltEs24(x0, x1, ty_Bool) 26.47/9.56 new_lt19(x0, x1, ty_Integer) 26.47/9.56 new_primCompAux00(x0, x1, EQ, ty_Integer) 26.47/9.56 new_ltEs24(x0, x1, app(ty_[], x2)) 26.47/9.56 new_compare0(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs8(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs4(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs20(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs24(x0, x1, ty_Integer) 26.47/9.56 new_esEs7(x0, x1, ty_Integer) 26.47/9.56 new_ltEs7(x0, x1) 26.47/9.56 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_primPlusNat1(Zero, x0) 26.47/9.56 new_esEs30(x0, x1, ty_Double) 26.47/9.56 new_ltEs18(x0, x1, ty_Bool) 26.47/9.56 new_compare0(x0, x1, ty_Float) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) 26.47/9.56 new_ltEs10(Just(x0), Nothing, x1) 26.47/9.56 new_esEs33(x0, x1, ty_Double) 26.47/9.56 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.47/9.56 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs36(x0, x1, ty_Int) 26.47/9.56 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs4(x0, x1, ty_Bool) 26.47/9.56 new_esEs29(x0, x1, ty_Ordering) 26.47/9.56 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.47/9.56 new_esEs5(x0, x1, ty_Integer) 26.47/9.56 new_ltEs16(x0, x1) 26.47/9.56 new_compare13(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.47/9.56 new_compare13(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.47/9.56 new_esEs7(x0, x1, ty_Bool) 26.47/9.56 new_esEs31(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), ty_Float) 26.47/9.56 new_ltEs19(x0, x1, ty_@0) 26.47/9.56 new_esEs37(x0, x1, ty_Integer) 26.47/9.56 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.47/9.56 new_compare0(x0, x1, ty_Bool) 26.47/9.56 new_compare9(True, True) 26.47/9.56 new_lt23(x0, x1, ty_@0) 26.47/9.56 new_lt22(x0, x1, app(ty_[], x2)) 26.47/9.56 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs27(x0, x1, ty_@0) 26.47/9.56 new_esEs31(x0, x1, ty_Float) 26.47/9.56 new_esEs34(x0, x1, ty_Ordering) 26.47/9.56 new_esEs19(Right(x0), Right(x1), x2, ty_Double) 26.47/9.56 new_esEs35(x0, x1, ty_Double) 26.47/9.56 new_ltEs18(x0, x1, ty_@0) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), ty_Int) 26.47/9.56 new_esEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs33(x0, x1, ty_Ordering) 26.47/9.56 new_esEs39(x0, x1, ty_@0) 26.47/9.56 new_esEs15(GT, GT) 26.47/9.56 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs22(x0, x1, ty_Float) 26.47/9.56 new_esEs9(x0, x1, ty_Ordering) 26.47/9.56 new_esEs15(LT, EQ) 26.47/9.56 new_esEs15(EQ, LT) 26.47/9.56 new_ltEs18(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_compare26(:(x0, x1), :(x2, x3), x4) 26.47/9.56 new_esEs33(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs31(x0, x1, ty_Int) 26.47/9.56 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 26.47/9.56 new_compare24(x0, x1, False, x2, x3) 26.47/9.56 new_esEs11(x0, x1, ty_@0) 26.47/9.56 new_esEs8(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs19(Left(x0), Left(x1), ty_Double, x2) 26.47/9.56 new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.47/9.56 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.47/9.56 new_esEs5(x0, x1, ty_@0) 26.47/9.56 new_ltEs23(x0, x1, ty_@0) 26.47/9.56 new_ltEs24(x0, x1, ty_Int) 26.47/9.56 new_esEs10(x0, x1, ty_Ordering) 26.47/9.56 new_esEs20(Char(x0), Char(x1)) 26.47/9.56 new_ltEs10(Just(x0), Just(x1), ty_Char) 26.47/9.56 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.47/9.56 new_esEs6(x0, x1, ty_Double) 26.47/9.56 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.47/9.56 new_esEs14(False, False) 26.47/9.56 new_ltEs21(x0, x1, ty_@0) 26.47/9.56 new_esEs11(x0, x1, app(ty_[], x2)) 26.47/9.56 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs8(x0, x1, ty_@0) 26.47/9.56 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 26.47/9.56 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.47/9.56 new_esEs30(x0, x1, ty_Ordering) 26.47/9.56 new_lt4(x0, x1) 26.47/9.56 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_compare111(x0, x1, x2, x3, False, x4, x5) 26.47/9.56 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_compare0(x0, x1, ty_Integer) 26.47/9.56 new_esEs38(x0, x1, ty_Int) 26.47/9.56 new_compare27(GT, GT) 26.47/9.56 new_compare212(x0, x1, x2, x3, False, x4, x5) 26.47/9.56 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.56 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_ltEs11(x0, x1) 26.47/9.56 new_esEs32(x0, x1, ty_@0) 26.47/9.56 new_asAs(True, x0) 26.47/9.56 new_lt21(x0, x1, ty_Double) 26.47/9.56 new_compare27(LT, EQ) 26.47/9.56 new_compare27(EQ, LT) 26.47/9.56 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.56 new_esEs38(x0, x1, ty_Float) 26.47/9.56 new_compare28(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.47/9.56 new_ltEs24(x0, x1, ty_Float) 26.47/9.56 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.56 new_primCmpNat0(Zero, Zero) 26.47/9.56 new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.47/9.56 new_compare25(x0, x1, True, x2, x3) 26.47/9.56 26.47/9.56 We have to consider all minimal (P,Q,R)-chains. 26.47/9.56 ---------------------------------------- 26.47/9.56 26.47/9.56 (24) QDPSizeChangeProof (EQUIVALENT) 26.47/9.56 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. 26.47/9.56 26.47/9.56 From the DPs we obtained the following set of size-change graphs: 26.47/9.56 *new_delFromFM(Branch(:(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), [], bb, bc) -> new_delFromFM10(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, LT, bb, bc) 26.47/9.56 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 1 > 6, 3 >= 8, 4 >= 9 26.47/9.56 26.47/9.56 26.47/9.56 *new_delFromFM10(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, LT, bb, bc) -> new_delFromFM(xwv33, [], bb, bc) 26.47/9.56 The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4 26.47/9.56 26.47/9.56 26.47/9.56 ---------------------------------------- 26.47/9.56 26.47/9.56 (25) 26.47/9.56 YES 26.47/9.56 26.47/9.56 ---------------------------------------- 26.47/9.56 26.47/9.56 (26) 26.47/9.56 Obligation: 26.47/9.56 Q DP problem: 26.47/9.56 The TRS P consists of the following rules: 26.47/9.56 26.47/9.56 new_delFromFM(Branch(:(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), :(xwv400, xwv401), bb, bc) -> new_delFromFM2(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, xwv400, xwv401, new_primCompAux1(xwv400, xwv300, xwv401, xwv301, bb), bb, bc) 26.47/9.56 new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, EQ, h, ba) -> new_delFromFM20(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, h, ba) 26.47/9.56 new_delFromFM20(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, h, ba) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_compare26(:(xwv21, xwv22), :(xwv15, xwv16), h), h, ba) 26.47/9.56 new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, LT, h, ba) -> new_delFromFM(xwv19, :(xwv21, xwv22), h, ba) 26.47/9.56 new_delFromFM(Branch([], xwv31, xwv32, xwv33, xwv34), :(xwv400, xwv401), bb, bc) -> new_delFromFM(xwv34, :(xwv400, xwv401), bb, bc) 26.47/9.56 new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, GT, h, ba) -> new_delFromFM(xwv20, :(xwv21, xwv22), h, ba) 26.47/9.56 new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, LT, h, ba) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_compare26(:(xwv21, xwv22), :(xwv15, xwv16), h), h, ba) 26.47/9.56 26.47/9.56 The TRS R consists of the following rules: 26.47/9.56 26.47/9.56 new_primCompAux00(xwv32, xwv33, EQ, ty_@0) -> new_compare6(xwv32, xwv33) 26.47/9.56 new_ltEs24(xwv54, xwv55, ty_Float) -> new_ltEs12(xwv54, xwv55) 26.47/9.56 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.47/9.56 new_esEs33(xwv540, xwv550, app(ty_Ratio, def)) -> new_esEs23(xwv540, xwv550, def) 26.47/9.56 new_esEs28(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.56 new_ltEs21(xwv83, xwv84, ty_Bool) -> new_ltEs8(xwv83, xwv84) 26.47/9.56 new_primPlusNat0(Zero, Zero) -> Zero 26.47/9.56 new_ltEs22(xwv76, xwv77, app(app(app(ty_@3, eeg), eeh), efa)) -> new_ltEs15(xwv76, xwv77, eeg, eeh, efa) 26.47/9.56 new_primCompAux1(xwv400, xwv300, xwv401, xwv301, bb) -> new_primCompAux00(xwv401, xwv301, new_compare0(xwv400, xwv300, bb), app(ty_[], bb)) 26.47/9.56 new_esEs24(@0, @0) -> True 26.47/9.56 new_pePe(True, xwv216) -> True 26.47/9.56 new_esEs10(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Integer, ffc) -> new_esEs26(xwv40000, xwv30000) 26.47/9.56 new_compare212(xwv113, xwv114, xwv115, xwv116, True, cdb, cdc) -> EQ 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(ty_@2, ffg), ffh), ffc) -> new_esEs21(xwv40000, xwv30000, ffg, ffh) 26.47/9.56 new_ltEs24(xwv54, xwv55, ty_Ordering) -> new_ltEs14(xwv54, xwv55) 26.47/9.56 new_esEs34(xwv541, xwv551, ty_Double) -> new_esEs17(xwv541, xwv551) 26.47/9.56 new_esEs35(xwv540, xwv550, app(ty_[], eaa)) -> new_esEs12(xwv540, xwv550, eaa) 26.47/9.56 new_esEs30(xwv40002, xwv30002, app(app(ty_@2, cgf), cgg)) -> new_esEs21(xwv40002, xwv30002, cgf, cgg) 26.47/9.56 new_esEs34(xwv541, xwv551, ty_Float) -> new_esEs22(xwv541, xwv551) 26.47/9.56 new_esEs13(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.56 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.47/9.56 new_compare27(LT, EQ) -> LT 26.47/9.56 new_lt6(xwv113, xwv115, ty_Char) -> new_lt8(xwv113, xwv115) 26.47/9.56 new_ltEs7(xwv54, xwv55) -> new_fsEs(new_compare16(xwv54, xwv55)) 26.47/9.56 new_compare27(LT, GT) -> LT 26.47/9.56 new_esEs32(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.47/9.56 new_esEs7(xwv4002, xwv3002, ty_Char) -> new_esEs20(xwv4002, xwv3002) 26.47/9.56 new_esEs28(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.47/9.56 new_esEs20(Char(xwv40000), Char(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 26.47/9.56 new_primMulNat0(Succ(xwv400000), Succ(xwv300100)) -> new_primPlusNat1(new_primMulNat0(xwv400000, Succ(xwv300100)), xwv300100) 26.47/9.56 new_compare111(xwv170, xwv171, xwv172, xwv173, False, bfd, bfe) -> GT 26.47/9.56 new_esEs39(xwv65, xwv68, ty_Ordering) -> new_esEs15(xwv65, xwv68) 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), ty_Int, da) -> new_ltEs6(xwv540, xwv550) 26.47/9.56 new_esEs10(xwv4000, xwv3000, app(ty_Maybe, bah)) -> new_esEs16(xwv4000, xwv3000, bah) 26.47/9.56 new_ltEs19(xwv541, xwv551, ty_Double) -> new_ltEs11(xwv541, xwv551) 26.47/9.56 new_ltEs5(Left(xwv540), Right(xwv550), ed, da) -> True 26.47/9.56 new_compare0(xwv400, xwv300, ty_@0) -> new_compare6(xwv400, xwv300) 26.47/9.56 new_esEs7(xwv4002, xwv3002, ty_Int) -> new_esEs18(xwv4002, xwv3002) 26.47/9.56 new_esEs34(xwv541, xwv551, ty_Ordering) -> new_esEs15(xwv541, xwv551) 26.47/9.56 new_lt19(xwv540, xwv550, app(ty_Ratio, def)) -> new_lt18(xwv540, xwv550, def) 26.47/9.56 new_ltEs20(xwv542, xwv552, ty_@0) -> new_ltEs4(xwv542, xwv552) 26.47/9.56 new_lt20(xwv541, xwv551, app(ty_[], dgg)) -> new_lt13(xwv541, xwv551, dgg) 26.47/9.56 new_esEs9(xwv4000, xwv3000, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs25(xwv4000, xwv3000, ccf, ccg, cch) 26.47/9.56 new_ltEs23(xwv67, xwv70, app(app(ty_Either, fcc), fcd)) -> new_ltEs5(xwv67, xwv70, fcc, fcd) 26.47/9.56 new_compare18(Nothing, Just(xwv3000), bff) -> LT 26.47/9.56 new_primEqNat0(Succ(xwv400000), Succ(xwv300000)) -> new_primEqNat0(xwv400000, xwv300000) 26.47/9.56 new_ltEs22(xwv76, xwv77, app(ty_Maybe, eee)) -> new_ltEs10(xwv76, xwv77, eee) 26.47/9.56 new_ltEs21(xwv83, xwv84, ty_Char) -> new_ltEs7(xwv83, xwv84) 26.47/9.56 new_not(True) -> False 26.47/9.56 new_lt18(xwv113, xwv115, cee) -> new_esEs15(new_compare29(xwv113, xwv115, cee), LT) 26.47/9.56 new_esEs4(xwv4001, xwv3001, ty_Bool) -> new_esEs14(xwv4001, xwv3001) 26.47/9.56 new_esEs35(xwv540, xwv550, app(app(ty_@2, dhf), dhg)) -> new_esEs21(xwv540, xwv550, dhf, dhg) 26.47/9.56 new_esEs29(xwv113, xwv115, ty_Ordering) -> new_esEs15(xwv113, xwv115) 26.47/9.56 new_esEs38(xwv66, xwv69, app(ty_Ratio, fdg)) -> new_esEs23(xwv66, xwv69, fdg) 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), ty_Bool) -> new_ltEs8(xwv540, xwv550) 26.47/9.56 new_ltEs16(xwv54, xwv55) -> new_fsEs(new_compare8(xwv54, xwv55)) 26.47/9.56 new_esEs4(xwv4001, xwv3001, app(ty_[], ffa)) -> new_esEs12(xwv4001, xwv3001, ffa) 26.47/9.56 new_esEs30(xwv40002, xwv30002, ty_Bool) -> new_esEs14(xwv40002, xwv30002) 26.47/9.56 new_ltEs19(xwv541, xwv551, ty_Bool) -> new_ltEs8(xwv541, xwv551) 26.47/9.56 new_esEs30(xwv40002, xwv30002, ty_Int) -> new_esEs18(xwv40002, xwv30002) 26.47/9.56 new_compare11(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, False, xwv192, bdd, bde, bdf) -> new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, xwv192, bdd, bde, bdf) 26.47/9.56 new_primCompAux00(xwv32, xwv33, EQ, ty_Bool) -> new_compare9(xwv32, xwv33) 26.47/9.56 new_lt20(xwv541, xwv551, app(app(app(ty_@3, dgh), dha), dhb)) -> new_lt15(xwv541, xwv551, dgh, dha, dhb) 26.47/9.56 new_ltEs18(xwv114, xwv116, ty_@0) -> new_ltEs4(xwv114, xwv116) 26.47/9.56 new_esEs28(xwv40000, xwv30000, app(app(ty_@2, hg), hh)) -> new_esEs21(xwv40000, xwv30000, hg, hh) 26.47/9.56 new_ltEs24(xwv54, xwv55, ty_Integer) -> new_ltEs16(xwv54, xwv55) 26.47/9.56 new_compare28(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), bha, bhb, bhc) -> new_compare211(xwv4000, xwv4001, xwv4002, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs9(xwv4000, xwv3000, bha), new_asAs(new_esEs8(xwv4001, xwv3001, bhb), new_esEs7(xwv4002, xwv3002, bhc))), bha, bhb, bhc) 26.47/9.56 new_esEs37(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.56 new_primEqNat0(Succ(xwv400000), Zero) -> False 26.47/9.56 new_primEqNat0(Zero, Succ(xwv300000)) -> False 26.47/9.56 new_esEs10(xwv4000, xwv3000, app(app(ty_@2, bbc), bbd)) -> new_esEs21(xwv4000, xwv3000, bbc, bbd) 26.47/9.56 new_ltEs20(xwv542, xwv552, ty_Int) -> new_ltEs6(xwv542, xwv552) 26.47/9.56 new_esEs39(xwv65, xwv68, ty_Double) -> new_esEs17(xwv65, xwv68) 26.47/9.56 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Float, ffc) -> new_esEs22(xwv40000, xwv30000) 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), ty_@0, da) -> new_ltEs4(xwv540, xwv550) 26.47/9.56 new_esEs30(xwv40002, xwv30002, ty_Char) -> new_esEs20(xwv40002, xwv30002) 26.47/9.56 new_esEs14(False, True) -> False 26.47/9.56 new_esEs14(True, False) -> False 26.47/9.56 new_ltEs5(Left(xwv540), Left(xwv550), app(app(ty_Either, ea), eb), da) -> new_ltEs5(xwv540, xwv550, ea, eb) 26.47/9.56 new_esEs29(xwv113, xwv115, ty_Double) -> new_esEs17(xwv113, xwv115) 26.47/9.56 new_ltEs14(EQ, EQ) -> True 26.47/9.56 new_ltEs10(Nothing, Just(xwv550), egc) -> True 26.47/9.56 new_esEs13(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), ty_Double) -> new_ltEs11(xwv540, xwv550) 26.47/9.56 new_ltEs21(xwv83, xwv84, ty_Double) -> new_ltEs11(xwv83, xwv84) 26.47/9.56 new_primCmpInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> GT 26.47/9.56 new_esEs6(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.47/9.56 new_esEs10(xwv4000, xwv3000, app(ty_[], bca)) -> new_esEs12(xwv4000, xwv3000, bca) 26.47/9.56 new_lt23(xwv66, xwv69, ty_Integer) -> new_lt17(xwv66, xwv69) 26.47/9.56 new_esEs35(xwv540, xwv550, ty_Bool) -> new_esEs14(xwv540, xwv550) 26.47/9.56 new_esEs5(xwv4000, xwv3000, app(app(ty_Either, ffb), ffc)) -> new_esEs19(xwv4000, xwv3000, ffb, ffc) 26.47/9.56 new_primCompAux00(xwv32, xwv33, GT, bea) -> GT 26.47/9.56 new_ltEs10(Just(xwv540), Just(xwv550), ty_Char) -> new_ltEs7(xwv540, xwv550) 26.47/9.56 new_compare27(EQ, GT) -> LT 26.47/9.56 new_primCmpNat0(Zero, Succ(xwv30000)) -> LT 26.47/9.56 new_esEs4(xwv4001, xwv3001, app(app(ty_@2, fec), fed)) -> new_esEs21(xwv4001, xwv3001, fec, fed) 26.47/9.56 new_lt20(xwv541, xwv551, ty_@0) -> new_lt12(xwv541, xwv551) 26.47/9.56 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(ty_[], fhg)) -> new_esEs12(xwv40000, xwv30000, fhg) 26.47/9.57 new_primCompAux00(xwv32, xwv33, EQ, app(ty_[], bee)) -> new_compare26(xwv32, xwv33, bee) 26.47/9.57 new_esEs6(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.47/9.57 new_esEs9(xwv4000, xwv3000, app(ty_[], cda)) -> new_esEs12(xwv4000, xwv3000, cda) 26.47/9.57 new_ltEs19(xwv541, xwv551, ty_Char) -> new_ltEs7(xwv541, xwv551) 26.47/9.57 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Ordering, ffc) -> new_esEs15(xwv40000, xwv30000) 26.47/9.57 new_esEs15(GT, GT) -> True 26.47/9.57 new_esEs6(xwv4000, xwv3000, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs25(xwv4000, xwv3000, bge, bgf, bgg) 26.47/9.57 new_ltEs9(@2(xwv540, xwv541), @2(xwv550, xwv551), dca, dcb) -> new_pePe(new_lt19(xwv540, xwv550, dca), new_asAs(new_esEs33(xwv540, xwv550, dca), new_ltEs19(xwv541, xwv551, dcb))) 26.47/9.57 new_esEs10(xwv4000, xwv3000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs25(xwv4000, xwv3000, bbf, bbg, bbh) 26.47/9.57 new_esEs11(xwv4000, xwv3000, app(ty_Ratio, bcg)) -> new_esEs23(xwv4000, xwv3000, bcg) 26.47/9.57 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.47/9.57 new_esEs28(xwv40000, xwv30000, app(ty_Maybe, hd)) -> new_esEs16(xwv40000, xwv30000, hd) 26.47/9.57 new_ltEs19(xwv541, xwv551, ty_Ordering) -> new_ltEs14(xwv541, xwv551) 26.47/9.57 new_esEs8(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 26.47/9.57 new_esEs7(xwv4002, xwv3002, app(ty_Maybe, bhd)) -> new_esEs16(xwv4002, xwv3002, bhd) 26.47/9.57 new_esEs38(xwv66, xwv69, app(ty_[], fda)) -> new_esEs12(xwv66, xwv69, fda) 26.47/9.57 new_lt21(xwv540, xwv550, ty_Int) -> new_lt7(xwv540, xwv550) 26.47/9.57 new_esEs31(xwv40001, xwv30001, app(app(ty_Either, chf), chg)) -> new_esEs19(xwv40001, xwv30001, chf, chg) 26.47/9.57 new_ltEs14(EQ, GT) -> True 26.47/9.57 new_ltEs6(xwv54, xwv55) -> new_fsEs(new_compare15(xwv54, xwv55)) 26.47/9.57 new_esEs13(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.47/9.57 new_compare0(xwv400, xwv300, app(app(ty_Either, baf), bag)) -> new_compare7(xwv400, xwv300, baf, bag) 26.47/9.57 new_primEqInt(Neg(Succ(xwv400000)), Neg(Succ(xwv300000))) -> new_primEqNat0(xwv400000, xwv300000) 26.47/9.57 new_compare15(xwv400, xwv300) -> new_primCmpInt(xwv400, xwv300) 26.47/9.57 new_primCmpInt(Neg(Zero), Pos(Succ(xwv30000))) -> LT 26.47/9.57 new_lt22(xwv65, xwv68, app(app(app(ty_@3, faf), fag), fah)) -> new_lt15(xwv65, xwv68, faf, fag, fah) 26.47/9.57 new_lt23(xwv66, xwv69, app(ty_[], fda)) -> new_lt13(xwv66, xwv69, fda) 26.47/9.57 new_primMulInt(Pos(xwv40000), Pos(xwv30010)) -> Pos(new_primMulNat0(xwv40000, xwv30010)) 26.47/9.57 new_ltEs8(True, False) -> False 26.47/9.57 new_ltEs14(LT, GT) -> True 26.47/9.57 new_ltEs14(GT, GT) -> True 26.47/9.57 new_ltEs22(xwv76, xwv77, ty_Int) -> new_ltEs6(xwv76, xwv77) 26.47/9.57 new_esEs32(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.57 new_esEs11(xwv4000, xwv3000, app(app(ty_Either, bcc), bcd)) -> new_esEs19(xwv4000, xwv3000, bcc, bcd) 26.47/9.57 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.47/9.57 new_esEs28(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.47/9.57 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(app(ty_@3, fgb), fgc), fgd), ffc) -> new_esEs25(xwv40000, xwv30000, fgb, fgc, fgd) 26.47/9.57 new_compare10(xwv141, xwv142, True, cg) -> LT 26.47/9.57 new_ltEs22(xwv76, xwv77, ty_Integer) -> new_ltEs16(xwv76, xwv77) 26.47/9.57 new_primMulNat0(Succ(xwv400000), Zero) -> Zero 26.47/9.57 new_primMulNat0(Zero, Succ(xwv300100)) -> Zero 26.47/9.57 new_ltEs8(False, False) -> True 26.47/9.57 new_esEs8(xwv4001, xwv3001, ty_Float) -> new_esEs22(xwv4001, xwv3001) 26.47/9.57 new_primCompAux00(xwv32, xwv33, EQ, ty_Integer) -> new_compare8(xwv32, xwv33) 26.47/9.57 new_lt6(xwv113, xwv115, app(app(ty_@2, cdd), cde)) -> new_lt9(xwv113, xwv115, cdd, cde) 26.47/9.57 new_esEs6(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.47/9.57 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.57 new_primPlusNat1(Succ(xwv2220), xwv300100) -> Succ(Succ(new_primPlusNat0(xwv2220, xwv300100))) 26.47/9.57 new_lt23(xwv66, xwv69, ty_Float) -> new_lt11(xwv66, xwv69) 26.47/9.57 new_ltEs19(xwv541, xwv551, ty_Float) -> new_ltEs12(xwv541, xwv551) 26.47/9.57 new_compare0(xwv400, xwv300, ty_Bool) -> new_compare9(xwv400, xwv300) 26.47/9.57 new_ltEs22(xwv76, xwv77, app(app(ty_@2, eec), eed)) -> new_ltEs9(xwv76, xwv77, eec, eed) 26.47/9.57 new_primPlusNat0(Succ(xwv33200), Zero) -> Succ(xwv33200) 26.47/9.57 new_primPlusNat0(Zero, Succ(xwv24200)) -> Succ(xwv24200) 26.47/9.57 new_compare9(True, True) -> EQ 26.47/9.57 new_primPlusNat1(Zero, xwv300100) -> Succ(xwv300100) 26.47/9.57 new_lt23(xwv66, xwv69, ty_Int) -> new_lt7(xwv66, xwv69) 26.47/9.57 new_ltEs5(Left(xwv540), Left(xwv550), app(app(app(ty_@3, df), dg), dh), da) -> new_ltEs15(xwv540, xwv550, df, dg, dh) 26.47/9.57 new_esEs7(xwv4002, xwv3002, app(app(ty_Either, bhe), bhf)) -> new_esEs19(xwv4002, xwv3002, bhe, bhf) 26.47/9.57 new_esEs4(xwv4001, xwv3001, app(ty_Maybe, fdh)) -> new_esEs16(xwv4001, xwv3001, fdh) 26.47/9.57 new_ltEs19(xwv541, xwv551, ty_Integer) -> new_ltEs16(xwv541, xwv551) 26.47/9.57 new_esEs8(xwv4001, xwv3001, ty_Integer) -> new_esEs26(xwv4001, xwv3001) 26.47/9.57 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.47/9.57 new_esEs7(xwv4002, xwv3002, app(app(ty_@2, bhg), bhh)) -> new_esEs21(xwv4002, xwv3002, bhg, bhh) 26.47/9.57 new_lt6(xwv113, xwv115, ty_Ordering) -> new_lt14(xwv113, xwv115) 26.47/9.57 new_esEs38(xwv66, xwv69, ty_Char) -> new_esEs20(xwv66, xwv69) 26.47/9.57 new_esEs4(xwv4001, xwv3001, ty_Char) -> new_esEs20(xwv4001, xwv3001) 26.47/9.57 new_esEs9(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.47/9.57 new_lt6(xwv113, xwv115, app(ty_Ratio, cee)) -> new_lt18(xwv113, xwv115, cee) 26.47/9.57 new_esEs16(Just(xwv40000), Just(xwv30000), ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.47/9.57 new_esEs34(xwv541, xwv551, ty_Integer) -> new_esEs26(xwv541, xwv551) 26.47/9.57 new_ltEs4(xwv54, xwv55) -> new_fsEs(new_compare6(xwv54, xwv55)) 26.47/9.57 new_esEs33(xwv540, xwv550, app(app(ty_Either, ded), dee)) -> new_esEs19(xwv540, xwv550, ded, dee) 26.47/9.57 new_esEs31(xwv40001, xwv30001, ty_Double) -> new_esEs17(xwv40001, xwv30001) 26.47/9.57 new_esEs30(xwv40002, xwv30002, app(ty_Maybe, cgc)) -> new_esEs16(xwv40002, xwv30002, cgc) 26.47/9.57 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Float) -> new_ltEs12(xwv540, xwv550) 26.47/9.57 new_lt21(xwv540, xwv550, app(ty_Ratio, eag)) -> new_lt18(xwv540, xwv550, eag) 26.47/9.57 new_ltEs20(xwv542, xwv552, app(app(app(ty_@3, dff), dfg), dfh)) -> new_ltEs15(xwv542, xwv552, dff, dfg, dfh) 26.47/9.57 new_compare212(xwv113, xwv114, xwv115, xwv116, False, cdb, cdc) -> new_compare110(xwv113, xwv114, xwv115, xwv116, new_lt6(xwv113, xwv115, cdb), new_asAs(new_esEs29(xwv113, xwv115, cdb), new_ltEs18(xwv114, xwv116, cdc)), cdb, cdc) 26.47/9.57 new_compare0(xwv400, xwv300, ty_Char) -> new_compare16(xwv400, xwv300) 26.47/9.57 new_esEs27(xwv40001, xwv30001, ty_Ordering) -> new_esEs15(xwv40001, xwv30001) 26.47/9.57 new_esEs32(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.47/9.57 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Integer) -> new_ltEs16(xwv540, xwv550) 26.47/9.57 new_lt20(xwv541, xwv551, app(ty_Maybe, dgf)) -> new_lt10(xwv541, xwv551, dgf) 26.47/9.57 new_esEs38(xwv66, xwv69, ty_Int) -> new_esEs18(xwv66, xwv69) 26.47/9.57 new_esEs13(xwv40000, xwv30000, app(ty_Ratio, cb)) -> new_esEs23(xwv40000, xwv30000, cb) 26.47/9.57 new_lt23(xwv66, xwv69, ty_@0) -> new_lt12(xwv66, xwv69) 26.47/9.57 new_esEs10(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.47/9.57 new_esEs8(xwv4001, xwv3001, app(app(ty_Either, cag), cah)) -> new_esEs19(xwv4001, xwv3001, cag, cah) 26.47/9.57 new_lt19(xwv540, xwv550, app(app(ty_@2, dde), ddf)) -> new_lt9(xwv540, xwv550, dde, ddf) 26.47/9.57 new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_@2, beb), bec)) -> new_compare17(xwv32, xwv33, beb, bec) 26.47/9.57 new_esEs38(xwv66, xwv69, ty_Bool) -> new_esEs14(xwv66, xwv69) 26.47/9.57 new_esEs13(xwv40000, xwv30000, app(ty_[], cf)) -> new_esEs12(xwv40000, xwv30000, cf) 26.47/9.57 new_ltEs21(xwv83, xwv84, ty_Float) -> new_ltEs12(xwv83, xwv84) 26.47/9.57 new_esEs32(xwv40000, xwv30000, app(app(app(ty_@3, dbe), dbf), dbg)) -> new_esEs25(xwv40000, xwv30000, dbe, dbf, dbg) 26.47/9.57 new_ltEs8(False, True) -> True 26.47/9.57 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(app(ty_@3, ede), edf), edg)) -> new_esEs25(xwv40000, xwv30000, ede, edf, edg) 26.47/9.57 new_lt22(xwv65, xwv68, ty_Ordering) -> new_lt14(xwv65, xwv68) 26.47/9.57 new_compare24(xwv76, xwv77, False, eea, eeb) -> new_compare14(xwv76, xwv77, new_ltEs22(xwv76, xwv77, eea), eea, eeb) 26.47/9.57 new_esEs9(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.47/9.57 new_esEs27(xwv40001, xwv30001, ty_Bool) -> new_esEs14(xwv40001, xwv30001) 26.47/9.57 new_compare26([], :(xwv3000, xwv3001), efg) -> LT 26.47/9.57 new_esEs11(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.47/9.57 new_lt19(xwv540, xwv550, ty_Ordering) -> new_lt14(xwv540, xwv550) 26.47/9.57 new_lt22(xwv65, xwv68, ty_Bool) -> new_lt4(xwv65, xwv68) 26.47/9.57 new_esEs11(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.47/9.57 new_ltEs23(xwv67, xwv70, ty_Double) -> new_ltEs11(xwv67, xwv70) 26.47/9.57 new_compare7(Left(xwv4000), Right(xwv3000), baf, bag) -> LT 26.47/9.57 new_compare13(Double(xwv4000, Pos(xwv40010)), Double(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.47/9.57 new_compare13(Double(xwv4000, Neg(xwv40010)), Double(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.47/9.57 new_esEs36(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.47/9.57 new_esEs10(xwv4000, xwv3000, app(ty_Ratio, bbe)) -> new_esEs23(xwv4000, xwv3000, bbe) 26.47/9.57 new_esEs15(LT, LT) -> True 26.47/9.57 new_esEs32(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.47/9.57 new_esEs11(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.47/9.57 new_ltEs10(Just(xwv540), Just(xwv550), app(app(ty_@2, egd), ege)) -> new_ltEs9(xwv540, xwv550, egd, ege) 26.47/9.57 new_lt6(xwv113, xwv115, app(app(app(ty_@3, cdh), cea), ceb)) -> new_lt15(xwv113, xwv115, cdh, cea, ceb) 26.47/9.57 new_esEs4(xwv4001, xwv3001, ty_Integer) -> new_esEs26(xwv4001, xwv3001) 26.47/9.57 new_lt20(xwv541, xwv551, ty_Float) -> new_lt11(xwv541, xwv551) 26.47/9.57 new_esEs7(xwv4002, xwv3002, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs25(xwv4002, xwv3002, cab, cac, cad) 26.47/9.57 new_esEs33(xwv540, xwv550, ty_Bool) -> new_esEs14(xwv540, xwv550) 26.47/9.57 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(ty_[], eh)) -> new_ltEs13(xwv540, xwv550, eh) 26.47/9.57 new_esEs34(xwv541, xwv551, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs25(xwv541, xwv551, dgh, dha, dhb) 26.47/9.57 new_lt22(xwv65, xwv68, app(ty_[], fae)) -> new_lt13(xwv65, xwv68, fae) 26.47/9.57 new_lt19(xwv540, xwv550, ty_Integer) -> new_lt17(xwv540, xwv550) 26.47/9.57 new_esEs31(xwv40001, xwv30001, app(ty_Ratio, dab)) -> new_esEs23(xwv40001, xwv30001, dab) 26.47/9.57 new_lt23(xwv66, xwv69, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_lt15(xwv66, xwv69, fdb, fdc, fdd) 26.47/9.57 new_esEs32(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.47/9.57 new_lt22(xwv65, xwv68, ty_@0) -> new_lt12(xwv65, xwv68) 26.47/9.57 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.57 new_compare111(xwv170, xwv171, xwv172, xwv173, True, bfd, bfe) -> LT 26.47/9.57 new_esEs5(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.47/9.57 new_lt9(xwv113, xwv115, cdd, cde) -> new_esEs15(new_compare17(xwv113, xwv115, cdd, cde), LT) 26.47/9.57 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_Ratio, ec), da) -> new_ltEs17(xwv540, xwv550, ec) 26.47/9.57 new_esEs35(xwv540, xwv550, app(ty_Ratio, eag)) -> new_esEs23(xwv540, xwv550, eag) 26.47/9.57 new_ltEs5(Right(xwv540), Left(xwv550), ed, da) -> False 26.47/9.57 new_esEs33(xwv540, xwv550, app(ty_Maybe, ddg)) -> new_esEs16(xwv540, xwv550, ddg) 26.47/9.57 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.47/9.57 new_esEs11(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.47/9.57 new_esEs9(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.47/9.57 new_esEs7(xwv4002, xwv3002, ty_@0) -> new_esEs24(xwv4002, xwv3002) 26.47/9.57 new_lt21(xwv540, xwv550, ty_Char) -> new_lt8(xwv540, xwv550) 26.47/9.57 new_esEs34(xwv541, xwv551, ty_@0) -> new_esEs24(xwv541, xwv551) 26.47/9.57 new_compare24(xwv76, xwv77, True, eea, eeb) -> EQ 26.47/9.57 new_esEs39(xwv65, xwv68, app(app(app(ty_@3, faf), fag), fah)) -> new_esEs25(xwv65, xwv68, faf, fag, fah) 26.47/9.57 new_ltEs8(True, True) -> True 26.47/9.57 new_primCmpInt(Pos(Succ(xwv40000)), Pos(xwv3000)) -> new_primCmpNat0(Succ(xwv40000), xwv3000) 26.47/9.57 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_Maybe, dd), da) -> new_ltEs10(xwv540, xwv550, dd) 26.47/9.57 new_esEs39(xwv65, xwv68, app(app(ty_Either, fba), fbb)) -> new_esEs19(xwv65, xwv68, fba, fbb) 26.47/9.57 new_lt7(xwv113, xwv115) -> new_esEs15(new_compare15(xwv113, xwv115), LT) 26.47/9.57 new_lt15(xwv113, xwv115, cdh, cea, ceb) -> new_esEs15(new_compare28(xwv113, xwv115, cdh, cea, ceb), LT) 26.47/9.57 new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_Either, bfa), bfb)) -> new_compare7(xwv32, xwv33, bfa, bfb) 26.47/9.57 new_lt19(xwv540, xwv550, ty_Char) -> new_lt8(xwv540, xwv550) 26.47/9.57 new_esEs35(xwv540, xwv550, ty_Integer) -> new_esEs26(xwv540, xwv550) 26.47/9.57 new_esEs13(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.47/9.57 new_esEs34(xwv541, xwv551, app(app(ty_Either, dhc), dhd)) -> new_esEs19(xwv541, xwv551, dhc, dhd) 26.47/9.57 new_esEs13(xwv40000, xwv30000, app(app(app(ty_@3, cc), cd), ce)) -> new_esEs25(xwv40000, xwv30000, cc, cd, ce) 26.47/9.57 new_esEs9(xwv4000, xwv3000, app(app(ty_@2, ccc), ccd)) -> new_esEs21(xwv4000, xwv3000, ccc, ccd) 26.47/9.57 new_ltEs18(xwv114, xwv116, app(ty_[], cfa)) -> new_ltEs13(xwv114, xwv116, cfa) 26.47/9.57 new_ltEs24(xwv54, xwv55, app(ty_[], ehf)) -> new_ltEs13(xwv54, xwv55, ehf) 26.47/9.57 new_ltEs11(xwv54, xwv55) -> new_fsEs(new_compare13(xwv54, xwv55)) 26.47/9.57 new_compare17(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), efe, eff) -> new_compare212(xwv4000, xwv4001, xwv3000, xwv3001, new_asAs(new_esEs5(xwv4000, xwv3000, efe), new_esEs4(xwv4001, xwv3001, eff)), efe, eff) 26.47/9.57 new_esEs31(xwv40001, xwv30001, ty_Char) -> new_esEs20(xwv40001, xwv30001) 26.47/9.57 new_lt20(xwv541, xwv551, ty_Ordering) -> new_lt14(xwv541, xwv551) 26.47/9.57 new_compare26(:(xwv4000, xwv4001), [], efg) -> GT 26.47/9.57 new_esEs27(xwv40001, xwv30001, app(app(ty_@2, ge), gf)) -> new_esEs21(xwv40001, xwv30001, ge, gf) 26.47/9.57 new_esEs38(xwv66, xwv69, app(ty_Maybe, fch)) -> new_esEs16(xwv66, xwv69, fch) 26.47/9.57 new_lt19(xwv540, xwv550, ty_Int) -> new_lt7(xwv540, xwv550) 26.47/9.57 new_lt20(xwv541, xwv551, ty_Char) -> new_lt8(xwv541, xwv551) 26.47/9.57 new_esEs35(xwv540, xwv550, app(app(app(ty_@3, eab), eac), ead)) -> new_esEs25(xwv540, xwv550, eab, eac, ead) 26.47/9.57 new_esEs35(xwv540, xwv550, ty_@0) -> new_esEs24(xwv540, xwv550) 26.47/9.57 new_compare0(xwv400, xwv300, app(app(ty_@2, efe), eff)) -> new_compare17(xwv400, xwv300, efe, eff) 26.47/9.57 new_ltEs24(xwv54, xwv55, app(app(ty_@2, dca), dcb)) -> new_ltEs9(xwv54, xwv55, dca, dcb) 26.47/9.57 new_lt22(xwv65, xwv68, app(app(ty_Either, fba), fbb)) -> new_lt16(xwv65, xwv68, fba, fbb) 26.47/9.57 new_compare26([], [], efg) -> EQ 26.47/9.57 new_lt8(xwv113, xwv115) -> new_esEs15(new_compare16(xwv113, xwv115), LT) 26.47/9.57 new_lt6(xwv113, xwv115, ty_Bool) -> new_lt4(xwv113, xwv115) 26.47/9.57 new_lt20(xwv541, xwv551, ty_Int) -> new_lt7(xwv541, xwv551) 26.47/9.57 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Double) -> new_ltEs11(xwv540, xwv550) 26.47/9.57 new_esEs14(False, False) -> True 26.47/9.57 new_esEs32(xwv40000, xwv30000, app(ty_Maybe, dag)) -> new_esEs16(xwv40000, xwv30000, dag) 26.47/9.57 new_esEs35(xwv540, xwv550, app(app(ty_Either, eae), eaf)) -> new_esEs19(xwv540, xwv550, eae, eaf) 26.47/9.57 new_esEs36(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.47/9.57 new_compare0(xwv400, xwv300, app(ty_[], efg)) -> new_compare26(xwv400, xwv300, efg) 26.47/9.57 new_lt21(xwv540, xwv550, ty_Bool) -> new_lt4(xwv540, xwv550) 26.47/9.57 new_esEs35(xwv540, xwv550, ty_Int) -> new_esEs18(xwv540, xwv550) 26.47/9.57 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_Maybe, ecg)) -> new_esEs16(xwv40000, xwv30000, ecg) 26.47/9.57 new_lt21(xwv540, xwv550, ty_Float) -> new_lt11(xwv540, xwv550) 26.47/9.57 new_esEs34(xwv541, xwv551, ty_Bool) -> new_esEs14(xwv541, xwv551) 26.47/9.57 new_esEs31(xwv40001, xwv30001, ty_Ordering) -> new_esEs15(xwv40001, xwv30001) 26.47/9.57 new_primCompAux00(xwv32, xwv33, EQ, ty_Char) -> new_compare16(xwv32, xwv33) 26.47/9.57 new_lt22(xwv65, xwv68, ty_Char) -> new_lt8(xwv65, xwv68) 26.47/9.57 new_esEs11(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.47/9.57 new_esEs13(xwv40000, xwv30000, app(ty_Maybe, be)) -> new_esEs16(xwv40000, xwv30000, be) 26.47/9.57 new_esEs15(EQ, EQ) -> True 26.47/9.57 new_esEs35(xwv540, xwv550, ty_Char) -> new_esEs20(xwv540, xwv550) 26.47/9.57 new_esEs10(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.47/9.57 new_fsEs(xwv211) -> new_not(new_esEs15(xwv211, GT)) 26.47/9.57 new_ltEs20(xwv542, xwv552, app(ty_[], dfe)) -> new_ltEs13(xwv542, xwv552, dfe) 26.47/9.57 new_esEs38(xwv66, xwv69, app(app(ty_Either, fde), fdf)) -> new_esEs19(xwv66, xwv69, fde, fdf) 26.47/9.57 new_esEs11(xwv4000, xwv3000, app(ty_Maybe, bcb)) -> new_esEs16(xwv4000, xwv3000, bcb) 26.47/9.57 new_ltEs24(xwv54, xwv55, ty_Double) -> new_ltEs11(xwv54, xwv55) 26.47/9.57 new_lt12(xwv113, xwv115) -> new_esEs15(new_compare6(xwv113, xwv115), LT) 26.47/9.57 new_esEs10(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.47/9.57 new_lt16(xwv113, xwv115, cec, ced) -> new_esEs15(new_compare7(xwv113, xwv115, cec, ced), LT) 26.47/9.57 new_esEs6(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.47/9.57 new_esEs34(xwv541, xwv551, app(ty_Maybe, dgf)) -> new_esEs16(xwv541, xwv551, dgf) 26.47/9.57 new_primPlusNat0(Succ(xwv33200), Succ(xwv24200)) -> Succ(Succ(new_primPlusNat0(xwv33200, xwv24200))) 26.47/9.57 new_ltEs5(Left(xwv540), Left(xwv550), ty_Ordering, da) -> new_ltEs14(xwv540, xwv550) 26.47/9.57 new_esEs7(xwv4002, xwv3002, app(ty_[], cae)) -> new_esEs12(xwv4002, xwv3002, cae) 26.47/9.57 new_esEs33(xwv540, xwv550, ty_Int) -> new_esEs18(xwv540, xwv550) 26.47/9.57 new_ltEs10(Just(xwv540), Nothing, egc) -> False 26.47/9.57 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_Ratio, fga), ffc) -> new_esEs23(xwv40000, xwv30000, fga) 26.47/9.57 new_ltEs10(Nothing, Nothing, egc) -> True 26.47/9.57 new_esEs4(xwv4001, xwv3001, app(app(ty_Either, fea), feb)) -> new_esEs19(xwv4001, xwv3001, fea, feb) 26.47/9.57 new_esEs4(xwv4001, xwv3001, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs25(xwv4001, xwv3001, fef, feg, feh) 26.47/9.57 new_ltEs5(Left(xwv540), Left(xwv550), app(app(ty_@2, db), dc), da) -> new_ltEs9(xwv540, xwv550, db, dc) 26.47/9.57 new_esEs4(xwv4001, xwv3001, ty_@0) -> new_esEs24(xwv4001, xwv3001) 26.47/9.57 new_esEs13(xwv40000, xwv30000, app(app(ty_Either, bf), bg)) -> new_esEs19(xwv40000, xwv30000, bf, bg) 26.47/9.57 new_esEs28(xwv40000, xwv30000, app(ty_Ratio, baa)) -> new_esEs23(xwv40000, xwv30000, baa) 26.47/9.57 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(app(ty_@2, fha), fhb)) -> new_esEs21(xwv40000, xwv30000, fha, fhb) 26.47/9.57 new_lt6(xwv113, xwv115, app(app(ty_Either, cec), ced)) -> new_lt16(xwv113, xwv115, cec, ced) 26.47/9.57 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_Ratio, edd)) -> new_esEs23(xwv40000, xwv30000, edd) 26.47/9.57 new_esEs32(xwv40000, xwv30000, app(ty_Ratio, dbd)) -> new_esEs23(xwv40000, xwv30000, dbd) 26.47/9.57 new_esEs19(Left(xwv40000), Left(xwv30000), ty_@0, ffc) -> new_esEs24(xwv40000, xwv30000) 26.47/9.57 new_compare18(Nothing, Nothing, bff) -> EQ 26.47/9.57 new_compare16(Char(xwv4000), Char(xwv3000)) -> new_primCmpNat0(xwv4000, xwv3000) 26.47/9.57 new_ltEs22(xwv76, xwv77, ty_Double) -> new_ltEs11(xwv76, xwv77) 26.47/9.57 new_lt21(xwv540, xwv550, app(app(ty_Either, eae), eaf)) -> new_lt16(xwv540, xwv550, eae, eaf) 26.47/9.57 new_lt19(xwv540, xwv550, ty_Bool) -> new_lt4(xwv540, xwv550) 26.47/9.57 new_ltEs5(Left(xwv540), Left(xwv550), ty_Float, da) -> new_ltEs12(xwv540, xwv550) 26.47/9.57 new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, bdd, bde, bdf) -> LT 26.47/9.57 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.47/9.57 new_esEs27(xwv40001, xwv30001, ty_Double) -> new_esEs17(xwv40001, xwv30001) 26.47/9.57 new_esEs5(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.47/9.57 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.47/9.57 new_lt4(xwv113, xwv115) -> new_esEs15(new_compare9(xwv113, xwv115), LT) 26.47/9.57 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(app(ty_@2, ee), ef)) -> new_ltEs9(xwv540, xwv550, ee, ef) 26.47/9.57 new_esEs39(xwv65, xwv68, ty_Float) -> new_esEs22(xwv65, xwv68) 26.47/9.57 new_esEs31(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.47/9.57 new_esEs5(xwv4000, xwv3000, app(ty_[], bd)) -> new_esEs12(xwv4000, xwv3000, bd) 26.47/9.57 new_lt6(xwv113, xwv115, ty_Integer) -> new_lt17(xwv113, xwv115) 26.47/9.57 new_lt20(xwv541, xwv551, app(app(ty_Either, dhc), dhd)) -> new_lt16(xwv541, xwv551, dhc, dhd) 26.47/9.57 new_ltEs5(Left(xwv540), Left(xwv550), ty_Integer, da) -> new_ltEs16(xwv540, xwv550) 26.47/9.57 new_esEs38(xwv66, xwv69, ty_Float) -> new_esEs22(xwv66, xwv69) 26.47/9.57 new_primCmpNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primCmpNat0(xwv40000, xwv30000) 26.47/9.57 new_compare13(Double(xwv4000, Neg(xwv40010)), Double(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.47/9.57 new_ltEs23(xwv67, xwv70, app(ty_[], fbg)) -> new_ltEs13(xwv67, xwv70, fbg) 26.47/9.57 new_compare0(xwv400, xwv300, ty_Int) -> new_compare15(xwv400, xwv300) 26.47/9.57 new_esEs38(xwv66, xwv69, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_esEs25(xwv66, xwv69, fdb, fdc, fdd) 26.47/9.57 new_esEs39(xwv65, xwv68, ty_@0) -> new_esEs24(xwv65, xwv68) 26.47/9.57 new_esEs29(xwv113, xwv115, app(ty_Ratio, cee)) -> new_esEs23(xwv113, xwv115, cee) 26.47/9.57 new_lt19(xwv540, xwv550, ty_Float) -> new_lt11(xwv540, xwv550) 26.47/9.57 new_lt21(xwv540, xwv550, ty_Integer) -> new_lt17(xwv540, xwv550) 26.47/9.57 new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, False, bdd, bde, bdf) -> GT 26.47/9.57 new_esEs30(xwv40002, xwv30002, app(ty_Ratio, cgh)) -> new_esEs23(xwv40002, xwv30002, cgh) 26.47/9.57 new_compare14(xwv150, xwv151, False, bdg, bdh) -> GT 26.47/9.57 new_esEs32(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.47/9.57 new_lt20(xwv541, xwv551, ty_Integer) -> new_lt17(xwv541, xwv551) 26.47/9.57 new_ltEs22(xwv76, xwv77, app(ty_[], eef)) -> new_ltEs13(xwv76, xwv77, eef) 26.47/9.57 new_lt17(xwv113, xwv115) -> new_esEs15(new_compare8(xwv113, xwv115), LT) 26.47/9.57 new_ltEs14(LT, LT) -> True 26.47/9.57 new_esEs33(xwv540, xwv550, ty_Char) -> new_esEs20(xwv540, xwv550) 26.47/9.57 new_esEs19(Left(xwv40000), Right(xwv30000), ffb, ffc) -> False 26.47/9.57 new_esEs19(Right(xwv40000), Left(xwv30000), ffb, ffc) -> False 26.47/9.57 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.57 new_esEs4(xwv4001, xwv3001, ty_Float) -> new_esEs22(xwv4001, xwv3001) 26.47/9.57 new_esEs32(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.57 new_esEs35(xwv540, xwv550, app(ty_Maybe, dhh)) -> new_esEs16(xwv540, xwv550, dhh) 26.47/9.57 new_esEs6(xwv4000, xwv3000, app(ty_[], bgh)) -> new_esEs12(xwv4000, xwv3000, bgh) 26.47/9.57 new_esEs38(xwv66, xwv69, ty_@0) -> new_esEs24(xwv66, xwv69) 26.47/9.57 new_esEs39(xwv65, xwv68, ty_Integer) -> new_esEs26(xwv65, xwv68) 26.47/9.57 new_esEs33(xwv540, xwv550, ty_Ordering) -> new_esEs15(xwv540, xwv550) 26.47/9.57 new_compare9(False, True) -> LT 26.47/9.57 new_lt19(xwv540, xwv550, app(app(ty_Either, ded), dee)) -> new_lt16(xwv540, xwv550, ded, dee) 26.47/9.57 new_esEs10(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.47/9.57 new_esEs29(xwv113, xwv115, app(ty_Maybe, cdf)) -> new_esEs16(xwv113, xwv115, cdf) 26.47/9.57 new_primCmpInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> LT 26.47/9.57 new_esEs29(xwv113, xwv115, app(ty_[], cdg)) -> new_esEs12(xwv113, xwv115, cdg) 26.47/9.57 new_primCompAux00(xwv32, xwv33, EQ, ty_Double) -> new_compare13(xwv32, xwv33) 26.47/9.57 new_lt22(xwv65, xwv68, ty_Double) -> new_lt5(xwv65, xwv68) 26.47/9.57 new_compare27(GT, EQ) -> GT 26.47/9.57 new_ltEs18(xwv114, xwv116, ty_Ordering) -> new_ltEs14(xwv114, xwv116) 26.47/9.57 new_esEs7(xwv4002, xwv3002, ty_Float) -> new_esEs22(xwv4002, xwv3002) 26.47/9.57 new_compare9(False, False) -> EQ 26.47/9.57 new_esEs28(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.47/9.57 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(app(app(ty_@3, fhd), fhe), fhf)) -> new_esEs25(xwv40000, xwv30000, fhd, fhe, fhf) 26.47/9.57 new_lt22(xwv65, xwv68, ty_Float) -> new_lt11(xwv65, xwv68) 26.47/9.57 new_esEs7(xwv4002, xwv3002, ty_Double) -> new_esEs17(xwv4002, xwv3002) 26.47/9.57 new_ltEs18(xwv114, xwv116, ty_Float) -> new_ltEs12(xwv114, xwv116) 26.47/9.57 new_esEs8(xwv4001, xwv3001, app(ty_[], cbg)) -> new_esEs12(xwv4001, xwv3001, cbg) 26.47/9.57 new_lt23(xwv66, xwv69, ty_Char) -> new_lt8(xwv66, xwv69) 26.47/9.57 new_esEs12(:(xwv40000, xwv40001), [], bd) -> False 26.47/9.57 new_esEs12([], :(xwv30000, xwv30001), bd) -> False 26.47/9.57 new_compare14(xwv150, xwv151, True, bdg, bdh) -> LT 26.47/9.57 new_lt20(xwv541, xwv551, app(ty_Ratio, dhe)) -> new_lt18(xwv541, xwv551, dhe) 26.47/9.57 new_primCmpInt(Pos(Zero), Neg(Succ(xwv30000))) -> GT 26.47/9.57 new_esEs17(Double(xwv40000, xwv40001), Double(xwv30000, xwv30001)) -> new_esEs18(new_sr(xwv40000, xwv30001), new_sr(xwv40001, xwv30000)) 26.47/9.57 new_compare210(xwv54, xwv55, False, fhh) -> new_compare10(xwv54, xwv55, new_ltEs24(xwv54, xwv55, fhh), fhh) 26.47/9.57 new_primCmpInt(Neg(Succ(xwv40000)), Neg(xwv3000)) -> new_primCmpNat0(xwv3000, Succ(xwv40000)) 26.47/9.57 new_esEs5(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.47/9.57 new_esEs34(xwv541, xwv551, ty_Char) -> new_esEs20(xwv541, xwv551) 26.47/9.57 new_lt19(xwv540, xwv550, app(app(app(ty_@3, dea), deb), dec)) -> new_lt15(xwv540, xwv550, dea, deb, dec) 26.47/9.57 new_ltEs5(Left(xwv540), Left(xwv550), ty_Double, da) -> new_ltEs11(xwv540, xwv550) 26.47/9.57 new_esEs11(xwv4000, xwv3000, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs25(xwv4000, xwv3000, bch, bda, bdb) 26.47/9.57 new_compare0(xwv400, xwv300, ty_Ordering) -> new_compare27(xwv400, xwv300) 26.47/9.57 new_esEs7(xwv4002, xwv3002, ty_Ordering) -> new_esEs15(xwv4002, xwv3002) 26.47/9.57 new_esEs38(xwv66, xwv69, ty_Integer) -> new_esEs26(xwv66, xwv69) 26.47/9.57 new_compare0(xwv400, xwv300, ty_Double) -> new_compare13(xwv400, xwv300) 26.47/9.57 new_esEs39(xwv65, xwv68, app(ty_Maybe, fad)) -> new_esEs16(xwv65, xwv68, fad) 26.47/9.57 new_esEs11(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.47/9.57 new_lt20(xwv541, xwv551, ty_Bool) -> new_lt4(xwv541, xwv551) 26.47/9.57 new_primEqInt(Pos(Succ(xwv400000)), Pos(Zero)) -> False 26.47/9.57 new_primEqInt(Pos(Zero), Pos(Succ(xwv300000))) -> False 26.47/9.57 new_compare110(xwv170, xwv171, xwv172, xwv173, False, xwv175, bfd, bfe) -> new_compare111(xwv170, xwv171, xwv172, xwv173, xwv175, bfd, bfe) 26.47/9.57 new_esEs34(xwv541, xwv551, ty_Int) -> new_esEs18(xwv541, xwv551) 26.47/9.57 new_compare0(xwv400, xwv300, app(ty_Maybe, bff)) -> new_compare18(xwv400, xwv300, bff) 26.47/9.57 new_esEs29(xwv113, xwv115, app(app(ty_@2, cdd), cde)) -> new_esEs21(xwv113, xwv115, cdd, cde) 26.47/9.57 new_lt23(xwv66, xwv69, ty_Ordering) -> new_lt14(xwv66, xwv69) 26.47/9.57 new_esEs28(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.47/9.57 new_esEs13(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.47/9.57 new_esEs31(xwv40001, xwv30001, ty_Bool) -> new_esEs14(xwv40001, xwv30001) 26.47/9.57 new_primCompAux00(xwv32, xwv33, EQ, app(ty_Maybe, bed)) -> new_compare18(xwv32, xwv33, bed) 26.47/9.57 new_lt5(xwv113, xwv115) -> new_esEs15(new_compare13(xwv113, xwv115), LT) 26.47/9.57 new_ltEs21(xwv83, xwv84, app(ty_[], ebf)) -> new_ltEs13(xwv83, xwv84, ebf) 26.47/9.57 new_ltEs19(xwv541, xwv551, app(ty_Ratio, ddd)) -> new_ltEs17(xwv541, xwv551, ddd) 26.47/9.57 new_lt22(xwv65, xwv68, ty_Integer) -> new_lt17(xwv65, xwv68) 26.47/9.57 new_ltEs20(xwv542, xwv552, ty_Ordering) -> new_ltEs14(xwv542, xwv552) 26.47/9.57 new_ltEs18(xwv114, xwv116, ty_Integer) -> new_ltEs16(xwv114, xwv116) 26.47/9.57 new_primCmpNat0(Zero, Zero) -> EQ 26.47/9.57 new_lt19(xwv540, xwv550, app(ty_[], ddh)) -> new_lt13(xwv540, xwv550, ddh) 26.47/9.57 new_compare27(EQ, LT) -> GT 26.47/9.57 new_lt6(xwv113, xwv115, ty_Int) -> new_lt7(xwv113, xwv115) 26.47/9.57 new_lt23(xwv66, xwv69, app(app(ty_@2, fcf), fcg)) -> new_lt9(xwv66, xwv69, fcf, fcg) 26.47/9.57 new_esEs13(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.47/9.57 new_esEs30(xwv40002, xwv30002, ty_Float) -> new_esEs22(xwv40002, xwv30002) 26.47/9.57 new_esEs16(Nothing, Just(xwv30000), ecf) -> False 26.47/9.57 new_esEs16(Just(xwv40000), Nothing, ecf) -> False 26.47/9.57 new_esEs31(xwv40001, xwv30001, app(ty_Maybe, che)) -> new_esEs16(xwv40001, xwv30001, che) 26.47/9.57 new_esEs34(xwv541, xwv551, app(app(ty_@2, dgd), dge)) -> new_esEs21(xwv541, xwv551, dgd, dge) 26.47/9.57 new_esEs30(xwv40002, xwv30002, ty_Double) -> new_esEs17(xwv40002, xwv30002) 26.47/9.57 new_ltEs5(Left(xwv540), Left(xwv550), ty_Bool, da) -> new_ltEs8(xwv540, xwv550) 26.47/9.57 new_ltEs10(Just(xwv540), Just(xwv550), ty_@0) -> new_ltEs4(xwv540, xwv550) 26.47/9.57 new_esEs15(LT, EQ) -> False 26.47/9.57 new_esEs15(EQ, LT) -> False 26.47/9.57 new_compare13(Double(xwv4000, Pos(xwv40010)), Double(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.47/9.57 new_esEs35(xwv540, xwv550, ty_Ordering) -> new_esEs15(xwv540, xwv550) 26.47/9.57 new_ltEs20(xwv542, xwv552, ty_Double) -> new_ltEs11(xwv542, xwv552) 26.47/9.57 new_esEs7(xwv4002, xwv3002, ty_Integer) -> new_esEs26(xwv4002, xwv3002) 26.47/9.57 new_ltEs19(xwv541, xwv551, ty_Int) -> new_ltEs6(xwv541, xwv551) 26.47/9.57 new_lt14(xwv113, xwv115) -> new_esEs15(new_compare27(xwv113, xwv115), LT) 26.47/9.57 new_esEs6(xwv4000, xwv3000, app(app(ty_Either, bfh), bga)) -> new_esEs19(xwv4000, xwv3000, bfh, bga) 26.47/9.57 new_ltEs23(xwv67, xwv70, app(app(ty_@2, fbd), fbe)) -> new_ltEs9(xwv67, xwv70, fbd, fbe) 26.47/9.57 new_ltEs19(xwv541, xwv551, ty_@0) -> new_ltEs4(xwv541, xwv551) 26.47/9.57 new_esEs13(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.47/9.57 new_ltEs23(xwv67, xwv70, ty_Integer) -> new_ltEs16(xwv67, xwv70) 26.47/9.57 new_primCompAux00(xwv32, xwv33, EQ, ty_Int) -> new_compare15(xwv32, xwv33) 26.47/9.57 new_primCompAux00(xwv32, xwv33, EQ, app(ty_Ratio, bfc)) -> new_compare29(xwv32, xwv33, bfc) 26.47/9.57 new_ltEs21(xwv83, xwv84, ty_Int) -> new_ltEs6(xwv83, xwv84) 26.47/9.57 new_ltEs10(Just(xwv540), Just(xwv550), ty_Int) -> new_ltEs6(xwv540, xwv550) 26.47/9.57 new_lt19(xwv540, xwv550, ty_@0) -> new_lt12(xwv540, xwv550) 26.47/9.57 new_esEs6(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.47/9.57 new_ltEs24(xwv54, xwv55, ty_@0) -> new_ltEs4(xwv54, xwv55) 26.47/9.57 new_lt6(xwv113, xwv115, ty_Float) -> new_lt11(xwv113, xwv115) 26.47/9.57 new_ltEs14(EQ, LT) -> False 26.47/9.57 new_esEs28(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.47/9.57 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_[], egg)) -> new_ltEs13(xwv540, xwv550, egg) 26.47/9.57 new_esEs39(xwv65, xwv68, app(ty_[], fae)) -> new_esEs12(xwv65, xwv68, fae) 26.47/9.57 new_esEs8(xwv4001, xwv3001, app(ty_Maybe, caf)) -> new_esEs16(xwv4001, xwv3001, caf) 26.47/9.57 new_esEs27(xwv40001, xwv30001, app(ty_Ratio, gg)) -> new_esEs23(xwv40001, xwv30001, gg) 26.47/9.57 new_esEs13(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.57 new_esEs30(xwv40002, xwv30002, ty_Ordering) -> new_esEs15(xwv40002, xwv30002) 26.47/9.57 new_esEs16(Nothing, Nothing, ecf) -> True 26.47/9.57 new_esEs39(xwv65, xwv68, app(app(ty_@2, fab), fac)) -> new_esEs21(xwv65, xwv68, fab, fac) 26.47/9.57 new_lt21(xwv540, xwv550, app(app(app(ty_@3, eab), eac), ead)) -> new_lt15(xwv540, xwv550, eab, eac, ead) 26.47/9.57 new_ltEs20(xwv542, xwv552, ty_Bool) -> new_ltEs8(xwv542, xwv552) 26.47/9.57 new_esEs29(xwv113, xwv115, ty_Int) -> new_esEs18(xwv113, xwv115) 26.47/9.57 new_ltEs5(Left(xwv540), Left(xwv550), ty_Char, da) -> new_ltEs7(xwv540, xwv550) 26.47/9.57 new_esEs29(xwv113, xwv115, ty_Bool) -> new_esEs14(xwv113, xwv115) 26.47/9.57 new_esEs5(xwv4000, xwv3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs25(xwv4000, xwv3000, cfh, cga, cgb) 26.47/9.57 new_ltEs19(xwv541, xwv551, app(ty_[], dcf)) -> new_ltEs13(xwv541, xwv551, dcf) 26.47/9.57 new_primCmpNat0(Succ(xwv40000), Zero) -> GT 26.47/9.57 new_pePe(False, xwv216) -> xwv216 26.47/9.57 new_esEs33(xwv540, xwv550, ty_@0) -> new_esEs24(xwv540, xwv550) 26.47/9.57 new_lt21(xwv540, xwv550, app(ty_[], eaa)) -> new_lt13(xwv540, xwv550, eaa) 26.47/9.57 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_Maybe, egf)) -> new_ltEs10(xwv540, xwv550, egf) 26.47/9.57 new_esEs10(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.47/9.57 new_esEs4(xwv4001, xwv3001, ty_Ordering) -> new_esEs15(xwv4001, xwv3001) 26.47/9.57 new_compare19(Float(xwv4000, Pos(xwv40010)), Float(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.47/9.57 new_ltEs17(xwv54, xwv55, eah) -> new_fsEs(new_compare29(xwv54, xwv55, eah)) 26.47/9.57 new_compare27(LT, LT) -> EQ 26.47/9.57 new_esEs33(xwv540, xwv550, app(app(app(ty_@3, dea), deb), dec)) -> new_esEs25(xwv540, xwv550, dea, deb, dec) 26.47/9.57 new_compare25(xwv83, xwv84, True, eba, ebb) -> EQ 26.47/9.57 new_compare210(xwv54, xwv55, True, fhh) -> EQ 26.47/9.57 new_esEs27(xwv40001, xwv30001, ty_Char) -> new_esEs20(xwv40001, xwv30001) 26.47/9.57 new_esEs15(EQ, GT) -> False 26.47/9.57 new_esEs15(GT, EQ) -> False 26.47/9.57 new_compare112(xwv157, xwv158, True, ega, egb) -> LT 26.47/9.57 new_lt11(xwv113, xwv115) -> new_esEs15(new_compare19(xwv113, xwv115), LT) 26.47/9.57 new_compare11(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, xwv192, bdd, bde, bdf) -> new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, bdd, bde, bdf) 26.47/9.57 new_lt23(xwv66, xwv69, ty_Bool) -> new_lt4(xwv66, xwv69) 26.47/9.57 new_esEs23(:%(xwv40000, xwv40001), :%(xwv30000, xwv30001), ece) -> new_asAs(new_esEs37(xwv40000, xwv30000, ece), new_esEs36(xwv40001, xwv30001, ece)) 26.47/9.57 new_esEs27(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.47/9.57 new_esEs34(xwv541, xwv551, app(ty_Ratio, dhe)) -> new_esEs23(xwv541, xwv551, dhe) 26.47/9.57 new_compare110(xwv170, xwv171, xwv172, xwv173, True, xwv175, bfd, bfe) -> new_compare111(xwv170, xwv171, xwv172, xwv173, True, bfd, bfe) 26.47/9.57 new_ltEs24(xwv54, xwv55, ty_Int) -> new_ltEs6(xwv54, xwv55) 26.47/9.57 new_compare10(xwv141, xwv142, False, cg) -> GT 26.47/9.57 new_primEqInt(Pos(Zero), Neg(Succ(xwv300000))) -> False 26.47/9.57 new_primEqInt(Neg(Zero), Pos(Succ(xwv300000))) -> False 26.47/9.57 new_ltEs20(xwv542, xwv552, ty_Integer) -> new_ltEs16(xwv542, xwv552) 26.47/9.57 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.47/9.57 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_Maybe, ffd), ffc) -> new_esEs16(xwv40000, xwv30000, ffd) 26.47/9.57 new_esEs10(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.47/9.57 new_compare9(True, False) -> GT 26.47/9.57 new_ltEs23(xwv67, xwv70, ty_Float) -> new_ltEs12(xwv67, xwv70) 26.47/9.57 new_lt23(xwv66, xwv69, app(app(ty_Either, fde), fdf)) -> new_lt16(xwv66, xwv69, fde, fdf) 26.47/9.57 new_esEs34(xwv541, xwv551, app(ty_[], dgg)) -> new_esEs12(xwv541, xwv551, dgg) 26.47/9.57 new_esEs11(xwv4000, xwv3000, app(ty_[], bdc)) -> new_esEs12(xwv4000, xwv3000, bdc) 26.47/9.57 new_esEs37(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.57 new_esEs33(xwv540, xwv550, ty_Float) -> new_esEs22(xwv540, xwv550) 26.47/9.57 new_esEs9(xwv4000, xwv3000, app(app(ty_Either, cca), ccb)) -> new_esEs19(xwv4000, xwv3000, cca, ccb) 26.47/9.57 new_ltEs14(GT, EQ) -> False 26.47/9.57 new_compare26(:(xwv4000, xwv4001), :(xwv3000, xwv3001), efg) -> new_primCompAux1(xwv4000, xwv3000, xwv4001, xwv3001, efg) 26.47/9.57 new_ltEs18(xwv114, xwv116, ty_Double) -> new_ltEs11(xwv114, xwv116) 26.47/9.57 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Char, ffc) -> new_esEs20(xwv40000, xwv30000) 26.47/9.57 new_esEs29(xwv113, xwv115, ty_Char) -> new_esEs20(xwv113, xwv115) 26.47/9.57 new_esEs31(xwv40001, xwv30001, ty_@0) -> new_esEs24(xwv40001, xwv30001) 26.47/9.57 new_esEs31(xwv40001, xwv30001, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs25(xwv40001, xwv30001, dac, dad, dae) 26.47/9.57 new_lt13(xwv113, xwv115, cdg) -> new_esEs15(new_compare26(xwv113, xwv115, cdg), LT) 26.47/9.57 new_lt21(xwv540, xwv550, ty_@0) -> new_lt12(xwv540, xwv550) 26.47/9.57 new_compare29(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), ty_Integer) -> new_compare8(new_sr0(xwv4000, xwv3001), new_sr0(xwv3000, xwv4001)) 26.47/9.57 new_ltEs21(xwv83, xwv84, app(app(app(ty_@3, ebg), ebh), eca)) -> new_ltEs15(xwv83, xwv84, ebg, ebh, eca) 26.47/9.57 new_esEs33(xwv540, xwv550, ty_Double) -> new_esEs17(xwv540, xwv550) 26.47/9.57 new_lt6(xwv113, xwv115, ty_@0) -> new_lt12(xwv113, xwv115) 26.47/9.57 new_esEs8(xwv4001, xwv3001, app(app(ty_@2, cba), cbb)) -> new_esEs21(xwv4001, xwv3001, cba, cbb) 26.47/9.57 new_esEs35(xwv540, xwv550, ty_Float) -> new_esEs22(xwv540, xwv550) 26.47/9.57 new_esEs39(xwv65, xwv68, ty_Int) -> new_esEs18(xwv65, xwv68) 26.47/9.57 new_lt21(xwv540, xwv550, app(ty_Maybe, dhh)) -> new_lt10(xwv540, xwv550, dhh) 26.47/9.57 new_ltEs13(xwv54, xwv55, ehf) -> new_fsEs(new_compare26(xwv54, xwv55, ehf)) 26.47/9.57 new_esEs15(LT, GT) -> False 26.47/9.57 new_esEs15(GT, LT) -> False 26.47/9.57 new_esEs39(xwv65, xwv68, ty_Char) -> new_esEs20(xwv65, xwv68) 26.47/9.57 new_ltEs18(xwv114, xwv116, ty_Bool) -> new_ltEs8(xwv114, xwv116) 26.47/9.57 new_esEs39(xwv65, xwv68, ty_Bool) -> new_esEs14(xwv65, xwv68) 26.47/9.57 new_compare18(Just(xwv4000), Just(xwv3000), bff) -> new_compare210(xwv4000, xwv3000, new_esEs6(xwv4000, xwv3000, bff), bff) 26.47/9.57 new_lt21(xwv540, xwv550, ty_Ordering) -> new_lt14(xwv540, xwv550) 26.47/9.57 new_primCompAux00(xwv32, xwv33, EQ, ty_Ordering) -> new_compare27(xwv32, xwv33) 26.47/9.57 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_Ratio, ehe)) -> new_ltEs17(xwv540, xwv550, ehe) 26.47/9.57 new_ltEs20(xwv542, xwv552, ty_Float) -> new_ltEs12(xwv542, xwv552) 26.47/9.57 new_compare211(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, ehg, ehh, faa) -> new_compare11(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, new_lt22(xwv65, xwv68, ehg), new_asAs(new_esEs39(xwv65, xwv68, ehg), new_pePe(new_lt23(xwv66, xwv69, ehh), new_asAs(new_esEs38(xwv66, xwv69, ehh), new_ltEs23(xwv67, xwv70, faa)))), ehg, ehh, faa) 26.47/9.57 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Int, ffc) -> new_esEs18(xwv40000, xwv30000) 26.47/9.57 new_esEs11(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.47/9.57 new_lt22(xwv65, xwv68, ty_Int) -> new_lt7(xwv65, xwv68) 26.47/9.57 new_ltEs18(xwv114, xwv116, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_ltEs15(xwv114, xwv116, cfb, cfc, cfd) 26.47/9.57 new_esEs12(:(xwv40000, xwv40001), :(xwv30000, xwv30001), bd) -> new_asAs(new_esEs13(xwv40000, xwv30000, bd), new_esEs12(xwv40001, xwv30001, bd)) 26.47/9.57 new_compare0(xwv400, xwv300, app(ty_Ratio, efh)) -> new_compare29(xwv400, xwv300, efh) 26.47/9.57 new_esEs10(xwv4000, xwv3000, app(app(ty_Either, bba), bbb)) -> new_esEs19(xwv4000, xwv3000, bba, bbb) 26.47/9.57 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Bool, ffc) -> new_esEs14(xwv40000, xwv30000) 26.47/9.57 new_esEs6(xwv4000, xwv3000, app(app(ty_@2, bgb), bgc)) -> new_esEs21(xwv4000, xwv3000, bgb, bgc) 26.47/9.57 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(ty_Ratio, fhc)) -> new_esEs23(xwv40000, xwv30000, fhc) 26.47/9.57 new_esEs8(xwv4001, xwv3001, ty_@0) -> new_esEs24(xwv4001, xwv3001) 26.47/9.57 new_esEs33(xwv540, xwv550, ty_Integer) -> new_esEs26(xwv540, xwv550) 26.47/9.57 new_esEs8(xwv4001, xwv3001, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs25(xwv4001, xwv3001, cbd, cbe, cbf) 26.47/9.57 new_esEs22(Float(xwv40000, xwv40001), Float(xwv30000, xwv30001)) -> new_esEs18(new_sr(xwv40000, xwv30001), new_sr(xwv40001, xwv30000)) 26.47/9.57 new_lt20(xwv541, xwv551, app(app(ty_@2, dgd), dge)) -> new_lt9(xwv541, xwv551, dgd, dge) 26.47/9.57 new_esEs10(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.47/9.57 new_primMulInt(Neg(xwv40000), Neg(xwv30010)) -> Pos(new_primMulNat0(xwv40000, xwv30010)) 26.47/9.57 new_primCmpInt(Pos(Zero), Pos(Succ(xwv30000))) -> new_primCmpNat0(Zero, Succ(xwv30000)) 26.47/9.57 new_esEs14(True, True) -> True 26.47/9.57 new_esEs38(xwv66, xwv69, ty_Ordering) -> new_esEs15(xwv66, xwv69) 26.47/9.57 new_esEs9(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.47/9.57 new_compare29(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), ty_Int) -> new_compare15(new_sr(xwv4000, xwv3001), new_sr(xwv3000, xwv4001)) 26.47/9.57 new_esEs32(xwv40000, xwv30000, app(app(ty_Either, dah), dba)) -> new_esEs19(xwv40000, xwv30000, dah, dba) 26.47/9.57 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(ty_Either, ech), eda)) -> new_esEs19(xwv40000, xwv30000, ech, eda) 26.47/9.57 new_ltEs19(xwv541, xwv551, app(app(app(ty_@3, dcg), dch), dda)) -> new_ltEs15(xwv541, xwv551, dcg, dch, dda) 26.47/9.57 new_lt6(xwv113, xwv115, app(ty_[], cdg)) -> new_lt13(xwv113, xwv115, cdg) 26.47/9.57 new_ltEs21(xwv83, xwv84, app(app(ty_@2, ebc), ebd)) -> new_ltEs9(xwv83, xwv84, ebc, ebd) 26.47/9.57 new_esEs5(xwv4000, xwv3000, app(ty_Maybe, ecf)) -> new_esEs16(xwv4000, xwv3000, ecf) 26.47/9.57 new_lt19(xwv540, xwv550, app(ty_Maybe, ddg)) -> new_lt10(xwv540, xwv550, ddg) 26.47/9.57 new_ltEs14(GT, LT) -> False 26.47/9.57 new_esEs31(xwv40001, xwv30001, app(app(ty_@2, chh), daa)) -> new_esEs21(xwv40001, xwv30001, chh, daa) 26.47/9.57 new_compare7(Left(xwv4000), Left(xwv3000), baf, bag) -> new_compare24(xwv4000, xwv3000, new_esEs10(xwv4000, xwv3000, baf), baf, bag) 26.47/9.57 new_ltEs19(xwv541, xwv551, app(app(ty_Either, ddb), ddc)) -> new_ltEs5(xwv541, xwv551, ddb, ddc) 26.47/9.57 new_esEs31(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.47/9.57 new_ltEs12(xwv54, xwv55) -> new_fsEs(new_compare19(xwv54, xwv55)) 26.47/9.57 new_compare0(xwv400, xwv300, app(app(app(ty_@3, bha), bhb), bhc)) -> new_compare28(xwv400, xwv300, bha, bhb, bhc) 26.47/9.57 new_ltEs10(Just(xwv540), Just(xwv550), app(app(ty_Either, ehc), ehd)) -> new_ltEs5(xwv540, xwv550, ehc, ehd) 26.47/9.57 new_compare8(Integer(xwv4000), Integer(xwv3000)) -> new_primCmpInt(xwv4000, xwv3000) 26.47/9.57 new_primMulInt(Pos(xwv40000), Neg(xwv30010)) -> Neg(new_primMulNat0(xwv40000, xwv30010)) 26.47/9.57 new_primMulInt(Neg(xwv40000), Pos(xwv30010)) -> Neg(new_primMulNat0(xwv40000, xwv30010)) 26.47/9.57 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_[], de), da) -> new_ltEs13(xwv540, xwv550, de) 26.47/9.57 new_ltEs18(xwv114, xwv116, app(ty_Maybe, ceh)) -> new_ltEs10(xwv114, xwv116, ceh) 26.47/9.57 new_ltEs23(xwv67, xwv70, ty_Int) -> new_ltEs6(xwv67, xwv70) 26.47/9.57 new_esEs5(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.47/9.57 new_ltEs21(xwv83, xwv84, ty_Integer) -> new_ltEs16(xwv83, xwv84) 26.47/9.57 new_esEs9(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.47/9.57 new_ltEs15(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), deg, deh, dfa) -> new_pePe(new_lt21(xwv540, xwv550, deg), new_asAs(new_esEs35(xwv540, xwv550, deg), new_pePe(new_lt20(xwv541, xwv551, deh), new_asAs(new_esEs34(xwv541, xwv551, deh), new_ltEs20(xwv542, xwv552, dfa))))) 26.47/9.57 new_ltEs22(xwv76, xwv77, ty_@0) -> new_ltEs4(xwv76, xwv77) 26.47/9.57 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(ty_@2, edb), edc)) -> new_esEs21(xwv40000, xwv30000, edb, edc) 26.47/9.57 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(ty_Either, ffe), fff), ffc) -> new_esEs19(xwv40000, xwv30000, ffe, fff) 26.47/9.57 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(ty_Ratio, fg)) -> new_ltEs17(xwv540, xwv550, fg) 26.47/9.57 new_compare19(Float(xwv4000, Neg(xwv40010)), Float(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.47/9.57 new_esEs11(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.47/9.57 new_sr0(Integer(xwv40000), Integer(xwv30010)) -> Integer(new_primMulInt(xwv40000, xwv30010)) 26.47/9.57 new_esEs30(xwv40002, xwv30002, app(app(ty_Either, cgd), cge)) -> new_esEs19(xwv40002, xwv30002, cgd, cge) 26.47/9.57 new_ltEs24(xwv54, xwv55, app(ty_Maybe, egc)) -> new_ltEs10(xwv54, xwv55, egc) 26.47/9.57 new_esEs8(xwv4001, xwv3001, app(ty_Ratio, cbc)) -> new_esEs23(xwv4001, xwv3001, cbc) 26.47/9.57 new_ltEs24(xwv54, xwv55, app(app(app(ty_@3, deg), deh), dfa)) -> new_ltEs15(xwv54, xwv55, deg, deh, dfa) 26.47/9.57 new_esEs6(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.47/9.57 new_ltEs23(xwv67, xwv70, app(ty_Ratio, fce)) -> new_ltEs17(xwv67, xwv70, fce) 26.47/9.57 new_esEs4(xwv4001, xwv3001, app(ty_Ratio, fee)) -> new_esEs23(xwv4001, xwv3001, fee) 26.47/9.57 new_ltEs24(xwv54, xwv55, ty_Char) -> new_ltEs7(xwv54, xwv55) 26.47/9.57 new_esEs28(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.47/9.57 new_esEs28(xwv40000, xwv30000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs25(xwv40000, xwv30000, bab, bac, bad) 26.47/9.57 new_esEs5(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.47/9.57 new_esEs18(xwv4000, xwv3000) -> new_primEqInt(xwv4000, xwv3000) 26.47/9.57 new_asAs(True, xwv131) -> xwv131 26.47/9.57 new_compare27(GT, GT) -> EQ 26.47/9.57 new_esEs32(xwv40000, xwv30000, app(app(ty_@2, dbb), dbc)) -> new_esEs21(xwv40000, xwv30000, dbb, dbc) 26.47/9.57 new_esEs6(xwv4000, xwv3000, app(ty_Maybe, bfg)) -> new_esEs16(xwv4000, xwv3000, bfg) 26.47/9.57 new_ltEs20(xwv542, xwv552, app(app(ty_@2, dfb), dfc)) -> new_ltEs9(xwv542, xwv552, dfb, dfc) 26.47/9.57 new_ltEs22(xwv76, xwv77, ty_Ordering) -> new_ltEs14(xwv76, xwv77) 26.47/9.57 new_esEs5(xwv4000, xwv3000, app(app(ty_@2, fh), ga)) -> new_esEs21(xwv4000, xwv3000, fh, ga) 26.47/9.57 new_esEs27(xwv40001, xwv30001, app(ty_Maybe, gb)) -> new_esEs16(xwv40001, xwv30001, gb) 26.47/9.57 new_ltEs22(xwv76, xwv77, ty_Float) -> new_ltEs12(xwv76, xwv77) 26.47/9.57 new_esEs32(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.47/9.57 new_compare0(xwv400, xwv300, ty_Float) -> new_compare19(xwv400, xwv300) 26.47/9.57 new_ltEs20(xwv542, xwv552, app(app(ty_Either, dga), dgb)) -> new_ltEs5(xwv542, xwv552, dga, dgb) 26.47/9.57 new_lt21(xwv540, xwv550, app(app(ty_@2, dhf), dhg)) -> new_lt9(xwv540, xwv550, dhf, dhg) 26.47/9.57 new_ltEs18(xwv114, xwv116, ty_Char) -> new_ltEs7(xwv114, xwv116) 26.47/9.57 new_ltEs19(xwv541, xwv551, app(app(ty_@2, dcc), dcd)) -> new_ltEs9(xwv541, xwv551, dcc, dcd) 26.47/9.57 new_lt20(xwv541, xwv551, ty_Double) -> new_lt5(xwv541, xwv551) 26.47/9.57 new_compare211(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, True, ehg, ehh, faa) -> EQ 26.47/9.57 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(app(ty_Either, fd), ff)) -> new_ltEs5(xwv540, xwv550, fd, ff) 26.47/9.57 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_[], edh)) -> new_esEs12(xwv40000, xwv30000, edh) 26.47/9.57 new_compare27(EQ, EQ) -> EQ 26.47/9.57 new_lt22(xwv65, xwv68, app(ty_Ratio, fbc)) -> new_lt18(xwv65, xwv68, fbc) 26.47/9.57 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_@0) -> new_ltEs4(xwv540, xwv550) 26.47/9.57 new_sr(xwv4000, xwv3001) -> new_primMulInt(xwv4000, xwv3001) 26.47/9.57 new_compare0(xwv400, xwv300, ty_Integer) -> new_compare8(xwv400, xwv300) 26.47/9.57 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.47/9.57 new_primCompAux00(xwv32, xwv33, EQ, ty_Float) -> new_compare19(xwv32, xwv33) 26.47/9.57 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(ty_Maybe, eg)) -> new_ltEs10(xwv540, xwv550, eg) 26.47/9.57 new_primMulNat0(Zero, Zero) -> Zero 26.47/9.57 new_esEs11(xwv4000, xwv3000, app(app(ty_@2, bce), bcf)) -> new_esEs21(xwv4000, xwv3000, bce, bcf) 26.47/9.57 new_lt19(xwv540, xwv550, ty_Double) -> new_lt5(xwv540, xwv550) 26.47/9.57 new_lt22(xwv65, xwv68, app(app(ty_@2, fab), fac)) -> new_lt9(xwv65, xwv68, fab, fac) 26.47/9.57 new_compare25(xwv83, xwv84, False, eba, ebb) -> new_compare112(xwv83, xwv84, new_ltEs21(xwv83, xwv84, ebb), eba, ebb) 26.47/9.57 new_esEs4(xwv4001, xwv3001, ty_Int) -> new_esEs18(xwv4001, xwv3001) 26.47/9.57 new_esEs29(xwv113, xwv115, ty_Integer) -> new_esEs26(xwv113, xwv115) 26.47/9.57 new_ltEs5(Right(xwv540), Right(xwv550), ed, app(app(app(ty_@3, fa), fb), fc)) -> new_ltEs15(xwv540, xwv550, fa, fb, fc) 26.47/9.57 new_lt6(xwv113, xwv115, app(ty_Maybe, cdf)) -> new_lt10(xwv113, xwv115, cdf) 26.47/9.57 new_lt23(xwv66, xwv69, app(ty_Ratio, fdg)) -> new_lt18(xwv66, xwv69, fdg) 26.47/9.57 new_lt22(xwv65, xwv68, app(ty_Maybe, fad)) -> new_lt10(xwv65, xwv68, fad) 26.47/9.57 new_esEs29(xwv113, xwv115, ty_@0) -> new_esEs24(xwv113, xwv115) 26.47/9.57 new_ltEs21(xwv83, xwv84, ty_Ordering) -> new_ltEs14(xwv83, xwv84) 26.47/9.57 new_esEs39(xwv65, xwv68, app(ty_Ratio, fbc)) -> new_esEs23(xwv65, xwv68, fbc) 26.47/9.57 new_esEs4(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 26.47/9.57 new_esEs33(xwv540, xwv550, app(app(ty_@2, dde), ddf)) -> new_esEs21(xwv540, xwv550, dde, ddf) 26.47/9.57 new_lt23(xwv66, xwv69, app(ty_Maybe, fch)) -> new_lt10(xwv66, xwv69, fch) 26.47/9.57 new_esEs30(xwv40002, xwv30002, ty_@0) -> new_esEs24(xwv40002, xwv30002) 26.47/9.57 new_esEs30(xwv40002, xwv30002, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs25(xwv40002, xwv30002, cha, chb, chc) 26.47/9.57 new_ltEs24(xwv54, xwv55, app(app(ty_Either, ed), da)) -> new_ltEs5(xwv54, xwv55, ed, da) 26.47/9.57 new_compare7(Right(xwv4000), Left(xwv3000), baf, bag) -> GT 26.47/9.57 new_primCompAux00(xwv32, xwv33, EQ, app(app(app(ty_@3, bef), beg), beh)) -> new_compare28(xwv32, xwv33, bef, beg, beh) 26.47/9.57 new_ltEs23(xwv67, xwv70, app(ty_Maybe, fbf)) -> new_ltEs10(xwv67, xwv70, fbf) 26.47/9.57 new_ltEs20(xwv542, xwv552, ty_Char) -> new_ltEs7(xwv542, xwv552) 26.47/9.57 new_primEqInt(Neg(Succ(xwv400000)), Neg(Zero)) -> False 26.47/9.57 new_primEqInt(Neg(Zero), Neg(Succ(xwv300000))) -> False 26.47/9.57 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Bool) -> new_ltEs8(xwv540, xwv550) 26.47/9.57 new_esEs27(xwv40001, xwv30001, app(ty_[], hc)) -> new_esEs12(xwv40001, xwv30001, hc) 26.47/9.57 new_esEs9(xwv4000, xwv3000, app(ty_Ratio, cce)) -> new_esEs23(xwv4000, xwv3000, cce) 26.47/9.57 new_esEs25(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), cfh, cga, cgb) -> new_asAs(new_esEs32(xwv40000, xwv30000, cfh), new_asAs(new_esEs31(xwv40001, xwv30001, cga), new_esEs30(xwv40002, xwv30002, cgb))) 26.47/9.57 new_esEs33(xwv540, xwv550, app(ty_[], ddh)) -> new_esEs12(xwv540, xwv550, ddh) 26.47/9.57 new_primEqInt(Pos(Succ(xwv400000)), Pos(Succ(xwv300000))) -> new_primEqNat0(xwv400000, xwv300000) 26.47/9.57 new_ltEs24(xwv54, xwv55, app(ty_Ratio, eah)) -> new_ltEs17(xwv54, xwv55, eah) 26.47/9.57 new_ltEs18(xwv114, xwv116, app(ty_Ratio, cfg)) -> new_ltEs17(xwv114, xwv116, cfg) 26.47/9.57 new_esEs5(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.47/9.57 new_ltEs18(xwv114, xwv116, app(app(ty_@2, cef), ceg)) -> new_ltEs9(xwv114, xwv116, cef, ceg) 26.47/9.57 new_esEs5(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.47/9.57 new_esEs29(xwv113, xwv115, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs25(xwv113, xwv115, cdh, cea, ceb) 26.47/9.57 new_lt10(xwv113, xwv115, cdf) -> new_esEs15(new_compare18(xwv113, xwv115, cdf), LT) 26.47/9.57 new_esEs6(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.47/9.57 new_ltEs18(xwv114, xwv116, app(app(ty_Either, cfe), cff)) -> new_ltEs5(xwv114, xwv116, cfe, cff) 26.47/9.57 new_esEs5(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.47/9.57 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Int) -> new_ltEs6(xwv540, xwv550) 26.47/9.57 new_primEqInt(Pos(Succ(xwv400000)), Neg(xwv30000)) -> False 26.47/9.57 new_primEqInt(Neg(Succ(xwv400000)), Pos(xwv30000)) -> False 26.47/9.57 new_primCmpInt(Neg(Zero), Neg(Succ(xwv30000))) -> new_primCmpNat0(Succ(xwv30000), Zero) 26.47/9.57 new_esEs29(xwv113, xwv115, app(app(ty_Either, cec), ced)) -> new_esEs19(xwv113, xwv115, cec, ced) 26.47/9.57 new_esEs31(xwv40001, xwv30001, ty_Float) -> new_esEs22(xwv40001, xwv30001) 26.47/9.57 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Ordering) -> new_ltEs14(xwv540, xwv550) 26.47/9.57 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.47/9.57 new_esEs27(xwv40001, xwv30001, ty_Float) -> new_esEs22(xwv40001, xwv30001) 26.47/9.57 new_primCompAux00(xwv32, xwv33, LT, bea) -> LT 26.47/9.57 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(app(ty_Either, fgg), fgh)) -> new_esEs19(xwv40000, xwv30000, fgg, fgh) 26.47/9.57 new_ltEs19(xwv541, xwv551, app(ty_Maybe, dce)) -> new_ltEs10(xwv541, xwv551, dce) 26.47/9.57 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_[], fge), ffc) -> new_esEs12(xwv40000, xwv30000, fge) 26.47/9.57 new_compare112(xwv157, xwv158, False, ega, egb) -> GT 26.47/9.57 new_esEs7(xwv4002, xwv3002, ty_Bool) -> new_esEs14(xwv4002, xwv3002) 26.47/9.57 new_esEs7(xwv4002, xwv3002, app(ty_Ratio, caa)) -> new_esEs23(xwv4002, xwv3002, caa) 26.47/9.57 new_esEs8(xwv4001, xwv3001, ty_Char) -> new_esEs20(xwv4001, xwv3001) 26.47/9.57 new_ltEs22(xwv76, xwv77, app(ty_Ratio, efd)) -> new_ltEs17(xwv76, xwv77, efd) 26.47/9.57 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, app(ty_Maybe, fgf)) -> new_esEs16(xwv40000, xwv30000, fgf) 26.47/9.57 new_ltEs10(Just(xwv540), Just(xwv550), ty_Ordering) -> new_ltEs14(xwv540, xwv550) 26.47/9.57 new_ltEs22(xwv76, xwv77, ty_Bool) -> new_ltEs8(xwv76, xwv77) 26.47/9.57 new_esEs35(xwv540, xwv550, ty_Double) -> new_esEs17(xwv540, xwv550) 26.47/9.57 new_not(False) -> True 26.47/9.57 new_esEs28(xwv40000, xwv30000, app(ty_[], bae)) -> new_esEs12(xwv40000, xwv30000, bae) 26.47/9.57 new_lt21(xwv540, xwv550, ty_Double) -> new_lt5(xwv540, xwv550) 26.47/9.57 new_ltEs23(xwv67, xwv70, app(app(app(ty_@3, fbh), fca), fcb)) -> new_ltEs15(xwv67, xwv70, fbh, fca, fcb) 26.47/9.57 new_ltEs5(Right(xwv540), Right(xwv550), ed, ty_Char) -> new_ltEs7(xwv540, xwv550) 26.47/9.57 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.47/9.57 new_esEs30(xwv40002, xwv30002, ty_Integer) -> new_esEs26(xwv40002, xwv30002) 26.47/9.57 new_esEs26(Integer(xwv40000), Integer(xwv30000)) -> new_primEqInt(xwv40000, xwv30000) 26.47/9.57 new_ltEs21(xwv83, xwv84, ty_@0) -> new_ltEs4(xwv83, xwv84) 26.47/9.57 new_compare18(Just(xwv4000), Nothing, bff) -> GT 26.47/9.57 new_esEs6(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.47/9.57 new_ltEs18(xwv114, xwv116, ty_Int) -> new_ltEs6(xwv114, xwv116) 26.47/9.57 new_esEs21(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), fh, ga) -> new_asAs(new_esEs28(xwv40000, xwv30000, fh), new_esEs27(xwv40001, xwv30001, ga)) 26.47/9.57 new_esEs28(xwv40000, xwv30000, app(app(ty_Either, he), hf)) -> new_esEs19(xwv40000, xwv30000, he, hf) 26.47/9.57 new_esEs9(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.47/9.57 new_esEs38(xwv66, xwv69, app(app(ty_@2, fcf), fcg)) -> new_esEs21(xwv66, xwv69, fcf, fcg) 26.47/9.57 new_esEs27(xwv40001, xwv30001, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs25(xwv40001, xwv30001, gh, ha, hb) 26.47/9.57 new_ltEs20(xwv542, xwv552, app(ty_Ratio, dgc)) -> new_ltEs17(xwv542, xwv552, dgc) 26.47/9.57 new_ltEs10(Just(xwv540), Just(xwv550), ty_Float) -> new_ltEs12(xwv540, xwv550) 26.47/9.57 new_esEs5(xwv4000, xwv3000, app(ty_Ratio, ece)) -> new_esEs23(xwv4000, xwv3000, ece) 26.47/9.57 new_lt23(xwv66, xwv69, ty_Double) -> new_lt5(xwv66, xwv69) 26.47/9.57 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.47/9.57 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.47/9.57 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.47/9.57 new_ltEs24(xwv54, xwv55, ty_Bool) -> new_ltEs8(xwv54, xwv55) 26.47/9.57 new_ltEs14(LT, EQ) -> True 26.47/9.57 new_ltEs23(xwv67, xwv70, ty_@0) -> new_ltEs4(xwv67, xwv70) 26.47/9.57 new_compare27(GT, LT) -> GT 26.47/9.57 new_esEs32(xwv40000, xwv30000, app(ty_[], dbh)) -> new_esEs12(xwv40000, xwv30000, dbh) 26.47/9.57 new_esEs9(xwv4000, xwv3000, app(ty_Maybe, cbh)) -> new_esEs16(xwv4000, xwv3000, cbh) 26.47/9.57 new_esEs29(xwv113, xwv115, ty_Float) -> new_esEs22(xwv113, xwv115) 26.47/9.57 new_compare6(@0, @0) -> EQ 26.47/9.57 new_esEs31(xwv40001, xwv30001, app(ty_[], daf)) -> new_esEs12(xwv40001, xwv30001, daf) 26.47/9.57 new_ltEs22(xwv76, xwv77, ty_Char) -> new_ltEs7(xwv76, xwv77) 26.47/9.57 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.47/9.57 new_esEs9(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.47/9.57 new_esEs38(xwv66, xwv69, ty_Double) -> new_esEs17(xwv66, xwv69) 26.47/9.57 new_compare19(Float(xwv4000, Pos(xwv40010)), Float(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.47/9.57 new_compare19(Float(xwv4000, Neg(xwv40010)), Float(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.47/9.57 new_ltEs21(xwv83, xwv84, app(app(ty_Either, ecb), ecc)) -> new_ltEs5(xwv83, xwv84, ecb, ecc) 26.47/9.57 new_ltEs21(xwv83, xwv84, app(ty_Maybe, ebe)) -> new_ltEs10(xwv83, xwv84, ebe) 26.47/9.57 new_ltEs22(xwv76, xwv77, app(app(ty_Either, efb), efc)) -> new_ltEs5(xwv76, xwv77, efb, efc) 26.47/9.57 new_ltEs10(Just(xwv540), Just(xwv550), app(app(app(ty_@3, egh), eha), ehb)) -> new_ltEs15(xwv540, xwv550, egh, eha, ehb) 26.47/9.57 new_esEs8(xwv4001, xwv3001, ty_Ordering) -> new_esEs15(xwv4001, xwv3001) 26.47/9.57 new_esEs30(xwv40002, xwv30002, app(ty_[], chd)) -> new_esEs12(xwv40002, xwv30002, chd) 26.47/9.57 new_ltEs20(xwv542, xwv552, app(ty_Maybe, dfd)) -> new_ltEs10(xwv542, xwv552, dfd) 26.47/9.57 new_esEs27(xwv40001, xwv30001, app(app(ty_Either, gc), gd)) -> new_esEs19(xwv40001, xwv30001, gc, gd) 26.47/9.57 new_ltEs23(xwv67, xwv70, ty_Char) -> new_ltEs7(xwv67, xwv70) 26.47/9.57 new_esEs13(xwv40000, xwv30000, app(app(ty_@2, bh), ca)) -> new_esEs21(xwv40000, xwv30000, bh, ca) 26.47/9.57 new_esEs12([], [], bd) -> True 26.47/9.57 new_esEs28(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.47/9.57 new_ltEs10(Just(xwv540), Just(xwv550), ty_Integer) -> new_ltEs16(xwv540, xwv550) 26.47/9.57 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.47/9.57 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.47/9.57 new_ltEs23(xwv67, xwv70, ty_Bool) -> new_ltEs8(xwv67, xwv70) 26.47/9.57 new_primEqNat0(Zero, Zero) -> True 26.47/9.57 new_esEs27(xwv40001, xwv30001, ty_@0) -> new_esEs24(xwv40001, xwv30001) 26.47/9.57 new_esEs27(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.47/9.57 new_asAs(False, xwv131) -> False 26.47/9.57 new_compare7(Right(xwv4000), Right(xwv3000), baf, bag) -> new_compare25(xwv4000, xwv3000, new_esEs11(xwv4000, xwv3000, bag), baf, bag) 26.47/9.57 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.47/9.57 new_lt6(xwv113, xwv115, ty_Double) -> new_lt5(xwv113, xwv115) 26.47/9.57 new_esEs8(xwv4001, xwv3001, ty_Int) -> new_esEs18(xwv4001, xwv3001) 26.47/9.57 new_esEs8(xwv4001, xwv3001, ty_Bool) -> new_esEs14(xwv4001, xwv3001) 26.47/9.57 new_ltEs23(xwv67, xwv70, ty_Ordering) -> new_ltEs14(xwv67, xwv70) 26.47/9.57 new_esEs6(xwv4000, xwv3000, app(ty_Ratio, bgd)) -> new_esEs23(xwv4000, xwv3000, bgd) 26.47/9.57 new_esEs9(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.47/9.57 new_ltEs21(xwv83, xwv84, app(ty_Ratio, ecd)) -> new_ltEs17(xwv83, xwv84, ecd) 26.47/9.57 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Double, ffc) -> new_esEs17(xwv40000, xwv30000) 26.47/9.57 new_esEs19(Right(xwv40000), Right(xwv30000), ffb, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.47/9.57 26.47/9.57 The set Q consists of the following terms: 26.47/9.57 26.47/9.57 new_esEs13(x0, x1, app(ty_[], x2)) 26.47/9.57 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.47/9.57 new_esEs30(x0, x1, ty_Integer) 26.47/9.57 new_ltEs22(x0, x1, app(ty_[], x2)) 26.47/9.57 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_esEs31(x0, x1, ty_@0) 26.47/9.57 new_compare0(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_lt11(x0, x1) 26.47/9.57 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_lt20(x0, x1, ty_Int) 26.47/9.57 new_ltEs21(x0, x1, ty_Int) 26.47/9.57 new_primCmpNat0(Succ(x0), Succ(x1)) 26.47/9.57 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_esEs16(Just(x0), Just(x1), ty_Int) 26.47/9.57 new_esEs31(x0, x1, ty_Bool) 26.47/9.57 new_esEs19(Left(x0), Left(x1), ty_Integer, x2) 26.47/9.57 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_pePe(True, x0) 26.47/9.57 new_compare0(x0, x1, ty_Ordering) 26.47/9.57 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_esEs6(x0, x1, ty_Integer) 26.47/9.57 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.47/9.57 new_esEs10(x0, x1, app(ty_[], x2)) 26.47/9.57 new_sr(x0, x1) 26.47/9.57 new_esEs13(x0, x1, ty_Integer) 26.47/9.57 new_esEs39(x0, x1, ty_Int) 26.47/9.57 new_esEs7(x0, x1, ty_Int) 26.47/9.57 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_primEqInt(Pos(Zero), Pos(Zero)) 26.47/9.57 new_compare0(x0, x1, ty_Char) 26.47/9.57 new_ltEs22(x0, x1, ty_@0) 26.47/9.57 new_primPlusNat0(Zero, Succ(x0)) 26.47/9.57 new_esEs10(x0, x1, ty_Integer) 26.47/9.57 new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.47/9.57 new_esEs14(True, True) 26.47/9.57 new_primEqInt(Neg(Zero), Neg(Zero)) 26.47/9.57 new_compare0(x0, x1, ty_Double) 26.47/9.57 new_esEs38(x0, x1, ty_Bool) 26.47/9.57 new_compare6(@0, @0) 26.47/9.57 new_lt23(x0, x1, ty_Int) 26.47/9.57 new_lt22(x0, x1, ty_Double) 26.47/9.57 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_esEs19(Left(x0), Left(x1), ty_@0, x2) 26.47/9.57 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_primMulInt(Pos(x0), Neg(x1)) 26.47/9.57 new_primMulInt(Neg(x0), Pos(x1)) 26.47/9.57 new_ltEs19(x0, x1, ty_Integer) 26.47/9.57 new_esEs6(x0, x1, ty_@0) 26.47/9.57 new_primMulInt(Neg(x0), Neg(x1)) 26.47/9.57 new_ltEs22(x0, x1, ty_Int) 26.47/9.57 new_esEs4(x0, x1, ty_Int) 26.47/9.57 new_esEs10(x0, x1, ty_@0) 26.47/9.57 new_esEs30(x0, x1, ty_@0) 26.47/9.57 new_lt10(x0, x1, x2) 26.47/9.57 new_esEs6(x0, x1, ty_Float) 26.47/9.57 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.47/9.57 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.47/9.57 new_esEs31(x0, x1, ty_Integer) 26.47/9.57 new_esEs19(Left(x0), Left(x1), ty_Float, x2) 26.47/9.57 new_esEs39(x0, x1, app(ty_[], x2)) 26.47/9.57 new_esEs13(x0, x1, ty_Bool) 26.47/9.57 new_lt22(x0, x1, ty_Ordering) 26.47/9.57 new_compare0(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.47/9.57 new_esEs30(x0, x1, ty_Bool) 26.47/9.57 new_esEs30(x0, x1, ty_Float) 26.47/9.57 new_ltEs4(x0, x1) 26.47/9.57 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_esEs38(x0, x1, ty_Integer) 26.47/9.57 new_primEqInt(Pos(Zero), Neg(Zero)) 26.47/9.57 new_primEqInt(Neg(Zero), Pos(Zero)) 26.47/9.57 new_lt22(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_ltEs18(x0, x1, ty_Double) 26.47/9.57 new_esEs32(x0, x1, ty_Integer) 26.47/9.57 new_esEs9(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_ltEs18(x0, x1, ty_Char) 26.47/9.57 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_esEs7(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_primEqNat0(Succ(x0), Succ(x1)) 26.47/9.57 new_esEs10(x0, x1, ty_Bool) 26.47/9.57 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.47/9.57 new_esEs11(x0, x1, ty_Ordering) 26.47/9.57 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.47/9.57 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_ltEs22(x0, x1, ty_Bool) 26.47/9.57 new_esEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.47/9.57 new_ltEs21(x0, x1, ty_Integer) 26.47/9.57 new_esEs11(x0, x1, ty_Char) 26.47/9.57 new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.47/9.57 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 26.47/9.57 new_compare15(x0, x1) 26.47/9.57 new_primMulNat0(Zero, Succ(x0)) 26.47/9.57 new_lt20(x0, x1, ty_Integer) 26.47/9.57 new_ltEs23(x0, x1, ty_Int) 26.47/9.57 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.47/9.57 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.47/9.57 new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.47/9.57 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_esEs5(x0, x1, ty_Int) 26.47/9.57 new_esEs7(x0, x1, ty_@0) 26.47/9.57 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.47/9.57 new_ltEs10(Nothing, Nothing, x0) 26.47/9.57 new_lt20(x0, x1, app(ty_[], x2)) 26.47/9.57 new_compare29(:%(x0, x1), :%(x2, x3), ty_Integer) 26.47/9.57 new_ltEs10(Just(x0), Just(x1), ty_Double) 26.47/9.57 new_esEs10(x0, x1, ty_Int) 26.47/9.57 new_lt21(x0, x1, ty_Bool) 26.47/9.57 new_esEs4(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_lt19(x0, x1, ty_Float) 26.47/9.57 new_esEs27(x0, x1, ty_Bool) 26.47/9.57 new_compare10(x0, x1, False, x2) 26.47/9.57 new_esEs27(x0, x1, app(ty_[], x2)) 26.47/9.57 new_esEs27(x0, x1, ty_Integer) 26.47/9.57 new_compare210(x0, x1, True, x2) 26.47/9.57 new_compare18(Nothing, Nothing, x0) 26.47/9.57 new_esEs33(x0, x1, ty_Float) 26.47/9.57 new_lt6(x0, x1, ty_Char) 26.47/9.57 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.47/9.57 new_esEs28(x0, x1, ty_@0) 26.47/9.57 new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) 26.47/9.57 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_esEs12(:(x0, x1), :(x2, x3), x4) 26.47/9.57 new_compare25(x0, x1, False, x2, x3) 26.47/9.57 new_esEs6(x0, x1, ty_Int) 26.47/9.57 new_ltEs22(x0, x1, ty_Integer) 26.47/9.57 new_esEs39(x0, x1, ty_Integer) 26.47/9.57 new_compare212(x0, x1, x2, x3, True, x4, x5) 26.47/9.57 new_compare14(x0, x1, False, x2, x3) 26.47/9.57 new_esEs19(Left(x0), Left(x1), ty_Int, x2) 26.47/9.57 new_esEs4(x0, x1, ty_@0) 26.47/9.57 new_ltEs13(x0, x1, x2) 26.47/9.57 new_lt22(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.47/9.57 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_esEs7(x0, x1, app(ty_[], x2)) 26.47/9.57 new_esEs10(x0, x1, ty_Float) 26.47/9.57 new_ltEs19(x0, x1, ty_Bool) 26.47/9.57 new_lt19(x0, x1, ty_Char) 26.47/9.57 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_esEs32(x0, x1, ty_Bool) 26.47/9.57 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_esEs19(Right(x0), Right(x1), x2, ty_Int) 26.47/9.57 new_lt13(x0, x1, x2) 26.47/9.57 new_esEs13(x0, x1, ty_@0) 26.47/9.57 new_compare0(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_esEs12([], :(x0, x1), x2) 26.47/9.57 new_esEs32(x0, x1, ty_Float) 26.47/9.57 new_esEs8(x0, x1, ty_Int) 26.47/9.57 new_lt16(x0, x1, x2, x3) 26.47/9.57 new_ltEs21(x0, x1, ty_Float) 26.47/9.57 new_esEs6(x0, x1, ty_Bool) 26.47/9.57 new_esEs11(x0, x1, ty_Float) 26.47/9.57 new_ltEs19(x0, x1, ty_Int) 26.47/9.57 new_esEs36(x0, x1, ty_Integer) 26.47/9.57 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_esEs8(x0, x1, ty_Bool) 26.47/9.57 new_compare27(LT, GT) 26.47/9.57 new_compare27(GT, LT) 26.47/9.57 new_ltEs21(x0, x1, ty_Bool) 26.47/9.57 new_esEs24(@0, @0) 26.47/9.57 new_ltEs8(True, False) 26.47/9.57 new_esEs13(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_ltEs8(False, True) 26.47/9.57 new_lt23(x0, x1, ty_Integer) 26.47/9.57 new_lt20(x0, x1, ty_@0) 26.47/9.57 new_lt15(x0, x1, x2, x3, x4) 26.47/9.57 new_lt23(x0, x1, ty_Bool) 26.47/9.57 new_esEs19(Left(x0), Left(x1), ty_Bool, x2) 26.47/9.57 new_esEs25(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.47/9.57 new_esEs19(Left(x0), Right(x1), x2, x3) 26.47/9.57 new_esEs19(Right(x0), Left(x1), x2, x3) 26.47/9.57 new_primCompAux00(x0, x1, EQ, ty_Int) 26.47/9.57 new_esEs32(x0, x1, ty_Int) 26.47/9.57 new_esEs16(Just(x0), Just(x1), ty_@0) 26.47/9.57 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_esEs29(x0, x1, ty_Double) 26.47/9.57 new_ltEs23(x0, x1, ty_Bool) 26.47/9.57 new_esEs27(x0, x1, ty_Int) 26.47/9.57 new_esEs38(x0, x1, ty_@0) 26.47/9.57 new_compare27(EQ, GT) 26.47/9.57 new_compare27(GT, EQ) 26.47/9.57 new_esEs6(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 26.47/9.57 new_compare8(Integer(x0), Integer(x1)) 26.47/9.57 new_ltEs19(x0, x1, ty_Float) 26.47/9.57 new_esEs39(x0, x1, ty_Bool) 26.47/9.57 new_lt21(x0, x1, ty_Int) 26.47/9.57 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_compare110(x0, x1, x2, x3, False, x4, x5, x6) 26.47/9.57 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_primMulInt(Pos(x0), Pos(x1)) 26.47/9.57 new_lt7(x0, x1) 26.47/9.57 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 26.47/9.57 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.47/9.57 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 26.47/9.57 new_lt8(x0, x1) 26.47/9.57 new_esEs34(x0, x1, ty_Bool) 26.47/9.57 new_lt12(x0, x1) 26.47/9.57 new_compare7(Left(x0), Left(x1), x2, x3) 26.47/9.57 new_esEs18(x0, x1) 26.47/9.57 new_ltEs5(Left(x0), Right(x1), x2, x3) 26.47/9.57 new_ltEs5(Right(x0), Left(x1), x2, x3) 26.47/9.57 new_ltEs19(x0, x1, ty_Double) 26.47/9.57 new_esEs33(x0, x1, ty_@0) 26.47/9.57 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_lt22(x0, x1, ty_Integer) 26.47/9.57 new_esEs12([], [], x0) 26.47/9.57 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_esEs9(x0, x1, ty_Integer) 26.47/9.57 new_esEs32(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_esEs27(x0, x1, ty_Float) 26.47/9.57 new_esEs15(EQ, EQ) 26.47/9.57 new_esEs34(x0, x1, ty_@0) 26.47/9.57 new_esEs32(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_esEs9(x0, x1, ty_Bool) 26.47/9.57 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 26.47/9.57 new_esEs17(Double(x0, x1), Double(x2, x3)) 26.47/9.57 new_esEs34(x0, x1, ty_Integer) 26.47/9.57 new_esEs35(x0, x1, ty_@0) 26.47/9.57 new_esEs19(Right(x0), Right(x1), x2, ty_Char) 26.47/9.57 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_esEs9(x0, x1, ty_@0) 26.47/9.57 new_ltEs20(x0, x1, ty_Integer) 26.47/9.57 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 26.47/9.57 new_compare112(x0, x1, True, x2, x3) 26.47/9.57 new_primEqNat0(Zero, Succ(x0)) 26.47/9.57 new_esEs39(x0, x1, ty_Float) 26.47/9.57 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 26.47/9.57 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_primPlusNat0(Zero, Zero) 26.47/9.57 new_esEs5(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_esEs19(Right(x0), Right(x1), x2, ty_Bool) 26.47/9.57 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.47/9.57 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_not(True) 26.47/9.57 new_esEs5(x0, x1, app(ty_[], x2)) 26.47/9.57 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 26.47/9.57 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 26.47/9.57 new_esEs13(x0, x1, ty_Double) 26.47/9.57 new_primCompAux00(x0, x1, GT, x2) 26.47/9.57 new_esEs38(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_ltEs24(x0, x1, ty_Ordering) 26.47/9.57 new_esEs33(x0, x1, ty_Int) 26.47/9.57 new_lt22(x0, x1, ty_Bool) 26.47/9.57 new_lt21(x0, x1, ty_Integer) 26.47/9.57 new_esEs28(x0, x1, ty_Float) 26.47/9.57 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 26.47/9.57 new_ltEs20(x0, x1, ty_Char) 26.47/9.57 new_esEs9(x0, x1, ty_Float) 26.47/9.57 new_ltEs19(x0, x1, ty_Ordering) 26.47/9.57 new_esEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.47/9.57 new_lt23(x0, x1, ty_Float) 26.47/9.57 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_esEs39(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_compare112(x0, x1, False, x2, x3) 26.47/9.57 new_lt19(x0, x1, ty_Ordering) 26.47/9.57 new_esEs33(x0, x1, ty_Bool) 26.47/9.57 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_esEs19(Right(x0), Right(x1), x2, ty_Integer) 26.47/9.57 new_esEs33(x0, x1, ty_Char) 26.47/9.57 new_lt21(x0, x1, app(ty_[], x2)) 26.47/9.57 new_ltEs20(x0, x1, ty_Bool) 26.47/9.57 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_compare29(:%(x0, x1), :%(x2, x3), ty_Int) 26.47/9.57 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 26.47/9.57 new_primCmpNat0(Zero, Succ(x0)) 26.47/9.57 new_esEs30(x0, x1, ty_Int) 26.47/9.57 new_esEs16(Just(x0), Just(x1), ty_Integer) 26.47/9.57 new_esEs7(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_ltEs23(x0, x1, app(ty_[], x2)) 26.47/9.57 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_esEs31(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.47/9.57 new_lt21(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.47/9.57 new_primCompAux00(x0, x1, EQ, ty_Double) 26.47/9.57 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.47/9.57 new_esEs9(x0, x1, ty_Int) 26.47/9.57 new_lt21(x0, x1, ty_@0) 26.47/9.57 new_lt6(x0, x1, ty_Ordering) 26.47/9.57 new_compare27(LT, LT) 26.47/9.57 new_lt19(x0, x1, ty_Double) 26.47/9.57 new_ltEs20(x0, x1, ty_Int) 26.47/9.57 new_ltEs14(GT, GT) 26.47/9.57 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.47/9.57 new_esEs26(Integer(x0), Integer(x1)) 26.47/9.57 new_esEs13(x0, x1, ty_Char) 26.47/9.57 new_lt23(x0, x1, app(ty_[], x2)) 26.47/9.57 new_esEs22(Float(x0, x1), Float(x2, x3)) 26.47/9.57 new_esEs11(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_compare9(False, False) 26.47/9.57 new_lt6(x0, x1, ty_Double) 26.47/9.57 new_esEs34(x0, x1, ty_Int) 26.47/9.57 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.47/9.57 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.47/9.57 new_esEs4(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 26.47/9.57 new_esEs28(x0, x1, ty_Char) 26.47/9.57 new_lt20(x0, x1, ty_Bool) 26.47/9.57 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_esEs9(x0, x1, ty_Char) 26.47/9.57 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 26.47/9.57 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_ltEs12(x0, x1) 26.47/9.57 new_esEs6(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 26.47/9.57 new_esEs35(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_esEs16(Nothing, Just(x0), x1) 26.47/9.57 new_ltEs20(x0, x1, ty_Float) 26.47/9.57 new_lt22(x0, x1, ty_Int) 26.47/9.57 new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 26.47/9.57 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_esEs29(x0, x1, ty_Bool) 26.47/9.57 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.47/9.57 new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.47/9.57 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.47/9.57 new_esEs13(x0, x1, ty_Int) 26.47/9.57 new_esEs34(x0, x1, ty_Float) 26.47/9.57 new_esEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.47/9.57 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 26.47/9.57 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_esEs28(x0, x1, ty_Int) 26.47/9.57 new_lt22(x0, x1, ty_Char) 26.47/9.57 new_ltEs10(Just(x0), Just(x1), ty_Ordering) 26.47/9.57 new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.47/9.57 new_primMulNat0(Succ(x0), Succ(x1)) 26.47/9.57 new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.47/9.57 new_esEs35(x0, x1, app(ty_[], x2)) 26.47/9.57 new_esEs16(Nothing, Nothing, x0) 26.47/9.57 new_esEs16(Just(x0), Just(x1), ty_Bool) 26.47/9.57 new_primEqNat0(Zero, Zero) 26.47/9.57 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_lt22(x0, x1, ty_Float) 26.47/9.57 new_esEs29(x0, x1, ty_Int) 26.47/9.57 new_esEs39(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_esEs33(x0, x1, ty_Integer) 26.47/9.57 new_not(False) 26.47/9.57 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 26.47/9.57 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_compare18(Just(x0), Nothing, x1) 26.47/9.57 new_esEs5(x0, x1, ty_Double) 26.47/9.57 new_esEs9(x0, x1, app(ty_[], x2)) 26.47/9.57 new_esEs28(x0, x1, ty_Integer) 26.47/9.57 new_compare27(EQ, EQ) 26.47/9.57 new_lt6(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_esEs13(x0, x1, ty_Float) 26.47/9.57 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_ltEs18(x0, x1, ty_Ordering) 26.47/9.57 new_lt19(x0, x1, app(ty_[], x2)) 26.47/9.57 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_esEs33(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_esEs11(x0, x1, ty_Double) 26.47/9.57 new_esEs30(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_ltEs8(True, True) 26.47/9.57 new_esEs28(x0, x1, ty_Bool) 26.47/9.57 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_esEs10(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_esEs32(x0, x1, ty_Double) 26.47/9.57 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 26.47/9.57 new_esEs29(x0, x1, ty_Float) 26.47/9.57 new_esEs39(x0, x1, ty_Double) 26.47/9.57 new_lt20(x0, x1, ty_Float) 26.47/9.57 new_esEs29(x0, x1, ty_Char) 26.47/9.57 new_esEs19(Right(x0), Right(x1), x2, ty_@0) 26.47/9.57 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_primPlusNat0(Succ(x0), Succ(x1)) 26.47/9.57 new_esEs27(x0, x1, ty_Double) 26.47/9.57 new_ltEs21(x0, x1, ty_Double) 26.47/9.57 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.47/9.57 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.47/9.57 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_ltEs14(EQ, LT) 26.47/9.57 new_esEs16(Just(x0), Just(x1), ty_Float) 26.47/9.57 new_ltEs14(LT, EQ) 26.47/9.57 new_fsEs(x0) 26.47/9.57 new_primCompAux1(x0, x1, x2, x3, x4) 26.47/9.57 new_ltEs23(x0, x1, ty_Double) 26.47/9.57 new_esEs34(x0, x1, ty_Char) 26.47/9.57 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.47/9.57 new_esEs8(x0, x1, ty_Double) 26.47/9.57 new_esEs16(Just(x0), Just(x1), app(ty_[], x2)) 26.47/9.57 new_compare16(Char(x0), Char(x1)) 26.47/9.57 new_ltEs10(Just(x0), Just(x1), ty_Bool) 26.47/9.57 new_compare26([], [], x0) 26.47/9.57 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_compare0(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_compare18(Nothing, Just(x0), x1) 26.47/9.57 new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_esEs7(x0, x1, ty_Double) 26.47/9.57 new_esEs27(x0, x1, ty_Ordering) 26.47/9.57 new_esEs9(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_esEs30(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_esEs16(Just(x0), Just(x1), ty_Ordering) 26.47/9.57 new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.47/9.57 new_esEs34(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_compare0(x0, x1, ty_Int) 26.47/9.57 new_esEs39(x0, x1, ty_Ordering) 26.47/9.57 new_esEs35(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_esEs32(x0, x1, ty_Char) 26.47/9.57 new_compare26([], :(x0, x1), x2) 26.47/9.57 new_esEs32(x0, x1, app(ty_[], x2)) 26.47/9.57 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 26.47/9.57 new_lt6(x0, x1, ty_Bool) 26.47/9.57 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.47/9.57 new_esEs4(x0, x1, ty_Double) 26.47/9.57 new_lt20(x0, x1, ty_Ordering) 26.47/9.57 new_esEs38(x0, x1, ty_Char) 26.47/9.57 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.47/9.57 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_esEs7(x0, x1, ty_Ordering) 26.47/9.57 new_lt6(x0, x1, ty_Integer) 26.47/9.57 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_compare17(@2(x0, x1), @2(x2, x3), x4, x5) 26.47/9.57 new_lt20(x0, x1, ty_Double) 26.47/9.57 new_lt6(x0, x1, ty_@0) 26.47/9.57 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 26.47/9.57 new_lt23(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_ltEs10(Just(x0), Just(x1), ty_Integer) 26.47/9.57 new_esEs16(Just(x0), Just(x1), ty_Char) 26.47/9.57 new_esEs4(x0, x1, ty_Ordering) 26.47/9.57 new_lt17(x0, x1) 26.47/9.57 new_lt5(x0, x1) 26.47/9.57 new_esEs16(Just(x0), Just(x1), ty_Double) 26.47/9.57 new_lt23(x0, x1, ty_Ordering) 26.47/9.57 new_lt23(x0, x1, ty_Double) 26.47/9.57 new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.47/9.57 new_esEs12(:(x0, x1), [], x2) 26.47/9.57 new_esEs28(x0, x1, ty_Double) 26.47/9.57 new_ltEs14(LT, LT) 26.47/9.57 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 26.47/9.57 new_esEs28(x0, x1, ty_Ordering) 26.47/9.57 new_ltEs10(Just(x0), Just(x1), ty_@0) 26.47/9.57 new_esEs28(x0, x1, app(ty_[], x2)) 26.47/9.57 new_esEs7(x0, x1, ty_Char) 26.47/9.57 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.47/9.57 new_lt20(x0, x1, ty_Char) 26.47/9.57 new_primMulNat0(Succ(x0), Zero) 26.47/9.57 new_esEs15(EQ, GT) 26.47/9.57 new_esEs15(GT, EQ) 26.47/9.57 new_asAs(False, x0) 26.47/9.57 new_esEs15(LT, LT) 26.47/9.57 new_esEs30(x0, x1, app(ty_[], x2)) 26.47/9.57 new_lt6(x0, x1, app(ty_[], x2)) 26.47/9.57 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 26.56/9.57 new_esEs38(x0, x1, ty_Ordering) 26.56/9.57 new_esEs31(x0, x1, ty_Char) 26.56/9.57 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.56/9.57 new_ltEs8(False, False) 26.56/9.57 new_esEs14(False, True) 26.56/9.57 new_esEs14(True, False) 26.56/9.57 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 26.56/9.57 new_esEs6(x0, x1, app(ty_[], x2)) 26.56/9.57 new_compare14(x0, x1, True, x2, x3) 26.56/9.57 new_esEs4(x0, x1, ty_Char) 26.56/9.57 new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.56/9.57 new_esEs29(x0, x1, ty_Integer) 26.56/9.57 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.57 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 26.56/9.57 new_lt21(x0, x1, app(ty_Maybe, x2)) 26.56/9.57 new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.56/9.57 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.57 new_esEs8(x0, x1, ty_Ordering) 26.56/9.57 new_ltEs18(x0, x1, ty_Int) 26.56/9.57 new_ltEs22(x0, x1, ty_Char) 26.56/9.57 new_esEs11(x0, x1, app(ty_Maybe, x2)) 26.56/9.57 new_ltEs21(x0, x1, ty_Ordering) 26.56/9.57 new_ltEs23(x0, x1, ty_Ordering) 26.56/9.57 new_ltEs22(x0, x1, ty_Double) 26.56/9.57 new_esEs35(x0, x1, ty_Float) 26.56/9.57 new_compare210(x0, x1, False, x2) 26.56/9.57 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.57 new_esEs5(x0, x1, ty_Ordering) 26.56/9.57 new_lt21(x0, x1, ty_Ordering) 26.56/9.57 new_esEs30(x0, x1, ty_Char) 26.56/9.57 new_esEs32(x0, x1, ty_Ordering) 26.56/9.57 new_primCompAux00(x0, x1, LT, x2) 26.56/9.57 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.56/9.57 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.56/9.57 new_esEs34(x0, x1, app(ty_Ratio, x2)) 26.56/9.57 new_compare26(:(x0, x1), [], x2) 26.56/9.57 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.56/9.57 new_ltEs21(x0, x1, app(ty_[], x2)) 26.56/9.57 new_esEs5(x0, x1, ty_Char) 26.56/9.57 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 26.56/9.57 new_compare13(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.56/9.57 new_esEs31(x0, x1, ty_Double) 26.56/9.57 new_compare13(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.56/9.57 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.57 new_esEs19(Left(x0), Left(x1), ty_Char, x2) 26.56/9.57 new_primCompAux00(x0, x1, EQ, ty_Float) 26.56/9.57 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.56/9.57 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.56/9.57 new_primCompAux00(x0, x1, EQ, ty_Ordering) 26.56/9.57 new_esEs16(Just(x0), Nothing, x1) 26.56/9.57 new_esEs6(x0, x1, ty_Char) 26.56/9.57 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.56/9.57 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.57 new_esEs29(x0, x1, app(ty_[], x2)) 26.56/9.57 new_esEs10(x0, x1, ty_Char) 26.56/9.57 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.57 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.57 new_esEs15(LT, GT) 26.56/9.57 new_esEs15(GT, LT) 26.56/9.57 new_esEs8(x0, x1, app(ty_Ratio, x2)) 26.56/9.57 new_lt6(x0, x1, ty_Float) 26.56/9.57 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.56/9.57 new_esEs38(x0, x1, app(ty_Ratio, x2)) 26.56/9.57 new_ltEs20(x0, x1, ty_Double) 26.56/9.57 new_compare0(x0, x1, ty_@0) 26.56/9.57 new_esEs10(x0, x1, app(ty_Maybe, x2)) 26.56/9.57 new_ltEs14(LT, GT) 26.56/9.57 new_ltEs14(GT, LT) 26.56/9.57 new_esEs9(x0, x1, ty_Double) 26.56/9.57 new_esEs6(x0, x1, ty_Ordering) 26.56/9.57 new_ltEs23(x0, x1, ty_Float) 26.56/9.57 new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) 26.56/9.57 new_esEs13(x0, x1, ty_Ordering) 26.56/9.57 new_compare18(Just(x0), Just(x1), x2) 26.56/9.57 new_esEs31(x0, x1, app(ty_[], x2)) 26.56/9.57 new_pePe(False, x0) 26.56/9.57 new_ltEs10(Nothing, Just(x0), x1) 26.56/9.57 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.56/9.57 new_ltEs20(x0, x1, ty_Ordering) 26.56/9.57 new_primPlusNat1(Succ(x0), x1) 26.56/9.57 new_esEs31(x0, x1, ty_Ordering) 26.56/9.57 new_ltEs24(x0, x1, ty_Double) 26.56/9.57 new_lt23(x0, x1, ty_Char) 26.56/9.57 new_ltEs22(x0, x1, ty_Ordering) 26.56/9.57 new_compare111(x0, x1, x2, x3, True, x4, x5) 26.56/9.57 new_lt6(x0, x1, ty_Int) 26.56/9.57 new_sr0(Integer(x0), Integer(x1)) 26.56/9.57 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.56/9.57 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 26.56/9.57 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.57 new_ltEs14(EQ, GT) 26.56/9.57 new_ltEs14(GT, EQ) 26.56/9.57 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.57 new_lt23(x0, x1, app(ty_Maybe, x2)) 26.56/9.57 new_lt22(x0, x1, ty_@0) 26.56/9.57 new_ltEs17(x0, x1, x2) 26.56/9.57 new_lt21(x0, x1, ty_Char) 26.56/9.57 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.56/9.57 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.56/9.57 new_esEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.56/9.57 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.57 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.57 new_esEs11(x0, x1, ty_Bool) 26.56/9.57 new_esEs8(x0, x1, ty_Float) 26.56/9.57 new_esEs35(x0, x1, ty_Integer) 26.56/9.57 new_esEs38(x0, x1, ty_Double) 26.56/9.57 new_esEs35(x0, x1, ty_Ordering) 26.56/9.57 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.57 new_ltEs19(x0, x1, ty_Char) 26.56/9.57 new_compare7(Right(x0), Right(x1), x2, x3) 26.56/9.57 new_esEs35(x0, x1, ty_Bool) 26.56/9.57 new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 26.56/9.57 new_lt6(x0, x1, app(ty_Maybe, x2)) 26.56/9.57 new_ltEs6(x0, x1) 26.56/9.57 new_lt9(x0, x1, x2, x3) 26.56/9.57 new_esEs39(x0, x1, ty_Char) 26.56/9.57 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.57 new_esEs19(Right(x0), Right(x1), x2, ty_Float) 26.56/9.57 new_ltEs24(x0, x1, ty_@0) 26.56/9.57 new_lt18(x0, x1, x2) 26.56/9.57 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.56/9.57 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.56/9.57 new_esEs33(x0, x1, app(ty_Maybe, x2)) 26.56/9.57 new_esEs34(x0, x1, ty_Double) 26.56/9.57 new_esEs11(x0, x1, ty_Int) 26.56/9.57 new_primCmpNat0(Succ(x0), Zero) 26.56/9.57 new_lt19(x0, x1, ty_Int) 26.56/9.57 new_esEs5(x0, x1, ty_Float) 26.56/9.57 new_primCompAux00(x0, x1, EQ, ty_Char) 26.56/9.57 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.57 new_esEs29(x0, x1, ty_@0) 26.56/9.57 new_compare7(Left(x0), Right(x1), x2, x3) 26.56/9.57 new_esEs27(x0, x1, ty_Char) 26.56/9.57 new_compare7(Right(x0), Left(x1), x2, x3) 26.56/9.57 new_ltEs21(x0, x1, ty_Char) 26.56/9.57 new_primPlusNat0(Succ(x0), Zero) 26.56/9.57 new_primEqNat0(Succ(x0), Zero) 26.56/9.57 new_ltEs23(x0, x1, ty_Char) 26.56/9.57 new_esEs8(x0, x1, ty_Char) 26.56/9.57 new_ltEs19(x0, x1, app(ty_[], x2)) 26.56/9.57 new_lt19(x0, x1, ty_@0) 26.56/9.57 new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) 26.56/9.57 new_esEs7(x0, x1, ty_Float) 26.56/9.57 new_esEs38(x0, x1, app(ty_[], x2)) 26.56/9.57 new_ltEs23(x0, x1, ty_Integer) 26.56/9.57 new_esEs37(x0, x1, ty_Int) 26.56/9.57 new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) 26.56/9.57 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 26.56/9.57 new_compare9(False, True) 26.56/9.57 new_compare9(True, False) 26.56/9.57 new_lt21(x0, x1, ty_Float) 26.56/9.57 new_primMulNat0(Zero, Zero) 26.56/9.57 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.57 new_primCompAux00(x0, x1, EQ, ty_@0) 26.56/9.57 new_esEs11(x0, x1, ty_Integer) 26.56/9.57 new_ltEs14(EQ, EQ) 26.56/9.57 new_esEs13(x0, x1, app(ty_Maybe, x2)) 26.56/9.57 new_primCompAux00(x0, x1, EQ, ty_Bool) 26.56/9.57 new_lt19(x0, x1, ty_Bool) 26.56/9.57 new_esEs34(x0, x1, app(ty_[], x2)) 26.56/9.57 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.56/9.57 new_ltEs20(x0, x1, ty_@0) 26.56/9.57 new_esEs35(x0, x1, ty_Char) 26.56/9.57 new_compare10(x0, x1, True, x2) 26.56/9.57 new_esEs4(x0, x1, ty_Float) 26.56/9.57 new_ltEs24(x0, x1, ty_Char) 26.56/9.57 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 26.56/9.57 new_compare110(x0, x1, x2, x3, True, x4, x5, x6) 26.56/9.57 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.57 new_esEs8(x0, x1, ty_Integer) 26.56/9.57 new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 26.56/9.57 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 26.56/9.57 new_esEs5(x0, x1, ty_Bool) 26.56/9.57 new_esEs5(x0, x1, app(ty_Ratio, x2)) 26.56/9.57 new_lt14(x0, x1) 26.56/9.57 new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) 26.56/9.57 new_ltEs18(x0, x1, ty_Float) 26.56/9.57 new_ltEs18(x0, x1, ty_Integer) 26.56/9.57 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.56/9.57 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.57 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.56/9.57 new_esEs4(x0, x1, ty_Integer) 26.56/9.57 new_esEs35(x0, x1, ty_Int) 26.56/9.57 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 26.56/9.57 new_compare24(x0, x1, True, x2, x3) 26.56/9.57 new_esEs10(x0, x1, ty_Double) 26.56/9.57 new_ltEs24(x0, x1, ty_Bool) 26.56/9.57 new_lt19(x0, x1, ty_Integer) 26.56/9.57 new_primCompAux00(x0, x1, EQ, ty_Integer) 26.56/9.57 new_ltEs24(x0, x1, app(ty_[], x2)) 26.56/9.57 new_compare0(x0, x1, app(ty_[], x2)) 26.56/9.57 new_esEs8(x0, x1, app(ty_[], x2)) 26.56/9.57 new_esEs4(x0, x1, app(ty_[], x2)) 26.56/9.57 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.57 new_ltEs20(x0, x1, app(ty_[], x2)) 26.56/9.57 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.57 new_ltEs24(x0, x1, ty_Integer) 26.56/9.57 new_esEs7(x0, x1, ty_Integer) 26.56/9.57 new_ltEs7(x0, x1) 26.56/9.57 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.57 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.57 new_primPlusNat1(Zero, x0) 26.56/9.57 new_esEs30(x0, x1, ty_Double) 26.56/9.57 new_ltEs18(x0, x1, ty_Bool) 26.56/9.57 new_compare0(x0, x1, ty_Float) 26.56/9.57 new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) 26.56/9.57 new_ltEs10(Just(x0), Nothing, x1) 26.56/9.57 new_esEs33(x0, x1, ty_Double) 26.56/9.57 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.57 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.56/9.57 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.57 new_esEs36(x0, x1, ty_Int) 26.56/9.57 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.57 new_esEs4(x0, x1, ty_Bool) 26.56/9.57 new_esEs29(x0, x1, ty_Ordering) 26.56/9.57 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.56/9.57 new_esEs5(x0, x1, ty_Integer) 26.56/9.57 new_ltEs16(x0, x1) 26.56/9.57 new_compare13(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.56/9.57 new_compare13(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.56/9.57 new_esEs7(x0, x1, ty_Bool) 26.56/9.57 new_esEs31(x0, x1, app(ty_Ratio, x2)) 26.56/9.57 new_ltEs10(Just(x0), Just(x1), ty_Float) 26.56/9.57 new_ltEs19(x0, x1, ty_@0) 26.56/9.57 new_esEs37(x0, x1, ty_Integer) 26.56/9.57 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.56/9.57 new_compare0(x0, x1, ty_Bool) 26.56/9.57 new_compare9(True, True) 26.56/9.57 new_lt23(x0, x1, ty_@0) 26.56/9.57 new_lt22(x0, x1, app(ty_[], x2)) 26.56/9.57 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.57 new_esEs27(x0, x1, ty_@0) 26.56/9.57 new_esEs31(x0, x1, ty_Float) 26.56/9.57 new_esEs34(x0, x1, ty_Ordering) 26.56/9.57 new_esEs19(Right(x0), Right(x1), x2, ty_Double) 26.56/9.57 new_esEs35(x0, x1, ty_Double) 26.56/9.57 new_ltEs18(x0, x1, ty_@0) 26.56/9.57 new_ltEs10(Just(x0), Just(x1), ty_Int) 26.56/9.57 new_esEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.56/9.57 new_esEs33(x0, x1, ty_Ordering) 26.56/9.57 new_esEs39(x0, x1, ty_@0) 26.56/9.57 new_esEs15(GT, GT) 26.56/9.57 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.57 new_ltEs22(x0, x1, ty_Float) 26.56/9.57 new_esEs9(x0, x1, ty_Ordering) 26.56/9.57 new_esEs15(LT, EQ) 26.56/9.57 new_esEs15(EQ, LT) 26.56/9.57 new_ltEs18(x0, x1, app(ty_[], x2)) 26.56/9.57 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.56/9.57 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.57 new_compare26(:(x0, x1), :(x2, x3), x4) 26.56/9.57 new_esEs33(x0, x1, app(ty_[], x2)) 26.56/9.57 new_esEs31(x0, x1, ty_Int) 26.56/9.57 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 26.56/9.57 new_compare24(x0, x1, False, x2, x3) 26.56/9.57 new_esEs11(x0, x1, ty_@0) 26.56/9.57 new_esEs8(x0, x1, app(ty_Maybe, x2)) 26.56/9.57 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.56/9.57 new_esEs19(Left(x0), Left(x1), ty_Double, x2) 26.56/9.57 new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.56/9.57 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.57 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.57 new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.56/9.57 new_esEs5(x0, x1, ty_@0) 26.56/9.57 new_ltEs23(x0, x1, ty_@0) 26.56/9.57 new_ltEs24(x0, x1, ty_Int) 26.56/9.57 new_esEs10(x0, x1, ty_Ordering) 26.56/9.57 new_esEs20(Char(x0), Char(x1)) 26.56/9.57 new_ltEs10(Just(x0), Just(x1), ty_Char) 26.56/9.57 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.56/9.57 new_esEs6(x0, x1, ty_Double) 26.56/9.57 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.57 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.56/9.57 new_esEs14(False, False) 26.56/9.57 new_ltEs21(x0, x1, ty_@0) 26.56/9.57 new_esEs11(x0, x1, app(ty_[], x2)) 26.56/9.57 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.57 new_esEs8(x0, x1, ty_@0) 26.56/9.57 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 26.56/9.57 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.56/9.57 new_esEs30(x0, x1, ty_Ordering) 26.56/9.57 new_lt4(x0, x1) 26.56/9.57 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.57 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.57 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.57 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.57 new_compare111(x0, x1, x2, x3, False, x4, x5) 26.56/9.57 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.57 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.57 new_compare0(x0, x1, ty_Integer) 26.56/9.57 new_esEs38(x0, x1, ty_Int) 26.56/9.57 new_compare27(GT, GT) 26.56/9.57 new_compare212(x0, x1, x2, x3, False, x4, x5) 26.56/9.57 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.57 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.57 new_ltEs11(x0, x1) 26.56/9.57 new_esEs32(x0, x1, ty_@0) 26.56/9.57 new_asAs(True, x0) 26.56/9.57 new_lt21(x0, x1, ty_Double) 26.56/9.57 new_compare27(LT, EQ) 26.56/9.57 new_compare27(EQ, LT) 26.56/9.57 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.57 new_esEs38(x0, x1, ty_Float) 26.56/9.57 new_compare28(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.56/9.57 new_ltEs24(x0, x1, ty_Float) 26.56/9.57 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.57 new_primCmpNat0(Zero, Zero) 26.56/9.57 new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.56/9.57 new_compare25(x0, x1, True, x2, x3) 26.56/9.57 26.56/9.57 We have to consider all minimal (P,Q,R)-chains. 26.56/9.57 ---------------------------------------- 26.56/9.57 26.56/9.57 (27) QDPSizeChangeProof (EQUIVALENT) 26.56/9.57 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. 26.56/9.57 26.56/9.57 From the DPs we obtained the following set of size-change graphs: 26.56/9.57 *new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, GT, h, ba) -> new_delFromFM(xwv20, :(xwv21, xwv22), h, ba) 26.56/9.57 The graph contains the following edges 6 >= 1, 10 >= 3, 11 >= 4 26.56/9.57 26.56/9.57 26.56/9.57 *new_delFromFM20(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, h, ba) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_compare26(:(xwv21, xwv22), :(xwv15, xwv16), h), h, ba) 26.56/9.57 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 10, 10 >= 11 26.56/9.57 26.56/9.57 26.56/9.57 *new_delFromFM(Branch(:(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), :(xwv400, xwv401), bb, bc) -> new_delFromFM2(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, xwv400, xwv401, new_primCompAux1(xwv400, xwv300, xwv401, xwv301, bb), bb, bc) 26.56/9.57 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 1 > 6, 2 > 7, 2 > 8, 3 >= 10, 4 >= 11 26.56/9.57 26.56/9.57 26.56/9.57 *new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, EQ, h, ba) -> new_delFromFM20(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, h, ba) 26.56/9.57 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 9, 11 >= 10 26.56/9.57 26.56/9.57 26.56/9.57 *new_delFromFM2(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, LT, h, ba) -> new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_compare26(:(xwv21, xwv22), :(xwv15, xwv16), h), h, ba) 26.56/9.57 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 10, 11 >= 11 26.56/9.57 26.56/9.57 26.56/9.57 *new_delFromFM1(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, LT, h, ba) -> new_delFromFM(xwv19, :(xwv21, xwv22), h, ba) 26.56/9.57 The graph contains the following edges 5 >= 1, 10 >= 3, 11 >= 4 26.56/9.57 26.56/9.57 26.56/9.57 *new_delFromFM(Branch([], xwv31, xwv32, xwv33, xwv34), :(xwv400, xwv401), bb, bc) -> new_delFromFM(xwv34, :(xwv400, xwv401), bb, bc) 26.56/9.57 The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4 26.56/9.57 26.56/9.57 26.56/9.57 ---------------------------------------- 26.56/9.57 26.56/9.57 (28) 26.56/9.57 YES 26.56/9.57 26.56/9.57 ---------------------------------------- 26.56/9.57 26.56/9.57 (29) 26.56/9.57 Obligation: 26.56/9.57 Q DP problem: 26.56/9.57 The TRS P consists of the following rules: 26.56/9.57 26.56/9.57 new_foldl(xwv3, :(xwv40, xwv41), h, ba) -> new_foldl(new_delFromFM0(xwv3, xwv40, h, ba), xwv41, h, ba) 26.56/9.57 26.56/9.57 The TRS R consists of the following rules: 26.56/9.57 26.56/9.57 new_primCompAux00(xwv32, xwv33, EQ, ty_@0) -> new_compare6(xwv32, xwv33) 26.56/9.57 new_ltEs24(xwv54, xwv55, ty_Float) -> new_ltEs12(xwv54, xwv55) 26.56/9.57 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.56/9.57 new_esEs33(xwv540, xwv550, app(ty_Ratio, cad)) -> new_esEs23(xwv540, xwv550, cad) 26.56/9.57 new_ltEs21(xwv83, xwv84, ty_Bool) -> new_ltEs8(xwv83, xwv84) 26.56/9.57 new_esEs28(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.57 new_primPlusNat0(Zero, Zero) -> Zero 26.56/9.57 new_ltEs22(xwv76, xwv77, app(app(app(ty_@3, dad), dae), daf)) -> new_ltEs15(xwv76, xwv77, dad, dae, daf) 26.56/9.57 new_primCompAux1(xwv400, xwv300, xwv401, xwv301, h) -> new_primCompAux00(xwv401, xwv301, new_compare0(xwv400, xwv300, h), app(ty_[], h)) 26.56/9.57 new_esEs24(@0, @0) -> True 26.56/9.57 new_pePe(True, xwv216) -> True 26.56/9.57 new_esEs10(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.56/9.57 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Integer, eaf) -> new_esEs26(xwv40000, xwv30000) 26.56/9.57 new_compare212(xwv113, xwv114, xwv115, xwv116, True, gh, ha) -> EQ 26.56/9.57 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(ty_@2, ebf), ebg), eaf) -> new_esEs21(xwv40000, xwv30000, ebf, ebg) 26.56/9.57 new_ltEs24(xwv54, xwv55, ty_Ordering) -> new_ltEs14(xwv54, xwv55) 26.56/9.57 new_esEs34(xwv541, xwv551, ty_Double) -> new_esEs17(xwv541, xwv551) 26.56/9.57 new_esEs35(xwv540, xwv550, app(ty_[], cdg)) -> new_esEs12(xwv540, xwv550, cdg) 26.56/9.57 new_mkBalBranch6MkBalBranch11(xwv340, xwv341, xwv344, xwv3400, xwv3401, xwv3402, xwv3403, Branch(xwv34040, xwv34041, xwv34042, xwv34043, xwv34044), False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xwv34040, xwv34041, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xwv3400, xwv3401, xwv3403, xwv34043, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), xwv340, xwv341, xwv34044, xwv344, app(ty_[], h), ba), app(ty_[], h), ba) 26.56/9.57 new_esEs30(xwv40002, xwv30002, app(app(ty_@2, bcd), bce)) -> new_esEs21(xwv40002, xwv30002, bcd, bce) 26.56/9.57 new_esEs34(xwv541, xwv551, ty_Float) -> new_esEs22(xwv541, xwv551) 26.56/9.57 new_esEs13(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.57 new_gt(xwv202, xwv201) -> new_esEs15(new_compare15(xwv202, xwv201), GT) 26.56/9.57 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.56/9.57 new_compare27(LT, EQ) -> LT 26.56/9.57 new_lt6(xwv113, xwv115, ty_Char) -> new_lt8(xwv113, xwv115) 26.56/9.57 new_ltEs7(xwv54, xwv55) -> new_fsEs(new_compare16(xwv54, xwv55)) 26.56/9.57 new_compare27(LT, GT) -> LT 26.56/9.57 new_esEs32(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.56/9.57 new_esEs7(xwv4002, xwv3002, ty_Char) -> new_esEs20(xwv4002, xwv3002) 26.56/9.57 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) 26.56/9.57 new_esEs28(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.56/9.57 new_esEs20(Char(xwv40000), Char(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 26.56/9.57 new_esEs40(xwv15, xwv21, ty_Char) -> new_esEs20(xwv15, xwv21) 26.56/9.57 new_primMulNat0(Succ(xwv400000), Succ(xwv300100)) -> new_primPlusNat1(new_primMulNat0(xwv400000, Succ(xwv300100)), xwv300100) 26.56/9.57 new_compare111(xwv170, xwv171, xwv172, xwv173, False, cc, cd) -> GT 26.56/9.57 new_esEs39(xwv65, xwv68, ty_Ordering) -> new_esEs15(xwv65, xwv68) 26.56/9.57 new_ltEs5(Left(xwv540), Left(xwv550), ty_Int, eec) -> new_ltEs6(xwv540, xwv550) 26.56/9.57 new_esEs10(xwv4000, xwv3000, app(ty_Maybe, fcf)) -> new_esEs16(xwv4000, xwv3000, fcf) 26.56/9.57 new_ltEs19(xwv541, xwv551, ty_Double) -> new_ltEs11(xwv541, xwv551) 26.56/9.57 new_compare0(xwv400, xwv300, ty_@0) -> new_compare6(xwv400, xwv300) 26.56/9.57 new_ltEs5(Left(xwv540), Right(xwv550), eeb, eec) -> True 26.56/9.57 new_esEs7(xwv4002, xwv3002, ty_Int) -> new_esEs18(xwv4002, xwv3002) 26.56/9.57 new_esEs34(xwv541, xwv551, ty_Ordering) -> new_esEs15(xwv541, xwv551) 26.56/9.57 new_lt19(xwv540, xwv550, app(ty_Ratio, cad)) -> new_lt18(xwv540, xwv550, cad) 26.56/9.57 new_esEs40(xwv15, xwv21, ty_Int) -> new_esEs18(xwv15, xwv21) 26.56/9.57 new_ltEs20(xwv542, xwv552, ty_@0) -> new_ltEs4(xwv542, xwv552) 26.56/9.57 new_lt20(xwv541, xwv551, app(ty_[], cce)) -> new_lt13(xwv541, xwv551, cce) 26.56/9.57 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_sizeFM0(Branch(xwv340, xwv341, xwv342, xwv343, xwv344), h, ba), new_sizeFM0(Branch(xwv330, xwv331, xwv332, xwv333, xwv334), h, ba)), h, ba) 26.56/9.57 new_esEs9(xwv4000, xwv3000, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs25(xwv4000, xwv3000, gd, ge, gf) 26.56/9.57 new_ltEs23(xwv67, xwv70, app(app(ty_Either, dff), dfg)) -> new_ltEs5(xwv67, xwv70, dff, dfg) 26.56/9.57 new_compare18(Nothing, Just(xwv3000), dbf) -> LT 26.56/9.57 new_primEqNat0(Succ(xwv400000), Succ(xwv300000)) -> new_primEqNat0(xwv400000, xwv300000) 26.56/9.57 new_ltEs22(xwv76, xwv77, app(ty_Maybe, dab)) -> new_ltEs10(xwv76, xwv77, dab) 26.56/9.57 new_ltEs21(xwv83, xwv84, ty_Char) -> new_ltEs7(xwv83, xwv84) 26.56/9.58 new_delFromFM0(Branch(:(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), :(xwv400, xwv401), h, ba) -> new_delFromFM21(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, xwv400, xwv401, new_primCompAux1(xwv400, xwv300, xwv401, xwv301, h), h, ba) 26.56/9.58 new_not(True) -> False 26.56/9.58 new_lt18(xwv113, xwv115, bac) -> new_esEs15(new_compare29(xwv113, xwv115, bac), LT) 26.56/9.58 new_esEs4(xwv4001, xwv3001, ty_Bool) -> new_esEs14(xwv4001, xwv3001) 26.56/9.58 new_esEs35(xwv540, xwv550, app(app(ty_@2, cdd), cde)) -> new_esEs21(xwv540, xwv550, cdd, cde) 26.56/9.58 new_delFromFM0(Branch([], xwv31, xwv32, xwv33, xwv34), [], h, ba) -> new_delFromFM14(xwv31, xwv32, xwv33, xwv34, EQ, h, ba) 26.56/9.58 new_esEs29(xwv113, xwv115, ty_Ordering) -> new_esEs15(xwv113, xwv115) 26.56/9.58 new_esEs38(xwv66, xwv69, app(ty_Ratio, dhb)) -> new_esEs23(xwv66, xwv69, dhb) 26.56/9.58 new_ltEs10(Just(xwv540), Just(xwv550), ty_Bool) -> new_ltEs8(xwv540, xwv550) 26.56/9.58 new_esEs4(xwv4001, xwv3001, app(ty_[], ead)) -> new_esEs12(xwv4001, xwv3001, ead) 26.56/9.58 new_ltEs16(xwv54, xwv55) -> new_fsEs(new_compare8(xwv54, xwv55)) 26.56/9.58 new_esEs30(xwv40002, xwv30002, ty_Bool) -> new_esEs14(xwv40002, xwv30002) 26.56/9.58 new_ltEs19(xwv541, xwv551, ty_Bool) -> new_ltEs8(xwv541, xwv551) 26.56/9.58 new_esEs30(xwv40002, xwv30002, ty_Int) -> new_esEs18(xwv40002, xwv30002) 26.56/9.58 new_compare11(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, False, xwv192, dce, dcf, dcg) -> new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, xwv192, dce, dcf, dcg) 26.56/9.58 new_primCompAux00(xwv32, xwv33, EQ, ty_Bool) -> new_compare9(xwv32, xwv33) 26.56/9.58 new_lt20(xwv541, xwv551, app(app(app(ty_@3, ccf), ccg), cch)) -> new_lt15(xwv541, xwv551, ccf, ccg, cch) 26.56/9.58 new_ltEs18(xwv114, xwv116, ty_@0) -> new_ltEs4(xwv114, xwv116) 26.56/9.58 new_esEs28(xwv40000, xwv30000, app(app(ty_@2, fbg), fbh)) -> new_esEs21(xwv40000, xwv30000, fbg, fbh) 26.56/9.58 new_ltEs24(xwv54, xwv55, ty_Integer) -> new_ltEs16(xwv54, xwv55) 26.56/9.58 new_compare28(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), ce, cf, cg) -> new_compare211(xwv4000, xwv4001, xwv4002, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs9(xwv4000, xwv3000, ce), new_asAs(new_esEs8(xwv4001, xwv3001, cf), new_esEs7(xwv4002, xwv3002, cg))), ce, cf, cg) 26.56/9.58 new_esEs37(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.58 new_primEqNat0(Succ(xwv400000), Zero) -> False 26.56/9.58 new_primEqNat0(Zero, Succ(xwv300000)) -> False 26.56/9.58 new_ltEs20(xwv542, xwv552, ty_Int) -> new_ltEs6(xwv542, xwv552) 26.56/9.58 new_esEs10(xwv4000, xwv3000, app(app(ty_@2, fda), fdb)) -> new_esEs21(xwv4000, xwv3000, fda, fdb) 26.56/9.58 new_primPlusInt0(xwv3440, Neg(xwv3450)) -> new_primMinusNat0(xwv3440, xwv3450) 26.56/9.58 new_esEs39(xwv65, xwv68, ty_Double) -> new_esEs17(xwv65, xwv68) 26.56/9.58 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Float, eaf) -> new_esEs22(xwv40000, xwv30000) 26.56/9.58 new_ltEs5(Left(xwv540), Left(xwv550), ty_@0, eec) -> new_ltEs4(xwv540, xwv550) 26.56/9.58 new_esEs30(xwv40002, xwv30002, ty_Char) -> new_esEs20(xwv40002, xwv30002) 26.56/9.58 new_esEs40(xwv15, xwv21, app(ty_[], gah)) -> new_esEs12(xwv15, xwv21, gah) 26.56/9.58 new_esEs14(False, True) -> False 26.56/9.58 new_esEs14(True, False) -> False 26.56/9.58 new_glueBal(Branch(xwv330, xwv331, xwv332, xwv333, xwv334), EmptyFM, h, ba) -> Branch(xwv330, xwv331, xwv332, xwv333, xwv334) 26.56/9.58 new_ltEs5(Left(xwv540), Left(xwv550), app(app(ty_Either, ege), egf), eec) -> new_ltEs5(xwv540, xwv550, ege, egf) 26.56/9.58 new_esEs29(xwv113, xwv115, ty_Double) -> new_esEs17(xwv113, xwv115) 26.56/9.58 new_ltEs14(EQ, EQ) -> True 26.56/9.58 new_ltEs10(Nothing, Just(xwv550), edh) -> True 26.56/9.58 new_esEs13(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.56/9.58 new_ltEs10(Just(xwv540), Just(xwv550), ty_Double) -> new_ltEs11(xwv540, xwv550) 26.56/9.58 new_ltEs21(xwv83, xwv84, ty_Double) -> new_ltEs11(xwv83, xwv84) 26.56/9.58 new_deleteMin0(xwv340, xwv341, xwv342, EmptyFM, xwv344, h, ba) -> xwv344 26.56/9.58 new_primCmpInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> GT 26.56/9.58 new_esEs40(xwv15, xwv21, app(app(ty_@2, gab), gac)) -> new_esEs21(xwv15, xwv21, gab, gac) 26.56/9.58 new_esEs6(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.56/9.58 new_esEs10(xwv4000, xwv3000, app(ty_[], fdg)) -> new_esEs12(xwv4000, xwv3000, fdg) 26.56/9.58 new_primPlusInt(Pos(xwv4620), xwv461, xwv458, xwv460, be, bf) -> new_primPlusInt0(xwv4620, new_sizeFM(xwv461, be, bf)) 26.56/9.58 new_mkBranch(xwv457, xwv458, xwv459, xwv460, xwv461, be, bf) -> Branch(xwv458, xwv459, new_primPlusInt(new_primPlusInt0(Succ(Zero), new_sizeFM(xwv460, be, bf)), xwv461, xwv458, xwv460, be, bf), xwv460, xwv461) 26.56/9.58 new_lt23(xwv66, xwv69, ty_Integer) -> new_lt17(xwv66, xwv69) 26.56/9.58 new_delFromFM15(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, EQ, bc, bd) -> new_delFromFM16(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, bc, bd) 26.56/9.58 new_esEs35(xwv540, xwv550, ty_Bool) -> new_esEs14(xwv540, xwv550) 26.56/9.58 new_esEs5(xwv4000, xwv3000, app(app(ty_Either, eae), eaf)) -> new_esEs19(xwv4000, xwv3000, eae, eaf) 26.56/9.58 new_primCompAux00(xwv32, xwv33, GT, ffb) -> GT 26.56/9.58 new_ltEs10(Just(xwv540), Just(xwv550), ty_Char) -> new_ltEs7(xwv540, xwv550) 26.56/9.58 new_compare27(EQ, GT) -> LT 26.56/9.58 new_esEs4(xwv4001, xwv3001, app(app(ty_@2, dhf), dhg)) -> new_esEs21(xwv4001, xwv3001, dhf, dhg) 26.56/9.58 new_primCmpNat0(Zero, Succ(xwv30000)) -> LT 26.56/9.58 new_sizeFM(EmptyFM, be, bf) -> Pos(Zero) 26.56/9.58 new_lt20(xwv541, xwv551, ty_@0) -> new_lt12(xwv541, xwv551) 26.56/9.58 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 26.56/9.58 new_esEs19(Right(xwv40000), Right(xwv30000), eae, app(ty_[], edf)) -> new_esEs12(xwv40000, xwv30000, edf) 26.56/9.58 new_primCompAux00(xwv32, xwv33, EQ, app(ty_[], fff)) -> new_compare26(xwv32, xwv33, fff) 26.56/9.58 new_esEs6(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.56/9.58 new_esEs9(xwv4000, xwv3000, app(ty_[], gg)) -> new_esEs12(xwv4000, xwv3000, gg) 26.56/9.58 new_ltEs19(xwv541, xwv551, ty_Char) -> new_ltEs7(xwv541, xwv551) 26.56/9.58 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Ordering, eaf) -> new_esEs15(xwv40000, xwv30000) 26.56/9.58 new_esEs15(GT, GT) -> True 26.56/9.58 new_esEs6(xwv4000, xwv3000, app(app(app(ty_@3, fhc), fhd), fhe)) -> new_esEs25(xwv4000, xwv3000, fhc, fhd, fhe) 26.56/9.58 new_ltEs9(@2(xwv540, xwv541), @2(xwv550, xwv551), bfg, bfh) -> new_pePe(new_lt19(xwv540, xwv550, bfg), new_asAs(new_esEs33(xwv540, xwv550, bfg), new_ltEs19(xwv541, xwv551, bfh))) 26.56/9.58 new_esEs10(xwv4000, xwv3000, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs25(xwv4000, xwv3000, fdd, fde, fdf) 26.56/9.58 new_esEs11(xwv4000, xwv3000, app(ty_Ratio, fee)) -> new_esEs23(xwv4000, xwv3000, fee) 26.56/9.58 new_esEs19(Right(xwv40000), Right(xwv30000), eae, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.56/9.58 new_ltEs19(xwv541, xwv551, ty_Ordering) -> new_ltEs14(xwv541, xwv551) 26.56/9.58 new_esEs28(xwv40000, xwv30000, app(ty_Maybe, fbd)) -> new_esEs16(xwv40000, xwv30000, fbd) 26.56/9.58 new_esEs8(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 26.56/9.58 new_esEs7(xwv4002, xwv3002, app(ty_Maybe, da)) -> new_esEs16(xwv4002, xwv3002, da) 26.56/9.58 new_esEs38(xwv66, xwv69, app(ty_[], dgd)) -> new_esEs12(xwv66, xwv69, dgd) 26.56/9.58 new_lt21(xwv540, xwv550, ty_Int) -> new_lt7(xwv540, xwv550) 26.56/9.58 new_esEs31(xwv40001, xwv30001, app(app(ty_Either, bdd), bde)) -> new_esEs19(xwv40001, xwv30001, bdd, bde) 26.56/9.58 new_ltEs14(EQ, GT) -> True 26.56/9.58 new_ltEs6(xwv54, xwv55) -> new_fsEs(new_compare15(xwv54, xwv55)) 26.56/9.58 new_delFromFM13(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, LT, h, ba) -> new_mkBalBranch(:(xwv300, xwv301), xwv31, new_delFromFM0(xwv33, [], h, ba), xwv34, h, ba) 26.56/9.58 new_esEs13(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.56/9.58 new_compare0(xwv400, xwv300, app(app(ty_Either, dbh), dca)) -> new_compare7(xwv400, xwv300, dbh, dca) 26.56/9.58 new_primEqInt(Neg(Succ(xwv400000)), Neg(Succ(xwv300000))) -> new_primEqNat0(xwv400000, xwv300000) 26.56/9.58 new_compare15(xwv400, xwv300) -> new_primCmpInt(xwv400, xwv300) 26.56/9.58 new_primCmpInt(Neg(Zero), Pos(Succ(xwv30000))) -> LT 26.56/9.58 new_lt22(xwv65, xwv68, app(app(app(ty_@3, dea), deb), dec)) -> new_lt15(xwv65, xwv68, dea, deb, dec) 26.56/9.58 new_lt23(xwv66, xwv69, app(ty_[], dgd)) -> new_lt13(xwv66, xwv69, dgd) 26.56/9.58 new_primMulInt(Pos(xwv40000), Pos(xwv30010)) -> Pos(new_primMulNat0(xwv40000, xwv30010)) 26.56/9.58 new_ltEs8(True, False) -> False 26.56/9.58 new_ltEs14(LT, GT) -> True 26.56/9.58 new_ltEs14(GT, GT) -> True 26.56/9.58 new_ltEs22(xwv76, xwv77, ty_Int) -> new_ltEs6(xwv76, xwv77) 26.56/9.58 new_esEs40(xwv15, xwv21, ty_Bool) -> new_esEs14(xwv15, xwv21) 26.56/9.58 new_esEs32(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.58 new_esEs11(xwv4000, xwv3000, app(app(ty_Either, fea), feb)) -> new_esEs19(xwv4000, xwv3000, fea, feb) 26.56/9.58 new_esEs19(Right(xwv40000), Right(xwv30000), eae, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.56/9.58 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(app(ty_@3, eca), ecb), ecc), eaf) -> new_esEs25(xwv40000, xwv30000, eca, ecb, ecc) 26.56/9.58 new_esEs28(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.56/9.58 new_compare10(xwv141, xwv142, True, bb) -> LT 26.56/9.58 new_ltEs22(xwv76, xwv77, ty_Integer) -> new_ltEs16(xwv76, xwv77) 26.56/9.58 new_mkBalBranch6MkBalBranch3(xwv340, xwv341, xwv344, xwv340, False, h, ba) -> new_mkBranch(Succ(Zero), xwv340, xwv341, xwv340, xwv344, app(ty_[], h), ba) 26.56/9.58 new_primMulNat0(Succ(xwv400000), Zero) -> Zero 26.56/9.58 new_primMulNat0(Zero, Succ(xwv300100)) -> Zero 26.56/9.58 new_ltEs8(False, False) -> True 26.56/9.58 new_esEs8(xwv4001, xwv3001, ty_Float) -> new_esEs22(xwv4001, xwv3001) 26.56/9.58 new_lt6(xwv113, xwv115, app(app(ty_@2, hb), hc)) -> new_lt9(xwv113, xwv115, hb, hc) 26.56/9.58 new_primCompAux00(xwv32, xwv33, EQ, ty_Integer) -> new_compare8(xwv32, xwv33) 26.56/9.58 new_esEs6(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.56/9.58 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.58 new_primPlusNat1(Succ(xwv2220), xwv300100) -> Succ(Succ(new_primPlusNat0(xwv2220, xwv300100))) 26.56/9.58 new_lt23(xwv66, xwv69, ty_Float) -> new_lt11(xwv66, xwv69) 26.56/9.58 new_ltEs19(xwv541, xwv551, ty_Float) -> new_ltEs12(xwv541, xwv551) 26.56/9.58 new_compare0(xwv400, xwv300, ty_Bool) -> new_compare9(xwv400, xwv300) 26.56/9.58 new_ltEs22(xwv76, xwv77, app(app(ty_@2, chh), daa)) -> new_ltEs9(xwv76, xwv77, chh, daa) 26.56/9.58 new_primPlusNat0(Succ(xwv33200), Zero) -> Succ(xwv33200) 26.56/9.58 new_primPlusNat0(Zero, Succ(xwv24200)) -> Succ(xwv24200) 26.56/9.58 new_compare9(True, True) -> EQ 26.56/9.58 new_primPlusNat1(Zero, xwv300100) -> Succ(xwv300100) 26.56/9.58 new_lt23(xwv66, xwv69, ty_Int) -> new_lt7(xwv66, xwv69) 26.56/9.58 new_esEs7(xwv4002, xwv3002, app(app(ty_Either, db), dc)) -> new_esEs19(xwv4002, xwv3002, db, dc) 26.56/9.58 new_ltEs5(Left(xwv540), Left(xwv550), app(app(app(ty_@3, egb), egc), egd), eec) -> new_ltEs15(xwv540, xwv550, egb, egc, egd) 26.56/9.58 new_esEs4(xwv4001, xwv3001, app(ty_Maybe, dhc)) -> new_esEs16(xwv4001, xwv3001, dhc) 26.56/9.58 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) 26.56/9.58 new_ltEs19(xwv541, xwv551, ty_Integer) -> new_ltEs16(xwv541, xwv551) 26.56/9.58 new_esEs8(xwv4001, xwv3001, ty_Integer) -> new_esEs26(xwv4001, xwv3001) 26.56/9.58 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.56/9.58 new_esEs7(xwv4002, xwv3002, app(app(ty_@2, dd), de)) -> new_esEs21(xwv4002, xwv3002, dd, de) 26.56/9.58 new_lt6(xwv113, xwv115, ty_Ordering) -> new_lt14(xwv113, xwv115) 26.56/9.58 new_esEs38(xwv66, xwv69, ty_Char) -> new_esEs20(xwv66, xwv69) 26.56/9.58 new_esEs4(xwv4001, xwv3001, ty_Char) -> new_esEs20(xwv4001, xwv3001) 26.56/9.58 new_esEs9(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.56/9.58 new_glueBal2Mid_key200(xwv362, xwv363, xwv364, xwv365, xwv366, xwv367, xwv368, xwv369, xwv370, xwv371, xwv372, xwv373, xwv374, Branch(xwv3750, xwv3751, xwv3752, xwv3753, xwv3754), xwv376, dbb, dbc) -> new_glueBal2Mid_key200(xwv362, xwv363, xwv364, xwv365, xwv366, xwv367, xwv368, xwv369, xwv370, xwv371, xwv3750, xwv3751, xwv3752, xwv3753, xwv3754, dbb, dbc) 26.56/9.58 new_primPlusInt0(xwv3440, Pos(xwv3450)) -> Pos(new_primPlusNat0(xwv3440, xwv3450)) 26.56/9.58 new_lt6(xwv113, xwv115, app(ty_Ratio, bac)) -> new_lt18(xwv113, xwv115, bac) 26.56/9.58 new_esEs16(Just(xwv40000), Just(xwv30000), ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.56/9.58 new_esEs40(xwv15, xwv21, app(ty_Maybe, fhg)) -> new_esEs16(xwv15, xwv21, fhg) 26.56/9.58 new_esEs34(xwv541, xwv551, ty_Integer) -> new_esEs26(xwv541, xwv551) 26.56/9.58 new_ltEs4(xwv54, xwv55) -> new_fsEs(new_compare6(xwv54, xwv55)) 26.56/9.58 new_esEs33(xwv540, xwv550, app(app(ty_Either, cab), cac)) -> new_esEs19(xwv540, xwv550, cab, cac) 26.56/9.58 new_esEs31(xwv40001, xwv30001, ty_Double) -> new_esEs17(xwv40001, xwv30001) 26.56/9.58 new_delFromFM16(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, bc, bd) -> new_delFromFM00(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_esEs40(xwv15, xwv21, bc), new_esEs12(xwv16, xwv22, bc), bc, bd) 26.56/9.58 new_esEs30(xwv40002, xwv30002, app(ty_Maybe, bca)) -> new_esEs16(xwv40002, xwv30002, bca) 26.56/9.58 new_ltEs5(Right(xwv540), Right(xwv550), eeb, ty_Float) -> new_ltEs12(xwv540, xwv550) 26.56/9.58 new_lt21(xwv540, xwv550, app(ty_Ratio, cee)) -> new_lt18(xwv540, xwv550, cee) 26.56/9.58 new_ltEs20(xwv542, xwv552, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_ltEs15(xwv542, xwv552, cbd, cbe, cbf) 26.56/9.58 new_compare212(xwv113, xwv114, xwv115, xwv116, False, gh, ha) -> new_compare110(xwv113, xwv114, xwv115, xwv116, new_lt6(xwv113, xwv115, gh), new_asAs(new_esEs29(xwv113, xwv115, gh), new_ltEs18(xwv114, xwv116, ha)), gh, ha) 26.56/9.58 new_compare0(xwv400, xwv300, ty_Char) -> new_compare16(xwv400, xwv300) 26.56/9.58 new_esEs27(xwv40001, xwv30001, ty_Ordering) -> new_esEs15(xwv40001, xwv30001) 26.56/9.58 new_esEs32(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.56/9.58 new_ltEs5(Right(xwv540), Right(xwv550), eeb, ty_Integer) -> new_ltEs16(xwv540, xwv550) 26.56/9.58 new_lt20(xwv541, xwv551, app(ty_Maybe, ccd)) -> new_lt10(xwv541, xwv551, ccd) 26.56/9.58 new_esEs38(xwv66, xwv69, ty_Int) -> new_esEs18(xwv66, xwv69) 26.56/9.58 new_esEs13(xwv40000, xwv30000, app(ty_Ratio, efa)) -> new_esEs23(xwv40000, xwv30000, efa) 26.56/9.58 new_lt23(xwv66, xwv69, ty_@0) -> new_lt12(xwv66, xwv69) 26.56/9.58 new_esEs10(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.56/9.58 new_esEs8(xwv4001, xwv3001, app(app(ty_Either, ed), ee)) -> new_esEs19(xwv4001, xwv3001, ed, ee) 26.56/9.58 new_lt19(xwv540, xwv550, app(app(ty_@2, bhc), bhd)) -> new_lt9(xwv540, xwv550, bhc, bhd) 26.56/9.58 new_esEs38(xwv66, xwv69, ty_Bool) -> new_esEs14(xwv66, xwv69) 26.56/9.58 new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_@2, ffc), ffd)) -> new_compare17(xwv32, xwv33, ffc, ffd) 26.56/9.58 new_delFromFM00(xwv97, xwv98, xwv99, xwv100, xwv101, xwv102, xwv103, xwv104, True, False, bg, bh) -> error([]) 26.56/9.58 new_ltEs21(xwv83, xwv84, ty_Float) -> new_ltEs12(xwv83, xwv84) 26.56/9.58 new_esEs13(xwv40000, xwv30000, app(ty_[], efe)) -> new_esEs12(xwv40000, xwv30000, efe) 26.56/9.58 new_esEs32(xwv40000, xwv30000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs25(xwv40000, xwv30000, bfc, bfd, bfe) 26.56/9.58 new_ltEs8(False, True) -> True 26.56/9.58 new_mkBalBranch6MkBalBranch11(xwv340, xwv341, xwv344, xwv3400, xwv3401, xwv3402, xwv3403, EmptyFM, False, h, ba) -> error([]) 26.56/9.58 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(app(ty_@3, chb), chc), chd)) -> new_esEs25(xwv40000, xwv30000, chb, chc, chd) 26.56/9.58 new_lt22(xwv65, xwv68, ty_Ordering) -> new_lt14(xwv65, xwv68) 26.56/9.58 new_compare24(xwv76, xwv77, False, chf, chg) -> new_compare14(xwv76, xwv77, new_ltEs22(xwv76, xwv77, chf), chf, chg) 26.56/9.58 new_esEs9(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.56/9.58 new_delFromFM15(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, GT, bc, bd) -> new_delFromFM16(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, bc, bd) 26.56/9.58 new_esEs27(xwv40001, xwv30001, ty_Bool) -> new_esEs14(xwv40001, xwv30001) 26.56/9.58 new_compare26([], :(xwv3000, xwv3001), dbg) -> LT 26.56/9.58 new_lt19(xwv540, xwv550, ty_Ordering) -> new_lt14(xwv540, xwv550) 26.56/9.58 new_esEs11(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.56/9.58 new_lt22(xwv65, xwv68, ty_Bool) -> new_lt4(xwv65, xwv68) 26.56/9.58 new_ltEs23(xwv67, xwv70, ty_Double) -> new_ltEs11(xwv67, xwv70) 26.56/9.58 new_esEs11(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.56/9.58 new_esEs40(xwv15, xwv21, ty_@0) -> new_esEs24(xwv15, xwv21) 26.56/9.58 new_mkBalBranch6MkBalBranch01(xwv340, xwv341, xwv3440, xwv3441, xwv3442, Branch(xwv34430, xwv34431, xwv34432, xwv34433, xwv34434), xwv3444, xwv340, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xwv34430, xwv34431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), xwv340, xwv341, xwv340, xwv34433, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xwv3440, xwv3441, xwv34434, xwv3444, app(ty_[], h), ba), app(ty_[], h), ba) 26.56/9.58 new_compare7(Left(xwv4000), Right(xwv3000), dbh, dca) -> LT 26.56/9.58 new_esEs40(xwv15, xwv21, app(app(app(ty_@3, gae), gaf), gag)) -> new_esEs25(xwv15, xwv21, gae, gaf, gag) 26.56/9.58 new_compare13(Double(xwv4000, Pos(xwv40010)), Double(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.56/9.58 new_compare13(Double(xwv4000, Neg(xwv40010)), Double(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.56/9.58 new_esEs36(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.56/9.58 new_esEs10(xwv4000, xwv3000, app(ty_Ratio, fdc)) -> new_esEs23(xwv4000, xwv3000, fdc) 26.56/9.58 new_esEs15(LT, LT) -> True 26.56/9.58 new_esEs32(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.56/9.58 new_esEs11(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.56/9.58 new_ltEs10(Just(xwv540), Just(xwv550), app(app(ty_@2, gbc), gbd)) -> new_ltEs9(xwv540, xwv550, gbc, gbd) 26.56/9.58 new_lt6(xwv113, xwv115, app(app(app(ty_@3, hf), hg), hh)) -> new_lt15(xwv113, xwv115, hf, hg, hh) 26.56/9.58 new_esEs4(xwv4001, xwv3001, ty_Integer) -> new_esEs26(xwv4001, xwv3001) 26.56/9.58 new_lt20(xwv541, xwv551, ty_Float) -> new_lt11(xwv541, xwv551) 26.56/9.58 new_esEs7(xwv4002, xwv3002, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs25(xwv4002, xwv3002, dg, dh, ea) 26.56/9.58 new_esEs33(xwv540, xwv550, ty_Bool) -> new_esEs14(xwv540, xwv550) 26.56/9.58 new_ltEs5(Right(xwv540), Right(xwv550), eeb, app(ty_[], ehc)) -> new_ltEs13(xwv540, xwv550, ehc) 26.56/9.58 new_esEs34(xwv541, xwv551, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs25(xwv541, xwv551, ccf, ccg, cch) 26.56/9.58 new_lt22(xwv65, xwv68, app(ty_[], ddh)) -> new_lt13(xwv65, xwv68, ddh) 26.56/9.58 new_lt19(xwv540, xwv550, ty_Integer) -> new_lt17(xwv540, xwv550) 26.56/9.58 new_delFromFM13(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, GT, h, ba) -> new_delFromFM17(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, h, ba) 26.56/9.58 new_esEs31(xwv40001, xwv30001, app(ty_Ratio, bdh)) -> new_esEs23(xwv40001, xwv30001, bdh) 26.56/9.58 new_lt23(xwv66, xwv69, app(app(app(ty_@3, dge), dgf), dgg)) -> new_lt15(xwv66, xwv69, dge, dgf, dgg) 26.56/9.58 new_esEs32(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.56/9.58 new_lt22(xwv65, xwv68, ty_@0) -> new_lt12(xwv65, xwv68) 26.56/9.58 new_esEs19(Right(xwv40000), Right(xwv30000), eae, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.58 new_compare111(xwv170, xwv171, xwv172, xwv173, True, cc, cd) -> LT 26.56/9.58 new_esEs5(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.56/9.58 new_glueBal2Mid_elt200(xwv378, xwv379, xwv380, xwv381, xwv382, xwv383, xwv384, xwv385, xwv386, xwv387, xwv388, xwv389, xwv390, EmptyFM, xwv392, gcf, gcg) -> xwv389 26.56/9.58 new_lt9(xwv113, xwv115, hb, hc) -> new_esEs15(new_compare17(xwv113, xwv115, hb, hc), LT) 26.56/9.58 new_esEs35(xwv540, xwv550, app(ty_Ratio, cee)) -> new_esEs23(xwv540, xwv550, cee) 26.56/9.58 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_Ratio, egg), eec) -> new_ltEs17(xwv540, xwv550, egg) 26.56/9.58 new_ltEs5(Right(xwv540), Left(xwv550), eeb, eec) -> False 26.56/9.58 new_delFromFM15(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, LT, bc, bd) -> new_mkBalBranch(:(xwv15, xwv16), xwv17, new_delFromFM0(xwv19, :(xwv21, xwv22), bc, bd), xwv20, bc, bd) 26.56/9.58 new_esEs33(xwv540, xwv550, app(ty_Maybe, bhe)) -> new_esEs16(xwv540, xwv550, bhe) 26.56/9.58 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.56/9.58 new_esEs11(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.56/9.58 new_esEs9(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.56/9.58 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 26.56/9.58 new_esEs7(xwv4002, xwv3002, ty_@0) -> new_esEs24(xwv4002, xwv3002) 26.56/9.58 new_lt21(xwv540, xwv550, ty_Char) -> new_lt8(xwv540, xwv550) 26.56/9.58 new_esEs34(xwv541, xwv551, ty_@0) -> new_esEs24(xwv541, xwv551) 26.56/9.58 new_glueBal(EmptyFM, xwv34, h, ba) -> xwv34 26.56/9.58 new_compare24(xwv76, xwv77, True, chf, chg) -> EQ 26.56/9.58 new_esEs39(xwv65, xwv68, app(app(app(ty_@3, dea), deb), dec)) -> new_esEs25(xwv65, xwv68, dea, deb, dec) 26.56/9.58 new_ltEs8(True, True) -> True 26.56/9.58 new_primCmpInt(Pos(Succ(xwv40000)), Pos(xwv3000)) -> new_primCmpNat0(Succ(xwv40000), xwv3000) 26.56/9.58 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_Maybe, efh), eec) -> new_ltEs10(xwv540, xwv550, efh) 26.56/9.58 new_esEs39(xwv65, xwv68, app(app(ty_Either, ded), dee)) -> new_esEs19(xwv65, xwv68, ded, dee) 26.56/9.58 new_lt7(xwv113, xwv115) -> new_esEs15(new_compare15(xwv113, xwv115), LT) 26.56/9.58 new_lt15(xwv113, xwv115, hf, hg, hh) -> new_esEs15(new_compare28(xwv113, xwv115, hf, hg, hh), LT) 26.56/9.58 new_lt19(xwv540, xwv550, ty_Char) -> new_lt8(xwv540, xwv550) 26.56/9.58 new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_Either, fgb), fgc)) -> new_compare7(xwv32, xwv33, fgb, fgc) 26.56/9.58 new_esEs35(xwv540, xwv550, ty_Integer) -> new_esEs26(xwv540, xwv550) 26.56/9.58 new_esEs34(xwv541, xwv551, app(app(ty_Either, cda), cdb)) -> new_esEs19(xwv541, xwv551, cda, cdb) 26.56/9.58 new_esEs13(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.56/9.58 new_esEs13(xwv40000, xwv30000, app(app(app(ty_@3, efb), efc), efd)) -> new_esEs25(xwv40000, xwv30000, efb, efc, efd) 26.56/9.58 new_mkBalBranch6MkBalBranch4(xwv340, xwv341, Branch(xwv3440, xwv3441, xwv3442, xwv3443, xwv3444), xwv340, True, h, ba) -> new_mkBalBranch6MkBalBranch01(xwv340, xwv341, xwv3440, xwv3441, xwv3442, xwv3443, xwv3444, xwv340, new_lt7(new_sizeFM0(xwv3443, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xwv3444, h, ba))), h, ba) 26.56/9.58 new_esEs9(xwv4000, xwv3000, app(app(ty_@2, ga), gb)) -> new_esEs21(xwv4000, xwv3000, ga, gb) 26.56/9.58 new_ltEs18(xwv114, xwv116, app(ty_[], bag)) -> new_ltEs13(xwv114, xwv116, bag) 26.56/9.58 new_ltEs24(xwv54, xwv55, app(ty_[], eea)) -> new_ltEs13(xwv54, xwv55, eea) 26.56/9.58 new_esEs40(xwv15, xwv21, app(app(ty_Either, fhh), gaa)) -> new_esEs19(xwv15, xwv21, fhh, gaa) 26.56/9.58 new_ltEs11(xwv54, xwv55) -> new_fsEs(new_compare13(xwv54, xwv55)) 26.56/9.58 new_compare17(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), dbd, dbe) -> new_compare212(xwv4000, xwv4001, xwv3000, xwv3001, new_asAs(new_esEs5(xwv4000, xwv3000, dbd), new_esEs4(xwv4001, xwv3001, dbe)), dbd, dbe) 26.56/9.58 new_esEs31(xwv40001, xwv30001, ty_Char) -> new_esEs20(xwv40001, xwv30001) 26.56/9.58 new_deleteMax0(xwv330, xwv331, xwv332, xwv333, EmptyFM, h, ba) -> xwv333 26.56/9.58 new_lt20(xwv541, xwv551, ty_Ordering) -> new_lt14(xwv541, xwv551) 26.56/9.58 new_delFromFM00(xwv97, xwv98, xwv99, xwv100, xwv101, xwv102, xwv103, xwv104, True, True, bg, bh) -> new_glueBal(xwv101, xwv102, bg, bh) 26.56/9.58 new_compare26(:(xwv4000, xwv4001), [], dbg) -> GT 26.56/9.58 new_esEs27(xwv40001, xwv30001, app(app(ty_@2, fae), faf)) -> new_esEs21(xwv40001, xwv30001, fae, faf) 26.56/9.58 new_glueBal2Mid_key100(xwv425, xwv426, xwv427, xwv428, xwv429, xwv430, xwv431, xwv432, xwv433, xwv434, xwv435, xwv436, xwv437, xwv438, EmptyFM, gba, gbb) -> xwv435 26.56/9.58 new_esEs38(xwv66, xwv69, app(ty_Maybe, dgc)) -> new_esEs16(xwv66, xwv69, dgc) 26.56/9.58 new_lt19(xwv540, xwv550, ty_Int) -> new_lt7(xwv540, xwv550) 26.56/9.58 new_lt20(xwv541, xwv551, ty_Char) -> new_lt8(xwv541, xwv551) 26.56/9.58 new_esEs35(xwv540, xwv550, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs25(xwv540, xwv550, cdh, cea, ceb) 26.56/9.58 new_esEs35(xwv540, xwv550, ty_@0) -> new_esEs24(xwv540, xwv550) 26.56/9.58 new_mkBalBranch6MkBalBranch3(xwv340, xwv341, xwv344, EmptyFM, True, h, ba) -> error([]) 26.56/9.58 new_delFromFM13(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, EQ, h, ba) -> new_delFromFM17(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, h, ba) 26.56/9.58 new_compare0(xwv400, xwv300, app(app(ty_@2, dbd), dbe)) -> new_compare17(xwv400, xwv300, dbd, dbe) 26.56/9.58 new_ltEs24(xwv54, xwv55, app(app(ty_@2, bfg), bfh)) -> new_ltEs9(xwv54, xwv55, bfg, bfh) 26.56/9.58 new_lt22(xwv65, xwv68, app(app(ty_Either, ded), dee)) -> new_lt16(xwv65, xwv68, ded, dee) 26.56/9.58 new_compare26([], [], dbg) -> EQ 26.56/9.58 new_lt8(xwv113, xwv115) -> new_esEs15(new_compare16(xwv113, xwv115), LT) 26.56/9.58 new_delFromFM21(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, EQ, bc, bd) -> new_delFromFM22(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, bc, bd) 26.56/9.58 new_lt6(xwv113, xwv115, ty_Bool) -> new_lt4(xwv113, xwv115) 26.56/9.58 new_lt20(xwv541, xwv551, ty_Int) -> new_lt7(xwv541, xwv551) 26.56/9.58 new_ltEs5(Right(xwv540), Right(xwv550), eeb, ty_Double) -> new_ltEs11(xwv540, xwv550) 26.56/9.58 new_esEs14(False, False) -> True 26.56/9.58 new_esEs32(xwv40000, xwv30000, app(ty_Maybe, bee)) -> new_esEs16(xwv40000, xwv30000, bee) 26.56/9.58 new_esEs35(xwv540, xwv550, app(app(ty_Either, cec), ced)) -> new_esEs19(xwv540, xwv550, cec, ced) 26.56/9.58 new_compare0(xwv400, xwv300, app(ty_[], dbg)) -> new_compare26(xwv400, xwv300, dbg) 26.56/9.58 new_esEs36(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.56/9.58 new_lt21(xwv540, xwv550, ty_Bool) -> new_lt4(xwv540, xwv550) 26.56/9.58 new_esEs35(xwv540, xwv550, ty_Int) -> new_esEs18(xwv540, xwv550) 26.56/9.58 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_Maybe, cgd)) -> new_esEs16(xwv40000, xwv30000, cgd) 26.56/9.58 new_lt21(xwv540, xwv550, ty_Float) -> new_lt11(xwv540, xwv550) 26.56/9.58 new_delFromFM22(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, bc, bd) -> new_delFromFM15(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, new_compare26(:(xwv21, xwv22), :(xwv15, xwv16), bc), bc, bd) 26.56/9.58 new_esEs34(xwv541, xwv551, ty_Bool) -> new_esEs14(xwv541, xwv551) 26.56/9.58 new_esEs31(xwv40001, xwv30001, ty_Ordering) -> new_esEs15(xwv40001, xwv30001) 26.56/9.58 new_sizeFM0(Branch(xwv330, xwv331, xwv332, xwv333, xwv334), h, ba) -> xwv332 26.56/9.58 new_lt22(xwv65, xwv68, ty_Char) -> new_lt8(xwv65, xwv68) 26.56/9.58 new_primCompAux00(xwv32, xwv33, EQ, ty_Char) -> new_compare16(xwv32, xwv33) 26.56/9.58 new_esEs11(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.56/9.58 new_esEs15(EQ, EQ) -> True 26.56/9.58 new_esEs35(xwv540, xwv550, ty_Char) -> new_esEs20(xwv540, xwv550) 26.56/9.58 new_esEs13(xwv40000, xwv30000, app(ty_Maybe, eed)) -> new_esEs16(xwv40000, xwv30000, eed) 26.56/9.58 new_sizeFM(Branch(xwv4600, xwv4601, xwv4602, xwv4603, xwv4604), be, bf) -> xwv4602 26.56/9.58 new_esEs10(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.56/9.58 new_fsEs(xwv211) -> new_not(new_esEs15(xwv211, GT)) 26.56/9.58 new_mkBalBranch6MkBalBranch01(xwv340, xwv341, xwv3440, xwv3441, xwv3442, xwv3443, xwv3444, xwv340, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xwv3440, xwv3441, new_mkBranch(Succ(Succ(Succ(Zero))), xwv340, xwv341, xwv340, xwv3443, app(ty_[], h), ba), xwv3444, app(ty_[], h), ba) 26.56/9.58 new_ltEs20(xwv542, xwv552, app(ty_[], cbc)) -> new_ltEs13(xwv542, xwv552, cbc) 26.56/9.58 new_esEs38(xwv66, xwv69, app(app(ty_Either, dgh), dha)) -> new_esEs19(xwv66, xwv69, dgh, dha) 26.56/9.58 new_esEs11(xwv4000, xwv3000, app(ty_Maybe, fdh)) -> new_esEs16(xwv4000, xwv3000, fdh) 26.56/9.58 new_ltEs24(xwv54, xwv55, ty_Double) -> new_ltEs11(xwv54, xwv55) 26.56/9.58 new_lt12(xwv113, xwv115) -> new_esEs15(new_compare6(xwv113, xwv115), LT) 26.56/9.58 new_lt16(xwv113, xwv115, baa, bab) -> new_esEs15(new_compare7(xwv113, xwv115, baa, bab), LT) 26.56/9.58 new_esEs10(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.56/9.58 new_esEs6(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.56/9.58 new_esEs34(xwv541, xwv551, app(ty_Maybe, ccd)) -> new_esEs16(xwv541, xwv551, ccd) 26.56/9.58 new_primPlusNat0(Succ(xwv33200), Succ(xwv24200)) -> Succ(Succ(new_primPlusNat0(xwv33200, xwv24200))) 26.56/9.58 new_ltEs5(Left(xwv540), Left(xwv550), ty_Ordering, eec) -> new_ltEs14(xwv540, xwv550) 26.56/9.58 new_esEs7(xwv4002, xwv3002, app(ty_[], eb)) -> new_esEs12(xwv4002, xwv3002, eb) 26.56/9.58 new_esEs33(xwv540, xwv550, ty_Int) -> new_esEs18(xwv540, xwv550) 26.56/9.58 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_Ratio, ebh), eaf) -> new_esEs23(xwv40000, xwv30000, ebh) 26.56/9.58 new_ltEs10(Just(xwv540), Nothing, edh) -> False 26.56/9.58 new_ltEs10(Nothing, Nothing, edh) -> True 26.56/9.58 new_esEs4(xwv4001, xwv3001, app(app(ty_Either, dhd), dhe)) -> new_esEs19(xwv4001, xwv3001, dhd, dhe) 26.56/9.58 new_esEs4(xwv4001, xwv3001, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs25(xwv4001, xwv3001, eaa, eab, eac) 26.56/9.58 new_mkBalBranch6MkBalBranch5(xwv340, xwv341, xwv344, xwv340, True, h, ba) -> new_mkBranch(Zero, xwv340, xwv341, xwv340, xwv344, app(ty_[], h), ba) 26.56/9.58 new_esEs4(xwv4001, xwv3001, ty_@0) -> new_esEs24(xwv4001, xwv3001) 26.56/9.58 new_ltEs5(Left(xwv540), Left(xwv550), app(app(ty_@2, eff), efg), eec) -> new_ltEs9(xwv540, xwv550, eff, efg) 26.56/9.58 new_esEs13(xwv40000, xwv30000, app(app(ty_Either, eee), eef)) -> new_esEs19(xwv40000, xwv30000, eee, eef) 26.56/9.58 new_esEs28(xwv40000, xwv30000, app(ty_Ratio, fca)) -> new_esEs23(xwv40000, xwv30000, fca) 26.56/9.58 new_esEs19(Right(xwv40000), Right(xwv30000), eae, app(app(ty_@2, ech), eda)) -> new_esEs21(xwv40000, xwv30000, ech, eda) 26.56/9.58 new_lt6(xwv113, xwv115, app(app(ty_Either, baa), bab)) -> new_lt16(xwv113, xwv115, baa, bab) 26.56/9.58 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_Ratio, cha)) -> new_esEs23(xwv40000, xwv30000, cha) 26.56/9.58 new_esEs32(xwv40000, xwv30000, app(ty_Ratio, bfb)) -> new_esEs23(xwv40000, xwv30000, bfb) 26.56/9.58 new_esEs19(Left(xwv40000), Left(xwv30000), ty_@0, eaf) -> new_esEs24(xwv40000, xwv30000) 26.56/9.58 new_compare16(Char(xwv4000), Char(xwv3000)) -> new_primCmpNat0(xwv4000, xwv3000) 26.56/9.58 new_compare18(Nothing, Nothing, dbf) -> EQ 26.56/9.58 new_ltEs22(xwv76, xwv77, ty_Double) -> new_ltEs11(xwv76, xwv77) 26.56/9.58 new_lt21(xwv540, xwv550, app(app(ty_Either, cec), ced)) -> new_lt16(xwv540, xwv550, cec, ced) 26.56/9.58 new_lt19(xwv540, xwv550, ty_Bool) -> new_lt4(xwv540, xwv550) 26.56/9.58 new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, dce, dcf, dcg) -> LT 26.56/9.58 new_ltEs5(Left(xwv540), Left(xwv550), ty_Float, eec) -> new_ltEs12(xwv540, xwv550) 26.56/9.58 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.56/9.58 new_esEs27(xwv40001, xwv30001, ty_Double) -> new_esEs17(xwv40001, xwv30001) 26.56/9.58 new_mkBalBranch6Size_l(xwv340, xwv341, xwv344, xwv340, h, ba) -> new_sizeFM0(xwv340, h, ba) 26.56/9.58 new_esEs5(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.56/9.58 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.56/9.58 new_lt4(xwv113, xwv115) -> new_esEs15(new_compare9(xwv113, xwv115), LT) 26.56/9.58 new_esEs39(xwv65, xwv68, ty_Float) -> new_esEs22(xwv65, xwv68) 26.56/9.58 new_ltEs5(Right(xwv540), Right(xwv550), eeb, app(app(ty_@2, egh), eha)) -> new_ltEs9(xwv540, xwv550, egh, eha) 26.56/9.58 new_esEs31(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.56/9.58 new_esEs5(xwv4000, xwv3000, app(ty_[], ebb)) -> new_esEs12(xwv4000, xwv3000, ebb) 26.56/9.58 new_lt6(xwv113, xwv115, ty_Integer) -> new_lt17(xwv113, xwv115) 26.56/9.58 new_lt20(xwv541, xwv551, app(app(ty_Either, cda), cdb)) -> new_lt16(xwv541, xwv551, cda, cdb) 26.56/9.58 new_esEs38(xwv66, xwv69, ty_Float) -> new_esEs22(xwv66, xwv69) 26.56/9.58 new_ltEs5(Left(xwv540), Left(xwv550), ty_Integer, eec) -> new_ltEs16(xwv540, xwv550) 26.56/9.58 new_primCmpNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primCmpNat0(xwv40000, xwv30000) 26.56/9.58 new_compare13(Double(xwv4000, Neg(xwv40010)), Double(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.56/9.58 new_ltEs23(xwv67, xwv70, app(ty_[], dfb)) -> new_ltEs13(xwv67, xwv70, dfb) 26.56/9.58 new_primMinusNat0(Zero, Succ(xwv34500)) -> Neg(Succ(xwv34500)) 26.56/9.58 new_compare0(xwv400, xwv300, ty_Int) -> new_compare15(xwv400, xwv300) 26.56/9.58 new_esEs38(xwv66, xwv69, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs25(xwv66, xwv69, dge, dgf, dgg) 26.56/9.58 new_esEs39(xwv65, xwv68, ty_@0) -> new_esEs24(xwv65, xwv68) 26.56/9.58 new_delFromFM0(Branch([], xwv31, xwv32, xwv33, xwv34), :(xwv400, xwv401), h, ba) -> new_mkBalBranch([], xwv31, xwv33, new_delFromFM0(xwv34, :(xwv400, xwv401), h, ba), h, ba) 26.56/9.58 new_esEs29(xwv113, xwv115, app(ty_Ratio, bac)) -> new_esEs23(xwv113, xwv115, bac) 26.56/9.58 new_lt19(xwv540, xwv550, ty_Float) -> new_lt11(xwv540, xwv550) 26.56/9.58 new_lt21(xwv540, xwv550, ty_Integer) -> new_lt17(xwv540, xwv550) 26.56/9.58 new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, False, dce, dcf, dcg) -> GT 26.56/9.58 new_esEs40(xwv15, xwv21, ty_Integer) -> new_esEs26(xwv15, xwv21) 26.56/9.58 new_esEs30(xwv40002, xwv30002, app(ty_Ratio, bcf)) -> new_esEs23(xwv40002, xwv30002, bcf) 26.56/9.58 new_compare14(xwv150, xwv151, False, ca, cb) -> GT 26.56/9.58 new_mkBalBranch6MkBalBranch4(xwv340, xwv341, EmptyFM, xwv340, True, h, ba) -> error([]) 26.56/9.58 new_esEs32(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.56/9.58 new_lt20(xwv541, xwv551, ty_Integer) -> new_lt17(xwv541, xwv551) 26.56/9.58 new_ltEs22(xwv76, xwv77, app(ty_[], dac)) -> new_ltEs13(xwv76, xwv77, dac) 26.56/9.58 new_lt17(xwv113, xwv115) -> new_esEs15(new_compare8(xwv113, xwv115), LT) 26.56/9.58 new_esEs33(xwv540, xwv550, ty_Char) -> new_esEs20(xwv540, xwv550) 26.56/9.58 new_delFromFM12(xwv31, xwv32, xwv33, xwv34, h, ba) -> new_glueBal(xwv33, xwv34, h, ba) 26.56/9.58 new_ltEs14(LT, LT) -> True 26.56/9.58 new_esEs19(Left(xwv40000), Right(xwv30000), eae, eaf) -> False 26.56/9.58 new_esEs19(Right(xwv40000), Left(xwv30000), eae, eaf) -> False 26.56/9.58 new_esEs40(xwv15, xwv21, ty_Float) -> new_esEs22(xwv15, xwv21) 26.56/9.58 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.58 new_esEs4(xwv4001, xwv3001, ty_Float) -> new_esEs22(xwv4001, xwv3001) 26.56/9.58 new_esEs32(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.58 new_esEs35(xwv540, xwv550, app(ty_Maybe, cdf)) -> new_esEs16(xwv540, xwv550, cdf) 26.56/9.58 new_esEs6(xwv4000, xwv3000, app(ty_[], fhf)) -> new_esEs12(xwv4000, xwv3000, fhf) 26.56/9.58 new_esEs38(xwv66, xwv69, ty_@0) -> new_esEs24(xwv66, xwv69) 26.56/9.58 new_esEs39(xwv65, xwv68, ty_Integer) -> new_esEs26(xwv65, xwv68) 26.56/9.58 new_sizeFM0(EmptyFM, h, ba) -> Pos(Zero) 26.56/9.58 new_esEs33(xwv540, xwv550, ty_Ordering) -> new_esEs15(xwv540, xwv550) 26.56/9.58 new_primPlusInt1(xwv3440, Pos(xwv3460)) -> new_primMinusNat0(xwv3460, xwv3440) 26.56/9.58 new_compare9(False, True) -> LT 26.56/9.58 new_lt19(xwv540, xwv550, app(app(ty_Either, cab), cac)) -> new_lt16(xwv540, xwv550, cab, cac) 26.56/9.58 new_esEs10(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.56/9.58 new_esEs29(xwv113, xwv115, app(ty_Maybe, hd)) -> new_esEs16(xwv113, xwv115, hd) 26.56/9.58 new_primCmpInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> LT 26.56/9.58 new_esEs29(xwv113, xwv115, app(ty_[], he)) -> new_esEs12(xwv113, xwv115, he) 26.56/9.58 new_primCompAux00(xwv32, xwv33, EQ, ty_Double) -> new_compare13(xwv32, xwv33) 26.56/9.58 new_lt22(xwv65, xwv68, ty_Double) -> new_lt5(xwv65, xwv68) 26.56/9.58 new_mkBalBranch6Size_r(xwv340, xwv341, xwv344, xwv340, h, ba) -> new_sizeFM0(xwv344, h, ba) 26.56/9.58 new_compare27(GT, EQ) -> GT 26.56/9.58 new_ltEs18(xwv114, xwv116, ty_Ordering) -> new_ltEs14(xwv114, xwv116) 26.56/9.58 new_esEs7(xwv4002, xwv3002, ty_Float) -> new_esEs22(xwv4002, xwv3002) 26.56/9.58 new_esEs40(xwv15, xwv21, ty_Double) -> new_esEs17(xwv15, xwv21) 26.56/9.58 new_compare9(False, False) -> EQ 26.56/9.58 new_esEs19(Right(xwv40000), Right(xwv30000), eae, app(app(app(ty_@3, edc), edd), ede)) -> new_esEs25(xwv40000, xwv30000, edc, edd, ede) 26.56/9.58 new_esEs28(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.56/9.58 new_lt22(xwv65, xwv68, ty_Float) -> new_lt11(xwv65, xwv68) 26.56/9.58 new_esEs7(xwv4002, xwv3002, ty_Double) -> new_esEs17(xwv4002, xwv3002) 26.56/9.58 new_ltEs18(xwv114, xwv116, ty_Float) -> new_ltEs12(xwv114, xwv116) 26.56/9.58 new_esEs8(xwv4001, xwv3001, app(ty_[], fd)) -> new_esEs12(xwv4001, xwv3001, fd) 26.56/9.58 new_lt23(xwv66, xwv69, ty_Char) -> new_lt8(xwv66, xwv69) 26.56/9.58 new_esEs12(:(xwv40000, xwv40001), [], ebb) -> False 26.56/9.58 new_esEs12([], :(xwv30000, xwv30001), ebb) -> False 26.56/9.58 new_compare14(xwv150, xwv151, True, ca, cb) -> LT 26.56/9.58 new_lt20(xwv541, xwv551, app(ty_Ratio, cdc)) -> new_lt18(xwv541, xwv551, cdc) 26.56/9.58 new_primCmpInt(Pos(Zero), Neg(Succ(xwv30000))) -> GT 26.56/9.58 new_esEs17(Double(xwv40000, xwv40001), Double(xwv30000, xwv30001)) -> new_esEs18(new_sr(xwv40000, xwv30001), new_sr(xwv40001, xwv30000)) 26.56/9.58 new_compare210(xwv54, xwv55, False, edg) -> new_compare10(xwv54, xwv55, new_ltEs24(xwv54, xwv55, edg), edg) 26.56/9.58 new_primCmpInt(Neg(Succ(xwv40000)), Neg(xwv3000)) -> new_primCmpNat0(xwv3000, Succ(xwv40000)) 26.56/9.58 new_esEs5(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.56/9.58 new_esEs34(xwv541, xwv551, ty_Char) -> new_esEs20(xwv541, xwv551) 26.56/9.58 new_lt19(xwv540, xwv550, app(app(app(ty_@3, bhg), bhh), caa)) -> new_lt15(xwv540, xwv550, bhg, bhh, caa) 26.56/9.58 new_ltEs5(Left(xwv540), Left(xwv550), ty_Double, eec) -> new_ltEs11(xwv540, xwv550) 26.56/9.58 new_esEs11(xwv4000, xwv3000, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs25(xwv4000, xwv3000, fef, feg, feh) 26.56/9.58 new_compare0(xwv400, xwv300, ty_Ordering) -> new_compare27(xwv400, xwv300) 26.56/9.58 new_esEs7(xwv4002, xwv3002, ty_Ordering) -> new_esEs15(xwv4002, xwv3002) 26.56/9.58 new_esEs38(xwv66, xwv69, ty_Integer) -> new_esEs26(xwv66, xwv69) 26.56/9.58 new_compare0(xwv400, xwv300, ty_Double) -> new_compare13(xwv400, xwv300) 26.56/9.58 new_esEs39(xwv65, xwv68, app(ty_Maybe, ddg)) -> new_esEs16(xwv65, xwv68, ddg) 26.56/9.58 new_lt20(xwv541, xwv551, ty_Bool) -> new_lt4(xwv541, xwv551) 26.56/9.58 new_esEs11(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.56/9.58 new_primEqInt(Pos(Succ(xwv400000)), Pos(Zero)) -> False 26.56/9.58 new_primEqInt(Pos(Zero), Pos(Succ(xwv300000))) -> False 26.56/9.58 new_compare110(xwv170, xwv171, xwv172, xwv173, False, xwv175, cc, cd) -> new_compare111(xwv170, xwv171, xwv172, xwv173, xwv175, cc, cd) 26.56/9.58 new_esEs34(xwv541, xwv551, ty_Int) -> new_esEs18(xwv541, xwv551) 26.56/9.58 new_esEs40(xwv15, xwv21, ty_Ordering) -> new_esEs15(xwv15, xwv21) 26.56/9.58 new_compare0(xwv400, xwv300, app(ty_Maybe, dbf)) -> new_compare18(xwv400, xwv300, dbf) 26.56/9.58 new_esEs29(xwv113, xwv115, app(app(ty_@2, hb), hc)) -> new_esEs21(xwv113, xwv115, hb, hc) 26.56/9.58 new_primPlusInt(Neg(xwv4620), xwv461, xwv458, xwv460, be, bf) -> new_primPlusInt1(xwv4620, new_sizeFM(xwv461, be, bf)) 26.56/9.58 new_lt23(xwv66, xwv69, ty_Ordering) -> new_lt14(xwv66, xwv69) 26.56/9.58 new_esEs28(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.56/9.58 new_esEs13(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.56/9.58 new_esEs31(xwv40001, xwv30001, ty_Bool) -> new_esEs14(xwv40001, xwv30001) 26.56/9.58 new_primCompAux00(xwv32, xwv33, EQ, app(ty_Maybe, ffe)) -> new_compare18(xwv32, xwv33, ffe) 26.56/9.58 new_lt5(xwv113, xwv115) -> new_esEs15(new_compare13(xwv113, xwv115), LT) 26.56/9.58 new_ltEs21(xwv83, xwv84, app(ty_[], cfd)) -> new_ltEs13(xwv83, xwv84, cfd) 26.56/9.58 new_ltEs19(xwv541, xwv551, app(ty_Ratio, bhb)) -> new_ltEs17(xwv541, xwv551, bhb) 26.56/9.58 new_lt22(xwv65, xwv68, ty_Integer) -> new_lt17(xwv65, xwv68) 26.56/9.58 new_ltEs20(xwv542, xwv552, ty_Ordering) -> new_ltEs14(xwv542, xwv552) 26.56/9.58 new_mkBalBranch6MkBalBranch11(xwv340, xwv341, xwv344, xwv3400, xwv3401, xwv3402, xwv3403, xwv3404, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xwv3400, xwv3401, xwv3403, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), xwv340, xwv341, xwv3404, xwv344, app(ty_[], h), ba), app(ty_[], h), ba) 26.56/9.58 new_ltEs18(xwv114, xwv116, ty_Integer) -> new_ltEs16(xwv114, xwv116) 26.56/9.58 new_primCmpNat0(Zero, Zero) -> EQ 26.56/9.58 new_mkBalBranch6MkBalBranch01(xwv340, xwv341, xwv3440, xwv3441, xwv3442, EmptyFM, xwv3444, xwv340, False, h, ba) -> error([]) 26.56/9.58 new_lt19(xwv540, xwv550, app(ty_[], bhf)) -> new_lt13(xwv540, xwv550, bhf) 26.56/9.58 new_compare27(EQ, LT) -> GT 26.56/9.58 new_lt6(xwv113, xwv115, ty_Int) -> new_lt7(xwv113, xwv115) 26.56/9.58 new_lt23(xwv66, xwv69, app(app(ty_@2, dga), dgb)) -> new_lt9(xwv66, xwv69, dga, dgb) 26.56/9.58 new_esEs13(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.56/9.58 new_esEs30(xwv40002, xwv30002, ty_Float) -> new_esEs22(xwv40002, xwv30002) 26.56/9.58 new_esEs16(Nothing, Just(xwv30000), cgc) -> False 26.56/9.58 new_esEs16(Just(xwv40000), Nothing, cgc) -> False 26.56/9.58 new_esEs31(xwv40001, xwv30001, app(ty_Maybe, bdc)) -> new_esEs16(xwv40001, xwv30001, bdc) 26.56/9.58 new_esEs34(xwv541, xwv551, app(app(ty_@2, ccb), ccc)) -> new_esEs21(xwv541, xwv551, ccb, ccc) 26.56/9.58 new_esEs30(xwv40002, xwv30002, ty_Double) -> new_esEs17(xwv40002, xwv30002) 26.56/9.58 new_mkBalBranch6MkBalBranch5(xwv340, xwv341, xwv344, xwv340, False, h, ba) -> new_mkBalBranch6MkBalBranch4(xwv340, xwv341, xwv344, xwv340, new_gt(new_mkBalBranch6Size_r(xwv340, xwv341, xwv344, xwv340, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xwv340, xwv341, xwv344, xwv340, h, ba))), h, ba) 26.56/9.58 new_ltEs5(Left(xwv540), Left(xwv550), ty_Bool, eec) -> new_ltEs8(xwv540, xwv550) 26.56/9.58 new_ltEs10(Just(xwv540), Just(xwv550), ty_@0) -> new_ltEs4(xwv540, xwv550) 26.56/9.58 new_esEs15(LT, EQ) -> False 26.56/9.58 new_esEs15(EQ, LT) -> False 26.56/9.58 new_compare13(Double(xwv4000, Pos(xwv40010)), Double(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.56/9.58 new_esEs35(xwv540, xwv550, ty_Ordering) -> new_esEs15(xwv540, xwv550) 26.56/9.58 new_ltEs20(xwv542, xwv552, ty_Double) -> new_ltEs11(xwv542, xwv552) 26.56/9.58 new_esEs7(xwv4002, xwv3002, ty_Integer) -> new_esEs26(xwv4002, xwv3002) 26.56/9.58 new_ltEs19(xwv541, xwv551, ty_Int) -> new_ltEs6(xwv541, xwv551) 26.56/9.58 new_lt14(xwv113, xwv115) -> new_esEs15(new_compare27(xwv113, xwv115), LT) 26.56/9.58 new_esEs6(xwv4000, xwv3000, app(app(ty_Either, fgf), fgg)) -> new_esEs19(xwv4000, xwv3000, fgf, fgg) 26.56/9.58 new_ltEs23(xwv67, xwv70, app(app(ty_@2, deg), deh)) -> new_ltEs9(xwv67, xwv70, deg, deh) 26.56/9.58 new_ltEs19(xwv541, xwv551, ty_@0) -> new_ltEs4(xwv541, xwv551) 26.56/9.58 new_primMinusNat0(Succ(xwv34400), Zero) -> Pos(Succ(xwv34400)) 26.56/9.58 new_esEs13(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.56/9.58 new_ltEs23(xwv67, xwv70, ty_Integer) -> new_ltEs16(xwv67, xwv70) 26.56/9.58 new_primCompAux00(xwv32, xwv33, EQ, ty_Int) -> new_compare15(xwv32, xwv33) 26.56/9.58 new_primCompAux00(xwv32, xwv33, EQ, app(ty_Ratio, fgd)) -> new_compare29(xwv32, xwv33, fgd) 26.56/9.58 new_ltEs21(xwv83, xwv84, ty_Int) -> new_ltEs6(xwv83, xwv84) 26.56/9.58 new_ltEs10(Just(xwv540), Just(xwv550), ty_Int) -> new_ltEs6(xwv540, xwv550) 26.56/9.58 new_lt19(xwv540, xwv550, ty_@0) -> new_lt12(xwv540, xwv550) 26.56/9.58 new_ltEs24(xwv54, xwv55, ty_@0) -> new_ltEs4(xwv54, xwv55) 26.56/9.58 new_esEs6(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.56/9.58 new_lt6(xwv113, xwv115, ty_Float) -> new_lt11(xwv113, xwv115) 26.56/9.58 new_ltEs14(EQ, LT) -> False 26.56/9.58 new_esEs28(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.56/9.58 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_[], gbf)) -> new_ltEs13(xwv540, xwv550, gbf) 26.56/9.58 new_esEs39(xwv65, xwv68, app(ty_[], ddh)) -> new_esEs12(xwv65, xwv68, ddh) 26.56/9.58 new_esEs8(xwv4001, xwv3001, app(ty_Maybe, ec)) -> new_esEs16(xwv4001, xwv3001, ec) 26.56/9.58 new_esEs27(xwv40001, xwv30001, app(ty_Ratio, fag)) -> new_esEs23(xwv40001, xwv30001, fag) 26.56/9.58 new_esEs13(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.58 new_esEs30(xwv40002, xwv30002, ty_Ordering) -> new_esEs15(xwv40002, xwv30002) 26.56/9.58 new_esEs16(Nothing, Nothing, cgc) -> True 26.56/9.58 new_esEs39(xwv65, xwv68, app(app(ty_@2, dde), ddf)) -> new_esEs21(xwv65, xwv68, dde, ddf) 26.56/9.58 new_lt21(xwv540, xwv550, app(app(app(ty_@3, cdh), cea), ceb)) -> new_lt15(xwv540, xwv550, cdh, cea, ceb) 26.56/9.58 new_ltEs20(xwv542, xwv552, ty_Bool) -> new_ltEs8(xwv542, xwv552) 26.56/9.58 new_esEs29(xwv113, xwv115, ty_Int) -> new_esEs18(xwv113, xwv115) 26.56/9.58 new_ltEs5(Left(xwv540), Left(xwv550), ty_Char, eec) -> new_ltEs7(xwv540, xwv550) 26.56/9.58 new_esEs29(xwv113, xwv115, ty_Bool) -> new_esEs14(xwv113, xwv115) 26.56/9.58 new_esEs5(xwv4000, xwv3000, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs25(xwv4000, xwv3000, bbf, bbg, bbh) 26.56/9.58 new_ltEs19(xwv541, xwv551, app(ty_[], bgd)) -> new_ltEs13(xwv541, xwv551, bgd) 26.56/9.58 new_primCmpNat0(Succ(xwv40000), Zero) -> GT 26.56/9.58 new_primPlusInt1(xwv3440, Neg(xwv3460)) -> Neg(new_primPlusNat0(xwv3440, xwv3460)) 26.56/9.58 new_pePe(False, xwv216) -> xwv216 26.56/9.58 new_esEs33(xwv540, xwv550, ty_@0) -> new_esEs24(xwv540, xwv550) 26.56/9.58 new_lt21(xwv540, xwv550, app(ty_[], cdg)) -> new_lt13(xwv540, xwv550, cdg) 26.56/9.58 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_Maybe, gbe)) -> new_ltEs10(xwv540, xwv550, gbe) 26.56/9.58 new_esEs10(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.56/9.58 new_esEs4(xwv4001, xwv3001, ty_Ordering) -> new_esEs15(xwv4001, xwv3001) 26.56/9.58 new_compare19(Float(xwv4000, Pos(xwv40010)), Float(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.56/9.58 new_ltEs17(xwv54, xwv55, cef) -> new_fsEs(new_compare29(xwv54, xwv55, cef)) 26.56/9.58 new_compare27(LT, LT) -> EQ 26.56/9.58 new_esEs33(xwv540, xwv550, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs25(xwv540, xwv550, bhg, bhh, caa) 26.56/9.58 new_compare25(xwv83, xwv84, True, ceg, ceh) -> EQ 26.56/9.58 new_compare210(xwv54, xwv55, True, edg) -> EQ 26.56/9.58 new_esEs27(xwv40001, xwv30001, ty_Char) -> new_esEs20(xwv40001, xwv30001) 26.56/9.58 new_esEs15(EQ, GT) -> False 26.56/9.58 new_esEs15(GT, EQ) -> False 26.56/9.58 new_compare112(xwv157, xwv158, True, dcc, dcd) -> LT 26.56/9.58 new_lt11(xwv113, xwv115) -> new_esEs15(new_compare19(xwv113, xwv115), LT) 26.56/9.58 new_primMinusNat0(Succ(xwv34400), Succ(xwv34500)) -> new_primMinusNat0(xwv34400, xwv34500) 26.56/9.58 new_lt23(xwv66, xwv69, ty_Bool) -> new_lt4(xwv66, xwv69) 26.56/9.58 new_compare11(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, xwv192, dce, dcf, dcg) -> new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, dce, dcf, dcg) 26.56/9.58 new_esEs23(:%(xwv40000, xwv40001), :%(xwv30000, xwv30001), eba) -> new_asAs(new_esEs37(xwv40000, xwv30000, eba), new_esEs36(xwv40001, xwv30001, eba)) 26.56/9.58 new_esEs27(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.56/9.58 new_esEs34(xwv541, xwv551, app(ty_Ratio, cdc)) -> new_esEs23(xwv541, xwv551, cdc) 26.56/9.58 new_compare110(xwv170, xwv171, xwv172, xwv173, True, xwv175, cc, cd) -> new_compare111(xwv170, xwv171, xwv172, xwv173, True, cc, cd) 26.56/9.58 new_ltEs24(xwv54, xwv55, ty_Int) -> new_ltEs6(xwv54, xwv55) 26.56/9.58 new_compare10(xwv141, xwv142, False, bb) -> GT 26.56/9.58 new_primEqInt(Pos(Zero), Neg(Succ(xwv300000))) -> False 26.56/9.58 new_primEqInt(Neg(Zero), Pos(Succ(xwv300000))) -> False 26.56/9.58 new_ltEs20(xwv542, xwv552, ty_Integer) -> new_ltEs16(xwv542, xwv552) 26.56/9.58 new_esEs19(Right(xwv40000), Right(xwv30000), eae, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.56/9.58 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_Maybe, ebc), eaf) -> new_esEs16(xwv40000, xwv30000, ebc) 26.56/9.58 new_compare9(True, False) -> GT 26.56/9.58 new_esEs10(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.56/9.58 new_ltEs23(xwv67, xwv70, ty_Float) -> new_ltEs12(xwv67, xwv70) 26.56/9.58 new_lt23(xwv66, xwv69, app(app(ty_Either, dgh), dha)) -> new_lt16(xwv66, xwv69, dgh, dha) 26.56/9.58 new_esEs34(xwv541, xwv551, app(ty_[], cce)) -> new_esEs12(xwv541, xwv551, cce) 26.56/9.58 new_esEs11(xwv4000, xwv3000, app(ty_[], ffa)) -> new_esEs12(xwv4000, xwv3000, ffa) 26.56/9.58 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_[], h), ba), new_glueBal2Mid_elt200(xwv330, xwv331, xwv332, xwv333, xwv334, xwv340, xwv341, xwv342, xwv343, xwv344, xwv340, xwv341, xwv342, xwv343, xwv344, ba, app(ty_[], h)), Branch(xwv330, xwv331, xwv332, xwv333, xwv334), new_deleteMin0(xwv340, xwv341, xwv342, xwv343, xwv344, h, ba), h, ba) 26.56/9.58 new_esEs37(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.58 new_esEs33(xwv540, xwv550, ty_Float) -> new_esEs22(xwv540, xwv550) 26.56/9.58 new_esEs9(xwv4000, xwv3000, app(app(ty_Either, fg), fh)) -> new_esEs19(xwv4000, xwv3000, fg, fh) 26.56/9.58 new_ltEs14(GT, EQ) -> False 26.56/9.58 new_compare26(:(xwv4000, xwv4001), :(xwv3000, xwv3001), dbg) -> new_primCompAux1(xwv4000, xwv3000, xwv4001, xwv3001, dbg) 26.56/9.58 new_ltEs18(xwv114, xwv116, ty_Double) -> new_ltEs11(xwv114, xwv116) 26.56/9.58 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Char, eaf) -> new_esEs20(xwv40000, xwv30000) 26.56/9.58 new_esEs29(xwv113, xwv115, ty_Char) -> new_esEs20(xwv113, xwv115) 26.56/9.58 new_esEs31(xwv40001, xwv30001, ty_@0) -> new_esEs24(xwv40001, xwv30001) 26.56/9.58 new_esEs31(xwv40001, xwv30001, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs25(xwv40001, xwv30001, bea, beb, bec) 26.56/9.58 new_lt13(xwv113, xwv115, he) -> new_esEs15(new_compare26(xwv113, xwv115, he), LT) 26.56/9.58 new_lt21(xwv540, xwv550, ty_@0) -> new_lt12(xwv540, xwv550) 26.56/9.58 new_compare29(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), ty_Integer) -> new_compare8(new_sr0(xwv4000, xwv3001), new_sr0(xwv3000, xwv4001)) 26.56/9.58 new_ltEs21(xwv83, xwv84, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs15(xwv83, xwv84, cfe, cff, cfg) 26.56/9.58 new_glueBal2Mid_key100(xwv425, xwv426, xwv427, xwv428, xwv429, xwv430, xwv431, xwv432, xwv433, xwv434, xwv435, xwv436, xwv437, xwv438, Branch(xwv4390, xwv4391, xwv4392, xwv4393, xwv4394), gba, gbb) -> new_glueBal2Mid_key100(xwv425, xwv426, xwv427, xwv428, xwv429, xwv430, xwv431, xwv432, xwv433, xwv434, xwv4390, xwv4391, xwv4392, xwv4393, xwv4394, gba, gbb) 26.56/9.58 new_esEs33(xwv540, xwv550, ty_Double) -> new_esEs17(xwv540, xwv550) 26.56/9.58 new_lt6(xwv113, xwv115, ty_@0) -> new_lt12(xwv113, xwv115) 26.56/9.58 new_mkBalBranch6MkBalBranch4(xwv340, xwv341, xwv344, xwv340, False, h, ba) -> new_mkBalBranch6MkBalBranch3(xwv340, xwv341, xwv344, xwv340, new_gt(new_mkBalBranch6Size_l(xwv340, xwv341, xwv344, xwv340, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xwv340, xwv341, xwv344, xwv340, h, ba))), h, ba) 26.56/9.58 new_esEs8(xwv4001, xwv3001, app(app(ty_@2, ef), eg)) -> new_esEs21(xwv4001, xwv3001, ef, eg) 26.56/9.58 new_esEs35(xwv540, xwv550, ty_Float) -> new_esEs22(xwv540, xwv550) 26.56/9.58 new_esEs39(xwv65, xwv68, ty_Int) -> new_esEs18(xwv65, xwv68) 26.56/9.58 new_lt21(xwv540, xwv550, app(ty_Maybe, cdf)) -> new_lt10(xwv540, xwv550, cdf) 26.56/9.58 new_ltEs13(xwv54, xwv55, eea) -> new_fsEs(new_compare26(xwv54, xwv55, eea)) 26.56/9.58 new_esEs15(LT, GT) -> False 26.56/9.58 new_esEs15(GT, LT) -> False 26.56/9.58 new_esEs39(xwv65, xwv68, ty_Char) -> new_esEs20(xwv65, xwv68) 26.56/9.58 new_ltEs18(xwv114, xwv116, ty_Bool) -> new_ltEs8(xwv114, xwv116) 26.56/9.58 new_delFromFM0(EmptyFM, xwv40, h, ba) -> EmptyFM 26.56/9.58 new_esEs39(xwv65, xwv68, ty_Bool) -> new_esEs14(xwv65, xwv68) 26.56/9.58 new_compare18(Just(xwv4000), Just(xwv3000), dbf) -> new_compare210(xwv4000, xwv3000, new_esEs6(xwv4000, xwv3000, dbf), dbf) 26.56/9.58 new_lt21(xwv540, xwv550, ty_Ordering) -> new_lt14(xwv540, xwv550) 26.56/9.58 new_primCompAux00(xwv32, xwv33, EQ, ty_Ordering) -> new_compare27(xwv32, xwv33) 26.56/9.58 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_Ratio, gce)) -> new_ltEs17(xwv540, xwv550, gce) 26.56/9.58 new_ltEs20(xwv542, xwv552, ty_Float) -> new_ltEs12(xwv542, xwv552) 26.56/9.58 new_compare211(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, ddb, ddc, ddd) -> new_compare11(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, new_lt22(xwv65, xwv68, ddb), new_asAs(new_esEs39(xwv65, xwv68, ddb), new_pePe(new_lt23(xwv66, xwv69, ddc), new_asAs(new_esEs38(xwv66, xwv69, ddc), new_ltEs23(xwv67, xwv70, ddd)))), ddb, ddc, ddd) 26.56/9.58 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Int, eaf) -> new_esEs18(xwv40000, xwv30000) 26.56/9.58 new_lt22(xwv65, xwv68, ty_Int) -> new_lt7(xwv65, xwv68) 26.56/9.58 new_esEs11(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.56/9.58 new_delFromFM0(Branch(:(xwv300, xwv301), xwv31, xwv32, xwv33, xwv34), [], h, ba) -> new_delFromFM13(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, LT, h, ba) 26.56/9.58 new_ltEs18(xwv114, xwv116, app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs15(xwv114, xwv116, bah, bba, bbb) 26.56/9.58 new_esEs12(:(xwv40000, xwv40001), :(xwv30000, xwv30001), ebb) -> new_asAs(new_esEs13(xwv40000, xwv30000, ebb), new_esEs12(xwv40001, xwv30001, ebb)) 26.56/9.58 new_compare0(xwv400, xwv300, app(ty_Ratio, dcb)) -> new_compare29(xwv400, xwv300, dcb) 26.56/9.58 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Bool, eaf) -> new_esEs14(xwv40000, xwv30000) 26.56/9.58 new_esEs10(xwv4000, xwv3000, app(app(ty_Either, fcg), fch)) -> new_esEs19(xwv4000, xwv3000, fcg, fch) 26.56/9.58 new_esEs6(xwv4000, xwv3000, app(app(ty_@2, fgh), fha)) -> new_esEs21(xwv4000, xwv3000, fgh, fha) 26.56/9.58 new_esEs19(Right(xwv40000), Right(xwv30000), eae, app(ty_Ratio, edb)) -> new_esEs23(xwv40000, xwv30000, edb) 26.56/9.58 new_esEs8(xwv4001, xwv3001, ty_@0) -> new_esEs24(xwv4001, xwv3001) 26.56/9.58 new_esEs33(xwv540, xwv550, ty_Integer) -> new_esEs26(xwv540, xwv550) 26.56/9.58 new_esEs8(xwv4001, xwv3001, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs25(xwv4001, xwv3001, fa, fb, fc) 26.56/9.58 new_esEs22(Float(xwv40000, xwv40001), Float(xwv30000, xwv30001)) -> new_esEs18(new_sr(xwv40000, xwv30001), new_sr(xwv40001, xwv30000)) 26.56/9.58 new_lt20(xwv541, xwv551, app(app(ty_@2, ccb), ccc)) -> new_lt9(xwv541, xwv551, ccb, ccc) 26.56/9.58 new_esEs10(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.56/9.58 new_primMulInt(Neg(xwv40000), Neg(xwv30010)) -> Pos(new_primMulNat0(xwv40000, xwv30010)) 26.56/9.58 new_primCmpInt(Pos(Zero), Pos(Succ(xwv30000))) -> new_primCmpNat0(Zero, Succ(xwv30000)) 26.56/9.58 new_esEs14(True, True) -> True 26.56/9.58 new_esEs38(xwv66, xwv69, ty_Ordering) -> new_esEs15(xwv66, xwv69) 26.56/9.58 new_esEs9(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.56/9.58 new_compare29(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), ty_Int) -> new_compare15(new_sr(xwv4000, xwv3001), new_sr(xwv3000, xwv4001)) 26.56/9.58 new_esEs32(xwv40000, xwv30000, app(app(ty_Either, bef), beg)) -> new_esEs19(xwv40000, xwv30000, bef, beg) 26.56/9.58 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(ty_Either, cge), cgf)) -> new_esEs19(xwv40000, xwv30000, cge, cgf) 26.56/9.58 new_ltEs19(xwv541, xwv551, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs15(xwv541, xwv551, bge, bgf, bgg) 26.56/9.58 new_lt6(xwv113, xwv115, app(ty_[], he)) -> new_lt13(xwv113, xwv115, he) 26.56/9.58 new_ltEs21(xwv83, xwv84, app(app(ty_@2, cfa), cfb)) -> new_ltEs9(xwv83, xwv84, cfa, cfb) 26.56/9.58 new_esEs5(xwv4000, xwv3000, app(ty_Maybe, cgc)) -> new_esEs16(xwv4000, xwv3000, cgc) 26.56/9.58 new_lt19(xwv540, xwv550, app(ty_Maybe, bhe)) -> new_lt10(xwv540, xwv550, bhe) 26.56/9.58 new_esEs31(xwv40001, xwv30001, app(app(ty_@2, bdf), bdg)) -> new_esEs21(xwv40001, xwv30001, bdf, bdg) 26.56/9.58 new_ltEs14(GT, LT) -> False 26.56/9.58 new_compare7(Left(xwv4000), Left(xwv3000), dbh, dca) -> new_compare24(xwv4000, xwv3000, new_esEs10(xwv4000, xwv3000, dbh), dbh, dca) 26.56/9.58 new_ltEs19(xwv541, xwv551, app(app(ty_Either, bgh), bha)) -> new_ltEs5(xwv541, xwv551, bgh, bha) 26.56/9.58 new_esEs31(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.56/9.58 new_ltEs12(xwv54, xwv55) -> new_fsEs(new_compare19(xwv54, xwv55)) 26.56/9.58 new_compare0(xwv400, xwv300, app(app(app(ty_@3, ce), cf), cg)) -> new_compare28(xwv400, xwv300, ce, cf, cg) 26.56/9.58 new_ltEs10(Just(xwv540), Just(xwv550), app(app(ty_Either, gcb), gcc)) -> new_ltEs5(xwv540, xwv550, gcb, gcc) 26.56/9.58 new_compare8(Integer(xwv4000), Integer(xwv3000)) -> new_primCmpInt(xwv4000, xwv3000) 26.56/9.58 new_primMulInt(Pos(xwv40000), Neg(xwv30010)) -> Neg(new_primMulNat0(xwv40000, xwv30010)) 26.56/9.58 new_primMulInt(Neg(xwv40000), Pos(xwv30010)) -> Neg(new_primMulNat0(xwv40000, xwv30010)) 26.56/9.58 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_[], ega), eec) -> new_ltEs13(xwv540, xwv550, ega) 26.56/9.58 new_ltEs18(xwv114, xwv116, app(ty_Maybe, baf)) -> new_ltEs10(xwv114, xwv116, baf) 26.56/9.58 new_ltEs23(xwv67, xwv70, ty_Int) -> new_ltEs6(xwv67, xwv70) 26.56/9.58 new_esEs5(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.56/9.58 new_ltEs21(xwv83, xwv84, ty_Integer) -> new_ltEs16(xwv83, xwv84) 26.56/9.58 new_esEs9(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.56/9.58 new_ltEs15(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), cae, caf, cag) -> new_pePe(new_lt21(xwv540, xwv550, cae), new_asAs(new_esEs35(xwv540, xwv550, cae), new_pePe(new_lt20(xwv541, xwv551, caf), new_asAs(new_esEs34(xwv541, xwv551, caf), new_ltEs20(xwv542, xwv552, cag))))) 26.56/9.58 new_ltEs22(xwv76, xwv77, ty_@0) -> new_ltEs4(xwv76, xwv77) 26.56/9.58 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(ty_@2, cgg), cgh)) -> new_esEs21(xwv40000, xwv30000, cgg, cgh) 26.56/9.58 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(ty_Either, ebd), ebe), eaf) -> new_esEs19(xwv40000, xwv30000, ebd, ebe) 26.56/9.58 new_ltEs5(Right(xwv540), Right(xwv550), eeb, app(ty_Ratio, faa)) -> new_ltEs17(xwv540, xwv550, faa) 26.56/9.58 new_compare19(Float(xwv4000, Neg(xwv40010)), Float(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.56/9.58 new_esEs11(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.56/9.58 new_sr0(Integer(xwv40000), Integer(xwv30010)) -> Integer(new_primMulInt(xwv40000, xwv30010)) 26.56/9.58 new_esEs30(xwv40002, xwv30002, app(app(ty_Either, bcb), bcc)) -> new_esEs19(xwv40002, xwv30002, bcb, bcc) 26.56/9.58 new_ltEs24(xwv54, xwv55, app(ty_Maybe, edh)) -> new_ltEs10(xwv54, xwv55, edh) 26.56/9.58 new_esEs8(xwv4001, xwv3001, app(ty_Ratio, eh)) -> new_esEs23(xwv4001, xwv3001, eh) 26.56/9.58 new_ltEs24(xwv54, xwv55, app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs15(xwv54, xwv55, cae, caf, cag) 26.56/9.58 new_esEs6(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.56/9.58 new_ltEs23(xwv67, xwv70, app(ty_Ratio, dfh)) -> new_ltEs17(xwv67, xwv70, dfh) 26.56/9.58 new_esEs4(xwv4001, xwv3001, app(ty_Ratio, dhh)) -> new_esEs23(xwv4001, xwv3001, dhh) 26.56/9.58 new_ltEs24(xwv54, xwv55, ty_Char) -> new_ltEs7(xwv54, xwv55) 26.56/9.58 new_esEs28(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.56/9.58 new_mkBalBranch(xwv340, xwv341, xwv340, xwv344, h, ba) -> new_mkBalBranch6MkBalBranch5(xwv340, xwv341, xwv344, xwv340, new_lt7(new_primPlusInt2(new_mkBalBranch6Size_l(xwv340, xwv341, xwv344, xwv340, h, ba), xwv340, xwv341, xwv344, xwv340, h, ba), Pos(Succ(Succ(Zero)))), h, ba) 26.56/9.58 new_esEs28(xwv40000, xwv30000, app(app(app(ty_@3, fcb), fcc), fcd)) -> new_esEs25(xwv40000, xwv30000, fcb, fcc, fcd) 26.56/9.58 new_esEs5(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.56/9.58 new_esEs18(xwv4000, xwv3000) -> new_primEqInt(xwv4000, xwv3000) 26.56/9.58 new_asAs(True, xwv131) -> xwv131 26.56/9.58 new_delFromFM21(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, LT, bc, bd) -> new_delFromFM22(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, bc, bd) 26.56/9.58 new_compare27(GT, GT) -> EQ 26.56/9.58 new_esEs32(xwv40000, xwv30000, app(app(ty_@2, beh), bfa)) -> new_esEs21(xwv40000, xwv30000, beh, bfa) 26.56/9.58 new_ltEs20(xwv542, xwv552, app(app(ty_@2, cah), cba)) -> new_ltEs9(xwv542, xwv552, cah, cba) 26.56/9.58 new_esEs6(xwv4000, xwv3000, app(ty_Maybe, fge)) -> new_esEs16(xwv4000, xwv3000, fge) 26.56/9.58 new_ltEs22(xwv76, xwv77, ty_Ordering) -> new_ltEs14(xwv76, xwv77) 26.56/9.58 new_esEs5(xwv4000, xwv3000, app(app(ty_@2, eag), eah)) -> new_esEs21(xwv4000, xwv3000, eag, eah) 26.56/9.58 new_ltEs22(xwv76, xwv77, ty_Float) -> new_ltEs12(xwv76, xwv77) 26.56/9.58 new_esEs27(xwv40001, xwv30001, app(ty_Maybe, fab)) -> new_esEs16(xwv40001, xwv30001, fab) 26.56/9.58 new_esEs32(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.56/9.58 new_compare0(xwv400, xwv300, ty_Float) -> new_compare19(xwv400, xwv300) 26.56/9.58 new_ltEs20(xwv542, xwv552, app(app(ty_Either, cbg), cbh)) -> new_ltEs5(xwv542, xwv552, cbg, cbh) 26.56/9.58 new_lt21(xwv540, xwv550, app(app(ty_@2, cdd), cde)) -> new_lt9(xwv540, xwv550, cdd, cde) 26.56/9.58 new_ltEs18(xwv114, xwv116, ty_Char) -> new_ltEs7(xwv114, xwv116) 26.56/9.58 new_ltEs19(xwv541, xwv551, app(app(ty_@2, bga), bgb)) -> new_ltEs9(xwv541, xwv551, bga, bgb) 26.56/9.58 new_lt20(xwv541, xwv551, ty_Double) -> new_lt5(xwv541, xwv551) 26.56/9.58 new_compare211(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, True, ddb, ddc, ddd) -> EQ 26.56/9.58 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_[], che)) -> new_esEs12(xwv40000, xwv30000, che) 26.56/9.58 new_ltEs5(Right(xwv540), Right(xwv550), eeb, app(app(ty_Either, ehg), ehh)) -> new_ltEs5(xwv540, xwv550, ehg, ehh) 26.56/9.58 new_compare27(EQ, EQ) -> EQ 26.56/9.58 new_lt22(xwv65, xwv68, app(ty_Ratio, def)) -> new_lt18(xwv65, xwv68, def) 26.56/9.58 new_ltEs5(Right(xwv540), Right(xwv550), eeb, ty_@0) -> new_ltEs4(xwv540, xwv550) 26.56/9.58 new_sr(xwv4000, xwv3001) -> new_primMulInt(xwv4000, xwv3001) 26.56/9.58 new_compare0(xwv400, xwv300, ty_Integer) -> new_compare8(xwv400, xwv300) 26.56/9.58 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.56/9.58 new_primCompAux00(xwv32, xwv33, EQ, ty_Float) -> new_compare19(xwv32, xwv33) 26.56/9.58 new_ltEs5(Right(xwv540), Right(xwv550), eeb, app(ty_Maybe, ehb)) -> new_ltEs10(xwv540, xwv550, ehb) 26.56/9.58 new_primMulNat0(Zero, Zero) -> Zero 26.56/9.58 new_esEs11(xwv4000, xwv3000, app(app(ty_@2, fec), fed)) -> new_esEs21(xwv4000, xwv3000, fec, fed) 26.56/9.58 new_lt19(xwv540, xwv550, ty_Double) -> new_lt5(xwv540, xwv550) 26.56/9.58 new_lt22(xwv65, xwv68, app(app(ty_@2, dde), ddf)) -> new_lt9(xwv65, xwv68, dde, ddf) 26.56/9.58 new_compare25(xwv83, xwv84, False, ceg, ceh) -> new_compare112(xwv83, xwv84, new_ltEs21(xwv83, xwv84, ceh), ceg, ceh) 26.56/9.58 new_esEs4(xwv4001, xwv3001, ty_Int) -> new_esEs18(xwv4001, xwv3001) 26.56/9.58 new_esEs29(xwv113, xwv115, ty_Integer) -> new_esEs26(xwv113, xwv115) 26.56/9.58 new_ltEs5(Right(xwv540), Right(xwv550), eeb, app(app(app(ty_@3, ehd), ehe), ehf)) -> new_ltEs15(xwv540, xwv550, ehd, ehe, ehf) 26.56/9.58 new_lt6(xwv113, xwv115, app(ty_Maybe, hd)) -> new_lt10(xwv113, xwv115, hd) 26.56/9.58 new_lt23(xwv66, xwv69, app(ty_Ratio, dhb)) -> new_lt18(xwv66, xwv69, dhb) 26.56/9.58 new_lt22(xwv65, xwv68, app(ty_Maybe, ddg)) -> new_lt10(xwv65, xwv68, ddg) 26.56/9.58 new_esEs29(xwv113, xwv115, ty_@0) -> new_esEs24(xwv113, xwv115) 26.56/9.58 new_ltEs21(xwv83, xwv84, ty_Ordering) -> new_ltEs14(xwv83, xwv84) 26.56/9.58 new_primPlusInt2(Neg(xwv3440), xwv340, xwv341, xwv344, xwv340, h, ba) -> new_primPlusInt1(xwv3440, new_sizeFM0(xwv344, h, ba)) 26.56/9.58 new_esEs39(xwv65, xwv68, app(ty_Ratio, def)) -> new_esEs23(xwv65, xwv68, def) 26.56/9.58 new_esEs4(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 26.56/9.58 new_esEs33(xwv540, xwv550, app(app(ty_@2, bhc), bhd)) -> new_esEs21(xwv540, xwv550, bhc, bhd) 26.56/9.58 new_lt23(xwv66, xwv69, app(ty_Maybe, dgc)) -> new_lt10(xwv66, xwv69, dgc) 26.56/9.58 new_esEs30(xwv40002, xwv30002, ty_@0) -> new_esEs24(xwv40002, xwv30002) 26.56/9.58 new_esEs30(xwv40002, xwv30002, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs25(xwv40002, xwv30002, bcg, bch, bda) 26.56/9.58 new_ltEs24(xwv54, xwv55, app(app(ty_Either, eeb), eec)) -> new_ltEs5(xwv54, xwv55, eeb, eec) 26.56/9.58 new_compare7(Right(xwv4000), Left(xwv3000), dbh, dca) -> GT 26.56/9.58 new_primCompAux00(xwv32, xwv33, EQ, app(app(app(ty_@3, ffg), ffh), fga)) -> new_compare28(xwv32, xwv33, ffg, ffh, fga) 26.56/9.58 new_ltEs23(xwv67, xwv70, app(ty_Maybe, dfa)) -> new_ltEs10(xwv67, xwv70, dfa) 26.56/9.58 new_ltEs20(xwv542, xwv552, ty_Char) -> new_ltEs7(xwv542, xwv552) 26.56/9.58 new_primEqInt(Neg(Succ(xwv400000)), Neg(Zero)) -> False 26.56/9.58 new_primEqInt(Neg(Zero), Neg(Succ(xwv300000))) -> False 26.56/9.58 new_ltEs5(Right(xwv540), Right(xwv550), eeb, ty_Bool) -> new_ltEs8(xwv540, xwv550) 26.56/9.58 new_esEs9(xwv4000, xwv3000, app(ty_Ratio, gc)) -> new_esEs23(xwv4000, xwv3000, gc) 26.56/9.58 new_esEs25(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), bbf, bbg, bbh) -> new_asAs(new_esEs32(xwv40000, xwv30000, bbf), new_asAs(new_esEs31(xwv40001, xwv30001, bbg), new_esEs30(xwv40002, xwv30002, bbh))) 26.56/9.58 new_esEs27(xwv40001, xwv30001, app(ty_[], fbc)) -> new_esEs12(xwv40001, xwv30001, fbc) 26.56/9.58 new_esEs33(xwv540, xwv550, app(ty_[], bhf)) -> new_esEs12(xwv540, xwv550, bhf) 26.56/9.58 new_primEqInt(Pos(Succ(xwv400000)), Pos(Succ(xwv300000))) -> new_primEqNat0(xwv400000, xwv300000) 26.56/9.58 new_ltEs24(xwv54, xwv55, app(ty_Ratio, cef)) -> new_ltEs17(xwv54, xwv55, cef) 26.56/9.58 new_ltEs18(xwv114, xwv116, app(ty_Ratio, bbe)) -> new_ltEs17(xwv114, xwv116, bbe) 26.56/9.58 new_esEs5(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.56/9.58 new_ltEs18(xwv114, xwv116, app(app(ty_@2, bad), bae)) -> new_ltEs9(xwv114, xwv116, bad, bae) 26.56/9.58 new_esEs5(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.56/9.58 new_esEs29(xwv113, xwv115, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs25(xwv113, xwv115, hf, hg, hh) 26.56/9.58 new_lt10(xwv113, xwv115, hd) -> new_esEs15(new_compare18(xwv113, xwv115, hd), LT) 26.56/9.58 new_esEs6(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.56/9.58 new_ltEs18(xwv114, xwv116, app(app(ty_Either, bbc), bbd)) -> new_ltEs5(xwv114, xwv116, bbc, bbd) 26.56/9.58 new_esEs5(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.56/9.58 new_primEqInt(Pos(Succ(xwv400000)), Neg(xwv30000)) -> False 26.56/9.58 new_primEqInt(Neg(Succ(xwv400000)), Pos(xwv30000)) -> False 26.56/9.58 new_ltEs5(Right(xwv540), Right(xwv550), eeb, ty_Int) -> new_ltEs6(xwv540, xwv550) 26.56/9.58 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_[], h), ba), new_glueBal2Mid_elt100(xwv330, xwv331, xwv332, xwv333, xwv334, xwv340, xwv341, xwv342, xwv343, xwv344, xwv330, xwv331, xwv332, xwv333, xwv334, ba, app(ty_[], h)), new_deleteMax0(xwv330, xwv331, xwv332, xwv333, xwv334, h, ba), Branch(xwv340, xwv341, xwv342, xwv343, xwv344), h, ba) 26.56/9.58 new_primCmpInt(Neg(Zero), Neg(Succ(xwv30000))) -> new_primCmpNat0(Succ(xwv30000), Zero) 26.56/9.58 new_esEs29(xwv113, xwv115, app(app(ty_Either, baa), bab)) -> new_esEs19(xwv113, xwv115, baa, bab) 26.56/9.58 new_esEs31(xwv40001, xwv30001, ty_Float) -> new_esEs22(xwv40001, xwv30001) 26.56/9.58 new_ltEs5(Right(xwv540), Right(xwv550), eeb, ty_Ordering) -> new_ltEs14(xwv540, xwv550) 26.56/9.58 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.56/9.58 new_esEs27(xwv40001, xwv30001, ty_Float) -> new_esEs22(xwv40001, xwv30001) 26.56/9.58 new_primCompAux00(xwv32, xwv33, LT, ffb) -> LT 26.56/9.58 new_esEs19(Right(xwv40000), Right(xwv30000), eae, app(app(ty_Either, ecf), ecg)) -> new_esEs19(xwv40000, xwv30000, ecf, ecg) 26.56/9.58 new_esEs40(xwv15, xwv21, app(ty_Ratio, gad)) -> new_esEs23(xwv15, xwv21, gad) 26.56/9.58 new_ltEs19(xwv541, xwv551, app(ty_Maybe, bgc)) -> new_ltEs10(xwv541, xwv551, bgc) 26.56/9.58 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_[], ecd), eaf) -> new_esEs12(xwv40000, xwv30000, ecd) 26.56/9.58 new_compare112(xwv157, xwv158, False, dcc, dcd) -> GT 26.56/9.58 new_esEs7(xwv4002, xwv3002, ty_Bool) -> new_esEs14(xwv4002, xwv3002) 26.56/9.58 new_esEs7(xwv4002, xwv3002, app(ty_Ratio, df)) -> new_esEs23(xwv4002, xwv3002, df) 26.56/9.58 new_esEs8(xwv4001, xwv3001, ty_Char) -> new_esEs20(xwv4001, xwv3001) 26.56/9.58 new_delFromFM14(xwv31, xwv32, xwv33, xwv34, EQ, h, ba) -> new_delFromFM12(xwv31, xwv32, xwv33, xwv34, h, ba) 26.56/9.58 new_ltEs22(xwv76, xwv77, app(ty_Ratio, dba)) -> new_ltEs17(xwv76, xwv77, dba) 26.56/9.58 new_esEs19(Right(xwv40000), Right(xwv30000), eae, app(ty_Maybe, ece)) -> new_esEs16(xwv40000, xwv30000, ece) 26.56/9.58 new_glueBal2Mid_elt100(xwv441, xwv442, xwv443, xwv444, xwv445, xwv446, xwv447, xwv448, xwv449, xwv450, xwv451, xwv452, xwv453, xwv454, Branch(xwv4550, xwv4551, xwv4552, xwv4553, xwv4554), dch, dda) -> new_glueBal2Mid_elt100(xwv441, xwv442, xwv443, xwv444, xwv445, xwv446, xwv447, xwv448, xwv449, xwv450, xwv4550, xwv4551, xwv4552, xwv4553, xwv4554, dch, dda) 26.56/9.58 new_ltEs10(Just(xwv540), Just(xwv550), ty_Ordering) -> new_ltEs14(xwv540, xwv550) 26.56/9.58 new_ltEs22(xwv76, xwv77, ty_Bool) -> new_ltEs8(xwv76, xwv77) 26.56/9.58 new_mkBalBranch6MkBalBranch3(xwv340, xwv341, xwv344, Branch(xwv3400, xwv3401, xwv3402, xwv3403, xwv3404), True, h, ba) -> new_mkBalBranch6MkBalBranch11(xwv340, xwv341, xwv344, xwv3400, xwv3401, xwv3402, xwv3403, xwv3404, new_lt7(new_sizeFM0(xwv3404, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xwv3403, h, ba))), h, ba) 26.56/9.58 new_esEs35(xwv540, xwv550, ty_Double) -> new_esEs17(xwv540, xwv550) 26.56/9.58 new_not(False) -> True 26.56/9.58 new_esEs28(xwv40000, xwv30000, app(ty_[], fce)) -> new_esEs12(xwv40000, xwv30000, fce) 26.56/9.58 new_lt21(xwv540, xwv550, ty_Double) -> new_lt5(xwv540, xwv550) 26.56/9.58 new_ltEs23(xwv67, xwv70, app(app(app(ty_@3, dfc), dfd), dfe)) -> new_ltEs15(xwv67, xwv70, dfc, dfd, dfe) 26.56/9.58 new_ltEs5(Right(xwv540), Right(xwv550), eeb, ty_Char) -> new_ltEs7(xwv540, xwv550) 26.56/9.58 new_delFromFM14(xwv31, xwv32, xwv33, xwv34, GT, h, ba) -> new_delFromFM12(xwv31, xwv32, xwv33, xwv34, h, ba) 26.56/9.58 new_esEs19(Right(xwv40000), Right(xwv30000), eae, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.56/9.58 new_esEs30(xwv40002, xwv30002, ty_Integer) -> new_esEs26(xwv40002, xwv30002) 26.56/9.58 new_esEs26(Integer(xwv40000), Integer(xwv30000)) -> new_primEqInt(xwv40000, xwv30000) 26.56/9.58 new_ltEs21(xwv83, xwv84, ty_@0) -> new_ltEs4(xwv83, xwv84) 26.56/9.58 new_compare18(Just(xwv4000), Nothing, dbf) -> GT 26.56/9.58 new_esEs6(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.56/9.58 new_ltEs18(xwv114, xwv116, ty_Int) -> new_ltEs6(xwv114, xwv116) 26.56/9.58 new_esEs21(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), eag, eah) -> new_asAs(new_esEs28(xwv40000, xwv30000, eag), new_esEs27(xwv40001, xwv30001, eah)) 26.56/9.58 new_esEs9(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.56/9.58 new_esEs28(xwv40000, xwv30000, app(app(ty_Either, fbe), fbf)) -> new_esEs19(xwv40000, xwv30000, fbe, fbf) 26.56/9.58 new_esEs38(xwv66, xwv69, app(app(ty_@2, dga), dgb)) -> new_esEs21(xwv66, xwv69, dga, dgb) 26.56/9.58 new_esEs27(xwv40001, xwv30001, app(app(app(ty_@3, fah), fba), fbb)) -> new_esEs25(xwv40001, xwv30001, fah, fba, fbb) 26.56/9.58 new_ltEs20(xwv542, xwv552, app(ty_Ratio, cca)) -> new_ltEs17(xwv542, xwv552, cca) 26.56/9.58 new_esEs5(xwv4000, xwv3000, app(ty_Ratio, eba)) -> new_esEs23(xwv4000, xwv3000, eba) 26.56/9.58 new_ltEs10(Just(xwv540), Just(xwv550), ty_Float) -> new_ltEs12(xwv540, xwv550) 26.56/9.58 new_lt23(xwv66, xwv69, ty_Double) -> new_lt5(xwv66, xwv69) 26.56/9.58 new_esEs19(Right(xwv40000), Right(xwv30000), eae, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.56/9.58 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.56/9.58 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.56/9.58 new_delFromFM21(xwv15, xwv16, xwv17, xwv18, xwv19, xwv20, xwv21, xwv22, GT, bc, bd) -> new_mkBalBranch(:(xwv15, xwv16), xwv17, xwv19, new_delFromFM0(xwv20, :(xwv21, xwv22), bc, bd), bc, bd) 26.56/9.58 new_ltEs24(xwv54, xwv55, ty_Bool) -> new_ltEs8(xwv54, xwv55) 26.56/9.58 new_ltEs23(xwv67, xwv70, ty_@0) -> new_ltEs4(xwv67, xwv70) 26.56/9.58 new_ltEs14(LT, EQ) -> True 26.56/9.58 new_compare27(GT, LT) -> GT 26.56/9.58 new_esEs32(xwv40000, xwv30000, app(ty_[], bff)) -> new_esEs12(xwv40000, xwv30000, bff) 26.56/9.58 new_esEs9(xwv4000, xwv3000, app(ty_Maybe, ff)) -> new_esEs16(xwv4000, xwv3000, ff) 26.56/9.58 new_esEs29(xwv113, xwv115, ty_Float) -> new_esEs22(xwv113, xwv115) 26.56/9.58 new_compare6(@0, @0) -> EQ 26.56/9.58 new_esEs31(xwv40001, xwv30001, app(ty_[], bed)) -> new_esEs12(xwv40001, xwv30001, bed) 26.56/9.58 new_ltEs22(xwv76, xwv77, ty_Char) -> new_ltEs7(xwv76, xwv77) 26.56/9.58 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.56/9.58 new_esEs9(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.56/9.58 new_esEs38(xwv66, xwv69, ty_Double) -> new_esEs17(xwv66, xwv69) 26.56/9.58 new_compare19(Float(xwv4000, Pos(xwv40010)), Float(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.56/9.58 new_compare19(Float(xwv4000, Neg(xwv40010)), Float(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.56/9.58 new_ltEs21(xwv83, xwv84, app(app(ty_Either, cfh), cga)) -> new_ltEs5(xwv83, xwv84, cfh, cga) 26.56/9.58 new_ltEs21(xwv83, xwv84, app(ty_Maybe, cfc)) -> new_ltEs10(xwv83, xwv84, cfc) 26.56/9.58 new_ltEs22(xwv76, xwv77, app(app(ty_Either, dag), dah)) -> new_ltEs5(xwv76, xwv77, dag, dah) 26.56/9.58 new_delFromFM17(xwv300, xwv301, xwv31, xwv32, xwv33, xwv34, h, ba) -> error([]) 26.56/9.58 new_ltEs10(Just(xwv540), Just(xwv550), app(app(app(ty_@3, gbg), gbh), gca)) -> new_ltEs15(xwv540, xwv550, gbg, gbh, gca) 26.56/9.58 new_glueBal2Mid_elt200(xwv378, xwv379, xwv380, xwv381, xwv382, xwv383, xwv384, xwv385, xwv386, xwv387, xwv388, xwv389, xwv390, Branch(xwv3910, xwv3911, xwv3912, xwv3913, xwv3914), xwv392, gcf, gcg) -> new_glueBal2Mid_elt200(xwv378, xwv379, xwv380, xwv381, xwv382, xwv383, xwv384, xwv385, xwv386, xwv387, xwv3910, xwv3911, xwv3912, xwv3913, xwv3914, gcf, gcg) 26.56/9.58 new_glueBal2Mid_elt100(xwv441, xwv442, xwv443, xwv444, xwv445, xwv446, xwv447, xwv448, xwv449, xwv450, xwv451, xwv452, xwv453, xwv454, EmptyFM, dch, dda) -> xwv452 26.56/9.58 new_esEs8(xwv4001, xwv3001, ty_Ordering) -> new_esEs15(xwv4001, xwv3001) 26.56/9.58 new_esEs30(xwv40002, xwv30002, app(ty_[], bdb)) -> new_esEs12(xwv40002, xwv30002, bdb) 26.56/9.58 new_ltEs20(xwv542, xwv552, app(ty_Maybe, cbb)) -> new_ltEs10(xwv542, xwv552, cbb) 26.56/9.58 new_esEs27(xwv40001, xwv30001, app(app(ty_Either, fac), fad)) -> new_esEs19(xwv40001, xwv30001, fac, fad) 26.56/9.58 new_ltEs23(xwv67, xwv70, ty_Char) -> new_ltEs7(xwv67, xwv70) 26.56/9.58 new_esEs13(xwv40000, xwv30000, app(app(ty_@2, eeg), eeh)) -> new_esEs21(xwv40000, xwv30000, eeg, eeh) 26.56/9.58 new_delFromFM00(xwv97, xwv98, xwv99, xwv100, xwv101, xwv102, xwv103, xwv104, False, xwv106, bg, bh) -> error([]) 26.56/9.58 new_esEs12([], [], ebb) -> True 26.56/9.58 new_esEs28(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.58 new_ltEs10(Just(xwv540), Just(xwv550), ty_Integer) -> new_ltEs16(xwv540, xwv550) 26.56/9.58 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.56/9.58 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.56/9.58 new_ltEs23(xwv67, xwv70, ty_Bool) -> new_ltEs8(xwv67, xwv70) 26.56/9.58 new_primEqNat0(Zero, Zero) -> True 26.56/9.58 new_glueBal2Mid_key200(xwv362, xwv363, xwv364, xwv365, xwv366, xwv367, xwv368, xwv369, xwv370, xwv371, xwv372, xwv373, xwv374, EmptyFM, xwv376, dbb, dbc) -> xwv372 26.56/9.58 new_esEs27(xwv40001, xwv30001, ty_@0) -> new_esEs24(xwv40001, xwv30001) 26.56/9.58 new_esEs27(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.56/9.58 new_asAs(False, xwv131) -> False 26.56/9.58 new_primPlusInt2(Pos(xwv3440), xwv340, xwv341, xwv344, xwv340, h, ba) -> new_primPlusInt0(xwv3440, new_sizeFM0(xwv344, h, ba)) 26.56/9.58 new_compare7(Right(xwv4000), Right(xwv3000), dbh, dca) -> new_compare25(xwv4000, xwv3000, new_esEs11(xwv4000, xwv3000, dca), dbh, dca) 26.56/9.58 new_esEs19(Right(xwv40000), Right(xwv30000), eae, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.56/9.58 new_lt6(xwv113, xwv115, ty_Double) -> new_lt5(xwv113, xwv115) 26.56/9.58 new_esEs8(xwv4001, xwv3001, ty_Int) -> new_esEs18(xwv4001, xwv3001) 26.56/9.58 new_esEs8(xwv4001, xwv3001, ty_Bool) -> new_esEs14(xwv4001, xwv3001) 26.56/9.58 new_ltEs23(xwv67, xwv70, ty_Ordering) -> new_ltEs14(xwv67, xwv70) 26.56/9.58 new_esEs9(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.56/9.58 new_ltEs21(xwv83, xwv84, app(ty_Ratio, cgb)) -> new_ltEs17(xwv83, xwv84, cgb) 26.56/9.58 new_esEs6(xwv4000, xwv3000, app(ty_Ratio, fhb)) -> new_esEs23(xwv4000, xwv3000, fhb) 26.56/9.58 new_delFromFM14(xwv31, xwv32, xwv33, xwv34, LT, h, ba) -> new_mkBalBranch([], xwv31, new_delFromFM0(xwv33, [], h, ba), xwv34, h, ba) 26.56/9.58 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Double, eaf) -> new_esEs17(xwv40000, xwv30000) 26.56/9.58 new_esEs19(Right(xwv40000), Right(xwv30000), eae, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.58 26.56/9.58 The set Q consists of the following terms: 26.56/9.58 26.56/9.58 new_esEs6(x0, x1, app(ty_[], x2)) 26.56/9.58 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_esEs30(x0, x1, ty_Integer) 26.56/9.58 new_lt15(x0, x1, x2, x3, x4) 26.56/9.58 new_esEs40(x0, x1, ty_Ordering) 26.56/9.58 new_esEs31(x0, x1, ty_@0) 26.56/9.58 new_deleteMin0(x0, x1, x2, Branch(x3, x4, x5, x6, x7), x8, x9, x10) 26.56/9.58 new_lt11(x0, x1) 26.56/9.58 new_esEs7(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_primPlusInt1(x0, Neg(x1)) 26.56/9.58 new_lt20(x0, x1, ty_Int) 26.56/9.58 new_ltEs21(x0, x1, ty_Int) 26.56/9.58 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_delFromFM0(Branch([], x0, x1, x2, x3), [], x4, x5) 26.56/9.58 new_primCmpNat0(Succ(x0), Succ(x1)) 26.56/9.58 new_esEs38(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_esEs16(Just(x0), Just(x1), ty_Int) 26.56/9.58 new_esEs40(x0, x1, ty_Double) 26.56/9.58 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 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) 26.56/9.58 new_esEs31(x0, x1, ty_Bool) 26.56/9.58 new_pePe(True, x0) 26.56/9.58 new_esEs19(Left(x0), Left(x1), ty_Integer, x2) 26.56/9.58 new_compare0(x0, x1, ty_Ordering) 26.56/9.58 new_esEs6(x0, x1, ty_Integer) 26.56/9.58 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.56/9.58 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 26.56/9.58 new_sr(x0, x1) 26.56/9.58 new_lt20(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs13(x0, x1, ty_Integer) 26.56/9.58 new_esEs39(x0, x1, ty_Int) 26.56/9.58 new_esEs7(x0, x1, ty_Int) 26.56/9.58 new_esEs29(x0, x1, app(ty_[], x2)) 26.56/9.58 new_primEqInt(Pos(Zero), Pos(Zero)) 26.56/9.58 new_compare0(x0, x1, ty_Char) 26.56/9.58 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_ltEs22(x0, x1, ty_@0) 26.56/9.58 new_esEs7(x0, x1, app(ty_[], x2)) 26.56/9.58 new_primPlusNat0(Zero, Succ(x0)) 26.56/9.58 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_esEs10(x0, x1, ty_Integer) 26.56/9.58 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 26.56/9.58 new_esEs14(True, True) 26.56/9.58 new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 26.56/9.58 new_esEs9(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_primEqInt(Neg(Zero), Neg(Zero)) 26.56/9.58 new_compare0(x0, x1, ty_Double) 26.56/9.58 new_primPlusInt1(x0, Pos(x1)) 26.56/9.58 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.56/9.58 new_esEs38(x0, x1, ty_Bool) 26.56/9.58 new_compare6(@0, @0) 26.56/9.58 new_lt23(x0, x1, ty_Int) 26.56/9.58 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_lt22(x0, x1, ty_Double) 26.56/9.58 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 26.56/9.58 new_primMulInt(Pos(x0), Neg(x1)) 26.56/9.58 new_primMulInt(Neg(x0), Pos(x1)) 26.56/9.58 new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_ltEs19(x0, x1, ty_Integer) 26.56/9.58 new_esEs6(x0, x1, ty_@0) 26.56/9.58 new_esEs8(x0, x1, app(ty_[], x2)) 26.56/9.58 new_primMulInt(Neg(x0), Neg(x1)) 26.56/9.58 new_ltEs22(x0, x1, ty_Int) 26.56/9.58 new_esEs4(x0, x1, ty_Int) 26.56/9.58 new_compare24(x0, x1, True, x2, x3) 26.56/9.58 new_compare14(x0, x1, False, x2, x3) 26.56/9.58 new_esEs10(x0, x1, ty_@0) 26.56/9.58 new_compare112(x0, x1, False, x2, x3) 26.56/9.58 new_esEs30(x0, x1, ty_@0) 26.56/9.58 new_esEs19(Left(x0), Left(x1), ty_Bool, x2) 26.56/9.58 new_esEs6(x0, x1, ty_Float) 26.56/9.58 new_ltEs22(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs12(:(x0, x1), [], x2) 26.56/9.58 new_ltEs20(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs27(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs40(x0, x1, ty_Char) 26.56/9.58 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.56/9.58 new_compare212(x0, x1, x2, x3, False, x4, x5) 26.56/9.58 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.56/9.58 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 26.56/9.58 new_esEs31(x0, x1, ty_Integer) 26.56/9.58 new_esEs13(x0, x1, ty_Bool) 26.56/9.58 new_lt22(x0, x1, ty_Ordering) 26.56/9.58 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs30(x0, x1, ty_Bool) 26.56/9.58 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs30(x0, x1, ty_Float) 26.56/9.58 new_ltEs4(x0, x1) 26.56/9.58 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 26.56/9.58 new_deleteMax0(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10) 26.56/9.58 new_esEs38(x0, x1, ty_Integer) 26.56/9.58 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, x0, False, x11, x12) 26.56/9.58 new_primEqInt(Pos(Zero), Neg(Zero)) 26.56/9.58 new_primEqInt(Neg(Zero), Pos(Zero)) 26.56/9.58 new_delFromFM21(x0, x1, x2, x3, x4, x5, x6, x7, EQ, x8, x9) 26.56/9.58 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 26.56/9.58 new_gt(x0, x1) 26.56/9.58 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_delFromFM0(EmptyFM, x0, x1, x2) 26.56/9.58 new_ltEs18(x0, x1, ty_Double) 26.56/9.58 new_esEs32(x0, x1, ty_Integer) 26.56/9.58 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_ltEs18(x0, x1, ty_Char) 26.56/9.58 new_primEqNat0(Succ(x0), Succ(x1)) 26.56/9.58 new_esEs10(x0, x1, ty_Bool) 26.56/9.58 new_esEs10(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs11(x0, x1, ty_Ordering) 26.56/9.58 new_mkBalBranch6MkBalBranch4(x0, x1, Branch(x2, x3, x4, x5, x6), x0, True, x7, x8) 26.56/9.58 new_ltEs22(x0, x1, ty_Bool) 26.56/9.58 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, EmptyFM, x5, x0, False, x6, x7) 26.56/9.58 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_glueBal2Mid_key200(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, EmptyFM, x13, x14, x15) 26.56/9.58 new_esEs38(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_delFromFM14(x0, x1, x2, x3, GT, x4, x5) 26.56/9.58 new_delFromFM0(Branch([], x0, x1, x2, x3), :(x4, x5), x6, x7) 26.56/9.58 new_ltEs21(x0, x1, ty_Integer) 26.56/9.58 new_esEs11(x0, x1, ty_Char) 26.56/9.58 new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.56/9.58 new_compare15(x0, x1) 26.56/9.58 new_primMulNat0(Zero, Succ(x0)) 26.56/9.58 new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_lt20(x0, x1, ty_Integer) 26.56/9.58 new_ltEs23(x0, x1, ty_Int) 26.56/9.58 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.56/9.58 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.56/9.58 new_compare210(x0, x1, True, x2) 26.56/9.58 new_esEs34(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_compare110(x0, x1, x2, x3, True, x4, x5, x6) 26.56/9.58 new_esEs5(x0, x1, ty_Int) 26.56/9.58 new_esEs7(x0, x1, ty_@0) 26.56/9.58 new_esEs8(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_compare28(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.56/9.58 new_compare29(:%(x0, x1), :%(x2, x3), ty_Integer) 26.56/9.58 new_ltEs10(Just(x0), Just(x1), ty_Double) 26.56/9.58 new_esEs10(x0, x1, ty_Int) 26.56/9.58 new_lt21(x0, x1, ty_Bool) 26.56/9.58 new_lt19(x0, x1, ty_Float) 26.56/9.58 new_esEs27(x0, x1, ty_Bool) 26.56/9.58 new_esEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.56/9.58 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_primMinusNat0(Succ(x0), Zero) 26.56/9.58 new_esEs27(x0, x1, ty_Integer) 26.56/9.58 new_lt19(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs16(Nothing, Just(x0), x1) 26.56/9.58 new_esEs31(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_esEs33(x0, x1, ty_Float) 26.56/9.58 new_lt6(x0, x1, ty_Char) 26.56/9.58 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.56/9.58 new_esEs10(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_esEs28(x0, x1, ty_@0) 26.56/9.58 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 26.56/9.58 new_esEs11(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_esEs6(x0, x1, ty_Int) 26.56/9.58 new_ltEs22(x0, x1, ty_Integer) 26.56/9.58 new_esEs39(x0, x1, ty_Integer) 26.56/9.58 new_esEs19(Left(x0), Left(x1), ty_Int, x2) 26.56/9.58 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_glueBal2Mid_elt200(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, EmptyFM, x13, x14, x15) 26.56/9.58 new_mkBalBranch6Size_r(x0, x1, x2, x0, x3, x4) 26.56/9.58 new_esEs4(x0, x1, ty_@0) 26.56/9.58 new_mkBalBranch6MkBalBranch3(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) 26.56/9.58 new_esEs4(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.56/9.58 new_esEs10(x0, x1, ty_Float) 26.56/9.58 new_ltEs19(x0, x1, ty_Bool) 26.56/9.58 new_lt19(x0, x1, ty_Char) 26.56/9.58 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_esEs32(x0, x1, ty_Bool) 26.56/9.58 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 26.56/9.58 new_compare111(x0, x1, x2, x3, False, x4, x5) 26.56/9.58 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs13(x0, x1, ty_@0) 26.56/9.58 new_esEs32(x0, x1, ty_Float) 26.56/9.58 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs8(x0, x1, ty_Int) 26.56/9.58 new_ltEs21(x0, x1, ty_Float) 26.56/9.58 new_esEs6(x0, x1, ty_Bool) 26.56/9.58 new_esEs11(x0, x1, ty_Float) 26.56/9.58 new_compare18(Nothing, Just(x0), x1) 26.56/9.58 new_ltEs19(x0, x1, ty_Int) 26.56/9.58 new_compare0(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs36(x0, x1, ty_Integer) 26.56/9.58 new_esEs8(x0, x1, ty_Bool) 26.56/9.58 new_esEs19(Left(x0), Left(x1), ty_Float, x2) 26.56/9.58 new_compare27(LT, GT) 26.56/9.58 new_compare27(GT, LT) 26.56/9.58 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_ltEs21(x0, x1, ty_Bool) 26.56/9.58 new_esEs24(@0, @0) 26.56/9.58 new_ltEs8(True, False) 26.56/9.58 new_ltEs8(False, True) 26.56/9.58 new_lt23(x0, x1, ty_Integer) 26.56/9.58 new_lt20(x0, x1, ty_@0) 26.56/9.58 new_compare25(x0, x1, False, x2, x3) 26.56/9.58 new_lt23(x0, x1, ty_Bool) 26.56/9.58 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.56/9.58 new_delFromFM16(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9) 26.56/9.58 new_primCompAux00(x0, x1, EQ, ty_Int) 26.56/9.58 new_esEs32(x0, x1, ty_Int) 26.56/9.58 new_esEs16(Just(x0), Just(x1), ty_@0) 26.56/9.58 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.56/9.58 new_delFromFM0(Branch(:(x0, x1), x2, x3, x4, x5), [], x6, x7) 26.56/9.58 new_esEs29(x0, x1, ty_Double) 26.56/9.58 new_ltEs23(x0, x1, ty_Bool) 26.56/9.58 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_esEs6(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 26.56/9.58 new_esEs27(x0, x1, ty_Int) 26.56/9.58 new_esEs38(x0, x1, ty_@0) 26.56/9.58 new_lt23(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_compare27(EQ, GT) 26.56/9.58 new_compare27(GT, EQ) 26.56/9.58 new_glueBal2GlueBal1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, False, x10, x11) 26.56/9.58 new_esEs11(x0, x1, app(ty_[], x2)) 26.56/9.58 new_lt22(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_deleteMax0(x0, x1, x2, x3, EmptyFM, x4, x5) 26.56/9.58 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_compare8(Integer(x0), Integer(x1)) 26.56/9.58 new_ltEs19(x0, x1, ty_Float) 26.56/9.58 new_lt6(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs39(x0, x1, ty_Bool) 26.56/9.58 new_lt21(x0, x1, ty_Int) 26.56/9.58 new_ltEs17(x0, x1, x2) 26.56/9.58 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_sizeFM(EmptyFM, x0, x1) 26.56/9.58 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_primMulInt(Pos(x0), Pos(x1)) 26.56/9.58 new_lt7(x0, x1) 26.56/9.58 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x0, False, x3, x4) 26.56/9.58 new_sizeFM0(EmptyFM, x0, x1) 26.56/9.58 new_lt8(x0, x1) 26.56/9.58 new_esEs34(x0, x1, ty_Bool) 26.56/9.58 new_lt12(x0, x1) 26.56/9.58 new_esEs18(x0, x1) 26.56/9.58 new_esEs39(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_esEs6(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_ltEs10(Just(x0), Nothing, x1) 26.56/9.58 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_ltEs19(x0, x1, ty_Double) 26.56/9.58 new_esEs33(x0, x1, ty_@0) 26.56/9.58 new_lt22(x0, x1, ty_Integer) 26.56/9.58 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.56/9.58 new_esEs40(x0, x1, ty_Float) 26.56/9.58 new_esEs9(x0, x1, ty_Integer) 26.56/9.58 new_esEs27(x0, x1, ty_Float) 26.56/9.58 new_esEs15(EQ, EQ) 26.56/9.58 new_esEs34(x0, x1, ty_@0) 26.56/9.58 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_esEs9(x0, x1, ty_Bool) 26.56/9.58 new_ltEs19(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs17(Double(x0, x1), Double(x2, x3)) 26.56/9.58 new_esEs34(x0, x1, ty_Integer) 26.56/9.58 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_compare0(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs35(x0, x1, ty_@0) 26.56/9.58 new_ltEs5(Left(x0), Right(x1), x2, x3) 26.56/9.58 new_ltEs5(Right(x0), Left(x1), x2, x3) 26.56/9.58 new_primPlusInt0(x0, Pos(x1)) 26.56/9.58 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 26.56/9.58 new_esEs9(x0, x1, ty_@0) 26.56/9.58 new_ltEs13(x0, x1, x2) 26.56/9.58 new_ltEs20(x0, x1, ty_Integer) 26.56/9.58 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_esEs9(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_compare0(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_primEqNat0(Zero, Succ(x0)) 26.56/9.58 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs39(x0, x1, ty_Float) 26.56/9.58 new_esEs35(x0, x1, app(ty_[], x2)) 26.56/9.58 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 26.56/9.58 new_primPlusNat0(Zero, Zero) 26.56/9.58 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), False, x12, x13) 26.56/9.58 new_not(True) 26.56/9.58 new_primCompAux00(x0, x1, GT, x2) 26.56/9.58 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_glueBal2Mid_key100(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, EmptyFM, x14, x15) 26.56/9.58 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs30(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs13(x0, x1, ty_Double) 26.56/9.58 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_mkBalBranch(x0, x1, x0, x2, x3, x4) 26.56/9.58 new_delFromFM00(x0, x1, x2, x3, x4, x5, x6, x7, False, x8, x9, x10) 26.56/9.58 new_primPlusInt2(Pos(x0), x1, x2, x3, x1, x4, x5) 26.56/9.58 new_ltEs24(x0, x1, ty_Ordering) 26.56/9.58 new_esEs19(Left(x0), Left(x1), ty_Double, x2) 26.56/9.58 new_esEs33(x0, x1, ty_Int) 26.56/9.58 new_lt22(x0, x1, ty_Bool) 26.56/9.58 new_lt21(x0, x1, ty_Integer) 26.56/9.58 new_esEs32(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_esEs28(x0, x1, ty_Float) 26.56/9.58 new_ltEs20(x0, x1, ty_Char) 26.56/9.58 new_esEs9(x0, x1, ty_Float) 26.56/9.58 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_ltEs19(x0, x1, ty_Ordering) 26.56/9.58 new_lt23(x0, x1, ty_Float) 26.56/9.58 new_ltEs10(Nothing, Just(x0), x1) 26.56/9.58 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_lt19(x0, x1, ty_Ordering) 26.56/9.58 new_esEs33(x0, x1, ty_Bool) 26.56/9.58 new_esEs33(x0, x1, ty_Char) 26.56/9.58 new_ltEs20(x0, x1, ty_Bool) 26.56/9.58 new_compare29(:%(x0, x1), :%(x2, x3), ty_Int) 26.56/9.58 new_primCmpNat0(Zero, Succ(x0)) 26.56/9.58 new_esEs30(x0, x1, ty_Int) 26.56/9.58 new_esEs16(Just(x0), Just(x1), ty_Integer) 26.56/9.58 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_primCompAux00(x0, x1, EQ, ty_Double) 26.56/9.58 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.56/9.58 new_esEs9(x0, x1, ty_Int) 26.56/9.58 new_esEs34(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_delFromFM22(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9) 26.56/9.58 new_lt21(x0, x1, ty_@0) 26.56/9.58 new_lt6(x0, x1, ty_Ordering) 26.56/9.58 new_compare27(LT, LT) 26.56/9.58 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_lt19(x0, x1, ty_Double) 26.56/9.58 new_ltEs20(x0, x1, ty_Int) 26.56/9.58 new_ltEs14(GT, GT) 26.56/9.58 new_esEs26(Integer(x0), Integer(x1)) 26.56/9.58 new_esEs13(x0, x1, ty_Char) 26.56/9.58 new_esEs12([], :(x0, x1), x2) 26.56/9.58 new_esEs22(Float(x0, x1), Float(x2, x3)) 26.56/9.58 new_primCompAux00(x0, x1, LT, x2) 26.56/9.58 new_compare9(False, False) 26.56/9.58 new_lt6(x0, x1, ty_Double) 26.56/9.58 new_esEs34(x0, x1, ty_Int) 26.56/9.58 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.56/9.58 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.56/9.58 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.56/9.58 new_glueBal2GlueBal1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, True, x10, x11) 26.56/9.58 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.56/9.58 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.56/9.58 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.56/9.58 new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.56/9.58 new_esEs40(x0, x1, ty_Integer) 26.56/9.58 new_esEs31(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs28(x0, x1, ty_Char) 26.56/9.58 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_lt20(x0, x1, ty_Bool) 26.56/9.58 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_esEs9(x0, x1, ty_Char) 26.56/9.58 new_ltEs12(x0, x1) 26.56/9.58 new_glueBal(EmptyFM, x0, x1, x2) 26.56/9.58 new_ltEs20(x0, x1, ty_Float) 26.56/9.58 new_lt22(x0, x1, ty_Int) 26.56/9.58 new_ltEs23(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs29(x0, x1, ty_Bool) 26.56/9.58 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.56/9.58 new_mkBalBranch6MkBalBranch4(x0, x1, EmptyFM, x0, True, x2, x3) 26.56/9.58 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.56/9.58 new_esEs13(x0, x1, ty_Int) 26.56/9.58 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs34(x0, x1, ty_Float) 26.56/9.58 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_esEs40(x0, x1, ty_@0) 26.56/9.58 new_ltEs21(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs33(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs28(x0, x1, ty_Int) 26.56/9.58 new_esEs5(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) 26.56/9.58 new_lt22(x0, x1, ty_Char) 26.56/9.58 new_ltEs10(Just(x0), Just(x1), ty_Ordering) 26.56/9.58 new_primMulNat0(Succ(x0), Succ(x1)) 26.56/9.58 new_delFromFM17(x0, x1, x2, x3, x4, x5, x6, x7) 26.56/9.58 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs16(Just(x0), Just(x1), ty_Bool) 26.56/9.58 new_esEs33(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_primEqNat0(Zero, Zero) 26.56/9.58 new_esEs30(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_compare111(x0, x1, x2, x3, True, x4, x5) 26.56/9.58 new_lt22(x0, x1, ty_Float) 26.56/9.58 new_esEs29(x0, x1, ty_Int) 26.56/9.58 new_lt6(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_delFromFM00(x0, x1, x2, x3, x4, x5, x6, x7, True, True, x8, x9) 26.56/9.58 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs33(x0, x1, ty_Integer) 26.56/9.58 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_not(False) 26.56/9.58 new_esEs5(x0, x1, ty_Double) 26.56/9.58 new_compare18(Just(x0), Just(x1), x2) 26.56/9.58 new_esEs28(x0, x1, ty_Integer) 26.56/9.58 new_compare27(EQ, EQ) 26.56/9.58 new_esEs13(x0, x1, ty_Float) 26.56/9.58 new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) 26.56/9.58 new_esEs16(Nothing, Nothing, x0) 26.56/9.58 new_ltEs18(x0, x1, ty_Ordering) 26.56/9.58 new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 26.56/9.58 new_lt6(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_esEs11(x0, x1, ty_Double) 26.56/9.58 new_ltEs8(True, True) 26.56/9.58 new_esEs28(x0, x1, ty_Bool) 26.56/9.58 new_esEs40(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs32(x0, x1, ty_Double) 26.56/9.58 new_lt22(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_esEs29(x0, x1, ty_Float) 26.56/9.58 new_esEs39(x0, x1, ty_Double) 26.56/9.58 new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.56/9.58 new_lt20(x0, x1, ty_Float) 26.56/9.58 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_lt21(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs29(x0, x1, ty_Char) 26.56/9.58 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_primPlusNat0(Succ(x0), Succ(x1)) 26.56/9.58 new_esEs27(x0, x1, ty_Double) 26.56/9.58 new_ltEs21(x0, x1, ty_Double) 26.56/9.58 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.56/9.58 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.56/9.58 new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.56/9.58 new_delFromFM14(x0, x1, x2, x3, LT, x4, x5) 26.56/9.58 new_esEs10(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_ltEs14(EQ, LT) 26.56/9.58 new_esEs16(Just(x0), Just(x1), ty_Float) 26.56/9.58 new_ltEs14(LT, EQ) 26.56/9.58 new_fsEs(x0) 26.56/9.58 new_esEs4(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_compare0(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_ltEs23(x0, x1, ty_Double) 26.56/9.58 new_esEs34(x0, x1, ty_Char) 26.56/9.58 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs8(x0, x1, ty_Double) 26.56/9.58 new_compare16(Char(x0), Char(x1)) 26.56/9.58 new_compare14(x0, x1, True, x2, x3) 26.56/9.58 new_ltEs10(Just(x0), Just(x1), ty_Bool) 26.56/9.58 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_compare10(x0, x1, True, x2) 26.56/9.58 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x0, False, x3, x4) 26.56/9.58 new_esEs7(x0, x1, ty_Double) 26.56/9.58 new_esEs27(x0, x1, ty_Ordering) 26.56/9.58 new_primMinusNat0(Zero, Succ(x0)) 26.56/9.58 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_esEs16(Just(x0), Just(x1), ty_Ordering) 26.56/9.58 new_mkBalBranch6MkBalBranch3(x0, x1, x2, EmptyFM, True, x3, x4) 26.56/9.58 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 26.56/9.58 new_compare0(x0, x1, ty_Int) 26.56/9.58 new_esEs39(x0, x1, ty_Ordering) 26.56/9.58 new_esEs32(x0, x1, ty_Char) 26.56/9.58 new_compare110(x0, x1, x2, x3, False, x4, x5, x6) 26.56/9.58 new_lt6(x0, x1, ty_Bool) 26.56/9.58 new_esEs4(x0, x1, ty_Double) 26.56/9.58 new_lt20(x0, x1, ty_Ordering) 26.56/9.58 new_esEs38(x0, x1, ty_Char) 26.56/9.58 new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.56/9.58 new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) 26.56/9.58 new_esEs32(x0, x1, app(ty_[], x2)) 26.56/9.58 new_compare210(x0, x1, False, x2) 26.56/9.58 new_esEs7(x0, x1, ty_Ordering) 26.56/9.58 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 26.56/9.58 new_lt6(x0, x1, ty_Integer) 26.56/9.58 new_esEs35(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_esEs25(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.56/9.58 new_esEs40(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_lt20(x0, x1, ty_Double) 26.56/9.58 new_primMinusNat0(Zero, Zero) 26.56/9.58 new_lt6(x0, x1, ty_@0) 26.56/9.58 new_ltEs10(Just(x0), Just(x1), ty_Integer) 26.56/9.58 new_compare26(:(x0, x1), [], x2) 26.56/9.58 new_esEs16(Just(x0), Just(x1), ty_Char) 26.56/9.58 new_esEs4(x0, x1, ty_Ordering) 26.56/9.58 new_lt17(x0, x1) 26.56/9.58 new_lt5(x0, x1) 26.56/9.58 new_esEs16(Just(x0), Just(x1), ty_Double) 26.56/9.58 new_lt23(x0, x1, ty_Ordering) 26.56/9.58 new_lt23(x0, x1, ty_Double) 26.56/9.58 new_glueBal2Mid_elt100(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, EmptyFM, x14, x15) 26.56/9.58 new_esEs28(x0, x1, ty_Double) 26.56/9.58 new_ltEs14(LT, LT) 26.56/9.58 new_esEs28(x0, x1, ty_Ordering) 26.56/9.58 new_ltEs10(Just(x0), Just(x1), ty_@0) 26.56/9.58 new_lt13(x0, x1, x2) 26.56/9.58 new_esEs7(x0, x1, ty_Char) 26.56/9.58 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_lt20(x0, x1, ty_Char) 26.56/9.58 new_esEs40(x0, x1, ty_Int) 26.56/9.58 new_esEs39(x0, x1, app(ty_[], x2)) 26.56/9.58 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) 26.56/9.58 new_primMulNat0(Succ(x0), Zero) 26.56/9.58 new_esEs15(EQ, GT) 26.56/9.58 new_esEs15(GT, EQ) 26.56/9.58 new_compare17(@2(x0, x1), @2(x2, x3), x4, x5) 26.56/9.58 new_asAs(False, x0) 26.56/9.58 new_esEs15(LT, LT) 26.56/9.58 new_compare7(Right(x0), Right(x1), x2, x3) 26.56/9.58 new_sIZE_RATIO 26.56/9.58 new_esEs38(x0, x1, ty_Ordering) 26.56/9.58 new_esEs31(x0, x1, ty_Char) 26.56/9.58 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 26.56/9.58 new_compare24(x0, x1, False, x2, x3) 26.56/9.58 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_delFromFM00(x0, x1, x2, x3, x4, x5, x6, x7, True, False, x8, x9) 26.56/9.58 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x0, True, x7, x8) 26.56/9.58 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_ltEs8(False, False) 26.56/9.58 new_esEs11(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_esEs14(False, True) 26.56/9.58 new_esEs14(True, False) 26.56/9.58 new_delFromFM13(x0, x1, x2, x3, x4, x5, EQ, x6, x7) 26.56/9.58 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs4(x0, x1, ty_Char) 26.56/9.58 new_compare25(x0, x1, True, x2, x3) 26.56/9.58 new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 26.56/9.58 new_esEs29(x0, x1, ty_Integer) 26.56/9.58 new_compare112(x0, x1, True, x2, x3) 26.56/9.58 new_esEs8(x0, x1, ty_Ordering) 26.56/9.58 new_esEs40(x0, x1, app(ty_[], x2)) 26.56/9.58 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_ltEs18(x0, x1, ty_Int) 26.56/9.58 new_esEs35(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_ltEs22(x0, x1, ty_Char) 26.56/9.58 new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.56/9.58 new_ltEs21(x0, x1, ty_Ordering) 26.56/9.58 new_ltEs23(x0, x1, ty_Ordering) 26.56/9.58 new_ltEs22(x0, x1, ty_Double) 26.56/9.58 new_esEs35(x0, x1, ty_Float) 26.56/9.58 new_primPlusInt(Pos(x0), x1, x2, x3, x4, x5) 26.56/9.58 new_esEs19(Right(x0), Right(x1), x2, ty_Float) 26.56/9.58 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 26.56/9.58 new_compare26(:(x0, x1), :(x2, x3), x4) 26.56/9.58 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_esEs5(x0, x1, ty_Ordering) 26.56/9.58 new_lt21(x0, x1, ty_Ordering) 26.56/9.58 new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 26.56/9.58 new_esEs30(x0, x1, ty_Char) 26.56/9.58 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.56/9.58 new_ltEs18(x0, x1, app(ty_[], x2)) 26.56/9.58 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 26.56/9.58 new_glueBal(Branch(x0, x1, x2, x3, x4), EmptyFM, x5, x6) 26.56/9.58 new_esEs5(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_esEs32(x0, x1, ty_Ordering) 26.56/9.58 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.56/9.58 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.56/9.58 new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.56/9.58 new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.56/9.58 new_esEs12(:(x0, x1), :(x2, x3), x4) 26.56/9.58 new_esEs5(x0, x1, ty_Char) 26.56/9.58 new_esEs16(Just(x0), Just(x1), app(ty_[], x2)) 26.56/9.58 new_compare13(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.56/9.58 new_esEs19(Left(x0), Left(x1), ty_Char, x2) 26.56/9.58 new_esEs31(x0, x1, ty_Double) 26.56/9.58 new_compare13(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.56/9.58 new_primCompAux00(x0, x1, EQ, ty_Float) 26.56/9.58 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.56/9.58 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.56/9.58 new_primCompAux00(x0, x1, EQ, ty_Ordering) 26.56/9.58 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, EmptyFM, False, x7, x8) 26.56/9.58 new_esEs6(x0, x1, ty_Char) 26.56/9.58 new_esEs40(x0, x1, ty_Bool) 26.56/9.58 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 26.56/9.58 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.56/9.58 new_esEs10(x0, x1, ty_Char) 26.56/9.58 new_lt22(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs15(LT, GT) 26.56/9.58 new_esEs15(GT, LT) 26.56/9.58 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs16(Just(x0), Nothing, x1) 26.56/9.58 new_lt6(x0, x1, ty_Float) 26.56/9.58 new_esEs13(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_esEs33(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_ltEs20(x0, x1, ty_Double) 26.56/9.58 new_compare0(x0, x1, ty_@0) 26.56/9.58 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_ltEs14(LT, GT) 26.56/9.58 new_ltEs14(GT, LT) 26.56/9.58 new_esEs9(x0, x1, ty_Double) 26.56/9.58 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 26.56/9.58 new_compare7(Left(x0), Right(x1), x2, x3) 26.56/9.58 new_compare7(Right(x0), Left(x1), x2, x3) 26.56/9.58 new_esEs34(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_esEs19(Right(x0), Right(x1), x2, ty_Double) 26.56/9.58 new_esEs6(x0, x1, ty_Ordering) 26.56/9.58 new_ltEs23(x0, x1, ty_Float) 26.56/9.58 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_esEs13(x0, x1, ty_Ordering) 26.56/9.58 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs30(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 26.56/9.58 new_pePe(False, x0) 26.56/9.58 new_ltEs20(x0, x1, ty_Ordering) 26.56/9.58 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.56/9.58 new_delFromFM13(x0, x1, x2, x3, x4, x5, LT, x6, x7) 26.56/9.58 new_primPlusNat1(Succ(x0), x1) 26.56/9.58 new_esEs31(x0, x1, ty_Ordering) 26.56/9.58 new_ltEs24(x0, x1, ty_Double) 26.56/9.58 new_lt23(x0, x1, ty_Char) 26.56/9.58 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_ltEs22(x0, x1, ty_Ordering) 26.56/9.58 new_primPlusInt(Neg(x0), x1, x2, x3, x4, x5) 26.56/9.58 new_lt6(x0, x1, ty_Int) 26.56/9.58 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 26.56/9.58 new_sr0(Integer(x0), Integer(x1)) 26.56/9.58 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.56/9.58 new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.56/9.58 new_delFromFM15(x0, x1, x2, x3, x4, x5, x6, x7, EQ, x8, x9) 26.56/9.58 new_ltEs24(x0, x1, app(ty_[], x2)) 26.56/9.58 new_ltEs14(EQ, GT) 26.56/9.58 new_ltEs14(GT, EQ) 26.56/9.58 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_lt22(x0, x1, ty_@0) 26.56/9.58 new_lt21(x0, x1, ty_Char) 26.56/9.58 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.56/9.58 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.56/9.58 new_delFromFM12(x0, x1, x2, x3, x4, x5) 26.56/9.58 new_esEs11(x0, x1, ty_Bool) 26.56/9.58 new_mkBalBranch6Size_l(x0, x1, x2, x0, x3, x4) 26.56/9.58 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs8(x0, x1, ty_Float) 26.56/9.58 new_esEs35(x0, x1, ty_Integer) 26.56/9.58 new_esEs38(x0, x1, ty_Double) 26.56/9.58 new_lt21(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_esEs35(x0, x1, ty_Ordering) 26.56/9.58 new_ltEs19(x0, x1, ty_Char) 26.56/9.58 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 26.56/9.58 new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) 26.56/9.58 new_esEs35(x0, x1, ty_Bool) 26.56/9.58 new_compare26([], :(x0, x1), x2) 26.56/9.58 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.56/9.58 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs12([], [], x0) 26.56/9.58 new_compare212(x0, x1, x2, x3, True, x4, x5) 26.56/9.58 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_ltEs6(x0, x1) 26.56/9.58 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 26.56/9.58 new_esEs39(x0, x1, ty_Char) 26.56/9.58 new_ltEs24(x0, x1, ty_@0) 26.56/9.58 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 26.56/9.58 new_delFromFM15(x0, x1, x2, x3, x4, x5, x6, x7, LT, x8, x9) 26.56/9.58 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_esEs34(x0, x1, ty_Double) 26.56/9.58 new_esEs11(x0, x1, ty_Int) 26.56/9.58 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 26.56/9.58 new_primCmpNat0(Succ(x0), Zero) 26.56/9.58 new_lt19(x0, x1, ty_Int) 26.56/9.58 new_esEs5(x0, x1, ty_Float) 26.56/9.58 new_primCompAux00(x0, x1, EQ, ty_Char) 26.56/9.58 new_esEs29(x0, x1, ty_@0) 26.56/9.58 new_esEs27(x0, x1, ty_Char) 26.56/9.58 new_ltEs21(x0, x1, ty_Char) 26.56/9.58 new_primPlusNat0(Succ(x0), Zero) 26.56/9.58 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_primEqNat0(Succ(x0), Zero) 26.56/9.58 new_ltEs23(x0, x1, ty_Char) 26.56/9.58 new_esEs8(x0, x1, ty_Char) 26.56/9.58 new_lt19(x0, x1, ty_@0) 26.56/9.58 new_esEs7(x0, x1, ty_Float) 26.56/9.58 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_ltEs23(x0, x1, ty_Integer) 26.56/9.58 new_esEs37(x0, x1, ty_Int) 26.56/9.58 new_compare9(False, True) 26.56/9.58 new_compare9(True, False) 26.56/9.58 new_lt21(x0, x1, ty_Float) 26.56/9.58 new_primMulNat0(Zero, Zero) 26.56/9.58 new_primCompAux00(x0, x1, EQ, ty_@0) 26.56/9.58 new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs11(x0, x1, ty_Integer) 26.56/9.58 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_ltEs14(EQ, EQ) 26.56/9.58 new_compare7(Left(x0), Left(x1), x2, x3) 26.56/9.58 new_esEs32(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_primCompAux00(x0, x1, EQ, ty_Bool) 26.56/9.58 new_lt19(x0, x1, ty_Bool) 26.56/9.58 new_esEs39(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_lt18(x0, x1, x2) 26.56/9.58 new_esEs19(Left(x0), Right(x1), x2, x3) 26.56/9.58 new_esEs19(Right(x0), Left(x1), x2, x3) 26.56/9.58 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.56/9.58 new_ltEs20(x0, x1, ty_@0) 26.56/9.58 new_esEs35(x0, x1, ty_Char) 26.56/9.58 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs19(Right(x0), Right(x1), x2, ty_Char) 26.56/9.58 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.56/9.58 new_esEs7(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_esEs4(x0, x1, ty_Float) 26.56/9.58 new_esEs19(Right(x0), Right(x1), x2, ty_Bool) 26.56/9.58 new_ltEs24(x0, x1, ty_Char) 26.56/9.58 new_mkBranch(x0, x1, x2, x3, x4, x5, x6) 26.56/9.58 new_esEs38(x0, x1, app(ty_[], x2)) 26.56/9.58 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_compare18(Just(x0), Nothing, x1) 26.56/9.58 new_esEs8(x0, x1, ty_Integer) 26.56/9.58 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_esEs5(x0, x1, ty_Bool) 26.56/9.58 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_lt14(x0, x1) 26.56/9.58 new_ltEs18(x0, x1, ty_Float) 26.56/9.58 new_ltEs18(x0, x1, ty_Integer) 26.56/9.58 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.56/9.58 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_esEs4(x0, x1, ty_Integer) 26.56/9.58 new_primPlusInt2(Neg(x0), x1, x2, x3, x1, x4, x5) 26.56/9.58 new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs35(x0, x1, ty_Int) 26.56/9.58 new_lt23(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_esEs10(x0, x1, ty_Double) 26.56/9.58 new_ltEs24(x0, x1, ty_Bool) 26.56/9.58 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_compare0(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_lt19(x0, x1, ty_Integer) 26.56/9.58 new_primCompAux00(x0, x1, EQ, ty_Integer) 26.56/9.58 new_lt10(x0, x1, x2) 26.56/9.58 new_deleteMin0(x0, x1, x2, EmptyFM, x3, x4, x5) 26.56/9.58 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.56/9.58 new_esEs19(Right(x0), Right(x1), x2, ty_Int) 26.56/9.58 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) 26.56/9.58 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) 26.56/9.58 new_esEs9(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_esEs19(Right(x0), Right(x1), x2, ty_@0) 26.56/9.58 new_ltEs24(x0, x1, ty_Integer) 26.56/9.58 new_esEs7(x0, x1, ty_Integer) 26.56/9.58 new_delFromFM0(Branch(:(x0, x1), x2, x3, x4, x5), :(x6, x7), x8, x9) 26.56/9.58 new_ltEs7(x0, x1) 26.56/9.58 new_delFromFM21(x0, x1, x2, x3, x4, x5, x6, x7, GT, x8, x9) 26.56/9.58 new_primPlusNat1(Zero, x0) 26.56/9.58 new_esEs30(x0, x1, ty_Double) 26.56/9.58 new_ltEs18(x0, x1, ty_Bool) 26.56/9.58 new_compare0(x0, x1, ty_Float) 26.56/9.58 new_esEs33(x0, x1, ty_Double) 26.56/9.58 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.56/9.58 new_esEs36(x0, x1, ty_Int) 26.56/9.58 new_lt16(x0, x1, x2, x3) 26.56/9.58 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.56/9.58 new_esEs4(x0, x1, ty_Bool) 26.56/9.58 new_esEs29(x0, x1, ty_Ordering) 26.56/9.58 new_primPlusInt0(x0, Neg(x1)) 26.56/9.58 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.56/9.58 new_esEs5(x0, x1, ty_Integer) 26.56/9.58 new_ltEs10(Nothing, Nothing, x0) 26.56/9.58 new_ltEs16(x0, x1) 26.56/9.58 new_compare13(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.56/9.58 new_compare13(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.56/9.58 new_esEs7(x0, x1, ty_Bool) 26.56/9.58 new_ltEs10(Just(x0), Just(x1), ty_Float) 26.56/9.58 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x0, True, x3, x4) 26.56/9.58 new_compare10(x0, x1, False, x2) 26.56/9.58 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 26.56/9.58 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_ltEs19(x0, x1, ty_@0) 26.56/9.58 new_delFromFM21(x0, x1, x2, x3, x4, x5, x6, x7, LT, x8, x9) 26.56/9.58 new_esEs37(x0, x1, ty_Integer) 26.56/9.58 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.56/9.58 new_compare0(x0, x1, ty_Bool) 26.56/9.58 new_compare9(True, True) 26.56/9.58 new_lt9(x0, x1, x2, x3) 26.56/9.58 new_lt23(x0, x1, ty_@0) 26.56/9.58 new_lt21(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs27(x0, x1, ty_@0) 26.56/9.58 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.56/9.58 new_esEs13(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs31(x0, x1, ty_Float) 26.56/9.58 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) 26.56/9.58 new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) 26.56/9.58 new_esEs34(x0, x1, ty_Ordering) 26.56/9.58 new_primMinusNat0(Succ(x0), Succ(x1)) 26.56/9.58 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.56/9.58 new_esEs35(x0, x1, ty_Double) 26.56/9.58 new_ltEs18(x0, x1, ty_@0) 26.56/9.58 new_ltEs10(Just(x0), Just(x1), ty_Int) 26.56/9.58 new_esEs33(x0, x1, ty_Ordering) 26.56/9.58 new_esEs39(x0, x1, ty_@0) 26.56/9.58 new_esEs15(GT, GT) 26.56/9.58 new_ltEs22(x0, x1, ty_Float) 26.56/9.58 new_esEs9(x0, x1, ty_Ordering) 26.56/9.58 new_delFromFM13(x0, x1, x2, x3, x4, x5, GT, x6, x7) 26.56/9.58 new_esEs15(LT, EQ) 26.56/9.58 new_esEs15(EQ, LT) 26.56/9.58 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 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) 26.56/9.58 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 26.56/9.58 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.56/9.58 new_esEs4(x0, x1, app(ty_[], x2)) 26.56/9.58 new_primCompAux1(x0, x1, x2, x3, x4) 26.56/9.58 new_compare18(Nothing, Nothing, x0) 26.56/9.58 new_compare26([], [], x0) 26.56/9.58 new_esEs31(x0, x1, ty_Int) 26.56/9.58 new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) 26.56/9.58 new_esEs13(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_esEs8(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_esEs11(x0, x1, ty_@0) 26.56/9.58 new_esEs19(Left(x0), Left(x1), ty_@0, x2) 26.56/9.58 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.58 new_esEs28(x0, x1, app(ty_[], x2)) 26.56/9.58 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_delFromFM14(x0, x1, x2, x3, EQ, x4, x5) 26.56/9.58 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.58 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_esEs5(x0, x1, ty_@0) 26.56/9.58 new_ltEs23(x0, x1, ty_@0) 26.56/9.58 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_ltEs24(x0, x1, ty_Int) 26.56/9.58 new_esEs10(x0, x1, ty_Ordering) 26.56/9.58 new_esEs20(Char(x0), Char(x1)) 26.56/9.58 new_ltEs10(Just(x0), Just(x1), ty_Char) 26.56/9.58 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.56/9.58 new_esEs6(x0, x1, ty_Double) 26.56/9.58 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.58 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.56/9.58 new_esEs14(False, False) 26.56/9.58 new_esEs5(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_ltEs21(x0, x1, ty_@0) 26.56/9.58 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_esEs8(x0, x1, ty_@0) 26.56/9.58 new_lt23(x0, x1, app(ty_Maybe, x2)) 26.56/9.58 new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.56/9.58 new_esEs30(x0, x1, ty_Ordering) 26.56/9.58 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_lt4(x0, x1) 26.56/9.58 new_compare0(x0, x1, ty_Integer) 26.56/9.58 new_esEs38(x0, x1, ty_Int) 26.56/9.58 new_compare27(GT, GT) 26.56/9.58 new_esEs31(x0, x1, app(ty_Ratio, x2)) 26.56/9.58 new_glueBal(Branch(x0, x1, x2, x3, x4), Branch(x5, x6, x7, x8, x9), x10, x11) 26.56/9.58 new_ltEs11(x0, x1) 26.56/9.58 new_esEs19(Right(x0), Right(x1), x2, ty_Integer) 26.56/9.58 new_esEs32(x0, x1, ty_@0) 26.56/9.58 new_asAs(True, x0) 26.56/9.58 new_lt21(x0, x1, ty_Double) 26.56/9.58 new_compare27(LT, EQ) 26.56/9.58 new_compare27(EQ, LT) 26.56/9.58 new_esEs38(x0, x1, ty_Float) 26.56/9.58 new_delFromFM15(x0, x1, x2, x3, x4, x5, x6, x7, GT, x8, x9) 26.56/9.58 new_ltEs24(x0, x1, ty_Float) 26.56/9.58 new_mkBalBranch6MkBalBranch3(x0, x1, x2, x0, False, x3, x4) 26.56/9.58 new_primCmpNat0(Zero, Zero) 26.56/9.58 26.56/9.58 We have to consider all minimal (P,Q,R)-chains. 26.56/9.58 ---------------------------------------- 26.56/9.58 26.56/9.58 (30) QDPSizeChangeProof (EQUIVALENT) 26.56/9.58 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. 26.56/9.58 26.56/9.58 From the DPs we obtained the following set of size-change graphs: 26.56/9.58 *new_foldl(xwv3, :(xwv40, xwv41), h, ba) -> new_foldl(new_delFromFM0(xwv3, xwv40, h, ba), xwv41, h, ba) 26.56/9.58 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 26.56/9.58 26.56/9.58 26.56/9.58 ---------------------------------------- 26.56/9.58 26.56/9.58 (31) 26.56/9.58 YES 26.56/9.58 26.56/9.58 ---------------------------------------- 26.56/9.58 26.56/9.58 (32) 26.56/9.58 Obligation: 26.56/9.58 Q DP problem: 26.56/9.58 The TRS P consists of the following rules: 26.56/9.58 26.56/9.58 new_primMulNat(Succ(xwv400000), Succ(xwv300100)) -> new_primMulNat(xwv400000, Succ(xwv300100)) 26.56/9.58 26.56/9.58 R is empty. 26.56/9.58 Q is empty. 26.56/9.58 We have to consider all minimal (P,Q,R)-chains. 26.56/9.58 ---------------------------------------- 26.56/9.58 26.56/9.58 (33) QDPSizeChangeProof (EQUIVALENT) 26.56/9.58 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. 26.56/9.58 26.56/9.58 From the DPs we obtained the following set of size-change graphs: 26.56/9.58 *new_primMulNat(Succ(xwv400000), Succ(xwv300100)) -> new_primMulNat(xwv400000, Succ(xwv300100)) 26.56/9.58 The graph contains the following edges 1 > 1, 2 >= 2 26.56/9.58 26.56/9.58 26.56/9.58 ---------------------------------------- 26.56/9.58 26.56/9.58 (34) 26.56/9.58 YES 26.56/9.58 26.56/9.58 ---------------------------------------- 26.56/9.58 26.56/9.58 (35) 26.56/9.58 Obligation: 26.56/9.58 Q DP problem: 26.56/9.58 The TRS P consists of the following rules: 26.56/9.58 26.56/9.58 new_primMinusNat(Succ(xwv34400), Succ(xwv34500)) -> new_primMinusNat(xwv34400, xwv34500) 26.56/9.58 26.56/9.58 R is empty. 26.56/9.58 Q is empty. 26.56/9.58 We have to consider all minimal (P,Q,R)-chains. 26.56/9.58 ---------------------------------------- 26.56/9.58 26.56/9.58 (36) QDPSizeChangeProof (EQUIVALENT) 26.56/9.58 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. 26.56/9.58 26.56/9.58 From the DPs we obtained the following set of size-change graphs: 26.56/9.58 *new_primMinusNat(Succ(xwv34400), Succ(xwv34500)) -> new_primMinusNat(xwv34400, xwv34500) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2 26.56/9.58 26.56/9.58 26.56/9.58 ---------------------------------------- 26.56/9.58 26.56/9.58 (37) 26.56/9.58 YES 26.56/9.58 26.56/9.58 ---------------------------------------- 26.56/9.58 26.56/9.58 (38) 26.56/9.58 Obligation: 26.56/9.58 Q DP problem: 26.56/9.58 The TRS P consists of the following rules: 26.56/9.58 26.56/9.58 new_primPlusNat(Succ(xwv33200), Succ(xwv24200)) -> new_primPlusNat(xwv33200, xwv24200) 26.56/9.58 26.56/9.58 R is empty. 26.56/9.58 Q is empty. 26.56/9.58 We have to consider all minimal (P,Q,R)-chains. 26.56/9.58 ---------------------------------------- 26.56/9.58 26.56/9.58 (39) QDPSizeChangeProof (EQUIVALENT) 26.56/9.58 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. 26.56/9.58 26.56/9.58 From the DPs we obtained the following set of size-change graphs: 26.56/9.58 *new_primPlusNat(Succ(xwv33200), Succ(xwv24200)) -> new_primPlusNat(xwv33200, xwv24200) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2 26.56/9.58 26.56/9.58 26.56/9.58 ---------------------------------------- 26.56/9.58 26.56/9.58 (40) 26.56/9.58 YES 26.56/9.58 26.56/9.58 ---------------------------------------- 26.56/9.58 26.56/9.58 (41) 26.56/9.58 Obligation: 26.56/9.58 Q DP problem: 26.56/9.58 The TRS P consists of the following rules: 26.56/9.58 26.56/9.58 new_glueBal2Mid_key10(xwv425, xwv426, xwv427, xwv428, xwv429, xwv430, xwv431, xwv432, xwv433, xwv434, xwv435, xwv436, xwv437, xwv438, Branch(xwv4390, xwv4391, xwv4392, xwv4393, xwv4394), h, ba) -> new_glueBal2Mid_key10(xwv425, xwv426, xwv427, xwv428, xwv429, xwv430, xwv431, xwv432, xwv433, xwv434, xwv4390, xwv4391, xwv4392, xwv4393, xwv4394, h, ba) 26.56/9.58 26.56/9.58 R is empty. 26.56/9.58 Q is empty. 26.56/9.58 We have to consider all minimal (P,Q,R)-chains. 26.56/9.58 ---------------------------------------- 26.56/9.58 26.56/9.58 (42) QDPSizeChangeProof (EQUIVALENT) 26.56/9.58 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. 26.56/9.58 26.56/9.58 From the DPs we obtained the following set of size-change graphs: 26.56/9.58 *new_glueBal2Mid_key10(xwv425, xwv426, xwv427, xwv428, xwv429, xwv430, xwv431, xwv432, xwv433, xwv434, xwv435, xwv436, xwv437, xwv438, Branch(xwv4390, xwv4391, xwv4392, xwv4393, xwv4394), h, ba) -> new_glueBal2Mid_key10(xwv425, xwv426, xwv427, xwv428, xwv429, xwv430, xwv431, xwv432, xwv433, xwv434, xwv4390, xwv4391, xwv4392, xwv4393, xwv4394, h, ba) 26.56/9.58 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 26.56/9.58 26.56/9.58 26.56/9.58 ---------------------------------------- 26.56/9.58 26.56/9.58 (43) 26.56/9.58 YES 26.56/9.58 26.56/9.58 ---------------------------------------- 26.56/9.58 26.56/9.58 (44) 26.56/9.58 Obligation: 26.56/9.58 Q DP problem: 26.56/9.58 The TRS P consists of the following rules: 26.56/9.58 26.56/9.58 new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), ef, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs2(xwv40001, xwv30001, fd, ff, fg) 26.56/9.58 new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, app(app(ty_@2, bbb), bbc), bag) -> new_esEs1(xwv40001, xwv30001, bbb, bbc) 26.56/9.58 new_esEs0(Left(xwv40000), Left(xwv30000), app(app(ty_@2, ce), cf), cb) -> new_esEs1(xwv40000, xwv30000, ce, cf) 26.56/9.58 new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, hd, app(app(ty_@2, hh), baa)) -> new_esEs1(xwv40002, xwv30002, hh, baa) 26.56/9.58 new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), ef, app(app(ty_Either, eh), fa)) -> new_esEs0(xwv40001, xwv30001, eh, fa) 26.56/9.58 new_esEs0(Left(xwv40000), Left(xwv30000), app(ty_Maybe, ca), cb) -> new_esEs(xwv40000, xwv30000, ca) 26.56/9.58 new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), app(app(ty_Either, gc), gd), gb) -> new_esEs0(xwv40000, xwv30000, gc, gd) 26.56/9.58 new_esEs3(:(xwv40000, xwv40001), :(xwv30000, xwv30001), app(ty_Maybe, bdb)) -> new_esEs(xwv40000, xwv30000, bdb) 26.56/9.58 new_esEs0(Right(xwv40000), Right(xwv30000), dd, app(ty_[], ee)) -> new_esEs3(xwv40000, xwv30000, ee) 26.56/9.58 new_esEs(Just(xwv40000), Just(xwv30000), app(app(ty_@2, bc), bd)) -> new_esEs1(xwv40000, xwv30000, bc, bd) 26.56/9.58 new_esEs0(Right(xwv40000), Right(xwv30000), dd, app(app(ty_Either, df), dg)) -> new_esEs0(xwv40000, xwv30000, df, dg) 26.56/9.58 new_esEs(Just(xwv40000), Just(xwv30000), app(ty_[], bh)) -> new_esEs3(xwv40000, xwv30000, bh) 26.56/9.58 new_esEs3(:(xwv40000, xwv40001), :(xwv30000, xwv30001), app(ty_[], beb)) -> new_esEs3(xwv40000, xwv30000, beb) 26.56/9.58 new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, hd, app(ty_[], bae)) -> new_esEs3(xwv40002, xwv30002, bae) 26.56/9.58 new_esEs(Just(xwv40000), Just(xwv30000), app(ty_Maybe, h)) -> new_esEs(xwv40000, xwv30000, h) 26.56/9.58 new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, app(ty_[], bbg), bag) -> new_esEs3(xwv40001, xwv30001, bbg) 26.56/9.58 new_esEs0(Left(xwv40000), Left(xwv30000), app(app(app(ty_@3, cg), da), db), cb) -> new_esEs2(xwv40000, xwv30000, cg, da, db) 26.56/9.58 new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), app(ty_[], hb), gb) -> new_esEs3(xwv40000, xwv30000, hb) 26.56/9.58 new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, app(app(app(ty_@3, bbd), bbe), bbf), bag) -> new_esEs2(xwv40001, xwv30001, bbd, bbe, bbf) 26.56/9.58 new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), app(app(app(ty_@3, bce), bcf), bcg), hd, bag) -> new_esEs2(xwv40000, xwv30000, bce, bcf, bcg) 26.56/9.58 new_esEs3(:(xwv40000, xwv40001), :(xwv30000, xwv30001), app(app(ty_@2, bde), bdf)) -> new_esEs1(xwv40000, xwv30000, bde, bdf) 26.56/9.58 new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), ef, app(ty_[], fh)) -> new_esEs3(xwv40001, xwv30001, fh) 26.56/9.58 new_esEs0(Left(xwv40000), Left(xwv30000), app(ty_[], dc), cb) -> new_esEs3(xwv40000, xwv30000, dc) 26.56/9.58 new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, app(app(ty_Either, bah), bba), bag) -> new_esEs0(xwv40001, xwv30001, bah, bba) 26.56/9.58 new_esEs0(Left(xwv40000), Left(xwv30000), app(app(ty_Either, cc), cd), cb) -> new_esEs0(xwv40000, xwv30000, cc, cd) 26.56/9.58 new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), app(ty_Maybe, ga), gb) -> new_esEs(xwv40000, xwv30000, ga) 26.56/9.58 new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, hd, app(app(ty_Either, hf), hg)) -> new_esEs0(xwv40002, xwv30002, hf, hg) 26.56/9.58 new_esEs3(:(xwv40000, xwv40001), :(xwv30000, xwv30001), bda) -> new_esEs3(xwv40001, xwv30001, bda) 26.56/9.58 new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), app(app(ty_Either, bca), bcb), hd, bag) -> new_esEs0(xwv40000, xwv30000, bca, bcb) 26.56/9.58 new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), ef, app(ty_Maybe, eg)) -> new_esEs(xwv40001, xwv30001, eg) 26.56/9.58 new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), app(ty_[], bch), hd, bag) -> new_esEs3(xwv40000, xwv30000, bch) 26.56/9.58 new_esEs(Just(xwv40000), Just(xwv30000), app(app(ty_Either, ba), bb)) -> new_esEs0(xwv40000, xwv30000, ba, bb) 26.56/9.58 new_esEs0(Right(xwv40000), Right(xwv30000), dd, app(app(ty_@2, dh), ea)) -> new_esEs1(xwv40000, xwv30000, dh, ea) 26.56/9.58 new_esEs3(:(xwv40000, xwv40001), :(xwv30000, xwv30001), app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs2(xwv40000, xwv30000, bdg, bdh, bea) 26.56/9.58 new_esEs(Just(xwv40000), Just(xwv30000), app(app(app(ty_@3, be), bf), bg)) -> new_esEs2(xwv40000, xwv30000, be, bf, bg) 26.56/9.58 new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), app(app(app(ty_@3, gg), gh), ha), gb) -> new_esEs2(xwv40000, xwv30000, gg, gh, ha) 26.56/9.58 new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), app(app(ty_@2, ge), gf), gb) -> new_esEs1(xwv40000, xwv30000, ge, gf) 26.56/9.58 new_esEs0(Right(xwv40000), Right(xwv30000), dd, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(xwv40000, xwv30000, eb, ec, ed) 26.56/9.58 new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, hd, app(ty_Maybe, he)) -> new_esEs(xwv40002, xwv30002, he) 26.56/9.58 new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, hd, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs2(xwv40002, xwv30002, bab, bac, bad) 26.56/9.58 new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, app(ty_Maybe, baf), bag) -> new_esEs(xwv40001, xwv30001, baf) 26.56/9.58 new_esEs3(:(xwv40000, xwv40001), :(xwv30000, xwv30001), app(app(ty_Either, bdc), bdd)) -> new_esEs0(xwv40000, xwv30000, bdc, bdd) 26.56/9.58 new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), ef, app(app(ty_@2, fb), fc)) -> new_esEs1(xwv40001, xwv30001, fb, fc) 26.56/9.58 new_esEs0(Right(xwv40000), Right(xwv30000), dd, app(ty_Maybe, de)) -> new_esEs(xwv40000, xwv30000, de) 26.56/9.58 new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), app(ty_Maybe, bbh), hd, bag) -> new_esEs(xwv40000, xwv30000, bbh) 26.56/9.58 new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), app(app(ty_@2, bcc), bcd), hd, bag) -> new_esEs1(xwv40000, xwv30000, bcc, bcd) 26.56/9.58 26.56/9.58 R is empty. 26.56/9.58 Q is empty. 26.56/9.58 We have to consider all minimal (P,Q,R)-chains. 26.56/9.58 ---------------------------------------- 26.56/9.58 26.56/9.58 (45) QDPSizeChangeProof (EQUIVALENT) 26.56/9.58 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. 26.56/9.58 26.56/9.58 From the DPs we obtained the following set of size-change graphs: 26.56/9.58 *new_esEs(Just(xwv40000), Just(xwv30000), app(app(ty_@2, bc), bd)) -> new_esEs1(xwv40000, xwv30000, bc, bd) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs3(:(xwv40000, xwv40001), :(xwv30000, xwv30001), app(app(ty_@2, bde), bdf)) -> new_esEs1(xwv40000, xwv30000, bde, bdf) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs(Just(xwv40000), Just(xwv30000), app(app(app(ty_@3, be), bf), bg)) -> new_esEs2(xwv40000, xwv30000, be, bf, bg) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs3(:(xwv40000, xwv40001), :(xwv30000, xwv30001), app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs2(xwv40000, xwv30000, bdg, bdh, bea) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs(Just(xwv40000), Just(xwv30000), app(app(ty_Either, ba), bb)) -> new_esEs0(xwv40000, xwv30000, ba, bb) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs3(:(xwv40000, xwv40001), :(xwv30000, xwv30001), app(app(ty_Either, bdc), bdd)) -> new_esEs0(xwv40000, xwv30000, bdc, bdd) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs(Just(xwv40000), Just(xwv30000), app(ty_[], bh)) -> new_esEs3(xwv40000, xwv30000, bh) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs(Just(xwv40000), Just(xwv30000), app(ty_Maybe, h)) -> new_esEs(xwv40000, xwv30000, h) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs3(:(xwv40000, xwv40001), :(xwv30000, xwv30001), app(ty_Maybe, bdb)) -> new_esEs(xwv40000, xwv30000, bdb) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, app(app(ty_@2, bbb), bbc), bag) -> new_esEs1(xwv40001, xwv30001, bbb, bbc) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, hd, app(app(ty_@2, hh), baa)) -> new_esEs1(xwv40002, xwv30002, hh, baa) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), app(app(ty_@2, bcc), bcd), hd, bag) -> new_esEs1(xwv40000, xwv30000, bcc, bcd) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, app(app(app(ty_@3, bbd), bbe), bbf), bag) -> new_esEs2(xwv40001, xwv30001, bbd, bbe, bbf) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), app(app(app(ty_@3, bce), bcf), bcg), hd, bag) -> new_esEs2(xwv40000, xwv30000, bce, bcf, bcg) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, hd, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs2(xwv40002, xwv30002, bab, bac, bad) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, app(app(ty_Either, bah), bba), bag) -> new_esEs0(xwv40001, xwv30001, bah, bba) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, hd, app(app(ty_Either, hf), hg)) -> new_esEs0(xwv40002, xwv30002, hf, hg) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), app(app(ty_Either, bca), bcb), hd, bag) -> new_esEs0(xwv40000, xwv30000, bca, bcb) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, hd, app(ty_[], bae)) -> new_esEs3(xwv40002, xwv30002, bae) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, app(ty_[], bbg), bag) -> new_esEs3(xwv40001, xwv30001, bbg) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), app(ty_[], bch), hd, bag) -> new_esEs3(xwv40000, xwv30000, bch) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, hd, app(ty_Maybe, he)) -> new_esEs(xwv40002, xwv30002, he) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), hc, app(ty_Maybe, baf), bag) -> new_esEs(xwv40001, xwv30001, baf) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs2(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), app(ty_Maybe, bbh), hd, bag) -> new_esEs(xwv40000, xwv30000, bbh) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), app(app(ty_@2, ge), gf), gb) -> new_esEs1(xwv40000, xwv30000, ge, gf) 26.56/9.58 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.58 26.56/9.58 26.56/9.58 *new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), ef, app(app(ty_@2, fb), fc)) -> new_esEs1(xwv40001, xwv30001, fb, fc) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs0(Left(xwv40000), Left(xwv30000), app(app(ty_@2, ce), cf), cb) -> new_esEs1(xwv40000, xwv30000, ce, cf) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs0(Right(xwv40000), Right(xwv30000), dd, app(app(ty_@2, dh), ea)) -> new_esEs1(xwv40000, xwv30000, dh, ea) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), ef, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs2(xwv40001, xwv30001, fd, ff, fg) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), app(app(app(ty_@3, gg), gh), ha), gb) -> new_esEs2(xwv40000, xwv30000, gg, gh, ha) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), ef, app(app(ty_Either, eh), fa)) -> new_esEs0(xwv40001, xwv30001, eh, fa) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), app(app(ty_Either, gc), gd), gb) -> new_esEs0(xwv40000, xwv30000, gc, gd) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), app(ty_[], hb), gb) -> new_esEs3(xwv40000, xwv30000, hb) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), ef, app(ty_[], fh)) -> new_esEs3(xwv40001, xwv30001, fh) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), app(ty_Maybe, ga), gb) -> new_esEs(xwv40000, xwv30000, ga) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs1(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), ef, app(ty_Maybe, eg)) -> new_esEs(xwv40001, xwv30001, eg) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs0(Left(xwv40000), Left(xwv30000), app(app(app(ty_@3, cg), da), db), cb) -> new_esEs2(xwv40000, xwv30000, cg, da, db) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs0(Right(xwv40000), Right(xwv30000), dd, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(xwv40000, xwv30000, eb, ec, ed) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs0(Right(xwv40000), Right(xwv30000), dd, app(app(ty_Either, df), dg)) -> new_esEs0(xwv40000, xwv30000, df, dg) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs0(Left(xwv40000), Left(xwv30000), app(app(ty_Either, cc), cd), cb) -> new_esEs0(xwv40000, xwv30000, cc, cd) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs0(Right(xwv40000), Right(xwv30000), dd, app(ty_[], ee)) -> new_esEs3(xwv40000, xwv30000, ee) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs0(Left(xwv40000), Left(xwv30000), app(ty_[], dc), cb) -> new_esEs3(xwv40000, xwv30000, dc) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs0(Left(xwv40000), Left(xwv30000), app(ty_Maybe, ca), cb) -> new_esEs(xwv40000, xwv30000, ca) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs0(Right(xwv40000), Right(xwv30000), dd, app(ty_Maybe, de)) -> new_esEs(xwv40000, xwv30000, de) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs3(:(xwv40000, xwv40001), :(xwv30000, xwv30001), app(ty_[], beb)) -> new_esEs3(xwv40000, xwv30000, beb) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.59 26.56/9.59 26.56/9.59 *new_esEs3(:(xwv40000, xwv40001), :(xwv30000, xwv30001), bda) -> new_esEs3(xwv40001, xwv30001, bda) 26.56/9.59 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 26.56/9.59 26.56/9.59 26.56/9.59 ---------------------------------------- 26.56/9.59 26.56/9.59 (46) 26.56/9.59 YES 26.56/9.59 26.56/9.59 ---------------------------------------- 26.56/9.59 26.56/9.59 (47) 26.56/9.59 Obligation: 26.56/9.59 Q DP problem: 26.56/9.59 The TRS P consists of the following rules: 26.56/9.59 26.56/9.59 new_deleteMin(xwv340, xwv341, xwv342, Branch(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434), xwv344, h, ba) -> new_deleteMin(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434, h, ba) 26.56/9.59 26.56/9.59 R is empty. 26.56/9.59 Q is empty. 26.56/9.59 We have to consider all minimal (P,Q,R)-chains. 26.56/9.59 ---------------------------------------- 26.56/9.59 26.56/9.59 (48) QDPSizeChangeProof (EQUIVALENT) 26.56/9.59 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. 26.56/9.59 26.56/9.59 From the DPs we obtained the following set of size-change graphs: 26.56/9.59 *new_deleteMin(xwv340, xwv341, xwv342, Branch(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434), xwv344, h, ba) -> new_deleteMin(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434, h, ba) 26.56/9.59 The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 6 >= 6, 7 >= 7 26.56/9.59 26.56/9.59 26.56/9.59 ---------------------------------------- 26.56/9.59 26.56/9.59 (49) 26.56/9.59 YES 26.56/9.59 26.56/9.59 ---------------------------------------- 26.56/9.59 26.56/9.59 (50) 26.56/9.59 Obligation: 26.56/9.59 Q DP problem: 26.56/9.59 The TRS P consists of the following rules: 26.56/9.59 26.56/9.59 new_glueBal2Mid_elt20(xwv378, xwv379, xwv380, xwv381, xwv382, xwv383, xwv384, xwv385, xwv386, xwv387, xwv388, xwv389, xwv390, Branch(xwv3910, xwv3911, xwv3912, xwv3913, xwv3914), xwv392, h, ba) -> new_glueBal2Mid_elt20(xwv378, xwv379, xwv380, xwv381, xwv382, xwv383, xwv384, xwv385, xwv386, xwv387, xwv3910, xwv3911, xwv3912, xwv3913, xwv3914, h, ba) 26.56/9.59 26.56/9.59 R is empty. 26.56/9.59 Q is empty. 26.56/9.59 We have to consider all minimal (P,Q,R)-chains. 26.56/9.59 ---------------------------------------- 26.56/9.59 26.56/9.59 (51) QDPSizeChangeProof (EQUIVALENT) 26.56/9.59 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. 26.56/9.59 26.56/9.59 From the DPs we obtained the following set of size-change graphs: 26.56/9.59 *new_glueBal2Mid_elt20(xwv378, xwv379, xwv380, xwv381, xwv382, xwv383, xwv384, xwv385, xwv386, xwv387, xwv388, xwv389, xwv390, Branch(xwv3910, xwv3911, xwv3912, xwv3913, xwv3914), xwv392, h, ba) -> new_glueBal2Mid_elt20(xwv378, xwv379, xwv380, xwv381, xwv382, xwv383, xwv384, xwv385, xwv386, xwv387, xwv3910, xwv3911, xwv3912, xwv3913, xwv3914, h, ba) 26.56/9.59 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 26.56/9.59 26.56/9.59 26.56/9.59 ---------------------------------------- 26.56/9.59 26.56/9.59 (52) 26.56/9.59 YES 26.56/9.59 26.56/9.59 ---------------------------------------- 26.56/9.59 26.56/9.59 (53) 26.56/9.59 Obligation: 26.56/9.59 Q DP problem: 26.56/9.59 The TRS P consists of the following rules: 26.56/9.59 26.56/9.59 new_compare22(xwv76, xwv77, False, app(ty_[], cec), cea) -> new_ltEs1(xwv76, xwv77, cec) 26.56/9.59 new_compare2(xwv113, xwv114, xwv115, xwv116, False, app(app(ty_Either, bac), bad), he) -> new_compare5(xwv113, xwv115, bac, bad) 26.56/9.59 new_compare23(xwv83, xwv84, False, cfa, app(ty_[], cfe)) -> new_ltEs1(xwv83, xwv84, cfe) 26.56/9.59 new_ltEs3(Right(xwv540), Right(xwv550), bgg, app(ty_[], bhc)) -> new_ltEs1(xwv540, xwv550, bhc) 26.56/9.59 new_compare23(xwv83, xwv84, False, cfa, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs2(xwv83, xwv84, cff, cfg, cfh) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, app(ty_[], caf), cac, cad) -> new_lt1(xwv65, xwv68, caf) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, app(app(ty_Either, bfc), bfd)), bbh), bdd)) -> new_lt3(xwv540, xwv550, bfc, bfd) 26.56/9.59 new_compare22(xwv76, xwv77, False, app(app(app(ty_@3, ced), cee), cef), cea) -> new_ltEs2(xwv76, xwv77, ced, cee, cef) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, app(ty_Maybe, bcc)) -> new_ltEs0(xwv542, xwv552, bcc) 26.56/9.59 new_compare20(Just(xwv540), Just(xwv550), False, app(ty_Maybe, app(ty_Maybe, dg))) -> new_ltEs0(xwv540, xwv550, dg) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), app(ty_[], beg), bbh, bdd) -> new_lt1(xwv540, xwv550, beg) 26.56/9.59 new_compare20(Left(xwv540), Left(xwv550), False, app(app(ty_Either, app(app(ty_Either, bge), bgf)), bfg)) -> new_ltEs3(xwv540, xwv550, bge, bgf) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, app(ty_Maybe, cbg)) -> new_ltEs0(xwv67, xwv70, cbg) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), h, app(app(ty_Either, bh), ca)) -> new_ltEs3(xwv541, xwv551, bh, ca) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), app(app(ty_@2, bed), bee), bbh, bdd) -> new_lt(xwv540, xwv550, bed, bee) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), h, app(ty_Maybe, bc)) -> new_ltEs0(xwv541, xwv551, bc) 26.56/9.59 new_lt0(xwv113, xwv115, hf) -> new_compare3(xwv113, xwv115, hf) 26.56/9.59 new_ltEs3(Left(xwv540), Left(xwv550), app(ty_[], bga), bfg) -> new_ltEs1(xwv540, xwv550, bga) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), app(ty_[], bdf)), bdd)) -> new_lt1(xwv541, xwv551, bdf) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, app(app(app(ty_@3, cag), cah), cba), cac, cad) -> new_lt2(xwv65, xwv68, cag, cah, cba) 26.56/9.59 new_compare1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), fa, fb) -> new_compare2(xwv4000, xwv4001, xwv3000, xwv3001, new_asAs(new_esEs5(xwv4000, xwv3000, fa), new_esEs4(xwv4001, xwv3001, fb)), fa, fb) 26.56/9.59 new_compare5(Left(xwv4000), Left(xwv3000), fh, ga) -> new_compare22(xwv4000, xwv3000, new_esEs10(xwv4000, xwv3000, fh), fh, ga) 26.56/9.59 new_primCompAux0(xwv32, xwv33, EQ, app(app(ty_Either, ha), hb)) -> new_compare5(xwv32, xwv33, ha, hb) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), h, app(app(app(ty_@3, be), bf), bg)) -> new_ltEs2(xwv541, xwv551, be, bf, bg) 26.56/9.59 new_compare2(xwv113, xwv114, xwv115, xwv116, False, app(app(ty_@2, hc), hd), he) -> new_compare1(xwv113, xwv115, hc, hd) 26.56/9.59 new_compare20(Right(xwv540), Right(xwv550), False, app(app(ty_Either, bgg), app(app(ty_@2, bgh), bha))) -> new_ltEs(xwv540, xwv550, bgh, bha) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), app(app(app(ty_@3, cg), da), db), cd) -> new_lt2(xwv540, xwv550, cg, da, db) 26.56/9.59 new_ltEs0(Just(xwv540), Just(xwv550), app(ty_[], dh)) -> new_ltEs1(xwv540, xwv550, dh) 26.56/9.59 new_compare20(Right(xwv540), Right(xwv550), False, app(app(ty_Either, bgg), app(app(app(ty_@3, bhd), bhe), bhf))) -> new_ltEs2(xwv540, xwv550, bhd, bhe, bhf) 26.56/9.59 new_lt3(xwv113, xwv115, bac, bad) -> new_compare5(xwv113, xwv115, bac, bad) 26.56/9.59 new_compare20(Left(xwv540), Left(xwv550), False, app(app(ty_Either, app(ty_Maybe, bfh)), bfg)) -> new_ltEs0(xwv540, xwv550, bfh) 26.56/9.59 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), cd)) -> new_lt(xwv540, xwv550, cb, cc) 26.56/9.59 new_compare20(xwv54, xwv55, False, app(ty_[], ef)) -> new_compare(xwv54, xwv55, ef) 26.56/9.59 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, h), app(app(app(ty_@3, be), bf), bg))) -> new_ltEs2(xwv541, xwv551, be, bf, bg) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, app(ty_Maybe, bde), bdd) -> new_lt0(xwv541, xwv551, bde) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, app(ty_Maybe, cae), cac, cad) -> new_lt0(xwv65, xwv68, cae) 26.56/9.59 new_ltEs0(Just(xwv540), Just(xwv550), app(ty_Maybe, dg)) -> new_ltEs0(xwv540, xwv550, dg) 26.56/9.59 new_compare20(Just(xwv540), Just(xwv550), False, app(ty_Maybe, app(app(ty_Either, ed), ee))) -> new_ltEs3(xwv540, xwv550, ed, ee) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), app(ty_Maybe, bef), bbh, bdd) -> new_lt0(xwv540, xwv550, bef) 26.56/9.59 new_primCompAux0(xwv32, xwv33, EQ, app(ty_[], ge)) -> new_compare(xwv32, xwv33, ge) 26.56/9.59 new_ltEs3(Right(xwv540), Right(xwv550), bgg, app(app(ty_@2, bgh), bha)) -> new_ltEs(xwv540, xwv550, bgh, bha) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, app(app(ty_@2, ccf), ccg), cad) -> new_lt(xwv66, xwv69, ccf, ccg) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, app(app(ty_@2, cbe), cbf)) -> new_ltEs(xwv67, xwv70, cbe, cbf) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), bbh), app(app(ty_Either, bch), bda))) -> new_ltEs3(xwv542, xwv552, bch, bda) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), h, app(app(ty_@2, ba), bb)) -> new_ltEs(xwv541, xwv551, ba, bb) 26.56/9.59 new_compare4(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), fd, ff, fg) -> new_compare21(xwv4000, xwv4001, xwv4002, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs9(xwv4000, xwv3000, fd), new_asAs(new_esEs8(xwv4001, xwv3001, ff), new_esEs7(xwv4002, xwv3002, fg))), fd, ff, fg) 26.56/9.59 new_primCompAux(Right(xwv4000), Right(xwv3000), xwv401, xwv301, app(app(ty_Either, fh), ga)) -> new_compare23(xwv4000, xwv3000, new_esEs11(xwv4000, xwv3000, ga), fh, ga) 26.56/9.59 new_ltEs3(Left(xwv540), Left(xwv550), app(app(app(ty_@3, bgb), bgc), bgd), bfg) -> new_ltEs2(xwv540, xwv550, bgb, bgc, bgd) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, app(app(ty_@2, caa), cab), cac, cad) -> new_lt(xwv65, xwv68, caa, cab) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, app(app(ty_Either, bch), bda)) -> new_ltEs3(xwv542, xwv552, bch, bda) 26.56/9.59 new_compare23(xwv83, xwv84, False, cfa, app(app(ty_@2, cfb), cfc)) -> new_ltEs(xwv83, xwv84, cfb, cfc) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), bbh), app(ty_[], bcd))) -> new_ltEs1(xwv542, xwv552, bcd) 26.56/9.59 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, h), app(ty_[], bd))) -> new_ltEs1(xwv541, xwv551, bd) 26.56/9.59 new_compare20(Left(xwv540), Left(xwv550), False, app(app(ty_Either, app(ty_[], bga)), bfg)) -> new_ltEs1(xwv540, xwv550, bga) 26.56/9.59 new_primCompAux(xwv400, xwv300, xwv401, xwv301, eh) -> new_primCompAux0(xwv401, xwv301, new_compare0(xwv400, xwv300, eh), app(ty_[], eh)) 26.56/9.59 new_primCompAux0(xwv32, xwv33, EQ, app(ty_Maybe, gd)) -> new_compare3(xwv32, xwv33, gd) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), app(app(app(ty_@3, beh), bfa), bfb), bbh, bdd) -> new_lt2(xwv540, xwv550, beh, bfa, bfb) 26.56/9.59 new_compare20(Just(xwv540), Just(xwv550), False, app(ty_Maybe, app(ty_[], dh))) -> new_ltEs1(xwv540, xwv550, dh) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), bbh), app(ty_Maybe, bcc))) -> new_ltEs0(xwv542, xwv552, bcc) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, app(ty_[], bcd)) -> new_ltEs1(xwv542, xwv552, bcd) 26.56/9.59 new_ltEs3(Left(xwv540), Left(xwv550), app(app(ty_@2, bfe), bff), bfg) -> new_ltEs(xwv540, xwv550, bfe, bff) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, app(ty_[], cbh)) -> new_ltEs1(xwv67, xwv70, cbh) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, app(ty_Maybe, bef)), bbh), bdd)) -> new_lt0(xwv540, xwv550, bef) 26.56/9.59 new_compare20(Left(xwv540), Left(xwv550), False, app(app(ty_Either, app(app(ty_@2, bfe), bff)), bfg)) -> new_ltEs(xwv540, xwv550, bfe, bff) 26.56/9.59 new_ltEs3(Left(xwv540), Left(xwv550), app(app(ty_Either, bge), bgf), bfg) -> new_ltEs3(xwv540, xwv550, bge, bgf) 26.56/9.59 new_ltEs0(Just(xwv540), Just(xwv550), app(app(ty_@2, de), df)) -> new_ltEs(xwv540, xwv550, de, df) 26.56/9.59 new_primCompAux0(xwv32, xwv33, EQ, app(app(ty_@2, gb), gc)) -> new_compare1(xwv32, xwv33, gb, gc) 26.56/9.59 new_ltEs0(Just(xwv540), Just(xwv550), app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs2(xwv540, xwv550, ea, eb, ec) 26.56/9.59 new_compare20(Right(xwv540), Right(xwv550), False, app(app(ty_Either, bgg), app(ty_Maybe, bhb))) -> new_ltEs0(xwv540, xwv550, bhb) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), bbh), app(app(ty_@2, bca), bcb))) -> new_ltEs(xwv542, xwv552, bca, bcb) 26.56/9.59 new_compare2(xwv113, xwv114, xwv115, xwv116, False, app(app(app(ty_@3, hh), baa), bab), he) -> new_compare4(xwv113, xwv115, hh, baa, bab) 26.56/9.59 new_ltEs0(Just(xwv540), Just(xwv550), app(app(ty_Either, ed), ee)) -> new_ltEs3(xwv540, xwv550, ed, ee) 26.56/9.59 new_compare20(Right(xwv540), Right(xwv550), False, app(app(ty_Either, bgg), app(ty_[], bhc))) -> new_ltEs1(xwv540, xwv550, bhc) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, app(app(ty_Either, cbb), cbc), cac, cad) -> new_lt3(xwv65, xwv68, cbb, cbc) 26.56/9.59 new_compare23(xwv83, xwv84, False, cfa, app(ty_Maybe, cfd)) -> new_ltEs0(xwv83, xwv84, cfd) 26.56/9.59 new_compare3(Just(xwv4000), Just(xwv3000), fc) -> new_compare20(xwv4000, xwv3000, new_esEs6(xwv4000, xwv3000, fc), fc) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), app(app(ty_Either, bfc), bfd), bbh, bdd) -> new_lt3(xwv540, xwv550, bfc, bfd) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), app(app(ty_@2, cb), cc), cd) -> new_lt(xwv540, xwv550, cb, cc) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, app(app(app(ty_@3, beh), bfa), bfb)), bbh), bdd)) -> new_lt2(xwv540, xwv550, beh, bfa, bfb) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, app(ty_[], bdf), bdd) -> new_lt1(xwv541, xwv551, bdf) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, app(ty_[], cda), cad) -> new_lt1(xwv66, xwv69, cda) 26.56/9.59 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, app(ty_[], cf)), cd)) -> new_lt1(xwv540, xwv550, cf) 26.56/9.59 new_compare22(xwv76, xwv77, False, app(ty_Maybe, ceb), cea) -> new_ltEs0(xwv76, xwv77, ceb) 26.56/9.59 new_compare20(Left(xwv540), Left(xwv550), False, app(app(ty_Either, app(app(app(ty_@3, bgb), bgc), bgd)), bfg)) -> new_ltEs2(xwv540, xwv550, bgb, bgc, bgd) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), app(app(ty_Either, beb), bec)), bdd)) -> new_lt3(xwv541, xwv551, beb, bec) 26.56/9.59 new_compare2(xwv113, xwv114, xwv115, xwv116, False, bae, app(app(ty_@2, baf), bag)) -> new_ltEs(xwv114, xwv116, baf, bag) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, app(app(ty_Either, ccd), cce)) -> new_ltEs3(xwv67, xwv70, ccd, cce) 26.56/9.59 new_compare20(Right(xwv540), Right(xwv550), False, app(app(ty_Either, bgg), app(app(ty_Either, bhg), bhh))) -> new_ltEs3(xwv540, xwv550, bhg, bhh) 26.56/9.59 new_compare22(xwv76, xwv77, False, app(app(ty_Either, ceg), ceh), cea) -> new_ltEs3(xwv76, xwv77, ceg, ceh) 26.56/9.59 new_ltEs3(Right(xwv540), Right(xwv550), bgg, app(app(ty_Either, bhg), bhh)) -> new_ltEs3(xwv540, xwv550, bhg, bhh) 26.56/9.59 new_compare23(xwv83, xwv84, False, cfa, app(app(ty_Either, cga), cgb)) -> new_ltEs3(xwv83, xwv84, cga, cgb) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), h, app(ty_[], bd)) -> new_ltEs1(xwv541, xwv551, bd) 26.56/9.59 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, h), app(ty_Maybe, bc))) -> new_ltEs0(xwv541, xwv551, bc) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, app(app(app(ty_@3, cdb), cdc), cdd), cad) -> new_lt2(xwv66, xwv69, cdb, cdc, cdd) 26.56/9.59 new_primCompAux(Left(xwv4000), Left(xwv3000), xwv401, xwv301, app(app(ty_Either, fh), ga)) -> new_compare22(xwv4000, xwv3000, new_esEs10(xwv4000, xwv3000, fh), fh, ga) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), app(ty_[], cf), cd) -> new_lt1(xwv540, xwv550, cf) 26.56/9.59 new_ltEs1(xwv54, xwv55, ef) -> new_compare(xwv54, xwv55, ef) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), app(ty_Maybe, bde)), bdd)) -> new_lt0(xwv541, xwv551, bde) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), app(app(ty_Either, dc), dd), cd) -> new_lt3(xwv540, xwv550, dc, dd) 26.56/9.59 new_primCompAux0(xwv32, xwv33, EQ, app(app(app(ty_@3, gf), gg), gh)) -> new_compare4(xwv32, xwv33, gf, gg, gh) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), app(ty_Maybe, ce), cd) -> new_lt0(xwv540, xwv550, ce) 26.56/9.59 new_compare20(Just(xwv540), Just(xwv550), False, app(ty_Maybe, app(app(ty_@2, de), df))) -> new_ltEs(xwv540, xwv550, de, df) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, app(app(app(ty_@3, cca), ccb), ccc)) -> new_ltEs2(xwv67, xwv70, cca, ccb, ccc) 26.56/9.59 new_compare2(xwv113, xwv114, xwv115, xwv116, False, bae, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs2(xwv114, xwv116, bbb, bbc, bbd) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), bbh), app(app(app(ty_@3, bce), bcf), bcg))) -> new_ltEs2(xwv542, xwv552, bce, bcf, bcg) 26.56/9.59 new_lt2(xwv113, xwv115, hh, baa, bab) -> new_compare4(xwv113, xwv115, hh, baa, bab) 26.56/9.59 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, h), app(app(ty_@2, ba), bb))) -> new_ltEs(xwv541, xwv551, ba, bb) 26.56/9.59 new_compare20(Just(xwv540), Just(xwv550), False, app(ty_Maybe, app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs2(xwv540, xwv550, ea, eb, ec) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs2(xwv542, xwv552, bce, bcf, bcg) 26.56/9.59 new_compare2(xwv113, xwv114, xwv115, xwv116, False, app(ty_[], hg), he) -> new_compare(xwv113, xwv115, hg) 26.56/9.59 new_ltEs3(Left(xwv540), Left(xwv550), app(ty_Maybe, bfh), bfg) -> new_ltEs0(xwv540, xwv550, bfh) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, app(app(ty_Either, cde), cdf), cad) -> new_lt3(xwv66, xwv69, cde, cdf) 26.56/9.59 new_primCompAux(:(xwv4000, xwv4001), :(xwv3000, xwv3001), xwv401, xwv301, app(ty_[], eg)) -> new_primCompAux(xwv4000, xwv3000, xwv4001, xwv3001, eg) 26.56/9.59 new_primCompAux(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), xwv401, xwv301, app(app(app(ty_@3, fd), ff), fg)) -> new_compare21(xwv4000, xwv4001, xwv4002, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs9(xwv4000, xwv3000, fd), new_asAs(new_esEs8(xwv4001, xwv3001, ff), new_esEs7(xwv4002, xwv3002, fg))), fd, ff, fg) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, app(app(ty_@2, bed), bee)), bbh), bdd)) -> new_lt(xwv540, xwv550, bed, bee) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, app(ty_Maybe, cch), cad) -> new_lt0(xwv66, xwv69, cch) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, app(app(ty_@2, bca), bcb)) -> new_ltEs(xwv542, xwv552, bca, bcb) 26.56/9.59 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, app(ty_Maybe, ce)), cd)) -> new_lt0(xwv540, xwv550, ce) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, app(app(ty_@2, bdb), bdc), bdd) -> new_lt(xwv541, xwv551, bdb, bdc) 26.56/9.59 new_primCompAux(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), xwv401, xwv301, app(app(ty_@2, fa), fb)) -> new_compare2(xwv4000, xwv4001, xwv3000, xwv3001, new_asAs(new_esEs5(xwv4000, xwv3000, fa), new_esEs4(xwv4001, xwv3001, fb)), fa, fb) 26.56/9.59 new_lt(xwv113, xwv115, hc, hd) -> new_compare1(xwv113, xwv115, hc, hd) 26.56/9.59 new_primCompAux(Just(xwv4000), Just(xwv3000), xwv401, xwv301, app(ty_Maybe, fc)) -> new_compare20(xwv4000, xwv3000, new_esEs6(xwv4000, xwv3000, fc), fc) 26.56/9.59 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, h), app(app(ty_Either, bh), ca))) -> new_ltEs3(xwv541, xwv551, bh, ca) 26.56/9.59 new_compare5(Right(xwv4000), Right(xwv3000), fh, ga) -> new_compare23(xwv4000, xwv3000, new_esEs11(xwv4000, xwv3000, ga), fh, ga) 26.56/9.59 new_compare(:(xwv4000, xwv4001), :(xwv3000, xwv3001), eg) -> new_primCompAux(xwv4000, xwv3000, xwv4001, xwv3001, eg) 26.56/9.59 new_ltEs3(Right(xwv540), Right(xwv550), bgg, app(ty_Maybe, bhb)) -> new_ltEs0(xwv540, xwv550, bhb) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), app(app(app(ty_@3, bdg), bdh), bea)), bdd)) -> new_lt2(xwv541, xwv551, bdg, bdh, bea) 26.56/9.59 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, app(app(ty_Either, dc), dd)), cd)) -> new_lt3(xwv540, xwv550, dc, dd) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, app(app(app(ty_@3, bdg), bdh), bea), bdd) -> new_lt2(xwv541, xwv551, bdg, bdh, bea) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), app(app(ty_@2, bdb), bdc)), bdd)) -> new_lt(xwv541, xwv551, bdb, bdc) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, app(app(ty_Either, beb), bec), bdd) -> new_lt3(xwv541, xwv551, beb, bec) 26.56/9.59 new_compare2(xwv113, xwv114, xwv115, xwv116, False, bae, app(ty_Maybe, bah)) -> new_ltEs0(xwv114, xwv116, bah) 26.56/9.59 new_lt1(xwv113, xwv115, hg) -> new_compare(xwv113, xwv115, hg) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, app(ty_[], beg)), bbh), bdd)) -> new_lt1(xwv540, xwv550, beg) 26.56/9.59 new_compare2(xwv113, xwv114, xwv115, xwv116, False, bae, app(app(ty_Either, bbe), bbf)) -> new_ltEs3(xwv114, xwv116, bbe, bbf) 26.56/9.59 new_compare2(xwv113, xwv114, xwv115, xwv116, False, app(ty_Maybe, hf), he) -> new_compare3(xwv113, xwv115, hf) 26.56/9.59 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, app(app(app(ty_@3, cg), da), db)), cd)) -> new_lt2(xwv540, xwv550, cg, da, db) 26.56/9.59 new_ltEs3(Right(xwv540), Right(xwv550), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs2(xwv540, xwv550, bhd, bhe, bhf) 26.56/9.59 new_compare2(xwv113, xwv114, xwv115, xwv116, False, bae, app(ty_[], bba)) -> new_ltEs1(xwv114, xwv116, bba) 26.56/9.59 new_compare22(xwv76, xwv77, False, app(app(ty_@2, cdg), cdh), cea) -> new_ltEs(xwv76, xwv77, cdg, cdh) 26.56/9.59 26.56/9.59 The TRS R consists of the following rules: 26.56/9.59 26.56/9.59 new_primCompAux00(xwv32, xwv33, EQ, ty_@0) -> new_compare6(xwv32, xwv33) 26.56/9.59 new_ltEs24(xwv54, xwv55, ty_Float) -> new_ltEs12(xwv54, xwv55) 26.56/9.59 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.56/9.59 new_esEs33(xwv540, xwv550, app(ty_Ratio, fbb)) -> new_esEs23(xwv540, xwv550, fbb) 26.56/9.59 new_esEs28(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.59 new_ltEs21(xwv83, xwv84, ty_Bool) -> new_ltEs8(xwv83, xwv84) 26.56/9.59 new_primPlusNat0(Zero, Zero) -> Zero 26.56/9.59 new_ltEs22(xwv76, xwv77, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs15(xwv76, xwv77, ced, cee, cef) 26.56/9.59 new_primCompAux1(xwv400, xwv300, xwv401, xwv301, eh) -> new_primCompAux00(xwv401, xwv301, new_compare0(xwv400, xwv300, eh), app(ty_[], eh)) 26.56/9.59 new_esEs24(@0, @0) -> True 26.56/9.59 new_pePe(True, xwv216) -> True 26.56/9.59 new_esEs10(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.56/9.59 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Integer, fca) -> new_esEs26(xwv40000, xwv30000) 26.56/9.59 new_compare212(xwv113, xwv114, xwv115, xwv116, True, bae, he) -> EQ 26.56/9.59 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(ty_@2, ffd), ffe), fca) -> new_esEs21(xwv40000, xwv30000, ffd, ffe) 26.56/9.59 new_ltEs24(xwv54, xwv55, ty_Ordering) -> new_ltEs14(xwv54, xwv55) 26.56/9.59 new_esEs34(xwv541, xwv551, ty_Double) -> new_esEs17(xwv541, xwv551) 26.56/9.59 new_esEs35(xwv540, xwv550, app(ty_[], beg)) -> new_esEs12(xwv540, xwv550, beg) 26.56/9.59 new_esEs30(xwv40002, xwv30002, app(app(ty_@2, eff), efg)) -> new_esEs21(xwv40002, xwv30002, eff, efg) 26.56/9.59 new_esEs34(xwv541, xwv551, ty_Float) -> new_esEs22(xwv541, xwv551) 26.56/9.59 new_esEs13(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.59 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.56/9.59 new_compare27(LT, EQ) -> LT 26.56/9.59 new_lt6(xwv113, xwv115, ty_Char) -> new_lt8(xwv113, xwv115) 26.56/9.59 new_ltEs7(xwv54, xwv55) -> new_fsEs(new_compare16(xwv54, xwv55)) 26.56/9.59 new_compare27(LT, GT) -> LT 26.56/9.59 new_esEs32(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.56/9.59 new_esEs7(xwv4002, xwv3002, ty_Char) -> new_esEs20(xwv4002, xwv3002) 26.56/9.59 new_esEs28(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.56/9.59 new_esEs20(Char(xwv40000), Char(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 26.56/9.59 new_primMulNat0(Succ(xwv400000), Succ(xwv300100)) -> new_primPlusNat1(new_primMulNat0(xwv400000, Succ(xwv300100)), xwv300100) 26.56/9.59 new_compare111(xwv170, xwv171, xwv172, xwv173, False, dhd, dhe) -> GT 26.56/9.59 new_esEs39(xwv65, xwv68, ty_Ordering) -> new_esEs15(xwv65, xwv68) 26.56/9.59 new_ltEs5(Left(xwv540), Left(xwv550), ty_Int, bfg) -> new_ltEs6(xwv540, xwv550) 26.56/9.59 new_esEs10(xwv4000, xwv3000, app(ty_Maybe, dcg)) -> new_esEs16(xwv4000, xwv3000, dcg) 26.56/9.59 new_ltEs19(xwv541, xwv551, ty_Double) -> new_ltEs11(xwv541, xwv551) 26.56/9.59 new_ltEs5(Left(xwv540), Right(xwv550), bgg, bfg) -> True 26.56/9.59 new_compare0(xwv400, xwv300, ty_@0) -> new_compare6(xwv400, xwv300) 26.56/9.59 new_esEs7(xwv4002, xwv3002, ty_Int) -> new_esEs18(xwv4002, xwv3002) 26.56/9.59 new_esEs34(xwv541, xwv551, ty_Ordering) -> new_esEs15(xwv541, xwv551) 26.56/9.59 new_lt19(xwv540, xwv550, app(ty_Ratio, fbb)) -> new_lt18(xwv540, xwv550, fbb) 26.56/9.59 new_ltEs20(xwv542, xwv552, ty_@0) -> new_ltEs4(xwv542, xwv552) 26.56/9.59 new_lt20(xwv541, xwv551, app(ty_[], bdf)) -> new_lt13(xwv541, xwv551, bdf) 26.56/9.59 new_esEs9(xwv4000, xwv3000, app(app(app(ty_@3, dgd), dge), dgf)) -> new_esEs25(xwv4000, xwv3000, dgd, dge, dgf) 26.56/9.59 new_ltEs23(xwv67, xwv70, app(app(ty_Either, ccd), cce)) -> new_ltEs5(xwv67, xwv70, ccd, cce) 26.56/9.59 new_compare18(Nothing, Just(xwv3000), fc) -> LT 26.56/9.59 new_primEqNat0(Succ(xwv400000), Succ(xwv300000)) -> new_primEqNat0(xwv400000, xwv300000) 26.56/9.59 new_ltEs22(xwv76, xwv77, app(ty_Maybe, ceb)) -> new_ltEs10(xwv76, xwv77, ceb) 26.56/9.59 new_ltEs21(xwv83, xwv84, ty_Char) -> new_ltEs7(xwv83, xwv84) 26.56/9.59 new_not(True) -> False 26.56/9.59 new_lt18(xwv113, xwv115, eef) -> new_esEs15(new_compare29(xwv113, xwv115, eef), LT) 26.56/9.59 new_esEs4(xwv4001, xwv3001, ty_Bool) -> new_esEs14(xwv4001, xwv3001) 26.56/9.59 new_esEs35(xwv540, xwv550, app(app(ty_@2, bed), bee)) -> new_esEs21(xwv540, xwv550, bed, bee) 26.56/9.59 new_esEs29(xwv113, xwv115, ty_Ordering) -> new_esEs15(xwv113, xwv115) 26.56/9.59 new_esEs38(xwv66, xwv69, app(ty_Ratio, feh)) -> new_esEs23(xwv66, xwv69, feh) 26.56/9.59 new_ltEs10(Just(xwv540), Just(xwv550), ty_Bool) -> new_ltEs8(xwv540, xwv550) 26.56/9.59 new_ltEs16(xwv54, xwv55) -> new_fsEs(new_compare8(xwv54, xwv55)) 26.56/9.59 new_esEs4(xwv4001, xwv3001, app(ty_[], eee)) -> new_esEs12(xwv4001, xwv3001, eee) 26.56/9.59 new_esEs30(xwv40002, xwv30002, ty_Bool) -> new_esEs14(xwv40002, xwv30002) 26.56/9.59 new_ltEs19(xwv541, xwv551, ty_Bool) -> new_ltEs8(xwv541, xwv551) 26.56/9.59 new_esEs30(xwv40002, xwv30002, ty_Int) -> new_esEs18(xwv40002, xwv30002) 26.56/9.59 new_compare11(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, False, xwv192, dfc, dfd, dfe) -> new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, xwv192, dfc, dfd, dfe) 26.56/9.59 new_primCompAux00(xwv32, xwv33, EQ, ty_Bool) -> new_compare9(xwv32, xwv33) 26.56/9.59 new_lt20(xwv541, xwv551, app(app(app(ty_@3, bdg), bdh), bea)) -> new_lt15(xwv541, xwv551, bdg, bdh, bea) 26.56/9.59 new_ltEs18(xwv114, xwv116, ty_@0) -> new_ltEs4(xwv114, xwv116) 26.56/9.59 new_esEs28(xwv40000, xwv30000, app(app(ty_@2, dbh), dca)) -> new_esEs21(xwv40000, xwv30000, dbh, dca) 26.56/9.59 new_ltEs24(xwv54, xwv55, ty_Integer) -> new_ltEs16(xwv54, xwv55) 26.56/9.59 new_compare28(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), fd, ff, fg) -> new_compare211(xwv4000, xwv4001, xwv4002, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs9(xwv4000, xwv3000, fd), new_asAs(new_esEs8(xwv4001, xwv3001, ff), new_esEs7(xwv4002, xwv3002, fg))), fd, ff, fg) 26.56/9.59 new_esEs37(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.59 new_primEqNat0(Succ(xwv400000), Zero) -> False 26.56/9.59 new_primEqNat0(Zero, Succ(xwv300000)) -> False 26.56/9.59 new_esEs10(xwv4000, xwv3000, app(app(ty_@2, ddb), ddc)) -> new_esEs21(xwv4000, xwv3000, ddb, ddc) 26.56/9.59 new_ltEs20(xwv542, xwv552, ty_Int) -> new_ltEs6(xwv542, xwv552) 26.56/9.59 new_esEs39(xwv65, xwv68, ty_Double) -> new_esEs17(xwv65, xwv68) 26.56/9.59 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Float, fca) -> new_esEs22(xwv40000, xwv30000) 26.56/9.59 new_ltEs5(Left(xwv540), Left(xwv550), ty_@0, bfg) -> new_ltEs4(xwv540, xwv550) 26.56/9.59 new_esEs30(xwv40002, xwv30002, ty_Char) -> new_esEs20(xwv40002, xwv30002) 26.56/9.59 new_esEs14(False, True) -> False 26.56/9.59 new_esEs14(True, False) -> False 26.56/9.59 new_ltEs5(Left(xwv540), Left(xwv550), app(app(ty_Either, bge), bgf), bfg) -> new_ltEs5(xwv540, xwv550, bge, bgf) 26.56/9.59 new_esEs29(xwv113, xwv115, ty_Double) -> new_esEs17(xwv113, xwv115) 26.56/9.59 new_ltEs14(EQ, EQ) -> True 26.56/9.59 new_ltEs10(Nothing, Just(xwv550), fed) -> True 26.56/9.59 new_esEs13(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.56/9.59 new_ltEs10(Just(xwv540), Just(xwv550), ty_Double) -> new_ltEs11(xwv540, xwv550) 26.56/9.59 new_ltEs21(xwv83, xwv84, ty_Double) -> new_ltEs11(xwv83, xwv84) 26.56/9.59 new_primCmpInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> GT 26.56/9.59 new_esEs6(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.56/9.59 new_esEs10(xwv4000, xwv3000, app(ty_[], ddh)) -> new_esEs12(xwv4000, xwv3000, ddh) 26.56/9.59 new_lt23(xwv66, xwv69, ty_Integer) -> new_lt17(xwv66, xwv69) 26.56/9.59 new_esEs35(xwv540, xwv550, ty_Bool) -> new_esEs14(xwv540, xwv550) 26.56/9.59 new_esEs5(xwv4000, xwv3000, app(app(ty_Either, fbh), fca)) -> new_esEs19(xwv4000, xwv3000, fbh, fca) 26.56/9.59 new_primCompAux00(xwv32, xwv33, GT, dhb) -> GT 26.56/9.59 new_ltEs10(Just(xwv540), Just(xwv550), ty_Char) -> new_ltEs7(xwv540, xwv550) 26.56/9.59 new_compare27(EQ, GT) -> LT 26.56/9.59 new_esEs4(xwv4001, xwv3001, app(app(ty_@2, edg), edh)) -> new_esEs21(xwv4001, xwv3001, edg, edh) 26.56/9.59 new_primCmpNat0(Zero, Succ(xwv30000)) -> LT 26.56/9.59 new_lt20(xwv541, xwv551, ty_@0) -> new_lt12(xwv541, xwv551) 26.56/9.59 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, app(ty_[], fhd)) -> new_esEs12(xwv40000, xwv30000, fhd) 26.56/9.59 new_primCompAux00(xwv32, xwv33, EQ, app(ty_[], ge)) -> new_compare26(xwv32, xwv33, ge) 26.56/9.59 new_esEs6(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.56/9.59 new_esEs9(xwv4000, xwv3000, app(ty_[], dgg)) -> new_esEs12(xwv4000, xwv3000, dgg) 26.56/9.59 new_ltEs19(xwv541, xwv551, ty_Char) -> new_ltEs7(xwv541, xwv551) 26.56/9.59 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Ordering, fca) -> new_esEs15(xwv40000, xwv30000) 26.56/9.59 new_esEs15(GT, GT) -> True 26.56/9.59 new_esEs6(xwv4000, xwv3000, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs25(xwv4000, xwv3000, ead, eae, eaf) 26.56/9.59 new_ltEs9(@2(xwv540, xwv541), @2(xwv550, xwv551), h, cd) -> new_pePe(new_lt19(xwv540, xwv550, h), new_asAs(new_esEs33(xwv540, xwv550, h), new_ltEs19(xwv541, xwv551, cd))) 26.56/9.59 new_esEs10(xwv4000, xwv3000, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs25(xwv4000, xwv3000, dde, ddf, ddg) 26.56/9.59 new_esEs11(xwv4000, xwv3000, app(ty_Ratio, def)) -> new_esEs23(xwv4000, xwv3000, def) 26.56/9.59 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.56/9.59 new_esEs28(xwv40000, xwv30000, app(ty_Maybe, dbe)) -> new_esEs16(xwv40000, xwv30000, dbe) 26.56/9.59 new_ltEs19(xwv541, xwv551, ty_Ordering) -> new_ltEs14(xwv541, xwv551) 26.56/9.59 new_esEs8(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 26.56/9.59 new_esEs7(xwv4002, xwv3002, app(ty_Maybe, eah)) -> new_esEs16(xwv4002, xwv3002, eah) 26.56/9.59 new_esEs38(xwv66, xwv69, app(ty_[], cda)) -> new_esEs12(xwv66, xwv69, cda) 26.56/9.59 new_lt21(xwv540, xwv550, ty_Int) -> new_lt7(xwv540, xwv550) 26.56/9.59 new_esEs31(xwv40001, xwv30001, app(app(ty_Either, egf), egg)) -> new_esEs19(xwv40001, xwv30001, egf, egg) 26.56/9.59 new_ltEs14(EQ, GT) -> True 26.56/9.59 new_ltEs6(xwv54, xwv55) -> new_fsEs(new_compare15(xwv54, xwv55)) 26.56/9.59 new_esEs13(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.56/9.59 new_compare0(xwv400, xwv300, app(app(ty_Either, fh), ga)) -> new_compare7(xwv400, xwv300, fh, ga) 26.56/9.59 new_primEqInt(Neg(Succ(xwv400000)), Neg(Succ(xwv300000))) -> new_primEqNat0(xwv400000, xwv300000) 26.56/9.59 new_compare15(xwv400, xwv300) -> new_primCmpInt(xwv400, xwv300) 26.56/9.59 new_primCmpInt(Neg(Zero), Pos(Succ(xwv30000))) -> LT 26.56/9.59 new_lt22(xwv65, xwv68, app(app(app(ty_@3, cag), cah), cba)) -> new_lt15(xwv65, xwv68, cag, cah, cba) 26.56/9.59 new_lt23(xwv66, xwv69, app(ty_[], cda)) -> new_lt13(xwv66, xwv69, cda) 26.56/9.59 new_primMulInt(Pos(xwv40000), Pos(xwv30010)) -> Pos(new_primMulNat0(xwv40000, xwv30010)) 26.56/9.59 new_ltEs8(True, False) -> False 26.56/9.59 new_ltEs14(LT, GT) -> True 26.56/9.59 new_ltEs14(GT, GT) -> True 26.56/9.59 new_ltEs22(xwv76, xwv77, ty_Int) -> new_ltEs6(xwv76, xwv77) 26.56/9.59 new_esEs32(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.59 new_esEs11(xwv4000, xwv3000, app(app(ty_Either, deb), dec)) -> new_esEs19(xwv4000, xwv3000, deb, dec) 26.56/9.59 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.56/9.59 new_esEs28(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.56/9.59 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(app(ty_@3, ffg), ffh), fga), fca) -> new_esEs25(xwv40000, xwv30000, ffg, ffh, fga) 26.56/9.59 new_compare10(xwv141, xwv142, True, chf) -> LT 26.56/9.59 new_ltEs22(xwv76, xwv77, ty_Integer) -> new_ltEs16(xwv76, xwv77) 26.56/9.59 new_primMulNat0(Succ(xwv400000), Zero) -> Zero 26.56/9.59 new_primMulNat0(Zero, Succ(xwv300100)) -> Zero 26.56/9.59 new_ltEs8(False, False) -> True 26.56/9.59 new_esEs8(xwv4001, xwv3001, ty_Float) -> new_esEs22(xwv4001, xwv3001) 26.56/9.59 new_primCompAux00(xwv32, xwv33, EQ, ty_Integer) -> new_compare8(xwv32, xwv33) 26.56/9.59 new_lt6(xwv113, xwv115, app(app(ty_@2, hc), hd)) -> new_lt9(xwv113, xwv115, hc, hd) 26.56/9.59 new_esEs6(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.56/9.59 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.59 new_primPlusNat1(Succ(xwv2220), xwv300100) -> Succ(Succ(new_primPlusNat0(xwv2220, xwv300100))) 26.56/9.59 new_lt23(xwv66, xwv69, ty_Float) -> new_lt11(xwv66, xwv69) 26.56/9.59 new_ltEs19(xwv541, xwv551, ty_Float) -> new_ltEs12(xwv541, xwv551) 26.56/9.59 new_compare0(xwv400, xwv300, ty_Bool) -> new_compare9(xwv400, xwv300) 26.56/9.59 new_ltEs22(xwv76, xwv77, app(app(ty_@2, cdg), cdh)) -> new_ltEs9(xwv76, xwv77, cdg, cdh) 26.56/9.59 new_primPlusNat0(Succ(xwv33200), Zero) -> Succ(xwv33200) 26.56/9.59 new_primPlusNat0(Zero, Succ(xwv24200)) -> Succ(xwv24200) 26.56/9.59 new_compare9(True, True) -> EQ 26.56/9.59 new_primPlusNat1(Zero, xwv300100) -> Succ(xwv300100) 26.56/9.59 new_lt23(xwv66, xwv69, ty_Int) -> new_lt7(xwv66, xwv69) 26.56/9.59 new_ltEs5(Left(xwv540), Left(xwv550), app(app(app(ty_@3, bgb), bgc), bgd), bfg) -> new_ltEs15(xwv540, xwv550, bgb, bgc, bgd) 26.56/9.59 new_esEs7(xwv4002, xwv3002, app(app(ty_Either, eba), ebb)) -> new_esEs19(xwv4002, xwv3002, eba, ebb) 26.56/9.59 new_esEs4(xwv4001, xwv3001, app(ty_Maybe, edd)) -> new_esEs16(xwv4001, xwv3001, edd) 26.56/9.59 new_ltEs19(xwv541, xwv551, ty_Integer) -> new_ltEs16(xwv541, xwv551) 26.56/9.59 new_esEs8(xwv4001, xwv3001, ty_Integer) -> new_esEs26(xwv4001, xwv3001) 26.56/9.59 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.56/9.59 new_esEs7(xwv4002, xwv3002, app(app(ty_@2, ebc), ebd)) -> new_esEs21(xwv4002, xwv3002, ebc, ebd) 26.56/9.59 new_lt6(xwv113, xwv115, ty_Ordering) -> new_lt14(xwv113, xwv115) 26.56/9.59 new_esEs4(xwv4001, xwv3001, ty_Char) -> new_esEs20(xwv4001, xwv3001) 26.56/9.59 new_esEs38(xwv66, xwv69, ty_Char) -> new_esEs20(xwv66, xwv69) 26.56/9.59 new_esEs9(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.56/9.59 new_lt6(xwv113, xwv115, app(ty_Ratio, eef)) -> new_lt18(xwv113, xwv115, eef) 26.56/9.59 new_esEs16(Just(xwv40000), Just(xwv30000), ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.56/9.59 new_esEs34(xwv541, xwv551, ty_Integer) -> new_esEs26(xwv541, xwv551) 26.56/9.59 new_ltEs4(xwv54, xwv55) -> new_fsEs(new_compare6(xwv54, xwv55)) 26.56/9.59 new_esEs33(xwv540, xwv550, app(app(ty_Either, dc), dd)) -> new_esEs19(xwv540, xwv550, dc, dd) 26.56/9.59 new_esEs31(xwv40001, xwv30001, ty_Double) -> new_esEs17(xwv40001, xwv30001) 26.56/9.59 new_esEs30(xwv40002, xwv30002, app(ty_Maybe, efc)) -> new_esEs16(xwv40002, xwv30002, efc) 26.56/9.59 new_ltEs5(Right(xwv540), Right(xwv550), bgg, ty_Float) -> new_ltEs12(xwv540, xwv550) 26.56/9.59 new_lt21(xwv540, xwv550, app(ty_Ratio, fbe)) -> new_lt18(xwv540, xwv550, fbe) 26.56/9.59 new_ltEs20(xwv542, xwv552, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs15(xwv542, xwv552, bce, bcf, bcg) 26.56/9.59 new_compare212(xwv113, xwv114, xwv115, xwv116, False, bae, he) -> new_compare110(xwv113, xwv114, xwv115, xwv116, new_lt6(xwv113, xwv115, bae), new_asAs(new_esEs29(xwv113, xwv115, bae), new_ltEs18(xwv114, xwv116, he)), bae, he) 26.56/9.59 new_compare0(xwv400, xwv300, ty_Char) -> new_compare16(xwv400, xwv300) 26.56/9.59 new_esEs27(xwv40001, xwv30001, ty_Ordering) -> new_esEs15(xwv40001, xwv30001) 26.56/9.59 new_esEs32(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.56/9.59 new_ltEs5(Right(xwv540), Right(xwv550), bgg, ty_Integer) -> new_ltEs16(xwv540, xwv550) 26.56/9.59 new_lt20(xwv541, xwv551, app(ty_Maybe, bde)) -> new_lt10(xwv541, xwv551, bde) 26.56/9.59 new_esEs38(xwv66, xwv69, ty_Int) -> new_esEs18(xwv66, xwv69) 26.56/9.59 new_esEs13(xwv40000, xwv30000, app(ty_Ratio, cha)) -> new_esEs23(xwv40000, xwv30000, cha) 26.56/9.59 new_lt23(xwv66, xwv69, ty_@0) -> new_lt12(xwv66, xwv69) 26.56/9.59 new_esEs10(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.56/9.59 new_esEs8(xwv4001, xwv3001, app(app(ty_Either, ecc), ecd)) -> new_esEs19(xwv4001, xwv3001, ecc, ecd) 26.56/9.59 new_lt19(xwv540, xwv550, app(app(ty_@2, cb), cc)) -> new_lt9(xwv540, xwv550, cb, cc) 26.56/9.59 new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_@2, gb), gc)) -> new_compare17(xwv32, xwv33, gb, gc) 26.56/9.59 new_esEs38(xwv66, xwv69, ty_Bool) -> new_esEs14(xwv66, xwv69) 26.56/9.59 new_esEs13(xwv40000, xwv30000, app(ty_[], che)) -> new_esEs12(xwv40000, xwv30000, che) 26.56/9.59 new_ltEs21(xwv83, xwv84, ty_Float) -> new_ltEs12(xwv83, xwv84) 26.56/9.59 new_esEs32(xwv40000, xwv30000, app(app(app(ty_@3, fae), faf), fag)) -> new_esEs25(xwv40000, xwv30000, fae, faf, fag) 26.56/9.59 new_ltEs8(False, True) -> True 26.56/9.59 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs25(xwv40000, xwv30000, fdc, fdd, fde) 26.56/9.59 new_lt22(xwv65, xwv68, ty_Ordering) -> new_lt14(xwv65, xwv68) 26.56/9.59 new_compare24(xwv76, xwv77, False, fdg, cea) -> new_compare14(xwv76, xwv77, new_ltEs22(xwv76, xwv77, fdg), fdg, cea) 26.56/9.59 new_esEs9(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.56/9.59 new_esEs27(xwv40001, xwv30001, ty_Bool) -> new_esEs14(xwv40001, xwv30001) 26.56/9.59 new_compare26([], :(xwv3000, xwv3001), eg) -> LT 26.56/9.59 new_esEs11(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.56/9.59 new_lt19(xwv540, xwv550, ty_Ordering) -> new_lt14(xwv540, xwv550) 26.56/9.59 new_lt22(xwv65, xwv68, ty_Bool) -> new_lt4(xwv65, xwv68) 26.56/9.59 new_esEs11(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.56/9.59 new_ltEs23(xwv67, xwv70, ty_Double) -> new_ltEs11(xwv67, xwv70) 26.56/9.59 new_compare7(Left(xwv4000), Right(xwv3000), fh, ga) -> LT 26.56/9.59 new_compare13(Double(xwv4000, Pos(xwv40010)), Double(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.56/9.59 new_compare13(Double(xwv4000, Neg(xwv40010)), Double(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.56/9.59 new_esEs36(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.56/9.59 new_esEs10(xwv4000, xwv3000, app(ty_Ratio, ddd)) -> new_esEs23(xwv4000, xwv3000, ddd) 26.56/9.59 new_esEs15(LT, LT) -> True 26.56/9.59 new_esEs32(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.56/9.59 new_esEs11(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.56/9.59 new_ltEs10(Just(xwv540), Just(xwv550), app(app(ty_@2, de), df)) -> new_ltEs9(xwv540, xwv550, de, df) 26.56/9.59 new_esEs4(xwv4001, xwv3001, ty_Integer) -> new_esEs26(xwv4001, xwv3001) 26.56/9.59 new_lt6(xwv113, xwv115, app(app(app(ty_@3, hh), baa), bab)) -> new_lt15(xwv113, xwv115, hh, baa, bab) 26.56/9.59 new_lt20(xwv541, xwv551, ty_Float) -> new_lt11(xwv541, xwv551) 26.56/9.59 new_esEs7(xwv4002, xwv3002, app(app(app(ty_@3, ebf), ebg), ebh)) -> new_esEs25(xwv4002, xwv3002, ebf, ebg, ebh) 26.56/9.59 new_esEs33(xwv540, xwv550, ty_Bool) -> new_esEs14(xwv540, xwv550) 26.56/9.59 new_ltEs5(Right(xwv540), Right(xwv550), bgg, app(ty_[], bhc)) -> new_ltEs13(xwv540, xwv550, bhc) 26.56/9.59 new_esEs34(xwv541, xwv551, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs25(xwv541, xwv551, bdg, bdh, bea) 26.56/9.59 new_lt22(xwv65, xwv68, app(ty_[], caf)) -> new_lt13(xwv65, xwv68, caf) 26.56/9.59 new_lt19(xwv540, xwv550, ty_Integer) -> new_lt17(xwv540, xwv550) 26.56/9.59 new_esEs31(xwv40001, xwv30001, app(ty_Ratio, ehb)) -> new_esEs23(xwv40001, xwv30001, ehb) 26.56/9.59 new_lt23(xwv66, xwv69, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt15(xwv66, xwv69, cdb, cdc, cdd) 26.56/9.59 new_esEs32(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.56/9.59 new_lt22(xwv65, xwv68, ty_@0) -> new_lt12(xwv65, xwv68) 26.56/9.59 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.59 new_compare111(xwv170, xwv171, xwv172, xwv173, True, dhd, dhe) -> LT 26.56/9.59 new_esEs5(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.56/9.59 new_lt9(xwv113, xwv115, hc, hd) -> new_esEs15(new_compare17(xwv113, xwv115, hc, hd), LT) 26.56/9.59 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_Ratio, chg), bfg) -> new_ltEs17(xwv540, xwv550, chg) 26.56/9.59 new_esEs35(xwv540, xwv550, app(ty_Ratio, fbe)) -> new_esEs23(xwv540, xwv550, fbe) 26.56/9.59 new_ltEs5(Right(xwv540), Left(xwv550), bgg, bfg) -> False 26.56/9.59 new_esEs33(xwv540, xwv550, app(ty_Maybe, ce)) -> new_esEs16(xwv540, xwv550, ce) 26.56/9.59 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.56/9.59 new_esEs11(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.56/9.59 new_esEs9(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.56/9.59 new_esEs7(xwv4002, xwv3002, ty_@0) -> new_esEs24(xwv4002, xwv3002) 26.56/9.59 new_lt21(xwv540, xwv550, ty_Char) -> new_lt8(xwv540, xwv550) 26.56/9.59 new_esEs34(xwv541, xwv551, ty_@0) -> new_esEs24(xwv541, xwv551) 26.56/9.59 new_compare24(xwv76, xwv77, True, fdg, cea) -> EQ 26.56/9.59 new_esEs39(xwv65, xwv68, app(app(app(ty_@3, cag), cah), cba)) -> new_esEs25(xwv65, xwv68, cag, cah, cba) 26.56/9.59 new_ltEs8(True, True) -> True 26.56/9.59 new_primCmpInt(Pos(Succ(xwv40000)), Pos(xwv3000)) -> new_primCmpNat0(Succ(xwv40000), xwv3000) 26.56/9.59 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_Maybe, bfh), bfg) -> new_ltEs10(xwv540, xwv550, bfh) 26.56/9.59 new_esEs39(xwv65, xwv68, app(app(ty_Either, cbb), cbc)) -> new_esEs19(xwv65, xwv68, cbb, cbc) 26.56/9.59 new_lt7(xwv113, xwv115) -> new_esEs15(new_compare15(xwv113, xwv115), LT) 26.56/9.59 new_lt15(xwv113, xwv115, hh, baa, bab) -> new_esEs15(new_compare28(xwv113, xwv115, hh, baa, bab), LT) 26.56/9.59 new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_Either, ha), hb)) -> new_compare7(xwv32, xwv33, ha, hb) 26.56/9.59 new_lt19(xwv540, xwv550, ty_Char) -> new_lt8(xwv540, xwv550) 26.56/9.59 new_esEs35(xwv540, xwv550, ty_Integer) -> new_esEs26(xwv540, xwv550) 26.56/9.59 new_esEs13(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.56/9.59 new_esEs34(xwv541, xwv551, app(app(ty_Either, beb), bec)) -> new_esEs19(xwv541, xwv551, beb, bec) 26.56/9.59 new_esEs13(xwv40000, xwv30000, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs25(xwv40000, xwv30000, chb, chc, chd) 26.56/9.59 new_esEs9(xwv4000, xwv3000, app(app(ty_@2, dga), dgb)) -> new_esEs21(xwv4000, xwv3000, dga, dgb) 26.56/9.59 new_ltEs18(xwv114, xwv116, app(ty_[], bba)) -> new_ltEs13(xwv114, xwv116, bba) 26.56/9.59 new_ltEs24(xwv54, xwv55, app(ty_[], ef)) -> new_ltEs13(xwv54, xwv55, ef) 26.56/9.59 new_ltEs11(xwv54, xwv55) -> new_fsEs(new_compare13(xwv54, xwv55)) 26.56/9.59 new_compare17(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), fa, fb) -> new_compare212(xwv4000, xwv4001, xwv3000, xwv3001, new_asAs(new_esEs5(xwv4000, xwv3000, fa), new_esEs4(xwv4001, xwv3001, fb)), fa, fb) 26.56/9.59 new_esEs31(xwv40001, xwv30001, ty_Char) -> new_esEs20(xwv40001, xwv30001) 26.56/9.59 new_lt20(xwv541, xwv551, ty_Ordering) -> new_lt14(xwv541, xwv551) 26.56/9.59 new_compare26(:(xwv4000, xwv4001), [], eg) -> GT 26.56/9.59 new_esEs27(xwv40001, xwv30001, app(app(ty_@2, daf), dag)) -> new_esEs21(xwv40001, xwv30001, daf, dag) 26.56/9.59 new_esEs38(xwv66, xwv69, app(ty_Maybe, cch)) -> new_esEs16(xwv66, xwv69, cch) 26.56/9.59 new_lt19(xwv540, xwv550, ty_Int) -> new_lt7(xwv540, xwv550) 26.56/9.59 new_lt20(xwv541, xwv551, ty_Char) -> new_lt8(xwv541, xwv551) 26.56/9.59 new_esEs35(xwv540, xwv550, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs25(xwv540, xwv550, beh, bfa, bfb) 26.56/9.59 new_esEs35(xwv540, xwv550, ty_@0) -> new_esEs24(xwv540, xwv550) 26.56/9.59 new_compare0(xwv400, xwv300, app(app(ty_@2, fa), fb)) -> new_compare17(xwv400, xwv300, fa, fb) 26.56/9.59 new_ltEs24(xwv54, xwv55, app(app(ty_@2, h), cd)) -> new_ltEs9(xwv54, xwv55, h, cd) 26.56/9.59 new_lt22(xwv65, xwv68, app(app(ty_Either, cbb), cbc)) -> new_lt16(xwv65, xwv68, cbb, cbc) 26.56/9.59 new_compare26([], [], eg) -> EQ 26.56/9.59 new_lt8(xwv113, xwv115) -> new_esEs15(new_compare16(xwv113, xwv115), LT) 26.56/9.59 new_lt6(xwv113, xwv115, ty_Bool) -> new_lt4(xwv113, xwv115) 26.56/9.59 new_lt20(xwv541, xwv551, ty_Int) -> new_lt7(xwv541, xwv551) 26.56/9.59 new_ltEs5(Right(xwv540), Right(xwv550), bgg, ty_Double) -> new_ltEs11(xwv540, xwv550) 26.56/9.59 new_esEs14(False, False) -> True 26.56/9.59 new_esEs32(xwv40000, xwv30000, app(ty_Maybe, ehg)) -> new_esEs16(xwv40000, xwv30000, ehg) 26.56/9.59 new_esEs35(xwv540, xwv550, app(app(ty_Either, bfc), bfd)) -> new_esEs19(xwv540, xwv550, bfc, bfd) 26.56/9.59 new_esEs36(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.56/9.59 new_compare0(xwv400, xwv300, app(ty_[], eg)) -> new_compare26(xwv400, xwv300, eg) 26.56/9.59 new_lt21(xwv540, xwv550, ty_Bool) -> new_lt4(xwv540, xwv550) 26.56/9.59 new_esEs35(xwv540, xwv550, ty_Int) -> new_esEs18(xwv540, xwv550) 26.56/9.59 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_Maybe, fce)) -> new_esEs16(xwv40000, xwv30000, fce) 26.56/9.59 new_lt21(xwv540, xwv550, ty_Float) -> new_lt11(xwv540, xwv550) 26.56/9.59 new_esEs34(xwv541, xwv551, ty_Bool) -> new_esEs14(xwv541, xwv551) 26.56/9.59 new_esEs31(xwv40001, xwv30001, ty_Ordering) -> new_esEs15(xwv40001, xwv30001) 26.56/9.59 new_primCompAux00(xwv32, xwv33, EQ, ty_Char) -> new_compare16(xwv32, xwv33) 26.56/9.59 new_lt22(xwv65, xwv68, ty_Char) -> new_lt8(xwv65, xwv68) 26.56/9.59 new_esEs11(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.56/9.59 new_esEs13(xwv40000, xwv30000, app(ty_Maybe, cgd)) -> new_esEs16(xwv40000, xwv30000, cgd) 26.56/9.59 new_esEs15(EQ, EQ) -> True 26.56/9.59 new_esEs35(xwv540, xwv550, ty_Char) -> new_esEs20(xwv540, xwv550) 26.56/9.59 new_esEs10(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.56/9.59 new_fsEs(xwv211) -> new_not(new_esEs15(xwv211, GT)) 26.56/9.59 new_ltEs20(xwv542, xwv552, app(ty_[], bcd)) -> new_ltEs13(xwv542, xwv552, bcd) 26.56/9.59 new_esEs38(xwv66, xwv69, app(app(ty_Either, cde), cdf)) -> new_esEs19(xwv66, xwv69, cde, cdf) 26.56/9.59 new_esEs11(xwv4000, xwv3000, app(ty_Maybe, dea)) -> new_esEs16(xwv4000, xwv3000, dea) 26.56/9.59 new_ltEs24(xwv54, xwv55, ty_Double) -> new_ltEs11(xwv54, xwv55) 26.56/9.59 new_lt12(xwv113, xwv115) -> new_esEs15(new_compare6(xwv113, xwv115), LT) 26.56/9.59 new_esEs10(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.56/9.59 new_lt16(xwv113, xwv115, bac, bad) -> new_esEs15(new_compare7(xwv113, xwv115, bac, bad), LT) 26.56/9.59 new_esEs6(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.56/9.59 new_esEs34(xwv541, xwv551, app(ty_Maybe, bde)) -> new_esEs16(xwv541, xwv551, bde) 26.56/9.59 new_primPlusNat0(Succ(xwv33200), Succ(xwv24200)) -> Succ(Succ(new_primPlusNat0(xwv33200, xwv24200))) 26.56/9.59 new_ltEs5(Left(xwv540), Left(xwv550), ty_Ordering, bfg) -> new_ltEs14(xwv540, xwv550) 26.56/9.59 new_esEs7(xwv4002, xwv3002, app(ty_[], eca)) -> new_esEs12(xwv4002, xwv3002, eca) 26.56/9.59 new_esEs33(xwv540, xwv550, ty_Int) -> new_esEs18(xwv540, xwv550) 26.56/9.59 new_ltEs10(Just(xwv540), Nothing, fed) -> False 26.56/9.59 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_Ratio, fff), fca) -> new_esEs23(xwv40000, xwv30000, fff) 26.56/9.59 new_ltEs10(Nothing, Nothing, fed) -> True 26.56/9.59 new_esEs4(xwv4001, xwv3001, app(app(ty_Either, ede), edf)) -> new_esEs19(xwv4001, xwv3001, ede, edf) 26.56/9.59 new_esEs4(xwv4001, xwv3001, app(app(app(ty_@3, eeb), eec), eed)) -> new_esEs25(xwv4001, xwv3001, eeb, eec, eed) 26.56/9.59 new_ltEs5(Left(xwv540), Left(xwv550), app(app(ty_@2, bfe), bff), bfg) -> new_ltEs9(xwv540, xwv550, bfe, bff) 26.56/9.59 new_esEs4(xwv4001, xwv3001, ty_@0) -> new_esEs24(xwv4001, xwv3001) 26.56/9.59 new_esEs13(xwv40000, xwv30000, app(app(ty_Either, cge), cgf)) -> new_esEs19(xwv40000, xwv30000, cge, cgf) 26.56/9.59 new_esEs28(xwv40000, xwv30000, app(ty_Ratio, dcb)) -> new_esEs23(xwv40000, xwv30000, dcb) 26.56/9.59 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, app(app(ty_@2, fgf), fgg)) -> new_esEs21(xwv40000, xwv30000, fgf, fgg) 26.56/9.59 new_lt6(xwv113, xwv115, app(app(ty_Either, bac), bad)) -> new_lt16(xwv113, xwv115, bac, bad) 26.56/9.59 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_Ratio, fdb)) -> new_esEs23(xwv40000, xwv30000, fdb) 26.56/9.59 new_esEs32(xwv40000, xwv30000, app(ty_Ratio, fad)) -> new_esEs23(xwv40000, xwv30000, fad) 26.56/9.59 new_esEs19(Left(xwv40000), Left(xwv30000), ty_@0, fca) -> new_esEs24(xwv40000, xwv30000) 26.56/9.59 new_compare18(Nothing, Nothing, fc) -> EQ 26.56/9.59 new_compare16(Char(xwv4000), Char(xwv3000)) -> new_primCmpNat0(xwv4000, xwv3000) 26.56/9.59 new_ltEs22(xwv76, xwv77, ty_Double) -> new_ltEs11(xwv76, xwv77) 26.56/9.59 new_lt21(xwv540, xwv550, app(app(ty_Either, bfc), bfd)) -> new_lt16(xwv540, xwv550, bfc, bfd) 26.56/9.59 new_lt19(xwv540, xwv550, ty_Bool) -> new_lt4(xwv540, xwv550) 26.56/9.59 new_ltEs5(Left(xwv540), Left(xwv550), ty_Float, bfg) -> new_ltEs12(xwv540, xwv550) 26.56/9.59 new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, dfc, dfd, dfe) -> LT 26.56/9.59 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.56/9.59 new_esEs27(xwv40001, xwv30001, ty_Double) -> new_esEs17(xwv40001, xwv30001) 26.56/9.59 new_esEs5(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.56/9.59 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.56/9.59 new_lt4(xwv113, xwv115) -> new_esEs15(new_compare9(xwv113, xwv115), LT) 26.56/9.59 new_ltEs5(Right(xwv540), Right(xwv550), bgg, app(app(ty_@2, bgh), bha)) -> new_ltEs9(xwv540, xwv550, bgh, bha) 26.56/9.59 new_esEs39(xwv65, xwv68, ty_Float) -> new_esEs22(xwv65, xwv68) 26.56/9.59 new_esEs31(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.56/9.59 new_esEs5(xwv4000, xwv3000, app(ty_[], cgc)) -> new_esEs12(xwv4000, xwv3000, cgc) 26.56/9.59 new_lt6(xwv113, xwv115, ty_Integer) -> new_lt17(xwv113, xwv115) 26.56/9.59 new_lt20(xwv541, xwv551, app(app(ty_Either, beb), bec)) -> new_lt16(xwv541, xwv551, beb, bec) 26.56/9.59 new_ltEs5(Left(xwv540), Left(xwv550), ty_Integer, bfg) -> new_ltEs16(xwv540, xwv550) 26.56/9.59 new_esEs38(xwv66, xwv69, ty_Float) -> new_esEs22(xwv66, xwv69) 26.56/9.59 new_primCmpNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primCmpNat0(xwv40000, xwv30000) 26.56/9.59 new_compare13(Double(xwv4000, Neg(xwv40010)), Double(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.56/9.59 new_ltEs23(xwv67, xwv70, app(ty_[], cbh)) -> new_ltEs13(xwv67, xwv70, cbh) 26.56/9.59 new_compare0(xwv400, xwv300, ty_Int) -> new_compare15(xwv400, xwv300) 26.56/9.59 new_esEs38(xwv66, xwv69, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs25(xwv66, xwv69, cdb, cdc, cdd) 26.56/9.59 new_esEs39(xwv65, xwv68, ty_@0) -> new_esEs24(xwv65, xwv68) 26.56/9.59 new_esEs29(xwv113, xwv115, app(ty_Ratio, eef)) -> new_esEs23(xwv113, xwv115, eef) 26.56/9.59 new_lt19(xwv540, xwv550, ty_Float) -> new_lt11(xwv540, xwv550) 26.56/9.59 new_lt21(xwv540, xwv550, ty_Integer) -> new_lt17(xwv540, xwv550) 26.56/9.59 new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, False, dfc, dfd, dfe) -> GT 26.56/9.59 new_esEs30(xwv40002, xwv30002, app(ty_Ratio, efh)) -> new_esEs23(xwv40002, xwv30002, efh) 26.56/9.59 new_compare14(xwv150, xwv151, False, dgh, dha) -> GT 26.56/9.59 new_esEs32(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.56/9.59 new_lt20(xwv541, xwv551, ty_Integer) -> new_lt17(xwv541, xwv551) 26.56/9.59 new_ltEs22(xwv76, xwv77, app(ty_[], cec)) -> new_ltEs13(xwv76, xwv77, cec) 26.56/9.59 new_lt17(xwv113, xwv115) -> new_esEs15(new_compare8(xwv113, xwv115), LT) 26.56/9.59 new_ltEs14(LT, LT) -> True 26.56/9.59 new_esEs33(xwv540, xwv550, ty_Char) -> new_esEs20(xwv540, xwv550) 26.56/9.59 new_esEs19(Left(xwv40000), Right(xwv30000), fbh, fca) -> False 26.56/9.59 new_esEs19(Right(xwv40000), Left(xwv30000), fbh, fca) -> False 26.56/9.59 new_esEs4(xwv4001, xwv3001, ty_Float) -> new_esEs22(xwv4001, xwv3001) 26.56/9.59 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.59 new_esEs32(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.59 new_esEs35(xwv540, xwv550, app(ty_Maybe, bef)) -> new_esEs16(xwv540, xwv550, bef) 26.56/9.59 new_esEs6(xwv4000, xwv3000, app(ty_[], eag)) -> new_esEs12(xwv4000, xwv3000, eag) 26.56/9.59 new_esEs38(xwv66, xwv69, ty_@0) -> new_esEs24(xwv66, xwv69) 26.56/9.59 new_esEs39(xwv65, xwv68, ty_Integer) -> new_esEs26(xwv65, xwv68) 26.56/9.59 new_esEs33(xwv540, xwv550, ty_Ordering) -> new_esEs15(xwv540, xwv550) 26.56/9.59 new_compare9(False, True) -> LT 26.56/9.59 new_lt19(xwv540, xwv550, app(app(ty_Either, dc), dd)) -> new_lt16(xwv540, xwv550, dc, dd) 26.56/9.59 new_esEs10(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.56/9.59 new_esEs29(xwv113, xwv115, app(ty_Maybe, hf)) -> new_esEs16(xwv113, xwv115, hf) 26.56/9.59 new_primCmpInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> LT 26.56/9.59 new_esEs29(xwv113, xwv115, app(ty_[], hg)) -> new_esEs12(xwv113, xwv115, hg) 26.56/9.59 new_primCompAux00(xwv32, xwv33, EQ, ty_Double) -> new_compare13(xwv32, xwv33) 26.56/9.59 new_lt22(xwv65, xwv68, ty_Double) -> new_lt5(xwv65, xwv68) 26.56/9.59 new_compare27(GT, EQ) -> GT 26.56/9.59 new_ltEs18(xwv114, xwv116, ty_Ordering) -> new_ltEs14(xwv114, xwv116) 26.56/9.59 new_esEs7(xwv4002, xwv3002, ty_Float) -> new_esEs22(xwv4002, xwv3002) 26.56/9.59 new_compare9(False, False) -> EQ 26.56/9.59 new_esEs28(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.56/9.59 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, app(app(app(ty_@3, fha), fhb), fhc)) -> new_esEs25(xwv40000, xwv30000, fha, fhb, fhc) 26.56/9.59 new_lt22(xwv65, xwv68, ty_Float) -> new_lt11(xwv65, xwv68) 26.56/9.59 new_esEs7(xwv4002, xwv3002, ty_Double) -> new_esEs17(xwv4002, xwv3002) 26.56/9.59 new_ltEs18(xwv114, xwv116, ty_Float) -> new_ltEs12(xwv114, xwv116) 26.56/9.59 new_esEs8(xwv4001, xwv3001, app(ty_[], edc)) -> new_esEs12(xwv4001, xwv3001, edc) 26.56/9.59 new_lt23(xwv66, xwv69, ty_Char) -> new_lt8(xwv66, xwv69) 26.56/9.59 new_esEs12(:(xwv40000, xwv40001), [], cgc) -> False 26.56/9.59 new_esEs12([], :(xwv30000, xwv30001), cgc) -> False 26.56/9.59 new_compare14(xwv150, xwv151, True, dgh, dha) -> LT 26.56/9.59 new_lt20(xwv541, xwv551, app(ty_Ratio, fbd)) -> new_lt18(xwv541, xwv551, fbd) 26.56/9.59 new_primCmpInt(Pos(Zero), Neg(Succ(xwv30000))) -> GT 26.56/9.59 new_esEs17(Double(xwv40000, xwv40001), Double(xwv30000, xwv30001)) -> new_esEs18(new_sr(xwv40000, xwv30001), new_sr(xwv40001, xwv30000)) 26.56/9.59 new_compare210(xwv54, xwv55, False, fhe) -> new_compare10(xwv54, xwv55, new_ltEs24(xwv54, xwv55, fhe), fhe) 26.56/9.59 new_primCmpInt(Neg(Succ(xwv40000)), Neg(xwv3000)) -> new_primCmpNat0(xwv3000, Succ(xwv40000)) 26.56/9.59 new_esEs5(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.56/9.59 new_esEs34(xwv541, xwv551, ty_Char) -> new_esEs20(xwv541, xwv551) 26.56/9.59 new_lt19(xwv540, xwv550, app(app(app(ty_@3, cg), da), db)) -> new_lt15(xwv540, xwv550, cg, da, db) 26.56/9.59 new_ltEs5(Left(xwv540), Left(xwv550), ty_Double, bfg) -> new_ltEs11(xwv540, xwv550) 26.56/9.59 new_esEs11(xwv4000, xwv3000, app(app(app(ty_@3, deg), deh), dfa)) -> new_esEs25(xwv4000, xwv3000, deg, deh, dfa) 26.56/9.59 new_compare0(xwv400, xwv300, ty_Ordering) -> new_compare27(xwv400, xwv300) 26.56/9.59 new_esEs7(xwv4002, xwv3002, ty_Ordering) -> new_esEs15(xwv4002, xwv3002) 26.56/9.59 new_esEs38(xwv66, xwv69, ty_Integer) -> new_esEs26(xwv66, xwv69) 26.56/9.59 new_compare0(xwv400, xwv300, ty_Double) -> new_compare13(xwv400, xwv300) 26.56/9.59 new_esEs39(xwv65, xwv68, app(ty_Maybe, cae)) -> new_esEs16(xwv65, xwv68, cae) 26.56/9.59 new_esEs11(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.56/9.59 new_lt20(xwv541, xwv551, ty_Bool) -> new_lt4(xwv541, xwv551) 26.56/9.59 new_primEqInt(Pos(Succ(xwv400000)), Pos(Zero)) -> False 26.56/9.59 new_primEqInt(Pos(Zero), Pos(Succ(xwv300000))) -> False 26.56/9.59 new_compare110(xwv170, xwv171, xwv172, xwv173, False, xwv175, dhd, dhe) -> new_compare111(xwv170, xwv171, xwv172, xwv173, xwv175, dhd, dhe) 26.56/9.59 new_esEs34(xwv541, xwv551, ty_Int) -> new_esEs18(xwv541, xwv551) 26.56/9.59 new_compare0(xwv400, xwv300, app(ty_Maybe, fc)) -> new_compare18(xwv400, xwv300, fc) 26.56/9.59 new_esEs29(xwv113, xwv115, app(app(ty_@2, hc), hd)) -> new_esEs21(xwv113, xwv115, hc, hd) 26.56/9.59 new_lt23(xwv66, xwv69, ty_Ordering) -> new_lt14(xwv66, xwv69) 26.56/9.59 new_esEs28(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.56/9.59 new_esEs13(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.56/9.59 new_esEs31(xwv40001, xwv30001, ty_Bool) -> new_esEs14(xwv40001, xwv30001) 26.56/9.59 new_primCompAux00(xwv32, xwv33, EQ, app(ty_Maybe, gd)) -> new_compare18(xwv32, xwv33, gd) 26.56/9.59 new_lt5(xwv113, xwv115) -> new_esEs15(new_compare13(xwv113, xwv115), LT) 26.56/9.59 new_ltEs21(xwv83, xwv84, app(ty_[], cfe)) -> new_ltEs13(xwv83, xwv84, cfe) 26.56/9.59 new_ltEs19(xwv541, xwv551, app(ty_Ratio, fba)) -> new_ltEs17(xwv541, xwv551, fba) 26.56/9.59 new_lt22(xwv65, xwv68, ty_Integer) -> new_lt17(xwv65, xwv68) 26.56/9.59 new_ltEs20(xwv542, xwv552, ty_Ordering) -> new_ltEs14(xwv542, xwv552) 26.56/9.59 new_ltEs18(xwv114, xwv116, ty_Integer) -> new_ltEs16(xwv114, xwv116) 26.56/9.59 new_primCmpNat0(Zero, Zero) -> EQ 26.56/9.59 new_lt19(xwv540, xwv550, app(ty_[], cf)) -> new_lt13(xwv540, xwv550, cf) 26.56/9.59 new_compare27(EQ, LT) -> GT 26.56/9.59 new_lt6(xwv113, xwv115, ty_Int) -> new_lt7(xwv113, xwv115) 26.56/9.59 new_lt23(xwv66, xwv69, app(app(ty_@2, ccf), ccg)) -> new_lt9(xwv66, xwv69, ccf, ccg) 26.56/9.59 new_esEs13(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.56/9.59 new_esEs30(xwv40002, xwv30002, ty_Float) -> new_esEs22(xwv40002, xwv30002) 26.56/9.59 new_esEs16(Nothing, Just(xwv30000), fbg) -> False 26.56/9.59 new_esEs16(Just(xwv40000), Nothing, fbg) -> False 26.56/9.59 new_esEs31(xwv40001, xwv30001, app(ty_Maybe, ege)) -> new_esEs16(xwv40001, xwv30001, ege) 26.56/9.59 new_esEs34(xwv541, xwv551, app(app(ty_@2, bdb), bdc)) -> new_esEs21(xwv541, xwv551, bdb, bdc) 26.56/9.59 new_esEs30(xwv40002, xwv30002, ty_Double) -> new_esEs17(xwv40002, xwv30002) 26.56/9.59 new_ltEs5(Left(xwv540), Left(xwv550), ty_Bool, bfg) -> new_ltEs8(xwv540, xwv550) 26.56/9.59 new_ltEs10(Just(xwv540), Just(xwv550), ty_@0) -> new_ltEs4(xwv540, xwv550) 26.56/9.59 new_esEs15(LT, EQ) -> False 26.56/9.59 new_esEs15(EQ, LT) -> False 26.56/9.59 new_compare13(Double(xwv4000, Pos(xwv40010)), Double(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.56/9.59 new_esEs35(xwv540, xwv550, ty_Ordering) -> new_esEs15(xwv540, xwv550) 26.56/9.59 new_ltEs20(xwv542, xwv552, ty_Double) -> new_ltEs11(xwv542, xwv552) 26.56/9.59 new_esEs7(xwv4002, xwv3002, ty_Integer) -> new_esEs26(xwv4002, xwv3002) 26.56/9.59 new_ltEs19(xwv541, xwv551, ty_Int) -> new_ltEs6(xwv541, xwv551) 26.56/9.59 new_lt14(xwv113, xwv115) -> new_esEs15(new_compare27(xwv113, xwv115), LT) 26.56/9.59 new_esEs6(xwv4000, xwv3000, app(app(ty_Either, dhg), dhh)) -> new_esEs19(xwv4000, xwv3000, dhg, dhh) 26.56/9.59 new_ltEs23(xwv67, xwv70, app(app(ty_@2, cbe), cbf)) -> new_ltEs9(xwv67, xwv70, cbe, cbf) 26.56/9.59 new_ltEs19(xwv541, xwv551, ty_@0) -> new_ltEs4(xwv541, xwv551) 26.56/9.59 new_esEs13(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.56/9.59 new_ltEs23(xwv67, xwv70, ty_Integer) -> new_ltEs16(xwv67, xwv70) 26.56/9.59 new_primCompAux00(xwv32, xwv33, EQ, ty_Int) -> new_compare15(xwv32, xwv33) 26.56/9.59 new_primCompAux00(xwv32, xwv33, EQ, app(ty_Ratio, dhc)) -> new_compare29(xwv32, xwv33, dhc) 26.56/9.59 new_ltEs21(xwv83, xwv84, ty_Int) -> new_ltEs6(xwv83, xwv84) 26.56/9.59 new_ltEs10(Just(xwv540), Just(xwv550), ty_Int) -> new_ltEs6(xwv540, xwv550) 26.56/9.59 new_lt19(xwv540, xwv550, ty_@0) -> new_lt12(xwv540, xwv550) 26.56/9.59 new_esEs6(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.56/9.59 new_ltEs24(xwv54, xwv55, ty_@0) -> new_ltEs4(xwv54, xwv55) 26.56/9.59 new_lt6(xwv113, xwv115, ty_Float) -> new_lt11(xwv113, xwv115) 26.56/9.59 new_ltEs14(EQ, LT) -> False 26.56/9.59 new_esEs28(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.56/9.59 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_[], dh)) -> new_ltEs13(xwv540, xwv550, dh) 26.56/9.59 new_esEs39(xwv65, xwv68, app(ty_[], caf)) -> new_esEs12(xwv65, xwv68, caf) 26.56/9.59 new_esEs8(xwv4001, xwv3001, app(ty_Maybe, ecb)) -> new_esEs16(xwv4001, xwv3001, ecb) 26.56/9.59 new_esEs27(xwv40001, xwv30001, app(ty_Ratio, dah)) -> new_esEs23(xwv40001, xwv30001, dah) 26.56/9.59 new_esEs13(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.59 new_esEs30(xwv40002, xwv30002, ty_Ordering) -> new_esEs15(xwv40002, xwv30002) 26.56/9.59 new_esEs16(Nothing, Nothing, fbg) -> True 26.56/9.59 new_esEs39(xwv65, xwv68, app(app(ty_@2, caa), cab)) -> new_esEs21(xwv65, xwv68, caa, cab) 26.56/9.59 new_lt21(xwv540, xwv550, app(app(app(ty_@3, beh), bfa), bfb)) -> new_lt15(xwv540, xwv550, beh, bfa, bfb) 26.56/9.59 new_ltEs20(xwv542, xwv552, ty_Bool) -> new_ltEs8(xwv542, xwv552) 26.56/9.59 new_esEs29(xwv113, xwv115, ty_Int) -> new_esEs18(xwv113, xwv115) 26.56/9.59 new_ltEs5(Left(xwv540), Left(xwv550), ty_Char, bfg) -> new_ltEs7(xwv540, xwv550) 26.56/9.59 new_esEs29(xwv113, xwv115, ty_Bool) -> new_esEs14(xwv113, xwv115) 26.56/9.59 new_esEs5(xwv4000, xwv3000, app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs25(xwv4000, xwv3000, eeh, efa, efb) 26.56/9.59 new_ltEs19(xwv541, xwv551, app(ty_[], bd)) -> new_ltEs13(xwv541, xwv551, bd) 26.56/9.59 new_primCmpNat0(Succ(xwv40000), Zero) -> GT 26.56/9.59 new_pePe(False, xwv216) -> xwv216 26.56/9.59 new_esEs33(xwv540, xwv550, ty_@0) -> new_esEs24(xwv540, xwv550) 26.56/9.59 new_lt21(xwv540, xwv550, app(ty_[], beg)) -> new_lt13(xwv540, xwv550, beg) 26.56/9.59 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_Maybe, dg)) -> new_ltEs10(xwv540, xwv550, dg) 26.56/9.59 new_esEs10(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.56/9.59 new_esEs4(xwv4001, xwv3001, ty_Ordering) -> new_esEs15(xwv4001, xwv3001) 26.56/9.59 new_compare19(Float(xwv4000, Pos(xwv40010)), Float(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.56/9.59 new_ltEs17(xwv54, xwv55, fbf) -> new_fsEs(new_compare29(xwv54, xwv55, fbf)) 26.56/9.59 new_compare27(LT, LT) -> EQ 26.56/9.59 new_esEs33(xwv540, xwv550, app(app(app(ty_@3, cg), da), db)) -> new_esEs25(xwv540, xwv550, cg, da, db) 26.56/9.59 new_compare25(xwv83, xwv84, True, cfa, fcc) -> EQ 26.56/9.59 new_compare210(xwv54, xwv55, True, fhe) -> EQ 26.56/9.59 new_esEs27(xwv40001, xwv30001, ty_Char) -> new_esEs20(xwv40001, xwv30001) 26.56/9.59 new_esEs15(EQ, GT) -> False 26.56/9.59 new_esEs15(GT, EQ) -> False 26.56/9.59 new_compare112(xwv157, xwv158, True, feb, fec) -> LT 26.56/9.59 new_lt11(xwv113, xwv115) -> new_esEs15(new_compare19(xwv113, xwv115), LT) 26.56/9.59 new_compare11(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, xwv192, dfc, dfd, dfe) -> new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, dfc, dfd, dfe) 26.56/9.59 new_lt23(xwv66, xwv69, ty_Bool) -> new_lt4(xwv66, xwv69) 26.56/9.59 new_esEs23(:%(xwv40000, xwv40001), :%(xwv30000, xwv30001), fcb) -> new_asAs(new_esEs37(xwv40000, xwv30000, fcb), new_esEs36(xwv40001, xwv30001, fcb)) 26.56/9.59 new_esEs27(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.56/9.59 new_esEs34(xwv541, xwv551, app(ty_Ratio, fbd)) -> new_esEs23(xwv541, xwv551, fbd) 26.56/9.59 new_compare110(xwv170, xwv171, xwv172, xwv173, True, xwv175, dhd, dhe) -> new_compare111(xwv170, xwv171, xwv172, xwv173, True, dhd, dhe) 26.56/9.59 new_ltEs24(xwv54, xwv55, ty_Int) -> new_ltEs6(xwv54, xwv55) 26.56/9.59 new_compare10(xwv141, xwv142, False, chf) -> GT 26.56/9.59 new_primEqInt(Pos(Zero), Neg(Succ(xwv300000))) -> False 26.56/9.59 new_primEqInt(Neg(Zero), Pos(Succ(xwv300000))) -> False 26.56/9.59 new_ltEs20(xwv542, xwv552, ty_Integer) -> new_ltEs16(xwv542, xwv552) 26.56/9.59 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.56/9.59 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_Maybe, ffa), fca) -> new_esEs16(xwv40000, xwv30000, ffa) 26.56/9.59 new_esEs10(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.56/9.59 new_compare9(True, False) -> GT 26.56/9.59 new_ltEs23(xwv67, xwv70, ty_Float) -> new_ltEs12(xwv67, xwv70) 26.56/9.59 new_lt23(xwv66, xwv69, app(app(ty_Either, cde), cdf)) -> new_lt16(xwv66, xwv69, cde, cdf) 26.56/9.59 new_esEs34(xwv541, xwv551, app(ty_[], bdf)) -> new_esEs12(xwv541, xwv551, bdf) 26.56/9.59 new_esEs11(xwv4000, xwv3000, app(ty_[], dfb)) -> new_esEs12(xwv4000, xwv3000, dfb) 26.56/9.59 new_esEs37(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.59 new_esEs33(xwv540, xwv550, ty_Float) -> new_esEs22(xwv540, xwv550) 26.56/9.59 new_esEs9(xwv4000, xwv3000, app(app(ty_Either, dfg), dfh)) -> new_esEs19(xwv4000, xwv3000, dfg, dfh) 26.56/9.59 new_ltEs14(GT, EQ) -> False 26.56/9.59 new_compare26(:(xwv4000, xwv4001), :(xwv3000, xwv3001), eg) -> new_primCompAux1(xwv4000, xwv3000, xwv4001, xwv3001, eg) 26.56/9.59 new_ltEs18(xwv114, xwv116, ty_Double) -> new_ltEs11(xwv114, xwv116) 26.56/9.59 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Char, fca) -> new_esEs20(xwv40000, xwv30000) 26.56/9.59 new_esEs29(xwv113, xwv115, ty_Char) -> new_esEs20(xwv113, xwv115) 26.56/9.59 new_esEs31(xwv40001, xwv30001, ty_@0) -> new_esEs24(xwv40001, xwv30001) 26.56/9.59 new_esEs31(xwv40001, xwv30001, app(app(app(ty_@3, ehc), ehd), ehe)) -> new_esEs25(xwv40001, xwv30001, ehc, ehd, ehe) 26.56/9.59 new_lt13(xwv113, xwv115, hg) -> new_esEs15(new_compare26(xwv113, xwv115, hg), LT) 26.56/9.59 new_lt21(xwv540, xwv550, ty_@0) -> new_lt12(xwv540, xwv550) 26.56/9.59 new_compare29(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), ty_Integer) -> new_compare8(new_sr0(xwv4000, xwv3001), new_sr0(xwv3000, xwv4001)) 26.56/9.59 new_ltEs21(xwv83, xwv84, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs15(xwv83, xwv84, cff, cfg, cfh) 26.56/9.59 new_esEs33(xwv540, xwv550, ty_Double) -> new_esEs17(xwv540, xwv550) 26.56/9.59 new_lt6(xwv113, xwv115, ty_@0) -> new_lt12(xwv113, xwv115) 26.56/9.59 new_esEs8(xwv4001, xwv3001, app(app(ty_@2, ece), ecf)) -> new_esEs21(xwv4001, xwv3001, ece, ecf) 26.56/9.59 new_esEs35(xwv540, xwv550, ty_Float) -> new_esEs22(xwv540, xwv550) 26.56/9.59 new_esEs39(xwv65, xwv68, ty_Int) -> new_esEs18(xwv65, xwv68) 26.56/9.59 new_lt21(xwv540, xwv550, app(ty_Maybe, bef)) -> new_lt10(xwv540, xwv550, bef) 26.56/9.59 new_ltEs13(xwv54, xwv55, ef) -> new_fsEs(new_compare26(xwv54, xwv55, ef)) 26.56/9.59 new_esEs15(LT, GT) -> False 26.56/9.59 new_esEs15(GT, LT) -> False 26.56/9.59 new_esEs39(xwv65, xwv68, ty_Char) -> new_esEs20(xwv65, xwv68) 26.56/9.59 new_ltEs18(xwv114, xwv116, ty_Bool) -> new_ltEs8(xwv114, xwv116) 26.56/9.59 new_esEs39(xwv65, xwv68, ty_Bool) -> new_esEs14(xwv65, xwv68) 26.56/9.59 new_compare18(Just(xwv4000), Just(xwv3000), fc) -> new_compare210(xwv4000, xwv3000, new_esEs6(xwv4000, xwv3000, fc), fc) 26.56/9.59 new_lt21(xwv540, xwv550, ty_Ordering) -> new_lt14(xwv540, xwv550) 26.56/9.59 new_primCompAux00(xwv32, xwv33, EQ, ty_Ordering) -> new_compare27(xwv32, xwv33) 26.56/9.59 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_Ratio, fee)) -> new_ltEs17(xwv540, xwv550, fee) 26.56/9.59 new_ltEs20(xwv542, xwv552, ty_Float) -> new_ltEs12(xwv542, xwv552) 26.56/9.59 new_compare211(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, cad) -> new_compare11(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, new_lt22(xwv65, xwv68, cbd), new_asAs(new_esEs39(xwv65, xwv68, cbd), new_pePe(new_lt23(xwv66, xwv69, cac), new_asAs(new_esEs38(xwv66, xwv69, cac), new_ltEs23(xwv67, xwv70, cad)))), cbd, cac, cad) 26.56/9.59 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Int, fca) -> new_esEs18(xwv40000, xwv30000) 26.56/9.59 new_esEs11(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.56/9.59 new_lt22(xwv65, xwv68, ty_Int) -> new_lt7(xwv65, xwv68) 26.56/9.59 new_ltEs18(xwv114, xwv116, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs15(xwv114, xwv116, bbb, bbc, bbd) 26.56/9.59 new_esEs12(:(xwv40000, xwv40001), :(xwv30000, xwv30001), cgc) -> new_asAs(new_esEs13(xwv40000, xwv30000, cgc), new_esEs12(xwv40001, xwv30001, cgc)) 26.56/9.59 new_compare0(xwv400, xwv300, app(ty_Ratio, fea)) -> new_compare29(xwv400, xwv300, fea) 26.56/9.59 new_esEs10(xwv4000, xwv3000, app(app(ty_Either, dch), dda)) -> new_esEs19(xwv4000, xwv3000, dch, dda) 26.56/9.59 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Bool, fca) -> new_esEs14(xwv40000, xwv30000) 26.56/9.59 new_esEs6(xwv4000, xwv3000, app(app(ty_@2, eaa), eab)) -> new_esEs21(xwv4000, xwv3000, eaa, eab) 26.56/9.59 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, app(ty_Ratio, fgh)) -> new_esEs23(xwv40000, xwv30000, fgh) 26.56/9.59 new_esEs8(xwv4001, xwv3001, ty_@0) -> new_esEs24(xwv4001, xwv3001) 26.56/9.59 new_esEs33(xwv540, xwv550, ty_Integer) -> new_esEs26(xwv540, xwv550) 26.56/9.59 new_esEs8(xwv4001, xwv3001, app(app(app(ty_@3, ech), eda), edb)) -> new_esEs25(xwv4001, xwv3001, ech, eda, edb) 26.56/9.59 new_esEs22(Float(xwv40000, xwv40001), Float(xwv30000, xwv30001)) -> new_esEs18(new_sr(xwv40000, xwv30001), new_sr(xwv40001, xwv30000)) 26.56/9.59 new_lt20(xwv541, xwv551, app(app(ty_@2, bdb), bdc)) -> new_lt9(xwv541, xwv551, bdb, bdc) 26.56/9.59 new_esEs10(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.56/9.59 new_primMulInt(Neg(xwv40000), Neg(xwv30010)) -> Pos(new_primMulNat0(xwv40000, xwv30010)) 26.56/9.59 new_primCmpInt(Pos(Zero), Pos(Succ(xwv30000))) -> new_primCmpNat0(Zero, Succ(xwv30000)) 26.56/9.59 new_esEs14(True, True) -> True 26.56/9.59 new_esEs38(xwv66, xwv69, ty_Ordering) -> new_esEs15(xwv66, xwv69) 26.56/9.59 new_esEs9(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.56/9.59 new_compare29(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), ty_Int) -> new_compare15(new_sr(xwv4000, xwv3001), new_sr(xwv3000, xwv4001)) 26.56/9.59 new_esEs32(xwv40000, xwv30000, app(app(ty_Either, ehh), faa)) -> new_esEs19(xwv40000, xwv30000, ehh, faa) 26.56/9.59 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(ty_Either, fcf), fcg)) -> new_esEs19(xwv40000, xwv30000, fcf, fcg) 26.56/9.59 new_ltEs19(xwv541, xwv551, app(app(app(ty_@3, be), bf), bg)) -> new_ltEs15(xwv541, xwv551, be, bf, bg) 26.56/9.59 new_lt6(xwv113, xwv115, app(ty_[], hg)) -> new_lt13(xwv113, xwv115, hg) 26.56/9.59 new_ltEs21(xwv83, xwv84, app(app(ty_@2, cfb), cfc)) -> new_ltEs9(xwv83, xwv84, cfb, cfc) 26.56/9.59 new_esEs5(xwv4000, xwv3000, app(ty_Maybe, fbg)) -> new_esEs16(xwv4000, xwv3000, fbg) 26.56/9.59 new_lt19(xwv540, xwv550, app(ty_Maybe, ce)) -> new_lt10(xwv540, xwv550, ce) 26.56/9.59 new_ltEs14(GT, LT) -> False 26.56/9.59 new_esEs31(xwv40001, xwv30001, app(app(ty_@2, egh), eha)) -> new_esEs21(xwv40001, xwv30001, egh, eha) 26.56/9.59 new_compare7(Left(xwv4000), Left(xwv3000), fh, ga) -> new_compare24(xwv4000, xwv3000, new_esEs10(xwv4000, xwv3000, fh), fh, ga) 26.56/9.59 new_ltEs19(xwv541, xwv551, app(app(ty_Either, bh), ca)) -> new_ltEs5(xwv541, xwv551, bh, ca) 26.56/9.59 new_esEs31(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.56/9.59 new_ltEs12(xwv54, xwv55) -> new_fsEs(new_compare19(xwv54, xwv55)) 26.56/9.59 new_compare0(xwv400, xwv300, app(app(app(ty_@3, fd), ff), fg)) -> new_compare28(xwv400, xwv300, fd, ff, fg) 26.56/9.59 new_ltEs10(Just(xwv540), Just(xwv550), app(app(ty_Either, ed), ee)) -> new_ltEs5(xwv540, xwv550, ed, ee) 26.56/9.59 new_compare8(Integer(xwv4000), Integer(xwv3000)) -> new_primCmpInt(xwv4000, xwv3000) 26.56/9.59 new_primMulInt(Pos(xwv40000), Neg(xwv30010)) -> Neg(new_primMulNat0(xwv40000, xwv30010)) 26.56/9.59 new_primMulInt(Neg(xwv40000), Pos(xwv30010)) -> Neg(new_primMulNat0(xwv40000, xwv30010)) 26.56/9.59 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_[], bga), bfg) -> new_ltEs13(xwv540, xwv550, bga) 26.56/9.59 new_ltEs18(xwv114, xwv116, app(ty_Maybe, bah)) -> new_ltEs10(xwv114, xwv116, bah) 26.56/9.59 new_esEs5(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.56/9.59 new_ltEs23(xwv67, xwv70, ty_Int) -> new_ltEs6(xwv67, xwv70) 26.56/9.59 new_ltEs21(xwv83, xwv84, ty_Integer) -> new_ltEs16(xwv83, xwv84) 26.56/9.59 new_esEs9(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.56/9.59 new_ltEs15(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, bdd) -> new_pePe(new_lt21(xwv540, xwv550, bbg), new_asAs(new_esEs35(xwv540, xwv550, bbg), new_pePe(new_lt20(xwv541, xwv551, bbh), new_asAs(new_esEs34(xwv541, xwv551, bbh), new_ltEs20(xwv542, xwv552, bdd))))) 26.56/9.59 new_ltEs22(xwv76, xwv77, ty_@0) -> new_ltEs4(xwv76, xwv77) 26.56/9.59 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(ty_@2, fch), fda)) -> new_esEs21(xwv40000, xwv30000, fch, fda) 26.56/9.59 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(ty_Either, ffb), ffc), fca) -> new_esEs19(xwv40000, xwv30000, ffb, ffc) 26.56/9.59 new_ltEs5(Right(xwv540), Right(xwv550), bgg, app(ty_Ratio, chh)) -> new_ltEs17(xwv540, xwv550, chh) 26.56/9.59 new_compare19(Float(xwv4000, Neg(xwv40010)), Float(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.56/9.59 new_esEs11(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.56/9.59 new_sr0(Integer(xwv40000), Integer(xwv30010)) -> Integer(new_primMulInt(xwv40000, xwv30010)) 26.56/9.59 new_esEs30(xwv40002, xwv30002, app(app(ty_Either, efd), efe)) -> new_esEs19(xwv40002, xwv30002, efd, efe) 26.56/9.59 new_ltEs24(xwv54, xwv55, app(ty_Maybe, fed)) -> new_ltEs10(xwv54, xwv55, fed) 26.56/9.59 new_esEs8(xwv4001, xwv3001, app(ty_Ratio, ecg)) -> new_esEs23(xwv4001, xwv3001, ecg) 26.56/9.59 new_ltEs24(xwv54, xwv55, app(app(app(ty_@3, bbg), bbh), bdd)) -> new_ltEs15(xwv54, xwv55, bbg, bbh, bdd) 26.56/9.59 new_esEs6(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.56/9.59 new_esEs4(xwv4001, xwv3001, app(ty_Ratio, eea)) -> new_esEs23(xwv4001, xwv3001, eea) 26.56/9.59 new_ltEs23(xwv67, xwv70, app(ty_Ratio, feg)) -> new_ltEs17(xwv67, xwv70, feg) 26.56/9.59 new_ltEs24(xwv54, xwv55, ty_Char) -> new_ltEs7(xwv54, xwv55) 26.56/9.59 new_esEs28(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.56/9.59 new_esEs28(xwv40000, xwv30000, app(app(app(ty_@3, dcc), dcd), dce)) -> new_esEs25(xwv40000, xwv30000, dcc, dcd, dce) 26.56/9.59 new_esEs5(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.56/9.59 new_esEs18(xwv4000, xwv3000) -> new_primEqInt(xwv4000, xwv3000) 26.56/9.59 new_asAs(True, xwv131) -> xwv131 26.56/9.59 new_compare27(GT, GT) -> EQ 26.56/9.59 new_esEs32(xwv40000, xwv30000, app(app(ty_@2, fab), fac)) -> new_esEs21(xwv40000, xwv30000, fab, fac) 26.56/9.59 new_esEs6(xwv4000, xwv3000, app(ty_Maybe, dhf)) -> new_esEs16(xwv4000, xwv3000, dhf) 26.56/9.59 new_ltEs20(xwv542, xwv552, app(app(ty_@2, bca), bcb)) -> new_ltEs9(xwv542, xwv552, bca, bcb) 26.56/9.59 new_ltEs22(xwv76, xwv77, ty_Ordering) -> new_ltEs14(xwv76, xwv77) 26.56/9.59 new_esEs5(xwv4000, xwv3000, app(app(ty_@2, daa), dab)) -> new_esEs21(xwv4000, xwv3000, daa, dab) 26.56/9.59 new_esEs27(xwv40001, xwv30001, app(ty_Maybe, dac)) -> new_esEs16(xwv40001, xwv30001, dac) 26.56/9.59 new_ltEs22(xwv76, xwv77, ty_Float) -> new_ltEs12(xwv76, xwv77) 26.56/9.59 new_esEs32(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.56/9.59 new_compare0(xwv400, xwv300, ty_Float) -> new_compare19(xwv400, xwv300) 26.56/9.59 new_ltEs20(xwv542, xwv552, app(app(ty_Either, bch), bda)) -> new_ltEs5(xwv542, xwv552, bch, bda) 26.56/9.59 new_lt21(xwv540, xwv550, app(app(ty_@2, bed), bee)) -> new_lt9(xwv540, xwv550, bed, bee) 26.56/9.59 new_ltEs18(xwv114, xwv116, ty_Char) -> new_ltEs7(xwv114, xwv116) 26.56/9.59 new_ltEs19(xwv541, xwv551, app(app(ty_@2, ba), bb)) -> new_ltEs9(xwv541, xwv551, ba, bb) 26.56/9.59 new_lt20(xwv541, xwv551, ty_Double) -> new_lt5(xwv541, xwv551) 26.56/9.59 new_compare211(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, True, cbd, cac, cad) -> EQ 26.56/9.59 new_ltEs5(Right(xwv540), Right(xwv550), bgg, app(app(ty_Either, bhg), bhh)) -> new_ltEs5(xwv540, xwv550, bhg, bhh) 26.56/9.59 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_[], fdf)) -> new_esEs12(xwv40000, xwv30000, fdf) 26.56/9.59 new_compare27(EQ, EQ) -> EQ 26.56/9.59 new_lt22(xwv65, xwv68, app(ty_Ratio, fef)) -> new_lt18(xwv65, xwv68, fef) 26.56/9.59 new_ltEs5(Right(xwv540), Right(xwv550), bgg, ty_@0) -> new_ltEs4(xwv540, xwv550) 26.56/9.59 new_sr(xwv4000, xwv3001) -> new_primMulInt(xwv4000, xwv3001) 26.56/9.59 new_compare0(xwv400, xwv300, ty_Integer) -> new_compare8(xwv400, xwv300) 26.56/9.59 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.56/9.59 new_primCompAux00(xwv32, xwv33, EQ, ty_Float) -> new_compare19(xwv32, xwv33) 26.56/9.59 new_ltEs5(Right(xwv540), Right(xwv550), bgg, app(ty_Maybe, bhb)) -> new_ltEs10(xwv540, xwv550, bhb) 26.56/9.59 new_primMulNat0(Zero, Zero) -> Zero 26.56/9.59 new_esEs11(xwv4000, xwv3000, app(app(ty_@2, ded), dee)) -> new_esEs21(xwv4000, xwv3000, ded, dee) 26.56/9.59 new_lt19(xwv540, xwv550, ty_Double) -> new_lt5(xwv540, xwv550) 26.56/9.59 new_lt22(xwv65, xwv68, app(app(ty_@2, caa), cab)) -> new_lt9(xwv65, xwv68, caa, cab) 26.56/9.59 new_esEs4(xwv4001, xwv3001, ty_Int) -> new_esEs18(xwv4001, xwv3001) 26.56/9.59 new_compare25(xwv83, xwv84, False, cfa, fcc) -> new_compare112(xwv83, xwv84, new_ltEs21(xwv83, xwv84, fcc), cfa, fcc) 26.56/9.59 new_esEs29(xwv113, xwv115, ty_Integer) -> new_esEs26(xwv113, xwv115) 26.56/9.59 new_ltEs5(Right(xwv540), Right(xwv550), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs15(xwv540, xwv550, bhd, bhe, bhf) 26.56/9.59 new_lt6(xwv113, xwv115, app(ty_Maybe, hf)) -> new_lt10(xwv113, xwv115, hf) 26.56/9.59 new_lt23(xwv66, xwv69, app(ty_Ratio, feh)) -> new_lt18(xwv66, xwv69, feh) 26.56/9.59 new_lt22(xwv65, xwv68, app(ty_Maybe, cae)) -> new_lt10(xwv65, xwv68, cae) 26.56/9.59 new_esEs29(xwv113, xwv115, ty_@0) -> new_esEs24(xwv113, xwv115) 26.56/9.59 new_ltEs21(xwv83, xwv84, ty_Ordering) -> new_ltEs14(xwv83, xwv84) 26.56/9.59 new_esEs39(xwv65, xwv68, app(ty_Ratio, fef)) -> new_esEs23(xwv65, xwv68, fef) 26.56/9.59 new_esEs4(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 26.56/9.59 new_esEs33(xwv540, xwv550, app(app(ty_@2, cb), cc)) -> new_esEs21(xwv540, xwv550, cb, cc) 26.56/9.59 new_lt23(xwv66, xwv69, app(ty_Maybe, cch)) -> new_lt10(xwv66, xwv69, cch) 26.56/9.59 new_esEs30(xwv40002, xwv30002, ty_@0) -> new_esEs24(xwv40002, xwv30002) 26.56/9.59 new_esEs30(xwv40002, xwv30002, app(app(app(ty_@3, ega), egb), egc)) -> new_esEs25(xwv40002, xwv30002, ega, egb, egc) 26.56/9.59 new_ltEs24(xwv54, xwv55, app(app(ty_Either, bgg), bfg)) -> new_ltEs5(xwv54, xwv55, bgg, bfg) 26.56/9.59 new_compare7(Right(xwv4000), Left(xwv3000), fh, ga) -> GT 26.56/9.59 new_primCompAux00(xwv32, xwv33, EQ, app(app(app(ty_@3, gf), gg), gh)) -> new_compare28(xwv32, xwv33, gf, gg, gh) 26.56/9.59 new_ltEs23(xwv67, xwv70, app(ty_Maybe, cbg)) -> new_ltEs10(xwv67, xwv70, cbg) 26.56/9.59 new_ltEs20(xwv542, xwv552, ty_Char) -> new_ltEs7(xwv542, xwv552) 26.56/9.59 new_primEqInt(Neg(Succ(xwv400000)), Neg(Zero)) -> False 26.56/9.59 new_primEqInt(Neg(Zero), Neg(Succ(xwv300000))) -> False 26.56/9.59 new_ltEs5(Right(xwv540), Right(xwv550), bgg, ty_Bool) -> new_ltEs8(xwv540, xwv550) 26.56/9.59 new_esEs27(xwv40001, xwv30001, app(ty_[], dbd)) -> new_esEs12(xwv40001, xwv30001, dbd) 26.56/9.59 new_esEs9(xwv4000, xwv3000, app(ty_Ratio, dgc)) -> new_esEs23(xwv4000, xwv3000, dgc) 26.56/9.59 new_esEs25(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), eeh, efa, efb) -> new_asAs(new_esEs32(xwv40000, xwv30000, eeh), new_asAs(new_esEs31(xwv40001, xwv30001, efa), new_esEs30(xwv40002, xwv30002, efb))) 26.56/9.59 new_esEs33(xwv540, xwv550, app(ty_[], cf)) -> new_esEs12(xwv540, xwv550, cf) 26.56/9.59 new_primEqInt(Pos(Succ(xwv400000)), Pos(Succ(xwv300000))) -> new_primEqNat0(xwv400000, xwv300000) 26.56/9.59 new_ltEs24(xwv54, xwv55, app(ty_Ratio, fbf)) -> new_ltEs17(xwv54, xwv55, fbf) 26.56/9.59 new_ltEs18(xwv114, xwv116, app(ty_Ratio, eeg)) -> new_ltEs17(xwv114, xwv116, eeg) 26.56/9.59 new_esEs5(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.56/9.59 new_ltEs18(xwv114, xwv116, app(app(ty_@2, baf), bag)) -> new_ltEs9(xwv114, xwv116, baf, bag) 26.56/9.59 new_esEs5(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.56/9.59 new_esEs29(xwv113, xwv115, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs25(xwv113, xwv115, hh, baa, bab) 26.56/9.59 new_lt10(xwv113, xwv115, hf) -> new_esEs15(new_compare18(xwv113, xwv115, hf), LT) 26.56/9.59 new_esEs6(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.56/9.59 new_ltEs18(xwv114, xwv116, app(app(ty_Either, bbe), bbf)) -> new_ltEs5(xwv114, xwv116, bbe, bbf) 26.56/9.59 new_esEs5(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.56/9.59 new_ltEs5(Right(xwv540), Right(xwv550), bgg, ty_Int) -> new_ltEs6(xwv540, xwv550) 26.56/9.59 new_primEqInt(Pos(Succ(xwv400000)), Neg(xwv30000)) -> False 26.56/9.59 new_primEqInt(Neg(Succ(xwv400000)), Pos(xwv30000)) -> False 26.56/9.59 new_primCmpInt(Neg(Zero), Neg(Succ(xwv30000))) -> new_primCmpNat0(Succ(xwv30000), Zero) 26.56/9.59 new_esEs29(xwv113, xwv115, app(app(ty_Either, bac), bad)) -> new_esEs19(xwv113, xwv115, bac, bad) 26.56/9.59 new_esEs31(xwv40001, xwv30001, ty_Float) -> new_esEs22(xwv40001, xwv30001) 26.56/9.59 new_ltEs5(Right(xwv540), Right(xwv550), bgg, ty_Ordering) -> new_ltEs14(xwv540, xwv550) 26.56/9.59 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.56/9.59 new_esEs27(xwv40001, xwv30001, ty_Float) -> new_esEs22(xwv40001, xwv30001) 26.56/9.59 new_primCompAux00(xwv32, xwv33, LT, dhb) -> LT 26.56/9.59 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, app(app(ty_Either, fgd), fge)) -> new_esEs19(xwv40000, xwv30000, fgd, fge) 26.56/9.59 new_ltEs19(xwv541, xwv551, app(ty_Maybe, bc)) -> new_ltEs10(xwv541, xwv551, bc) 26.56/9.59 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_[], fgb), fca) -> new_esEs12(xwv40000, xwv30000, fgb) 26.56/9.59 new_compare112(xwv157, xwv158, False, feb, fec) -> GT 26.56/9.59 new_esEs7(xwv4002, xwv3002, ty_Bool) -> new_esEs14(xwv4002, xwv3002) 26.56/9.59 new_esEs7(xwv4002, xwv3002, app(ty_Ratio, ebe)) -> new_esEs23(xwv4002, xwv3002, ebe) 26.56/9.59 new_esEs8(xwv4001, xwv3001, ty_Char) -> new_esEs20(xwv4001, xwv3001) 26.56/9.59 new_ltEs22(xwv76, xwv77, app(ty_Ratio, fdh)) -> new_ltEs17(xwv76, xwv77, fdh) 26.56/9.59 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, app(ty_Maybe, fgc)) -> new_esEs16(xwv40000, xwv30000, fgc) 26.56/9.59 new_ltEs10(Just(xwv540), Just(xwv550), ty_Ordering) -> new_ltEs14(xwv540, xwv550) 26.56/9.59 new_ltEs22(xwv76, xwv77, ty_Bool) -> new_ltEs8(xwv76, xwv77) 26.56/9.59 new_esEs35(xwv540, xwv550, ty_Double) -> new_esEs17(xwv540, xwv550) 26.56/9.59 new_not(False) -> True 26.56/9.59 new_esEs28(xwv40000, xwv30000, app(ty_[], dcf)) -> new_esEs12(xwv40000, xwv30000, dcf) 26.56/9.59 new_lt21(xwv540, xwv550, ty_Double) -> new_lt5(xwv540, xwv550) 26.56/9.59 new_ltEs23(xwv67, xwv70, app(app(app(ty_@3, cca), ccb), ccc)) -> new_ltEs15(xwv67, xwv70, cca, ccb, ccc) 26.56/9.59 new_ltEs5(Right(xwv540), Right(xwv550), bgg, ty_Char) -> new_ltEs7(xwv540, xwv550) 26.56/9.59 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.56/9.59 new_esEs30(xwv40002, xwv30002, ty_Integer) -> new_esEs26(xwv40002, xwv30002) 26.56/9.59 new_esEs26(Integer(xwv40000), Integer(xwv30000)) -> new_primEqInt(xwv40000, xwv30000) 26.56/9.59 new_ltEs21(xwv83, xwv84, ty_@0) -> new_ltEs4(xwv83, xwv84) 26.56/9.59 new_compare18(Just(xwv4000), Nothing, fc) -> GT 26.56/9.59 new_esEs6(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.56/9.59 new_ltEs18(xwv114, xwv116, ty_Int) -> new_ltEs6(xwv114, xwv116) 26.56/9.59 new_esEs21(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), daa, dab) -> new_asAs(new_esEs28(xwv40000, xwv30000, daa), new_esEs27(xwv40001, xwv30001, dab)) 26.56/9.59 new_esEs28(xwv40000, xwv30000, app(app(ty_Either, dbf), dbg)) -> new_esEs19(xwv40000, xwv30000, dbf, dbg) 26.56/9.59 new_esEs9(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.56/9.59 new_esEs38(xwv66, xwv69, app(app(ty_@2, ccf), ccg)) -> new_esEs21(xwv66, xwv69, ccf, ccg) 26.56/9.59 new_esEs27(xwv40001, xwv30001, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs25(xwv40001, xwv30001, dba, dbb, dbc) 26.56/9.59 new_ltEs20(xwv542, xwv552, app(ty_Ratio, fbc)) -> new_ltEs17(xwv542, xwv552, fbc) 26.56/9.59 new_esEs5(xwv4000, xwv3000, app(ty_Ratio, fcb)) -> new_esEs23(xwv4000, xwv3000, fcb) 26.56/9.59 new_ltEs10(Just(xwv540), Just(xwv550), ty_Float) -> new_ltEs12(xwv540, xwv550) 26.56/9.59 new_lt23(xwv66, xwv69, ty_Double) -> new_lt5(xwv66, xwv69) 26.56/9.59 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.56/9.59 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.56/9.59 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.56/9.59 new_ltEs24(xwv54, xwv55, ty_Bool) -> new_ltEs8(xwv54, xwv55) 26.56/9.59 new_ltEs14(LT, EQ) -> True 26.56/9.59 new_ltEs23(xwv67, xwv70, ty_@0) -> new_ltEs4(xwv67, xwv70) 26.56/9.59 new_compare27(GT, LT) -> GT 26.56/9.59 new_esEs32(xwv40000, xwv30000, app(ty_[], fah)) -> new_esEs12(xwv40000, xwv30000, fah) 26.56/9.59 new_esEs9(xwv4000, xwv3000, app(ty_Maybe, dff)) -> new_esEs16(xwv4000, xwv3000, dff) 26.56/9.59 new_esEs29(xwv113, xwv115, ty_Float) -> new_esEs22(xwv113, xwv115) 26.56/9.59 new_compare6(@0, @0) -> EQ 26.56/9.59 new_esEs31(xwv40001, xwv30001, app(ty_[], ehf)) -> new_esEs12(xwv40001, xwv30001, ehf) 26.56/9.59 new_ltEs22(xwv76, xwv77, ty_Char) -> new_ltEs7(xwv76, xwv77) 26.56/9.59 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.56/9.59 new_esEs9(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.56/9.59 new_esEs38(xwv66, xwv69, ty_Double) -> new_esEs17(xwv66, xwv69) 26.56/9.59 new_compare19(Float(xwv4000, Pos(xwv40010)), Float(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.56/9.59 new_compare19(Float(xwv4000, Neg(xwv40010)), Float(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.56/9.59 new_ltEs21(xwv83, xwv84, app(app(ty_Either, cga), cgb)) -> new_ltEs5(xwv83, xwv84, cga, cgb) 26.56/9.59 new_ltEs21(xwv83, xwv84, app(ty_Maybe, cfd)) -> new_ltEs10(xwv83, xwv84, cfd) 26.56/9.59 new_ltEs22(xwv76, xwv77, app(app(ty_Either, ceg), ceh)) -> new_ltEs5(xwv76, xwv77, ceg, ceh) 26.56/9.59 new_ltEs10(Just(xwv540), Just(xwv550), app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs15(xwv540, xwv550, ea, eb, ec) 26.56/9.59 new_esEs8(xwv4001, xwv3001, ty_Ordering) -> new_esEs15(xwv4001, xwv3001) 26.56/9.59 new_esEs30(xwv40002, xwv30002, app(ty_[], egd)) -> new_esEs12(xwv40002, xwv30002, egd) 26.56/9.59 new_ltEs20(xwv542, xwv552, app(ty_Maybe, bcc)) -> new_ltEs10(xwv542, xwv552, bcc) 26.56/9.59 new_esEs27(xwv40001, xwv30001, app(app(ty_Either, dad), dae)) -> new_esEs19(xwv40001, xwv30001, dad, dae) 26.56/9.59 new_ltEs23(xwv67, xwv70, ty_Char) -> new_ltEs7(xwv67, xwv70) 26.56/9.59 new_esEs13(xwv40000, xwv30000, app(app(ty_@2, cgg), cgh)) -> new_esEs21(xwv40000, xwv30000, cgg, cgh) 26.56/9.59 new_esEs12([], [], cgc) -> True 26.56/9.59 new_esEs28(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.59 new_ltEs10(Just(xwv540), Just(xwv550), ty_Integer) -> new_ltEs16(xwv540, xwv550) 26.56/9.59 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.56/9.59 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.56/9.59 new_ltEs23(xwv67, xwv70, ty_Bool) -> new_ltEs8(xwv67, xwv70) 26.56/9.59 new_primEqNat0(Zero, Zero) -> True 26.56/9.59 new_esEs27(xwv40001, xwv30001, ty_@0) -> new_esEs24(xwv40001, xwv30001) 26.56/9.59 new_esEs27(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.56/9.59 new_asAs(False, xwv131) -> False 26.56/9.59 new_compare7(Right(xwv4000), Right(xwv3000), fh, ga) -> new_compare25(xwv4000, xwv3000, new_esEs11(xwv4000, xwv3000, ga), fh, ga) 26.56/9.59 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.56/9.59 new_lt6(xwv113, xwv115, ty_Double) -> new_lt5(xwv113, xwv115) 26.56/9.59 new_esEs8(xwv4001, xwv3001, ty_Int) -> new_esEs18(xwv4001, xwv3001) 26.56/9.59 new_esEs8(xwv4001, xwv3001, ty_Bool) -> new_esEs14(xwv4001, xwv3001) 26.56/9.59 new_ltEs23(xwv67, xwv70, ty_Ordering) -> new_ltEs14(xwv67, xwv70) 26.56/9.59 new_esEs9(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.56/9.59 new_esEs6(xwv4000, xwv3000, app(ty_Ratio, eac)) -> new_esEs23(xwv4000, xwv3000, eac) 26.56/9.59 new_ltEs21(xwv83, xwv84, app(ty_Ratio, fcd)) -> new_ltEs17(xwv83, xwv84, fcd) 26.56/9.59 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Double, fca) -> new_esEs17(xwv40000, xwv30000) 26.56/9.59 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.59 26.56/9.59 The set Q consists of the following terms: 26.56/9.59 26.56/9.59 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_compare25(x0, x1, False, x2, x3) 26.56/9.59 new_esEs30(x0, x1, ty_Integer) 26.56/9.59 new_esEs31(x0, x1, ty_@0) 26.56/9.59 new_lt11(x0, x1) 26.56/9.59 new_ltEs23(x0, x1, app(ty_[], x2)) 26.56/9.59 new_esEs9(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_lt20(x0, x1, ty_Int) 26.56/9.59 new_ltEs21(x0, x1, ty_Int) 26.56/9.59 new_primCmpNat0(Succ(x0), Succ(x1)) 26.56/9.59 new_esEs16(Just(x0), Just(x1), ty_Int) 26.56/9.59 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs19(Left(x0), Left(x1), ty_Float, x2) 26.56/9.59 new_esEs31(x0, x1, ty_Bool) 26.56/9.59 new_pePe(True, x0) 26.56/9.59 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_compare0(x0, x1, ty_Ordering) 26.56/9.59 new_esEs6(x0, x1, ty_Integer) 26.56/9.59 new_sr(x0, x1) 26.56/9.59 new_esEs13(x0, x1, ty_Integer) 26.56/9.59 new_esEs39(x0, x1, ty_Int) 26.56/9.59 new_esEs7(x0, x1, ty_Int) 26.56/9.59 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.56/9.59 new_primEqInt(Pos(Zero), Pos(Zero)) 26.56/9.59 new_compare0(x0, x1, ty_Char) 26.56/9.59 new_lt15(x0, x1, x2, x3, x4) 26.56/9.59 new_compare7(Left(x0), Right(x1), x2, x3) 26.56/9.59 new_compare7(Right(x0), Left(x1), x2, x3) 26.56/9.59 new_esEs6(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_ltEs22(x0, x1, ty_@0) 26.56/9.59 new_primPlusNat0(Zero, Succ(x0)) 26.56/9.59 new_esEs10(x0, x1, ty_Integer) 26.56/9.59 new_esEs14(True, True) 26.56/9.59 new_esEs12(:(x0, x1), :(x2, x3), x4) 26.56/9.59 new_lt10(x0, x1, x2) 26.56/9.59 new_primEqInt(Neg(Zero), Neg(Zero)) 26.56/9.59 new_compare0(x0, x1, ty_Double) 26.56/9.59 new_esEs19(Left(x0), Right(x1), x2, x3) 26.56/9.59 new_esEs19(Right(x0), Left(x1), x2, x3) 26.56/9.59 new_esEs38(x0, x1, ty_Bool) 26.56/9.59 new_compare6(@0, @0) 26.56/9.59 new_lt23(x0, x1, ty_Int) 26.56/9.59 new_lt22(x0, x1, ty_Double) 26.56/9.59 new_primMulInt(Pos(x0), Neg(x1)) 26.56/9.59 new_primMulInt(Neg(x0), Pos(x1)) 26.56/9.59 new_ltEs19(x0, x1, ty_Integer) 26.56/9.59 new_esEs6(x0, x1, ty_@0) 26.56/9.59 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_primMulInt(Neg(x0), Neg(x1)) 26.56/9.59 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_ltEs22(x0, x1, ty_Int) 26.56/9.59 new_esEs11(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs4(x0, x1, ty_Int) 26.56/9.59 new_esEs16(Nothing, Nothing, x0) 26.56/9.59 new_esEs10(x0, x1, ty_@0) 26.56/9.59 new_esEs30(x0, x1, ty_@0) 26.56/9.59 new_ltEs10(Just(x0), Nothing, x1) 26.56/9.59 new_esEs33(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs8(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs6(x0, x1, ty_Float) 26.56/9.59 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.56/9.59 new_esEs30(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.56/9.59 new_esEs31(x0, x1, ty_Integer) 26.56/9.59 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) 26.56/9.59 new_esEs13(x0, x1, ty_Bool) 26.56/9.59 new_lt22(x0, x1, ty_Ordering) 26.56/9.59 new_esEs30(x0, x1, ty_Bool) 26.56/9.59 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs30(x0, x1, ty_Float) 26.56/9.59 new_ltEs4(x0, x1) 26.56/9.59 new_esEs35(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs12([], [], x0) 26.56/9.59 new_esEs38(x0, x1, ty_Integer) 26.56/9.59 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_primEqInt(Pos(Zero), Neg(Zero)) 26.56/9.59 new_primEqInt(Neg(Zero), Pos(Zero)) 26.56/9.59 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_lt18(x0, x1, x2) 26.56/9.59 new_esEs13(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_lt6(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_ltEs18(x0, x1, ty_Double) 26.56/9.59 new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) 26.56/9.59 new_esEs39(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs32(x0, x1, ty_Integer) 26.56/9.59 new_ltEs18(x0, x1, ty_Char) 26.56/9.59 new_primEqNat0(Succ(x0), Succ(x1)) 26.56/9.59 new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.56/9.59 new_esEs10(x0, x1, ty_Bool) 26.56/9.59 new_compare0(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs11(x0, x1, ty_Ordering) 26.56/9.59 new_ltEs22(x0, x1, ty_Bool) 26.56/9.59 new_compare7(Right(x0), Right(x1), x2, x3) 26.56/9.59 new_compare17(@2(x0, x1), @2(x2, x3), x4, x5) 26.56/9.59 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_ltEs21(x0, x1, ty_Integer) 26.56/9.59 new_esEs11(x0, x1, ty_Char) 26.56/9.59 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_compare15(x0, x1) 26.56/9.59 new_primMulNat0(Zero, Succ(x0)) 26.56/9.59 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs19(Left(x0), Left(x1), ty_Bool, x2) 26.56/9.59 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_lt20(x0, x1, ty_Integer) 26.56/9.59 new_ltEs23(x0, x1, ty_Int) 26.56/9.59 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.56/9.59 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.56/9.59 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs5(x0, x1, ty_Int) 26.56/9.59 new_compare24(x0, x1, False, x2, x3) 26.56/9.59 new_esEs7(x0, x1, ty_@0) 26.56/9.59 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_compare29(:%(x0, x1), :%(x2, x3), ty_Integer) 26.56/9.59 new_ltEs10(Just(x0), Just(x1), ty_Double) 26.56/9.59 new_esEs10(x0, x1, ty_Int) 26.56/9.59 new_compare212(x0, x1, x2, x3, True, x4, x5) 26.56/9.59 new_lt21(x0, x1, ty_Bool) 26.56/9.59 new_lt19(x0, x1, ty_Float) 26.56/9.59 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs27(x0, x1, ty_Bool) 26.56/9.59 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_compare28(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.56/9.59 new_ltEs10(Nothing, Nothing, x0) 26.56/9.59 new_esEs27(x0, x1, ty_Integer) 26.56/9.59 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.56/9.59 new_lt21(x0, x1, app(ty_[], x2)) 26.56/9.59 new_lt9(x0, x1, x2, x3) 26.56/9.59 new_esEs33(x0, x1, ty_Float) 26.56/9.59 new_lt6(x0, x1, ty_Char) 26.56/9.59 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.56/9.59 new_esEs28(x0, x1, ty_@0) 26.56/9.59 new_compare26(:(x0, x1), [], x2) 26.56/9.59 new_esEs4(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs6(x0, x1, ty_Int) 26.56/9.59 new_ltEs22(x0, x1, ty_Integer) 26.56/9.59 new_esEs39(x0, x1, ty_Integer) 26.56/9.59 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs4(x0, x1, ty_@0) 26.56/9.59 new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 26.56/9.59 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs10(x0, x1, ty_Float) 26.56/9.59 new_esEs10(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_ltEs19(x0, x1, ty_Bool) 26.56/9.59 new_lt19(x0, x1, ty_Char) 26.56/9.59 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs32(x0, x1, ty_Bool) 26.56/9.59 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 26.56/9.59 new_esEs19(Right(x0), Right(x1), x2, ty_Double) 26.56/9.59 new_lt6(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs13(x0, x1, ty_@0) 26.56/9.59 new_compare7(Left(x0), Left(x1), x2, x3) 26.56/9.59 new_esEs32(x0, x1, ty_Float) 26.56/9.59 new_esEs8(x0, x1, ty_Int) 26.56/9.59 new_esEs39(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_ltEs21(x0, x1, ty_Float) 26.56/9.59 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs6(x0, x1, ty_Bool) 26.56/9.59 new_esEs11(x0, x1, ty_Float) 26.56/9.59 new_ltEs19(x0, x1, ty_Int) 26.56/9.59 new_esEs36(x0, x1, ty_Integer) 26.56/9.59 new_esEs8(x0, x1, ty_Bool) 26.56/9.59 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_compare27(LT, GT) 26.56/9.59 new_compare27(GT, LT) 26.56/9.59 new_ltEs21(x0, x1, ty_Bool) 26.56/9.59 new_esEs24(@0, @0) 26.56/9.59 new_ltEs8(True, False) 26.56/9.59 new_ltEs8(False, True) 26.56/9.59 new_lt23(x0, x1, ty_Integer) 26.56/9.59 new_lt20(x0, x1, ty_@0) 26.56/9.59 new_esEs16(Nothing, Just(x0), x1) 26.56/9.59 new_lt23(x0, x1, ty_Bool) 26.56/9.59 new_esEs13(x0, x1, app(ty_[], x2)) 26.56/9.59 new_primCompAux00(x0, x1, EQ, ty_Int) 26.56/9.59 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs19(Left(x0), Left(x1), ty_Integer, x2) 26.56/9.59 new_esEs32(x0, x1, ty_Int) 26.56/9.59 new_esEs16(Just(x0), Just(x1), ty_@0) 26.56/9.59 new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.56/9.59 new_esEs29(x0, x1, ty_Double) 26.56/9.59 new_compare110(x0, x1, x2, x3, False, x4, x5, x6) 26.56/9.59 new_ltEs23(x0, x1, ty_Bool) 26.56/9.59 new_esEs27(x0, x1, ty_Int) 26.56/9.59 new_esEs38(x0, x1, ty_@0) 26.56/9.59 new_compare27(EQ, GT) 26.56/9.59 new_compare27(GT, EQ) 26.56/9.59 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.56/9.59 new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.56/9.59 new_compare18(Just(x0), Nothing, x1) 26.56/9.59 new_compare8(Integer(x0), Integer(x1)) 26.56/9.59 new_ltEs19(x0, x1, ty_Float) 26.56/9.59 new_esEs39(x0, x1, ty_Bool) 26.56/9.59 new_lt21(x0, x1, ty_Int) 26.56/9.59 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 26.56/9.59 new_primMulInt(Pos(x0), Pos(x1)) 26.56/9.59 new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) 26.56/9.59 new_esEs35(x0, x1, app(ty_[], x2)) 26.56/9.59 new_lt7(x0, x1) 26.56/9.59 new_esEs6(x0, x1, app(ty_[], x2)) 26.56/9.59 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs12([], :(x0, x1), x2) 26.56/9.59 new_lt8(x0, x1) 26.56/9.59 new_esEs34(x0, x1, ty_Bool) 26.56/9.59 new_lt12(x0, x1) 26.56/9.59 new_esEs18(x0, x1) 26.56/9.59 new_compare112(x0, x1, False, x2, x3) 26.56/9.59 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 26.56/9.59 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_ltEs19(x0, x1, ty_Double) 26.56/9.59 new_esEs33(x0, x1, ty_@0) 26.56/9.59 new_lt22(x0, x1, ty_Integer) 26.56/9.59 new_esEs19(Left(x0), Left(x1), ty_Double, x2) 26.56/9.59 new_esEs9(x0, x1, ty_Integer) 26.56/9.59 new_esEs27(x0, x1, ty_Float) 26.56/9.59 new_esEs15(EQ, EQ) 26.56/9.59 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 26.56/9.59 new_esEs34(x0, x1, ty_@0) 26.56/9.59 new_esEs34(x0, x1, app(ty_[], x2)) 26.56/9.59 new_lt23(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs9(x0, x1, ty_Bool) 26.56/9.59 new_esEs17(Double(x0, x1), Double(x2, x3)) 26.56/9.59 new_esEs34(x0, x1, ty_Integer) 26.56/9.59 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs35(x0, x1, ty_@0) 26.56/9.59 new_ltEs24(x0, x1, app(ty_[], x2)) 26.56/9.59 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) 26.56/9.59 new_esEs9(x0, x1, ty_@0) 26.56/9.59 new_ltEs20(x0, x1, ty_Integer) 26.56/9.59 new_esEs35(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.56/9.59 new_primEqNat0(Zero, Succ(x0)) 26.56/9.59 new_esEs39(x0, x1, ty_Float) 26.56/9.59 new_esEs7(x0, x1, app(ty_[], x2)) 26.56/9.59 new_primPlusNat0(Zero, Zero) 26.56/9.59 new_not(True) 26.56/9.59 new_ltEs22(x0, x1, app(ty_[], x2)) 26.56/9.59 new_lt6(x0, x1, app(ty_[], x2)) 26.56/9.59 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs13(x0, x1, ty_Double) 26.56/9.59 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_compare26([], :(x0, x1), x2) 26.56/9.59 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.56/9.59 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs19(Left(x0), Left(x1), ty_Char, x2) 26.56/9.59 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_ltEs24(x0, x1, ty_Ordering) 26.56/9.59 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.56/9.59 new_lt13(x0, x1, x2) 26.56/9.59 new_lt22(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs33(x0, x1, ty_Int) 26.56/9.59 new_lt22(x0, x1, ty_Bool) 26.56/9.59 new_esEs16(Just(x0), Nothing, x1) 26.56/9.59 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_lt21(x0, x1, ty_Integer) 26.56/9.59 new_esEs28(x0, x1, ty_Float) 26.56/9.59 new_ltEs20(x0, x1, ty_Char) 26.56/9.59 new_esEs9(x0, x1, ty_Float) 26.56/9.59 new_ltEs19(x0, x1, ty_Ordering) 26.56/9.59 new_lt23(x0, x1, ty_Float) 26.56/9.59 new_lt19(x0, x1, ty_Ordering) 26.56/9.59 new_esEs33(x0, x1, ty_Bool) 26.56/9.59 new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.56/9.59 new_esEs33(x0, x1, ty_Char) 26.56/9.59 new_esEs19(Left(x0), Left(x1), ty_Int, x2) 26.56/9.59 new_ltEs20(x0, x1, ty_Bool) 26.56/9.59 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_compare29(:%(x0, x1), :%(x2, x3), ty_Int) 26.56/9.59 new_esEs16(Just(x0), Just(x1), app(ty_[], x2)) 26.56/9.59 new_primCmpNat0(Zero, Succ(x0)) 26.56/9.59 new_esEs30(x0, x1, ty_Int) 26.56/9.59 new_esEs16(Just(x0), Just(x1), ty_Integer) 26.56/9.59 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs33(x0, x1, app(ty_[], x2)) 26.56/9.59 new_lt16(x0, x1, x2, x3) 26.56/9.59 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_primCompAux00(x0, x1, EQ, ty_Double) 26.56/9.59 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.56/9.59 new_esEs9(x0, x1, ty_Int) 26.56/9.59 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_lt21(x0, x1, ty_@0) 26.56/9.59 new_lt6(x0, x1, ty_Ordering) 26.56/9.59 new_compare27(LT, LT) 26.56/9.59 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_lt19(x0, x1, ty_Double) 26.56/9.59 new_ltEs20(x0, x1, ty_Int) 26.56/9.59 new_ltEs14(GT, GT) 26.56/9.59 new_esEs26(Integer(x0), Integer(x1)) 26.56/9.59 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 26.56/9.59 new_esEs13(x0, x1, ty_Char) 26.56/9.59 new_compare0(x0, x1, app(ty_[], x2)) 26.56/9.59 new_ltEs19(x0, x1, app(ty_[], x2)) 26.56/9.59 new_esEs22(Float(x0, x1), Float(x2, x3)) 26.56/9.59 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.56/9.59 new_compare9(False, False) 26.56/9.59 new_lt6(x0, x1, ty_Double) 26.56/9.59 new_esEs34(x0, x1, ty_Int) 26.56/9.59 new_lt21(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_compare18(Just(x0), Just(x1), x2) 26.56/9.59 new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.56/9.59 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.56/9.59 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.56/9.59 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs28(x0, x1, ty_Char) 26.56/9.59 new_compare210(x0, x1, False, x2) 26.56/9.59 new_lt20(x0, x1, ty_Bool) 26.56/9.59 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 26.56/9.59 new_esEs9(x0, x1, ty_Char) 26.56/9.59 new_ltEs12(x0, x1) 26.56/9.59 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_ltEs20(x0, x1, ty_Float) 26.56/9.59 new_lt22(x0, x1, ty_Int) 26.56/9.59 new_esEs29(x0, x1, ty_Bool) 26.56/9.59 new_compare0(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.56/9.59 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 26.56/9.59 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.56/9.59 new_esEs13(x0, x1, ty_Int) 26.56/9.59 new_esEs34(x0, x1, ty_Float) 26.56/9.59 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs28(x0, x1, ty_Int) 26.56/9.59 new_lt22(x0, x1, ty_Char) 26.56/9.59 new_ltEs10(Just(x0), Just(x1), ty_Ordering) 26.56/9.59 new_primMulNat0(Succ(x0), Succ(x1)) 26.56/9.59 new_esEs39(x0, x1, app(ty_[], x2)) 26.56/9.59 new_esEs16(Just(x0), Just(x1), ty_Bool) 26.56/9.59 new_primEqNat0(Zero, Zero) 26.56/9.59 new_esEs11(x0, x1, app(ty_[], x2)) 26.56/9.59 new_lt22(x0, x1, ty_Float) 26.56/9.59 new_esEs29(x0, x1, ty_Int) 26.56/9.59 new_lt23(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs33(x0, x1, ty_Integer) 26.56/9.59 new_not(False) 26.56/9.59 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs5(x0, x1, ty_Double) 26.56/9.59 new_esEs28(x0, x1, ty_Integer) 26.56/9.59 new_compare26(:(x0, x1), :(x2, x3), x4) 26.56/9.59 new_compare27(EQ, EQ) 26.56/9.59 new_esEs13(x0, x1, ty_Float) 26.56/9.59 new_ltEs18(x0, x1, ty_Ordering) 26.56/9.59 new_esEs4(x0, x1, app(ty_[], x2)) 26.56/9.59 new_esEs27(x0, x1, app(ty_[], x2)) 26.56/9.59 new_esEs11(x0, x1, ty_Double) 26.56/9.59 new_ltEs8(True, True) 26.56/9.59 new_lt21(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs28(x0, x1, ty_Bool) 26.56/9.59 new_esEs5(x0, x1, app(ty_[], x2)) 26.56/9.59 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs32(x0, x1, ty_Double) 26.56/9.59 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 26.56/9.59 new_esEs29(x0, x1, ty_Float) 26.56/9.59 new_esEs34(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs39(x0, x1, ty_Double) 26.56/9.59 new_lt20(x0, x1, ty_Float) 26.56/9.59 new_esEs5(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_ltEs18(x0, x1, app(ty_[], x2)) 26.56/9.59 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 26.56/9.59 new_esEs29(x0, x1, ty_Char) 26.56/9.59 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.56/9.59 new_primPlusNat0(Succ(x0), Succ(x1)) 26.56/9.59 new_esEs4(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs27(x0, x1, ty_Double) 26.56/9.59 new_ltEs21(x0, x1, ty_Double) 26.56/9.59 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.56/9.59 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.56/9.59 new_primCompAux1(x0, x1, x2, x3, x4) 26.56/9.59 new_esEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.56/9.59 new_esEs34(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_ltEs14(EQ, LT) 26.56/9.59 new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.56/9.59 new_esEs16(Just(x0), Just(x1), ty_Float) 26.56/9.59 new_ltEs14(LT, EQ) 26.56/9.59 new_fsEs(x0) 26.56/9.59 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.56/9.59 new_ltEs23(x0, x1, ty_Double) 26.56/9.59 new_esEs34(x0, x1, ty_Char) 26.56/9.59 new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 26.56/9.59 new_esEs8(x0, x1, ty_Double) 26.56/9.59 new_compare16(Char(x0), Char(x1)) 26.56/9.59 new_ltEs10(Just(x0), Just(x1), ty_Bool) 26.56/9.59 new_esEs7(x0, x1, ty_Double) 26.56/9.59 new_esEs27(x0, x1, ty_Ordering) 26.56/9.59 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs16(Just(x0), Just(x1), ty_Ordering) 26.56/9.59 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 26.56/9.59 new_compare0(x0, x1, ty_Int) 26.56/9.59 new_esEs39(x0, x1, ty_Ordering) 26.56/9.59 new_esEs32(x0, x1, ty_Char) 26.56/9.59 new_lt6(x0, x1, ty_Bool) 26.56/9.59 new_esEs4(x0, x1, ty_Double) 26.56/9.59 new_lt20(x0, x1, ty_Ordering) 26.56/9.59 new_esEs38(x0, x1, ty_Char) 26.56/9.59 new_compare212(x0, x1, x2, x3, False, x4, x5) 26.56/9.59 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs7(x0, x1, ty_Ordering) 26.56/9.59 new_ltEs10(Nothing, Just(x0), x1) 26.56/9.59 new_lt6(x0, x1, ty_Integer) 26.56/9.59 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_lt20(x0, x1, ty_Double) 26.56/9.59 new_lt6(x0, x1, ty_@0) 26.56/9.59 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_ltEs10(Just(x0), Just(x1), ty_Integer) 26.56/9.59 new_esEs16(Just(x0), Just(x1), ty_Char) 26.56/9.59 new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 26.56/9.59 new_esEs4(x0, x1, ty_Ordering) 26.56/9.59 new_lt17(x0, x1) 26.56/9.59 new_lt5(x0, x1) 26.56/9.59 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs16(Just(x0), Just(x1), ty_Double) 26.56/9.59 new_lt23(x0, x1, ty_Ordering) 26.56/9.59 new_lt23(x0, x1, ty_Double) 26.56/9.59 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs28(x0, x1, ty_Double) 26.56/9.59 new_ltEs14(LT, LT) 26.56/9.59 new_esEs28(x0, x1, ty_Ordering) 26.56/9.59 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_ltEs10(Just(x0), Just(x1), ty_@0) 26.56/9.59 new_esEs7(x0, x1, ty_Char) 26.56/9.59 new_compare111(x0, x1, x2, x3, True, x4, x5) 26.56/9.59 new_lt20(x0, x1, ty_Char) 26.56/9.59 new_primMulNat0(Succ(x0), Zero) 26.56/9.59 new_compare18(Nothing, Just(x0), x1) 26.56/9.59 new_esEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.56/9.59 new_esEs15(EQ, GT) 26.56/9.59 new_esEs15(GT, EQ) 26.56/9.59 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs28(x0, x1, app(ty_[], x2)) 26.56/9.59 new_asAs(False, x0) 26.56/9.59 new_lt22(x0, x1, app(ty_[], x2)) 26.56/9.59 new_esEs15(LT, LT) 26.56/9.59 new_esEs38(x0, x1, ty_Ordering) 26.56/9.59 new_esEs31(x0, x1, ty_Char) 26.56/9.59 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs13(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_ltEs17(x0, x1, x2) 26.56/9.59 new_ltEs8(False, False) 26.56/9.59 new_esEs14(False, True) 26.56/9.59 new_esEs14(True, False) 26.56/9.59 new_esEs4(x0, x1, ty_Char) 26.56/9.59 new_compare0(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs29(x0, x1, ty_Integer) 26.56/9.59 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs8(x0, x1, ty_Ordering) 26.56/9.59 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_ltEs18(x0, x1, ty_Int) 26.56/9.59 new_esEs9(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_ltEs22(x0, x1, ty_Char) 26.56/9.59 new_ltEs21(x0, x1, ty_Ordering) 26.56/9.59 new_ltEs23(x0, x1, ty_Ordering) 26.56/9.59 new_lt20(x0, x1, app(ty_[], x2)) 26.56/9.59 new_ltEs22(x0, x1, ty_Double) 26.56/9.59 new_esEs35(x0, x1, ty_Float) 26.56/9.59 new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 26.56/9.59 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.56/9.59 new_esEs5(x0, x1, ty_Ordering) 26.56/9.59 new_lt21(x0, x1, ty_Ordering) 26.56/9.59 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs30(x0, x1, ty_Char) 26.56/9.59 new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.56/9.59 new_esEs31(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_compare112(x0, x1, True, x2, x3) 26.56/9.59 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs32(x0, x1, ty_Ordering) 26.56/9.59 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.56/9.59 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.56/9.59 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.56/9.59 new_esEs5(x0, x1, ty_Char) 26.56/9.59 new_compare13(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.56/9.59 new_esEs31(x0, x1, ty_Double) 26.56/9.59 new_compare13(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.56/9.59 new_primCompAux00(x0, x1, EQ, ty_Float) 26.56/9.59 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.56/9.59 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.56/9.59 new_primCompAux00(x0, x1, EQ, ty_Ordering) 26.56/9.59 new_esEs6(x0, x1, ty_Char) 26.56/9.59 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.56/9.59 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs10(x0, x1, ty_Char) 26.56/9.59 new_lt23(x0, x1, app(ty_[], x2)) 26.56/9.59 new_esEs15(LT, GT) 26.56/9.59 new_esEs15(GT, LT) 26.56/9.59 new_lt6(x0, x1, ty_Float) 26.56/9.59 new_ltEs20(x0, x1, ty_Double) 26.56/9.59 new_compare0(x0, x1, ty_@0) 26.56/9.59 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs32(x0, x1, app(ty_[], x2)) 26.56/9.59 new_esEs30(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs29(x0, x1, app(ty_[], x2)) 26.56/9.59 new_compare10(x0, x1, True, x2) 26.56/9.59 new_ltEs14(LT, GT) 26.56/9.59 new_ltEs14(GT, LT) 26.56/9.59 new_esEs9(x0, x1, ty_Double) 26.56/9.59 new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) 26.56/9.59 new_esEs8(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs38(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.56/9.59 new_esEs6(x0, x1, ty_Ordering) 26.56/9.59 new_ltEs23(x0, x1, ty_Float) 26.56/9.59 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs13(x0, x1, ty_Ordering) 26.56/9.59 new_pePe(False, x0) 26.56/9.59 new_ltEs20(x0, x1, ty_Ordering) 26.56/9.59 new_primPlusNat1(Succ(x0), x1) 26.56/9.59 new_esEs31(x0, x1, ty_Ordering) 26.56/9.59 new_ltEs24(x0, x1, ty_Double) 26.56/9.59 new_lt23(x0, x1, ty_Char) 26.56/9.59 new_ltEs22(x0, x1, ty_Ordering) 26.56/9.59 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.56/9.59 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 26.56/9.59 new_lt6(x0, x1, ty_Int) 26.56/9.59 new_lt22(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_sr0(Integer(x0), Integer(x1)) 26.56/9.59 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.56/9.59 new_ltEs14(EQ, GT) 26.56/9.59 new_ltEs14(GT, EQ) 26.56/9.59 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 26.56/9.59 new_esEs19(Right(x0), Right(x1), x2, ty_@0) 26.56/9.59 new_lt22(x0, x1, ty_@0) 26.56/9.59 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_lt21(x0, x1, ty_Char) 26.56/9.59 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.56/9.59 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.56/9.59 new_esEs6(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs11(x0, x1, ty_Bool) 26.56/9.59 new_esEs8(x0, x1, ty_Float) 26.56/9.59 new_esEs35(x0, x1, ty_Integer) 26.56/9.59 new_esEs8(x0, x1, app(ty_[], x2)) 26.56/9.59 new_esEs38(x0, x1, ty_Double) 26.56/9.59 new_esEs35(x0, x1, ty_Ordering) 26.56/9.59 new_ltEs19(x0, x1, ty_Char) 26.56/9.59 new_esEs25(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.56/9.59 new_esEs32(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs35(x0, x1, ty_Bool) 26.56/9.59 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 26.56/9.59 new_esEs30(x0, x1, app(ty_[], x2)) 26.56/9.59 new_ltEs6(x0, x1) 26.56/9.59 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.56/9.59 new_esEs39(x0, x1, ty_Char) 26.56/9.59 new_ltEs24(x0, x1, ty_@0) 26.56/9.59 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.56/9.59 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs34(x0, x1, ty_Double) 26.56/9.59 new_esEs11(x0, x1, ty_Int) 26.56/9.59 new_primCmpNat0(Succ(x0), Zero) 26.56/9.59 new_lt19(x0, x1, ty_Int) 26.56/9.59 new_esEs5(x0, x1, ty_Float) 26.56/9.59 new_primCompAux00(x0, x1, EQ, ty_Char) 26.56/9.59 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 26.56/9.59 new_esEs29(x0, x1, ty_@0) 26.56/9.59 new_esEs27(x0, x1, ty_Char) 26.56/9.59 new_ltEs21(x0, x1, ty_Char) 26.56/9.59 new_primPlusNat0(Succ(x0), Zero) 26.56/9.59 new_primEqNat0(Succ(x0), Zero) 26.56/9.59 new_ltEs21(x0, x1, app(ty_[], x2)) 26.56/9.59 new_ltEs23(x0, x1, ty_Char) 26.56/9.59 new_esEs8(x0, x1, ty_Char) 26.56/9.59 new_compare210(x0, x1, True, x2) 26.56/9.59 new_lt19(x0, x1, ty_@0) 26.56/9.59 new_esEs32(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs7(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs7(x0, x1, ty_Float) 26.56/9.59 new_esEs9(x0, x1, app(ty_[], x2)) 26.56/9.59 new_ltEs23(x0, x1, ty_Integer) 26.56/9.59 new_esEs37(x0, x1, ty_Int) 26.56/9.59 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_compare9(False, True) 26.56/9.59 new_compare9(True, False) 26.56/9.59 new_lt21(x0, x1, ty_Float) 26.56/9.59 new_primMulNat0(Zero, Zero) 26.56/9.59 new_primCompAux00(x0, x1, EQ, ty_@0) 26.56/9.59 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs11(x0, x1, ty_Integer) 26.56/9.59 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_ltEs14(EQ, EQ) 26.56/9.59 new_primCompAux00(x0, x1, EQ, ty_Bool) 26.56/9.59 new_lt19(x0, x1, ty_Bool) 26.56/9.59 new_compare24(x0, x1, True, x2, x3) 26.56/9.59 new_compare0(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.56/9.59 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.56/9.59 new_compare26([], [], x0) 26.56/9.59 new_ltEs20(x0, x1, ty_@0) 26.56/9.59 new_esEs35(x0, x1, ty_Char) 26.56/9.59 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs5(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) 26.56/9.59 new_esEs4(x0, x1, ty_Float) 26.56/9.59 new_esEs12(:(x0, x1), [], x2) 26.56/9.59 new_ltEs24(x0, x1, ty_Char) 26.56/9.59 new_esEs8(x0, x1, ty_Integer) 26.56/9.59 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 26.56/9.59 new_esEs5(x0, x1, ty_Bool) 26.56/9.59 new_esEs7(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_lt14(x0, x1) 26.56/9.59 new_ltEs18(x0, x1, ty_Float) 26.56/9.59 new_ltEs18(x0, x1, ty_Integer) 26.56/9.59 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.56/9.59 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs4(x0, x1, ty_Integer) 26.56/9.59 new_compare14(x0, x1, False, x2, x3) 26.56/9.59 new_esEs35(x0, x1, ty_Int) 26.56/9.59 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 26.56/9.59 new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.56/9.59 new_ltEs20(x0, x1, app(ty_[], x2)) 26.56/9.59 new_esEs10(x0, x1, ty_Double) 26.56/9.59 new_ltEs24(x0, x1, ty_Bool) 26.56/9.59 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_lt19(x0, x1, ty_Integer) 26.56/9.59 new_primCompAux00(x0, x1, EQ, ty_Integer) 26.56/9.59 new_primCompAux00(x0, x1, LT, x2) 26.56/9.59 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_ltEs24(x0, x1, ty_Integer) 26.56/9.59 new_esEs7(x0, x1, ty_Integer) 26.56/9.59 new_ltEs7(x0, x1) 26.56/9.59 new_ltEs5(Left(x0), Right(x1), x2, x3) 26.56/9.59 new_ltEs5(Right(x0), Left(x1), x2, x3) 26.56/9.59 new_primPlusNat1(Zero, x0) 26.56/9.59 new_esEs30(x0, x1, ty_Double) 26.56/9.59 new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.56/9.59 new_esEs38(x0, x1, app(ty_[], x2)) 26.56/9.59 new_ltEs18(x0, x1, ty_Bool) 26.56/9.59 new_compare0(x0, x1, ty_Float) 26.56/9.59 new_esEs33(x0, x1, ty_Double) 26.56/9.59 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.56/9.59 new_esEs36(x0, x1, ty_Int) 26.56/9.59 new_esEs19(Left(x0), Left(x1), ty_@0, x2) 26.56/9.59 new_esEs4(x0, x1, ty_Bool) 26.56/9.59 new_esEs11(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs29(x0, x1, ty_Ordering) 26.56/9.59 new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 26.56/9.59 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 26.56/9.59 new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.56/9.59 new_esEs5(x0, x1, ty_Integer) 26.56/9.59 new_ltEs16(x0, x1) 26.56/9.59 new_compare13(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.56/9.59 new_compare13(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.56/9.59 new_esEs7(x0, x1, ty_Bool) 26.56/9.59 new_esEs38(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_ltEs10(Just(x0), Just(x1), ty_Float) 26.56/9.59 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.56/9.59 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_ltEs19(x0, x1, ty_@0) 26.56/9.59 new_esEs37(x0, x1, ty_Integer) 26.56/9.59 new_compare25(x0, x1, True, x2, x3) 26.56/9.59 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.56/9.59 new_compare0(x0, x1, ty_Bool) 26.56/9.59 new_compare9(True, True) 26.56/9.59 new_lt23(x0, x1, ty_@0) 26.56/9.59 new_esEs19(Right(x0), Right(x1), x2, ty_Integer) 26.56/9.59 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs27(x0, x1, ty_@0) 26.56/9.59 new_esEs31(x0, x1, ty_Float) 26.56/9.59 new_compare18(Nothing, Nothing, x0) 26.56/9.59 new_esEs34(x0, x1, ty_Ordering) 26.56/9.59 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 26.56/9.59 new_compare110(x0, x1, x2, x3, True, x4, x5, x6) 26.56/9.59 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs35(x0, x1, ty_Double) 26.56/9.59 new_ltEs18(x0, x1, ty_@0) 26.56/9.59 new_ltEs10(Just(x0), Just(x1), ty_Int) 26.56/9.59 new_esEs33(x0, x1, ty_Ordering) 26.56/9.59 new_esEs39(x0, x1, ty_@0) 26.56/9.59 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs15(GT, GT) 26.56/9.59 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 26.56/9.59 new_esEs31(x0, x1, app(ty_Maybe, x2)) 26.56/9.59 new_ltEs22(x0, x1, ty_Float) 26.56/9.59 new_esEs9(x0, x1, ty_Ordering) 26.56/9.59 new_esEs15(LT, EQ) 26.56/9.59 new_esEs15(EQ, LT) 26.56/9.59 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs31(x0, x1, app(ty_[], x2)) 26.56/9.59 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_primCompAux00(x0, x1, GT, x2) 26.56/9.59 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs10(x0, x1, app(ty_[], x2)) 26.56/9.59 new_esEs31(x0, x1, ty_Int) 26.56/9.59 new_esEs10(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs11(x0, x1, ty_@0) 26.56/9.59 new_compare14(x0, x1, True, x2, x3) 26.56/9.59 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs33(x0, x1, app(ty_Ratio, x2)) 26.56/9.59 new_esEs19(Right(x0), Right(x1), x2, ty_Float) 26.56/9.59 new_lt19(x0, x1, app(ty_[], x2)) 26.56/9.59 new_esEs5(x0, x1, ty_@0) 26.56/9.59 new_ltEs23(x0, x1, ty_@0) 26.56/9.59 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_ltEs24(x0, x1, ty_Int) 26.56/9.59 new_esEs10(x0, x1, ty_Ordering) 26.56/9.59 new_esEs20(Char(x0), Char(x1)) 26.56/9.59 new_ltEs10(Just(x0), Just(x1), ty_Char) 26.56/9.59 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.56/9.59 new_esEs6(x0, x1, ty_Double) 26.56/9.59 new_esEs14(False, False) 26.56/9.59 new_ltEs21(x0, x1, ty_@0) 26.56/9.59 new_esEs19(Right(x0), Right(x1), x2, ty_Bool) 26.56/9.59 new_esEs8(x0, x1, ty_@0) 26.56/9.59 new_ltEs13(x0, x1, x2) 26.56/9.59 new_esEs30(x0, x1, ty_Ordering) 26.56/9.59 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.59 new_lt4(x0, x1) 26.56/9.59 new_compare10(x0, x1, False, x2) 26.56/9.59 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 26.56/9.59 new_compare0(x0, x1, ty_Integer) 26.56/9.59 new_esEs38(x0, x1, ty_Int) 26.56/9.59 new_compare27(GT, GT) 26.56/9.59 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.56/9.59 new_ltEs11(x0, x1) 26.56/9.59 new_esEs19(Right(x0), Right(x1), x2, ty_Int) 26.56/9.59 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.59 new_esEs32(x0, x1, ty_@0) 26.56/9.59 new_asAs(True, x0) 26.56/9.59 new_lt21(x0, x1, ty_Double) 26.56/9.59 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 26.56/9.59 new_compare27(LT, EQ) 26.56/9.59 new_compare27(EQ, LT) 26.56/9.59 new_esEs38(x0, x1, ty_Float) 26.56/9.59 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 26.56/9.59 new_ltEs24(x0, x1, ty_Float) 26.56/9.59 new_compare111(x0, x1, x2, x3, False, x4, x5) 26.56/9.59 new_primCmpNat0(Zero, Zero) 26.56/9.59 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 26.56/9.59 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.59 new_esEs19(Right(x0), Right(x1), x2, ty_Char) 26.56/9.59 26.56/9.59 We have to consider all minimal (P,Q,R)-chains. 26.56/9.59 ---------------------------------------- 26.56/9.59 26.56/9.59 (54) DependencyGraphProof (EQUIVALENT) 26.56/9.59 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 4 less nodes. 26.56/9.59 ---------------------------------------- 26.56/9.59 26.56/9.59 (55) 26.56/9.59 Obligation: 26.56/9.59 Q DP problem: 26.56/9.59 The TRS P consists of the following rules: 26.56/9.59 26.56/9.59 new_ltEs1(xwv54, xwv55, ef) -> new_compare(xwv54, xwv55, ef) 26.56/9.59 new_compare(:(xwv4000, xwv4001), :(xwv3000, xwv3001), eg) -> new_primCompAux(xwv4000, xwv3000, xwv4001, xwv3001, eg) 26.56/9.59 new_primCompAux(Right(xwv4000), Right(xwv3000), xwv401, xwv301, app(app(ty_Either, fh), ga)) -> new_compare23(xwv4000, xwv3000, new_esEs11(xwv4000, xwv3000, ga), fh, ga) 26.56/9.59 new_compare23(xwv83, xwv84, False, cfa, app(ty_[], cfe)) -> new_ltEs1(xwv83, xwv84, cfe) 26.56/9.59 new_compare23(xwv83, xwv84, False, cfa, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs2(xwv83, xwv84, cff, cfg, cfh) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, app(ty_Maybe, bcc)) -> new_ltEs0(xwv542, xwv552, bcc) 26.56/9.59 new_ltEs0(Just(xwv540), Just(xwv550), app(ty_[], dh)) -> new_ltEs1(xwv540, xwv550, dh) 26.56/9.59 new_ltEs0(Just(xwv540), Just(xwv550), app(ty_Maybe, dg)) -> new_ltEs0(xwv540, xwv550, dg) 26.56/9.59 new_ltEs0(Just(xwv540), Just(xwv550), app(app(ty_@2, de), df)) -> new_ltEs(xwv540, xwv550, de, df) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), h, app(app(ty_Either, bh), ca)) -> new_ltEs3(xwv541, xwv551, bh, ca) 26.56/9.59 new_ltEs3(Right(xwv540), Right(xwv550), bgg, app(ty_[], bhc)) -> new_ltEs1(xwv540, xwv550, bhc) 26.56/9.59 new_ltEs3(Left(xwv540), Left(xwv550), app(ty_[], bga), bfg) -> new_ltEs1(xwv540, xwv550, bga) 26.56/9.59 new_ltEs3(Right(xwv540), Right(xwv550), bgg, app(app(ty_@2, bgh), bha)) -> new_ltEs(xwv540, xwv550, bgh, bha) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), h, app(ty_Maybe, bc)) -> new_ltEs0(xwv541, xwv551, bc) 26.56/9.59 new_ltEs0(Just(xwv540), Just(xwv550), app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs2(xwv540, xwv550, ea, eb, ec) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), app(ty_[], beg), bbh, bdd) -> new_lt1(xwv540, xwv550, beg) 26.56/9.59 new_lt1(xwv113, xwv115, hg) -> new_compare(xwv113, xwv115, hg) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), app(app(ty_@2, bed), bee), bbh, bdd) -> new_lt(xwv540, xwv550, bed, bee) 26.56/9.59 new_lt(xwv113, xwv115, hc, hd) -> new_compare1(xwv113, xwv115, hc, hd) 26.56/9.59 new_compare1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), fa, fb) -> new_compare2(xwv4000, xwv4001, xwv3000, xwv3001, new_asAs(new_esEs5(xwv4000, xwv3000, fa), new_esEs4(xwv4001, xwv3001, fb)), fa, fb) 26.56/9.59 new_compare2(xwv113, xwv114, xwv115, xwv116, False, app(app(ty_Either, bac), bad), he) -> new_compare5(xwv113, xwv115, bac, bad) 26.56/9.59 new_compare5(Left(xwv4000), Left(xwv3000), fh, ga) -> new_compare22(xwv4000, xwv3000, new_esEs10(xwv4000, xwv3000, fh), fh, ga) 26.56/9.59 new_compare22(xwv76, xwv77, False, app(ty_[], cec), cea) -> new_ltEs1(xwv76, xwv77, cec) 26.56/9.59 new_compare22(xwv76, xwv77, False, app(app(app(ty_@3, ced), cee), cef), cea) -> new_ltEs2(xwv76, xwv77, ced, cee, cef) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, app(ty_Maybe, bde), bdd) -> new_lt0(xwv541, xwv551, bde) 26.56/9.59 new_lt0(xwv113, xwv115, hf) -> new_compare3(xwv113, xwv115, hf) 26.56/9.59 new_compare3(Just(xwv4000), Just(xwv3000), fc) -> new_compare20(xwv4000, xwv3000, new_esEs6(xwv4000, xwv3000, fc), fc) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, app(app(ty_Either, bfc), bfd)), bbh), bdd)) -> new_lt3(xwv540, xwv550, bfc, bfd) 26.56/9.59 new_lt3(xwv113, xwv115, bac, bad) -> new_compare5(xwv113, xwv115, bac, bad) 26.56/9.59 new_compare5(Right(xwv4000), Right(xwv3000), fh, ga) -> new_compare23(xwv4000, xwv3000, new_esEs11(xwv4000, xwv3000, ga), fh, ga) 26.56/9.59 new_compare23(xwv83, xwv84, False, cfa, app(app(ty_@2, cfb), cfc)) -> new_ltEs(xwv83, xwv84, cfb, cfc) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), h, app(app(app(ty_@3, be), bf), bg)) -> new_ltEs2(xwv541, xwv551, be, bf, bg) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), app(ty_Maybe, bef), bbh, bdd) -> new_lt0(xwv540, xwv550, bef) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, app(app(ty_Either, bch), bda)) -> new_ltEs3(xwv542, xwv552, bch, bda) 26.56/9.59 new_ltEs3(Left(xwv540), Left(xwv550), app(app(app(ty_@3, bgb), bgc), bgd), bfg) -> new_ltEs2(xwv540, xwv550, bgb, bgc, bgd) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), app(app(app(ty_@3, beh), bfa), bfb), bbh, bdd) -> new_lt2(xwv540, xwv550, beh, bfa, bfb) 26.56/9.59 new_lt2(xwv113, xwv115, hh, baa, bab) -> new_compare4(xwv113, xwv115, hh, baa, bab) 26.56/9.59 new_compare4(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), fd, ff, fg) -> new_compare21(xwv4000, xwv4001, xwv4002, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs9(xwv4000, xwv3000, fd), new_asAs(new_esEs8(xwv4001, xwv3001, ff), new_esEs7(xwv4002, xwv3002, fg))), fd, ff, fg) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, app(ty_[], caf), cac, cad) -> new_lt1(xwv65, xwv68, caf) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, app(ty_Maybe, cbg)) -> new_ltEs0(xwv67, xwv70, cbg) 26.56/9.59 new_ltEs0(Just(xwv540), Just(xwv550), app(app(ty_Either, ed), ee)) -> new_ltEs3(xwv540, xwv550, ed, ee) 26.56/9.59 new_ltEs3(Left(xwv540), Left(xwv550), app(app(ty_@2, bfe), bff), bfg) -> new_ltEs(xwv540, xwv550, bfe, bff) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), app(app(app(ty_@3, cg), da), db), cd) -> new_lt2(xwv540, xwv550, cg, da, db) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), h, app(app(ty_@2, ba), bb)) -> new_ltEs(xwv541, xwv551, ba, bb) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), app(app(ty_@2, cb), cc), cd) -> new_lt(xwv540, xwv550, cb, cc) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), h, app(ty_[], bd)) -> new_ltEs1(xwv541, xwv551, bd) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), app(ty_[], cf), cd) -> new_lt1(xwv540, xwv550, cf) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), app(app(ty_Either, dc), dd), cd) -> new_lt3(xwv540, xwv550, dc, dd) 26.56/9.59 new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), app(ty_Maybe, ce), cd) -> new_lt0(xwv540, xwv550, ce) 26.56/9.59 new_ltEs3(Left(xwv540), Left(xwv550), app(app(ty_Either, bge), bgf), bfg) -> new_ltEs3(xwv540, xwv550, bge, bgf) 26.56/9.59 new_ltEs3(Right(xwv540), Right(xwv550), bgg, app(app(ty_Either, bhg), bhh)) -> new_ltEs3(xwv540, xwv550, bhg, bhh) 26.56/9.59 new_ltEs3(Left(xwv540), Left(xwv550), app(ty_Maybe, bfh), bfg) -> new_ltEs0(xwv540, xwv550, bfh) 26.56/9.59 new_ltEs3(Right(xwv540), Right(xwv550), bgg, app(ty_Maybe, bhb)) -> new_ltEs0(xwv540, xwv550, bhb) 26.56/9.59 new_ltEs3(Right(xwv540), Right(xwv550), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs2(xwv540, xwv550, bhd, bhe, bhf) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, app(ty_[], bcd)) -> new_ltEs1(xwv542, xwv552, bcd) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), app(app(ty_Either, bfc), bfd), bbh, bdd) -> new_lt3(xwv540, xwv550, bfc, bfd) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, app(ty_[], bdf), bdd) -> new_lt1(xwv541, xwv551, bdf) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs2(xwv542, xwv552, bce, bcf, bcg) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, app(app(ty_@2, bca), bcb)) -> new_ltEs(xwv542, xwv552, bca, bcb) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, app(app(ty_@2, bdb), bdc), bdd) -> new_lt(xwv541, xwv551, bdb, bdc) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, app(app(app(ty_@3, bdg), bdh), bea), bdd) -> new_lt2(xwv541, xwv551, bdg, bdh, bea) 26.56/9.59 new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, app(app(ty_Either, beb), bec), bdd) -> new_lt3(xwv541, xwv551, beb, bec) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, app(app(app(ty_@3, cag), cah), cba), cac, cad) -> new_lt2(xwv65, xwv68, cag, cah, cba) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, app(ty_Maybe, cae), cac, cad) -> new_lt0(xwv65, xwv68, cae) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, app(app(ty_@2, ccf), ccg), cad) -> new_lt(xwv66, xwv69, ccf, ccg) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, app(app(ty_@2, cbe), cbf)) -> new_ltEs(xwv67, xwv70, cbe, cbf) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, app(app(ty_@2, caa), cab), cac, cad) -> new_lt(xwv65, xwv68, caa, cab) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, app(ty_[], cbh)) -> new_ltEs1(xwv67, xwv70, cbh) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, app(app(ty_Either, cbb), cbc), cac, cad) -> new_lt3(xwv65, xwv68, cbb, cbc) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, app(ty_[], cda), cad) -> new_lt1(xwv66, xwv69, cda) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, app(app(ty_Either, ccd), cce)) -> new_ltEs3(xwv67, xwv70, ccd, cce) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, app(app(app(ty_@3, cdb), cdc), cdd), cad) -> new_lt2(xwv66, xwv69, cdb, cdc, cdd) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, app(app(app(ty_@3, cca), ccb), ccc)) -> new_ltEs2(xwv67, xwv70, cca, ccb, ccc) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, app(app(ty_Either, cde), cdf), cad) -> new_lt3(xwv66, xwv69, cde, cdf) 26.56/9.59 new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, app(ty_Maybe, cch), cad) -> new_lt0(xwv66, xwv69, cch) 26.56/9.59 new_compare23(xwv83, xwv84, False, cfa, app(ty_Maybe, cfd)) -> new_ltEs0(xwv83, xwv84, cfd) 26.56/9.59 new_compare23(xwv83, xwv84, False, cfa, app(app(ty_Either, cga), cgb)) -> new_ltEs3(xwv83, xwv84, cga, cgb) 26.56/9.59 new_compare20(Just(xwv540), Just(xwv550), False, app(ty_Maybe, app(ty_Maybe, dg))) -> new_ltEs0(xwv540, xwv550, dg) 26.56/9.59 new_compare20(Left(xwv540), Left(xwv550), False, app(app(ty_Either, app(app(ty_Either, bge), bgf)), bfg)) -> new_ltEs3(xwv540, xwv550, bge, bgf) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), app(ty_[], bdf)), bdd)) -> new_lt1(xwv541, xwv551, bdf) 26.56/9.59 new_compare20(Right(xwv540), Right(xwv550), False, app(app(ty_Either, bgg), app(app(ty_@2, bgh), bha))) -> new_ltEs(xwv540, xwv550, bgh, bha) 26.56/9.59 new_compare20(Right(xwv540), Right(xwv550), False, app(app(ty_Either, bgg), app(app(app(ty_@3, bhd), bhe), bhf))) -> new_ltEs2(xwv540, xwv550, bhd, bhe, bhf) 26.56/9.59 new_compare20(Left(xwv540), Left(xwv550), False, app(app(ty_Either, app(ty_Maybe, bfh)), bfg)) -> new_ltEs0(xwv540, xwv550, bfh) 26.56/9.59 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), cd)) -> new_lt(xwv540, xwv550, cb, cc) 26.56/9.59 new_compare20(xwv54, xwv55, False, app(ty_[], ef)) -> new_compare(xwv54, xwv55, ef) 26.56/9.59 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, h), app(app(app(ty_@3, be), bf), bg))) -> new_ltEs2(xwv541, xwv551, be, bf, bg) 26.56/9.59 new_compare20(Just(xwv540), Just(xwv550), False, app(ty_Maybe, app(app(ty_Either, ed), ee))) -> new_ltEs3(xwv540, xwv550, ed, ee) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), bbh), app(app(ty_Either, bch), bda))) -> new_ltEs3(xwv542, xwv552, bch, bda) 26.56/9.59 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), bbh), app(ty_[], bcd))) -> new_ltEs1(xwv542, xwv552, bcd) 26.56/9.60 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, h), app(ty_[], bd))) -> new_ltEs1(xwv541, xwv551, bd) 26.56/9.60 new_compare20(Left(xwv540), Left(xwv550), False, app(app(ty_Either, app(ty_[], bga)), bfg)) -> new_ltEs1(xwv540, xwv550, bga) 26.56/9.60 new_compare20(Just(xwv540), Just(xwv550), False, app(ty_Maybe, app(ty_[], dh))) -> new_ltEs1(xwv540, xwv550, dh) 26.56/9.60 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), bbh), app(ty_Maybe, bcc))) -> new_ltEs0(xwv542, xwv552, bcc) 26.56/9.60 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, app(ty_Maybe, bef)), bbh), bdd)) -> new_lt0(xwv540, xwv550, bef) 26.56/9.60 new_compare20(Left(xwv540), Left(xwv550), False, app(app(ty_Either, app(app(ty_@2, bfe), bff)), bfg)) -> new_ltEs(xwv540, xwv550, bfe, bff) 26.56/9.60 new_compare20(Right(xwv540), Right(xwv550), False, app(app(ty_Either, bgg), app(ty_Maybe, bhb))) -> new_ltEs0(xwv540, xwv550, bhb) 26.56/9.60 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), bbh), app(app(ty_@2, bca), bcb))) -> new_ltEs(xwv542, xwv552, bca, bcb) 26.56/9.60 new_compare20(Right(xwv540), Right(xwv550), False, app(app(ty_Either, bgg), app(ty_[], bhc))) -> new_ltEs1(xwv540, xwv550, bhc) 26.56/9.60 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, app(app(app(ty_@3, beh), bfa), bfb)), bbh), bdd)) -> new_lt2(xwv540, xwv550, beh, bfa, bfb) 26.56/9.60 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, app(ty_[], cf)), cd)) -> new_lt1(xwv540, xwv550, cf) 26.56/9.60 new_compare20(Left(xwv540), Left(xwv550), False, app(app(ty_Either, app(app(app(ty_@3, bgb), bgc), bgd)), bfg)) -> new_ltEs2(xwv540, xwv550, bgb, bgc, bgd) 26.56/9.60 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), app(app(ty_Either, beb), bec)), bdd)) -> new_lt3(xwv541, xwv551, beb, bec) 26.56/9.60 new_compare20(Right(xwv540), Right(xwv550), False, app(app(ty_Either, bgg), app(app(ty_Either, bhg), bhh))) -> new_ltEs3(xwv540, xwv550, bhg, bhh) 26.56/9.60 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, h), app(ty_Maybe, bc))) -> new_ltEs0(xwv541, xwv551, bc) 26.56/9.60 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), app(ty_Maybe, bde)), bdd)) -> new_lt0(xwv541, xwv551, bde) 26.56/9.60 new_compare20(Just(xwv540), Just(xwv550), False, app(ty_Maybe, app(app(ty_@2, de), df))) -> new_ltEs(xwv540, xwv550, de, df) 26.56/9.60 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), bbh), app(app(app(ty_@3, bce), bcf), bcg))) -> new_ltEs2(xwv542, xwv552, bce, bcf, bcg) 26.56/9.60 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, h), app(app(ty_@2, ba), bb))) -> new_ltEs(xwv541, xwv551, ba, bb) 26.56/9.60 new_compare20(Just(xwv540), Just(xwv550), False, app(ty_Maybe, app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs2(xwv540, xwv550, ea, eb, ec) 26.56/9.60 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, app(app(ty_@2, bed), bee)), bbh), bdd)) -> new_lt(xwv540, xwv550, bed, bee) 26.56/9.60 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, app(ty_Maybe, ce)), cd)) -> new_lt0(xwv540, xwv550, ce) 26.56/9.60 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, h), app(app(ty_Either, bh), ca))) -> new_ltEs3(xwv541, xwv551, bh, ca) 26.56/9.60 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), app(app(app(ty_@3, bdg), bdh), bea)), bdd)) -> new_lt2(xwv541, xwv551, bdg, bdh, bea) 26.56/9.60 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, app(app(ty_Either, dc), dd)), cd)) -> new_lt3(xwv540, xwv550, dc, dd) 26.56/9.60 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), app(app(ty_@2, bdb), bdc)), bdd)) -> new_lt(xwv541, xwv551, bdb, bdc) 26.56/9.60 new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, app(ty_[], beg)), bbh), bdd)) -> new_lt1(xwv540, xwv550, beg) 26.56/9.60 new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, app(app(app(ty_@3, cg), da), db)), cd)) -> new_lt2(xwv540, xwv550, cg, da, db) 26.56/9.60 new_compare22(xwv76, xwv77, False, app(ty_Maybe, ceb), cea) -> new_ltEs0(xwv76, xwv77, ceb) 26.56/9.60 new_compare22(xwv76, xwv77, False, app(app(ty_Either, ceg), ceh), cea) -> new_ltEs3(xwv76, xwv77, ceg, ceh) 26.56/9.60 new_compare22(xwv76, xwv77, False, app(app(ty_@2, cdg), cdh), cea) -> new_ltEs(xwv76, xwv77, cdg, cdh) 26.56/9.60 new_compare2(xwv113, xwv114, xwv115, xwv116, False, app(app(ty_@2, hc), hd), he) -> new_compare1(xwv113, xwv115, hc, hd) 26.56/9.60 new_compare2(xwv113, xwv114, xwv115, xwv116, False, app(app(app(ty_@3, hh), baa), bab), he) -> new_compare4(xwv113, xwv115, hh, baa, bab) 26.56/9.60 new_compare2(xwv113, xwv114, xwv115, xwv116, False, bae, app(app(ty_@2, baf), bag)) -> new_ltEs(xwv114, xwv116, baf, bag) 26.56/9.60 new_compare2(xwv113, xwv114, xwv115, xwv116, False, bae, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs2(xwv114, xwv116, bbb, bbc, bbd) 26.56/9.60 new_compare2(xwv113, xwv114, xwv115, xwv116, False, app(ty_[], hg), he) -> new_compare(xwv113, xwv115, hg) 26.56/9.60 new_compare2(xwv113, xwv114, xwv115, xwv116, False, bae, app(ty_Maybe, bah)) -> new_ltEs0(xwv114, xwv116, bah) 26.56/9.60 new_compare2(xwv113, xwv114, xwv115, xwv116, False, bae, app(app(ty_Either, bbe), bbf)) -> new_ltEs3(xwv114, xwv116, bbe, bbf) 26.56/9.60 new_compare2(xwv113, xwv114, xwv115, xwv116, False, app(ty_Maybe, hf), he) -> new_compare3(xwv113, xwv115, hf) 26.56/9.60 new_compare2(xwv113, xwv114, xwv115, xwv116, False, bae, app(ty_[], bba)) -> new_ltEs1(xwv114, xwv116, bba) 26.56/9.60 new_primCompAux(xwv400, xwv300, xwv401, xwv301, eh) -> new_primCompAux0(xwv401, xwv301, new_compare0(xwv400, xwv300, eh), app(ty_[], eh)) 26.56/9.60 new_primCompAux0(xwv32, xwv33, EQ, app(ty_[], ge)) -> new_compare(xwv32, xwv33, ge) 26.56/9.60 new_primCompAux(Left(xwv4000), Left(xwv3000), xwv401, xwv301, app(app(ty_Either, fh), ga)) -> new_compare22(xwv4000, xwv3000, new_esEs10(xwv4000, xwv3000, fh), fh, ga) 26.56/9.60 new_primCompAux(:(xwv4000, xwv4001), :(xwv3000, xwv3001), xwv401, xwv301, app(ty_[], eg)) -> new_primCompAux(xwv4000, xwv3000, xwv4001, xwv3001, eg) 26.56/9.60 new_primCompAux(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), xwv401, xwv301, app(app(app(ty_@3, fd), ff), fg)) -> new_compare21(xwv4000, xwv4001, xwv4002, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs9(xwv4000, xwv3000, fd), new_asAs(new_esEs8(xwv4001, xwv3001, ff), new_esEs7(xwv4002, xwv3002, fg))), fd, ff, fg) 26.56/9.60 new_primCompAux(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), xwv401, xwv301, app(app(ty_@2, fa), fb)) -> new_compare2(xwv4000, xwv4001, xwv3000, xwv3001, new_asAs(new_esEs5(xwv4000, xwv3000, fa), new_esEs4(xwv4001, xwv3001, fb)), fa, fb) 26.56/9.60 new_primCompAux(Just(xwv4000), Just(xwv3000), xwv401, xwv301, app(ty_Maybe, fc)) -> new_compare20(xwv4000, xwv3000, new_esEs6(xwv4000, xwv3000, fc), fc) 26.56/9.60 26.56/9.60 The TRS R consists of the following rules: 26.56/9.60 26.56/9.60 new_primCompAux00(xwv32, xwv33, EQ, ty_@0) -> new_compare6(xwv32, xwv33) 26.56/9.60 new_ltEs24(xwv54, xwv55, ty_Float) -> new_ltEs12(xwv54, xwv55) 26.56/9.60 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.56/9.60 new_esEs33(xwv540, xwv550, app(ty_Ratio, fbb)) -> new_esEs23(xwv540, xwv550, fbb) 26.56/9.60 new_esEs28(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.60 new_ltEs21(xwv83, xwv84, ty_Bool) -> new_ltEs8(xwv83, xwv84) 26.56/9.60 new_primPlusNat0(Zero, Zero) -> Zero 26.56/9.60 new_ltEs22(xwv76, xwv77, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs15(xwv76, xwv77, ced, cee, cef) 26.56/9.60 new_primCompAux1(xwv400, xwv300, xwv401, xwv301, eh) -> new_primCompAux00(xwv401, xwv301, new_compare0(xwv400, xwv300, eh), app(ty_[], eh)) 26.56/9.60 new_esEs24(@0, @0) -> True 26.56/9.60 new_pePe(True, xwv216) -> True 26.56/9.60 new_esEs10(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.56/9.60 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Integer, fca) -> new_esEs26(xwv40000, xwv30000) 26.56/9.60 new_compare212(xwv113, xwv114, xwv115, xwv116, True, bae, he) -> EQ 26.56/9.60 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(ty_@2, ffd), ffe), fca) -> new_esEs21(xwv40000, xwv30000, ffd, ffe) 26.56/9.60 new_ltEs24(xwv54, xwv55, ty_Ordering) -> new_ltEs14(xwv54, xwv55) 26.56/9.60 new_esEs34(xwv541, xwv551, ty_Double) -> new_esEs17(xwv541, xwv551) 26.56/9.60 new_esEs35(xwv540, xwv550, app(ty_[], beg)) -> new_esEs12(xwv540, xwv550, beg) 26.56/9.60 new_esEs30(xwv40002, xwv30002, app(app(ty_@2, eff), efg)) -> new_esEs21(xwv40002, xwv30002, eff, efg) 26.56/9.60 new_esEs34(xwv541, xwv551, ty_Float) -> new_esEs22(xwv541, xwv551) 26.56/9.60 new_esEs13(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.60 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.56/9.60 new_compare27(LT, EQ) -> LT 26.56/9.60 new_lt6(xwv113, xwv115, ty_Char) -> new_lt8(xwv113, xwv115) 26.56/9.60 new_ltEs7(xwv54, xwv55) -> new_fsEs(new_compare16(xwv54, xwv55)) 26.56/9.60 new_compare27(LT, GT) -> LT 26.56/9.60 new_esEs32(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.56/9.60 new_esEs7(xwv4002, xwv3002, ty_Char) -> new_esEs20(xwv4002, xwv3002) 26.56/9.60 new_esEs28(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.56/9.60 new_esEs20(Char(xwv40000), Char(xwv30000)) -> new_primEqNat0(xwv40000, xwv30000) 26.56/9.60 new_primMulNat0(Succ(xwv400000), Succ(xwv300100)) -> new_primPlusNat1(new_primMulNat0(xwv400000, Succ(xwv300100)), xwv300100) 26.56/9.60 new_compare111(xwv170, xwv171, xwv172, xwv173, False, dhd, dhe) -> GT 26.56/9.60 new_esEs39(xwv65, xwv68, ty_Ordering) -> new_esEs15(xwv65, xwv68) 26.56/9.60 new_ltEs5(Left(xwv540), Left(xwv550), ty_Int, bfg) -> new_ltEs6(xwv540, xwv550) 26.56/9.60 new_esEs10(xwv4000, xwv3000, app(ty_Maybe, dcg)) -> new_esEs16(xwv4000, xwv3000, dcg) 26.56/9.60 new_ltEs19(xwv541, xwv551, ty_Double) -> new_ltEs11(xwv541, xwv551) 26.56/9.60 new_ltEs5(Left(xwv540), Right(xwv550), bgg, bfg) -> True 26.56/9.60 new_compare0(xwv400, xwv300, ty_@0) -> new_compare6(xwv400, xwv300) 26.56/9.60 new_esEs7(xwv4002, xwv3002, ty_Int) -> new_esEs18(xwv4002, xwv3002) 26.56/9.60 new_esEs34(xwv541, xwv551, ty_Ordering) -> new_esEs15(xwv541, xwv551) 26.56/9.60 new_lt19(xwv540, xwv550, app(ty_Ratio, fbb)) -> new_lt18(xwv540, xwv550, fbb) 26.56/9.60 new_ltEs20(xwv542, xwv552, ty_@0) -> new_ltEs4(xwv542, xwv552) 26.56/9.60 new_lt20(xwv541, xwv551, app(ty_[], bdf)) -> new_lt13(xwv541, xwv551, bdf) 26.56/9.60 new_esEs9(xwv4000, xwv3000, app(app(app(ty_@3, dgd), dge), dgf)) -> new_esEs25(xwv4000, xwv3000, dgd, dge, dgf) 26.56/9.60 new_ltEs23(xwv67, xwv70, app(app(ty_Either, ccd), cce)) -> new_ltEs5(xwv67, xwv70, ccd, cce) 26.56/9.60 new_compare18(Nothing, Just(xwv3000), fc) -> LT 26.56/9.60 new_primEqNat0(Succ(xwv400000), Succ(xwv300000)) -> new_primEqNat0(xwv400000, xwv300000) 26.56/9.60 new_ltEs22(xwv76, xwv77, app(ty_Maybe, ceb)) -> new_ltEs10(xwv76, xwv77, ceb) 26.56/9.60 new_ltEs21(xwv83, xwv84, ty_Char) -> new_ltEs7(xwv83, xwv84) 26.56/9.60 new_not(True) -> False 26.56/9.60 new_lt18(xwv113, xwv115, eef) -> new_esEs15(new_compare29(xwv113, xwv115, eef), LT) 26.56/9.60 new_esEs4(xwv4001, xwv3001, ty_Bool) -> new_esEs14(xwv4001, xwv3001) 26.56/9.60 new_esEs35(xwv540, xwv550, app(app(ty_@2, bed), bee)) -> new_esEs21(xwv540, xwv550, bed, bee) 26.56/9.60 new_esEs29(xwv113, xwv115, ty_Ordering) -> new_esEs15(xwv113, xwv115) 26.56/9.60 new_esEs38(xwv66, xwv69, app(ty_Ratio, feh)) -> new_esEs23(xwv66, xwv69, feh) 26.56/9.60 new_ltEs10(Just(xwv540), Just(xwv550), ty_Bool) -> new_ltEs8(xwv540, xwv550) 26.56/9.60 new_ltEs16(xwv54, xwv55) -> new_fsEs(new_compare8(xwv54, xwv55)) 26.56/9.60 new_esEs4(xwv4001, xwv3001, app(ty_[], eee)) -> new_esEs12(xwv4001, xwv3001, eee) 26.56/9.60 new_esEs30(xwv40002, xwv30002, ty_Bool) -> new_esEs14(xwv40002, xwv30002) 26.56/9.60 new_ltEs19(xwv541, xwv551, ty_Bool) -> new_ltEs8(xwv541, xwv551) 26.56/9.60 new_esEs30(xwv40002, xwv30002, ty_Int) -> new_esEs18(xwv40002, xwv30002) 26.56/9.60 new_compare11(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, False, xwv192, dfc, dfd, dfe) -> new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, xwv192, dfc, dfd, dfe) 26.56/9.60 new_primCompAux00(xwv32, xwv33, EQ, ty_Bool) -> new_compare9(xwv32, xwv33) 26.56/9.60 new_lt20(xwv541, xwv551, app(app(app(ty_@3, bdg), bdh), bea)) -> new_lt15(xwv541, xwv551, bdg, bdh, bea) 26.56/9.60 new_ltEs18(xwv114, xwv116, ty_@0) -> new_ltEs4(xwv114, xwv116) 26.56/9.60 new_esEs28(xwv40000, xwv30000, app(app(ty_@2, dbh), dca)) -> new_esEs21(xwv40000, xwv30000, dbh, dca) 26.56/9.60 new_ltEs24(xwv54, xwv55, ty_Integer) -> new_ltEs16(xwv54, xwv55) 26.56/9.60 new_compare28(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), fd, ff, fg) -> new_compare211(xwv4000, xwv4001, xwv4002, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs9(xwv4000, xwv3000, fd), new_asAs(new_esEs8(xwv4001, xwv3001, ff), new_esEs7(xwv4002, xwv3002, fg))), fd, ff, fg) 26.56/9.60 new_esEs37(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.60 new_primEqNat0(Succ(xwv400000), Zero) -> False 26.56/9.60 new_primEqNat0(Zero, Succ(xwv300000)) -> False 26.56/9.60 new_esEs10(xwv4000, xwv3000, app(app(ty_@2, ddb), ddc)) -> new_esEs21(xwv4000, xwv3000, ddb, ddc) 26.56/9.60 new_ltEs20(xwv542, xwv552, ty_Int) -> new_ltEs6(xwv542, xwv552) 26.56/9.60 new_esEs39(xwv65, xwv68, ty_Double) -> new_esEs17(xwv65, xwv68) 26.56/9.60 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Float, fca) -> new_esEs22(xwv40000, xwv30000) 26.56/9.60 new_ltEs5(Left(xwv540), Left(xwv550), ty_@0, bfg) -> new_ltEs4(xwv540, xwv550) 26.56/9.60 new_esEs30(xwv40002, xwv30002, ty_Char) -> new_esEs20(xwv40002, xwv30002) 26.56/9.60 new_esEs14(False, True) -> False 26.56/9.60 new_esEs14(True, False) -> False 26.56/9.60 new_ltEs5(Left(xwv540), Left(xwv550), app(app(ty_Either, bge), bgf), bfg) -> new_ltEs5(xwv540, xwv550, bge, bgf) 26.56/9.60 new_esEs29(xwv113, xwv115, ty_Double) -> new_esEs17(xwv113, xwv115) 26.56/9.60 new_ltEs14(EQ, EQ) -> True 26.56/9.60 new_ltEs10(Nothing, Just(xwv550), fed) -> True 26.56/9.60 new_esEs13(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.56/9.60 new_ltEs10(Just(xwv540), Just(xwv550), ty_Double) -> new_ltEs11(xwv540, xwv550) 26.56/9.60 new_ltEs21(xwv83, xwv84, ty_Double) -> new_ltEs11(xwv83, xwv84) 26.56/9.60 new_primCmpInt(Pos(Succ(xwv40000)), Neg(xwv3000)) -> GT 26.56/9.60 new_esEs6(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.56/9.60 new_esEs10(xwv4000, xwv3000, app(ty_[], ddh)) -> new_esEs12(xwv4000, xwv3000, ddh) 26.56/9.60 new_lt23(xwv66, xwv69, ty_Integer) -> new_lt17(xwv66, xwv69) 26.56/9.60 new_esEs35(xwv540, xwv550, ty_Bool) -> new_esEs14(xwv540, xwv550) 26.56/9.60 new_esEs5(xwv4000, xwv3000, app(app(ty_Either, fbh), fca)) -> new_esEs19(xwv4000, xwv3000, fbh, fca) 26.56/9.60 new_primCompAux00(xwv32, xwv33, GT, dhb) -> GT 26.56/9.60 new_ltEs10(Just(xwv540), Just(xwv550), ty_Char) -> new_ltEs7(xwv540, xwv550) 26.56/9.60 new_compare27(EQ, GT) -> LT 26.56/9.60 new_esEs4(xwv4001, xwv3001, app(app(ty_@2, edg), edh)) -> new_esEs21(xwv4001, xwv3001, edg, edh) 26.56/9.60 new_primCmpNat0(Zero, Succ(xwv30000)) -> LT 26.56/9.60 new_lt20(xwv541, xwv551, ty_@0) -> new_lt12(xwv541, xwv551) 26.56/9.60 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, app(ty_[], fhd)) -> new_esEs12(xwv40000, xwv30000, fhd) 26.56/9.60 new_primCompAux00(xwv32, xwv33, EQ, app(ty_[], ge)) -> new_compare26(xwv32, xwv33, ge) 26.56/9.60 new_esEs6(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.56/9.60 new_esEs9(xwv4000, xwv3000, app(ty_[], dgg)) -> new_esEs12(xwv4000, xwv3000, dgg) 26.56/9.60 new_ltEs19(xwv541, xwv551, ty_Char) -> new_ltEs7(xwv541, xwv551) 26.56/9.60 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Ordering, fca) -> new_esEs15(xwv40000, xwv30000) 26.56/9.60 new_esEs15(GT, GT) -> True 26.56/9.60 new_esEs6(xwv4000, xwv3000, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs25(xwv4000, xwv3000, ead, eae, eaf) 26.56/9.60 new_ltEs9(@2(xwv540, xwv541), @2(xwv550, xwv551), h, cd) -> new_pePe(new_lt19(xwv540, xwv550, h), new_asAs(new_esEs33(xwv540, xwv550, h), new_ltEs19(xwv541, xwv551, cd))) 26.56/9.60 new_esEs10(xwv4000, xwv3000, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs25(xwv4000, xwv3000, dde, ddf, ddg) 26.56/9.60 new_esEs11(xwv4000, xwv3000, app(ty_Ratio, def)) -> new_esEs23(xwv4000, xwv3000, def) 26.56/9.60 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.56/9.60 new_esEs28(xwv40000, xwv30000, app(ty_Maybe, dbe)) -> new_esEs16(xwv40000, xwv30000, dbe) 26.56/9.60 new_ltEs19(xwv541, xwv551, ty_Ordering) -> new_ltEs14(xwv541, xwv551) 26.56/9.60 new_esEs8(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 26.56/9.60 new_esEs7(xwv4002, xwv3002, app(ty_Maybe, eah)) -> new_esEs16(xwv4002, xwv3002, eah) 26.56/9.60 new_esEs38(xwv66, xwv69, app(ty_[], cda)) -> new_esEs12(xwv66, xwv69, cda) 26.56/9.60 new_lt21(xwv540, xwv550, ty_Int) -> new_lt7(xwv540, xwv550) 26.56/9.60 new_esEs31(xwv40001, xwv30001, app(app(ty_Either, egf), egg)) -> new_esEs19(xwv40001, xwv30001, egf, egg) 26.56/9.60 new_ltEs14(EQ, GT) -> True 26.56/9.60 new_ltEs6(xwv54, xwv55) -> new_fsEs(new_compare15(xwv54, xwv55)) 26.56/9.60 new_esEs13(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.56/9.60 new_compare0(xwv400, xwv300, app(app(ty_Either, fh), ga)) -> new_compare7(xwv400, xwv300, fh, ga) 26.56/9.60 new_primEqInt(Neg(Succ(xwv400000)), Neg(Succ(xwv300000))) -> new_primEqNat0(xwv400000, xwv300000) 26.56/9.60 new_compare15(xwv400, xwv300) -> new_primCmpInt(xwv400, xwv300) 26.56/9.60 new_primCmpInt(Neg(Zero), Pos(Succ(xwv30000))) -> LT 26.56/9.60 new_lt22(xwv65, xwv68, app(app(app(ty_@3, cag), cah), cba)) -> new_lt15(xwv65, xwv68, cag, cah, cba) 26.56/9.60 new_lt23(xwv66, xwv69, app(ty_[], cda)) -> new_lt13(xwv66, xwv69, cda) 26.56/9.60 new_primMulInt(Pos(xwv40000), Pos(xwv30010)) -> Pos(new_primMulNat0(xwv40000, xwv30010)) 26.56/9.60 new_ltEs8(True, False) -> False 26.56/9.60 new_ltEs14(LT, GT) -> True 26.56/9.60 new_ltEs14(GT, GT) -> True 26.56/9.60 new_ltEs22(xwv76, xwv77, ty_Int) -> new_ltEs6(xwv76, xwv77) 26.56/9.60 new_esEs32(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.60 new_esEs11(xwv4000, xwv3000, app(app(ty_Either, deb), dec)) -> new_esEs19(xwv4000, xwv3000, deb, dec) 26.56/9.60 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.56/9.60 new_esEs28(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.56/9.60 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(app(ty_@3, ffg), ffh), fga), fca) -> new_esEs25(xwv40000, xwv30000, ffg, ffh, fga) 26.56/9.60 new_compare10(xwv141, xwv142, True, chf) -> LT 26.56/9.60 new_ltEs22(xwv76, xwv77, ty_Integer) -> new_ltEs16(xwv76, xwv77) 26.56/9.60 new_primMulNat0(Succ(xwv400000), Zero) -> Zero 26.56/9.60 new_primMulNat0(Zero, Succ(xwv300100)) -> Zero 26.56/9.60 new_ltEs8(False, False) -> True 26.56/9.60 new_esEs8(xwv4001, xwv3001, ty_Float) -> new_esEs22(xwv4001, xwv3001) 26.56/9.60 new_primCompAux00(xwv32, xwv33, EQ, ty_Integer) -> new_compare8(xwv32, xwv33) 26.56/9.60 new_lt6(xwv113, xwv115, app(app(ty_@2, hc), hd)) -> new_lt9(xwv113, xwv115, hc, hd) 26.56/9.60 new_esEs6(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.56/9.60 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.60 new_primPlusNat1(Succ(xwv2220), xwv300100) -> Succ(Succ(new_primPlusNat0(xwv2220, xwv300100))) 26.56/9.60 new_lt23(xwv66, xwv69, ty_Float) -> new_lt11(xwv66, xwv69) 26.56/9.60 new_ltEs19(xwv541, xwv551, ty_Float) -> new_ltEs12(xwv541, xwv551) 26.56/9.60 new_compare0(xwv400, xwv300, ty_Bool) -> new_compare9(xwv400, xwv300) 26.56/9.60 new_ltEs22(xwv76, xwv77, app(app(ty_@2, cdg), cdh)) -> new_ltEs9(xwv76, xwv77, cdg, cdh) 26.56/9.60 new_primPlusNat0(Succ(xwv33200), Zero) -> Succ(xwv33200) 26.56/9.60 new_primPlusNat0(Zero, Succ(xwv24200)) -> Succ(xwv24200) 26.56/9.60 new_compare9(True, True) -> EQ 26.56/9.60 new_primPlusNat1(Zero, xwv300100) -> Succ(xwv300100) 26.56/9.60 new_lt23(xwv66, xwv69, ty_Int) -> new_lt7(xwv66, xwv69) 26.56/9.60 new_ltEs5(Left(xwv540), Left(xwv550), app(app(app(ty_@3, bgb), bgc), bgd), bfg) -> new_ltEs15(xwv540, xwv550, bgb, bgc, bgd) 26.56/9.60 new_esEs7(xwv4002, xwv3002, app(app(ty_Either, eba), ebb)) -> new_esEs19(xwv4002, xwv3002, eba, ebb) 26.56/9.60 new_esEs4(xwv4001, xwv3001, app(ty_Maybe, edd)) -> new_esEs16(xwv4001, xwv3001, edd) 26.56/9.60 new_ltEs19(xwv541, xwv551, ty_Integer) -> new_ltEs16(xwv541, xwv551) 26.56/9.60 new_esEs8(xwv4001, xwv3001, ty_Integer) -> new_esEs26(xwv4001, xwv3001) 26.56/9.60 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.56/9.60 new_esEs7(xwv4002, xwv3002, app(app(ty_@2, ebc), ebd)) -> new_esEs21(xwv4002, xwv3002, ebc, ebd) 26.56/9.60 new_lt6(xwv113, xwv115, ty_Ordering) -> new_lt14(xwv113, xwv115) 26.56/9.60 new_esEs4(xwv4001, xwv3001, ty_Char) -> new_esEs20(xwv4001, xwv3001) 26.56/9.60 new_esEs38(xwv66, xwv69, ty_Char) -> new_esEs20(xwv66, xwv69) 26.56/9.60 new_esEs9(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.56/9.60 new_lt6(xwv113, xwv115, app(ty_Ratio, eef)) -> new_lt18(xwv113, xwv115, eef) 26.56/9.60 new_esEs16(Just(xwv40000), Just(xwv30000), ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.56/9.60 new_esEs34(xwv541, xwv551, ty_Integer) -> new_esEs26(xwv541, xwv551) 26.56/9.60 new_ltEs4(xwv54, xwv55) -> new_fsEs(new_compare6(xwv54, xwv55)) 26.56/9.60 new_esEs33(xwv540, xwv550, app(app(ty_Either, dc), dd)) -> new_esEs19(xwv540, xwv550, dc, dd) 26.56/9.60 new_esEs31(xwv40001, xwv30001, ty_Double) -> new_esEs17(xwv40001, xwv30001) 26.56/9.60 new_esEs30(xwv40002, xwv30002, app(ty_Maybe, efc)) -> new_esEs16(xwv40002, xwv30002, efc) 26.56/9.60 new_ltEs5(Right(xwv540), Right(xwv550), bgg, ty_Float) -> new_ltEs12(xwv540, xwv550) 26.56/9.60 new_lt21(xwv540, xwv550, app(ty_Ratio, fbe)) -> new_lt18(xwv540, xwv550, fbe) 26.56/9.60 new_ltEs20(xwv542, xwv552, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs15(xwv542, xwv552, bce, bcf, bcg) 26.56/9.60 new_compare212(xwv113, xwv114, xwv115, xwv116, False, bae, he) -> new_compare110(xwv113, xwv114, xwv115, xwv116, new_lt6(xwv113, xwv115, bae), new_asAs(new_esEs29(xwv113, xwv115, bae), new_ltEs18(xwv114, xwv116, he)), bae, he) 26.56/9.60 new_compare0(xwv400, xwv300, ty_Char) -> new_compare16(xwv400, xwv300) 26.56/9.60 new_esEs27(xwv40001, xwv30001, ty_Ordering) -> new_esEs15(xwv40001, xwv30001) 26.56/9.60 new_esEs32(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.56/9.60 new_ltEs5(Right(xwv540), Right(xwv550), bgg, ty_Integer) -> new_ltEs16(xwv540, xwv550) 26.56/9.60 new_lt20(xwv541, xwv551, app(ty_Maybe, bde)) -> new_lt10(xwv541, xwv551, bde) 26.56/9.60 new_esEs38(xwv66, xwv69, ty_Int) -> new_esEs18(xwv66, xwv69) 26.56/9.60 new_esEs13(xwv40000, xwv30000, app(ty_Ratio, cha)) -> new_esEs23(xwv40000, xwv30000, cha) 26.56/9.60 new_lt23(xwv66, xwv69, ty_@0) -> new_lt12(xwv66, xwv69) 26.56/9.60 new_esEs10(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.56/9.60 new_esEs8(xwv4001, xwv3001, app(app(ty_Either, ecc), ecd)) -> new_esEs19(xwv4001, xwv3001, ecc, ecd) 26.56/9.60 new_lt19(xwv540, xwv550, app(app(ty_@2, cb), cc)) -> new_lt9(xwv540, xwv550, cb, cc) 26.56/9.60 new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_@2, gb), gc)) -> new_compare17(xwv32, xwv33, gb, gc) 26.56/9.60 new_esEs38(xwv66, xwv69, ty_Bool) -> new_esEs14(xwv66, xwv69) 26.56/9.60 new_esEs13(xwv40000, xwv30000, app(ty_[], che)) -> new_esEs12(xwv40000, xwv30000, che) 26.56/9.60 new_ltEs21(xwv83, xwv84, ty_Float) -> new_ltEs12(xwv83, xwv84) 26.56/9.60 new_esEs32(xwv40000, xwv30000, app(app(app(ty_@3, fae), faf), fag)) -> new_esEs25(xwv40000, xwv30000, fae, faf, fag) 26.56/9.60 new_ltEs8(False, True) -> True 26.56/9.60 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(app(ty_@3, fdc), fdd), fde)) -> new_esEs25(xwv40000, xwv30000, fdc, fdd, fde) 26.56/9.60 new_lt22(xwv65, xwv68, ty_Ordering) -> new_lt14(xwv65, xwv68) 26.56/9.60 new_compare24(xwv76, xwv77, False, fdg, cea) -> new_compare14(xwv76, xwv77, new_ltEs22(xwv76, xwv77, fdg), fdg, cea) 26.56/9.60 new_esEs9(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.56/9.60 new_esEs27(xwv40001, xwv30001, ty_Bool) -> new_esEs14(xwv40001, xwv30001) 26.56/9.60 new_compare26([], :(xwv3000, xwv3001), eg) -> LT 26.56/9.60 new_esEs11(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.56/9.60 new_lt19(xwv540, xwv550, ty_Ordering) -> new_lt14(xwv540, xwv550) 26.56/9.60 new_lt22(xwv65, xwv68, ty_Bool) -> new_lt4(xwv65, xwv68) 26.56/9.60 new_esEs11(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.56/9.60 new_ltEs23(xwv67, xwv70, ty_Double) -> new_ltEs11(xwv67, xwv70) 26.56/9.60 new_compare7(Left(xwv4000), Right(xwv3000), fh, ga) -> LT 26.56/9.60 new_compare13(Double(xwv4000, Pos(xwv40010)), Double(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.56/9.60 new_compare13(Double(xwv4000, Neg(xwv40010)), Double(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.56/9.60 new_esEs36(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.56/9.60 new_esEs10(xwv4000, xwv3000, app(ty_Ratio, ddd)) -> new_esEs23(xwv4000, xwv3000, ddd) 26.56/9.60 new_esEs15(LT, LT) -> True 26.56/9.60 new_esEs32(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.56/9.60 new_esEs11(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.56/9.60 new_ltEs10(Just(xwv540), Just(xwv550), app(app(ty_@2, de), df)) -> new_ltEs9(xwv540, xwv550, de, df) 26.56/9.60 new_esEs4(xwv4001, xwv3001, ty_Integer) -> new_esEs26(xwv4001, xwv3001) 26.56/9.60 new_lt6(xwv113, xwv115, app(app(app(ty_@3, hh), baa), bab)) -> new_lt15(xwv113, xwv115, hh, baa, bab) 26.56/9.60 new_lt20(xwv541, xwv551, ty_Float) -> new_lt11(xwv541, xwv551) 26.56/9.60 new_esEs7(xwv4002, xwv3002, app(app(app(ty_@3, ebf), ebg), ebh)) -> new_esEs25(xwv4002, xwv3002, ebf, ebg, ebh) 26.56/9.60 new_esEs33(xwv540, xwv550, ty_Bool) -> new_esEs14(xwv540, xwv550) 26.56/9.60 new_ltEs5(Right(xwv540), Right(xwv550), bgg, app(ty_[], bhc)) -> new_ltEs13(xwv540, xwv550, bhc) 26.56/9.60 new_esEs34(xwv541, xwv551, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs25(xwv541, xwv551, bdg, bdh, bea) 26.56/9.60 new_lt22(xwv65, xwv68, app(ty_[], caf)) -> new_lt13(xwv65, xwv68, caf) 26.56/9.60 new_lt19(xwv540, xwv550, ty_Integer) -> new_lt17(xwv540, xwv550) 26.56/9.60 new_esEs31(xwv40001, xwv30001, app(ty_Ratio, ehb)) -> new_esEs23(xwv40001, xwv30001, ehb) 26.56/9.60 new_lt23(xwv66, xwv69, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt15(xwv66, xwv69, cdb, cdc, cdd) 26.56/9.60 new_esEs32(xwv40000, xwv30000, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.56/9.60 new_lt22(xwv65, xwv68, ty_@0) -> new_lt12(xwv65, xwv68) 26.56/9.60 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.60 new_compare111(xwv170, xwv171, xwv172, xwv173, True, dhd, dhe) -> LT 26.56/9.60 new_esEs5(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.56/9.60 new_lt9(xwv113, xwv115, hc, hd) -> new_esEs15(new_compare17(xwv113, xwv115, hc, hd), LT) 26.56/9.60 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_Ratio, chg), bfg) -> new_ltEs17(xwv540, xwv550, chg) 26.56/9.60 new_esEs35(xwv540, xwv550, app(ty_Ratio, fbe)) -> new_esEs23(xwv540, xwv550, fbe) 26.56/9.60 new_ltEs5(Right(xwv540), Left(xwv550), bgg, bfg) -> False 26.56/9.60 new_esEs33(xwv540, xwv550, app(ty_Maybe, ce)) -> new_esEs16(xwv540, xwv550, ce) 26.56/9.60 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.56/9.60 new_esEs11(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.56/9.60 new_esEs9(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.56/9.60 new_esEs7(xwv4002, xwv3002, ty_@0) -> new_esEs24(xwv4002, xwv3002) 26.56/9.60 new_lt21(xwv540, xwv550, ty_Char) -> new_lt8(xwv540, xwv550) 26.56/9.60 new_esEs34(xwv541, xwv551, ty_@0) -> new_esEs24(xwv541, xwv551) 26.56/9.60 new_compare24(xwv76, xwv77, True, fdg, cea) -> EQ 26.56/9.60 new_esEs39(xwv65, xwv68, app(app(app(ty_@3, cag), cah), cba)) -> new_esEs25(xwv65, xwv68, cag, cah, cba) 26.56/9.60 new_ltEs8(True, True) -> True 26.56/9.60 new_primCmpInt(Pos(Succ(xwv40000)), Pos(xwv3000)) -> new_primCmpNat0(Succ(xwv40000), xwv3000) 26.56/9.60 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_Maybe, bfh), bfg) -> new_ltEs10(xwv540, xwv550, bfh) 26.56/9.60 new_esEs39(xwv65, xwv68, app(app(ty_Either, cbb), cbc)) -> new_esEs19(xwv65, xwv68, cbb, cbc) 26.56/9.60 new_lt7(xwv113, xwv115) -> new_esEs15(new_compare15(xwv113, xwv115), LT) 26.56/9.60 new_lt15(xwv113, xwv115, hh, baa, bab) -> new_esEs15(new_compare28(xwv113, xwv115, hh, baa, bab), LT) 26.56/9.60 new_primCompAux00(xwv32, xwv33, EQ, app(app(ty_Either, ha), hb)) -> new_compare7(xwv32, xwv33, ha, hb) 26.56/9.60 new_lt19(xwv540, xwv550, ty_Char) -> new_lt8(xwv540, xwv550) 26.56/9.60 new_esEs35(xwv540, xwv550, ty_Integer) -> new_esEs26(xwv540, xwv550) 26.56/9.60 new_esEs13(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.56/9.60 new_esEs34(xwv541, xwv551, app(app(ty_Either, beb), bec)) -> new_esEs19(xwv541, xwv551, beb, bec) 26.56/9.60 new_esEs13(xwv40000, xwv30000, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs25(xwv40000, xwv30000, chb, chc, chd) 26.56/9.60 new_esEs9(xwv4000, xwv3000, app(app(ty_@2, dga), dgb)) -> new_esEs21(xwv4000, xwv3000, dga, dgb) 26.56/9.60 new_ltEs18(xwv114, xwv116, app(ty_[], bba)) -> new_ltEs13(xwv114, xwv116, bba) 26.56/9.60 new_ltEs24(xwv54, xwv55, app(ty_[], ef)) -> new_ltEs13(xwv54, xwv55, ef) 26.56/9.60 new_ltEs11(xwv54, xwv55) -> new_fsEs(new_compare13(xwv54, xwv55)) 26.56/9.60 new_compare17(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), fa, fb) -> new_compare212(xwv4000, xwv4001, xwv3000, xwv3001, new_asAs(new_esEs5(xwv4000, xwv3000, fa), new_esEs4(xwv4001, xwv3001, fb)), fa, fb) 26.56/9.60 new_esEs31(xwv40001, xwv30001, ty_Char) -> new_esEs20(xwv40001, xwv30001) 26.56/9.60 new_lt20(xwv541, xwv551, ty_Ordering) -> new_lt14(xwv541, xwv551) 26.56/9.60 new_compare26(:(xwv4000, xwv4001), [], eg) -> GT 26.56/9.60 new_esEs27(xwv40001, xwv30001, app(app(ty_@2, daf), dag)) -> new_esEs21(xwv40001, xwv30001, daf, dag) 26.56/9.60 new_esEs38(xwv66, xwv69, app(ty_Maybe, cch)) -> new_esEs16(xwv66, xwv69, cch) 26.56/9.60 new_lt19(xwv540, xwv550, ty_Int) -> new_lt7(xwv540, xwv550) 26.56/9.60 new_lt20(xwv541, xwv551, ty_Char) -> new_lt8(xwv541, xwv551) 26.56/9.60 new_esEs35(xwv540, xwv550, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs25(xwv540, xwv550, beh, bfa, bfb) 26.56/9.60 new_esEs35(xwv540, xwv550, ty_@0) -> new_esEs24(xwv540, xwv550) 26.56/9.60 new_compare0(xwv400, xwv300, app(app(ty_@2, fa), fb)) -> new_compare17(xwv400, xwv300, fa, fb) 26.56/9.60 new_ltEs24(xwv54, xwv55, app(app(ty_@2, h), cd)) -> new_ltEs9(xwv54, xwv55, h, cd) 26.56/9.60 new_lt22(xwv65, xwv68, app(app(ty_Either, cbb), cbc)) -> new_lt16(xwv65, xwv68, cbb, cbc) 26.56/9.60 new_compare26([], [], eg) -> EQ 26.56/9.60 new_lt8(xwv113, xwv115) -> new_esEs15(new_compare16(xwv113, xwv115), LT) 26.56/9.60 new_lt6(xwv113, xwv115, ty_Bool) -> new_lt4(xwv113, xwv115) 26.56/9.60 new_lt20(xwv541, xwv551, ty_Int) -> new_lt7(xwv541, xwv551) 26.56/9.60 new_ltEs5(Right(xwv540), Right(xwv550), bgg, ty_Double) -> new_ltEs11(xwv540, xwv550) 26.56/9.60 new_esEs14(False, False) -> True 26.56/9.60 new_esEs32(xwv40000, xwv30000, app(ty_Maybe, ehg)) -> new_esEs16(xwv40000, xwv30000, ehg) 26.56/9.60 new_esEs35(xwv540, xwv550, app(app(ty_Either, bfc), bfd)) -> new_esEs19(xwv540, xwv550, bfc, bfd) 26.56/9.60 new_esEs36(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.56/9.60 new_compare0(xwv400, xwv300, app(ty_[], eg)) -> new_compare26(xwv400, xwv300, eg) 26.56/9.60 new_lt21(xwv540, xwv550, ty_Bool) -> new_lt4(xwv540, xwv550) 26.56/9.60 new_esEs35(xwv540, xwv550, ty_Int) -> new_esEs18(xwv540, xwv550) 26.56/9.60 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_Maybe, fce)) -> new_esEs16(xwv40000, xwv30000, fce) 26.56/9.60 new_lt21(xwv540, xwv550, ty_Float) -> new_lt11(xwv540, xwv550) 26.56/9.60 new_esEs34(xwv541, xwv551, ty_Bool) -> new_esEs14(xwv541, xwv551) 26.56/9.60 new_esEs31(xwv40001, xwv30001, ty_Ordering) -> new_esEs15(xwv40001, xwv30001) 26.56/9.60 new_primCompAux00(xwv32, xwv33, EQ, ty_Char) -> new_compare16(xwv32, xwv33) 26.56/9.60 new_lt22(xwv65, xwv68, ty_Char) -> new_lt8(xwv65, xwv68) 26.56/9.60 new_esEs11(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.56/9.60 new_esEs13(xwv40000, xwv30000, app(ty_Maybe, cgd)) -> new_esEs16(xwv40000, xwv30000, cgd) 26.56/9.60 new_esEs15(EQ, EQ) -> True 26.56/9.60 new_esEs35(xwv540, xwv550, ty_Char) -> new_esEs20(xwv540, xwv550) 26.56/9.60 new_esEs10(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.56/9.60 new_fsEs(xwv211) -> new_not(new_esEs15(xwv211, GT)) 26.56/9.60 new_ltEs20(xwv542, xwv552, app(ty_[], bcd)) -> new_ltEs13(xwv542, xwv552, bcd) 26.56/9.60 new_esEs38(xwv66, xwv69, app(app(ty_Either, cde), cdf)) -> new_esEs19(xwv66, xwv69, cde, cdf) 26.56/9.60 new_esEs11(xwv4000, xwv3000, app(ty_Maybe, dea)) -> new_esEs16(xwv4000, xwv3000, dea) 26.56/9.60 new_ltEs24(xwv54, xwv55, ty_Double) -> new_ltEs11(xwv54, xwv55) 26.56/9.60 new_lt12(xwv113, xwv115) -> new_esEs15(new_compare6(xwv113, xwv115), LT) 26.56/9.60 new_esEs10(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.56/9.60 new_lt16(xwv113, xwv115, bac, bad) -> new_esEs15(new_compare7(xwv113, xwv115, bac, bad), LT) 26.56/9.60 new_esEs6(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.56/9.60 new_esEs34(xwv541, xwv551, app(ty_Maybe, bde)) -> new_esEs16(xwv541, xwv551, bde) 26.56/9.60 new_primPlusNat0(Succ(xwv33200), Succ(xwv24200)) -> Succ(Succ(new_primPlusNat0(xwv33200, xwv24200))) 26.56/9.60 new_ltEs5(Left(xwv540), Left(xwv550), ty_Ordering, bfg) -> new_ltEs14(xwv540, xwv550) 26.56/9.60 new_esEs7(xwv4002, xwv3002, app(ty_[], eca)) -> new_esEs12(xwv4002, xwv3002, eca) 26.56/9.60 new_esEs33(xwv540, xwv550, ty_Int) -> new_esEs18(xwv540, xwv550) 26.56/9.60 new_ltEs10(Just(xwv540), Nothing, fed) -> False 26.56/9.60 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_Ratio, fff), fca) -> new_esEs23(xwv40000, xwv30000, fff) 26.56/9.60 new_ltEs10(Nothing, Nothing, fed) -> True 26.56/9.60 new_esEs4(xwv4001, xwv3001, app(app(ty_Either, ede), edf)) -> new_esEs19(xwv4001, xwv3001, ede, edf) 26.56/9.60 new_esEs4(xwv4001, xwv3001, app(app(app(ty_@3, eeb), eec), eed)) -> new_esEs25(xwv4001, xwv3001, eeb, eec, eed) 26.56/9.60 new_ltEs5(Left(xwv540), Left(xwv550), app(app(ty_@2, bfe), bff), bfg) -> new_ltEs9(xwv540, xwv550, bfe, bff) 26.56/9.60 new_esEs4(xwv4001, xwv3001, ty_@0) -> new_esEs24(xwv4001, xwv3001) 26.56/9.60 new_esEs13(xwv40000, xwv30000, app(app(ty_Either, cge), cgf)) -> new_esEs19(xwv40000, xwv30000, cge, cgf) 26.56/9.60 new_esEs28(xwv40000, xwv30000, app(ty_Ratio, dcb)) -> new_esEs23(xwv40000, xwv30000, dcb) 26.56/9.60 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, app(app(ty_@2, fgf), fgg)) -> new_esEs21(xwv40000, xwv30000, fgf, fgg) 26.56/9.60 new_lt6(xwv113, xwv115, app(app(ty_Either, bac), bad)) -> new_lt16(xwv113, xwv115, bac, bad) 26.56/9.60 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_Ratio, fdb)) -> new_esEs23(xwv40000, xwv30000, fdb) 26.56/9.60 new_esEs32(xwv40000, xwv30000, app(ty_Ratio, fad)) -> new_esEs23(xwv40000, xwv30000, fad) 26.56/9.60 new_esEs19(Left(xwv40000), Left(xwv30000), ty_@0, fca) -> new_esEs24(xwv40000, xwv30000) 26.56/9.60 new_compare18(Nothing, Nothing, fc) -> EQ 26.56/9.60 new_compare16(Char(xwv4000), Char(xwv3000)) -> new_primCmpNat0(xwv4000, xwv3000) 26.56/9.60 new_ltEs22(xwv76, xwv77, ty_Double) -> new_ltEs11(xwv76, xwv77) 26.56/9.60 new_lt21(xwv540, xwv550, app(app(ty_Either, bfc), bfd)) -> new_lt16(xwv540, xwv550, bfc, bfd) 26.56/9.60 new_lt19(xwv540, xwv550, ty_Bool) -> new_lt4(xwv540, xwv550) 26.56/9.60 new_ltEs5(Left(xwv540), Left(xwv550), ty_Float, bfg) -> new_ltEs12(xwv540, xwv550) 26.56/9.60 new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, dfc, dfd, dfe) -> LT 26.56/9.60 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.56/9.60 new_esEs27(xwv40001, xwv30001, ty_Double) -> new_esEs17(xwv40001, xwv30001) 26.56/9.60 new_esEs5(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.56/9.60 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.56/9.60 new_lt4(xwv113, xwv115) -> new_esEs15(new_compare9(xwv113, xwv115), LT) 26.56/9.60 new_ltEs5(Right(xwv540), Right(xwv550), bgg, app(app(ty_@2, bgh), bha)) -> new_ltEs9(xwv540, xwv550, bgh, bha) 26.56/9.60 new_esEs39(xwv65, xwv68, ty_Float) -> new_esEs22(xwv65, xwv68) 26.56/9.60 new_esEs31(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.56/9.60 new_esEs5(xwv4000, xwv3000, app(ty_[], cgc)) -> new_esEs12(xwv4000, xwv3000, cgc) 26.56/9.60 new_lt6(xwv113, xwv115, ty_Integer) -> new_lt17(xwv113, xwv115) 26.56/9.60 new_lt20(xwv541, xwv551, app(app(ty_Either, beb), bec)) -> new_lt16(xwv541, xwv551, beb, bec) 26.56/9.60 new_ltEs5(Left(xwv540), Left(xwv550), ty_Integer, bfg) -> new_ltEs16(xwv540, xwv550) 26.56/9.60 new_esEs38(xwv66, xwv69, ty_Float) -> new_esEs22(xwv66, xwv69) 26.56/9.60 new_primCmpNat0(Succ(xwv40000), Succ(xwv30000)) -> new_primCmpNat0(xwv40000, xwv30000) 26.56/9.60 new_compare13(Double(xwv4000, Neg(xwv40010)), Double(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.56/9.60 new_ltEs23(xwv67, xwv70, app(ty_[], cbh)) -> new_ltEs13(xwv67, xwv70, cbh) 26.56/9.60 new_compare0(xwv400, xwv300, ty_Int) -> new_compare15(xwv400, xwv300) 26.56/9.60 new_esEs38(xwv66, xwv69, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs25(xwv66, xwv69, cdb, cdc, cdd) 26.56/9.60 new_esEs39(xwv65, xwv68, ty_@0) -> new_esEs24(xwv65, xwv68) 26.56/9.60 new_esEs29(xwv113, xwv115, app(ty_Ratio, eef)) -> new_esEs23(xwv113, xwv115, eef) 26.56/9.60 new_lt19(xwv540, xwv550, ty_Float) -> new_lt11(xwv540, xwv550) 26.56/9.60 new_lt21(xwv540, xwv550, ty_Integer) -> new_lt17(xwv540, xwv550) 26.56/9.60 new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, False, dfc, dfd, dfe) -> GT 26.56/9.60 new_esEs30(xwv40002, xwv30002, app(ty_Ratio, efh)) -> new_esEs23(xwv40002, xwv30002, efh) 26.56/9.60 new_compare14(xwv150, xwv151, False, dgh, dha) -> GT 26.56/9.60 new_esEs32(xwv40000, xwv30000, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.56/9.60 new_lt20(xwv541, xwv551, ty_Integer) -> new_lt17(xwv541, xwv551) 26.56/9.60 new_ltEs22(xwv76, xwv77, app(ty_[], cec)) -> new_ltEs13(xwv76, xwv77, cec) 26.56/9.60 new_lt17(xwv113, xwv115) -> new_esEs15(new_compare8(xwv113, xwv115), LT) 26.56/9.60 new_ltEs14(LT, LT) -> True 26.56/9.60 new_esEs33(xwv540, xwv550, ty_Char) -> new_esEs20(xwv540, xwv550) 26.56/9.60 new_esEs19(Left(xwv40000), Right(xwv30000), fbh, fca) -> False 26.56/9.60 new_esEs19(Right(xwv40000), Left(xwv30000), fbh, fca) -> False 26.56/9.60 new_esEs4(xwv4001, xwv3001, ty_Float) -> new_esEs22(xwv4001, xwv3001) 26.56/9.60 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.60 new_esEs32(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.60 new_esEs35(xwv540, xwv550, app(ty_Maybe, bef)) -> new_esEs16(xwv540, xwv550, bef) 26.56/9.60 new_esEs6(xwv4000, xwv3000, app(ty_[], eag)) -> new_esEs12(xwv4000, xwv3000, eag) 26.56/9.60 new_esEs38(xwv66, xwv69, ty_@0) -> new_esEs24(xwv66, xwv69) 26.56/9.60 new_esEs39(xwv65, xwv68, ty_Integer) -> new_esEs26(xwv65, xwv68) 26.56/9.60 new_esEs33(xwv540, xwv550, ty_Ordering) -> new_esEs15(xwv540, xwv550) 26.56/9.60 new_compare9(False, True) -> LT 26.56/9.60 new_lt19(xwv540, xwv550, app(app(ty_Either, dc), dd)) -> new_lt16(xwv540, xwv550, dc, dd) 26.56/9.60 new_esEs10(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.56/9.60 new_esEs29(xwv113, xwv115, app(ty_Maybe, hf)) -> new_esEs16(xwv113, xwv115, hf) 26.56/9.60 new_primCmpInt(Neg(Succ(xwv40000)), Pos(xwv3000)) -> LT 26.56/9.60 new_esEs29(xwv113, xwv115, app(ty_[], hg)) -> new_esEs12(xwv113, xwv115, hg) 26.56/9.60 new_primCompAux00(xwv32, xwv33, EQ, ty_Double) -> new_compare13(xwv32, xwv33) 26.56/9.60 new_lt22(xwv65, xwv68, ty_Double) -> new_lt5(xwv65, xwv68) 26.56/9.60 new_compare27(GT, EQ) -> GT 26.56/9.60 new_ltEs18(xwv114, xwv116, ty_Ordering) -> new_ltEs14(xwv114, xwv116) 26.56/9.60 new_esEs7(xwv4002, xwv3002, ty_Float) -> new_esEs22(xwv4002, xwv3002) 26.56/9.60 new_compare9(False, False) -> EQ 26.56/9.60 new_esEs28(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.56/9.60 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, app(app(app(ty_@3, fha), fhb), fhc)) -> new_esEs25(xwv40000, xwv30000, fha, fhb, fhc) 26.56/9.60 new_lt22(xwv65, xwv68, ty_Float) -> new_lt11(xwv65, xwv68) 26.56/9.60 new_esEs7(xwv4002, xwv3002, ty_Double) -> new_esEs17(xwv4002, xwv3002) 26.56/9.60 new_ltEs18(xwv114, xwv116, ty_Float) -> new_ltEs12(xwv114, xwv116) 26.56/9.60 new_esEs8(xwv4001, xwv3001, app(ty_[], edc)) -> new_esEs12(xwv4001, xwv3001, edc) 26.56/9.60 new_lt23(xwv66, xwv69, ty_Char) -> new_lt8(xwv66, xwv69) 26.56/9.60 new_esEs12(:(xwv40000, xwv40001), [], cgc) -> False 26.56/9.60 new_esEs12([], :(xwv30000, xwv30001), cgc) -> False 26.56/9.60 new_compare14(xwv150, xwv151, True, dgh, dha) -> LT 26.56/9.60 new_lt20(xwv541, xwv551, app(ty_Ratio, fbd)) -> new_lt18(xwv541, xwv551, fbd) 26.56/9.60 new_primCmpInt(Pos(Zero), Neg(Succ(xwv30000))) -> GT 26.56/9.60 new_esEs17(Double(xwv40000, xwv40001), Double(xwv30000, xwv30001)) -> new_esEs18(new_sr(xwv40000, xwv30001), new_sr(xwv40001, xwv30000)) 26.56/9.60 new_compare210(xwv54, xwv55, False, fhe) -> new_compare10(xwv54, xwv55, new_ltEs24(xwv54, xwv55, fhe), fhe) 26.56/9.60 new_primCmpInt(Neg(Succ(xwv40000)), Neg(xwv3000)) -> new_primCmpNat0(xwv3000, Succ(xwv40000)) 26.56/9.60 new_esEs5(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.56/9.60 new_esEs34(xwv541, xwv551, ty_Char) -> new_esEs20(xwv541, xwv551) 26.56/9.60 new_lt19(xwv540, xwv550, app(app(app(ty_@3, cg), da), db)) -> new_lt15(xwv540, xwv550, cg, da, db) 26.56/9.60 new_ltEs5(Left(xwv540), Left(xwv550), ty_Double, bfg) -> new_ltEs11(xwv540, xwv550) 26.56/9.60 new_esEs11(xwv4000, xwv3000, app(app(app(ty_@3, deg), deh), dfa)) -> new_esEs25(xwv4000, xwv3000, deg, deh, dfa) 26.56/9.60 new_compare0(xwv400, xwv300, ty_Ordering) -> new_compare27(xwv400, xwv300) 26.56/9.60 new_esEs7(xwv4002, xwv3002, ty_Ordering) -> new_esEs15(xwv4002, xwv3002) 26.56/9.60 new_esEs38(xwv66, xwv69, ty_Integer) -> new_esEs26(xwv66, xwv69) 26.56/9.60 new_compare0(xwv400, xwv300, ty_Double) -> new_compare13(xwv400, xwv300) 26.56/9.60 new_esEs39(xwv65, xwv68, app(ty_Maybe, cae)) -> new_esEs16(xwv65, xwv68, cae) 26.56/9.60 new_esEs11(xwv4000, xwv3000, ty_@0) -> new_esEs24(xwv4000, xwv3000) 26.56/9.60 new_lt20(xwv541, xwv551, ty_Bool) -> new_lt4(xwv541, xwv551) 26.56/9.60 new_primEqInt(Pos(Succ(xwv400000)), Pos(Zero)) -> False 26.56/9.60 new_primEqInt(Pos(Zero), Pos(Succ(xwv300000))) -> False 26.56/9.60 new_compare110(xwv170, xwv171, xwv172, xwv173, False, xwv175, dhd, dhe) -> new_compare111(xwv170, xwv171, xwv172, xwv173, xwv175, dhd, dhe) 26.56/9.60 new_esEs34(xwv541, xwv551, ty_Int) -> new_esEs18(xwv541, xwv551) 26.56/9.60 new_compare0(xwv400, xwv300, app(ty_Maybe, fc)) -> new_compare18(xwv400, xwv300, fc) 26.56/9.60 new_esEs29(xwv113, xwv115, app(app(ty_@2, hc), hd)) -> new_esEs21(xwv113, xwv115, hc, hd) 26.56/9.60 new_lt23(xwv66, xwv69, ty_Ordering) -> new_lt14(xwv66, xwv69) 26.56/9.60 new_esEs28(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.56/9.60 new_esEs13(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.56/9.60 new_esEs31(xwv40001, xwv30001, ty_Bool) -> new_esEs14(xwv40001, xwv30001) 26.56/9.60 new_primCompAux00(xwv32, xwv33, EQ, app(ty_Maybe, gd)) -> new_compare18(xwv32, xwv33, gd) 26.56/9.60 new_lt5(xwv113, xwv115) -> new_esEs15(new_compare13(xwv113, xwv115), LT) 26.56/9.60 new_ltEs21(xwv83, xwv84, app(ty_[], cfe)) -> new_ltEs13(xwv83, xwv84, cfe) 26.56/9.60 new_ltEs19(xwv541, xwv551, app(ty_Ratio, fba)) -> new_ltEs17(xwv541, xwv551, fba) 26.56/9.60 new_lt22(xwv65, xwv68, ty_Integer) -> new_lt17(xwv65, xwv68) 26.56/9.60 new_ltEs20(xwv542, xwv552, ty_Ordering) -> new_ltEs14(xwv542, xwv552) 26.56/9.60 new_ltEs18(xwv114, xwv116, ty_Integer) -> new_ltEs16(xwv114, xwv116) 26.56/9.60 new_primCmpNat0(Zero, Zero) -> EQ 26.56/9.60 new_lt19(xwv540, xwv550, app(ty_[], cf)) -> new_lt13(xwv540, xwv550, cf) 26.56/9.60 new_compare27(EQ, LT) -> GT 26.56/9.60 new_lt6(xwv113, xwv115, ty_Int) -> new_lt7(xwv113, xwv115) 26.56/9.60 new_lt23(xwv66, xwv69, app(app(ty_@2, ccf), ccg)) -> new_lt9(xwv66, xwv69, ccf, ccg) 26.56/9.60 new_esEs13(xwv40000, xwv30000, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.56/9.60 new_esEs30(xwv40002, xwv30002, ty_Float) -> new_esEs22(xwv40002, xwv30002) 26.56/9.60 new_esEs16(Nothing, Just(xwv30000), fbg) -> False 26.56/9.60 new_esEs16(Just(xwv40000), Nothing, fbg) -> False 26.56/9.60 new_esEs31(xwv40001, xwv30001, app(ty_Maybe, ege)) -> new_esEs16(xwv40001, xwv30001, ege) 26.56/9.60 new_esEs34(xwv541, xwv551, app(app(ty_@2, bdb), bdc)) -> new_esEs21(xwv541, xwv551, bdb, bdc) 26.56/9.60 new_esEs30(xwv40002, xwv30002, ty_Double) -> new_esEs17(xwv40002, xwv30002) 26.56/9.60 new_ltEs5(Left(xwv540), Left(xwv550), ty_Bool, bfg) -> new_ltEs8(xwv540, xwv550) 26.56/9.60 new_ltEs10(Just(xwv540), Just(xwv550), ty_@0) -> new_ltEs4(xwv540, xwv550) 26.56/9.60 new_esEs15(LT, EQ) -> False 26.56/9.60 new_esEs15(EQ, LT) -> False 26.56/9.60 new_compare13(Double(xwv4000, Pos(xwv40010)), Double(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.56/9.60 new_esEs35(xwv540, xwv550, ty_Ordering) -> new_esEs15(xwv540, xwv550) 26.56/9.60 new_ltEs20(xwv542, xwv552, ty_Double) -> new_ltEs11(xwv542, xwv552) 26.56/9.60 new_esEs7(xwv4002, xwv3002, ty_Integer) -> new_esEs26(xwv4002, xwv3002) 26.56/9.60 new_ltEs19(xwv541, xwv551, ty_Int) -> new_ltEs6(xwv541, xwv551) 26.56/9.60 new_lt14(xwv113, xwv115) -> new_esEs15(new_compare27(xwv113, xwv115), LT) 26.56/9.60 new_esEs6(xwv4000, xwv3000, app(app(ty_Either, dhg), dhh)) -> new_esEs19(xwv4000, xwv3000, dhg, dhh) 26.56/9.60 new_ltEs23(xwv67, xwv70, app(app(ty_@2, cbe), cbf)) -> new_ltEs9(xwv67, xwv70, cbe, cbf) 26.56/9.60 new_ltEs19(xwv541, xwv551, ty_@0) -> new_ltEs4(xwv541, xwv551) 26.56/9.60 new_esEs13(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.56/9.60 new_ltEs23(xwv67, xwv70, ty_Integer) -> new_ltEs16(xwv67, xwv70) 26.56/9.60 new_primCompAux00(xwv32, xwv33, EQ, ty_Int) -> new_compare15(xwv32, xwv33) 26.56/9.60 new_primCompAux00(xwv32, xwv33, EQ, app(ty_Ratio, dhc)) -> new_compare29(xwv32, xwv33, dhc) 26.56/9.60 new_ltEs21(xwv83, xwv84, ty_Int) -> new_ltEs6(xwv83, xwv84) 26.56/9.60 new_ltEs10(Just(xwv540), Just(xwv550), ty_Int) -> new_ltEs6(xwv540, xwv550) 26.56/9.60 new_lt19(xwv540, xwv550, ty_@0) -> new_lt12(xwv540, xwv550) 26.56/9.60 new_esEs6(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.56/9.60 new_ltEs24(xwv54, xwv55, ty_@0) -> new_ltEs4(xwv54, xwv55) 26.56/9.60 new_lt6(xwv113, xwv115, ty_Float) -> new_lt11(xwv113, xwv115) 26.56/9.60 new_ltEs14(EQ, LT) -> False 26.56/9.60 new_esEs28(xwv40000, xwv30000, ty_Double) -> new_esEs17(xwv40000, xwv30000) 26.56/9.60 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_[], dh)) -> new_ltEs13(xwv540, xwv550, dh) 26.56/9.60 new_esEs39(xwv65, xwv68, app(ty_[], caf)) -> new_esEs12(xwv65, xwv68, caf) 26.56/9.60 new_esEs8(xwv4001, xwv3001, app(ty_Maybe, ecb)) -> new_esEs16(xwv4001, xwv3001, ecb) 26.56/9.60 new_esEs27(xwv40001, xwv30001, app(ty_Ratio, dah)) -> new_esEs23(xwv40001, xwv30001, dah) 26.56/9.60 new_esEs13(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.60 new_esEs30(xwv40002, xwv30002, ty_Ordering) -> new_esEs15(xwv40002, xwv30002) 26.56/9.60 new_esEs16(Nothing, Nothing, fbg) -> True 26.56/9.60 new_esEs39(xwv65, xwv68, app(app(ty_@2, caa), cab)) -> new_esEs21(xwv65, xwv68, caa, cab) 26.56/9.60 new_lt21(xwv540, xwv550, app(app(app(ty_@3, beh), bfa), bfb)) -> new_lt15(xwv540, xwv550, beh, bfa, bfb) 26.56/9.60 new_ltEs20(xwv542, xwv552, ty_Bool) -> new_ltEs8(xwv542, xwv552) 26.56/9.60 new_esEs29(xwv113, xwv115, ty_Int) -> new_esEs18(xwv113, xwv115) 26.56/9.60 new_ltEs5(Left(xwv540), Left(xwv550), ty_Char, bfg) -> new_ltEs7(xwv540, xwv550) 26.56/9.60 new_esEs29(xwv113, xwv115, ty_Bool) -> new_esEs14(xwv113, xwv115) 26.56/9.60 new_esEs5(xwv4000, xwv3000, app(app(app(ty_@3, eeh), efa), efb)) -> new_esEs25(xwv4000, xwv3000, eeh, efa, efb) 26.56/9.60 new_ltEs19(xwv541, xwv551, app(ty_[], bd)) -> new_ltEs13(xwv541, xwv551, bd) 26.56/9.60 new_primCmpNat0(Succ(xwv40000), Zero) -> GT 26.56/9.60 new_pePe(False, xwv216) -> xwv216 26.56/9.60 new_esEs33(xwv540, xwv550, ty_@0) -> new_esEs24(xwv540, xwv550) 26.56/9.60 new_lt21(xwv540, xwv550, app(ty_[], beg)) -> new_lt13(xwv540, xwv550, beg) 26.56/9.60 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_Maybe, dg)) -> new_ltEs10(xwv540, xwv550, dg) 26.56/9.60 new_esEs10(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.56/9.60 new_esEs4(xwv4001, xwv3001, ty_Ordering) -> new_esEs15(xwv4001, xwv3001) 26.56/9.60 new_compare19(Float(xwv4000, Pos(xwv40010)), Float(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.56/9.60 new_ltEs17(xwv54, xwv55, fbf) -> new_fsEs(new_compare29(xwv54, xwv55, fbf)) 26.56/9.60 new_compare27(LT, LT) -> EQ 26.56/9.60 new_esEs33(xwv540, xwv550, app(app(app(ty_@3, cg), da), db)) -> new_esEs25(xwv540, xwv550, cg, da, db) 26.56/9.60 new_compare25(xwv83, xwv84, True, cfa, fcc) -> EQ 26.56/9.60 new_compare210(xwv54, xwv55, True, fhe) -> EQ 26.56/9.60 new_esEs27(xwv40001, xwv30001, ty_Char) -> new_esEs20(xwv40001, xwv30001) 26.56/9.60 new_esEs15(EQ, GT) -> False 26.56/9.60 new_esEs15(GT, EQ) -> False 26.56/9.60 new_compare112(xwv157, xwv158, True, feb, fec) -> LT 26.56/9.60 new_lt11(xwv113, xwv115) -> new_esEs15(new_compare19(xwv113, xwv115), LT) 26.56/9.60 new_compare11(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, xwv192, dfc, dfd, dfe) -> new_compare12(xwv185, xwv186, xwv187, xwv188, xwv189, xwv190, True, dfc, dfd, dfe) 26.56/9.60 new_lt23(xwv66, xwv69, ty_Bool) -> new_lt4(xwv66, xwv69) 26.56/9.60 new_esEs23(:%(xwv40000, xwv40001), :%(xwv30000, xwv30001), fcb) -> new_asAs(new_esEs37(xwv40000, xwv30000, fcb), new_esEs36(xwv40001, xwv30001, fcb)) 26.56/9.60 new_esEs27(xwv40001, xwv30001, ty_Int) -> new_esEs18(xwv40001, xwv30001) 26.56/9.60 new_esEs34(xwv541, xwv551, app(ty_Ratio, fbd)) -> new_esEs23(xwv541, xwv551, fbd) 26.56/9.60 new_compare110(xwv170, xwv171, xwv172, xwv173, True, xwv175, dhd, dhe) -> new_compare111(xwv170, xwv171, xwv172, xwv173, True, dhd, dhe) 26.56/9.60 new_ltEs24(xwv54, xwv55, ty_Int) -> new_ltEs6(xwv54, xwv55) 26.56/9.60 new_compare10(xwv141, xwv142, False, chf) -> GT 26.56/9.60 new_primEqInt(Pos(Zero), Neg(Succ(xwv300000))) -> False 26.56/9.60 new_primEqInt(Neg(Zero), Pos(Succ(xwv300000))) -> False 26.56/9.60 new_ltEs20(xwv542, xwv552, ty_Integer) -> new_ltEs16(xwv542, xwv552) 26.56/9.60 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.56/9.60 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_Maybe, ffa), fca) -> new_esEs16(xwv40000, xwv30000, ffa) 26.56/9.60 new_esEs10(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.56/9.60 new_compare9(True, False) -> GT 26.56/9.60 new_ltEs23(xwv67, xwv70, ty_Float) -> new_ltEs12(xwv67, xwv70) 26.56/9.60 new_lt23(xwv66, xwv69, app(app(ty_Either, cde), cdf)) -> new_lt16(xwv66, xwv69, cde, cdf) 26.56/9.60 new_esEs34(xwv541, xwv551, app(ty_[], bdf)) -> new_esEs12(xwv541, xwv551, bdf) 26.56/9.60 new_esEs11(xwv4000, xwv3000, app(ty_[], dfb)) -> new_esEs12(xwv4000, xwv3000, dfb) 26.56/9.60 new_esEs37(xwv40000, xwv30000, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.60 new_esEs33(xwv540, xwv550, ty_Float) -> new_esEs22(xwv540, xwv550) 26.56/9.60 new_esEs9(xwv4000, xwv3000, app(app(ty_Either, dfg), dfh)) -> new_esEs19(xwv4000, xwv3000, dfg, dfh) 26.56/9.60 new_ltEs14(GT, EQ) -> False 26.56/9.60 new_compare26(:(xwv4000, xwv4001), :(xwv3000, xwv3001), eg) -> new_primCompAux1(xwv4000, xwv3000, xwv4001, xwv3001, eg) 26.56/9.60 new_ltEs18(xwv114, xwv116, ty_Double) -> new_ltEs11(xwv114, xwv116) 26.56/9.60 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Char, fca) -> new_esEs20(xwv40000, xwv30000) 26.56/9.60 new_esEs29(xwv113, xwv115, ty_Char) -> new_esEs20(xwv113, xwv115) 26.56/9.60 new_esEs31(xwv40001, xwv30001, ty_@0) -> new_esEs24(xwv40001, xwv30001) 26.56/9.60 new_esEs31(xwv40001, xwv30001, app(app(app(ty_@3, ehc), ehd), ehe)) -> new_esEs25(xwv40001, xwv30001, ehc, ehd, ehe) 26.56/9.60 new_lt13(xwv113, xwv115, hg) -> new_esEs15(new_compare26(xwv113, xwv115, hg), LT) 26.56/9.60 new_lt21(xwv540, xwv550, ty_@0) -> new_lt12(xwv540, xwv550) 26.56/9.60 new_compare29(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), ty_Integer) -> new_compare8(new_sr0(xwv4000, xwv3001), new_sr0(xwv3000, xwv4001)) 26.56/9.60 new_ltEs21(xwv83, xwv84, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs15(xwv83, xwv84, cff, cfg, cfh) 26.56/9.60 new_esEs33(xwv540, xwv550, ty_Double) -> new_esEs17(xwv540, xwv550) 26.56/9.60 new_lt6(xwv113, xwv115, ty_@0) -> new_lt12(xwv113, xwv115) 26.56/9.60 new_esEs8(xwv4001, xwv3001, app(app(ty_@2, ece), ecf)) -> new_esEs21(xwv4001, xwv3001, ece, ecf) 26.56/9.60 new_esEs35(xwv540, xwv550, ty_Float) -> new_esEs22(xwv540, xwv550) 26.56/9.60 new_esEs39(xwv65, xwv68, ty_Int) -> new_esEs18(xwv65, xwv68) 26.56/9.60 new_lt21(xwv540, xwv550, app(ty_Maybe, bef)) -> new_lt10(xwv540, xwv550, bef) 26.56/9.60 new_ltEs13(xwv54, xwv55, ef) -> new_fsEs(new_compare26(xwv54, xwv55, ef)) 26.56/9.60 new_esEs15(LT, GT) -> False 26.56/9.60 new_esEs15(GT, LT) -> False 26.56/9.60 new_esEs39(xwv65, xwv68, ty_Char) -> new_esEs20(xwv65, xwv68) 26.56/9.60 new_ltEs18(xwv114, xwv116, ty_Bool) -> new_ltEs8(xwv114, xwv116) 26.56/9.60 new_esEs39(xwv65, xwv68, ty_Bool) -> new_esEs14(xwv65, xwv68) 26.56/9.60 new_compare18(Just(xwv4000), Just(xwv3000), fc) -> new_compare210(xwv4000, xwv3000, new_esEs6(xwv4000, xwv3000, fc), fc) 26.56/9.60 new_lt21(xwv540, xwv550, ty_Ordering) -> new_lt14(xwv540, xwv550) 26.56/9.60 new_primCompAux00(xwv32, xwv33, EQ, ty_Ordering) -> new_compare27(xwv32, xwv33) 26.56/9.60 new_ltEs10(Just(xwv540), Just(xwv550), app(ty_Ratio, fee)) -> new_ltEs17(xwv540, xwv550, fee) 26.56/9.60 new_ltEs20(xwv542, xwv552, ty_Float) -> new_ltEs12(xwv542, xwv552) 26.56/9.60 new_compare211(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, cad) -> new_compare11(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, new_lt22(xwv65, xwv68, cbd), new_asAs(new_esEs39(xwv65, xwv68, cbd), new_pePe(new_lt23(xwv66, xwv69, cac), new_asAs(new_esEs38(xwv66, xwv69, cac), new_ltEs23(xwv67, xwv70, cad)))), cbd, cac, cad) 26.56/9.60 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Int, fca) -> new_esEs18(xwv40000, xwv30000) 26.56/9.60 new_esEs11(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.56/9.60 new_lt22(xwv65, xwv68, ty_Int) -> new_lt7(xwv65, xwv68) 26.56/9.60 new_ltEs18(xwv114, xwv116, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs15(xwv114, xwv116, bbb, bbc, bbd) 26.56/9.60 new_esEs12(:(xwv40000, xwv40001), :(xwv30000, xwv30001), cgc) -> new_asAs(new_esEs13(xwv40000, xwv30000, cgc), new_esEs12(xwv40001, xwv30001, cgc)) 26.56/9.60 new_compare0(xwv400, xwv300, app(ty_Ratio, fea)) -> new_compare29(xwv400, xwv300, fea) 26.56/9.60 new_esEs10(xwv4000, xwv3000, app(app(ty_Either, dch), dda)) -> new_esEs19(xwv4000, xwv3000, dch, dda) 26.56/9.60 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Bool, fca) -> new_esEs14(xwv40000, xwv30000) 26.56/9.60 new_esEs6(xwv4000, xwv3000, app(app(ty_@2, eaa), eab)) -> new_esEs21(xwv4000, xwv3000, eaa, eab) 26.56/9.60 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, app(ty_Ratio, fgh)) -> new_esEs23(xwv40000, xwv30000, fgh) 26.56/9.60 new_esEs8(xwv4001, xwv3001, ty_@0) -> new_esEs24(xwv4001, xwv3001) 26.56/9.60 new_esEs33(xwv540, xwv550, ty_Integer) -> new_esEs26(xwv540, xwv550) 26.56/9.60 new_esEs8(xwv4001, xwv3001, app(app(app(ty_@3, ech), eda), edb)) -> new_esEs25(xwv4001, xwv3001, ech, eda, edb) 26.56/9.60 new_esEs22(Float(xwv40000, xwv40001), Float(xwv30000, xwv30001)) -> new_esEs18(new_sr(xwv40000, xwv30001), new_sr(xwv40001, xwv30000)) 26.56/9.60 new_lt20(xwv541, xwv551, app(app(ty_@2, bdb), bdc)) -> new_lt9(xwv541, xwv551, bdb, bdc) 26.56/9.60 new_esEs10(xwv4000, xwv3000, ty_Integer) -> new_esEs26(xwv4000, xwv3000) 26.56/9.60 new_primMulInt(Neg(xwv40000), Neg(xwv30010)) -> Pos(new_primMulNat0(xwv40000, xwv30010)) 26.56/9.60 new_primCmpInt(Pos(Zero), Pos(Succ(xwv30000))) -> new_primCmpNat0(Zero, Succ(xwv30000)) 26.56/9.60 new_esEs14(True, True) -> True 26.56/9.60 new_esEs38(xwv66, xwv69, ty_Ordering) -> new_esEs15(xwv66, xwv69) 26.56/9.60 new_esEs9(xwv4000, xwv3000, ty_Float) -> new_esEs22(xwv4000, xwv3000) 26.56/9.60 new_compare29(:%(xwv4000, xwv4001), :%(xwv3000, xwv3001), ty_Int) -> new_compare15(new_sr(xwv4000, xwv3001), new_sr(xwv3000, xwv4001)) 26.56/9.60 new_esEs32(xwv40000, xwv30000, app(app(ty_Either, ehh), faa)) -> new_esEs19(xwv40000, xwv30000, ehh, faa) 26.56/9.60 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(ty_Either, fcf), fcg)) -> new_esEs19(xwv40000, xwv30000, fcf, fcg) 26.56/9.60 new_ltEs19(xwv541, xwv551, app(app(app(ty_@3, be), bf), bg)) -> new_ltEs15(xwv541, xwv551, be, bf, bg) 26.56/9.60 new_lt6(xwv113, xwv115, app(ty_[], hg)) -> new_lt13(xwv113, xwv115, hg) 26.56/9.60 new_ltEs21(xwv83, xwv84, app(app(ty_@2, cfb), cfc)) -> new_ltEs9(xwv83, xwv84, cfb, cfc) 26.56/9.60 new_esEs5(xwv4000, xwv3000, app(ty_Maybe, fbg)) -> new_esEs16(xwv4000, xwv3000, fbg) 26.56/9.60 new_lt19(xwv540, xwv550, app(ty_Maybe, ce)) -> new_lt10(xwv540, xwv550, ce) 26.56/9.60 new_ltEs14(GT, LT) -> False 26.56/9.60 new_esEs31(xwv40001, xwv30001, app(app(ty_@2, egh), eha)) -> new_esEs21(xwv40001, xwv30001, egh, eha) 26.56/9.60 new_compare7(Left(xwv4000), Left(xwv3000), fh, ga) -> new_compare24(xwv4000, xwv3000, new_esEs10(xwv4000, xwv3000, fh), fh, ga) 26.56/9.60 new_ltEs19(xwv541, xwv551, app(app(ty_Either, bh), ca)) -> new_ltEs5(xwv541, xwv551, bh, ca) 26.56/9.60 new_esEs31(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.56/9.60 new_ltEs12(xwv54, xwv55) -> new_fsEs(new_compare19(xwv54, xwv55)) 26.56/9.60 new_compare0(xwv400, xwv300, app(app(app(ty_@3, fd), ff), fg)) -> new_compare28(xwv400, xwv300, fd, ff, fg) 26.56/9.60 new_ltEs10(Just(xwv540), Just(xwv550), app(app(ty_Either, ed), ee)) -> new_ltEs5(xwv540, xwv550, ed, ee) 26.56/9.60 new_compare8(Integer(xwv4000), Integer(xwv3000)) -> new_primCmpInt(xwv4000, xwv3000) 26.56/9.60 new_primMulInt(Pos(xwv40000), Neg(xwv30010)) -> Neg(new_primMulNat0(xwv40000, xwv30010)) 26.56/9.60 new_primMulInt(Neg(xwv40000), Pos(xwv30010)) -> Neg(new_primMulNat0(xwv40000, xwv30010)) 26.56/9.60 new_ltEs5(Left(xwv540), Left(xwv550), app(ty_[], bga), bfg) -> new_ltEs13(xwv540, xwv550, bga) 26.56/9.60 new_ltEs18(xwv114, xwv116, app(ty_Maybe, bah)) -> new_ltEs10(xwv114, xwv116, bah) 26.56/9.60 new_esEs5(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.56/9.60 new_ltEs23(xwv67, xwv70, ty_Int) -> new_ltEs6(xwv67, xwv70) 26.56/9.60 new_ltEs21(xwv83, xwv84, ty_Integer) -> new_ltEs16(xwv83, xwv84) 26.56/9.60 new_esEs9(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.56/9.60 new_ltEs15(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, bdd) -> new_pePe(new_lt21(xwv540, xwv550, bbg), new_asAs(new_esEs35(xwv540, xwv550, bbg), new_pePe(new_lt20(xwv541, xwv551, bbh), new_asAs(new_esEs34(xwv541, xwv551, bbh), new_ltEs20(xwv542, xwv552, bdd))))) 26.56/9.60 new_ltEs22(xwv76, xwv77, ty_@0) -> new_ltEs4(xwv76, xwv77) 26.56/9.60 new_esEs16(Just(xwv40000), Just(xwv30000), app(app(ty_@2, fch), fda)) -> new_esEs21(xwv40000, xwv30000, fch, fda) 26.56/9.60 new_esEs19(Left(xwv40000), Left(xwv30000), app(app(ty_Either, ffb), ffc), fca) -> new_esEs19(xwv40000, xwv30000, ffb, ffc) 26.56/9.60 new_ltEs5(Right(xwv540), Right(xwv550), bgg, app(ty_Ratio, chh)) -> new_ltEs17(xwv540, xwv550, chh) 26.56/9.60 new_compare19(Float(xwv4000, Neg(xwv40010)), Float(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.56/9.60 new_esEs11(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.56/9.60 new_sr0(Integer(xwv40000), Integer(xwv30010)) -> Integer(new_primMulInt(xwv40000, xwv30010)) 26.56/9.60 new_esEs30(xwv40002, xwv30002, app(app(ty_Either, efd), efe)) -> new_esEs19(xwv40002, xwv30002, efd, efe) 26.56/9.60 new_ltEs24(xwv54, xwv55, app(ty_Maybe, fed)) -> new_ltEs10(xwv54, xwv55, fed) 26.56/9.60 new_esEs8(xwv4001, xwv3001, app(ty_Ratio, ecg)) -> new_esEs23(xwv4001, xwv3001, ecg) 26.56/9.60 new_ltEs24(xwv54, xwv55, app(app(app(ty_@3, bbg), bbh), bdd)) -> new_ltEs15(xwv54, xwv55, bbg, bbh, bdd) 26.56/9.60 new_esEs6(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.56/9.60 new_esEs4(xwv4001, xwv3001, app(ty_Ratio, eea)) -> new_esEs23(xwv4001, xwv3001, eea) 26.56/9.60 new_ltEs23(xwv67, xwv70, app(ty_Ratio, feg)) -> new_ltEs17(xwv67, xwv70, feg) 26.56/9.60 new_ltEs24(xwv54, xwv55, ty_Char) -> new_ltEs7(xwv54, xwv55) 26.56/9.60 new_esEs28(xwv40000, xwv30000, ty_@0) -> new_esEs24(xwv40000, xwv30000) 26.56/9.60 new_esEs28(xwv40000, xwv30000, app(app(app(ty_@3, dcc), dcd), dce)) -> new_esEs25(xwv40000, xwv30000, dcc, dcd, dce) 26.56/9.60 new_esEs5(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.56/9.60 new_esEs18(xwv4000, xwv3000) -> new_primEqInt(xwv4000, xwv3000) 26.56/9.60 new_asAs(True, xwv131) -> xwv131 26.56/9.60 new_compare27(GT, GT) -> EQ 26.56/9.60 new_esEs32(xwv40000, xwv30000, app(app(ty_@2, fab), fac)) -> new_esEs21(xwv40000, xwv30000, fab, fac) 26.56/9.60 new_esEs6(xwv4000, xwv3000, app(ty_Maybe, dhf)) -> new_esEs16(xwv4000, xwv3000, dhf) 26.56/9.60 new_ltEs20(xwv542, xwv552, app(app(ty_@2, bca), bcb)) -> new_ltEs9(xwv542, xwv552, bca, bcb) 26.56/9.60 new_ltEs22(xwv76, xwv77, ty_Ordering) -> new_ltEs14(xwv76, xwv77) 26.56/9.60 new_esEs5(xwv4000, xwv3000, app(app(ty_@2, daa), dab)) -> new_esEs21(xwv4000, xwv3000, daa, dab) 26.56/9.60 new_esEs27(xwv40001, xwv30001, app(ty_Maybe, dac)) -> new_esEs16(xwv40001, xwv30001, dac) 26.56/9.60 new_ltEs22(xwv76, xwv77, ty_Float) -> new_ltEs12(xwv76, xwv77) 26.56/9.60 new_esEs32(xwv40000, xwv30000, ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.56/9.60 new_compare0(xwv400, xwv300, ty_Float) -> new_compare19(xwv400, xwv300) 26.56/9.60 new_ltEs20(xwv542, xwv552, app(app(ty_Either, bch), bda)) -> new_ltEs5(xwv542, xwv552, bch, bda) 26.56/9.60 new_lt21(xwv540, xwv550, app(app(ty_@2, bed), bee)) -> new_lt9(xwv540, xwv550, bed, bee) 26.56/9.60 new_ltEs18(xwv114, xwv116, ty_Char) -> new_ltEs7(xwv114, xwv116) 26.56/9.60 new_ltEs19(xwv541, xwv551, app(app(ty_@2, ba), bb)) -> new_ltEs9(xwv541, xwv551, ba, bb) 26.56/9.60 new_lt20(xwv541, xwv551, ty_Double) -> new_lt5(xwv541, xwv551) 26.56/9.60 new_compare211(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, True, cbd, cac, cad) -> EQ 26.56/9.60 new_ltEs5(Right(xwv540), Right(xwv550), bgg, app(app(ty_Either, bhg), bhh)) -> new_ltEs5(xwv540, xwv550, bhg, bhh) 26.56/9.60 new_esEs16(Just(xwv40000), Just(xwv30000), app(ty_[], fdf)) -> new_esEs12(xwv40000, xwv30000, fdf) 26.56/9.60 new_compare27(EQ, EQ) -> EQ 26.56/9.60 new_lt22(xwv65, xwv68, app(ty_Ratio, fef)) -> new_lt18(xwv65, xwv68, fef) 26.56/9.60 new_ltEs5(Right(xwv540), Right(xwv550), bgg, ty_@0) -> new_ltEs4(xwv540, xwv550) 26.56/9.60 new_sr(xwv4000, xwv3001) -> new_primMulInt(xwv4000, xwv3001) 26.56/9.60 new_compare0(xwv400, xwv300, ty_Integer) -> new_compare8(xwv400, xwv300) 26.56/9.60 new_esEs16(Just(xwv40000), Just(xwv30000), ty_Float) -> new_esEs22(xwv40000, xwv30000) 26.56/9.60 new_primCompAux00(xwv32, xwv33, EQ, ty_Float) -> new_compare19(xwv32, xwv33) 26.56/9.60 new_ltEs5(Right(xwv540), Right(xwv550), bgg, app(ty_Maybe, bhb)) -> new_ltEs10(xwv540, xwv550, bhb) 26.56/9.60 new_primMulNat0(Zero, Zero) -> Zero 26.56/9.60 new_esEs11(xwv4000, xwv3000, app(app(ty_@2, ded), dee)) -> new_esEs21(xwv4000, xwv3000, ded, dee) 26.56/9.60 new_lt19(xwv540, xwv550, ty_Double) -> new_lt5(xwv540, xwv550) 26.56/9.60 new_lt22(xwv65, xwv68, app(app(ty_@2, caa), cab)) -> new_lt9(xwv65, xwv68, caa, cab) 26.56/9.60 new_esEs4(xwv4001, xwv3001, ty_Int) -> new_esEs18(xwv4001, xwv3001) 26.56/9.60 new_compare25(xwv83, xwv84, False, cfa, fcc) -> new_compare112(xwv83, xwv84, new_ltEs21(xwv83, xwv84, fcc), cfa, fcc) 26.56/9.60 new_esEs29(xwv113, xwv115, ty_Integer) -> new_esEs26(xwv113, xwv115) 26.56/9.60 new_ltEs5(Right(xwv540), Right(xwv550), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs15(xwv540, xwv550, bhd, bhe, bhf) 26.56/9.60 new_lt6(xwv113, xwv115, app(ty_Maybe, hf)) -> new_lt10(xwv113, xwv115, hf) 26.56/9.60 new_lt23(xwv66, xwv69, app(ty_Ratio, feh)) -> new_lt18(xwv66, xwv69, feh) 26.56/9.60 new_lt22(xwv65, xwv68, app(ty_Maybe, cae)) -> new_lt10(xwv65, xwv68, cae) 26.56/9.60 new_esEs29(xwv113, xwv115, ty_@0) -> new_esEs24(xwv113, xwv115) 26.56/9.60 new_ltEs21(xwv83, xwv84, ty_Ordering) -> new_ltEs14(xwv83, xwv84) 26.56/9.60 new_esEs39(xwv65, xwv68, app(ty_Ratio, fef)) -> new_esEs23(xwv65, xwv68, fef) 26.56/9.60 new_esEs4(xwv4001, xwv3001, ty_Double) -> new_esEs17(xwv4001, xwv3001) 26.56/9.60 new_esEs33(xwv540, xwv550, app(app(ty_@2, cb), cc)) -> new_esEs21(xwv540, xwv550, cb, cc) 26.56/9.60 new_lt23(xwv66, xwv69, app(ty_Maybe, cch)) -> new_lt10(xwv66, xwv69, cch) 26.56/9.60 new_esEs30(xwv40002, xwv30002, ty_@0) -> new_esEs24(xwv40002, xwv30002) 26.56/9.60 new_esEs30(xwv40002, xwv30002, app(app(app(ty_@3, ega), egb), egc)) -> new_esEs25(xwv40002, xwv30002, ega, egb, egc) 26.56/9.60 new_ltEs24(xwv54, xwv55, app(app(ty_Either, bgg), bfg)) -> new_ltEs5(xwv54, xwv55, bgg, bfg) 26.56/9.60 new_compare7(Right(xwv4000), Left(xwv3000), fh, ga) -> GT 26.56/9.60 new_primCompAux00(xwv32, xwv33, EQ, app(app(app(ty_@3, gf), gg), gh)) -> new_compare28(xwv32, xwv33, gf, gg, gh) 26.56/9.60 new_ltEs23(xwv67, xwv70, app(ty_Maybe, cbg)) -> new_ltEs10(xwv67, xwv70, cbg) 26.56/9.60 new_ltEs20(xwv542, xwv552, ty_Char) -> new_ltEs7(xwv542, xwv552) 26.56/9.60 new_primEqInt(Neg(Succ(xwv400000)), Neg(Zero)) -> False 26.56/9.60 new_primEqInt(Neg(Zero), Neg(Succ(xwv300000))) -> False 26.56/9.60 new_ltEs5(Right(xwv540), Right(xwv550), bgg, ty_Bool) -> new_ltEs8(xwv540, xwv550) 26.56/9.60 new_esEs27(xwv40001, xwv30001, app(ty_[], dbd)) -> new_esEs12(xwv40001, xwv30001, dbd) 26.56/9.60 new_esEs9(xwv4000, xwv3000, app(ty_Ratio, dgc)) -> new_esEs23(xwv4000, xwv3000, dgc) 26.56/9.60 new_esEs25(@3(xwv40000, xwv40001, xwv40002), @3(xwv30000, xwv30001, xwv30002), eeh, efa, efb) -> new_asAs(new_esEs32(xwv40000, xwv30000, eeh), new_asAs(new_esEs31(xwv40001, xwv30001, efa), new_esEs30(xwv40002, xwv30002, efb))) 26.56/9.60 new_esEs33(xwv540, xwv550, app(ty_[], cf)) -> new_esEs12(xwv540, xwv550, cf) 26.56/9.60 new_primEqInt(Pos(Succ(xwv400000)), Pos(Succ(xwv300000))) -> new_primEqNat0(xwv400000, xwv300000) 26.56/9.60 new_ltEs24(xwv54, xwv55, app(ty_Ratio, fbf)) -> new_ltEs17(xwv54, xwv55, fbf) 26.56/9.60 new_ltEs18(xwv114, xwv116, app(ty_Ratio, eeg)) -> new_ltEs17(xwv114, xwv116, eeg) 26.56/9.60 new_esEs5(xwv4000, xwv3000, ty_Double) -> new_esEs17(xwv4000, xwv3000) 26.56/9.60 new_ltEs18(xwv114, xwv116, app(app(ty_@2, baf), bag)) -> new_ltEs9(xwv114, xwv116, baf, bag) 26.56/9.60 new_esEs5(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.56/9.60 new_esEs29(xwv113, xwv115, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs25(xwv113, xwv115, hh, baa, bab) 26.56/9.60 new_lt10(xwv113, xwv115, hf) -> new_esEs15(new_compare18(xwv113, xwv115, hf), LT) 26.56/9.60 new_esEs6(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.56/9.60 new_ltEs18(xwv114, xwv116, app(app(ty_Either, bbe), bbf)) -> new_ltEs5(xwv114, xwv116, bbe, bbf) 26.56/9.60 new_esEs5(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.56/9.60 new_ltEs5(Right(xwv540), Right(xwv550), bgg, ty_Int) -> new_ltEs6(xwv540, xwv550) 26.56/9.60 new_primEqInt(Pos(Succ(xwv400000)), Neg(xwv30000)) -> False 26.56/9.60 new_primEqInt(Neg(Succ(xwv400000)), Pos(xwv30000)) -> False 26.56/9.60 new_primCmpInt(Neg(Zero), Neg(Succ(xwv30000))) -> new_primCmpNat0(Succ(xwv30000), Zero) 26.56/9.60 new_esEs29(xwv113, xwv115, app(app(ty_Either, bac), bad)) -> new_esEs19(xwv113, xwv115, bac, bad) 26.56/9.60 new_esEs31(xwv40001, xwv30001, ty_Float) -> new_esEs22(xwv40001, xwv30001) 26.56/9.60 new_ltEs5(Right(xwv540), Right(xwv550), bgg, ty_Ordering) -> new_ltEs14(xwv540, xwv550) 26.56/9.60 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.56/9.60 new_esEs27(xwv40001, xwv30001, ty_Float) -> new_esEs22(xwv40001, xwv30001) 26.56/9.60 new_primCompAux00(xwv32, xwv33, LT, dhb) -> LT 26.56/9.60 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, app(app(ty_Either, fgd), fge)) -> new_esEs19(xwv40000, xwv30000, fgd, fge) 26.56/9.60 new_ltEs19(xwv541, xwv551, app(ty_Maybe, bc)) -> new_ltEs10(xwv541, xwv551, bc) 26.56/9.60 new_esEs19(Left(xwv40000), Left(xwv30000), app(ty_[], fgb), fca) -> new_esEs12(xwv40000, xwv30000, fgb) 26.56/9.60 new_compare112(xwv157, xwv158, False, feb, fec) -> GT 26.56/9.60 new_esEs7(xwv4002, xwv3002, ty_Bool) -> new_esEs14(xwv4002, xwv3002) 26.56/9.60 new_esEs7(xwv4002, xwv3002, app(ty_Ratio, ebe)) -> new_esEs23(xwv4002, xwv3002, ebe) 26.56/9.60 new_esEs8(xwv4001, xwv3001, ty_Char) -> new_esEs20(xwv4001, xwv3001) 26.56/9.60 new_ltEs22(xwv76, xwv77, app(ty_Ratio, fdh)) -> new_ltEs17(xwv76, xwv77, fdh) 26.56/9.60 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, app(ty_Maybe, fgc)) -> new_esEs16(xwv40000, xwv30000, fgc) 26.56/9.60 new_ltEs10(Just(xwv540), Just(xwv550), ty_Ordering) -> new_ltEs14(xwv540, xwv550) 26.56/9.60 new_ltEs22(xwv76, xwv77, ty_Bool) -> new_ltEs8(xwv76, xwv77) 26.56/9.60 new_esEs35(xwv540, xwv550, ty_Double) -> new_esEs17(xwv540, xwv550) 26.56/9.60 new_not(False) -> True 26.56/9.60 new_esEs28(xwv40000, xwv30000, app(ty_[], dcf)) -> new_esEs12(xwv40000, xwv30000, dcf) 26.56/9.60 new_lt21(xwv540, xwv550, ty_Double) -> new_lt5(xwv540, xwv550) 26.56/9.60 new_ltEs23(xwv67, xwv70, app(app(app(ty_@3, cca), ccb), ccc)) -> new_ltEs15(xwv67, xwv70, cca, ccb, ccc) 26.56/9.60 new_ltEs5(Right(xwv540), Right(xwv550), bgg, ty_Char) -> new_ltEs7(xwv540, xwv550) 26.56/9.60 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, ty_Ordering) -> new_esEs15(xwv40000, xwv30000) 26.56/9.60 new_esEs30(xwv40002, xwv30002, ty_Integer) -> new_esEs26(xwv40002, xwv30002) 26.56/9.60 new_esEs26(Integer(xwv40000), Integer(xwv30000)) -> new_primEqInt(xwv40000, xwv30000) 26.56/9.60 new_ltEs21(xwv83, xwv84, ty_@0) -> new_ltEs4(xwv83, xwv84) 26.56/9.60 new_compare18(Just(xwv4000), Nothing, fc) -> GT 26.56/9.60 new_esEs6(xwv4000, xwv3000, ty_Int) -> new_esEs18(xwv4000, xwv3000) 26.56/9.60 new_ltEs18(xwv114, xwv116, ty_Int) -> new_ltEs6(xwv114, xwv116) 26.56/9.60 new_esEs21(@2(xwv40000, xwv40001), @2(xwv30000, xwv30001), daa, dab) -> new_asAs(new_esEs28(xwv40000, xwv30000, daa), new_esEs27(xwv40001, xwv30001, dab)) 26.56/9.60 new_esEs28(xwv40000, xwv30000, app(app(ty_Either, dbf), dbg)) -> new_esEs19(xwv40000, xwv30000, dbf, dbg) 26.56/9.60 new_esEs9(xwv4000, xwv3000, ty_Bool) -> new_esEs14(xwv4000, xwv3000) 26.56/9.60 new_esEs38(xwv66, xwv69, app(app(ty_@2, ccf), ccg)) -> new_esEs21(xwv66, xwv69, ccf, ccg) 26.56/9.60 new_esEs27(xwv40001, xwv30001, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs25(xwv40001, xwv30001, dba, dbb, dbc) 26.56/9.60 new_ltEs20(xwv542, xwv552, app(ty_Ratio, fbc)) -> new_ltEs17(xwv542, xwv552, fbc) 26.56/9.60 new_esEs5(xwv4000, xwv3000, app(ty_Ratio, fcb)) -> new_esEs23(xwv4000, xwv3000, fcb) 26.56/9.60 new_ltEs10(Just(xwv540), Just(xwv550), ty_Float) -> new_ltEs12(xwv540, xwv550) 26.56/9.60 new_lt23(xwv66, xwv69, ty_Double) -> new_lt5(xwv66, xwv69) 26.56/9.60 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, ty_Char) -> new_esEs20(xwv40000, xwv30000) 26.56/9.60 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.56/9.60 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.56/9.60 new_ltEs24(xwv54, xwv55, ty_Bool) -> new_ltEs8(xwv54, xwv55) 26.56/9.60 new_ltEs14(LT, EQ) -> True 26.56/9.60 new_ltEs23(xwv67, xwv70, ty_@0) -> new_ltEs4(xwv67, xwv70) 26.56/9.60 new_compare27(GT, LT) -> GT 26.56/9.60 new_esEs32(xwv40000, xwv30000, app(ty_[], fah)) -> new_esEs12(xwv40000, xwv30000, fah) 26.56/9.60 new_esEs9(xwv4000, xwv3000, app(ty_Maybe, dff)) -> new_esEs16(xwv4000, xwv3000, dff) 26.56/9.60 new_esEs29(xwv113, xwv115, ty_Float) -> new_esEs22(xwv113, xwv115) 26.56/9.60 new_compare6(@0, @0) -> EQ 26.56/9.60 new_esEs31(xwv40001, xwv30001, app(ty_[], ehf)) -> new_esEs12(xwv40001, xwv30001, ehf) 26.56/9.60 new_ltEs22(xwv76, xwv77, ty_Char) -> new_ltEs7(xwv76, xwv77) 26.56/9.60 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.56/9.60 new_esEs9(xwv4000, xwv3000, ty_Ordering) -> new_esEs15(xwv4000, xwv3000) 26.56/9.60 new_esEs38(xwv66, xwv69, ty_Double) -> new_esEs17(xwv66, xwv69) 26.56/9.60 new_compare19(Float(xwv4000, Pos(xwv40010)), Float(xwv3000, Neg(xwv30010))) -> new_compare15(new_sr(xwv4000, Pos(xwv30010)), new_sr(Neg(xwv40010), xwv3000)) 26.56/9.60 new_compare19(Float(xwv4000, Neg(xwv40010)), Float(xwv3000, Pos(xwv30010))) -> new_compare15(new_sr(xwv4000, Neg(xwv30010)), new_sr(Pos(xwv40010), xwv3000)) 26.56/9.60 new_ltEs21(xwv83, xwv84, app(app(ty_Either, cga), cgb)) -> new_ltEs5(xwv83, xwv84, cga, cgb) 26.56/9.60 new_ltEs21(xwv83, xwv84, app(ty_Maybe, cfd)) -> new_ltEs10(xwv83, xwv84, cfd) 26.56/9.60 new_ltEs22(xwv76, xwv77, app(app(ty_Either, ceg), ceh)) -> new_ltEs5(xwv76, xwv77, ceg, ceh) 26.56/9.60 new_ltEs10(Just(xwv540), Just(xwv550), app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs15(xwv540, xwv550, ea, eb, ec) 26.56/9.60 new_esEs8(xwv4001, xwv3001, ty_Ordering) -> new_esEs15(xwv4001, xwv3001) 26.56/9.60 new_esEs30(xwv40002, xwv30002, app(ty_[], egd)) -> new_esEs12(xwv40002, xwv30002, egd) 26.56/9.60 new_ltEs20(xwv542, xwv552, app(ty_Maybe, bcc)) -> new_ltEs10(xwv542, xwv552, bcc) 26.56/9.60 new_esEs27(xwv40001, xwv30001, app(app(ty_Either, dad), dae)) -> new_esEs19(xwv40001, xwv30001, dad, dae) 26.56/9.60 new_ltEs23(xwv67, xwv70, ty_Char) -> new_ltEs7(xwv67, xwv70) 26.56/9.60 new_esEs13(xwv40000, xwv30000, app(app(ty_@2, cgg), cgh)) -> new_esEs21(xwv40000, xwv30000, cgg, cgh) 26.56/9.60 new_esEs12([], [], cgc) -> True 26.56/9.60 new_esEs28(xwv40000, xwv30000, ty_Integer) -> new_esEs26(xwv40000, xwv30000) 26.56/9.60 new_ltEs10(Just(xwv540), Just(xwv550), ty_Integer) -> new_ltEs16(xwv540, xwv550) 26.56/9.60 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.56/9.60 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.56/9.60 new_ltEs23(xwv67, xwv70, ty_Bool) -> new_ltEs8(xwv67, xwv70) 26.56/9.60 new_primEqNat0(Zero, Zero) -> True 26.56/9.60 new_esEs27(xwv40001, xwv30001, ty_@0) -> new_esEs24(xwv40001, xwv30001) 26.56/9.60 new_esEs27(xwv40001, xwv30001, ty_Integer) -> new_esEs26(xwv40001, xwv30001) 26.56/9.60 new_asAs(False, xwv131) -> False 26.56/9.60 new_compare7(Right(xwv4000), Right(xwv3000), fh, ga) -> new_compare25(xwv4000, xwv3000, new_esEs11(xwv4000, xwv3000, ga), fh, ga) 26.56/9.60 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, ty_Bool) -> new_esEs14(xwv40000, xwv30000) 26.56/9.60 new_lt6(xwv113, xwv115, ty_Double) -> new_lt5(xwv113, xwv115) 26.56/9.60 new_esEs8(xwv4001, xwv3001, ty_Int) -> new_esEs18(xwv4001, xwv3001) 26.56/9.60 new_esEs8(xwv4001, xwv3001, ty_Bool) -> new_esEs14(xwv4001, xwv3001) 26.56/9.60 new_ltEs23(xwv67, xwv70, ty_Ordering) -> new_ltEs14(xwv67, xwv70) 26.56/9.60 new_esEs9(xwv4000, xwv3000, ty_Char) -> new_esEs20(xwv4000, xwv3000) 26.56/9.60 new_esEs6(xwv4000, xwv3000, app(ty_Ratio, eac)) -> new_esEs23(xwv4000, xwv3000, eac) 26.56/9.60 new_ltEs21(xwv83, xwv84, app(ty_Ratio, fcd)) -> new_ltEs17(xwv83, xwv84, fcd) 26.56/9.60 new_esEs19(Left(xwv40000), Left(xwv30000), ty_Double, fca) -> new_esEs17(xwv40000, xwv30000) 26.56/9.60 new_esEs19(Right(xwv40000), Right(xwv30000), fbh, ty_Int) -> new_esEs18(xwv40000, xwv30000) 26.56/9.60 26.56/9.60 The set Q consists of the following terms: 26.56/9.60 26.56/9.60 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_compare25(x0, x1, False, x2, x3) 26.56/9.60 new_esEs30(x0, x1, ty_Integer) 26.56/9.60 new_esEs31(x0, x1, ty_@0) 26.56/9.60 new_lt11(x0, x1) 26.56/9.60 new_ltEs23(x0, x1, app(ty_[], x2)) 26.56/9.60 new_esEs9(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_lt20(x0, x1, ty_Int) 26.56/9.60 new_ltEs21(x0, x1, ty_Int) 26.56/9.60 new_primCmpNat0(Succ(x0), Succ(x1)) 26.56/9.60 new_esEs16(Just(x0), Just(x1), ty_Int) 26.56/9.60 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs19(Left(x0), Left(x1), ty_Float, x2) 26.56/9.60 new_esEs31(x0, x1, ty_Bool) 26.56/9.60 new_pePe(True, x0) 26.56/9.60 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_compare0(x0, x1, ty_Ordering) 26.56/9.60 new_esEs6(x0, x1, ty_Integer) 26.56/9.60 new_sr(x0, x1) 26.56/9.60 new_esEs13(x0, x1, ty_Integer) 26.56/9.60 new_esEs39(x0, x1, ty_Int) 26.56/9.60 new_esEs7(x0, x1, ty_Int) 26.56/9.60 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.56/9.60 new_primEqInt(Pos(Zero), Pos(Zero)) 26.56/9.60 new_compare0(x0, x1, ty_Char) 26.56/9.60 new_lt15(x0, x1, x2, x3, x4) 26.56/9.60 new_compare7(Left(x0), Right(x1), x2, x3) 26.56/9.60 new_compare7(Right(x0), Left(x1), x2, x3) 26.56/9.60 new_esEs6(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_ltEs22(x0, x1, ty_@0) 26.56/9.60 new_primPlusNat0(Zero, Succ(x0)) 26.56/9.60 new_esEs10(x0, x1, ty_Integer) 26.56/9.60 new_esEs14(True, True) 26.56/9.60 new_esEs12(:(x0, x1), :(x2, x3), x4) 26.56/9.60 new_lt10(x0, x1, x2) 26.56/9.60 new_primEqInt(Neg(Zero), Neg(Zero)) 26.56/9.60 new_compare0(x0, x1, ty_Double) 26.56/9.60 new_esEs19(Left(x0), Right(x1), x2, x3) 26.56/9.60 new_esEs19(Right(x0), Left(x1), x2, x3) 26.56/9.60 new_esEs38(x0, x1, ty_Bool) 26.56/9.60 new_compare6(@0, @0) 26.56/9.60 new_lt23(x0, x1, ty_Int) 26.56/9.60 new_lt22(x0, x1, ty_Double) 26.56/9.60 new_primMulInt(Pos(x0), Neg(x1)) 26.56/9.60 new_primMulInt(Neg(x0), Pos(x1)) 26.56/9.60 new_ltEs19(x0, x1, ty_Integer) 26.56/9.60 new_esEs6(x0, x1, ty_@0) 26.56/9.60 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_primMulInt(Neg(x0), Neg(x1)) 26.56/9.60 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_ltEs22(x0, x1, ty_Int) 26.56/9.60 new_esEs11(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs4(x0, x1, ty_Int) 26.56/9.60 new_esEs16(Nothing, Nothing, x0) 26.56/9.60 new_esEs10(x0, x1, ty_@0) 26.56/9.60 new_esEs30(x0, x1, ty_@0) 26.56/9.60 new_ltEs10(Just(x0), Nothing, x1) 26.56/9.60 new_esEs33(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs8(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs6(x0, x1, ty_Float) 26.56/9.60 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.56/9.60 new_esEs30(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.56/9.60 new_esEs31(x0, x1, ty_Integer) 26.56/9.60 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) 26.56/9.60 new_esEs13(x0, x1, ty_Bool) 26.56/9.60 new_lt22(x0, x1, ty_Ordering) 26.56/9.60 new_esEs30(x0, x1, ty_Bool) 26.56/9.60 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs30(x0, x1, ty_Float) 26.56/9.60 new_ltEs4(x0, x1) 26.56/9.60 new_esEs35(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs12([], [], x0) 26.56/9.60 new_esEs38(x0, x1, ty_Integer) 26.56/9.60 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_primEqInt(Pos(Zero), Neg(Zero)) 26.56/9.60 new_primEqInt(Neg(Zero), Pos(Zero)) 26.56/9.60 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_lt18(x0, x1, x2) 26.56/9.60 new_esEs13(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_lt6(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_ltEs18(x0, x1, ty_Double) 26.56/9.60 new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) 26.56/9.60 new_esEs39(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs32(x0, x1, ty_Integer) 26.56/9.60 new_ltEs18(x0, x1, ty_Char) 26.56/9.60 new_primEqNat0(Succ(x0), Succ(x1)) 26.56/9.60 new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.56/9.60 new_esEs10(x0, x1, ty_Bool) 26.56/9.60 new_compare0(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs11(x0, x1, ty_Ordering) 26.56/9.60 new_ltEs22(x0, x1, ty_Bool) 26.56/9.60 new_compare7(Right(x0), Right(x1), x2, x3) 26.56/9.60 new_compare17(@2(x0, x1), @2(x2, x3), x4, x5) 26.56/9.60 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_ltEs21(x0, x1, ty_Integer) 26.56/9.60 new_esEs11(x0, x1, ty_Char) 26.56/9.60 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_compare15(x0, x1) 26.56/9.60 new_primMulNat0(Zero, Succ(x0)) 26.56/9.60 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs19(Left(x0), Left(x1), ty_Bool, x2) 26.56/9.60 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_lt20(x0, x1, ty_Integer) 26.56/9.60 new_ltEs23(x0, x1, ty_Int) 26.56/9.60 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.56/9.60 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.56/9.60 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs5(x0, x1, ty_Int) 26.56/9.60 new_compare24(x0, x1, False, x2, x3) 26.56/9.60 new_esEs7(x0, x1, ty_@0) 26.56/9.60 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_compare29(:%(x0, x1), :%(x2, x3), ty_Integer) 26.56/9.60 new_ltEs10(Just(x0), Just(x1), ty_Double) 26.56/9.60 new_esEs10(x0, x1, ty_Int) 26.56/9.60 new_compare212(x0, x1, x2, x3, True, x4, x5) 26.56/9.60 new_lt21(x0, x1, ty_Bool) 26.56/9.60 new_lt19(x0, x1, ty_Float) 26.56/9.60 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs27(x0, x1, ty_Bool) 26.56/9.60 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_compare28(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.56/9.60 new_ltEs10(Nothing, Nothing, x0) 26.56/9.60 new_esEs27(x0, x1, ty_Integer) 26.56/9.60 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.56/9.60 new_lt21(x0, x1, app(ty_[], x2)) 26.56/9.60 new_lt9(x0, x1, x2, x3) 26.56/9.60 new_esEs33(x0, x1, ty_Float) 26.56/9.60 new_lt6(x0, x1, ty_Char) 26.56/9.60 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.56/9.60 new_esEs28(x0, x1, ty_@0) 26.56/9.60 new_compare26(:(x0, x1), [], x2) 26.56/9.60 new_esEs4(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs6(x0, x1, ty_Int) 26.56/9.60 new_ltEs22(x0, x1, ty_Integer) 26.56/9.60 new_esEs39(x0, x1, ty_Integer) 26.56/9.60 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs4(x0, x1, ty_@0) 26.56/9.60 new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 26.56/9.60 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs10(x0, x1, ty_Float) 26.56/9.60 new_esEs10(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_ltEs19(x0, x1, ty_Bool) 26.56/9.60 new_lt19(x0, x1, ty_Char) 26.56/9.60 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs32(x0, x1, ty_Bool) 26.56/9.60 new_ltEs5(Left(x0), Left(x1), ty_Double, x2) 26.56/9.60 new_esEs19(Right(x0), Right(x1), x2, ty_Double) 26.56/9.60 new_lt6(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs13(x0, x1, ty_@0) 26.56/9.60 new_compare7(Left(x0), Left(x1), x2, x3) 26.56/9.60 new_esEs32(x0, x1, ty_Float) 26.56/9.60 new_esEs8(x0, x1, ty_Int) 26.56/9.60 new_esEs39(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_ltEs21(x0, x1, ty_Float) 26.56/9.60 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs6(x0, x1, ty_Bool) 26.56/9.60 new_esEs11(x0, x1, ty_Float) 26.56/9.60 new_ltEs19(x0, x1, ty_Int) 26.56/9.60 new_esEs36(x0, x1, ty_Integer) 26.56/9.60 new_esEs8(x0, x1, ty_Bool) 26.56/9.60 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_compare27(LT, GT) 26.56/9.60 new_compare27(GT, LT) 26.56/9.60 new_ltEs21(x0, x1, ty_Bool) 26.56/9.60 new_esEs24(@0, @0) 26.56/9.60 new_ltEs8(True, False) 26.56/9.60 new_ltEs8(False, True) 26.56/9.60 new_lt23(x0, x1, ty_Integer) 26.56/9.60 new_lt20(x0, x1, ty_@0) 26.56/9.60 new_esEs16(Nothing, Just(x0), x1) 26.56/9.60 new_lt23(x0, x1, ty_Bool) 26.56/9.60 new_esEs13(x0, x1, app(ty_[], x2)) 26.56/9.60 new_primCompAux00(x0, x1, EQ, ty_Int) 26.56/9.60 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs19(Left(x0), Left(x1), ty_Integer, x2) 26.56/9.60 new_esEs32(x0, x1, ty_Int) 26.56/9.60 new_esEs16(Just(x0), Just(x1), ty_@0) 26.56/9.60 new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.56/9.60 new_esEs29(x0, x1, ty_Double) 26.56/9.60 new_compare110(x0, x1, x2, x3, False, x4, x5, x6) 26.56/9.60 new_ltEs23(x0, x1, ty_Bool) 26.56/9.60 new_esEs27(x0, x1, ty_Int) 26.56/9.60 new_esEs38(x0, x1, ty_@0) 26.56/9.60 new_compare27(EQ, GT) 26.56/9.60 new_compare27(GT, EQ) 26.56/9.60 new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.56/9.60 new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.56/9.60 new_compare18(Just(x0), Nothing, x1) 26.56/9.60 new_compare8(Integer(x0), Integer(x1)) 26.56/9.60 new_ltEs19(x0, x1, ty_Float) 26.56/9.60 new_esEs39(x0, x1, ty_Bool) 26.56/9.60 new_lt21(x0, x1, ty_Int) 26.56/9.60 new_compare11(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 26.56/9.60 new_primMulInt(Pos(x0), Pos(x1)) 26.56/9.60 new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) 26.56/9.60 new_esEs35(x0, x1, app(ty_[], x2)) 26.56/9.60 new_lt7(x0, x1) 26.56/9.60 new_esEs6(x0, x1, app(ty_[], x2)) 26.56/9.60 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs12([], :(x0, x1), x2) 26.56/9.60 new_lt8(x0, x1) 26.56/9.60 new_esEs34(x0, x1, ty_Bool) 26.56/9.60 new_lt12(x0, x1) 26.56/9.60 new_esEs18(x0, x1) 26.56/9.60 new_compare112(x0, x1, False, x2, x3) 26.56/9.60 new_ltEs5(Right(x0), Right(x1), x2, ty_Int) 26.56/9.60 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_ltEs19(x0, x1, ty_Double) 26.56/9.60 new_esEs33(x0, x1, ty_@0) 26.56/9.60 new_lt22(x0, x1, ty_Integer) 26.56/9.60 new_esEs19(Left(x0), Left(x1), ty_Double, x2) 26.56/9.60 new_esEs9(x0, x1, ty_Integer) 26.56/9.60 new_esEs27(x0, x1, ty_Float) 26.56/9.60 new_esEs15(EQ, EQ) 26.56/9.60 new_ltEs5(Right(x0), Right(x1), x2, ty_Char) 26.56/9.60 new_esEs34(x0, x1, ty_@0) 26.56/9.60 new_esEs34(x0, x1, app(ty_[], x2)) 26.56/9.60 new_lt23(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs9(x0, x1, ty_Bool) 26.56/9.60 new_esEs17(Double(x0, x1), Double(x2, x3)) 26.56/9.60 new_esEs34(x0, x1, ty_Integer) 26.56/9.60 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs35(x0, x1, ty_@0) 26.56/9.60 new_ltEs24(x0, x1, app(ty_[], x2)) 26.56/9.60 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) 26.56/9.60 new_esEs9(x0, x1, ty_@0) 26.56/9.60 new_ltEs20(x0, x1, ty_Integer) 26.56/9.60 new_esEs35(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.56/9.60 new_primEqNat0(Zero, Succ(x0)) 26.56/9.60 new_esEs39(x0, x1, ty_Float) 26.56/9.60 new_esEs7(x0, x1, app(ty_[], x2)) 26.56/9.60 new_primPlusNat0(Zero, Zero) 26.56/9.60 new_not(True) 26.56/9.60 new_ltEs22(x0, x1, app(ty_[], x2)) 26.56/9.60 new_lt6(x0, x1, app(ty_[], x2)) 26.56/9.60 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs13(x0, x1, ty_Double) 26.56/9.60 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_compare26([], :(x0, x1), x2) 26.56/9.60 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.56/9.60 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs19(Left(x0), Left(x1), ty_Char, x2) 26.56/9.60 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_ltEs24(x0, x1, ty_Ordering) 26.56/9.60 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.56/9.60 new_lt13(x0, x1, x2) 26.56/9.60 new_lt22(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs33(x0, x1, ty_Int) 26.56/9.60 new_lt22(x0, x1, ty_Bool) 26.56/9.60 new_esEs16(Just(x0), Nothing, x1) 26.56/9.60 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_lt21(x0, x1, ty_Integer) 26.56/9.60 new_esEs28(x0, x1, ty_Float) 26.56/9.60 new_ltEs20(x0, x1, ty_Char) 26.56/9.60 new_esEs9(x0, x1, ty_Float) 26.56/9.60 new_ltEs19(x0, x1, ty_Ordering) 26.56/9.60 new_lt23(x0, x1, ty_Float) 26.56/9.60 new_lt19(x0, x1, ty_Ordering) 26.56/9.60 new_esEs33(x0, x1, ty_Bool) 26.56/9.60 new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.56/9.60 new_esEs33(x0, x1, ty_Char) 26.56/9.60 new_esEs19(Left(x0), Left(x1), ty_Int, x2) 26.56/9.60 new_ltEs20(x0, x1, ty_Bool) 26.56/9.60 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_compare29(:%(x0, x1), :%(x2, x3), ty_Int) 26.56/9.60 new_esEs16(Just(x0), Just(x1), app(ty_[], x2)) 26.56/9.60 new_primCmpNat0(Zero, Succ(x0)) 26.56/9.60 new_esEs30(x0, x1, ty_Int) 26.56/9.60 new_esEs16(Just(x0), Just(x1), ty_Integer) 26.56/9.60 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs33(x0, x1, app(ty_[], x2)) 26.56/9.60 new_lt16(x0, x1, x2, x3) 26.56/9.60 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_primCompAux00(x0, x1, EQ, ty_Double) 26.56/9.60 new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.56/9.60 new_esEs9(x0, x1, ty_Int) 26.56/9.60 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_lt21(x0, x1, ty_@0) 26.56/9.60 new_lt6(x0, x1, ty_Ordering) 26.56/9.60 new_compare27(LT, LT) 26.56/9.60 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_lt19(x0, x1, ty_Double) 26.56/9.60 new_ltEs20(x0, x1, ty_Int) 26.56/9.60 new_ltEs14(GT, GT) 26.56/9.60 new_esEs26(Integer(x0), Integer(x1)) 26.56/9.60 new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) 26.56/9.60 new_esEs13(x0, x1, ty_Char) 26.56/9.60 new_compare0(x0, x1, app(ty_[], x2)) 26.56/9.60 new_ltEs19(x0, x1, app(ty_[], x2)) 26.56/9.60 new_esEs22(Float(x0, x1), Float(x2, x3)) 26.56/9.60 new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.56/9.60 new_compare9(False, False) 26.56/9.60 new_lt6(x0, x1, ty_Double) 26.56/9.60 new_esEs34(x0, x1, ty_Int) 26.56/9.60 new_lt21(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_compare18(Just(x0), Just(x1), x2) 26.56/9.60 new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.56/9.60 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.56/9.60 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.56/9.60 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs28(x0, x1, ty_Char) 26.56/9.60 new_compare210(x0, x1, False, x2) 26.56/9.60 new_lt20(x0, x1, ty_Bool) 26.56/9.60 new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) 26.56/9.60 new_esEs9(x0, x1, ty_Char) 26.56/9.60 new_ltEs12(x0, x1) 26.56/9.60 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_ltEs20(x0, x1, ty_Float) 26.56/9.60 new_lt22(x0, x1, ty_Int) 26.56/9.60 new_esEs29(x0, x1, ty_Bool) 26.56/9.60 new_compare0(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.56/9.60 new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) 26.56/9.60 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.56/9.60 new_esEs13(x0, x1, ty_Int) 26.56/9.60 new_esEs34(x0, x1, ty_Float) 26.56/9.60 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs28(x0, x1, ty_Int) 26.56/9.60 new_lt22(x0, x1, ty_Char) 26.56/9.60 new_ltEs10(Just(x0), Just(x1), ty_Ordering) 26.56/9.60 new_primMulNat0(Succ(x0), Succ(x1)) 26.56/9.60 new_esEs39(x0, x1, app(ty_[], x2)) 26.56/9.60 new_esEs16(Just(x0), Just(x1), ty_Bool) 26.56/9.60 new_primEqNat0(Zero, Zero) 26.56/9.60 new_esEs11(x0, x1, app(ty_[], x2)) 26.56/9.60 new_lt22(x0, x1, ty_Float) 26.56/9.60 new_esEs29(x0, x1, ty_Int) 26.56/9.60 new_lt23(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs33(x0, x1, ty_Integer) 26.56/9.60 new_not(False) 26.56/9.60 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs5(x0, x1, ty_Double) 26.56/9.60 new_esEs28(x0, x1, ty_Integer) 26.56/9.60 new_compare26(:(x0, x1), :(x2, x3), x4) 26.56/9.60 new_compare27(EQ, EQ) 26.56/9.60 new_esEs13(x0, x1, ty_Float) 26.56/9.60 new_ltEs18(x0, x1, ty_Ordering) 26.56/9.60 new_esEs4(x0, x1, app(ty_[], x2)) 26.56/9.60 new_esEs27(x0, x1, app(ty_[], x2)) 26.56/9.60 new_esEs11(x0, x1, ty_Double) 26.56/9.60 new_ltEs8(True, True) 26.56/9.60 new_lt21(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs28(x0, x1, ty_Bool) 26.56/9.60 new_esEs5(x0, x1, app(ty_[], x2)) 26.56/9.60 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs32(x0, x1, ty_Double) 26.56/9.60 new_ltEs5(Right(x0), Right(x1), x2, ty_Float) 26.56/9.60 new_esEs29(x0, x1, ty_Float) 26.56/9.60 new_esEs34(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs39(x0, x1, ty_Double) 26.56/9.60 new_lt20(x0, x1, ty_Float) 26.56/9.60 new_esEs5(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_ltEs18(x0, x1, app(ty_[], x2)) 26.56/9.60 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 26.56/9.60 new_esEs29(x0, x1, ty_Char) 26.56/9.60 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.56/9.60 new_primPlusNat0(Succ(x0), Succ(x1)) 26.56/9.60 new_esEs4(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs27(x0, x1, ty_Double) 26.56/9.60 new_ltEs21(x0, x1, ty_Double) 26.56/9.60 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.56/9.60 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.56/9.60 new_primCompAux1(x0, x1, x2, x3, x4) 26.56/9.60 new_esEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.56/9.60 new_esEs34(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_ltEs14(EQ, LT) 26.56/9.60 new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.56/9.60 new_esEs16(Just(x0), Just(x1), ty_Float) 26.56/9.60 new_ltEs14(LT, EQ) 26.56/9.60 new_fsEs(x0) 26.56/9.60 new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.56/9.60 new_ltEs23(x0, x1, ty_Double) 26.56/9.60 new_esEs34(x0, x1, ty_Char) 26.56/9.60 new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 26.56/9.60 new_esEs8(x0, x1, ty_Double) 26.56/9.60 new_compare16(Char(x0), Char(x1)) 26.56/9.60 new_ltEs10(Just(x0), Just(x1), ty_Bool) 26.56/9.60 new_esEs7(x0, x1, ty_Double) 26.56/9.60 new_esEs27(x0, x1, ty_Ordering) 26.56/9.60 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs16(Just(x0), Just(x1), ty_Ordering) 26.56/9.60 new_compare11(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 26.56/9.60 new_compare0(x0, x1, ty_Int) 26.56/9.60 new_esEs39(x0, x1, ty_Ordering) 26.56/9.60 new_esEs32(x0, x1, ty_Char) 26.56/9.60 new_lt6(x0, x1, ty_Bool) 26.56/9.60 new_esEs4(x0, x1, ty_Double) 26.56/9.60 new_lt20(x0, x1, ty_Ordering) 26.56/9.60 new_esEs38(x0, x1, ty_Char) 26.56/9.60 new_compare212(x0, x1, x2, x3, False, x4, x5) 26.56/9.60 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs7(x0, x1, ty_Ordering) 26.56/9.60 new_ltEs10(Nothing, Just(x0), x1) 26.56/9.60 new_lt6(x0, x1, ty_Integer) 26.56/9.60 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_lt20(x0, x1, ty_Double) 26.56/9.60 new_lt6(x0, x1, ty_@0) 26.56/9.60 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_ltEs10(Just(x0), Just(x1), ty_Integer) 26.56/9.60 new_esEs16(Just(x0), Just(x1), ty_Char) 26.56/9.60 new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 26.56/9.60 new_esEs4(x0, x1, ty_Ordering) 26.56/9.60 new_lt17(x0, x1) 26.56/9.60 new_lt5(x0, x1) 26.56/9.60 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs16(Just(x0), Just(x1), ty_Double) 26.56/9.60 new_lt23(x0, x1, ty_Ordering) 26.56/9.60 new_lt23(x0, x1, ty_Double) 26.56/9.60 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs28(x0, x1, ty_Double) 26.56/9.60 new_ltEs14(LT, LT) 26.56/9.60 new_esEs28(x0, x1, ty_Ordering) 26.56/9.60 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_ltEs10(Just(x0), Just(x1), ty_@0) 26.56/9.60 new_esEs7(x0, x1, ty_Char) 26.56/9.60 new_compare111(x0, x1, x2, x3, True, x4, x5) 26.56/9.60 new_lt20(x0, x1, ty_Char) 26.56/9.60 new_primMulNat0(Succ(x0), Zero) 26.56/9.60 new_compare18(Nothing, Just(x0), x1) 26.56/9.60 new_esEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.56/9.60 new_esEs15(EQ, GT) 26.56/9.60 new_esEs15(GT, EQ) 26.56/9.60 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs28(x0, x1, app(ty_[], x2)) 26.56/9.60 new_asAs(False, x0) 26.56/9.60 new_lt22(x0, x1, app(ty_[], x2)) 26.56/9.60 new_esEs15(LT, LT) 26.56/9.60 new_esEs38(x0, x1, ty_Ordering) 26.56/9.60 new_esEs31(x0, x1, ty_Char) 26.56/9.60 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs13(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_ltEs17(x0, x1, x2) 26.56/9.60 new_ltEs8(False, False) 26.56/9.60 new_esEs14(False, True) 26.56/9.60 new_esEs14(True, False) 26.56/9.60 new_esEs4(x0, x1, ty_Char) 26.56/9.60 new_compare0(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs29(x0, x1, ty_Integer) 26.56/9.60 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs8(x0, x1, ty_Ordering) 26.56/9.60 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_ltEs18(x0, x1, ty_Int) 26.56/9.60 new_esEs9(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_ltEs22(x0, x1, ty_Char) 26.56/9.60 new_ltEs21(x0, x1, ty_Ordering) 26.56/9.60 new_ltEs23(x0, x1, ty_Ordering) 26.56/9.60 new_lt20(x0, x1, app(ty_[], x2)) 26.56/9.60 new_ltEs22(x0, x1, ty_Double) 26.56/9.60 new_esEs35(x0, x1, ty_Float) 26.56/9.60 new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 26.56/9.60 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.56/9.60 new_esEs5(x0, x1, ty_Ordering) 26.56/9.60 new_lt21(x0, x1, ty_Ordering) 26.56/9.60 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs30(x0, x1, ty_Char) 26.56/9.60 new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.56/9.60 new_esEs31(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_compare112(x0, x1, True, x2, x3) 26.56/9.60 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs32(x0, x1, ty_Ordering) 26.56/9.60 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.56/9.60 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.56/9.60 new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.56/9.60 new_esEs5(x0, x1, ty_Char) 26.56/9.60 new_compare13(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.56/9.60 new_esEs31(x0, x1, ty_Double) 26.56/9.60 new_compare13(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.56/9.60 new_primCompAux00(x0, x1, EQ, ty_Float) 26.56/9.60 new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.56/9.60 new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.56/9.60 new_primCompAux00(x0, x1, EQ, ty_Ordering) 26.56/9.60 new_esEs6(x0, x1, ty_Char) 26.56/9.60 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.56/9.60 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs10(x0, x1, ty_Char) 26.56/9.60 new_lt23(x0, x1, app(ty_[], x2)) 26.56/9.60 new_esEs15(LT, GT) 26.56/9.60 new_esEs15(GT, LT) 26.56/9.60 new_lt6(x0, x1, ty_Float) 26.56/9.60 new_ltEs20(x0, x1, ty_Double) 26.56/9.60 new_compare0(x0, x1, ty_@0) 26.56/9.60 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs32(x0, x1, app(ty_[], x2)) 26.56/9.60 new_esEs30(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs29(x0, x1, app(ty_[], x2)) 26.56/9.60 new_compare10(x0, x1, True, x2) 26.56/9.60 new_ltEs14(LT, GT) 26.56/9.60 new_ltEs14(GT, LT) 26.56/9.60 new_esEs9(x0, x1, ty_Double) 26.56/9.60 new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) 26.56/9.60 new_esEs8(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs38(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.56/9.60 new_esEs6(x0, x1, ty_Ordering) 26.56/9.60 new_ltEs23(x0, x1, ty_Float) 26.56/9.60 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs13(x0, x1, ty_Ordering) 26.56/9.60 new_pePe(False, x0) 26.56/9.60 new_ltEs20(x0, x1, ty_Ordering) 26.56/9.60 new_primPlusNat1(Succ(x0), x1) 26.56/9.60 new_esEs31(x0, x1, ty_Ordering) 26.56/9.60 new_ltEs24(x0, x1, ty_Double) 26.56/9.60 new_lt23(x0, x1, ty_Char) 26.56/9.60 new_ltEs22(x0, x1, ty_Ordering) 26.56/9.60 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.56/9.60 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 26.56/9.60 new_lt6(x0, x1, ty_Int) 26.56/9.60 new_lt22(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_sr0(Integer(x0), Integer(x1)) 26.56/9.60 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.56/9.60 new_ltEs14(EQ, GT) 26.56/9.60 new_ltEs14(GT, EQ) 26.56/9.60 new_ltEs5(Left(x0), Left(x1), ty_@0, x2) 26.56/9.60 new_esEs19(Right(x0), Right(x1), x2, ty_@0) 26.56/9.60 new_lt22(x0, x1, ty_@0) 26.56/9.60 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_lt21(x0, x1, ty_Char) 26.56/9.60 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.56/9.60 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.56/9.60 new_esEs6(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs11(x0, x1, ty_Bool) 26.56/9.60 new_esEs8(x0, x1, ty_Float) 26.56/9.60 new_esEs35(x0, x1, ty_Integer) 26.56/9.60 new_esEs8(x0, x1, app(ty_[], x2)) 26.56/9.60 new_esEs38(x0, x1, ty_Double) 26.56/9.60 new_esEs35(x0, x1, ty_Ordering) 26.56/9.60 new_ltEs19(x0, x1, ty_Char) 26.56/9.60 new_esEs25(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.56/9.60 new_esEs32(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs35(x0, x1, ty_Bool) 26.56/9.60 new_ltEs5(Right(x0), Right(x1), x2, ty_Double) 26.56/9.60 new_esEs30(x0, x1, app(ty_[], x2)) 26.56/9.60 new_ltEs6(x0, x1) 26.56/9.60 new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.56/9.60 new_esEs39(x0, x1, ty_Char) 26.56/9.60 new_ltEs24(x0, x1, ty_@0) 26.56/9.60 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.56/9.60 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs34(x0, x1, ty_Double) 26.56/9.60 new_esEs11(x0, x1, ty_Int) 26.56/9.60 new_primCmpNat0(Succ(x0), Zero) 26.56/9.60 new_lt19(x0, x1, ty_Int) 26.56/9.60 new_esEs5(x0, x1, ty_Float) 26.56/9.60 new_primCompAux00(x0, x1, EQ, ty_Char) 26.56/9.60 new_ltEs5(Right(x0), Right(x1), x2, ty_@0) 26.56/9.60 new_esEs29(x0, x1, ty_@0) 26.56/9.60 new_esEs27(x0, x1, ty_Char) 26.56/9.60 new_ltEs21(x0, x1, ty_Char) 26.56/9.60 new_primPlusNat0(Succ(x0), Zero) 26.56/9.60 new_primEqNat0(Succ(x0), Zero) 26.56/9.60 new_ltEs21(x0, x1, app(ty_[], x2)) 26.56/9.60 new_ltEs23(x0, x1, ty_Char) 26.56/9.60 new_esEs8(x0, x1, ty_Char) 26.56/9.60 new_compare210(x0, x1, True, x2) 26.56/9.60 new_lt19(x0, x1, ty_@0) 26.56/9.60 new_esEs32(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs7(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs7(x0, x1, ty_Float) 26.56/9.60 new_esEs9(x0, x1, app(ty_[], x2)) 26.56/9.60 new_ltEs23(x0, x1, ty_Integer) 26.56/9.60 new_esEs37(x0, x1, ty_Int) 26.56/9.60 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_compare9(False, True) 26.56/9.60 new_compare9(True, False) 26.56/9.60 new_lt21(x0, x1, ty_Float) 26.56/9.60 new_primMulNat0(Zero, Zero) 26.56/9.60 new_primCompAux00(x0, x1, EQ, ty_@0) 26.56/9.60 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs11(x0, x1, ty_Integer) 26.56/9.60 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_ltEs14(EQ, EQ) 26.56/9.60 new_primCompAux00(x0, x1, EQ, ty_Bool) 26.56/9.60 new_lt19(x0, x1, ty_Bool) 26.56/9.60 new_compare24(x0, x1, True, x2, x3) 26.56/9.60 new_compare0(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.56/9.60 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.56/9.60 new_compare26([], [], x0) 26.56/9.60 new_ltEs20(x0, x1, ty_@0) 26.56/9.60 new_esEs35(x0, x1, ty_Char) 26.56/9.60 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs5(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) 26.56/9.60 new_esEs4(x0, x1, ty_Float) 26.56/9.60 new_esEs12(:(x0, x1), [], x2) 26.56/9.60 new_ltEs24(x0, x1, ty_Char) 26.56/9.60 new_esEs8(x0, x1, ty_Integer) 26.56/9.60 new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) 26.56/9.60 new_esEs5(x0, x1, ty_Bool) 26.56/9.60 new_esEs7(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_lt14(x0, x1) 26.56/9.60 new_ltEs18(x0, x1, ty_Float) 26.56/9.60 new_ltEs18(x0, x1, ty_Integer) 26.56/9.60 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.56/9.60 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs4(x0, x1, ty_Integer) 26.56/9.60 new_compare14(x0, x1, False, x2, x3) 26.56/9.60 new_esEs35(x0, x1, ty_Int) 26.56/9.60 new_ltEs5(Left(x0), Left(x1), ty_Float, x2) 26.56/9.60 new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.56/9.60 new_ltEs20(x0, x1, app(ty_[], x2)) 26.56/9.60 new_esEs10(x0, x1, ty_Double) 26.56/9.60 new_ltEs24(x0, x1, ty_Bool) 26.56/9.60 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_lt19(x0, x1, ty_Integer) 26.56/9.60 new_primCompAux00(x0, x1, EQ, ty_Integer) 26.56/9.60 new_primCompAux00(x0, x1, LT, x2) 26.56/9.60 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_ltEs24(x0, x1, ty_Integer) 26.56/9.60 new_esEs7(x0, x1, ty_Integer) 26.56/9.60 new_ltEs7(x0, x1) 26.56/9.60 new_ltEs5(Left(x0), Right(x1), x2, x3) 26.56/9.60 new_ltEs5(Right(x0), Left(x1), x2, x3) 26.56/9.60 new_primPlusNat1(Zero, x0) 26.56/9.60 new_esEs30(x0, x1, ty_Double) 26.56/9.60 new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.56/9.60 new_esEs38(x0, x1, app(ty_[], x2)) 26.56/9.60 new_ltEs18(x0, x1, ty_Bool) 26.56/9.60 new_compare0(x0, x1, ty_Float) 26.56/9.60 new_esEs33(x0, x1, ty_Double) 26.56/9.60 new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.56/9.60 new_esEs36(x0, x1, ty_Int) 26.56/9.60 new_esEs19(Left(x0), Left(x1), ty_@0, x2) 26.56/9.60 new_esEs4(x0, x1, ty_Bool) 26.56/9.60 new_esEs11(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs29(x0, x1, ty_Ordering) 26.56/9.60 new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 26.56/9.60 new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) 26.56/9.60 new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.56/9.60 new_esEs5(x0, x1, ty_Integer) 26.56/9.60 new_ltEs16(x0, x1) 26.56/9.60 new_compare13(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.56/9.60 new_compare13(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.56/9.60 new_esEs7(x0, x1, ty_Bool) 26.56/9.60 new_esEs38(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_ltEs10(Just(x0), Just(x1), ty_Float) 26.56/9.60 new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.56/9.60 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_ltEs19(x0, x1, ty_@0) 26.56/9.60 new_esEs37(x0, x1, ty_Integer) 26.56/9.60 new_compare25(x0, x1, True, x2, x3) 26.56/9.60 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.56/9.60 new_compare0(x0, x1, ty_Bool) 26.56/9.60 new_compare9(True, True) 26.56/9.60 new_lt23(x0, x1, ty_@0) 26.56/9.60 new_esEs19(Right(x0), Right(x1), x2, ty_Integer) 26.56/9.60 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs27(x0, x1, ty_@0) 26.56/9.60 new_esEs31(x0, x1, ty_Float) 26.56/9.60 new_compare18(Nothing, Nothing, x0) 26.56/9.60 new_esEs34(x0, x1, ty_Ordering) 26.56/9.60 new_ltEs5(Left(x0), Left(x1), ty_Char, x2) 26.56/9.60 new_compare110(x0, x1, x2, x3, True, x4, x5, x6) 26.56/9.60 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs35(x0, x1, ty_Double) 26.56/9.60 new_ltEs18(x0, x1, ty_@0) 26.56/9.60 new_ltEs10(Just(x0), Just(x1), ty_Int) 26.56/9.60 new_esEs33(x0, x1, ty_Ordering) 26.56/9.60 new_esEs39(x0, x1, ty_@0) 26.56/9.60 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs15(GT, GT) 26.56/9.60 new_ltEs5(Left(x0), Left(x1), ty_Int, x2) 26.56/9.60 new_esEs31(x0, x1, app(ty_Maybe, x2)) 26.56/9.60 new_ltEs22(x0, x1, ty_Float) 26.56/9.60 new_esEs9(x0, x1, ty_Ordering) 26.56/9.60 new_esEs15(LT, EQ) 26.56/9.60 new_esEs15(EQ, LT) 26.56/9.60 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs31(x0, x1, app(ty_[], x2)) 26.56/9.60 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_primCompAux00(x0, x1, GT, x2) 26.56/9.60 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs10(x0, x1, app(ty_[], x2)) 26.56/9.60 new_esEs31(x0, x1, ty_Int) 26.56/9.60 new_esEs10(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs11(x0, x1, ty_@0) 26.56/9.60 new_compare14(x0, x1, True, x2, x3) 26.56/9.60 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs33(x0, x1, app(ty_Ratio, x2)) 26.56/9.60 new_esEs19(Right(x0), Right(x1), x2, ty_Float) 26.56/9.60 new_lt19(x0, x1, app(ty_[], x2)) 26.56/9.60 new_esEs5(x0, x1, ty_@0) 26.56/9.60 new_ltEs23(x0, x1, ty_@0) 26.56/9.60 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_ltEs24(x0, x1, ty_Int) 26.56/9.60 new_esEs10(x0, x1, ty_Ordering) 26.56/9.60 new_esEs20(Char(x0), Char(x1)) 26.56/9.60 new_ltEs10(Just(x0), Just(x1), ty_Char) 26.56/9.60 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.56/9.60 new_esEs6(x0, x1, ty_Double) 26.56/9.60 new_esEs14(False, False) 26.56/9.60 new_ltEs21(x0, x1, ty_@0) 26.56/9.60 new_esEs19(Right(x0), Right(x1), x2, ty_Bool) 26.56/9.60 new_esEs8(x0, x1, ty_@0) 26.56/9.60 new_ltEs13(x0, x1, x2) 26.56/9.60 new_esEs30(x0, x1, ty_Ordering) 26.56/9.60 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.56/9.60 new_lt4(x0, x1) 26.56/9.60 new_compare10(x0, x1, False, x2) 26.56/9.60 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 26.56/9.60 new_compare0(x0, x1, ty_Integer) 26.56/9.60 new_esEs38(x0, x1, ty_Int) 26.56/9.60 new_compare27(GT, GT) 26.56/9.60 new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.56/9.60 new_ltEs11(x0, x1) 26.56/9.60 new_esEs19(Right(x0), Right(x1), x2, ty_Int) 26.56/9.60 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.56/9.60 new_esEs32(x0, x1, ty_@0) 26.56/9.60 new_asAs(True, x0) 26.56/9.60 new_lt21(x0, x1, ty_Double) 26.56/9.60 new_esEs23(:%(x0, x1), :%(x2, x3), x4) 26.56/9.60 new_compare27(LT, EQ) 26.56/9.60 new_compare27(EQ, LT) 26.56/9.60 new_esEs38(x0, x1, ty_Float) 26.56/9.60 new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) 26.56/9.60 new_ltEs24(x0, x1, ty_Float) 26.56/9.60 new_compare111(x0, x1, x2, x3, False, x4, x5) 26.56/9.60 new_primCmpNat0(Zero, Zero) 26.56/9.60 new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 26.56/9.60 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 26.56/9.60 new_esEs19(Right(x0), Right(x1), x2, ty_Char) 26.56/9.60 26.56/9.60 We have to consider all minimal (P,Q,R)-chains. 26.56/9.60 ---------------------------------------- 26.56/9.60 26.56/9.60 (56) QDPSizeChangeProof (EQUIVALENT) 26.56/9.60 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. 26.56/9.60 26.56/9.60 From the DPs we obtained the following set of size-change graphs: 26.56/9.60 *new_compare(:(xwv4000, xwv4001), :(xwv3000, xwv3001), eg) -> new_primCompAux(xwv4000, xwv3000, xwv4001, xwv3001, eg) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 3 >= 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare23(xwv83, xwv84, False, cfa, app(ty_[], cfe)) -> new_ltEs1(xwv83, xwv84, cfe) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_primCompAux(:(xwv4000, xwv4001), :(xwv3000, xwv3001), xwv401, xwv301, app(ty_[], eg)) -> new_primCompAux(xwv4000, xwv3000, xwv4001, xwv3001, eg) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 5 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_primCompAux(Right(xwv4000), Right(xwv3000), xwv401, xwv301, app(app(ty_Either, fh), ga)) -> new_compare23(xwv4000, xwv3000, new_esEs11(xwv4000, xwv3000, ga), fh, ga) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs1(xwv54, xwv55, ef) -> new_compare(xwv54, xwv55, ef) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare5(Right(xwv4000), Right(xwv3000), fh, ga) -> new_compare23(xwv4000, xwv3000, new_esEs11(xwv4000, xwv3000, ga), fh, ga) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, app(ty_[], bcd)) -> new_ltEs1(xwv542, xwv552, bcd) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs0(Just(xwv540), Just(xwv550), app(ty_[], dh)) -> new_ltEs1(xwv540, xwv550, dh) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare23(xwv83, xwv84, False, cfa, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs2(xwv83, xwv84, cff, cfg, cfh) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs2(xwv542, xwv552, bce, bcf, bcg) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs0(Just(xwv540), Just(xwv550), app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs2(xwv540, xwv550, ea, eb, ec) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare23(xwv83, xwv84, False, cfa, app(ty_Maybe, cfd)) -> new_ltEs0(xwv83, xwv84, cfd) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, app(ty_Maybe, bcc)) -> new_ltEs0(xwv542, xwv552, bcc) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs0(Just(xwv540), Just(xwv550), app(ty_Maybe, dg)) -> new_ltEs0(xwv540, xwv550, dg) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), h, app(ty_[], bd)) -> new_ltEs1(xwv541, xwv551, bd) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), h, app(app(app(ty_@3, be), bf), bg)) -> new_ltEs2(xwv541, xwv551, be, bf, bg) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), h, app(ty_Maybe, bc)) -> new_ltEs0(xwv541, xwv551, bc) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare23(xwv83, xwv84, False, cfa, app(app(ty_@2, cfb), cfc)) -> new_ltEs(xwv83, xwv84, cfb, cfc) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare23(xwv83, xwv84, False, cfa, app(app(ty_Either, cga), cgb)) -> new_ltEs3(xwv83, xwv84, cga, cgb) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, app(app(ty_@2, bca), bcb)) -> new_ltEs(xwv542, xwv552, bca, bcb) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs0(Just(xwv540), Just(xwv550), app(app(ty_@2, de), df)) -> new_ltEs(xwv540, xwv550, de, df) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs0(Just(xwv540), Just(xwv550), app(app(ty_Either, ed), ee)) -> new_ltEs3(xwv540, xwv550, ed, ee) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), h, app(app(ty_@2, ba), bb)) -> new_ltEs(xwv541, xwv551, ba, bb) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, bbh, app(app(ty_Either, bch), bda)) -> new_ltEs3(xwv542, xwv552, bch, bda) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), h, app(app(ty_Either, bh), ca)) -> new_ltEs3(xwv541, xwv551, bh, ca) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_lt1(xwv113, xwv115, hg) -> new_compare(xwv113, xwv115, hg) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), app(ty_[], cf), cd) -> new_lt1(xwv540, xwv550, cf) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_lt(xwv113, xwv115, hc, hd) -> new_compare1(xwv113, xwv115, hc, hd) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), app(app(ty_@2, cb), cc), cd) -> new_lt(xwv540, xwv550, cb, cc) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare1(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), fa, fb) -> new_compare2(xwv4000, xwv4001, xwv3000, xwv3001, new_asAs(new_esEs5(xwv4000, xwv3000, fa), new_esEs4(xwv4001, xwv3001, fb)), fa, fb) 26.56/9.60 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare2(xwv113, xwv114, xwv115, xwv116, False, bae, app(ty_[], bba)) -> new_ltEs1(xwv114, xwv116, bba) 26.56/9.60 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare2(xwv113, xwv114, xwv115, xwv116, False, app(ty_[], hg), he) -> new_compare(xwv113, xwv115, hg) 26.56/9.60 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare2(xwv113, xwv114, xwv115, xwv116, False, bae, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs2(xwv114, xwv116, bbb, bbc, bbd) 26.56/9.60 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare2(xwv113, xwv114, xwv115, xwv116, False, bae, app(ty_Maybe, bah)) -> new_ltEs0(xwv114, xwv116, bah) 26.56/9.60 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare2(xwv113, xwv114, xwv115, xwv116, False, bae, app(app(ty_@2, baf), bag)) -> new_ltEs(xwv114, xwv116, baf, bag) 26.56/9.60 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare2(xwv113, xwv114, xwv115, xwv116, False, bae, app(app(ty_Either, bbe), bbf)) -> new_ltEs3(xwv114, xwv116, bbe, bbf) 26.56/9.60 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare2(xwv113, xwv114, xwv115, xwv116, False, app(app(ty_@2, hc), hd), he) -> new_compare1(xwv113, xwv115, hc, hd) 26.56/9.60 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_primCompAux(@2(xwv4000, xwv4001), @2(xwv3000, xwv3001), xwv401, xwv301, app(app(ty_@2, fa), fb)) -> new_compare2(xwv4000, xwv4001, xwv3000, xwv3001, new_asAs(new_esEs5(xwv4000, xwv3000, fa), new_esEs4(xwv4001, xwv3001, fb)), fa, fb) 26.56/9.60 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 5 > 6, 5 > 7 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare5(Left(xwv4000), Left(xwv3000), fh, ga) -> new_compare22(xwv4000, xwv3000, new_esEs10(xwv4000, xwv3000, fh), fh, ga) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare22(xwv76, xwv77, False, app(ty_[], cec), cea) -> new_ltEs1(xwv76, xwv77, cec) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare22(xwv76, xwv77, False, app(app(app(ty_@3, ced), cee), cef), cea) -> new_ltEs2(xwv76, xwv77, ced, cee, cef) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare22(xwv76, xwv77, False, app(ty_Maybe, ceb), cea) -> new_ltEs0(xwv76, xwv77, ceb) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare22(xwv76, xwv77, False, app(app(ty_@2, cdg), cdh), cea) -> new_ltEs(xwv76, xwv77, cdg, cdh) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare22(xwv76, xwv77, False, app(app(ty_Either, ceg), ceh), cea) -> new_ltEs3(xwv76, xwv77, ceg, ceh) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare2(xwv113, xwv114, xwv115, xwv116, False, app(app(ty_Either, bac), bad), he) -> new_compare5(xwv113, xwv115, bac, bad) 26.56/9.60 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_lt3(xwv113, xwv115, bac, bad) -> new_compare5(xwv113, xwv115, bac, bad) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_primCompAux(Left(xwv4000), Left(xwv3000), xwv401, xwv301, app(app(ty_Either, fh), ga)) -> new_compare22(xwv4000, xwv3000, new_esEs10(xwv4000, xwv3000, fh), fh, ga) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_lt0(xwv113, xwv115, hf) -> new_compare3(xwv113, xwv115, hf) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), app(ty_Maybe, ce), cd) -> new_lt0(xwv540, xwv550, ce) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare3(Just(xwv4000), Just(xwv3000), fc) -> new_compare20(xwv4000, xwv3000, new_esEs6(xwv4000, xwv3000, fc), fc) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, app(ty_[], cbh)) -> new_ltEs1(xwv67, xwv70, cbh) 26.56/9.60 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare20(xwv54, xwv55, False, app(ty_[], ef)) -> new_compare(xwv54, xwv55, ef) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_primCompAux0(xwv32, xwv33, EQ, app(ty_[], ge)) -> new_compare(xwv32, xwv33, ge) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, app(app(app(ty_@3, cca), ccb), ccc)) -> new_ltEs2(xwv67, xwv70, cca, ccb, ccc) 26.56/9.60 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, app(ty_Maybe, cbg)) -> new_ltEs0(xwv67, xwv70, cbg) 26.56/9.60 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, app(app(ty_@2, cbe), cbf)) -> new_ltEs(xwv67, xwv70, cbe, cbf) 26.56/9.60 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, cac, app(app(ty_Either, ccd), cce)) -> new_ltEs3(xwv67, xwv70, ccd, cce) 26.56/9.60 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare2(xwv113, xwv114, xwv115, xwv116, False, app(ty_Maybe, hf), he) -> new_compare3(xwv113, xwv115, hf) 26.56/9.60 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare2(xwv113, xwv114, xwv115, xwv116, False, app(app(app(ty_@3, hh), baa), bab), he) -> new_compare4(xwv113, xwv115, hh, baa, bab) 26.56/9.60 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_primCompAux(Just(xwv4000), Just(xwv3000), xwv401, xwv301, app(ty_Maybe, fc)) -> new_compare20(xwv4000, xwv3000, new_esEs6(xwv4000, xwv3000, fc), fc) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), app(app(ty_Either, dc), dd), cd) -> new_lt3(xwv540, xwv550, dc, dd) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs(@2(xwv540, xwv541), @2(xwv550, xwv551), app(app(app(ty_@3, cg), da), db), cd) -> new_lt2(xwv540, xwv550, cg, da, db) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_lt2(xwv113, xwv115, hh, baa, bab) -> new_compare4(xwv113, xwv115, hh, baa, bab) 26.56/9.60 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare4(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), fd, ff, fg) -> new_compare21(xwv4000, xwv4001, xwv4002, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs9(xwv4000, xwv3000, fd), new_asAs(new_esEs8(xwv4001, xwv3001, ff), new_esEs7(xwv4002, xwv3002, fg))), fd, ff, fg) 26.56/9.60 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 26.56/9.60 26.56/9.60 26.56/9.60 *new_primCompAux(@3(xwv4000, xwv4001, xwv4002), @3(xwv3000, xwv3001, xwv3002), xwv401, xwv301, app(app(app(ty_@3, fd), ff), fg)) -> new_compare21(xwv4000, xwv4001, xwv4002, xwv3000, xwv3001, xwv3002, new_asAs(new_esEs9(xwv4000, xwv3000, fd), new_asAs(new_esEs8(xwv4001, xwv3001, ff), new_esEs7(xwv4002, xwv3002, fg))), fd, ff, fg) 26.56/9.60 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 5 > 8, 5 > 9, 5 > 10 26.56/9.60 26.56/9.60 26.56/9.60 *new_primCompAux(xwv400, xwv300, xwv401, xwv301, eh) -> new_primCompAux0(xwv401, xwv301, new_compare0(xwv400, xwv300, eh), app(ty_[], eh)) 26.56/9.60 The graph contains the following edges 3 >= 1, 4 >= 2 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs3(Right(xwv540), Right(xwv550), bgg, app(ty_[], bhc)) -> new_ltEs1(xwv540, xwv550, bhc) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs3(Left(xwv540), Left(xwv550), app(ty_[], bga), bfg) -> new_ltEs1(xwv540, xwv550, bga) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), bbh), app(ty_[], bcd))) -> new_ltEs1(xwv542, xwv552, bcd) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, h), app(ty_[], bd))) -> new_ltEs1(xwv541, xwv551, bd) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare20(Left(xwv540), Left(xwv550), False, app(app(ty_Either, app(ty_[], bga)), bfg)) -> new_ltEs1(xwv540, xwv550, bga) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare20(Just(xwv540), Just(xwv550), False, app(ty_Maybe, app(ty_[], dh))) -> new_ltEs1(xwv540, xwv550, dh) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare20(Right(xwv540), Right(xwv550), False, app(app(ty_Either, bgg), app(ty_[], bhc))) -> new_ltEs1(xwv540, xwv550, bhc) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), app(ty_[], beg), bbh, bdd) -> new_lt1(xwv540, xwv550, beg) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, app(ty_[], bdf), bdd) -> new_lt1(xwv541, xwv551, bdf) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), app(app(ty_@2, bed), bee), bbh, bdd) -> new_lt(xwv540, xwv550, bed, bee) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, app(app(ty_@2, bdb), bdc), bdd) -> new_lt(xwv541, xwv551, bdb, bdc) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, app(ty_Maybe, bde), bdd) -> new_lt0(xwv541, xwv551, bde) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), app(ty_Maybe, bef), bbh, bdd) -> new_lt0(xwv540, xwv550, bef) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), app(app(ty_Either, bfc), bfd), bbh, bdd) -> new_lt3(xwv540, xwv550, bfc, bfd) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, app(app(ty_Either, beb), bec), bdd) -> new_lt3(xwv541, xwv551, beb, bec) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), app(app(app(ty_@3, beh), bfa), bfb), bbh, bdd) -> new_lt2(xwv540, xwv550, beh, bfa, bfb) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs2(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), bbg, app(app(app(ty_@3, bdg), bdh), bea), bdd) -> new_lt2(xwv541, xwv551, bdg, bdh, bea) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs3(Left(xwv540), Left(xwv550), app(app(app(ty_@3, bgb), bgc), bgd), bfg) -> new_ltEs2(xwv540, xwv550, bgb, bgc, bgd) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_ltEs3(Right(xwv540), Right(xwv550), bgg, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_ltEs2(xwv540, xwv550, bhd, bhe, bhf) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare20(Right(xwv540), Right(xwv550), False, app(app(ty_Either, bgg), app(app(app(ty_@3, bhd), bhe), bhf))) -> new_ltEs2(xwv540, xwv550, bhd, bhe, bhf) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, h), app(app(app(ty_@3, be), bf), bg))) -> new_ltEs2(xwv541, xwv551, be, bf, bg) 26.56/9.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.56/9.60 26.56/9.60 26.56/9.60 *new_compare20(Left(xwv540), Left(xwv550), False, app(app(ty_Either, app(app(app(ty_@3, bgb), bgc), bgd)), bfg)) -> new_ltEs2(xwv540, xwv550, bgb, bgc, bgd) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), bbh), app(app(app(ty_@3, bce), bcf), bcg))) -> new_ltEs2(xwv542, xwv552, bce, bcf, bcg) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(Just(xwv540), Just(xwv550), False, app(ty_Maybe, app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs2(xwv540, xwv550, ea, eb, ec) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.56/9.61 26.56/9.61 26.56/9.61 *new_ltEs3(Left(xwv540), Left(xwv550), app(ty_Maybe, bfh), bfg) -> new_ltEs0(xwv540, xwv550, bfh) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_ltEs3(Right(xwv540), Right(xwv550), bgg, app(ty_Maybe, bhb)) -> new_ltEs0(xwv540, xwv550, bhb) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(Just(xwv540), Just(xwv550), False, app(ty_Maybe, app(ty_Maybe, dg))) -> new_ltEs0(xwv540, xwv550, dg) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(Left(xwv540), Left(xwv550), False, app(app(ty_Either, app(ty_Maybe, bfh)), bfg)) -> new_ltEs0(xwv540, xwv550, bfh) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), bbh), app(ty_Maybe, bcc))) -> new_ltEs0(xwv542, xwv552, bcc) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(Right(xwv540), Right(xwv550), False, app(app(ty_Either, bgg), app(ty_Maybe, bhb))) -> new_ltEs0(xwv540, xwv550, bhb) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, h), app(ty_Maybe, bc))) -> new_ltEs0(xwv541, xwv551, bc) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_ltEs3(Right(xwv540), Right(xwv550), bgg, app(app(ty_@2, bgh), bha)) -> new_ltEs(xwv540, xwv550, bgh, bha) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_ltEs3(Left(xwv540), Left(xwv550), app(app(ty_@2, bfe), bff), bfg) -> new_ltEs(xwv540, xwv550, bfe, bff) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_ltEs3(Left(xwv540), Left(xwv550), app(app(ty_Either, bge), bgf), bfg) -> new_ltEs3(xwv540, xwv550, bge, bgf) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_ltEs3(Right(xwv540), Right(xwv550), bgg, app(app(ty_Either, bhg), bhh)) -> new_ltEs3(xwv540, xwv550, bhg, bhh) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(Right(xwv540), Right(xwv550), False, app(app(ty_Either, bgg), app(app(ty_@2, bgh), bha))) -> new_ltEs(xwv540, xwv550, bgh, bha) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(Left(xwv540), Left(xwv550), False, app(app(ty_Either, app(app(ty_@2, bfe), bff)), bfg)) -> new_ltEs(xwv540, xwv550, bfe, bff) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), bbh), app(app(ty_@2, bca), bcb))) -> new_ltEs(xwv542, xwv552, bca, bcb) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(Just(xwv540), Just(xwv550), False, app(ty_Maybe, app(app(ty_@2, de), df))) -> new_ltEs(xwv540, xwv550, de, df) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, h), app(app(ty_@2, ba), bb))) -> new_ltEs(xwv541, xwv551, ba, bb) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(Left(xwv540), Left(xwv550), False, app(app(ty_Either, app(app(ty_Either, bge), bgf)), bfg)) -> new_ltEs3(xwv540, xwv550, bge, bgf) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(Just(xwv540), Just(xwv550), False, app(ty_Maybe, app(app(ty_Either, ed), ee))) -> new_ltEs3(xwv540, xwv550, ed, ee) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), bbh), app(app(ty_Either, bch), bda))) -> new_ltEs3(xwv542, xwv552, bch, bda) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(Right(xwv540), Right(xwv550), False, app(app(ty_Either, bgg), app(app(ty_Either, bhg), bhh))) -> new_ltEs3(xwv540, xwv550, bhg, bhh) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, h), app(app(ty_Either, bh), ca))) -> new_ltEs3(xwv541, xwv551, bh, ca) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), app(ty_[], bdf)), bdd)) -> new_lt1(xwv541, xwv551, bdf) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, app(ty_[], cf)), cd)) -> new_lt1(xwv540, xwv550, cf) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, app(ty_[], beg)), bbh), bdd)) -> new_lt1(xwv540, xwv550, beg) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, app(ty_[], caf), cac, cad) -> new_lt1(xwv65, xwv68, caf) 26.56/9.61 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, app(ty_[], cda), cad) -> new_lt1(xwv66, xwv69, cda) 26.56/9.61 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), cd)) -> new_lt(xwv540, xwv550, cb, cc) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, app(app(ty_@2, bed), bee)), bbh), bdd)) -> new_lt(xwv540, xwv550, bed, bee) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), app(app(ty_@2, bdb), bdc)), bdd)) -> new_lt(xwv541, xwv551, bdb, bdc) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, app(app(ty_@2, ccf), ccg), cad) -> new_lt(xwv66, xwv69, ccf, ccg) 26.56/9.61 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, app(app(ty_@2, caa), cab), cac, cad) -> new_lt(xwv65, xwv68, caa, cab) 26.56/9.61 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, app(ty_Maybe, bef)), bbh), bdd)) -> new_lt0(xwv540, xwv550, bef) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), app(ty_Maybe, bde)), bdd)) -> new_lt0(xwv541, xwv551, bde) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, app(ty_Maybe, ce)), cd)) -> new_lt0(xwv540, xwv550, ce) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, app(ty_Maybe, cae), cac, cad) -> new_lt0(xwv65, xwv68, cae) 26.56/9.61 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, app(ty_Maybe, cch), cad) -> new_lt0(xwv66, xwv69, cch) 26.56/9.61 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, app(app(ty_Either, bfc), bfd)), bbh), bdd)) -> new_lt3(xwv540, xwv550, bfc, bfd) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), app(app(ty_Either, beb), bec)), bdd)) -> new_lt3(xwv541, xwv551, beb, bec) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, app(app(ty_Either, dc), dd)), cd)) -> new_lt3(xwv540, xwv550, dc, dd) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, app(app(app(ty_@3, beh), bfa), bfb)), bbh), bdd)) -> new_lt2(xwv540, xwv550, beh, bfa, bfb) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@3(xwv540, xwv541, xwv542), @3(xwv550, xwv551, xwv552), False, app(app(app(ty_@3, bbg), app(app(app(ty_@3, bdg), bdh), bea)), bdd)) -> new_lt2(xwv541, xwv551, bdg, bdh, bea) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare20(@2(xwv540, xwv541), @2(xwv550, xwv551), False, app(app(ty_@2, app(app(app(ty_@3, cg), da), db)), cd)) -> new_lt2(xwv540, xwv550, cg, da, db) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, app(app(ty_Either, cbb), cbc), cac, cad) -> new_lt3(xwv65, xwv68, cbb, cbc) 26.56/9.61 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, app(app(ty_Either, cde), cdf), cad) -> new_lt3(xwv66, xwv69, cde, cdf) 26.56/9.61 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, app(app(app(ty_@3, cag), cah), cba), cac, cad) -> new_lt2(xwv65, xwv68, cag, cah, cba) 26.56/9.61 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 26.56/9.61 26.56/9.61 26.56/9.61 *new_compare21(xwv65, xwv66, xwv67, xwv68, xwv69, xwv70, False, cbd, app(app(app(ty_@3, cdb), cdc), cdd), cad) -> new_lt2(xwv66, xwv69, cdb, cdc, cdd) 26.56/9.61 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 26.56/9.61 26.56/9.61 26.56/9.61 ---------------------------------------- 26.56/9.61 26.56/9.61 (57) 26.56/9.61 YES 26.56/9.61 26.56/9.61 ---------------------------------------- 26.56/9.61 26.56/9.61 (58) 26.56/9.61 Obligation: 26.56/9.61 Q DP problem: 26.56/9.61 The TRS P consists of the following rules: 26.56/9.61 26.56/9.61 new_glueBal2Mid_key20(xwv362, xwv363, xwv364, xwv365, xwv366, xwv367, xwv368, xwv369, xwv370, xwv371, xwv372, xwv373, xwv374, Branch(xwv3750, xwv3751, xwv3752, xwv3753, xwv3754), xwv376, h, ba) -> new_glueBal2Mid_key20(xwv362, xwv363, xwv364, xwv365, xwv366, xwv367, xwv368, xwv369, xwv370, xwv371, xwv3750, xwv3751, xwv3752, xwv3753, xwv3754, h, ba) 26.56/9.61 26.56/9.61 R is empty. 26.56/9.61 Q is empty. 26.56/9.61 We have to consider all minimal (P,Q,R)-chains. 26.56/9.61 ---------------------------------------- 26.56/9.61 26.56/9.61 (59) QDPSizeChangeProof (EQUIVALENT) 26.56/9.61 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. 26.56/9.61 26.56/9.61 From the DPs we obtained the following set of size-change graphs: 26.56/9.61 *new_glueBal2Mid_key20(xwv362, xwv363, xwv364, xwv365, xwv366, xwv367, xwv368, xwv369, xwv370, xwv371, xwv372, xwv373, xwv374, Branch(xwv3750, xwv3751, xwv3752, xwv3753, xwv3754), xwv376, h, ba) -> new_glueBal2Mid_key20(xwv362, xwv363, xwv364, xwv365, xwv366, xwv367, xwv368, xwv369, xwv370, xwv371, xwv3750, xwv3751, xwv3752, xwv3753, xwv3754, h, ba) 26.56/9.61 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 26.56/9.61 26.56/9.61 26.56/9.61 ---------------------------------------- 26.56/9.61 26.56/9.61 (60) 26.56/9.61 YES 26.56/9.61 26.56/9.61 ---------------------------------------- 26.56/9.61 26.56/9.61 (61) 26.56/9.61 Obligation: 26.56/9.61 Q DP problem: 26.56/9.61 The TRS P consists of the following rules: 26.56/9.61 26.56/9.61 new_deleteMax(xwv330, xwv331, xwv332, xwv333, Branch(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344), h, ba) -> new_deleteMax(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344, h, ba) 26.56/9.61 26.56/9.61 R is empty. 26.56/9.61 Q is empty. 26.56/9.61 We have to consider all minimal (P,Q,R)-chains. 26.56/9.61 ---------------------------------------- 26.56/9.61 26.56/9.61 (62) QDPSizeChangeProof (EQUIVALENT) 26.56/9.61 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. 26.56/9.61 26.56/9.61 From the DPs we obtained the following set of size-change graphs: 26.56/9.61 *new_deleteMax(xwv330, xwv331, xwv332, xwv333, Branch(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344), h, ba) -> new_deleteMax(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344, h, ba) 26.56/9.61 The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 6 >= 6, 7 >= 7 26.56/9.61 26.56/9.61 26.56/9.61 ---------------------------------------- 26.56/9.61 26.56/9.61 (63) 26.56/9.61 YES 26.56/9.61 26.56/9.61 ---------------------------------------- 26.56/9.61 26.56/9.61 (64) 26.56/9.61 Obligation: 26.56/9.61 Q DP problem: 26.56/9.61 The TRS P consists of the following rules: 26.56/9.61 26.56/9.61 new_glueBal2Mid_elt10(xwv441, xwv442, xwv443, xwv444, xwv445, xwv446, xwv447, xwv448, xwv449, xwv450, xwv451, xwv452, xwv453, xwv454, Branch(xwv4550, xwv4551, xwv4552, xwv4553, xwv4554), h, ba) -> new_glueBal2Mid_elt10(xwv441, xwv442, xwv443, xwv444, xwv445, xwv446, xwv447, xwv448, xwv449, xwv450, xwv4550, xwv4551, xwv4552, xwv4553, xwv4554, h, ba) 26.56/9.61 26.56/9.61 R is empty. 26.56/9.61 Q is empty. 26.56/9.61 We have to consider all minimal (P,Q,R)-chains. 26.56/9.61 ---------------------------------------- 26.56/9.61 26.56/9.61 (65) QDPSizeChangeProof (EQUIVALENT) 26.56/9.61 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. 26.56/9.61 26.56/9.61 From the DPs we obtained the following set of size-change graphs: 26.56/9.61 *new_glueBal2Mid_elt10(xwv441, xwv442, xwv443, xwv444, xwv445, xwv446, xwv447, xwv448, xwv449, xwv450, xwv451, xwv452, xwv453, xwv454, Branch(xwv4550, xwv4551, xwv4552, xwv4553, xwv4554), h, ba) -> new_glueBal2Mid_elt10(xwv441, xwv442, xwv443, xwv444, xwv445, xwv446, xwv447, xwv448, xwv449, xwv450, xwv4550, xwv4551, xwv4552, xwv4553, xwv4554, h, ba) 26.56/9.61 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 26.56/9.61 26.56/9.61 26.56/9.61 ---------------------------------------- 26.56/9.61 26.56/9.61 (66) 26.56/9.61 YES 26.56/9.61 26.56/9.61 ---------------------------------------- 26.56/9.61 26.56/9.61 (67) 26.56/9.61 Obligation: 26.56/9.61 Q DP problem: 26.56/9.61 The TRS P consists of the following rules: 26.56/9.61 26.56/9.61 new_primEqNat(Succ(xwv400000), Succ(xwv300000)) -> new_primEqNat(xwv400000, xwv300000) 26.56/9.61 26.56/9.61 R is empty. 26.56/9.61 Q is empty. 26.56/9.61 We have to consider all minimal (P,Q,R)-chains. 26.56/9.61 ---------------------------------------- 26.56/9.61 26.56/9.61 (68) QDPSizeChangeProof (EQUIVALENT) 26.56/9.61 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. 26.56/9.61 26.56/9.61 From the DPs we obtained the following set of size-change graphs: 26.56/9.61 *new_primEqNat(Succ(xwv400000), Succ(xwv300000)) -> new_primEqNat(xwv400000, xwv300000) 26.56/9.61 The graph contains the following edges 1 > 1, 2 > 2 26.56/9.61 26.56/9.61 26.56/9.61 ---------------------------------------- 26.56/9.61 26.56/9.61 (69) 26.56/9.61 YES 26.64/10.26 EOF