23.88/10.34 YES 26.54/11.03 proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs 26.54/11.03 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 26.54/11.03 26.54/11.03 26.54/11.03 H-Termination with start terms of the given HASKELL could be proven: 26.54/11.03 26.54/11.03 (0) HASKELL 26.54/11.03 (1) LR [EQUIVALENT, 0 ms] 26.54/11.03 (2) HASKELL 26.54/11.03 (3) CR [EQUIVALENT, 0 ms] 26.54/11.03 (4) HASKELL 26.54/11.03 (5) IFR [EQUIVALENT, 0 ms] 26.54/11.03 (6) HASKELL 26.54/11.03 (7) BR [EQUIVALENT, 0 ms] 26.54/11.03 (8) HASKELL 26.54/11.03 (9) COR [EQUIVALENT, 0 ms] 26.54/11.03 (10) HASKELL 26.54/11.03 (11) LetRed [EQUIVALENT, 0 ms] 26.54/11.03 (12) HASKELL 26.54/11.03 (13) NumRed [SOUND, 0 ms] 26.54/11.03 (14) HASKELL 26.54/11.03 (15) Narrow [SOUND, 0 ms] 26.54/11.03 (16) AND 26.54/11.03 (17) QDP 26.54/11.03 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.54/11.03 (19) YES 26.54/11.03 (20) QDP 26.54/11.03 (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.54/11.03 (22) YES 26.54/11.03 (23) QDP 26.54/11.03 (24) DependencyGraphProof [EQUIVALENT, 0 ms] 26.54/11.03 (25) AND 26.54/11.03 (26) QDP 26.54/11.03 (27) TransformationProof [EQUIVALENT, 1738 ms] 26.54/11.03 (28) QDP 26.54/11.03 (29) DependencyGraphProof [EQUIVALENT, 0 ms] 26.54/11.03 (30) QDP 26.54/11.03 (31) TransformationProof [EQUIVALENT, 0 ms] 26.54/11.03 (32) QDP 26.54/11.03 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.54/11.03 (34) YES 26.54/11.03 (35) QDP 26.54/11.03 (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.54/11.03 (37) YES 26.54/11.03 (38) QDP 26.54/11.03 (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.54/11.03 (40) YES 26.54/11.03 (41) QDP 26.54/11.03 (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.54/11.03 (43) YES 26.54/11.03 (44) QDP 26.54/11.03 (45) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.54/11.03 (46) YES 26.54/11.03 (47) QDP 26.54/11.03 (48) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.54/11.03 (49) YES 26.54/11.03 (50) QDP 26.54/11.03 (51) QDPSizeChangeProof [EQUIVALENT, 60 ms] 26.54/11.03 (52) YES 26.54/11.03 (53) QDP 26.54/11.03 (54) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.54/11.03 (55) YES 26.54/11.03 (56) QDP 26.54/11.03 (57) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.54/11.03 (58) YES 26.54/11.03 (59) QDP 26.54/11.03 (60) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.54/11.03 (61) YES 26.54/11.03 (62) QDP 26.54/11.03 (63) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.54/11.03 (64) YES 26.54/11.03 (65) QDP 26.54/11.03 (66) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.54/11.03 (67) YES 26.54/11.03 (68) QDP 26.54/11.03 (69) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.54/11.03 (70) YES 26.54/11.03 26.54/11.03 26.54/11.03 ---------------------------------------- 26.54/11.03 26.54/11.03 (0) 26.54/11.03 Obligation: 26.54/11.03 mainModule Main 26.54/11.03 module FiniteMap where { 26.54/11.03 import qualified Main; 26.54/11.03 import qualified Maybe; 26.54/11.03 import qualified Prelude; 26.54/11.03 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 26.54/11.03 26.54/11.03 instance (Eq a, Eq b) => Eq FiniteMap a b where { 26.54/11.03 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.54/11.03 } 26.54/11.03 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 26.54/11.03 delFromFM EmptyFM del_key = emptyFM; 26.54/11.03 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 26.54/11.03 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 26.54/11.03 | key == del_key = glueBal fm_l fm_r; 26.54/11.03 26.54/11.03 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 26.54/11.03 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 26.54/11.03 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 26.54/11.03 26.54/11.03 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 26.54/11.03 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 26.54/11.03 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 26.54/11.03 26.54/11.03 emptyFM :: FiniteMap a b; 26.54/11.03 emptyFM = EmptyFM; 26.54/11.03 26.54/11.03 findMax :: FiniteMap a b -> (a,b); 26.54/11.03 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 26.54/11.03 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 26.54/11.03 26.54/11.03 findMin :: FiniteMap b a -> (b,a); 26.54/11.03 findMin (Branch key elt _ EmptyFM _) = (key,elt); 26.54/11.03 findMin (Branch key elt _ fm_l _) = findMin fm_l; 26.54/11.03 26.54/11.03 fmToList :: FiniteMap b a -> [(b,a)]; 26.54/11.03 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 26.54/11.03 26.54/11.03 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 26.54/11.03 foldFM k z EmptyFM = z; 26.54/11.03 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.54/11.03 26.54/11.03 glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 26.54/11.03 glueBal EmptyFM fm2 = fm2; 26.54/11.03 glueBal fm1 EmptyFM = fm1; 26.54/11.03 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 26.54/11.03 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 26.54/11.03 mid_elt1 = (\(_,mid_elt1) ->mid_elt1) vv2; 26.54/11.03 mid_elt2 = (\(_,mid_elt2) ->mid_elt2) vv3; 26.54/11.03 mid_key1 = (\(mid_key1,_) ->mid_key1) vv2; 26.54/11.03 mid_key2 = (\(mid_key2,_) ->mid_key2) vv3; 26.54/11.03 vv2 = findMax fm1; 26.54/11.03 vv3 = findMin fm2; 26.54/11.03 }; 26.54/11.03 26.54/11.03 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 26.54/11.03 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 26.54/11.03 | size_r > sIZE_RATIO * size_l = case fm_R of { 26.54/11.03 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 26.54/11.03 | otherwise -> double_L fm_L fm_R; 26.54/11.03 } 26.54/11.03 | size_l > sIZE_RATIO * size_r = case fm_L of { 26.54/11.03 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 26.54/11.03 | otherwise -> double_R fm_L fm_R; 26.54/11.03 } 26.54/11.03 | otherwise = mkBranch 2 key elt fm_L fm_R where { 26.54/11.03 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); 26.54/11.03 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); 26.54/11.03 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; 26.54/11.03 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); 26.54/11.03 size_l = sizeFM fm_L; 26.54/11.03 size_r = sizeFM fm_R; 26.54/11.03 }; 26.54/11.03 26.54/11.03 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 26.54/11.03 mkBranch which key elt fm_l fm_r = let { 26.54/11.03 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 26.54/11.03 } in result where { 26.54/11.03 balance_ok = True; 26.54/11.03 left_ok = case fm_l of { 26.54/11.03 EmptyFM-> True; 26.54/11.03 Branch left_key _ _ _ _-> let { 26.54/11.03 biggest_left_key = fst (findMax fm_l); 26.54/11.03 } in biggest_left_key < key; 26.54/11.03 } ; 26.54/11.03 left_size = sizeFM fm_l; 26.54/11.03 right_ok = case fm_r of { 26.54/11.03 EmptyFM-> True; 26.54/11.03 Branch right_key _ _ _ _-> let { 26.54/11.03 smallest_right_key = fst (findMin fm_r); 26.54/11.03 } in key < smallest_right_key; 26.54/11.03 } ; 26.54/11.03 right_size = sizeFM fm_r; 26.54/11.03 unbox :: Int -> Int; 26.54/11.03 unbox x = x; 26.54/11.03 }; 26.54/11.03 26.54/11.03 sIZE_RATIO :: Int; 26.54/11.03 sIZE_RATIO = 5; 26.54/11.03 26.54/11.03 sizeFM :: FiniteMap b a -> Int; 26.54/11.03 sizeFM EmptyFM = 0; 26.54/11.03 sizeFM (Branch _ _ size _ _) = size; 26.54/11.03 26.54/11.03 } 26.54/11.03 module Maybe where { 26.54/11.03 import qualified FiniteMap; 26.54/11.03 import qualified Main; 26.54/11.03 import qualified Prelude; 26.54/11.03 } 26.54/11.03 module Main where { 26.54/11.03 import qualified FiniteMap; 26.54/11.03 import qualified Maybe; 26.54/11.03 import qualified Prelude; 26.54/11.03 } 26.54/11.03 26.54/11.03 ---------------------------------------- 26.54/11.03 26.54/11.03 (1) LR (EQUIVALENT) 26.54/11.03 Lambda Reductions: 26.54/11.03 The following Lambda expression 26.54/11.03 "\(_,mid_elt2)->mid_elt2" 26.54/11.03 is transformed to 26.54/11.03 "mid_elt20 (_,mid_elt2) = mid_elt2; 26.54/11.03 " 26.54/11.03 The following Lambda expression 26.54/11.03 "\(mid_key2,_)->mid_key2" 26.54/11.03 is transformed to 26.54/11.03 "mid_key20 (mid_key2,_) = mid_key2; 26.54/11.03 " 26.54/11.03 The following Lambda expression 26.54/11.03 "\(mid_key1,_)->mid_key1" 26.54/11.03 is transformed to 26.54/11.03 "mid_key10 (mid_key1,_) = mid_key1; 26.54/11.03 " 26.54/11.03 The following Lambda expression 26.54/11.03 "\(_,mid_elt1)->mid_elt1" 26.54/11.03 is transformed to 26.54/11.03 "mid_elt10 (_,mid_elt1) = mid_elt1; 26.54/11.03 " 26.54/11.03 The following Lambda expression 26.54/11.03 "\keyeltrest->(key,elt) : rest" 26.54/11.03 is transformed to 26.54/11.03 "fmToList0 key elt rest = (key,elt) : rest; 26.54/11.03 " 26.54/11.03 26.54/11.03 ---------------------------------------- 26.54/11.03 26.54/11.03 (2) 26.54/11.03 Obligation: 26.54/11.03 mainModule Main 26.54/11.03 module FiniteMap where { 26.54/11.03 import qualified Main; 26.54/11.03 import qualified Maybe; 26.54/11.03 import qualified Prelude; 26.54/11.03 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.54/11.03 26.54/11.03 instance (Eq a, Eq b) => Eq FiniteMap a b where { 26.54/11.03 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.54/11.03 } 26.54/11.03 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 26.54/11.03 delFromFM EmptyFM del_key = emptyFM; 26.54/11.03 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 26.54/11.03 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 26.54/11.03 | key == del_key = glueBal fm_l fm_r; 26.54/11.03 26.54/11.03 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 26.54/11.03 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 26.54/11.03 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 26.54/11.03 26.54/11.03 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 27.36/11.28 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 27.36/11.28 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 27.36/11.28 27.36/11.28 emptyFM :: FiniteMap a b; 27.36/11.28 emptyFM = EmptyFM; 27.36/11.28 27.36/11.28 findMax :: FiniteMap b a -> (b,a); 27.36/11.28 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 27.36/11.28 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 27.36/11.28 27.36/11.28 findMin :: FiniteMap b a -> (b,a); 27.36/11.28 findMin (Branch key elt _ EmptyFM _) = (key,elt); 27.36/11.28 findMin (Branch key elt _ fm_l _) = findMin fm_l; 27.36/11.28 27.36/11.28 fmToList :: FiniteMap b a -> [(b,a)]; 27.36/11.28 fmToList fm = foldFM fmToList0 [] fm; 27.36/11.28 27.36/11.28 fmToList0 key elt rest = (key,elt) : rest; 27.36/11.28 27.36/11.28 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 27.36/11.28 foldFM k z EmptyFM = z; 27.36/11.28 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 27.36/11.28 27.36/11.28 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 27.36/11.28 glueBal EmptyFM fm2 = fm2; 27.36/11.28 glueBal fm1 EmptyFM = fm1; 27.36/11.28 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 27.36/11.28 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 27.36/11.28 mid_elt1 = mid_elt10 vv2; 27.36/11.28 mid_elt10 (_,mid_elt1) = mid_elt1; 27.36/11.28 mid_elt2 = mid_elt20 vv3; 27.36/11.28 mid_elt20 (_,mid_elt2) = mid_elt2; 27.36/11.28 mid_key1 = mid_key10 vv2; 27.36/11.28 mid_key10 (mid_key1,_) = mid_key1; 27.36/11.28 mid_key2 = mid_key20 vv3; 27.36/11.28 mid_key20 (mid_key2,_) = mid_key2; 27.36/11.28 vv2 = findMax fm1; 27.36/11.28 vv3 = findMin fm2; 27.36/11.28 }; 27.36/11.28 27.36/11.28 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 27.36/11.28 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 27.36/11.28 | size_r > sIZE_RATIO * size_l = case fm_R of { 27.36/11.28 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 27.36/11.28 | otherwise -> double_L fm_L fm_R; 27.36/11.28 } 27.36/11.28 | size_l > sIZE_RATIO * size_r = case fm_L of { 27.36/11.28 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 27.36/11.28 | otherwise -> double_R fm_L fm_R; 27.36/11.28 } 27.36/11.28 | otherwise = mkBranch 2 key elt fm_L fm_R where { 27.36/11.28 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); 27.36/11.28 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); 27.36/11.28 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; 27.36/11.28 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); 27.36/11.28 size_l = sizeFM fm_L; 27.36/11.28 size_r = sizeFM fm_R; 27.36/11.28 }; 27.36/11.28 27.36/11.28 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 27.36/11.28 mkBranch which key elt fm_l fm_r = let { 27.36/11.28 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 27.36/11.28 } in result where { 27.36/11.28 balance_ok = True; 27.36/11.28 left_ok = case fm_l of { 27.36/11.28 EmptyFM-> True; 27.36/11.28 Branch left_key _ _ _ _-> let { 27.36/11.28 biggest_left_key = fst (findMax fm_l); 27.36/11.28 } in biggest_left_key < key; 27.36/11.28 } ; 27.36/11.28 left_size = sizeFM fm_l; 27.36/11.28 right_ok = case fm_r of { 27.36/11.28 EmptyFM-> True; 27.36/11.28 Branch right_key _ _ _ _-> let { 27.36/11.28 smallest_right_key = fst (findMin fm_r); 27.36/11.28 } in key < smallest_right_key; 27.36/11.28 } ; 27.36/11.28 right_size = sizeFM fm_r; 27.36/11.28 unbox :: Int -> Int; 27.36/11.28 unbox x = x; 27.36/11.28 }; 27.36/11.28 27.36/11.28 sIZE_RATIO :: Int; 27.36/11.28 sIZE_RATIO = 5; 27.36/11.28 27.36/11.28 sizeFM :: FiniteMap b a -> Int; 27.36/11.28 sizeFM EmptyFM = 0; 27.36/11.28 sizeFM (Branch _ _ size _ _) = size; 27.36/11.28 27.36/11.28 } 27.36/11.28 module Maybe where { 27.36/11.28 import qualified FiniteMap; 27.36/11.28 import qualified Main; 27.36/11.28 import qualified Prelude; 27.36/11.28 } 27.36/11.28 module Main where { 27.36/11.28 import qualified FiniteMap; 27.36/11.28 import qualified Maybe; 27.36/11.28 import qualified Prelude; 27.36/11.28 } 27.36/11.28 27.36/11.28 ---------------------------------------- 27.36/11.28 27.36/11.28 (3) CR (EQUIVALENT) 27.36/11.28 Case Reductions: 27.36/11.28 The following Case expression 27.36/11.28 "case compare x y of { 27.36/11.28 EQ -> o; 27.36/11.28 LT -> LT; 27.36/11.28 GT -> GT} 27.36/11.28 " 27.36/11.28 is transformed to 27.36/11.28 "primCompAux0 o EQ = o; 27.36/11.28 primCompAux0 o LT = LT; 27.36/11.28 primCompAux0 o GT = GT; 27.36/11.28 " 27.36/11.28 The following Case expression 27.36/11.28 "case fm_r of { 27.36/11.28 EmptyFM -> True; 27.36/11.28 Branch right_key _ _ _ _ -> let { 27.36/11.28 smallest_right_key = fst (findMin fm_r); 27.36/11.28 } in key < smallest_right_key} 27.36/11.28 " 27.36/11.28 is transformed to 27.36/11.28 "right_ok0 fm_r key EmptyFM = True; 27.36/11.28 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 27.36/11.28 smallest_right_key = fst (findMin fm_r); 27.36/11.28 } in key < smallest_right_key; 27.36/11.28 " 27.36/11.28 The following Case expression 27.36/11.28 "case fm_l of { 27.36/11.28 EmptyFM -> True; 27.36/11.28 Branch left_key _ _ _ _ -> let { 27.36/11.28 biggest_left_key = fst (findMax fm_l); 27.36/11.28 } in biggest_left_key < key} 27.36/11.28 " 27.36/11.28 is transformed to 27.36/11.28 "left_ok0 fm_l key EmptyFM = True; 27.36/11.28 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 27.36/11.28 biggest_left_key = fst (findMax fm_l); 27.36/11.28 } in biggest_left_key < key; 27.36/11.28 " 27.36/11.28 The following Case expression 27.36/11.28 "case fm_R of { 27.36/11.28 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 27.36/11.28 " 27.36/11.28 is transformed to 27.36/11.28 "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; 27.36/11.28 " 27.36/11.28 The following Case expression 27.36/11.28 "case fm_L of { 27.36/11.28 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 27.36/11.28 " 27.36/11.28 is transformed to 27.36/11.28 "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; 27.36/11.28 " 27.36/11.28 27.36/11.28 ---------------------------------------- 27.36/11.28 27.36/11.28 (4) 27.36/11.28 Obligation: 27.36/11.28 mainModule Main 27.36/11.28 module FiniteMap where { 27.36/11.28 import qualified Main; 27.36/11.28 import qualified Maybe; 27.36/11.28 import qualified Prelude; 27.36/11.28 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 27.36/11.28 27.36/11.28 instance (Eq a, Eq b) => Eq FiniteMap a b where { 27.36/11.28 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 27.36/11.28 } 27.36/11.28 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 27.36/11.28 delFromFM EmptyFM del_key = emptyFM; 27.36/11.28 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 27.36/11.28 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 27.36/11.28 | key == del_key = glueBal fm_l fm_r; 27.36/11.28 27.36/11.28 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 27.36/11.28 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 27.36/11.28 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 27.36/11.28 27.36/11.28 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 27.36/11.28 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 27.36/11.28 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 27.36/11.28 27.36/11.28 emptyFM :: FiniteMap a b; 27.36/11.28 emptyFM = EmptyFM; 27.36/11.28 27.36/11.28 findMax :: FiniteMap b a -> (b,a); 27.36/11.28 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 27.36/11.28 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 27.36/11.28 27.36/11.28 findMin :: FiniteMap a b -> (a,b); 27.36/11.28 findMin (Branch key elt _ EmptyFM _) = (key,elt); 27.36/11.28 findMin (Branch key elt _ fm_l _) = findMin fm_l; 27.36/11.28 27.36/11.28 fmToList :: FiniteMap a b -> [(a,b)]; 27.36/11.28 fmToList fm = foldFM fmToList0 [] fm; 27.36/11.28 27.36/11.28 fmToList0 key elt rest = (key,elt) : rest; 27.36/11.28 27.36/11.28 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 27.36/11.28 foldFM k z EmptyFM = z; 27.36/11.28 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 27.36/11.28 27.36/11.28 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 27.36/11.28 glueBal EmptyFM fm2 = fm2; 27.36/11.28 glueBal fm1 EmptyFM = fm1; 27.36/11.28 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 27.36/11.28 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 27.36/11.28 mid_elt1 = mid_elt10 vv2; 27.36/11.28 mid_elt10 (_,mid_elt1) = mid_elt1; 27.36/11.28 mid_elt2 = mid_elt20 vv3; 27.36/11.28 mid_elt20 (_,mid_elt2) = mid_elt2; 27.36/11.28 mid_key1 = mid_key10 vv2; 27.36/11.28 mid_key10 (mid_key1,_) = mid_key1; 27.36/11.28 mid_key2 = mid_key20 vv3; 27.36/11.28 mid_key20 (mid_key2,_) = mid_key2; 27.36/11.28 vv2 = findMax fm1; 27.36/11.28 vv3 = findMin fm2; 27.36/11.28 }; 27.36/11.28 27.36/11.28 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 27.36/11.28 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 27.36/11.28 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 27.36/11.28 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 27.36/11.28 | otherwise = mkBranch 2 key elt fm_L fm_R where { 27.36/11.28 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); 27.36/11.28 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); 27.36/11.28 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 27.36/11.28 | otherwise = double_L fm_L fm_R; 27.36/11.28 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 27.36/11.28 | otherwise = double_R fm_L fm_R; 27.36/11.28 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; 27.36/11.28 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); 27.36/11.28 size_l = sizeFM fm_L; 27.36/11.28 size_r = sizeFM fm_R; 27.36/11.28 }; 27.36/11.28 27.36/11.28 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 27.36/11.28 mkBranch which key elt fm_l fm_r = let { 27.36/11.28 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 27.36/11.28 } in result where { 27.36/11.28 balance_ok = True; 27.36/11.28 left_ok = left_ok0 fm_l key fm_l; 27.36/11.28 left_ok0 fm_l key EmptyFM = True; 27.36/11.28 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 27.36/11.28 biggest_left_key = fst (findMax fm_l); 27.36/11.28 } in biggest_left_key < key; 27.36/11.28 left_size = sizeFM fm_l; 27.36/11.28 right_ok = right_ok0 fm_r key fm_r; 27.36/11.28 right_ok0 fm_r key EmptyFM = True; 27.36/11.28 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 27.36/11.28 smallest_right_key = fst (findMin fm_r); 27.36/11.28 } in key < smallest_right_key; 27.36/11.28 right_size = sizeFM fm_r; 27.36/11.28 unbox :: Int -> Int; 27.36/11.28 unbox x = x; 27.36/11.28 }; 27.36/11.28 27.36/11.28 sIZE_RATIO :: Int; 27.36/11.28 sIZE_RATIO = 5; 27.36/11.28 27.36/11.28 sizeFM :: FiniteMap b a -> Int; 27.36/11.28 sizeFM EmptyFM = 0; 27.36/11.28 sizeFM (Branch _ _ size _ _) = size; 27.36/11.28 27.36/11.28 } 27.36/11.28 module Maybe where { 27.36/11.28 import qualified FiniteMap; 27.36/11.28 import qualified Main; 27.36/11.28 import qualified Prelude; 27.36/11.28 } 27.36/11.28 module Main where { 27.36/11.28 import qualified FiniteMap; 27.36/11.28 import qualified Maybe; 27.36/11.28 import qualified Prelude; 27.36/11.28 } 27.36/11.28 27.36/11.28 ---------------------------------------- 27.36/11.28 27.36/11.28 (5) IFR (EQUIVALENT) 27.36/11.28 If Reductions: 27.36/11.28 The following If expression 27.36/11.28 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 27.36/11.28 is transformed to 27.36/11.28 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 27.36/11.28 primDivNatS0 x y False = Zero; 27.36/11.28 " 27.36/11.28 The following If expression 27.36/11.28 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 27.36/11.28 is transformed to 27.36/11.28 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 27.36/11.28 primModNatS0 x y False = Succ x; 27.36/11.28 " 27.36/11.28 27.36/11.28 ---------------------------------------- 27.36/11.28 27.36/11.28 (6) 27.36/11.28 Obligation: 27.36/11.28 mainModule Main 27.36/11.28 module FiniteMap where { 27.36/11.28 import qualified Main; 27.36/11.28 import qualified Maybe; 27.36/11.28 import qualified Prelude; 27.36/11.28 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 27.36/11.28 27.36/11.28 instance (Eq a, Eq b) => Eq FiniteMap a b where { 27.36/11.28 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 27.36/11.28 } 27.36/11.28 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 27.36/11.28 delFromFM EmptyFM del_key = emptyFM; 27.36/11.28 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 27.36/11.28 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 27.36/11.28 | key == del_key = glueBal fm_l fm_r; 27.36/11.28 27.36/11.28 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 27.36/11.28 deleteMax (Branch key elt _ fm_l EmptyFM) = fm_l; 27.36/11.28 deleteMax (Branch key elt _ fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 27.36/11.28 27.36/11.28 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 27.36/11.28 deleteMin (Branch key elt _ EmptyFM fm_r) = fm_r; 27.36/11.28 deleteMin (Branch key elt _ fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 27.36/11.28 27.36/11.28 emptyFM :: FiniteMap a b; 27.36/11.28 emptyFM = EmptyFM; 27.36/11.28 27.36/11.28 findMax :: FiniteMap b a -> (b,a); 27.36/11.28 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 27.36/11.28 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 27.36/11.28 27.36/11.28 findMin :: FiniteMap a b -> (a,b); 27.36/11.28 findMin (Branch key elt _ EmptyFM _) = (key,elt); 27.36/11.28 findMin (Branch key elt _ fm_l _) = findMin fm_l; 27.36/11.28 27.36/11.28 fmToList :: FiniteMap b a -> [(b,a)]; 27.36/11.28 fmToList fm = foldFM fmToList0 [] fm; 27.36/11.28 27.36/11.28 fmToList0 key elt rest = (key,elt) : rest; 27.36/11.28 27.36/11.28 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 27.36/11.28 foldFM k z EmptyFM = z; 27.36/11.28 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 27.36/11.28 27.36/11.28 glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 27.36/11.28 glueBal EmptyFM fm2 = fm2; 27.36/11.28 glueBal fm1 EmptyFM = fm1; 27.36/11.28 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 27.36/11.28 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 27.36/11.28 mid_elt1 = mid_elt10 vv2; 27.36/11.28 mid_elt10 (_,mid_elt1) = mid_elt1; 27.36/11.28 mid_elt2 = mid_elt20 vv3; 27.36/11.28 mid_elt20 (_,mid_elt2) = mid_elt2; 27.36/11.28 mid_key1 = mid_key10 vv2; 27.36/11.28 mid_key10 (mid_key1,_) = mid_key1; 27.36/11.28 mid_key2 = mid_key20 vv3; 27.36/11.28 mid_key20 (mid_key2,_) = mid_key2; 27.36/11.28 vv2 = findMax fm1; 27.36/11.28 vv3 = findMin fm2; 27.36/11.28 }; 27.36/11.28 27.36/11.28 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 27.36/11.28 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 27.36/11.28 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 27.36/11.28 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 27.36/11.28 | otherwise = mkBranch 2 key elt fm_L fm_R where { 27.36/11.28 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); 27.36/11.28 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); 27.36/11.28 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 27.36/11.28 | otherwise = double_L fm_L fm_R; 27.36/11.28 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 27.36/11.28 | otherwise = double_R fm_L fm_R; 27.36/11.28 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; 27.36/11.28 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); 27.36/11.28 size_l = sizeFM fm_L; 27.36/11.28 size_r = sizeFM fm_R; 27.36/11.28 }; 27.36/11.28 27.36/11.28 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 27.36/11.28 mkBranch which key elt fm_l fm_r = let { 27.36/11.28 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 27.36/11.28 } in result where { 27.36/11.28 balance_ok = True; 27.36/11.28 left_ok = left_ok0 fm_l key fm_l; 27.36/11.28 left_ok0 fm_l key EmptyFM = True; 27.36/11.28 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 27.36/11.28 biggest_left_key = fst (findMax fm_l); 27.36/11.28 } in biggest_left_key < key; 27.36/11.28 left_size = sizeFM fm_l; 27.36/11.28 right_ok = right_ok0 fm_r key fm_r; 27.36/11.28 right_ok0 fm_r key EmptyFM = True; 27.36/11.28 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 27.36/11.28 smallest_right_key = fst (findMin fm_r); 27.36/11.28 } in key < smallest_right_key; 27.36/11.28 right_size = sizeFM fm_r; 27.36/11.28 unbox :: Int -> Int; 27.36/11.28 unbox x = x; 27.36/11.28 }; 27.36/11.28 27.36/11.28 sIZE_RATIO :: Int; 27.36/11.28 sIZE_RATIO = 5; 27.36/11.28 27.36/11.28 sizeFM :: FiniteMap a b -> Int; 27.36/11.28 sizeFM EmptyFM = 0; 27.36/11.28 sizeFM (Branch _ _ size _ _) = size; 27.36/11.28 27.36/11.28 } 27.36/11.28 module Maybe where { 27.36/11.28 import qualified FiniteMap; 27.36/11.28 import qualified Main; 27.36/11.28 import qualified Prelude; 27.36/11.28 } 27.36/11.28 module Main where { 27.36/11.28 import qualified FiniteMap; 27.36/11.28 import qualified Maybe; 27.36/11.28 import qualified Prelude; 27.36/11.28 } 27.36/11.28 27.36/11.28 ---------------------------------------- 27.36/11.28 27.36/11.28 (7) BR (EQUIVALENT) 27.36/11.28 Replaced joker patterns by fresh variables and removed binding patterns. 27.36/11.28 ---------------------------------------- 27.36/11.28 27.36/11.28 (8) 27.36/11.28 Obligation: 27.36/11.28 mainModule Main 27.36/11.28 module FiniteMap where { 27.36/11.28 import qualified Main; 27.36/11.28 import qualified Maybe; 27.36/11.28 import qualified Prelude; 27.36/11.28 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 27.36/11.28 27.36/11.28 instance (Eq a, Eq b) => Eq FiniteMap b a where { 27.36/11.28 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 27.36/11.28 } 27.36/11.28 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 27.36/11.28 delFromFM EmptyFM del_key = emptyFM; 27.36/11.28 delFromFM (Branch key elt size fm_l fm_r) del_key | del_key > key = mkBalBranch key elt fm_l (delFromFM fm_r del_key) 27.36/11.28 | del_key < key = mkBalBranch key elt (delFromFM fm_l del_key) fm_r 27.36/11.28 | key == del_key = glueBal fm_l fm_r; 27.36/11.28 27.36/11.28 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 27.36/11.28 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 27.36/11.28 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 27.36/11.28 27.36/11.28 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 27.36/11.28 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 27.36/11.28 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 27.36/11.28 27.36/11.28 emptyFM :: FiniteMap b a; 27.36/11.28 emptyFM = EmptyFM; 27.36/11.28 27.36/11.28 findMax :: FiniteMap a b -> (a,b); 27.36/11.28 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 27.36/11.28 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 27.36/11.28 27.36/11.28 findMin :: FiniteMap b a -> (b,a); 27.36/11.28 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 27.36/11.28 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 27.36/11.28 27.36/11.28 fmToList :: FiniteMap a b -> [(a,b)]; 27.36/11.28 fmToList fm = foldFM fmToList0 [] fm; 27.36/11.28 27.36/11.28 fmToList0 key elt rest = (key,elt) : rest; 27.36/11.28 27.36/11.28 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 27.36/11.28 foldFM k z EmptyFM = z; 27.36/11.28 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 27.36/11.28 27.36/11.28 glueBal :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 27.36/11.28 glueBal EmptyFM fm2 = fm2; 27.36/11.28 glueBal fm1 EmptyFM = fm1; 27.36/11.28 glueBal fm1 fm2 | sizeFM fm2 > sizeFM fm1 = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2) 27.36/11.28 | otherwise = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 27.36/11.28 mid_elt1 = mid_elt10 vv2; 27.36/11.28 mid_elt10 (vyw,mid_elt1) = mid_elt1; 27.36/11.28 mid_elt2 = mid_elt20 vv3; 27.36/11.28 mid_elt20 (vyv,mid_elt2) = mid_elt2; 27.36/11.28 mid_key1 = mid_key10 vv2; 27.36/11.28 mid_key10 (mid_key1,vyx) = mid_key1; 27.36/11.28 mid_key2 = mid_key20 vv3; 27.36/11.28 mid_key20 (mid_key2,vyy) = mid_key2; 27.36/11.28 vv2 = findMax fm1; 27.36/11.28 vv3 = findMin fm2; 27.36/11.28 }; 27.36/11.28 27.36/11.28 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 27.36/11.28 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 27.36/11.28 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 27.36/11.28 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 27.36/11.28 | otherwise = mkBranch 2 key elt fm_L fm_R where { 27.36/11.28 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); 27.36/11.28 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); 27.36/11.28 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 27.36/11.28 | otherwise = double_L fm_L fm_R; 27.36/11.28 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 27.36/11.28 | otherwise = double_R fm_L fm_R; 27.36/11.28 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; 27.36/11.28 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); 27.36/11.28 size_l = sizeFM fm_L; 27.36/11.28 size_r = sizeFM fm_R; 27.36/11.28 }; 27.36/11.28 27.36/11.28 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 27.36/11.28 mkBranch which key elt fm_l fm_r = let { 27.36/11.28 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 27.36/11.28 } in result where { 27.36/11.28 balance_ok = True; 27.36/11.28 left_ok = left_ok0 fm_l key fm_l; 27.36/11.28 left_ok0 fm_l key EmptyFM = True; 27.36/11.28 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 27.36/11.28 biggest_left_key = fst (findMax fm_l); 27.36/11.28 } in biggest_left_key < key; 27.36/11.28 left_size = sizeFM fm_l; 27.36/11.28 right_ok = right_ok0 fm_r key fm_r; 27.36/11.28 right_ok0 fm_r key EmptyFM = True; 27.36/11.28 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 27.36/11.28 smallest_right_key = fst (findMin fm_r); 27.36/11.28 } in key < smallest_right_key; 27.36/11.28 right_size = sizeFM fm_r; 27.36/11.28 unbox :: Int -> Int; 27.36/11.28 unbox x = x; 27.36/11.28 }; 27.36/11.28 27.36/11.28 sIZE_RATIO :: Int; 27.36/11.28 sIZE_RATIO = 5; 27.36/11.28 27.36/11.28 sizeFM :: FiniteMap a b -> Int; 27.36/11.28 sizeFM EmptyFM = 0; 27.36/11.28 sizeFM (Branch vzu vzv size vzw vzx) = size; 27.36/11.28 27.36/11.28 } 27.36/11.28 module Maybe where { 27.36/11.28 import qualified FiniteMap; 27.36/11.28 import qualified Main; 27.36/11.28 import qualified Prelude; 27.36/11.28 } 27.36/11.28 module Main where { 27.36/11.28 import qualified FiniteMap; 27.36/11.28 import qualified Maybe; 27.36/11.28 import qualified Prelude; 27.36/11.28 } 27.36/11.28 27.36/11.28 ---------------------------------------- 27.36/11.28 27.36/11.28 (9) COR (EQUIVALENT) 27.36/11.28 Cond Reductions: 27.36/11.28 The following Function with conditions 27.36/11.28 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 27.36/11.28 " 27.36/11.28 is transformed to 27.36/11.28 "compare x y = compare3 x y; 27.36/11.28 " 27.36/11.28 "compare2 x y True = EQ; 27.36/11.28 compare2 x y False = compare1 x y (x <= y); 27.36/11.28 " 27.36/11.28 "compare1 x y True = LT; 27.36/11.28 compare1 x y False = compare0 x y otherwise; 27.36/11.28 " 27.36/11.28 "compare0 x y True = GT; 27.36/11.28 " 27.36/11.28 "compare3 x y = compare2 x y (x == y); 27.36/11.28 " 27.36/11.28 The following Function with conditions 27.36/11.28 "absReal x|x >= 0x|otherwise`negate` x; 27.36/11.28 " 27.36/11.28 is transformed to 27.36/11.28 "absReal x = absReal2 x; 27.36/11.28 " 27.36/11.28 "absReal0 x True = `negate` x; 27.36/11.28 " 27.36/11.28 "absReal1 x True = x; 27.36/11.28 absReal1 x False = absReal0 x otherwise; 27.36/11.28 " 27.36/11.28 "absReal2 x = absReal1 x (x >= 0); 27.36/11.28 " 27.36/11.28 The following Function with conditions 27.36/11.28 "gcd' x 0 = x; 27.36/11.28 gcd' x y = gcd' y (x `rem` y); 27.36/11.28 " 27.36/11.28 is transformed to 27.36/11.28 "gcd' x wuy = gcd'2 x wuy; 27.36/11.28 gcd' x y = gcd'0 x y; 27.36/11.28 " 27.36/11.28 "gcd'0 x y = gcd' y (x `rem` y); 27.36/11.28 " 27.36/11.28 "gcd'1 True x wuy = x; 27.36/11.28 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 27.36/11.28 " 27.36/11.28 "gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 27.36/11.28 gcd'2 wvw wvx = gcd'0 wvw wvx; 27.36/11.28 " 27.36/11.28 The following Function with conditions 27.36/11.28 "gcd 0 0 = error []; 27.36/11.28 gcd x y = gcd' (abs x) (abs y) where { 27.36/11.28 gcd' x 0 = x; 27.36/11.28 gcd' x y = gcd' y (x `rem` y); 27.36/11.28 } 27.36/11.28 ; 27.36/11.28 " 27.36/11.28 is transformed to 27.36/11.28 "gcd wvy wvz = gcd3 wvy wvz; 27.36/11.28 gcd x y = gcd0 x y; 27.36/11.28 " 27.36/11.28 "gcd0 x y = gcd' (abs x) (abs y) where { 27.36/11.28 gcd' x wuy = gcd'2 x wuy; 27.36/11.28 gcd' x y = gcd'0 x y; 27.36/11.28 ; 27.36/11.28 gcd'0 x y = gcd' y (x `rem` y); 27.36/11.28 ; 27.36/11.28 gcd'1 True x wuy = x; 27.36/11.28 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 27.36/11.28 ; 27.36/11.28 gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 27.36/11.28 gcd'2 wvw wvx = gcd'0 wvw wvx; 27.36/11.28 } 27.36/11.28 ; 27.36/11.28 " 27.36/11.28 "gcd1 True wvy wvz = error []; 27.36/11.28 gcd1 wwu wwv www = gcd0 wwv www; 27.36/11.28 " 27.36/11.28 "gcd2 True wvy wvz = gcd1 (wvz == 0) wvy wvz; 27.36/11.28 gcd2 wwx wwy wwz = gcd0 wwy wwz; 27.36/11.28 " 27.36/11.28 "gcd3 wvy wvz = gcd2 (wvy == 0) wvy wvz; 27.36/11.28 gcd3 wxu wxv = gcd0 wxu wxv; 27.36/11.28 " 27.36/11.28 The following Function with conditions 27.36/11.28 "undefined |Falseundefined; 27.36/11.28 " 27.36/11.28 is transformed to 27.36/11.28 "undefined = undefined1; 27.36/11.28 " 27.36/11.28 "undefined0 True = undefined; 27.36/11.28 " 27.36/11.28 "undefined1 = undefined0 False; 27.36/11.28 " 27.36/11.28 The following Function with conditions 27.36/11.28 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 27.36/11.28 d = gcd x y; 27.36/11.28 } 27.36/11.28 ; 27.36/11.28 " 27.36/11.28 is transformed to 27.36/11.28 "reduce x y = reduce2 x y; 27.36/11.28 " 27.36/11.28 "reduce2 x y = reduce1 x y (y == 0) where { 27.36/11.28 d = gcd x y; 27.36/11.28 ; 27.36/11.28 reduce0 x y True = x `quot` d :% (y `quot` d); 27.36/11.28 ; 27.36/11.28 reduce1 x y True = error []; 27.36/11.28 reduce1 x y False = reduce0 x y otherwise; 27.36/11.28 } 27.36/11.28 ; 27.36/11.28 " 27.36/11.28 The following Function with conditions 27.36/11.28 "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; 27.36/11.28 " 27.36/11.28 is transformed to 27.36/11.28 "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); 27.36/11.28 " 27.36/11.28 "mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 27.36/11.28 " 27.36/11.28 "mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 27.36/11.28 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; 27.36/11.28 " 27.36/11.28 "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); 27.36/11.28 " 27.36/11.28 The following Function with conditions 27.36/11.28 "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; 27.36/11.28 " 27.36/11.28 is transformed to 27.36/11.28 "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); 27.36/11.28 " 27.36/11.28 "mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 27.36/11.28 " 27.36/11.28 "mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 27.36/11.28 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; 27.36/11.28 " 27.36/11.28 "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); 27.36/11.28 " 27.36/11.28 The following Function with conditions 27.36/11.28 "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 { 27.36/11.28 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); 27.36/11.28 ; 27.36/11.28 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); 27.36/11.28 ; 27.36/11.28 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; 27.36/11.28 ; 27.36/11.28 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; 27.36/11.28 ; 27.36/11.28 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; 27.36/11.28 ; 27.36/11.28 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); 27.36/11.28 ; 27.36/11.28 size_l = sizeFM fm_L; 27.36/11.28 ; 27.36/11.28 size_r = sizeFM fm_R; 27.36/11.28 } 27.36/11.28 ; 27.36/11.28 " 27.36/11.28 is transformed to 27.36/11.28 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 27.36/11.28 " 27.36/11.28 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 27.36/11.28 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); 27.36/11.28 ; 27.36/11.28 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); 27.36/11.28 ; 27.36/11.28 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); 27.36/11.28 ; 27.36/11.28 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 27.36/11.28 ; 27.36/11.28 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 27.36/11.28 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; 27.36/11.28 ; 27.36/11.28 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); 27.36/11.28 ; 27.36/11.28 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); 27.36/11.28 ; 27.36/11.28 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 27.36/11.28 ; 27.36/11.28 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 27.36/11.28 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; 27.36/11.28 ; 27.36/11.28 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); 27.36/11.28 ; 27.36/11.28 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 27.36/11.28 ; 27.36/11.28 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 27.36/11.28 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 27.36/11.28 ; 27.36/11.28 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 27.36/11.28 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 27.36/11.28 ; 27.36/11.28 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 27.36/11.28 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 27.36/11.28 ; 27.36/11.28 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; 27.36/11.28 ; 27.36/11.28 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); 27.36/11.28 ; 27.36/11.28 size_l = sizeFM fm_L; 27.36/11.28 ; 27.36/11.28 size_r = sizeFM fm_R; 27.36/11.28 } 27.36/11.28 ; 27.36/11.28 " 27.36/11.28 The following Function with conditions 27.36/11.28 "glueBal EmptyFM fm2 = fm2; 27.36/11.28 glueBal fm1 EmptyFM = fm1; 27.36/11.28 glueBal fm1 fm2|sizeFM fm2 > sizeFM fm1mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2)|otherwisemkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2 where { 27.36/11.28 mid_elt1 = mid_elt10 vv2; 27.36/11.28 ; 27.36/11.28 mid_elt10 (vyw,mid_elt1) = mid_elt1; 27.36/11.28 ; 27.36/11.28 mid_elt2 = mid_elt20 vv3; 27.36/11.28 ; 27.36/11.28 mid_elt20 (vyv,mid_elt2) = mid_elt2; 27.36/11.28 ; 27.36/11.28 mid_key1 = mid_key10 vv2; 27.36/11.28 ; 27.36/11.28 mid_key10 (mid_key1,vyx) = mid_key1; 27.36/11.28 ; 27.36/11.28 mid_key2 = mid_key20 vv3; 27.36/11.28 ; 27.36/11.28 mid_key20 (mid_key2,vyy) = mid_key2; 27.36/11.28 ; 27.36/11.28 vv2 = findMax fm1; 27.36/11.28 ; 27.36/11.28 vv3 = findMin fm2; 27.36/11.28 } 27.36/11.28 ; 27.36/11.28 " 27.36/11.28 is transformed to 27.36/11.28 "glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 27.36/11.28 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 27.36/11.28 glueBal fm1 fm2 = glueBal2 fm1 fm2; 27.36/11.28 " 27.36/11.28 "glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 27.36/11.28 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 27.36/11.28 ; 27.36/11.28 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 27.36/11.28 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 27.36/11.28 ; 27.36/11.28 mid_elt1 = mid_elt10 vv2; 27.36/11.28 ; 27.36/11.28 mid_elt10 (vyw,mid_elt1) = mid_elt1; 27.36/11.28 ; 27.36/11.28 mid_elt2 = mid_elt20 vv3; 27.36/11.28 ; 27.36/11.28 mid_elt20 (vyv,mid_elt2) = mid_elt2; 27.36/11.28 ; 27.36/11.28 mid_key1 = mid_key10 vv2; 27.36/11.28 ; 27.36/11.28 mid_key10 (mid_key1,vyx) = mid_key1; 27.36/11.28 ; 27.36/11.28 mid_key2 = mid_key20 vv3; 27.36/11.28 ; 27.36/11.28 mid_key20 (mid_key2,vyy) = mid_key2; 27.36/11.28 ; 27.36/11.28 vv2 = findMax fm1; 27.36/11.28 ; 27.36/11.28 vv3 = findMin fm2; 27.36/11.28 } 27.36/11.28 ; 27.36/11.28 " 27.36/11.28 "glueBal3 fm1 EmptyFM = fm1; 27.36/11.28 glueBal3 wxz wyu = glueBal2 wxz wyu; 27.36/11.28 " 27.36/11.28 "glueBal4 EmptyFM fm2 = fm2; 27.36/11.28 glueBal4 wyw wyx = glueBal3 wyw wyx; 27.36/11.28 " 27.36/11.28 The following Function with conditions 27.36/11.29 "delFromFM EmptyFM del_key = emptyFM; 27.36/11.29 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; 27.36/11.29 " 27.36/11.29 is transformed to 27.36/11.29 "delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 27.36/11.29 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 27.36/11.29 " 27.36/11.29 "delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 27.36/11.29 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 27.36/11.29 " 27.36/11.29 "delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 27.36/11.29 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 27.36/11.29 " 27.36/11.29 "delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 27.36/11.29 " 27.36/11.29 "delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 27.36/11.29 " 27.36/11.29 "delFromFM4 EmptyFM del_key = emptyFM; 27.36/11.29 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 27.36/11.29 " 27.36/11.29 27.36/11.29 ---------------------------------------- 27.36/11.29 27.36/11.29 (10) 27.36/11.29 Obligation: 27.36/11.29 mainModule Main 27.36/11.29 module FiniteMap where { 27.36/11.29 import qualified Main; 27.36/11.29 import qualified Maybe; 27.36/11.29 import qualified Prelude; 27.36/11.29 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 27.36/11.29 27.36/11.29 instance (Eq a, Eq b) => Eq FiniteMap a b where { 27.36/11.29 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 27.36/11.29 } 27.36/11.29 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 27.36/11.29 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 27.36/11.29 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 27.36/11.29 27.36/11.29 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 27.36/11.29 27.36/11.29 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 27.36/11.29 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 27.36/11.29 27.36/11.29 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 27.36/11.29 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 27.36/11.29 27.36/11.29 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 27.36/11.29 27.36/11.29 delFromFM4 EmptyFM del_key = emptyFM; 27.36/11.29 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 27.36/11.29 27.36/11.29 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 27.36/11.29 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 27.36/11.29 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 27.36/11.29 27.36/11.29 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 27.36/11.29 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 27.36/11.29 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 27.36/11.29 27.36/11.29 emptyFM :: FiniteMap a b; 27.36/11.29 emptyFM = EmptyFM; 27.36/11.29 27.36/11.29 findMax :: FiniteMap a b -> (a,b); 27.36/11.29 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 27.36/11.29 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 27.36/11.29 27.36/11.29 findMin :: FiniteMap b a -> (b,a); 27.36/11.29 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 27.36/11.29 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 27.36/11.29 27.36/11.29 fmToList :: FiniteMap a b -> [(a,b)]; 27.36/11.29 fmToList fm = foldFM fmToList0 [] fm; 27.36/11.29 27.36/11.29 fmToList0 key elt rest = (key,elt) : rest; 27.36/11.29 27.36/11.29 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 27.36/11.29 foldFM k z EmptyFM = z; 27.36/11.29 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 27.36/11.29 27.36/11.29 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 27.36/11.29 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 27.36/11.29 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 27.36/11.29 glueBal fm1 fm2 = glueBal2 fm1 fm2; 27.36/11.29 27.36/11.29 glueBal2 fm1 fm2 = glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 27.36/11.29 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 27.36/11.29 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 27.36/11.29 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 27.36/11.29 mid_elt1 = mid_elt10 vv2; 27.36/11.29 mid_elt10 (vyw,mid_elt1) = mid_elt1; 27.36/11.29 mid_elt2 = mid_elt20 vv3; 27.36/11.29 mid_elt20 (vyv,mid_elt2) = mid_elt2; 27.36/11.29 mid_key1 = mid_key10 vv2; 27.36/11.29 mid_key10 (mid_key1,vyx) = mid_key1; 27.70/11.33 mid_key2 = mid_key20 vv3; 27.70/11.33 mid_key20 (mid_key2,vyy) = mid_key2; 27.70/11.33 vv2 = findMax fm1; 27.70/11.33 vv3 = findMin fm2; 27.70/11.33 }; 27.70/11.33 27.70/11.33 glueBal3 fm1 EmptyFM = fm1; 27.70/11.33 glueBal3 wxz wyu = glueBal2 wxz wyu; 27.70/11.33 27.70/11.33 glueBal4 EmptyFM fm2 = fm2; 27.70/11.33 glueBal4 wyw wyx = glueBal3 wyw wyx; 27.70/11.33 27.70/11.33 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 27.70/11.33 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 27.70/11.33 27.70/11.33 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 27.70/11.33 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); 27.70/11.33 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); 27.70/11.33 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); 27.70/11.33 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 27.70/11.34 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 27.70/11.34 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; 27.70/11.34 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); 27.70/11.34 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); 27.70/11.34 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 27.70/11.34 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 27.70/11.34 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; 27.70/11.34 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); 27.70/11.34 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 27.70/11.34 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 27.70/11.34 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 27.70/11.34 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 27.70/11.34 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 27.70/11.34 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 27.70/11.34 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 27.70/11.34 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; 27.70/11.34 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); 27.70/11.34 size_l = sizeFM fm_L; 27.70/11.34 size_r = sizeFM fm_R; 27.70/11.34 }; 27.70/11.34 27.70/11.34 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 27.70/11.34 mkBranch which key elt fm_l fm_r = let { 27.70/11.34 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 27.70/11.34 } in result where { 27.70/11.34 balance_ok = True; 27.70/11.34 left_ok = left_ok0 fm_l key fm_l; 27.70/11.34 left_ok0 fm_l key EmptyFM = True; 27.70/11.34 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 27.70/11.34 biggest_left_key = fst (findMax fm_l); 27.70/11.34 } in biggest_left_key < key; 27.70/11.34 left_size = sizeFM fm_l; 27.70/11.34 right_ok = right_ok0 fm_r key fm_r; 27.70/11.34 right_ok0 fm_r key EmptyFM = True; 27.70/11.34 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 27.70/11.34 smallest_right_key = fst (findMin fm_r); 27.70/11.34 } in key < smallest_right_key; 27.70/11.34 right_size = sizeFM fm_r; 27.70/11.34 unbox :: Int -> Int; 27.70/11.34 unbox x = x; 27.70/11.34 }; 27.70/11.34 27.70/11.34 sIZE_RATIO :: Int; 27.70/11.34 sIZE_RATIO = 5; 27.70/11.34 27.70/11.34 sizeFM :: FiniteMap a b -> Int; 27.70/11.34 sizeFM EmptyFM = 0; 27.70/11.34 sizeFM (Branch vzu vzv size vzw vzx) = size; 27.70/11.34 27.70/11.34 } 27.70/11.34 module Maybe where { 27.70/11.34 import qualified FiniteMap; 27.70/11.34 import qualified Main; 27.70/11.34 import qualified Prelude; 27.70/11.34 } 27.70/11.34 module Main where { 27.70/11.34 import qualified FiniteMap; 27.70/11.34 import qualified Maybe; 27.70/11.34 import qualified Prelude; 27.70/11.34 } 27.70/11.34 27.70/11.34 ---------------------------------------- 27.70/11.34 27.70/11.34 (11) LetRed (EQUIVALENT) 27.70/11.34 Let/Where Reductions: 27.70/11.34 The bindings of the following Let/Where expression 27.70/11.34 "gcd' (abs x) (abs y) where { 27.70/11.34 gcd' x wuy = gcd'2 x wuy; 27.70/11.34 gcd' x y = gcd'0 x y; 27.70/11.34 ; 27.70/11.34 gcd'0 x y = gcd' y (x `rem` y); 27.70/11.34 ; 27.70/11.34 gcd'1 True x wuy = x; 27.70/11.34 gcd'1 wuz wvu wvv = gcd'0 wvu wvv; 27.70/11.34 ; 27.70/11.34 gcd'2 x wuy = gcd'1 (wuy == 0) x wuy; 27.70/11.34 gcd'2 wvw wvx = gcd'0 wvw wvx; 27.70/11.34 } 27.70/11.34 " 27.70/11.34 are unpacked to the following functions on top level 27.70/11.34 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 27.70/11.34 " 27.70/11.34 "gcd0Gcd' x wuy = gcd0Gcd'2 x wuy; 27.70/11.34 gcd0Gcd' x y = gcd0Gcd'0 x y; 27.70/11.34 " 27.70/11.34 "gcd0Gcd'2 x wuy = gcd0Gcd'1 (wuy == 0) x wuy; 27.70/11.34 gcd0Gcd'2 wvw wvx = gcd0Gcd'0 wvw wvx; 27.70/11.34 " 27.70/11.34 "gcd0Gcd'1 True x wuy = x; 27.70/11.34 gcd0Gcd'1 wuz wvu wvv = gcd0Gcd'0 wvu wvv; 27.70/11.34 " 27.70/11.34 The bindings of the following Let/Where expression 27.70/11.34 "reduce1 x y (y == 0) where { 27.70/11.34 d = gcd x y; 27.70/11.34 ; 27.70/11.34 reduce0 x y True = x `quot` d :% (y `quot` d); 27.70/11.34 ; 27.70/11.34 reduce1 x y True = error []; 27.70/11.34 reduce1 x y False = reduce0 x y otherwise; 27.70/11.34 } 27.70/11.34 " 27.70/11.34 are unpacked to the following functions on top level 27.70/11.34 "reduce2D wzw wzx = gcd wzw wzx; 27.70/11.34 " 27.70/11.34 "reduce2Reduce1 wzw wzx x y True = error []; 27.70/11.34 reduce2Reduce1 wzw wzx x y False = reduce2Reduce0 wzw wzx x y otherwise; 27.70/11.34 " 27.70/11.34 "reduce2Reduce0 wzw wzx x y True = x `quot` reduce2D wzw wzx :% (y `quot` reduce2D wzw wzx); 27.70/11.34 " 27.70/11.34 The bindings of the following Let/Where expression 27.70/11.34 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 27.70/11.34 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); 27.70/11.34 ; 27.70/11.34 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); 27.70/11.34 ; 27.70/11.34 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); 27.70/11.34 ; 27.70/11.34 mkBalBranch00 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = double_L fm_L fm_R; 27.70/11.34 ; 27.70/11.34 mkBalBranch01 fm_L fm_R vxx vxy vxz fm_rl fm_rr True = single_L fm_L fm_R; 27.70/11.34 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; 27.70/11.34 ; 27.70/11.34 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); 27.70/11.34 ; 27.70/11.34 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); 27.70/11.34 ; 27.70/11.34 mkBalBranch10 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = double_R fm_L fm_R; 27.70/11.34 ; 27.70/11.34 mkBalBranch11 fm_L fm_R vwy vwz vxu fm_ll fm_lr True = single_R fm_L fm_R; 27.70/11.34 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; 27.70/11.34 ; 27.70/11.34 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); 27.70/11.34 ; 27.70/11.34 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 27.70/11.34 ; 27.70/11.34 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 27.70/11.34 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 27.70/11.34 ; 27.70/11.34 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 27.70/11.34 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 27.70/11.34 ; 27.70/11.34 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 27.70/11.34 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 27.70/11.34 ; 27.70/11.34 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; 27.70/11.34 ; 27.70/11.34 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); 27.70/11.34 ; 27.70/11.34 size_l = sizeFM fm_L; 27.70/11.34 ; 27.70/11.34 size_r = sizeFM fm_R; 27.70/11.34 } 27.70/11.34 " 27.70/11.34 are unpacked to the following functions on top level 27.70/11.34 "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); 27.70/11.34 " 27.70/11.34 "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); 27.70/11.34 " 27.70/11.34 "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; 27.70/11.34 " 27.70/11.34 "mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 27.70/11.34 " 27.70/11.34 "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; 27.70/11.34 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; 27.70/11.34 " 27.70/11.34 "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); 27.70/11.34 " 27.70/11.34 "mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 27.70/11.34 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); 27.70/11.34 " 27.70/11.34 "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; 27.70/11.34 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; 27.70/11.34 " 27.70/11.34 "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; 27.70/11.34 " 27.70/11.34 "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); 27.70/11.34 " 27.70/11.34 "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); 27.70/11.34 " 27.70/11.34 "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); 27.70/11.34 " 27.70/11.34 "mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 27.70/11.34 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); 27.70/11.34 " 27.70/11.34 "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; 27.70/11.34 " 27.70/11.34 "mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuu; 27.70/11.34 " 27.70/11.34 "mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuv; 27.70/11.34 " 27.70/11.34 "mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 27.70/11.34 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 27.70/11.34 " 27.70/11.34 "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); 27.70/11.34 " 27.70/11.34 The bindings of the following Let/Where expression 27.70/11.34 "let { 27.70/11.34 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 27.70/11.34 } in result where { 27.70/11.34 balance_ok = True; 27.70/11.34 ; 27.70/11.34 left_ok = left_ok0 fm_l key fm_l; 27.70/11.34 ; 27.70/11.34 left_ok0 fm_l key EmptyFM = True; 27.70/11.34 left_ok0 fm_l key (Branch left_key vuv vuw vux vuy) = let { 27.70/11.34 biggest_left_key = fst (findMax fm_l); 27.70/11.34 } in biggest_left_key < key; 27.70/11.34 ; 27.70/11.34 left_size = sizeFM fm_l; 27.70/11.34 ; 27.70/11.34 right_ok = right_ok0 fm_r key fm_r; 27.70/11.34 ; 27.70/11.34 right_ok0 fm_r key EmptyFM = True; 27.70/11.34 right_ok0 fm_r key (Branch right_key vuz vvu vvv vvw) = let { 27.70/11.34 smallest_right_key = fst (findMin fm_r); 27.70/11.34 } in key < smallest_right_key; 27.70/11.34 ; 27.70/11.34 right_size = sizeFM fm_r; 27.70/11.34 ; 27.70/11.34 unbox x = x; 27.70/11.34 } 27.70/11.34 " 27.70/11.34 are unpacked to the following functions on top level 27.70/11.34 "mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xux xuw; 27.70/11.34 " 27.70/11.34 "mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 27.70/11.34 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 27.70/11.34 " 27.70/11.34 "mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 27.70/11.34 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 27.70/11.34 " 27.70/11.34 "mkBranchLeft_size xuw xux xuy = sizeFM xuw; 27.70/11.34 " 27.70/11.34 "mkBranchBalance_ok xuw xux xuy = True; 27.70/11.34 " 27.70/11.34 "mkBranchRight_size xuw xux xuy = sizeFM xuy; 27.70/11.34 " 27.70/11.34 "mkBranchUnbox xuw xux xuy x = x; 27.70/11.34 " 27.70/11.34 "mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuy xux xuy; 27.70/11.34 " 27.70/11.34 The bindings of the following Let/Where expression 27.70/11.34 "let { 27.70/11.34 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 27.70/11.34 } in result" 27.70/11.34 are unpacked to the following functions on top level 27.70/11.34 "mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xuz xvw (1 + mkBranchLeft_size xvv xuz xvw + mkBranchRight_size xvv xuz xvw)) xvv xvw; 27.70/11.34 " 27.70/11.34 The bindings of the following Let/Where expression 27.70/11.34 "glueBal1 fm1 fm2 (sizeFM fm2 > sizeFM fm1) where { 27.70/11.34 glueBal0 fm1 fm2 True = mkBalBranch mid_key1 mid_elt1 (deleteMax fm1) fm2; 27.70/11.34 ; 27.70/11.34 glueBal1 fm1 fm2 True = mkBalBranch mid_key2 mid_elt2 fm1 (deleteMin fm2); 27.70/11.34 glueBal1 fm1 fm2 False = glueBal0 fm1 fm2 otherwise; 27.70/11.34 ; 27.70/11.34 mid_elt1 = mid_elt10 vv2; 27.70/11.34 ; 27.70/11.34 mid_elt10 (vyw,mid_elt1) = mid_elt1; 27.70/11.34 ; 27.70/11.34 mid_elt2 = mid_elt20 vv3; 27.70/11.34 ; 27.70/11.34 mid_elt20 (vyv,mid_elt2) = mid_elt2; 27.70/11.34 ; 27.70/11.34 mid_key1 = mid_key10 vv2; 27.70/11.34 ; 27.70/11.34 mid_key10 (mid_key1,vyx) = mid_key1; 27.70/11.34 ; 27.70/11.34 mid_key2 = mid_key20 vv3; 27.70/11.34 ; 27.70/11.34 mid_key20 (mid_key2,vyy) = mid_key2; 27.70/11.34 ; 27.70/11.34 vv2 = findMax fm1; 27.70/11.34 ; 27.70/11.34 vv3 = findMin fm2; 27.70/11.34 } 27.70/11.34 " 27.70/11.34 are unpacked to the following functions on top level 27.70/11.34 "glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 27.70/11.34 " 27.70/11.34 "glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 27.70/11.34 " 27.70/11.34 "glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 27.70/11.34 " 27.70/11.34 "glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 27.70/11.34 " 27.70/11.34 "glueBal2Vv2 xvx xvy = findMax xvx; 27.70/11.34 " 27.70/11.34 "glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 27.70/11.34 " 27.70/11.34 "glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 27.70/11.34 " 27.70/11.34 "glueBal2Vv3 xvx xvy = findMin xvy; 27.70/11.34 " 27.70/11.34 "glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 27.70/11.34 " 27.70/11.34 "glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 27.70/11.34 " 27.70/11.34 "glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 27.70/11.34 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 27.70/11.34 " 27.70/11.34 "glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 27.70/11.34 " 27.70/11.34 The bindings of the following Let/Where expression 27.70/11.34 "let { 27.70/11.34 biggest_left_key = fst (findMax fm_l); 27.70/11.34 } in biggest_left_key < key" 27.70/11.34 are unpacked to the following functions on top level 27.70/11.34 "mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 27.70/11.34 " 27.70/11.34 The bindings of the following Let/Where expression 27.70/11.34 "let { 27.70/11.34 smallest_right_key = fst (findMin fm_r); 27.70/11.34 } in key < smallest_right_key" 27.70/11.34 are unpacked to the following functions on top level 27.70/11.34 "mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 27.70/11.34 " 27.70/11.34 27.70/11.34 ---------------------------------------- 27.70/11.34 27.70/11.34 (12) 27.70/11.34 Obligation: 27.70/11.34 mainModule Main 27.70/11.34 module FiniteMap where { 27.70/11.34 import qualified Main; 27.70/11.34 import qualified Maybe; 27.70/11.34 import qualified Prelude; 27.70/11.34 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 27.70/11.34 27.70/11.34 instance (Eq a, Eq b) => Eq FiniteMap a b where { 27.70/11.34 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 27.70/11.34 } 27.70/11.34 delFromFM :: Ord a => FiniteMap a b -> a -> FiniteMap a b; 27.70/11.34 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 27.70/11.34 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 27.70/11.34 27.70/11.34 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 27.70/11.34 27.70/11.34 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 27.70/11.34 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 27.70/11.34 27.70/11.34 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 27.70/11.34 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 27.70/11.34 27.70/11.34 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 27.70/11.34 27.70/11.34 delFromFM4 EmptyFM del_key = emptyFM; 27.70/11.34 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 27.70/11.34 27.70/11.34 deleteMax :: Ord a => FiniteMap a b -> FiniteMap a b; 27.70/11.34 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 27.70/11.34 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 27.70/11.34 27.70/11.34 deleteMin :: Ord a => FiniteMap a b -> FiniteMap a b; 27.70/11.34 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 27.70/11.34 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 27.70/11.34 27.70/11.34 emptyFM :: FiniteMap a b; 27.70/11.34 emptyFM = EmptyFM; 27.70/11.34 27.70/11.34 findMax :: FiniteMap b a -> (b,a); 27.70/11.34 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 27.70/11.34 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 27.70/11.34 27.70/11.34 findMin :: FiniteMap a b -> (a,b); 27.70/11.34 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 27.70/11.34 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 27.70/11.34 27.70/11.34 fmToList :: FiniteMap a b -> [(a,b)]; 27.70/11.34 fmToList fm = foldFM fmToList0 [] fm; 27.70/11.34 27.70/11.34 fmToList0 key elt rest = (key,elt) : rest; 27.70/11.34 27.70/11.34 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 27.70/11.34 foldFM k z EmptyFM = z; 27.70/11.34 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 27.70/11.34 27.70/11.34 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 27.70/11.34 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 27.70/11.34 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 27.70/11.34 glueBal fm1 fm2 = glueBal2 fm1 fm2; 27.70/11.34 27.70/11.34 glueBal2 fm1 fm2 = glueBal2GlueBal1 fm1 fm2 fm1 fm2 (sizeFM fm2 > sizeFM fm1); 27.70/11.34 27.70/11.34 glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 27.70/11.34 27.70/11.34 glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 27.70/11.34 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 27.70/11.34 27.70/11.34 glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 27.70/11.34 27.70/11.34 glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 27.70/11.34 27.70/11.34 glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 27.70/11.34 27.70/11.34 glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 27.70/11.34 27.70/11.34 glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 27.70/11.34 27.70/11.34 glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 27.70/11.34 27.70/11.34 glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 27.70/11.34 27.70/11.34 glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 27.70/11.34 27.70/11.34 glueBal2Vv2 xvx xvy = findMax xvx; 27.70/11.34 27.70/11.34 glueBal2Vv3 xvx xvy = findMin xvy; 27.70/11.34 27.70/11.34 glueBal3 fm1 EmptyFM = fm1; 27.70/11.34 glueBal3 wxz wyu = glueBal2 wxz wyu; 27.70/11.34 27.70/11.34 glueBal4 EmptyFM fm2 = fm2; 27.70/11.34 glueBal4 wyw wyx = glueBal3 wyw wyx; 27.70/11.34 27.70/11.34 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 27.70/11.34 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 27.70/11.34 27.70/11.34 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); 27.70/11.34 27.70/11.34 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); 27.70/11.34 27.70/11.34 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); 27.70/11.34 27.70/11.34 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); 27.70/11.34 27.70/11.34 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; 27.70/11.34 27.70/11.34 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; 27.70/11.34 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; 27.70/11.34 27.70/11.34 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); 27.70/11.34 27.70/11.34 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); 27.70/11.34 27.70/11.34 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; 27.70/11.34 27.70/11.34 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; 27.70/11.34 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; 27.70/11.34 27.70/11.34 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); 27.70/11.34 27.70/11.34 mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 27.70/11.34 27.70/11.34 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 27.70/11.34 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 27.70/11.34 27.70/11.34 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 27.70/11.34 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); 27.70/11.34 27.70/11.34 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 27.70/11.34 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); 27.70/11.34 27.70/11.34 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; 27.70/11.34 27.70/11.34 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); 27.70/11.34 27.70/11.34 mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuv; 27.70/11.34 27.70/11.34 mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuu; 27.70/11.34 27.70/11.34 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 27.70/11.34 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 27.70/11.34 27.70/11.34 mkBranchBalance_ok xuw xux xuy = True; 27.70/11.34 27.70/11.34 mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xux xuw; 27.70/11.34 27.70/11.34 mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 27.70/11.34 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 27.70/11.34 27.70/11.34 mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 27.70/11.34 27.70/11.34 mkBranchLeft_size xuw xux xuy = sizeFM xuw; 27.70/11.34 27.70/11.34 mkBranchResult xuz xvu xvv xvw = Branch xuz xvu (mkBranchUnbox xvv xuz xvw (1 + mkBranchLeft_size xvv xuz xvw + mkBranchRight_size xvv xuz xvw)) xvv xvw; 27.70/11.34 27.70/11.34 mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuy xux xuy; 27.70/11.34 27.70/11.34 mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 27.70/11.34 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 27.70/11.34 27.70/11.34 mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 27.70/11.34 27.70/11.34 mkBranchRight_size xuw xux xuy = sizeFM xuy; 27.70/11.34 27.70/11.34 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 27.70/11.34 mkBranchUnbox xuw xux xuy x = x; 27.70/11.34 27.70/11.34 sIZE_RATIO :: Int; 27.70/11.34 sIZE_RATIO = 5; 27.70/11.34 27.70/11.34 sizeFM :: FiniteMap a b -> Int; 27.70/11.34 sizeFM EmptyFM = 0; 27.70/11.34 sizeFM (Branch vzu vzv size vzw vzx) = size; 27.70/11.34 27.70/11.34 } 27.70/11.34 module Maybe where { 27.70/11.34 import qualified FiniteMap; 27.70/11.34 import qualified Main; 27.70/11.34 import qualified Prelude; 27.70/11.34 } 27.70/11.34 module Main where { 27.70/11.34 import qualified FiniteMap; 27.70/11.34 import qualified Maybe; 27.70/11.34 import qualified Prelude; 27.70/11.34 } 27.70/11.34 27.70/11.34 ---------------------------------------- 27.70/11.34 27.70/11.34 (13) NumRed (SOUND) 27.70/11.34 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 27.70/11.34 ---------------------------------------- 27.70/11.34 27.70/11.34 (14) 27.70/11.34 Obligation: 27.70/11.34 mainModule Main 27.70/11.34 module FiniteMap where { 27.70/11.34 import qualified Main; 27.70/11.34 import qualified Maybe; 27.70/11.34 import qualified Prelude; 27.70/11.34 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 27.70/11.34 27.70/11.34 instance (Eq a, Eq b) => Eq FiniteMap a b where { 27.70/11.34 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 27.70/11.34 } 27.70/11.34 delFromFM :: Ord b => FiniteMap b a -> b -> FiniteMap b a; 27.70/11.34 delFromFM EmptyFM del_key = delFromFM4 EmptyFM del_key; 27.70/11.34 delFromFM (Branch key elt size fm_l fm_r) del_key = delFromFM3 (Branch key elt size fm_l fm_r) del_key; 27.70/11.34 27.70/11.34 delFromFM0 key elt size fm_l fm_r del_key True = glueBal fm_l fm_r; 27.70/11.34 27.70/11.34 delFromFM1 key elt size fm_l fm_r del_key True = mkBalBranch key elt (delFromFM fm_l del_key) fm_r; 27.70/11.34 delFromFM1 key elt size fm_l fm_r del_key False = delFromFM0 key elt size fm_l fm_r del_key (key == del_key); 27.70/11.34 27.70/11.34 delFromFM2 key elt size fm_l fm_r del_key True = mkBalBranch key elt fm_l (delFromFM fm_r del_key); 27.70/11.34 delFromFM2 key elt size fm_l fm_r del_key False = delFromFM1 key elt size fm_l fm_r del_key (del_key < key); 27.70/11.34 27.70/11.34 delFromFM3 (Branch key elt size fm_l fm_r) del_key = delFromFM2 key elt size fm_l fm_r del_key (del_key > key); 27.70/11.34 27.70/11.34 delFromFM4 EmptyFM del_key = emptyFM; 27.70/11.34 delFromFM4 wzu wzv = delFromFM3 wzu wzv; 27.70/11.34 27.70/11.34 deleteMax :: Ord b => FiniteMap b a -> FiniteMap b a; 27.70/11.34 deleteMax (Branch key elt zz fm_l EmptyFM) = fm_l; 27.70/11.34 deleteMax (Branch key elt vuu fm_l fm_r) = mkBalBranch key elt fm_l (deleteMax fm_r); 27.70/11.34 27.70/11.34 deleteMin :: Ord b => FiniteMap b a -> FiniteMap b a; 27.70/11.34 deleteMin (Branch key elt vzy EmptyFM fm_r) = fm_r; 27.70/11.34 deleteMin (Branch key elt vzz fm_l fm_r) = mkBalBranch key elt (deleteMin fm_l) fm_r; 27.70/11.34 27.70/11.34 emptyFM :: FiniteMap b a; 27.70/11.34 emptyFM = EmptyFM; 27.70/11.34 27.70/11.34 findMax :: FiniteMap a b -> (a,b); 27.70/11.34 findMax (Branch key elt vvx vvy EmptyFM) = (key,elt); 27.70/11.34 findMax (Branch key elt vvz vwu fm_r) = findMax fm_r; 27.70/11.34 27.70/11.34 findMin :: FiniteMap a b -> (a,b); 27.70/11.34 findMin (Branch key elt wuu EmptyFM wuv) = (key,elt); 27.70/11.34 findMin (Branch key elt wuw fm_l wux) = findMin fm_l; 27.70/11.34 27.70/11.34 fmToList :: FiniteMap a b -> [(a,b)]; 27.70/11.34 fmToList fm = foldFM fmToList0 [] fm; 27.70/11.34 27.70/11.34 fmToList0 key elt rest = (key,elt) : rest; 27.70/11.34 27.70/11.34 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 27.70/11.34 foldFM k z EmptyFM = z; 27.70/11.34 foldFM k z (Branch key elt vyz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 27.70/11.34 27.70/11.34 glueBal :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 27.70/11.34 glueBal EmptyFM fm2 = glueBal4 EmptyFM fm2; 27.70/11.34 glueBal fm1 EmptyFM = glueBal3 fm1 EmptyFM; 27.70/11.34 glueBal fm1 fm2 = glueBal2 fm1 fm2; 27.70/11.34 27.70/11.34 glueBal2 fm1 fm2 = glueBal2GlueBal1 fm1 fm2 fm1 fm2 (sizeFM fm2 > sizeFM fm1); 27.70/11.34 27.70/11.34 glueBal2GlueBal0 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key1 xvx xvy) (glueBal2Mid_elt1 xvx xvy) (deleteMax fm1) fm2; 27.70/11.34 27.70/11.34 glueBal2GlueBal1 xvx xvy fm1 fm2 True = mkBalBranch (glueBal2Mid_key2 xvx xvy) (glueBal2Mid_elt2 xvx xvy) fm1 (deleteMin fm2); 27.70/11.34 glueBal2GlueBal1 xvx xvy fm1 fm2 False = glueBal2GlueBal0 xvx xvy fm1 fm2 otherwise; 27.70/11.34 27.70/11.34 glueBal2Mid_elt1 xvx xvy = glueBal2Mid_elt10 xvx xvy (glueBal2Vv2 xvx xvy); 27.70/11.34 27.70/11.34 glueBal2Mid_elt10 xvx xvy (vyw,mid_elt1) = mid_elt1; 27.70/11.34 27.70/11.34 glueBal2Mid_elt2 xvx xvy = glueBal2Mid_elt20 xvx xvy (glueBal2Vv3 xvx xvy); 27.70/11.34 27.70/11.34 glueBal2Mid_elt20 xvx xvy (vyv,mid_elt2) = mid_elt2; 27.70/11.34 27.70/11.34 glueBal2Mid_key1 xvx xvy = glueBal2Mid_key10 xvx xvy (glueBal2Vv2 xvx xvy); 27.70/11.34 27.70/11.34 glueBal2Mid_key10 xvx xvy (mid_key1,vyx) = mid_key1; 27.70/11.34 27.70/11.34 glueBal2Mid_key2 xvx xvy = glueBal2Mid_key20 xvx xvy (glueBal2Vv3 xvx xvy); 27.70/11.34 27.70/11.34 glueBal2Mid_key20 xvx xvy (mid_key2,vyy) = mid_key2; 27.70/11.34 27.70/11.34 glueBal2Vv2 xvx xvy = findMax xvx; 27.70/11.34 27.70/11.34 glueBal2Vv3 xvx xvy = findMin xvy; 27.70/11.34 27.70/11.34 glueBal3 fm1 EmptyFM = fm1; 27.70/11.34 glueBal3 wxz wyu = glueBal2 wxz wyu; 27.70/11.34 27.70/11.34 glueBal4 EmptyFM fm2 = fm2; 27.70/11.34 glueBal4 wyw wyx = glueBal3 wyw wyx; 27.70/11.34 27.70/11.34 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 27.70/11.34 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 27.70/11.34 27.70/11.34 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))); 27.70/11.34 27.70/11.34 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); 27.70/11.34 27.70/11.34 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); 27.70/11.34 27.70/11.34 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); 27.70/11.34 27.70/11.34 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; 27.70/11.34 27.70/11.34 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; 27.70/11.34 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; 27.70/11.34 27.70/11.34 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); 27.70/11.34 27.70/11.34 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); 27.70/11.34 27.70/11.34 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; 27.70/11.34 27.70/11.34 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; 27.70/11.34 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; 27.70/11.34 27.70/11.34 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); 27.70/11.34 27.70/11.34 mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 27.70/11.34 27.70/11.34 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wzy wzz xuu xuv fm_L fm_R fm_L; 27.70/11.34 mkBalBranch6MkBalBranch3 wzy wzz xuu xuv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wzy wzz xuu xuv key elt fm_L fm_R otherwise; 27.70/11.34 27.70/11.34 mkBalBranch6MkBalBranch4 wzy wzz xuu xuv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wzy wzz xuu xuv fm_L fm_R fm_R; 27.70/11.34 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); 27.70/11.34 27.70/11.34 mkBalBranch6MkBalBranch5 wzy wzz xuu xuv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 27.70/11.34 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); 27.70/11.34 27.70/11.34 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; 27.70/11.34 27.70/11.34 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); 27.70/11.34 27.70/11.34 mkBalBranch6Size_l wzy wzz xuu xuv = sizeFM xuv; 27.70/11.34 27.70/11.34 mkBalBranch6Size_r wzy wzz xuu xuv = sizeFM xuu; 27.70/11.34 27.70/11.34 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 27.70/11.34 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 27.70/11.34 27.70/11.34 mkBranchBalance_ok xuw xux xuy = True; 27.70/11.34 27.70/11.34 mkBranchLeft_ok xuw xux xuy = mkBranchLeft_ok0 xuw xux xuy xuw xux xuw; 27.70/11.34 27.70/11.34 mkBranchLeft_ok0 xuw xux xuy fm_l key EmptyFM = True; 27.70/11.34 mkBranchLeft_ok0 xuw xux xuy fm_l key (Branch left_key vuv vuw vux vuy) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 27.70/11.34 27.70/11.34 mkBranchLeft_ok0Biggest_left_key xvz = fst (findMax xvz); 27.70/11.34 27.70/11.34 mkBranchLeft_size xuw xux xuy = sizeFM xuw; 27.70/11.34 27.70/11.34 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)) xvv xvw; 27.70/11.34 27.70/11.34 mkBranchRight_ok xuw xux xuy = mkBranchRight_ok0 xuw xux xuy xuy xux xuy; 27.70/11.34 27.70/11.34 mkBranchRight_ok0 xuw xux xuy fm_r key EmptyFM = True; 27.70/11.34 mkBranchRight_ok0 xuw xux xuy fm_r key (Branch right_key vuz vvu vvv vvw) = key < mkBranchRight_ok0Smallest_right_key fm_r; 27.70/11.34 27.70/11.34 mkBranchRight_ok0Smallest_right_key xwu = fst (findMin xwu); 27.70/11.34 27.70/11.34 mkBranchRight_size xuw xux xuy = sizeFM xuy; 27.70/11.34 27.70/11.34 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); 27.70/11.34 mkBranchUnbox xuw xux xuy x = x; 27.70/11.34 27.70/11.34 sIZE_RATIO :: Int; 27.70/11.34 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 27.70/11.34 27.70/11.34 sizeFM :: FiniteMap b a -> Int; 27.70/11.34 sizeFM EmptyFM = Pos Zero; 27.70/11.34 sizeFM (Branch vzu vzv size vzw vzx) = size; 27.70/11.34 27.70/11.34 } 27.70/11.34 module Maybe where { 27.70/11.34 import qualified FiniteMap; 27.70/11.34 import qualified Main; 27.70/11.34 import qualified Prelude; 27.70/11.34 } 27.70/11.34 module Main where { 27.70/11.34 import qualified FiniteMap; 27.70/11.34 import qualified Maybe; 27.70/11.34 import qualified Prelude; 27.70/11.34 } 27.70/11.34 27.70/11.34 ---------------------------------------- 27.70/11.34 27.70/11.34 (15) Narrow (SOUND) 27.70/11.34 Haskell To QDPs 27.70/11.34 27.70/11.34 digraph dp_graph { 27.70/11.34 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.delFromFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 27.70/11.34 3[label="FiniteMap.delFromFM xwv3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 27.70/11.34 4[label="FiniteMap.delFromFM xwv3 xwv4",fontsize=16,color="burlywood",shape="triangle"];4466[label="xwv3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 4466[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4466 -> 5[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4467[label="xwv3/FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34",fontsize=10,color="white",style="solid",shape="box"];4 -> 4467[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4467 -> 6[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 5[label="FiniteMap.delFromFM FiniteMap.EmptyFM xwv4",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 27.70/11.34 6[label="FiniteMap.delFromFM (FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34) xwv4",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 27.70/11.34 7[label="FiniteMap.delFromFM4 FiniteMap.EmptyFM xwv4",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 27.70/11.34 8[label="FiniteMap.delFromFM3 (FiniteMap.Branch xwv30 xwv31 xwv32 xwv33 xwv34) xwv4",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 27.70/11.34 9[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 27.70/11.34 10[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv4 (xwv4 > xwv30)",fontsize=16,color="black",shape="box"];10 -> 12[label="",style="solid", color="black", weight=3]; 27.70/11.34 11[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];12[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv4 (compare xwv4 xwv30 == GT)",fontsize=16,color="black",shape="box"];12 -> 13[label="",style="solid", color="black", weight=3]; 27.70/11.34 13[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv4 (compare3 xwv4 xwv30 == GT)",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 27.70/11.34 14[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 xwv4 (compare2 xwv4 xwv30 (xwv4 == xwv30) == GT)",fontsize=16,color="burlywood",shape="box"];4468[label="xwv4/Nothing",fontsize=10,color="white",style="solid",shape="box"];14 -> 4468[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4468 -> 15[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4469[label="xwv4/Just xwv40",fontsize=10,color="white",style="solid",shape="box"];14 -> 4469[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4469 -> 16[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 15[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 Nothing (compare2 Nothing xwv30 (Nothing == xwv30) == GT)",fontsize=16,color="burlywood",shape="box"];4470[label="xwv30/Nothing",fontsize=10,color="white",style="solid",shape="box"];15 -> 4470[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4470 -> 17[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4471[label="xwv30/Just xwv300",fontsize=10,color="white",style="solid",shape="box"];15 -> 4471[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4471 -> 18[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 16[label="FiniteMap.delFromFM2 xwv30 xwv31 xwv32 xwv33 xwv34 (Just xwv40) (compare2 (Just xwv40) xwv30 (Just xwv40 == xwv30) == GT)",fontsize=16,color="burlywood",shape="box"];4472[label="xwv30/Nothing",fontsize=10,color="white",style="solid",shape="box"];16 -> 4472[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4472 -> 19[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4473[label="xwv30/Just xwv300",fontsize=10,color="white",style="solid",shape="box"];16 -> 4473[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4473 -> 20[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 17[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 Nothing (compare2 Nothing Nothing (Nothing == Nothing) == GT)",fontsize=16,color="black",shape="box"];17 -> 21[label="",style="solid", color="black", weight=3]; 27.70/11.34 18[label="FiniteMap.delFromFM2 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing (compare2 Nothing (Just xwv300) (Nothing == Just xwv300) == GT)",fontsize=16,color="black",shape="box"];18 -> 22[label="",style="solid", color="black", weight=3]; 27.70/11.34 19[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv40) (compare2 (Just xwv40) Nothing (Just xwv40 == Nothing) == GT)",fontsize=16,color="black",shape="box"];19 -> 23[label="",style="solid", color="black", weight=3]; 27.70/11.34 20[label="FiniteMap.delFromFM2 (Just xwv300) xwv31 xwv32 xwv33 xwv34 (Just xwv40) (compare2 (Just xwv40) (Just xwv300) (Just xwv40 == Just xwv300) == GT)",fontsize=16,color="black",shape="box"];20 -> 24[label="",style="solid", color="black", weight=3]; 27.70/11.34 21[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 Nothing (compare2 Nothing Nothing True == GT)",fontsize=16,color="black",shape="box"];21 -> 25[label="",style="solid", color="black", weight=3]; 27.70/11.34 22 -> 81[label="",style="dashed", color="red", weight=0]; 27.70/11.34 22[label="FiniteMap.delFromFM2 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing (compare2 Nothing (Just xwv300) False == GT)",fontsize=16,color="magenta"];22 -> 82[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 23 -> 90[label="",style="dashed", color="red", weight=0]; 27.70/11.34 23[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv40) (compare2 (Just xwv40) Nothing False == GT)",fontsize=16,color="magenta"];23 -> 91[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 24 -> 137[label="",style="dashed", color="red", weight=0]; 27.70/11.34 24[label="FiniteMap.delFromFM2 (Just xwv300) xwv31 xwv32 xwv33 xwv34 (Just xwv40) (compare2 (Just xwv40) (Just xwv300) (xwv40 == xwv300) == GT)",fontsize=16,color="magenta"];24 -> 138[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 24 -> 139[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 24 -> 140[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 24 -> 141[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 24 -> 142[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 24 -> 143[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 24 -> 144[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 25[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 Nothing (EQ == GT)",fontsize=16,color="black",shape="box"];25 -> 36[label="",style="solid", color="black", weight=3]; 27.70/11.34 82 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.34 82[label="compare2 Nothing (Just xwv300) False == GT",fontsize=16,color="magenta"];82 -> 86[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 82 -> 87[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 81[label="FiniteMap.delFromFM2 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing xwv20",fontsize=16,color="burlywood",shape="triangle"];4474[label="xwv20/False",fontsize=10,color="white",style="solid",shape="box"];81 -> 4474[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4474 -> 88[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4475[label="xwv20/True",fontsize=10,color="white",style="solid",shape="box"];81 -> 4475[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4475 -> 89[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 91 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.34 91[label="compare2 (Just xwv40) Nothing False == GT",fontsize=16,color="magenta"];91 -> 95[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 91 -> 96[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 90[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv40) xwv21",fontsize=16,color="burlywood",shape="triangle"];4476[label="xwv21/False",fontsize=10,color="white",style="solid",shape="box"];90 -> 4476[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4476 -> 97[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4477[label="xwv21/True",fontsize=10,color="white",style="solid",shape="box"];90 -> 4477[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4477 -> 98[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 138[label="xwv33",fontsize=16,color="green",shape="box"];139 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.34 139[label="compare2 (Just xwv40) (Just xwv300) (xwv40 == xwv300) == GT",fontsize=16,color="magenta"];139 -> 148[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 139 -> 149[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 140[label="xwv300",fontsize=16,color="green",shape="box"];141[label="xwv34",fontsize=16,color="green",shape="box"];142[label="xwv32",fontsize=16,color="green",shape="box"];143[label="xwv40",fontsize=16,color="green",shape="box"];144[label="xwv31",fontsize=16,color="green",shape="box"];137[label="FiniteMap.delFromFM2 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) xwv22",fontsize=16,color="burlywood",shape="triangle"];4478[label="xwv22/False",fontsize=10,color="white",style="solid",shape="box"];137 -> 4478[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4478 -> 150[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4479[label="xwv22/True",fontsize=10,color="white",style="solid",shape="box"];137 -> 4479[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4479 -> 151[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 36[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 Nothing False",fontsize=16,color="black",shape="box"];36 -> 55[label="",style="solid", color="black", weight=3]; 27.70/11.34 86[label="GT",fontsize=16,color="green",shape="box"];87 -> 1985[label="",style="dashed", color="red", weight=0]; 27.70/11.34 87[label="compare2 Nothing (Just xwv300) False",fontsize=16,color="magenta"];87 -> 1986[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 87 -> 1987[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 87 -> 1988[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 50[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4480[label="xwv40/LT",fontsize=10,color="white",style="solid",shape="box"];50 -> 4480[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4480 -> 73[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4481[label="xwv40/EQ",fontsize=10,color="white",style="solid",shape="box"];50 -> 4481[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4481 -> 74[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4482[label="xwv40/GT",fontsize=10,color="white",style="solid",shape="box"];50 -> 4482[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4482 -> 75[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 88[label="FiniteMap.delFromFM2 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing False",fontsize=16,color="black",shape="box"];88 -> 100[label="",style="solid", color="black", weight=3]; 27.70/11.34 89[label="FiniteMap.delFromFM2 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing True",fontsize=16,color="black",shape="box"];89 -> 101[label="",style="solid", color="black", weight=3]; 27.70/11.34 95[label="GT",fontsize=16,color="green",shape="box"];96 -> 1985[label="",style="dashed", color="red", weight=0]; 27.70/11.34 96[label="compare2 (Just xwv40) Nothing False",fontsize=16,color="magenta"];96 -> 1989[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 96 -> 1990[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 96 -> 1991[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 97[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv40) False",fontsize=16,color="black",shape="box"];97 -> 153[label="",style="solid", color="black", weight=3]; 27.70/11.34 98[label="FiniteMap.delFromFM2 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv40) True",fontsize=16,color="black",shape="box"];98 -> 154[label="",style="solid", color="black", weight=3]; 27.70/11.34 148[label="GT",fontsize=16,color="green",shape="box"];149 -> 1985[label="",style="dashed", color="red", weight=0]; 27.70/11.34 149[label="compare2 (Just xwv40) (Just xwv300) (xwv40 == xwv300)",fontsize=16,color="magenta"];149 -> 1992[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 149 -> 1993[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 149 -> 1994[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 150[label="FiniteMap.delFromFM2 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) False",fontsize=16,color="black",shape="box"];150 -> 163[label="",style="solid", color="black", weight=3]; 27.70/11.34 151[label="FiniteMap.delFromFM2 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) True",fontsize=16,color="black",shape="box"];151 -> 164[label="",style="solid", color="black", weight=3]; 27.70/11.34 55 -> 190[label="",style="dashed", color="red", weight=0]; 27.70/11.34 55[label="FiniteMap.delFromFM1 Nothing xwv31 xwv32 xwv33 xwv34 Nothing (Nothing < Nothing)",fontsize=16,color="magenta"];55 -> 191[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 1986[label="Nothing",fontsize=16,color="green",shape="box"];1987[label="False",fontsize=16,color="green",shape="box"];1988[label="Just xwv300",fontsize=16,color="green",shape="box"];1985[label="compare2 xwv280 xwv290 xwv102",fontsize=16,color="burlywood",shape="triangle"];4483[label="xwv102/False",fontsize=10,color="white",style="solid",shape="box"];1985 -> 4483[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4483 -> 2020[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4484[label="xwv102/True",fontsize=10,color="white",style="solid",shape="box"];1985 -> 4484[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4484 -> 2021[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 73[label="LT == xwv300",fontsize=16,color="burlywood",shape="box"];4485[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];73 -> 4485[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4485 -> 102[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4486[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];73 -> 4486[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4486 -> 103[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4487[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];73 -> 4487[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4487 -> 104[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 74[label="EQ == xwv300",fontsize=16,color="burlywood",shape="box"];4488[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];74 -> 4488[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4488 -> 105[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4489[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];74 -> 4489[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4489 -> 106[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4490[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];74 -> 4490[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4490 -> 107[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 75[label="GT == xwv300",fontsize=16,color="burlywood",shape="box"];4491[label="xwv300/LT",fontsize=10,color="white",style="solid",shape="box"];75 -> 4491[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4491 -> 108[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4492[label="xwv300/EQ",fontsize=10,color="white",style="solid",shape="box"];75 -> 4492[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4492 -> 109[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4493[label="xwv300/GT",fontsize=10,color="white",style="solid",shape="box"];75 -> 4493[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4493 -> 110[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 100 -> 206[label="",style="dashed", color="red", weight=0]; 27.70/11.34 100[label="FiniteMap.delFromFM1 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing (Nothing < Just xwv300)",fontsize=16,color="magenta"];100 -> 207[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 101 -> 3516[label="",style="dashed", color="red", weight=0]; 27.70/11.34 101[label="FiniteMap.mkBalBranch (Just xwv300) xwv31 xwv33 (FiniteMap.delFromFM xwv34 Nothing)",fontsize=16,color="magenta"];101 -> 3517[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 101 -> 3518[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 101 -> 3519[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 101 -> 3520[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 1989[label="Just xwv40",fontsize=16,color="green",shape="box"];1990[label="False",fontsize=16,color="green",shape="box"];1991[label="Nothing",fontsize=16,color="green",shape="box"];153 -> 216[label="",style="dashed", color="red", weight=0]; 27.70/11.34 153[label="FiniteMap.delFromFM1 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv40) (Just xwv40 < Nothing)",fontsize=16,color="magenta"];153 -> 217[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 154 -> 3516[label="",style="dashed", color="red", weight=0]; 27.70/11.34 154[label="FiniteMap.mkBalBranch Nothing xwv31 xwv33 (FiniteMap.delFromFM xwv34 (Just xwv40))",fontsize=16,color="magenta"];154 -> 3521[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 154 -> 3522[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 154 -> 3523[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 154 -> 3524[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 1992[label="Just xwv40",fontsize=16,color="green",shape="box"];1993[label="xwv40 == xwv300",fontsize=16,color="blue",shape="box"];4494[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1993 -> 4494[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4494 -> 2022[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4495[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1993 -> 4495[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4495 -> 2023[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4496[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1993 -> 4496[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4496 -> 2024[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4497[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1993 -> 4497[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4497 -> 2025[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4498[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1993 -> 4498[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4498 -> 2026[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4499[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1993 -> 4499[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4499 -> 2027[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4500[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1993 -> 4500[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4500 -> 2028[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4501[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1993 -> 4501[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4501 -> 2029[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4502[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1993 -> 4502[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4502 -> 2030[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4503[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1993 -> 4503[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4503 -> 2031[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4504[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1993 -> 4504[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4504 -> 2032[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4505[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1993 -> 4505[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4505 -> 2033[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4506[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1993 -> 4506[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4506 -> 2034[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4507[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1993 -> 4507[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4507 -> 2035[label="",style="solid", color="blue", weight=3]; 27.70/11.34 1994[label="Just xwv300",fontsize=16,color="green",shape="box"];163 -> 244[label="",style="dashed", color="red", weight=0]; 27.70/11.34 163[label="FiniteMap.delFromFM1 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) (Just xwv18 < Just xwv13)",fontsize=16,color="magenta"];163 -> 245[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 164 -> 3516[label="",style="dashed", color="red", weight=0]; 27.70/11.34 164[label="FiniteMap.mkBalBranch (Just xwv13) xwv14 xwv16 (FiniteMap.delFromFM xwv17 (Just xwv18))",fontsize=16,color="magenta"];164 -> 3525[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 164 -> 3526[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 164 -> 3527[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 164 -> 3528[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 191[label="Nothing < Nothing",fontsize=16,color="black",shape="box"];191 -> 193[label="",style="solid", color="black", weight=3]; 27.70/11.34 190[label="FiniteMap.delFromFM1 Nothing xwv31 xwv32 xwv33 xwv34 Nothing xwv32",fontsize=16,color="burlywood",shape="triangle"];4508[label="xwv32/False",fontsize=10,color="white",style="solid",shape="box"];190 -> 4508[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4508 -> 194[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4509[label="xwv32/True",fontsize=10,color="white",style="solid",shape="box"];190 -> 4509[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4509 -> 195[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 2020[label="compare2 xwv280 xwv290 False",fontsize=16,color="black",shape="box"];2020 -> 2047[label="",style="solid", color="black", weight=3]; 27.70/11.34 2021[label="compare2 xwv280 xwv290 True",fontsize=16,color="black",shape="box"];2021 -> 2048[label="",style="solid", color="black", weight=3]; 27.70/11.34 102[label="LT == LT",fontsize=16,color="black",shape="box"];102 -> 197[label="",style="solid", color="black", weight=3]; 27.70/11.34 103[label="LT == EQ",fontsize=16,color="black",shape="box"];103 -> 198[label="",style="solid", color="black", weight=3]; 27.70/11.34 104[label="LT == GT",fontsize=16,color="black",shape="box"];104 -> 199[label="",style="solid", color="black", weight=3]; 27.70/11.34 105[label="EQ == LT",fontsize=16,color="black",shape="box"];105 -> 200[label="",style="solid", color="black", weight=3]; 27.70/11.34 106[label="EQ == EQ",fontsize=16,color="black",shape="box"];106 -> 201[label="",style="solid", color="black", weight=3]; 27.70/11.34 107[label="EQ == GT",fontsize=16,color="black",shape="box"];107 -> 202[label="",style="solid", color="black", weight=3]; 27.70/11.34 108[label="GT == LT",fontsize=16,color="black",shape="box"];108 -> 203[label="",style="solid", color="black", weight=3]; 27.70/11.34 109[label="GT == EQ",fontsize=16,color="black",shape="box"];109 -> 204[label="",style="solid", color="black", weight=3]; 27.70/11.34 110[label="GT == GT",fontsize=16,color="black",shape="box"];110 -> 205[label="",style="solid", color="black", weight=3]; 27.70/11.34 207[label="Nothing < Just xwv300",fontsize=16,color="black",shape="box"];207 -> 209[label="",style="solid", color="black", weight=3]; 27.70/11.34 206[label="FiniteMap.delFromFM1 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing xwv33",fontsize=16,color="burlywood",shape="triangle"];4510[label="xwv33/False",fontsize=10,color="white",style="solid",shape="box"];206 -> 4510[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4510 -> 210[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4511[label="xwv33/True",fontsize=10,color="white",style="solid",shape="box"];206 -> 4511[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4511 -> 211[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 3517[label="xwv33",fontsize=16,color="green",shape="box"];3518[label="xwv31",fontsize=16,color="green",shape="box"];3519 -> 4[label="",style="dashed", color="red", weight=0]; 27.70/11.34 3519[label="FiniteMap.delFromFM xwv34 Nothing",fontsize=16,color="magenta"];3519 -> 3566[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3519 -> 3567[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3520[label="Just xwv300",fontsize=16,color="green",shape="box"];3516[label="FiniteMap.mkBalBranch xwv340 xwv341 xwv246 xwv344",fontsize=16,color="black",shape="triangle"];3516 -> 3568[label="",style="solid", color="black", weight=3]; 27.70/11.34 217[label="Just xwv40 < Nothing",fontsize=16,color="black",shape="box"];217 -> 219[label="",style="solid", color="black", weight=3]; 27.70/11.34 216[label="FiniteMap.delFromFM1 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv40) xwv34",fontsize=16,color="burlywood",shape="triangle"];4512[label="xwv34/False",fontsize=10,color="white",style="solid",shape="box"];216 -> 4512[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4512 -> 220[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4513[label="xwv34/True",fontsize=10,color="white",style="solid",shape="box"];216 -> 4513[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4513 -> 221[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 3521[label="xwv33",fontsize=16,color="green",shape="box"];3522[label="xwv31",fontsize=16,color="green",shape="box"];3523 -> 4[label="",style="dashed", color="red", weight=0]; 27.70/11.34 3523[label="FiniteMap.delFromFM xwv34 (Just xwv40)",fontsize=16,color="magenta"];3523 -> 3569[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3523 -> 3570[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3524[label="Nothing",fontsize=16,color="green",shape="box"];2022 -> 169[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2022[label="xwv40 == xwv300",fontsize=16,color="magenta"];2023 -> 170[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2023[label="xwv40 == xwv300",fontsize=16,color="magenta"];2024 -> 171[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2024[label="xwv40 == xwv300",fontsize=16,color="magenta"];2025 -> 172[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2025[label="xwv40 == xwv300",fontsize=16,color="magenta"];2026 -> 173[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2026[label="xwv40 == xwv300",fontsize=16,color="magenta"];2027 -> 174[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2027[label="xwv40 == xwv300",fontsize=16,color="magenta"];2028 -> 175[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2028[label="xwv40 == xwv300",fontsize=16,color="magenta"];2029 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2029[label="xwv40 == xwv300",fontsize=16,color="magenta"];2030 -> 177[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2030[label="xwv40 == xwv300",fontsize=16,color="magenta"];2031 -> 178[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2031[label="xwv40 == xwv300",fontsize=16,color="magenta"];2032 -> 179[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2032[label="xwv40 == xwv300",fontsize=16,color="magenta"];2033 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2033[label="xwv40 == xwv300",fontsize=16,color="magenta"];2034 -> 181[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2034[label="xwv40 == xwv300",fontsize=16,color="magenta"];2035 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2035[label="xwv40 == xwv300",fontsize=16,color="magenta"];245[label="Just xwv18 < Just xwv13",fontsize=16,color="black",shape="box"];245 -> 247[label="",style="solid", color="black", weight=3]; 27.70/11.34 244[label="FiniteMap.delFromFM1 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) xwv35",fontsize=16,color="burlywood",shape="triangle"];4514[label="xwv35/False",fontsize=10,color="white",style="solid",shape="box"];244 -> 4514[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4514 -> 248[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4515[label="xwv35/True",fontsize=10,color="white",style="solid",shape="box"];244 -> 4515[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4515 -> 249[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 3525[label="xwv16",fontsize=16,color="green",shape="box"];3526[label="xwv14",fontsize=16,color="green",shape="box"];3527 -> 4[label="",style="dashed", color="red", weight=0]; 27.70/11.34 3527[label="FiniteMap.delFromFM xwv17 (Just xwv18)",fontsize=16,color="magenta"];3527 -> 3571[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3527 -> 3572[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3528[label="Just xwv13",fontsize=16,color="green",shape="box"];193 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.34 193[label="compare Nothing Nothing == LT",fontsize=16,color="magenta"];193 -> 252[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 193 -> 253[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 194[label="FiniteMap.delFromFM1 Nothing xwv31 xwv32 xwv33 xwv34 Nothing False",fontsize=16,color="black",shape="box"];194 -> 254[label="",style="solid", color="black", weight=3]; 27.70/11.34 195[label="FiniteMap.delFromFM1 Nothing xwv31 xwv32 xwv33 xwv34 Nothing True",fontsize=16,color="black",shape="box"];195 -> 255[label="",style="solid", color="black", weight=3]; 27.70/11.34 2047[label="compare1 xwv280 xwv290 (xwv280 <= xwv290)",fontsize=16,color="burlywood",shape="box"];4516[label="xwv280/Nothing",fontsize=10,color="white",style="solid",shape="box"];2047 -> 4516[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4516 -> 2051[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4517[label="xwv280/Just xwv2800",fontsize=10,color="white",style="solid",shape="box"];2047 -> 4517[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4517 -> 2052[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 2048[label="EQ",fontsize=16,color="green",shape="box"];197[label="True",fontsize=16,color="green",shape="box"];198[label="False",fontsize=16,color="green",shape="box"];199[label="False",fontsize=16,color="green",shape="box"];200[label="False",fontsize=16,color="green",shape="box"];201[label="True",fontsize=16,color="green",shape="box"];202[label="False",fontsize=16,color="green",shape="box"];203[label="False",fontsize=16,color="green",shape="box"];204[label="False",fontsize=16,color="green",shape="box"];205[label="True",fontsize=16,color="green",shape="box"];209 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.34 209[label="compare Nothing (Just xwv300) == LT",fontsize=16,color="magenta"];209 -> 256[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 209 -> 257[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 210[label="FiniteMap.delFromFM1 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing False",fontsize=16,color="black",shape="box"];210 -> 258[label="",style="solid", color="black", weight=3]; 27.70/11.34 211[label="FiniteMap.delFromFM1 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing True",fontsize=16,color="black",shape="box"];211 -> 259[label="",style="solid", color="black", weight=3]; 27.70/11.34 3566[label="Nothing",fontsize=16,color="green",shape="box"];3567[label="xwv34",fontsize=16,color="green",shape="box"];3568[label="FiniteMap.mkBalBranch6 xwv340 xwv341 xwv246 xwv344",fontsize=16,color="black",shape="box"];3568 -> 3594[label="",style="solid", color="black", weight=3]; 27.70/11.34 219 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.34 219[label="compare (Just xwv40) Nothing == LT",fontsize=16,color="magenta"];219 -> 262[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 219 -> 263[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 220[label="FiniteMap.delFromFM1 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv40) False",fontsize=16,color="black",shape="box"];220 -> 264[label="",style="solid", color="black", weight=3]; 27.70/11.34 221[label="FiniteMap.delFromFM1 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv40) True",fontsize=16,color="black",shape="box"];221 -> 265[label="",style="solid", color="black", weight=3]; 27.70/11.34 3569[label="Just xwv40",fontsize=16,color="green",shape="box"];3570[label="xwv34",fontsize=16,color="green",shape="box"];169[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4518[label="xwv40/()",fontsize=10,color="white",style="solid",shape="box"];169 -> 4518[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4518 -> 225[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 170[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4519[label="xwv40/xwv400 : xwv401",fontsize=10,color="white",style="solid",shape="box"];170 -> 4519[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4519 -> 226[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4520[label="xwv40/[]",fontsize=10,color="white",style="solid",shape="box"];170 -> 4520[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4520 -> 227[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 171[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4521[label="xwv40/Left xwv400",fontsize=10,color="white",style="solid",shape="box"];171 -> 4521[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4521 -> 228[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4522[label="xwv40/Right xwv400",fontsize=10,color="white",style="solid",shape="box"];171 -> 4522[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4522 -> 229[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 172[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4523[label="xwv40/(xwv400,xwv401)",fontsize=10,color="white",style="solid",shape="box"];172 -> 4523[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4523 -> 230[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 173[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4524[label="xwv40/Integer xwv400",fontsize=10,color="white",style="solid",shape="box"];173 -> 4524[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4524 -> 231[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 174[label="xwv40 == xwv300",fontsize=16,color="black",shape="triangle"];174 -> 232[label="",style="solid", color="black", weight=3]; 27.70/11.34 175[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4525[label="xwv40/False",fontsize=10,color="white",style="solid",shape="box"];175 -> 4525[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4525 -> 233[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4526[label="xwv40/True",fontsize=10,color="white",style="solid",shape="box"];175 -> 4526[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4526 -> 234[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 176[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4527[label="xwv40/Nothing",fontsize=10,color="white",style="solid",shape="box"];176 -> 4527[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4527 -> 235[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4528[label="xwv40/Just xwv400",fontsize=10,color="white",style="solid",shape="box"];176 -> 4528[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4528 -> 236[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 177[label="xwv40 == xwv300",fontsize=16,color="black",shape="triangle"];177 -> 237[label="",style="solid", color="black", weight=3]; 27.70/11.34 178[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4529[label="xwv40/(xwv400,xwv401,xwv402)",fontsize=10,color="white",style="solid",shape="box"];178 -> 4529[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4529 -> 238[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 179[label="xwv40 == xwv300",fontsize=16,color="burlywood",shape="triangle"];4530[label="xwv40/xwv400 :% xwv401",fontsize=10,color="white",style="solid",shape="box"];179 -> 4530[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4530 -> 239[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 181[label="xwv40 == xwv300",fontsize=16,color="black",shape="triangle"];181 -> 240[label="",style="solid", color="black", weight=3]; 27.70/11.34 182[label="xwv40 == xwv300",fontsize=16,color="black",shape="triangle"];182 -> 241[label="",style="solid", color="black", weight=3]; 27.70/11.34 247 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.34 247[label="compare (Just xwv18) (Just xwv13) == LT",fontsize=16,color="magenta"];247 -> 294[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 247 -> 295[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 248[label="FiniteMap.delFromFM1 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) False",fontsize=16,color="black",shape="box"];248 -> 296[label="",style="solid", color="black", weight=3]; 27.70/11.34 249[label="FiniteMap.delFromFM1 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) True",fontsize=16,color="black",shape="box"];249 -> 297[label="",style="solid", color="black", weight=3]; 27.70/11.34 3571[label="Just xwv18",fontsize=16,color="green",shape="box"];3572[label="xwv17",fontsize=16,color="green",shape="box"];252[label="LT",fontsize=16,color="green",shape="box"];253[label="compare Nothing Nothing",fontsize=16,color="black",shape="box"];253 -> 298[label="",style="solid", color="black", weight=3]; 27.70/11.34 254 -> 299[label="",style="dashed", color="red", weight=0]; 27.70/11.34 254[label="FiniteMap.delFromFM0 Nothing xwv31 xwv32 xwv33 xwv34 Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];254 -> 300[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 255 -> 3516[label="",style="dashed", color="red", weight=0]; 27.70/11.34 255[label="FiniteMap.mkBalBranch Nothing xwv31 (FiniteMap.delFromFM xwv33 Nothing) xwv34",fontsize=16,color="magenta"];255 -> 3537[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 255 -> 3538[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 255 -> 3539[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 255 -> 3540[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 2051[label="compare1 Nothing xwv290 (Nothing <= xwv290)",fontsize=16,color="burlywood",shape="box"];4531[label="xwv290/Nothing",fontsize=10,color="white",style="solid",shape="box"];2051 -> 4531[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4531 -> 2064[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4532[label="xwv290/Just xwv2900",fontsize=10,color="white",style="solid",shape="box"];2051 -> 4532[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4532 -> 2065[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 2052[label="compare1 (Just xwv2800) xwv290 (Just xwv2800 <= xwv290)",fontsize=16,color="burlywood",shape="box"];4533[label="xwv290/Nothing",fontsize=10,color="white",style="solid",shape="box"];2052 -> 4533[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4533 -> 2066[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4534[label="xwv290/Just xwv2900",fontsize=10,color="white",style="solid",shape="box"];2052 -> 4534[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4534 -> 2067[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 256[label="LT",fontsize=16,color="green",shape="box"];257[label="compare Nothing (Just xwv300)",fontsize=16,color="black",shape="box"];257 -> 303[label="",style="solid", color="black", weight=3]; 27.70/11.34 258 -> 304[label="",style="dashed", color="red", weight=0]; 27.70/11.34 258[label="FiniteMap.delFromFM0 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing (Just xwv300 == Nothing)",fontsize=16,color="magenta"];258 -> 305[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 259 -> 3516[label="",style="dashed", color="red", weight=0]; 27.70/11.34 259[label="FiniteMap.mkBalBranch (Just xwv300) xwv31 (FiniteMap.delFromFM xwv33 Nothing) xwv34",fontsize=16,color="magenta"];259 -> 3541[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 259 -> 3542[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 259 -> 3543[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 259 -> 3544[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3594 -> 3603[label="",style="dashed", color="red", weight=0]; 27.70/11.34 3594[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv340 xwv341 xwv344 xwv246 xwv340 xwv341 xwv246 xwv344 (FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv246 + FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv246 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];3594 -> 3604[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 262[label="LT",fontsize=16,color="green",shape="box"];263[label="compare (Just xwv40) Nothing",fontsize=16,color="black",shape="box"];263 -> 310[label="",style="solid", color="black", weight=3]; 27.70/11.34 264 -> 311[label="",style="dashed", color="red", weight=0]; 27.70/11.34 264[label="FiniteMap.delFromFM0 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv40) (Nothing == Just xwv40)",fontsize=16,color="magenta"];264 -> 312[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 265 -> 3516[label="",style="dashed", color="red", weight=0]; 27.70/11.34 265[label="FiniteMap.mkBalBranch Nothing xwv31 (FiniteMap.delFromFM xwv33 (Just xwv40)) xwv34",fontsize=16,color="magenta"];265 -> 3545[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 265 -> 3546[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 265 -> 3547[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 265 -> 3548[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 225[label="() == xwv300",fontsize=16,color="burlywood",shape="box"];4535[label="xwv300/()",fontsize=10,color="white",style="solid",shape="box"];225 -> 4535[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4535 -> 267[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 226[label="xwv400 : xwv401 == xwv300",fontsize=16,color="burlywood",shape="box"];4536[label="xwv300/xwv3000 : xwv3001",fontsize=10,color="white",style="solid",shape="box"];226 -> 4536[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4536 -> 268[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4537[label="xwv300/[]",fontsize=10,color="white",style="solid",shape="box"];226 -> 4537[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4537 -> 269[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 227[label="[] == xwv300",fontsize=16,color="burlywood",shape="box"];4538[label="xwv300/xwv3000 : xwv3001",fontsize=10,color="white",style="solid",shape="box"];227 -> 4538[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4538 -> 270[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4539[label="xwv300/[]",fontsize=10,color="white",style="solid",shape="box"];227 -> 4539[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4539 -> 271[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 228[label="Left xwv400 == xwv300",fontsize=16,color="burlywood",shape="box"];4540[label="xwv300/Left xwv3000",fontsize=10,color="white",style="solid",shape="box"];228 -> 4540[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4540 -> 272[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4541[label="xwv300/Right xwv3000",fontsize=10,color="white",style="solid",shape="box"];228 -> 4541[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4541 -> 273[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 229[label="Right xwv400 == xwv300",fontsize=16,color="burlywood",shape="box"];4542[label="xwv300/Left xwv3000",fontsize=10,color="white",style="solid",shape="box"];229 -> 4542[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4542 -> 274[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4543[label="xwv300/Right xwv3000",fontsize=10,color="white",style="solid",shape="box"];229 -> 4543[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4543 -> 275[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 230[label="(xwv400,xwv401) == xwv300",fontsize=16,color="burlywood",shape="box"];4544[label="xwv300/(xwv3000,xwv3001)",fontsize=10,color="white",style="solid",shape="box"];230 -> 4544[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4544 -> 276[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 231[label="Integer xwv400 == xwv300",fontsize=16,color="burlywood",shape="box"];4545[label="xwv300/Integer xwv3000",fontsize=10,color="white",style="solid",shape="box"];231 -> 4545[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4545 -> 277[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 232[label="primEqDouble xwv40 xwv300",fontsize=16,color="burlywood",shape="box"];4546[label="xwv40/Double xwv400 xwv401",fontsize=10,color="white",style="solid",shape="box"];232 -> 4546[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4546 -> 278[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 233[label="False == xwv300",fontsize=16,color="burlywood",shape="box"];4547[label="xwv300/False",fontsize=10,color="white",style="solid",shape="box"];233 -> 4547[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4547 -> 279[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4548[label="xwv300/True",fontsize=10,color="white",style="solid",shape="box"];233 -> 4548[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4548 -> 280[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 234[label="True == xwv300",fontsize=16,color="burlywood",shape="box"];4549[label="xwv300/False",fontsize=10,color="white",style="solid",shape="box"];234 -> 4549[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4549 -> 281[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4550[label="xwv300/True",fontsize=10,color="white",style="solid",shape="box"];234 -> 4550[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4550 -> 282[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 235[label="Nothing == xwv300",fontsize=16,color="burlywood",shape="box"];4551[label="xwv300/Nothing",fontsize=10,color="white",style="solid",shape="box"];235 -> 4551[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4551 -> 283[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4552[label="xwv300/Just xwv3000",fontsize=10,color="white",style="solid",shape="box"];235 -> 4552[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4552 -> 284[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 236[label="Just xwv400 == xwv300",fontsize=16,color="burlywood",shape="box"];4553[label="xwv300/Nothing",fontsize=10,color="white",style="solid",shape="box"];236 -> 4553[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4553 -> 285[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4554[label="xwv300/Just xwv3000",fontsize=10,color="white",style="solid",shape="box"];236 -> 4554[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4554 -> 286[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 237[label="primEqFloat xwv40 xwv300",fontsize=16,color="burlywood",shape="box"];4555[label="xwv40/Float xwv400 xwv401",fontsize=10,color="white",style="solid",shape="box"];237 -> 4555[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4555 -> 287[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 238[label="(xwv400,xwv401,xwv402) == xwv300",fontsize=16,color="burlywood",shape="box"];4556[label="xwv300/(xwv3000,xwv3001,xwv3002)",fontsize=10,color="white",style="solid",shape="box"];238 -> 4556[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4556 -> 288[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 239[label="xwv400 :% xwv401 == xwv300",fontsize=16,color="burlywood",shape="box"];4557[label="xwv300/xwv3000 :% xwv3001",fontsize=10,color="white",style="solid",shape="box"];239 -> 4557[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4557 -> 289[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 240[label="primEqChar xwv40 xwv300",fontsize=16,color="burlywood",shape="box"];4558[label="xwv40/Char xwv400",fontsize=10,color="white",style="solid",shape="box"];240 -> 4558[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4558 -> 290[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 241[label="primEqInt xwv40 xwv300",fontsize=16,color="burlywood",shape="triangle"];4559[label="xwv40/Pos xwv400",fontsize=10,color="white",style="solid",shape="box"];241 -> 4559[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4559 -> 291[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4560[label="xwv40/Neg xwv400",fontsize=10,color="white",style="solid",shape="box"];241 -> 4560[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4560 -> 292[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 294[label="LT",fontsize=16,color="green",shape="box"];295[label="compare (Just xwv18) (Just xwv13)",fontsize=16,color="black",shape="box"];295 -> 354[label="",style="solid", color="black", weight=3]; 27.70/11.34 296 -> 355[label="",style="dashed", color="red", weight=0]; 27.70/11.34 296[label="FiniteMap.delFromFM0 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) (Just xwv13 == Just xwv18)",fontsize=16,color="magenta"];296 -> 356[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 297 -> 3516[label="",style="dashed", color="red", weight=0]; 27.70/11.34 297[label="FiniteMap.mkBalBranch (Just xwv13) xwv14 (FiniteMap.delFromFM xwv16 (Just xwv18)) xwv17",fontsize=16,color="magenta"];297 -> 3549[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 297 -> 3550[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 297 -> 3551[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 297 -> 3552[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 298[label="compare3 Nothing Nothing",fontsize=16,color="black",shape="box"];298 -> 361[label="",style="solid", color="black", weight=3]; 27.70/11.34 300 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.34 300[label="Nothing == Nothing",fontsize=16,color="magenta"];300 -> 362[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 300 -> 363[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 299[label="FiniteMap.delFromFM0 Nothing xwv31 xwv32 xwv33 xwv34 Nothing xwv36",fontsize=16,color="burlywood",shape="triangle"];4561[label="xwv36/False",fontsize=10,color="white",style="solid",shape="box"];299 -> 4561[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4561 -> 364[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4562[label="xwv36/True",fontsize=10,color="white",style="solid",shape="box"];299 -> 4562[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4562 -> 365[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 3537 -> 4[label="",style="dashed", color="red", weight=0]; 27.70/11.34 3537[label="FiniteMap.delFromFM xwv33 Nothing",fontsize=16,color="magenta"];3537 -> 3573[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3537 -> 3574[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3538[label="xwv31",fontsize=16,color="green",shape="box"];3539[label="xwv34",fontsize=16,color="green",shape="box"];3540[label="Nothing",fontsize=16,color="green",shape="box"];2064[label="compare1 Nothing Nothing (Nothing <= Nothing)",fontsize=16,color="black",shape="box"];2064 -> 2110[label="",style="solid", color="black", weight=3]; 27.70/11.34 2065[label="compare1 Nothing (Just xwv2900) (Nothing <= Just xwv2900)",fontsize=16,color="black",shape="box"];2065 -> 2111[label="",style="solid", color="black", weight=3]; 27.70/11.34 2066[label="compare1 (Just xwv2800) Nothing (Just xwv2800 <= Nothing)",fontsize=16,color="black",shape="box"];2066 -> 2112[label="",style="solid", color="black", weight=3]; 27.70/11.34 2067[label="compare1 (Just xwv2800) (Just xwv2900) (Just xwv2800 <= Just xwv2900)",fontsize=16,color="black",shape="box"];2067 -> 2113[label="",style="solid", color="black", weight=3]; 27.70/11.34 303[label="compare3 Nothing (Just xwv300)",fontsize=16,color="black",shape="box"];303 -> 368[label="",style="solid", color="black", weight=3]; 27.70/11.34 305 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.34 305[label="Just xwv300 == Nothing",fontsize=16,color="magenta"];305 -> 369[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 305 -> 370[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 304[label="FiniteMap.delFromFM0 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing xwv37",fontsize=16,color="burlywood",shape="triangle"];4563[label="xwv37/False",fontsize=10,color="white",style="solid",shape="box"];304 -> 4563[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4563 -> 371[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4564[label="xwv37/True",fontsize=10,color="white",style="solid",shape="box"];304 -> 4564[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4564 -> 372[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 3541 -> 4[label="",style="dashed", color="red", weight=0]; 27.70/11.34 3541[label="FiniteMap.delFromFM xwv33 Nothing",fontsize=16,color="magenta"];3541 -> 3575[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3541 -> 3576[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3542[label="xwv31",fontsize=16,color="green",shape="box"];3543[label="xwv34",fontsize=16,color="green",shape="box"];3544[label="Just xwv300",fontsize=16,color="green",shape="box"];3604 -> 1254[label="",style="dashed", color="red", weight=0]; 27.70/11.34 3604[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv246 + FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv246 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];3604 -> 3605[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3604 -> 3606[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3603[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv340 xwv341 xwv344 xwv246 xwv340 xwv341 xwv246 xwv344 xwv247",fontsize=16,color="burlywood",shape="triangle"];4565[label="xwv247/False",fontsize=10,color="white",style="solid",shape="box"];3603 -> 4565[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4565 -> 3607[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4566[label="xwv247/True",fontsize=10,color="white",style="solid",shape="box"];3603 -> 4566[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4566 -> 3608[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 310[label="compare3 (Just xwv40) Nothing",fontsize=16,color="black",shape="box"];310 -> 381[label="",style="solid", color="black", weight=3]; 27.70/11.34 312 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.34 312[label="Nothing == Just xwv40",fontsize=16,color="magenta"];312 -> 382[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 312 -> 383[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 311[label="FiniteMap.delFromFM0 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv40) xwv38",fontsize=16,color="burlywood",shape="triangle"];4567[label="xwv38/False",fontsize=10,color="white",style="solid",shape="box"];311 -> 4567[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4567 -> 384[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4568[label="xwv38/True",fontsize=10,color="white",style="solid",shape="box"];311 -> 4568[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4568 -> 385[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 3545 -> 4[label="",style="dashed", color="red", weight=0]; 27.70/11.34 3545[label="FiniteMap.delFromFM xwv33 (Just xwv40)",fontsize=16,color="magenta"];3545 -> 3577[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3545 -> 3578[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3546[label="xwv31",fontsize=16,color="green",shape="box"];3547[label="xwv34",fontsize=16,color="green",shape="box"];3548[label="Nothing",fontsize=16,color="green",shape="box"];267[label="() == ()",fontsize=16,color="black",shape="box"];267 -> 316[label="",style="solid", color="black", weight=3]; 27.70/11.34 268[label="xwv400 : xwv401 == xwv3000 : xwv3001",fontsize=16,color="black",shape="box"];268 -> 317[label="",style="solid", color="black", weight=3]; 27.70/11.34 269[label="xwv400 : xwv401 == []",fontsize=16,color="black",shape="box"];269 -> 318[label="",style="solid", color="black", weight=3]; 27.70/11.34 270[label="[] == xwv3000 : xwv3001",fontsize=16,color="black",shape="box"];270 -> 319[label="",style="solid", color="black", weight=3]; 27.70/11.34 271[label="[] == []",fontsize=16,color="black",shape="box"];271 -> 320[label="",style="solid", color="black", weight=3]; 27.70/11.34 272[label="Left xwv400 == Left xwv3000",fontsize=16,color="black",shape="box"];272 -> 321[label="",style="solid", color="black", weight=3]; 27.70/11.34 273[label="Left xwv400 == Right xwv3000",fontsize=16,color="black",shape="box"];273 -> 322[label="",style="solid", color="black", weight=3]; 27.70/11.34 274[label="Right xwv400 == Left xwv3000",fontsize=16,color="black",shape="box"];274 -> 323[label="",style="solid", color="black", weight=3]; 27.70/11.34 275[label="Right xwv400 == Right xwv3000",fontsize=16,color="black",shape="box"];275 -> 324[label="",style="solid", color="black", weight=3]; 27.70/11.34 276[label="(xwv400,xwv401) == (xwv3000,xwv3001)",fontsize=16,color="black",shape="box"];276 -> 325[label="",style="solid", color="black", weight=3]; 27.70/11.34 277[label="Integer xwv400 == Integer xwv3000",fontsize=16,color="black",shape="box"];277 -> 326[label="",style="solid", color="black", weight=3]; 27.70/11.34 278[label="primEqDouble (Double xwv400 xwv401) xwv300",fontsize=16,color="burlywood",shape="box"];4569[label="xwv300/Double xwv3000 xwv3001",fontsize=10,color="white",style="solid",shape="box"];278 -> 4569[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4569 -> 327[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 279[label="False == False",fontsize=16,color="black",shape="box"];279 -> 328[label="",style="solid", color="black", weight=3]; 27.70/11.34 280[label="False == True",fontsize=16,color="black",shape="box"];280 -> 329[label="",style="solid", color="black", weight=3]; 27.70/11.34 281[label="True == False",fontsize=16,color="black",shape="box"];281 -> 330[label="",style="solid", color="black", weight=3]; 27.70/11.34 282[label="True == True",fontsize=16,color="black",shape="box"];282 -> 331[label="",style="solid", color="black", weight=3]; 27.70/11.34 283[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];283 -> 332[label="",style="solid", color="black", weight=3]; 27.70/11.34 284[label="Nothing == Just xwv3000",fontsize=16,color="black",shape="box"];284 -> 333[label="",style="solid", color="black", weight=3]; 27.70/11.34 285[label="Just xwv400 == Nothing",fontsize=16,color="black",shape="box"];285 -> 334[label="",style="solid", color="black", weight=3]; 27.70/11.34 286[label="Just xwv400 == Just xwv3000",fontsize=16,color="black",shape="box"];286 -> 335[label="",style="solid", color="black", weight=3]; 27.70/11.34 287[label="primEqFloat (Float xwv400 xwv401) xwv300",fontsize=16,color="burlywood",shape="box"];4570[label="xwv300/Float xwv3000 xwv3001",fontsize=10,color="white",style="solid",shape="box"];287 -> 4570[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4570 -> 336[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 288[label="(xwv400,xwv401,xwv402) == (xwv3000,xwv3001,xwv3002)",fontsize=16,color="black",shape="box"];288 -> 337[label="",style="solid", color="black", weight=3]; 27.70/11.34 289[label="xwv400 :% xwv401 == xwv3000 :% xwv3001",fontsize=16,color="black",shape="box"];289 -> 338[label="",style="solid", color="black", weight=3]; 27.70/11.34 290[label="primEqChar (Char xwv400) xwv300",fontsize=16,color="burlywood",shape="box"];4571[label="xwv300/Char xwv3000",fontsize=10,color="white",style="solid",shape="box"];290 -> 4571[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4571 -> 339[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 291[label="primEqInt (Pos xwv400) xwv300",fontsize=16,color="burlywood",shape="box"];4572[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];291 -> 4572[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4572 -> 340[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4573[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];291 -> 4573[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4573 -> 341[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 292[label="primEqInt (Neg xwv400) xwv300",fontsize=16,color="burlywood",shape="box"];4574[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];292 -> 4574[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4574 -> 342[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4575[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];292 -> 4575[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4575 -> 343[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 354[label="compare3 (Just xwv18) (Just xwv13)",fontsize=16,color="black",shape="box"];354 -> 476[label="",style="solid", color="black", weight=3]; 27.70/11.34 356 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.34 356[label="Just xwv13 == Just xwv18",fontsize=16,color="magenta"];356 -> 477[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 356 -> 478[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 355[label="FiniteMap.delFromFM0 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) xwv46",fontsize=16,color="burlywood",shape="triangle"];4576[label="xwv46/False",fontsize=10,color="white",style="solid",shape="box"];355 -> 4576[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4576 -> 479[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4577[label="xwv46/True",fontsize=10,color="white",style="solid",shape="box"];355 -> 4577[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4577 -> 480[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 3549 -> 4[label="",style="dashed", color="red", weight=0]; 27.70/11.34 3549[label="FiniteMap.delFromFM xwv16 (Just xwv18)",fontsize=16,color="magenta"];3549 -> 3579[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3549 -> 3580[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3550[label="xwv14",fontsize=16,color="green",shape="box"];3551[label="xwv17",fontsize=16,color="green",shape="box"];3552[label="Just xwv13",fontsize=16,color="green",shape="box"];361 -> 1985[label="",style="dashed", color="red", weight=0]; 27.70/11.34 361[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];361 -> 2004[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 361 -> 2005[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 361 -> 2006[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 362[label="Nothing",fontsize=16,color="green",shape="box"];363[label="Nothing",fontsize=16,color="green",shape="box"];364[label="FiniteMap.delFromFM0 Nothing xwv31 xwv32 xwv33 xwv34 Nothing False",fontsize=16,color="black",shape="box"];364 -> 485[label="",style="solid", color="black", weight=3]; 27.70/11.34 365[label="FiniteMap.delFromFM0 Nothing xwv31 xwv32 xwv33 xwv34 Nothing True",fontsize=16,color="black",shape="box"];365 -> 486[label="",style="solid", color="black", weight=3]; 27.70/11.34 3573[label="Nothing",fontsize=16,color="green",shape="box"];3574[label="xwv33",fontsize=16,color="green",shape="box"];2110[label="compare1 Nothing Nothing True",fontsize=16,color="black",shape="box"];2110 -> 2118[label="",style="solid", color="black", weight=3]; 27.70/11.34 2111[label="compare1 Nothing (Just xwv2900) True",fontsize=16,color="black",shape="box"];2111 -> 2119[label="",style="solid", color="black", weight=3]; 27.70/11.34 2112[label="compare1 (Just xwv2800) Nothing False",fontsize=16,color="black",shape="box"];2112 -> 2120[label="",style="solid", color="black", weight=3]; 27.70/11.34 2113 -> 2121[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2113[label="compare1 (Just xwv2800) (Just xwv2900) (xwv2800 <= xwv2900)",fontsize=16,color="magenta"];2113 -> 2122[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 2113 -> 2123[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 2113 -> 2124[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 368 -> 1985[label="",style="dashed", color="red", weight=0]; 27.70/11.34 368[label="compare2 Nothing (Just xwv300) (Nothing == Just xwv300)",fontsize=16,color="magenta"];368 -> 2007[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 368 -> 2008[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 368 -> 2009[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 369[label="Nothing",fontsize=16,color="green",shape="box"];370[label="Just xwv300",fontsize=16,color="green",shape="box"];371[label="FiniteMap.delFromFM0 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing False",fontsize=16,color="black",shape="box"];371 -> 492[label="",style="solid", color="black", weight=3]; 27.70/11.34 372[label="FiniteMap.delFromFM0 (Just xwv300) xwv31 xwv32 xwv33 xwv34 Nothing True",fontsize=16,color="black",shape="box"];372 -> 493[label="",style="solid", color="black", weight=3]; 27.70/11.34 3575[label="Nothing",fontsize=16,color="green",shape="box"];3576[label="xwv33",fontsize=16,color="green",shape="box"];3605[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv246 + FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv246",fontsize=16,color="black",shape="box"];3605 -> 3622[label="",style="solid", color="black", weight=3]; 27.70/11.34 3606[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1254[label="xwv280 < xwv290",fontsize=16,color="black",shape="triangle"];1254 -> 1398[label="",style="solid", color="black", weight=3]; 27.70/11.34 3607[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv340 xwv341 xwv344 xwv246 xwv340 xwv341 xwv246 xwv344 False",fontsize=16,color="black",shape="box"];3607 -> 3623[label="",style="solid", color="black", weight=3]; 27.70/11.34 3608[label="FiniteMap.mkBalBranch6MkBalBranch5 xwv340 xwv341 xwv344 xwv246 xwv340 xwv341 xwv246 xwv344 True",fontsize=16,color="black",shape="box"];3608 -> 3624[label="",style="solid", color="black", weight=3]; 27.70/11.34 381 -> 1985[label="",style="dashed", color="red", weight=0]; 27.70/11.34 381[label="compare2 (Just xwv40) Nothing (Just xwv40 == Nothing)",fontsize=16,color="magenta"];381 -> 2010[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 381 -> 2011[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 381 -> 2012[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 382[label="Just xwv40",fontsize=16,color="green",shape="box"];383[label="Nothing",fontsize=16,color="green",shape="box"];384[label="FiniteMap.delFromFM0 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv40) False",fontsize=16,color="black",shape="box"];384 -> 505[label="",style="solid", color="black", weight=3]; 27.70/11.34 385[label="FiniteMap.delFromFM0 Nothing xwv31 xwv32 xwv33 xwv34 (Just xwv40) True",fontsize=16,color="black",shape="box"];385 -> 506[label="",style="solid", color="black", weight=3]; 27.70/11.34 3577[label="Just xwv40",fontsize=16,color="green",shape="box"];3578[label="xwv33",fontsize=16,color="green",shape="box"];316[label="True",fontsize=16,color="green",shape="box"];317 -> 513[label="",style="dashed", color="red", weight=0]; 27.70/11.34 317[label="xwv400 == xwv3000 && xwv401 == xwv3001",fontsize=16,color="magenta"];317 -> 514[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 317 -> 515[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 318[label="False",fontsize=16,color="green",shape="box"];319[label="False",fontsize=16,color="green",shape="box"];320[label="True",fontsize=16,color="green",shape="box"];321[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];4578[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 4578[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4578 -> 405[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4579[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 4579[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4579 -> 406[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4580[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 4580[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4580 -> 407[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4581[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 4581[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4581 -> 408[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4582[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 4582[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4582 -> 409[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4583[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 4583[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4583 -> 410[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4584[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 4584[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4584 -> 411[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4585[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 4585[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4585 -> 412[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4586[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 4586[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4586 -> 413[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4587[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 4587[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4587 -> 414[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4588[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 4588[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4588 -> 415[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4589[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 4589[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4589 -> 416[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4590[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 4590[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4590 -> 417[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4591[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];321 -> 4591[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4591 -> 418[label="",style="solid", color="blue", weight=3]; 27.70/11.34 322[label="False",fontsize=16,color="green",shape="box"];323[label="False",fontsize=16,color="green",shape="box"];324[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];4592[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];324 -> 4592[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4592 -> 419[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4593[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];324 -> 4593[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4593 -> 420[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4594[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];324 -> 4594[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4594 -> 421[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4595[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];324 -> 4595[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4595 -> 422[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4596[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];324 -> 4596[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4596 -> 423[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4597[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];324 -> 4597[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4597 -> 424[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4598[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];324 -> 4598[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4598 -> 425[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4599[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];324 -> 4599[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4599 -> 426[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4600[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];324 -> 4600[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4600 -> 427[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4601[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];324 -> 4601[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4601 -> 428[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4602[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];324 -> 4602[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4602 -> 429[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4603[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];324 -> 4603[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4603 -> 430[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4604[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];324 -> 4604[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4604 -> 431[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4605[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];324 -> 4605[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4605 -> 432[label="",style="solid", color="blue", weight=3]; 27.70/11.34 325 -> 513[label="",style="dashed", color="red", weight=0]; 27.70/11.34 325[label="xwv400 == xwv3000 && xwv401 == xwv3001",fontsize=16,color="magenta"];325 -> 516[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 325 -> 517[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 326 -> 241[label="",style="dashed", color="red", weight=0]; 27.70/11.34 326[label="primEqInt xwv400 xwv3000",fontsize=16,color="magenta"];326 -> 433[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 326 -> 434[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 327[label="primEqDouble (Double xwv400 xwv401) (Double xwv3000 xwv3001)",fontsize=16,color="black",shape="box"];327 -> 435[label="",style="solid", color="black", weight=3]; 27.70/11.34 328[label="True",fontsize=16,color="green",shape="box"];329[label="False",fontsize=16,color="green",shape="box"];330[label="False",fontsize=16,color="green",shape="box"];331[label="True",fontsize=16,color="green",shape="box"];332[label="True",fontsize=16,color="green",shape="box"];333[label="False",fontsize=16,color="green",shape="box"];334[label="False",fontsize=16,color="green",shape="box"];335[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];4606[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];335 -> 4606[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4606 -> 436[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4607[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];335 -> 4607[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4607 -> 437[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4608[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];335 -> 4608[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4608 -> 438[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4609[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];335 -> 4609[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4609 -> 439[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4610[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];335 -> 4610[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4610 -> 440[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4611[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];335 -> 4611[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4611 -> 441[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4612[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];335 -> 4612[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4612 -> 442[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4613[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];335 -> 4613[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4613 -> 443[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4614[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];335 -> 4614[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4614 -> 444[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4615[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];335 -> 4615[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4615 -> 445[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4616[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];335 -> 4616[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4616 -> 446[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4617[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];335 -> 4617[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4617 -> 447[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4618[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];335 -> 4618[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4618 -> 448[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4619[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];335 -> 4619[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4619 -> 449[label="",style="solid", color="blue", weight=3]; 27.70/11.34 336[label="primEqFloat (Float xwv400 xwv401) (Float xwv3000 xwv3001)",fontsize=16,color="black",shape="box"];336 -> 450[label="",style="solid", color="black", weight=3]; 27.70/11.34 337 -> 513[label="",style="dashed", color="red", weight=0]; 27.70/11.34 337[label="xwv400 == xwv3000 && xwv401 == xwv3001 && xwv402 == xwv3002",fontsize=16,color="magenta"];337 -> 518[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 337 -> 519[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 338 -> 513[label="",style="dashed", color="red", weight=0]; 27.70/11.34 338[label="xwv400 == xwv3000 && xwv401 == xwv3001",fontsize=16,color="magenta"];338 -> 520[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 338 -> 521[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 339[label="primEqChar (Char xwv400) (Char xwv3000)",fontsize=16,color="black",shape="box"];339 -> 451[label="",style="solid", color="black", weight=3]; 27.70/11.34 340[label="primEqInt (Pos (Succ xwv4000)) xwv300",fontsize=16,color="burlywood",shape="box"];4620[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];340 -> 4620[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4620 -> 452[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4621[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];340 -> 4621[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4621 -> 453[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 341[label="primEqInt (Pos Zero) xwv300",fontsize=16,color="burlywood",shape="box"];4622[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];341 -> 4622[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4622 -> 454[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4623[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];341 -> 4623[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4623 -> 455[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 342[label="primEqInt (Neg (Succ xwv4000)) xwv300",fontsize=16,color="burlywood",shape="box"];4624[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];342 -> 4624[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4624 -> 456[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4625[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];342 -> 4625[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4625 -> 457[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 343[label="primEqInt (Neg Zero) xwv300",fontsize=16,color="burlywood",shape="box"];4626[label="xwv300/Pos xwv3000",fontsize=10,color="white",style="solid",shape="box"];343 -> 4626[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4626 -> 458[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4627[label="xwv300/Neg xwv3000",fontsize=10,color="white",style="solid",shape="box"];343 -> 4627[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4627 -> 459[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 476 -> 1985[label="",style="dashed", color="red", weight=0]; 27.70/11.34 476[label="compare2 (Just xwv18) (Just xwv13) (Just xwv18 == Just xwv13)",fontsize=16,color="magenta"];476 -> 2013[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 476 -> 2014[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 476 -> 2015[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 477[label="Just xwv18",fontsize=16,color="green",shape="box"];478[label="Just xwv13",fontsize=16,color="green",shape="box"];479[label="FiniteMap.delFromFM0 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) False",fontsize=16,color="black",shape="box"];479 -> 722[label="",style="solid", color="black", weight=3]; 27.70/11.34 480[label="FiniteMap.delFromFM0 (Just xwv13) xwv14 xwv15 xwv16 xwv17 (Just xwv18) True",fontsize=16,color="black",shape="box"];480 -> 723[label="",style="solid", color="black", weight=3]; 27.70/11.34 3579[label="Just xwv18",fontsize=16,color="green",shape="box"];3580[label="xwv16",fontsize=16,color="green",shape="box"];2004[label="Nothing",fontsize=16,color="green",shape="box"];2005 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2005[label="Nothing == Nothing",fontsize=16,color="magenta"];2005 -> 2036[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 2005 -> 2037[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 2006[label="Nothing",fontsize=16,color="green",shape="box"];485[label="error []",fontsize=16,color="red",shape="box"];486[label="FiniteMap.glueBal xwv33 xwv34",fontsize=16,color="burlywood",shape="triangle"];4628[label="xwv33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];486 -> 4628[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4628 -> 728[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4629[label="xwv33/FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=10,color="white",style="solid",shape="box"];486 -> 4629[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4629 -> 729[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 2118[label="LT",fontsize=16,color="green",shape="box"];2119[label="LT",fontsize=16,color="green",shape="box"];2120[label="compare0 (Just xwv2800) Nothing otherwise",fontsize=16,color="black",shape="box"];2120 -> 2125[label="",style="solid", color="black", weight=3]; 27.70/11.34 2122[label="xwv2800 <= xwv2900",fontsize=16,color="blue",shape="box"];4630[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4630[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4630 -> 2126[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4631[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4631[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4631 -> 2127[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4632[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4632[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4632 -> 2128[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4633[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4633[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4633 -> 2129[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4634[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4634[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4634 -> 2130[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4635[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4635[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4635 -> 2131[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4636[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4636[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4636 -> 2132[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4637[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4637[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4637 -> 2133[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4638[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4638[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4638 -> 2134[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4639[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4639[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4639 -> 2135[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4640[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4640[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4640 -> 2136[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4641[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4641[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4641 -> 2137[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4642[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4642[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4642 -> 2138[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4643[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2122 -> 4643[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4643 -> 2139[label="",style="solid", color="blue", weight=3]; 27.70/11.34 2123[label="xwv2800",fontsize=16,color="green",shape="box"];2124[label="xwv2900",fontsize=16,color="green",shape="box"];2121[label="compare1 (Just xwv117) (Just xwv118) xwv119",fontsize=16,color="burlywood",shape="triangle"];4644[label="xwv119/False",fontsize=10,color="white",style="solid",shape="box"];2121 -> 4644[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4644 -> 2140[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4645[label="xwv119/True",fontsize=10,color="white",style="solid",shape="box"];2121 -> 4645[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4645 -> 2141[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 2007[label="Nothing",fontsize=16,color="green",shape="box"];2008 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2008[label="Nothing == Just xwv300",fontsize=16,color="magenta"];2008 -> 2038[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 2008 -> 2039[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 2009[label="Just xwv300",fontsize=16,color="green",shape="box"];492[label="error []",fontsize=16,color="red",shape="box"];493 -> 486[label="",style="dashed", color="red", weight=0]; 27.70/11.34 493[label="FiniteMap.glueBal xwv33 xwv34",fontsize=16,color="magenta"];3622 -> 3647[label="",style="dashed", color="red", weight=0]; 27.70/11.34 3622[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv246) (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv246)",fontsize=16,color="magenta"];3622 -> 3648[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 1398 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.34 1398[label="compare xwv280 xwv290 == LT",fontsize=16,color="magenta"];1398 -> 1608[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 1398 -> 1609[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3623 -> 3644[label="",style="dashed", color="red", weight=0]; 27.70/11.34 3623[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv340 xwv341 xwv344 xwv246 xwv340 xwv341 xwv246 xwv344 (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv246 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv246)",fontsize=16,color="magenta"];3623 -> 3645[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3624 -> 4339[label="",style="dashed", color="red", weight=0]; 27.70/11.34 3624[label="FiniteMap.mkBranch (Pos (Succ Zero)) xwv340 xwv341 xwv246 xwv344",fontsize=16,color="magenta"];3624 -> 4340[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3624 -> 4341[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3624 -> 4342[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3624 -> 4343[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3624 -> 4344[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 2010[label="Just xwv40",fontsize=16,color="green",shape="box"];2011 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2011[label="Just xwv40 == Nothing",fontsize=16,color="magenta"];2011 -> 2040[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 2011 -> 2041[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 2012[label="Nothing",fontsize=16,color="green",shape="box"];505[label="error []",fontsize=16,color="red",shape="box"];506 -> 486[label="",style="dashed", color="red", weight=0]; 27.70/11.34 506[label="FiniteMap.glueBal xwv33 xwv34",fontsize=16,color="magenta"];514[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];4646[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];514 -> 4646[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4646 -> 529[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4647[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];514 -> 4647[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4647 -> 530[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4648[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];514 -> 4648[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4648 -> 531[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4649[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];514 -> 4649[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4649 -> 532[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4650[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];514 -> 4650[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4650 -> 533[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4651[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];514 -> 4651[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4651 -> 534[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4652[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];514 -> 4652[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4652 -> 535[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4653[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];514 -> 4653[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4653 -> 536[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4654[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];514 -> 4654[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4654 -> 537[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4655[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];514 -> 4655[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4655 -> 538[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4656[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];514 -> 4656[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4656 -> 539[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4657[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];514 -> 4657[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4657 -> 540[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4658[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];514 -> 4658[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4658 -> 541[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4659[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];514 -> 4659[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4659 -> 542[label="",style="solid", color="blue", weight=3]; 27.70/11.34 515 -> 170[label="",style="dashed", color="red", weight=0]; 27.70/11.34 515[label="xwv401 == xwv3001",fontsize=16,color="magenta"];515 -> 543[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 515 -> 544[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 513[label="xwv56 && xwv57",fontsize=16,color="burlywood",shape="triangle"];4660[label="xwv56/False",fontsize=10,color="white",style="solid",shape="box"];513 -> 4660[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4660 -> 545[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4661[label="xwv56/True",fontsize=10,color="white",style="solid",shape="box"];513 -> 4661[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4661 -> 546[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 405 -> 169[label="",style="dashed", color="red", weight=0]; 27.70/11.34 405[label="xwv400 == xwv3000",fontsize=16,color="magenta"];405 -> 547[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 405 -> 548[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 406 -> 170[label="",style="dashed", color="red", weight=0]; 27.70/11.34 406[label="xwv400 == xwv3000",fontsize=16,color="magenta"];406 -> 549[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 406 -> 550[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 407 -> 171[label="",style="dashed", color="red", weight=0]; 27.70/11.34 407[label="xwv400 == xwv3000",fontsize=16,color="magenta"];407 -> 551[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 407 -> 552[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 408 -> 172[label="",style="dashed", color="red", weight=0]; 27.70/11.34 408[label="xwv400 == xwv3000",fontsize=16,color="magenta"];408 -> 553[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 408 -> 554[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 409 -> 173[label="",style="dashed", color="red", weight=0]; 27.70/11.34 409[label="xwv400 == xwv3000",fontsize=16,color="magenta"];409 -> 555[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 409 -> 556[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 410 -> 174[label="",style="dashed", color="red", weight=0]; 27.70/11.34 410[label="xwv400 == xwv3000",fontsize=16,color="magenta"];410 -> 557[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 410 -> 558[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 411 -> 175[label="",style="dashed", color="red", weight=0]; 27.70/11.34 411[label="xwv400 == xwv3000",fontsize=16,color="magenta"];411 -> 559[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 411 -> 560[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 412 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.34 412[label="xwv400 == xwv3000",fontsize=16,color="magenta"];412 -> 561[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 412 -> 562[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 413 -> 177[label="",style="dashed", color="red", weight=0]; 27.70/11.34 413[label="xwv400 == xwv3000",fontsize=16,color="magenta"];413 -> 563[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 413 -> 564[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 414 -> 178[label="",style="dashed", color="red", weight=0]; 27.70/11.34 414[label="xwv400 == xwv3000",fontsize=16,color="magenta"];414 -> 565[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 414 -> 566[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 415 -> 179[label="",style="dashed", color="red", weight=0]; 27.70/11.34 415[label="xwv400 == xwv3000",fontsize=16,color="magenta"];415 -> 567[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 415 -> 568[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 416 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.34 416[label="xwv400 == xwv3000",fontsize=16,color="magenta"];416 -> 569[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 416 -> 570[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 417 -> 181[label="",style="dashed", color="red", weight=0]; 27.70/11.34 417[label="xwv400 == xwv3000",fontsize=16,color="magenta"];417 -> 571[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 417 -> 572[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 418 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.34 418[label="xwv400 == xwv3000",fontsize=16,color="magenta"];418 -> 573[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 418 -> 574[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 419 -> 169[label="",style="dashed", color="red", weight=0]; 27.70/11.34 419[label="xwv400 == xwv3000",fontsize=16,color="magenta"];419 -> 575[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 419 -> 576[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 420 -> 170[label="",style="dashed", color="red", weight=0]; 27.70/11.34 420[label="xwv400 == xwv3000",fontsize=16,color="magenta"];420 -> 577[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 420 -> 578[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 421 -> 171[label="",style="dashed", color="red", weight=0]; 27.70/11.34 421[label="xwv400 == xwv3000",fontsize=16,color="magenta"];421 -> 579[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 421 -> 580[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 422 -> 172[label="",style="dashed", color="red", weight=0]; 27.70/11.34 422[label="xwv400 == xwv3000",fontsize=16,color="magenta"];422 -> 581[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 422 -> 582[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 423 -> 173[label="",style="dashed", color="red", weight=0]; 27.70/11.34 423[label="xwv400 == xwv3000",fontsize=16,color="magenta"];423 -> 583[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 423 -> 584[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 424 -> 174[label="",style="dashed", color="red", weight=0]; 27.70/11.34 424[label="xwv400 == xwv3000",fontsize=16,color="magenta"];424 -> 585[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 424 -> 586[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 425 -> 175[label="",style="dashed", color="red", weight=0]; 27.70/11.34 425[label="xwv400 == xwv3000",fontsize=16,color="magenta"];425 -> 587[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 425 -> 588[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 426 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.34 426[label="xwv400 == xwv3000",fontsize=16,color="magenta"];426 -> 589[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 426 -> 590[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 427 -> 177[label="",style="dashed", color="red", weight=0]; 27.70/11.34 427[label="xwv400 == xwv3000",fontsize=16,color="magenta"];427 -> 591[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 427 -> 592[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 428 -> 178[label="",style="dashed", color="red", weight=0]; 27.70/11.34 428[label="xwv400 == xwv3000",fontsize=16,color="magenta"];428 -> 593[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 428 -> 594[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 429 -> 179[label="",style="dashed", color="red", weight=0]; 27.70/11.34 429[label="xwv400 == xwv3000",fontsize=16,color="magenta"];429 -> 595[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 429 -> 596[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 430 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.34 430[label="xwv400 == xwv3000",fontsize=16,color="magenta"];430 -> 597[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 430 -> 598[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 431 -> 181[label="",style="dashed", color="red", weight=0]; 27.70/11.34 431[label="xwv400 == xwv3000",fontsize=16,color="magenta"];431 -> 599[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 431 -> 600[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 432 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.34 432[label="xwv400 == xwv3000",fontsize=16,color="magenta"];432 -> 601[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 432 -> 602[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 516[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];4662[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4662[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4662 -> 603[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4663[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4663[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4663 -> 604[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4664[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4664[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4664 -> 605[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4665[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4665[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4665 -> 606[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4666[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4666[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4666 -> 607[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4667[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4667[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4667 -> 608[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4668[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4668[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4668 -> 609[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4669[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4669[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4669 -> 610[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4670[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4670[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4670 -> 611[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4671[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4671[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4671 -> 612[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4672[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4672[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4672 -> 613[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4673[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4673[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4673 -> 614[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4674[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4674[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4674 -> 615[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4675[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 4675[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4675 -> 616[label="",style="solid", color="blue", weight=3]; 27.70/11.34 517[label="xwv401 == xwv3001",fontsize=16,color="blue",shape="box"];4676[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 4676[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4676 -> 617[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4677[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 4677[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4677 -> 618[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4678[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 4678[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4678 -> 619[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4679[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 4679[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4679 -> 620[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4680[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 4680[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4680 -> 621[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4681[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 4681[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4681 -> 622[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4682[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 4682[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4682 -> 623[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4683[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 4683[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4683 -> 624[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4684[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 4684[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4684 -> 625[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4685[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 4685[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4685 -> 626[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4686[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 4686[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4686 -> 627[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4687[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 4687[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4687 -> 628[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4688[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 4688[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4688 -> 629[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4689[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];517 -> 4689[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4689 -> 630[label="",style="solid", color="blue", weight=3]; 27.70/11.34 433[label="xwv3000",fontsize=16,color="green",shape="box"];434[label="xwv400",fontsize=16,color="green",shape="box"];435 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.34 435[label="xwv400 * xwv3001 == xwv401 * xwv3000",fontsize=16,color="magenta"];435 -> 631[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 435 -> 632[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 436 -> 169[label="",style="dashed", color="red", weight=0]; 27.70/11.34 436[label="xwv400 == xwv3000",fontsize=16,color="magenta"];436 -> 633[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 436 -> 634[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 437 -> 170[label="",style="dashed", color="red", weight=0]; 27.70/11.34 437[label="xwv400 == xwv3000",fontsize=16,color="magenta"];437 -> 635[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 437 -> 636[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 438 -> 171[label="",style="dashed", color="red", weight=0]; 27.70/11.34 438[label="xwv400 == xwv3000",fontsize=16,color="magenta"];438 -> 637[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 438 -> 638[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 439 -> 172[label="",style="dashed", color="red", weight=0]; 27.70/11.34 439[label="xwv400 == xwv3000",fontsize=16,color="magenta"];439 -> 639[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 439 -> 640[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 440 -> 173[label="",style="dashed", color="red", weight=0]; 27.70/11.34 440[label="xwv400 == xwv3000",fontsize=16,color="magenta"];440 -> 641[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 440 -> 642[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 441 -> 174[label="",style="dashed", color="red", weight=0]; 27.70/11.34 441[label="xwv400 == xwv3000",fontsize=16,color="magenta"];441 -> 643[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 441 -> 644[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 442 -> 175[label="",style="dashed", color="red", weight=0]; 27.70/11.34 442[label="xwv400 == xwv3000",fontsize=16,color="magenta"];442 -> 645[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 442 -> 646[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 443 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.34 443[label="xwv400 == xwv3000",fontsize=16,color="magenta"];443 -> 647[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 443 -> 648[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 444 -> 177[label="",style="dashed", color="red", weight=0]; 27.70/11.34 444[label="xwv400 == xwv3000",fontsize=16,color="magenta"];444 -> 649[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 444 -> 650[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 445 -> 178[label="",style="dashed", color="red", weight=0]; 27.70/11.34 445[label="xwv400 == xwv3000",fontsize=16,color="magenta"];445 -> 651[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 445 -> 652[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 446 -> 179[label="",style="dashed", color="red", weight=0]; 27.70/11.34 446[label="xwv400 == xwv3000",fontsize=16,color="magenta"];446 -> 653[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 446 -> 654[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 447 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.34 447[label="xwv400 == xwv3000",fontsize=16,color="magenta"];447 -> 655[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 447 -> 656[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 448 -> 181[label="",style="dashed", color="red", weight=0]; 27.70/11.34 448[label="xwv400 == xwv3000",fontsize=16,color="magenta"];448 -> 657[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 448 -> 658[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 449 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.34 449[label="xwv400 == xwv3000",fontsize=16,color="magenta"];449 -> 659[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 449 -> 660[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 450 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.34 450[label="xwv400 * xwv3001 == xwv401 * xwv3000",fontsize=16,color="magenta"];450 -> 661[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 450 -> 662[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 518[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];4690[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 4690[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4690 -> 663[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4691[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 4691[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4691 -> 664[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4692[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 4692[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4692 -> 665[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4693[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 4693[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4693 -> 666[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4694[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 4694[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4694 -> 667[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4695[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 4695[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4695 -> 668[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4696[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 4696[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4696 -> 669[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4697[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 4697[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4697 -> 670[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4698[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 4698[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4698 -> 671[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4699[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 4699[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4699 -> 672[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4700[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 4700[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4700 -> 673[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4701[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 4701[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4701 -> 674[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4702[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 4702[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4702 -> 675[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4703[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];518 -> 4703[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4703 -> 676[label="",style="solid", color="blue", weight=3]; 27.70/11.34 519 -> 513[label="",style="dashed", color="red", weight=0]; 27.70/11.34 519[label="xwv401 == xwv3001 && xwv402 == xwv3002",fontsize=16,color="magenta"];519 -> 677[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 519 -> 678[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 520[label="xwv400 == xwv3000",fontsize=16,color="blue",shape="box"];4704[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 4704[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4704 -> 679[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4705[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 4705[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4705 -> 680[label="",style="solid", color="blue", weight=3]; 27.70/11.34 521[label="xwv401 == xwv3001",fontsize=16,color="blue",shape="box"];4706[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];521 -> 4706[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4706 -> 681[label="",style="solid", color="blue", weight=3]; 27.70/11.34 4707[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];521 -> 4707[label="",style="solid", color="blue", weight=9]; 27.70/11.34 4707 -> 682[label="",style="solid", color="blue", weight=3]; 27.70/11.34 451[label="primEqNat xwv400 xwv3000",fontsize=16,color="burlywood",shape="triangle"];4708[label="xwv400/Succ xwv4000",fontsize=10,color="white",style="solid",shape="box"];451 -> 4708[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4708 -> 683[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4709[label="xwv400/Zero",fontsize=10,color="white",style="solid",shape="box"];451 -> 4709[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4709 -> 684[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 452[label="primEqInt (Pos (Succ xwv4000)) (Pos xwv3000)",fontsize=16,color="burlywood",shape="box"];4710[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];452 -> 4710[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4710 -> 685[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4711[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];452 -> 4711[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4711 -> 686[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 453[label="primEqInt (Pos (Succ xwv4000)) (Neg xwv3000)",fontsize=16,color="black",shape="box"];453 -> 687[label="",style="solid", color="black", weight=3]; 27.70/11.34 454[label="primEqInt (Pos Zero) (Pos xwv3000)",fontsize=16,color="burlywood",shape="box"];4712[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];454 -> 4712[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4712 -> 688[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4713[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];454 -> 4713[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4713 -> 689[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 455[label="primEqInt (Pos Zero) (Neg xwv3000)",fontsize=16,color="burlywood",shape="box"];4714[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];455 -> 4714[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4714 -> 690[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4715[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];455 -> 4715[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4715 -> 691[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 456[label="primEqInt (Neg (Succ xwv4000)) (Pos xwv3000)",fontsize=16,color="black",shape="box"];456 -> 692[label="",style="solid", color="black", weight=3]; 27.70/11.34 457[label="primEqInt (Neg (Succ xwv4000)) (Neg xwv3000)",fontsize=16,color="burlywood",shape="box"];4716[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];457 -> 4716[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4716 -> 693[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4717[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];457 -> 4717[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4717 -> 694[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 458[label="primEqInt (Neg Zero) (Pos xwv3000)",fontsize=16,color="burlywood",shape="box"];4718[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];458 -> 4718[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4718 -> 695[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4719[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];458 -> 4719[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4719 -> 696[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 459[label="primEqInt (Neg Zero) (Neg xwv3000)",fontsize=16,color="burlywood",shape="box"];4720[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];459 -> 4720[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4720 -> 697[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4721[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];459 -> 4721[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4721 -> 698[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 2013[label="Just xwv18",fontsize=16,color="green",shape="box"];2014 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.34 2014[label="Just xwv18 == Just xwv13",fontsize=16,color="magenta"];2014 -> 2042[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 2014 -> 2043[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 2015[label="Just xwv13",fontsize=16,color="green",shape="box"];722[label="error []",fontsize=16,color="red",shape="box"];723 -> 486[label="",style="dashed", color="red", weight=0]; 27.70/11.34 723[label="FiniteMap.glueBal xwv16 xwv17",fontsize=16,color="magenta"];723 -> 954[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 723 -> 955[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 2036[label="Nothing",fontsize=16,color="green",shape="box"];2037[label="Nothing",fontsize=16,color="green",shape="box"];728[label="FiniteMap.glueBal FiniteMap.EmptyFM xwv34",fontsize=16,color="black",shape="box"];728 -> 958[label="",style="solid", color="black", weight=3]; 27.70/11.34 729[label="FiniteMap.glueBal (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) xwv34",fontsize=16,color="burlywood",shape="box"];4722[label="xwv34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];729 -> 4722[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4722 -> 959[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4723[label="xwv34/FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344",fontsize=10,color="white",style="solid",shape="box"];729 -> 4723[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4723 -> 960[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 2125[label="compare0 (Just xwv2800) Nothing True",fontsize=16,color="black",shape="box"];2125 -> 2181[label="",style="solid", color="black", weight=3]; 27.70/11.34 2126[label="xwv2800 <= xwv2900",fontsize=16,color="burlywood",shape="triangle"];4724[label="xwv2800/Nothing",fontsize=10,color="white",style="solid",shape="box"];2126 -> 4724[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4724 -> 2182[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4725[label="xwv2800/Just xwv28000",fontsize=10,color="white",style="solid",shape="box"];2126 -> 4725[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4725 -> 2183[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 2127[label="xwv2800 <= xwv2900",fontsize=16,color="burlywood",shape="triangle"];4726[label="xwv2800/False",fontsize=10,color="white",style="solid",shape="box"];2127 -> 4726[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4726 -> 2184[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4727[label="xwv2800/True",fontsize=10,color="white",style="solid",shape="box"];2127 -> 4727[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4727 -> 2185[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 2128[label="xwv2800 <= xwv2900",fontsize=16,color="burlywood",shape="triangle"];4728[label="xwv2800/(xwv28000,xwv28001,xwv28002)",fontsize=10,color="white",style="solid",shape="box"];2128 -> 4728[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4728 -> 2186[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 2129[label="xwv2800 <= xwv2900",fontsize=16,color="burlywood",shape="triangle"];4729[label="xwv2800/Left xwv28000",fontsize=10,color="white",style="solid",shape="box"];2129 -> 4729[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4729 -> 2187[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4730[label="xwv2800/Right xwv28000",fontsize=10,color="white",style="solid",shape="box"];2129 -> 4730[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4730 -> 2188[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 2130[label="xwv2800 <= xwv2900",fontsize=16,color="black",shape="triangle"];2130 -> 2189[label="",style="solid", color="black", weight=3]; 27.70/11.34 2131[label="xwv2800 <= xwv2900",fontsize=16,color="burlywood",shape="triangle"];4731[label="xwv2800/LT",fontsize=10,color="white",style="solid",shape="box"];2131 -> 4731[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4731 -> 2190[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4732[label="xwv2800/EQ",fontsize=10,color="white",style="solid",shape="box"];2131 -> 4732[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4732 -> 2191[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4733[label="xwv2800/GT",fontsize=10,color="white",style="solid",shape="box"];2131 -> 4733[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4733 -> 2192[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 2132[label="xwv2800 <= xwv2900",fontsize=16,color="black",shape="triangle"];2132 -> 2193[label="",style="solid", color="black", weight=3]; 27.70/11.34 2133[label="xwv2800 <= xwv2900",fontsize=16,color="burlywood",shape="triangle"];4734[label="xwv2800/(xwv28000,xwv28001)",fontsize=10,color="white",style="solid",shape="box"];2133 -> 4734[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4734 -> 2194[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 2134[label="xwv2800 <= xwv2900",fontsize=16,color="black",shape="triangle"];2134 -> 2195[label="",style="solid", color="black", weight=3]; 27.70/11.34 2135[label="xwv2800 <= xwv2900",fontsize=16,color="black",shape="triangle"];2135 -> 2196[label="",style="solid", color="black", weight=3]; 27.70/11.34 2136[label="xwv2800 <= xwv2900",fontsize=16,color="black",shape="triangle"];2136 -> 2197[label="",style="solid", color="black", weight=3]; 27.70/11.34 2137[label="xwv2800 <= xwv2900",fontsize=16,color="black",shape="triangle"];2137 -> 2198[label="",style="solid", color="black", weight=3]; 27.70/11.34 2138[label="xwv2800 <= xwv2900",fontsize=16,color="black",shape="triangle"];2138 -> 2199[label="",style="solid", color="black", weight=3]; 27.70/11.34 2139[label="xwv2800 <= xwv2900",fontsize=16,color="black",shape="triangle"];2139 -> 2200[label="",style="solid", color="black", weight=3]; 27.70/11.34 2140[label="compare1 (Just xwv117) (Just xwv118) False",fontsize=16,color="black",shape="box"];2140 -> 2201[label="",style="solid", color="black", weight=3]; 27.70/11.34 2141[label="compare1 (Just xwv117) (Just xwv118) True",fontsize=16,color="black",shape="box"];2141 -> 2202[label="",style="solid", color="black", weight=3]; 27.70/11.34 2038[label="Just xwv300",fontsize=16,color="green",shape="box"];2039[label="Nothing",fontsize=16,color="green",shape="box"];3648[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv246",fontsize=16,color="black",shape="triangle"];3648 -> 3650[label="",style="solid", color="black", weight=3]; 27.70/11.34 3647[label="primPlusInt xwv250 (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv246)",fontsize=16,color="burlywood",shape="triangle"];4735[label="xwv250/Pos xwv2500",fontsize=10,color="white",style="solid",shape="box"];3647 -> 4735[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4735 -> 3651[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4736[label="xwv250/Neg xwv2500",fontsize=10,color="white",style="solid",shape="box"];3647 -> 4736[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4736 -> 3652[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 1608[label="LT",fontsize=16,color="green",shape="box"];1609 -> 1190[label="",style="dashed", color="red", weight=0]; 27.70/11.34 1609[label="compare xwv280 xwv290",fontsize=16,color="magenta"];1609 -> 1807[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 1609 -> 1808[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3645 -> 1477[label="",style="dashed", color="red", weight=0]; 27.70/11.34 3645[label="FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv246 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv246",fontsize=16,color="magenta"];3645 -> 3653[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3645 -> 3654[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 3644[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv340 xwv341 xwv344 xwv246 xwv340 xwv341 xwv246 xwv344 xwv248",fontsize=16,color="burlywood",shape="triangle"];4737[label="xwv248/False",fontsize=10,color="white",style="solid",shape="box"];3644 -> 4737[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4737 -> 3655[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4738[label="xwv248/True",fontsize=10,color="white",style="solid",shape="box"];3644 -> 4738[label="",style="solid", color="burlywood", weight=9]; 27.70/11.34 4738 -> 3656[label="",style="solid", color="burlywood", weight=3]; 27.70/11.34 4340[label="xwv246",fontsize=16,color="green",shape="box"];4341[label="xwv340",fontsize=16,color="green",shape="box"];4342[label="xwv341",fontsize=16,color="green",shape="box"];4343[label="Zero",fontsize=16,color="green",shape="box"];4344[label="xwv344",fontsize=16,color="green",shape="box"];4339[label="FiniteMap.mkBranch (Pos (Succ xwv363)) xwv364 xwv365 xwv366 xwv367",fontsize=16,color="black",shape="triangle"];4339 -> 4395[label="",style="solid", color="black", weight=3]; 27.70/11.34 2040[label="Nothing",fontsize=16,color="green",shape="box"];2041[label="Just xwv40",fontsize=16,color="green",shape="box"];529 -> 169[label="",style="dashed", color="red", weight=0]; 27.70/11.34 529[label="xwv400 == xwv3000",fontsize=16,color="magenta"];529 -> 747[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 529 -> 748[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 530 -> 170[label="",style="dashed", color="red", weight=0]; 27.70/11.34 530[label="xwv400 == xwv3000",fontsize=16,color="magenta"];530 -> 749[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 530 -> 750[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 531 -> 171[label="",style="dashed", color="red", weight=0]; 27.70/11.34 531[label="xwv400 == xwv3000",fontsize=16,color="magenta"];531 -> 751[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 531 -> 752[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 532 -> 172[label="",style="dashed", color="red", weight=0]; 27.70/11.34 532[label="xwv400 == xwv3000",fontsize=16,color="magenta"];532 -> 753[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 532 -> 754[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 533 -> 173[label="",style="dashed", color="red", weight=0]; 27.70/11.34 533[label="xwv400 == xwv3000",fontsize=16,color="magenta"];533 -> 755[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 533 -> 756[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 534 -> 174[label="",style="dashed", color="red", weight=0]; 27.70/11.34 534[label="xwv400 == xwv3000",fontsize=16,color="magenta"];534 -> 757[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 534 -> 758[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 535 -> 175[label="",style="dashed", color="red", weight=0]; 27.70/11.34 535[label="xwv400 == xwv3000",fontsize=16,color="magenta"];535 -> 759[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 535 -> 760[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 536 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.34 536[label="xwv400 == xwv3000",fontsize=16,color="magenta"];536 -> 761[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 536 -> 762[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 537 -> 177[label="",style="dashed", color="red", weight=0]; 27.70/11.34 537[label="xwv400 == xwv3000",fontsize=16,color="magenta"];537 -> 763[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 537 -> 764[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 538 -> 178[label="",style="dashed", color="red", weight=0]; 27.70/11.34 538[label="xwv400 == xwv3000",fontsize=16,color="magenta"];538 -> 765[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 538 -> 766[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 539 -> 179[label="",style="dashed", color="red", weight=0]; 27.70/11.34 539[label="xwv400 == xwv3000",fontsize=16,color="magenta"];539 -> 767[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 539 -> 768[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 540 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.34 540[label="xwv400 == xwv3000",fontsize=16,color="magenta"];540 -> 769[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 540 -> 770[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 541 -> 181[label="",style="dashed", color="red", weight=0]; 27.70/11.34 541[label="xwv400 == xwv3000",fontsize=16,color="magenta"];541 -> 771[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 541 -> 772[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 542 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.34 542[label="xwv400 == xwv3000",fontsize=16,color="magenta"];542 -> 773[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 542 -> 774[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 543[label="xwv3001",fontsize=16,color="green",shape="box"];544[label="xwv401",fontsize=16,color="green",shape="box"];545[label="False && xwv57",fontsize=16,color="black",shape="box"];545 -> 775[label="",style="solid", color="black", weight=3]; 27.70/11.34 546[label="True && xwv57",fontsize=16,color="black",shape="box"];546 -> 776[label="",style="solid", color="black", weight=3]; 27.70/11.34 547[label="xwv3000",fontsize=16,color="green",shape="box"];548[label="xwv400",fontsize=16,color="green",shape="box"];549[label="xwv3000",fontsize=16,color="green",shape="box"];550[label="xwv400",fontsize=16,color="green",shape="box"];551[label="xwv3000",fontsize=16,color="green",shape="box"];552[label="xwv400",fontsize=16,color="green",shape="box"];553[label="xwv3000",fontsize=16,color="green",shape="box"];554[label="xwv400",fontsize=16,color="green",shape="box"];555[label="xwv3000",fontsize=16,color="green",shape="box"];556[label="xwv400",fontsize=16,color="green",shape="box"];557[label="xwv3000",fontsize=16,color="green",shape="box"];558[label="xwv400",fontsize=16,color="green",shape="box"];559[label="xwv3000",fontsize=16,color="green",shape="box"];560[label="xwv400",fontsize=16,color="green",shape="box"];561[label="xwv3000",fontsize=16,color="green",shape="box"];562[label="xwv400",fontsize=16,color="green",shape="box"];563[label="xwv3000",fontsize=16,color="green",shape="box"];564[label="xwv400",fontsize=16,color="green",shape="box"];565[label="xwv3000",fontsize=16,color="green",shape="box"];566[label="xwv400",fontsize=16,color="green",shape="box"];567[label="xwv3000",fontsize=16,color="green",shape="box"];568[label="xwv400",fontsize=16,color="green",shape="box"];569[label="xwv3000",fontsize=16,color="green",shape="box"];570[label="xwv400",fontsize=16,color="green",shape="box"];571[label="xwv3000",fontsize=16,color="green",shape="box"];572[label="xwv400",fontsize=16,color="green",shape="box"];573[label="xwv3000",fontsize=16,color="green",shape="box"];574[label="xwv400",fontsize=16,color="green",shape="box"];575[label="xwv3000",fontsize=16,color="green",shape="box"];576[label="xwv400",fontsize=16,color="green",shape="box"];577[label="xwv3000",fontsize=16,color="green",shape="box"];578[label="xwv400",fontsize=16,color="green",shape="box"];579[label="xwv3000",fontsize=16,color="green",shape="box"];580[label="xwv400",fontsize=16,color="green",shape="box"];581[label="xwv3000",fontsize=16,color="green",shape="box"];582[label="xwv400",fontsize=16,color="green",shape="box"];583[label="xwv3000",fontsize=16,color="green",shape="box"];584[label="xwv400",fontsize=16,color="green",shape="box"];585[label="xwv3000",fontsize=16,color="green",shape="box"];586[label="xwv400",fontsize=16,color="green",shape="box"];587[label="xwv3000",fontsize=16,color="green",shape="box"];588[label="xwv400",fontsize=16,color="green",shape="box"];589[label="xwv3000",fontsize=16,color="green",shape="box"];590[label="xwv400",fontsize=16,color="green",shape="box"];591[label="xwv3000",fontsize=16,color="green",shape="box"];592[label="xwv400",fontsize=16,color="green",shape="box"];593[label="xwv3000",fontsize=16,color="green",shape="box"];594[label="xwv400",fontsize=16,color="green",shape="box"];595[label="xwv3000",fontsize=16,color="green",shape="box"];596[label="xwv400",fontsize=16,color="green",shape="box"];597[label="xwv3000",fontsize=16,color="green",shape="box"];598[label="xwv400",fontsize=16,color="green",shape="box"];599[label="xwv3000",fontsize=16,color="green",shape="box"];600[label="xwv400",fontsize=16,color="green",shape="box"];601[label="xwv3000",fontsize=16,color="green",shape="box"];602[label="xwv400",fontsize=16,color="green",shape="box"];603 -> 169[label="",style="dashed", color="red", weight=0]; 27.70/11.34 603[label="xwv400 == xwv3000",fontsize=16,color="magenta"];603 -> 777[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 603 -> 778[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 604 -> 170[label="",style="dashed", color="red", weight=0]; 27.70/11.34 604[label="xwv400 == xwv3000",fontsize=16,color="magenta"];604 -> 779[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 604 -> 780[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 605 -> 171[label="",style="dashed", color="red", weight=0]; 27.70/11.34 605[label="xwv400 == xwv3000",fontsize=16,color="magenta"];605 -> 781[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 605 -> 782[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 606 -> 172[label="",style="dashed", color="red", weight=0]; 27.70/11.34 606[label="xwv400 == xwv3000",fontsize=16,color="magenta"];606 -> 783[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 606 -> 784[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 607 -> 173[label="",style="dashed", color="red", weight=0]; 27.70/11.34 607[label="xwv400 == xwv3000",fontsize=16,color="magenta"];607 -> 785[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 607 -> 786[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 608 -> 174[label="",style="dashed", color="red", weight=0]; 27.70/11.34 608[label="xwv400 == xwv3000",fontsize=16,color="magenta"];608 -> 787[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 608 -> 788[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 609 -> 175[label="",style="dashed", color="red", weight=0]; 27.70/11.34 609[label="xwv400 == xwv3000",fontsize=16,color="magenta"];609 -> 789[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 609 -> 790[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 610 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.34 610[label="xwv400 == xwv3000",fontsize=16,color="magenta"];610 -> 791[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 610 -> 792[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 611 -> 177[label="",style="dashed", color="red", weight=0]; 27.70/11.34 611[label="xwv400 == xwv3000",fontsize=16,color="magenta"];611 -> 793[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 611 -> 794[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 612 -> 178[label="",style="dashed", color="red", weight=0]; 27.70/11.34 612[label="xwv400 == xwv3000",fontsize=16,color="magenta"];612 -> 795[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 612 -> 796[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 613 -> 179[label="",style="dashed", color="red", weight=0]; 27.70/11.34 613[label="xwv400 == xwv3000",fontsize=16,color="magenta"];613 -> 797[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 613 -> 798[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 614 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.34 614[label="xwv400 == xwv3000",fontsize=16,color="magenta"];614 -> 799[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 614 -> 800[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 615 -> 181[label="",style="dashed", color="red", weight=0]; 27.70/11.34 615[label="xwv400 == xwv3000",fontsize=16,color="magenta"];615 -> 801[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 615 -> 802[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 616 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.34 616[label="xwv400 == xwv3000",fontsize=16,color="magenta"];616 -> 803[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 616 -> 804[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 617 -> 169[label="",style="dashed", color="red", weight=0]; 27.70/11.34 617[label="xwv401 == xwv3001",fontsize=16,color="magenta"];617 -> 805[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 617 -> 806[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 618 -> 170[label="",style="dashed", color="red", weight=0]; 27.70/11.34 618[label="xwv401 == xwv3001",fontsize=16,color="magenta"];618 -> 807[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 618 -> 808[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 619 -> 171[label="",style="dashed", color="red", weight=0]; 27.70/11.34 619[label="xwv401 == xwv3001",fontsize=16,color="magenta"];619 -> 809[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 619 -> 810[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 620 -> 172[label="",style="dashed", color="red", weight=0]; 27.70/11.34 620[label="xwv401 == xwv3001",fontsize=16,color="magenta"];620 -> 811[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 620 -> 812[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 621 -> 173[label="",style="dashed", color="red", weight=0]; 27.70/11.34 621[label="xwv401 == xwv3001",fontsize=16,color="magenta"];621 -> 813[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 621 -> 814[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 622 -> 174[label="",style="dashed", color="red", weight=0]; 27.70/11.34 622[label="xwv401 == xwv3001",fontsize=16,color="magenta"];622 -> 815[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 622 -> 816[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 623 -> 175[label="",style="dashed", color="red", weight=0]; 27.70/11.34 623[label="xwv401 == xwv3001",fontsize=16,color="magenta"];623 -> 817[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 623 -> 818[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 624 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.34 624[label="xwv401 == xwv3001",fontsize=16,color="magenta"];624 -> 819[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 624 -> 820[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 625 -> 177[label="",style="dashed", color="red", weight=0]; 27.70/11.34 625[label="xwv401 == xwv3001",fontsize=16,color="magenta"];625 -> 821[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 625 -> 822[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 626 -> 178[label="",style="dashed", color="red", weight=0]; 27.70/11.34 626[label="xwv401 == xwv3001",fontsize=16,color="magenta"];626 -> 823[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 626 -> 824[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 627 -> 179[label="",style="dashed", color="red", weight=0]; 27.70/11.34 627[label="xwv401 == xwv3001",fontsize=16,color="magenta"];627 -> 825[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 627 -> 826[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 628 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.34 628[label="xwv401 == xwv3001",fontsize=16,color="magenta"];628 -> 827[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 628 -> 828[label="",style="dashed", color="magenta", weight=3]; 27.70/11.34 629 -> 181[label="",style="dashed", color="red", weight=0]; 27.70/11.34 629[label="xwv401 == xwv3001",fontsize=16,color="magenta"];629 -> 829[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 629 -> 830[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 630 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.35 630[label="xwv401 == xwv3001",fontsize=16,color="magenta"];630 -> 831[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 630 -> 832[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 631[label="xwv401 * xwv3000",fontsize=16,color="black",shape="triangle"];631 -> 833[label="",style="solid", color="black", weight=3]; 27.70/11.35 632 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.35 632[label="xwv400 * xwv3001",fontsize=16,color="magenta"];632 -> 834[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 632 -> 835[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 633[label="xwv3000",fontsize=16,color="green",shape="box"];634[label="xwv400",fontsize=16,color="green",shape="box"];635[label="xwv3000",fontsize=16,color="green",shape="box"];636[label="xwv400",fontsize=16,color="green",shape="box"];637[label="xwv3000",fontsize=16,color="green",shape="box"];638[label="xwv400",fontsize=16,color="green",shape="box"];639[label="xwv3000",fontsize=16,color="green",shape="box"];640[label="xwv400",fontsize=16,color="green",shape="box"];641[label="xwv3000",fontsize=16,color="green",shape="box"];642[label="xwv400",fontsize=16,color="green",shape="box"];643[label="xwv3000",fontsize=16,color="green",shape="box"];644[label="xwv400",fontsize=16,color="green",shape="box"];645[label="xwv3000",fontsize=16,color="green",shape="box"];646[label="xwv400",fontsize=16,color="green",shape="box"];647[label="xwv3000",fontsize=16,color="green",shape="box"];648[label="xwv400",fontsize=16,color="green",shape="box"];649[label="xwv3000",fontsize=16,color="green",shape="box"];650[label="xwv400",fontsize=16,color="green",shape="box"];651[label="xwv3000",fontsize=16,color="green",shape="box"];652[label="xwv400",fontsize=16,color="green",shape="box"];653[label="xwv3000",fontsize=16,color="green",shape="box"];654[label="xwv400",fontsize=16,color="green",shape="box"];655[label="xwv3000",fontsize=16,color="green",shape="box"];656[label="xwv400",fontsize=16,color="green",shape="box"];657[label="xwv3000",fontsize=16,color="green",shape="box"];658[label="xwv400",fontsize=16,color="green",shape="box"];659[label="xwv3000",fontsize=16,color="green",shape="box"];660[label="xwv400",fontsize=16,color="green",shape="box"];661 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.35 661[label="xwv401 * xwv3000",fontsize=16,color="magenta"];661 -> 836[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 661 -> 837[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 662 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.35 662[label="xwv400 * xwv3001",fontsize=16,color="magenta"];662 -> 838[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 662 -> 839[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 663 -> 169[label="",style="dashed", color="red", weight=0]; 27.70/11.35 663[label="xwv400 == xwv3000",fontsize=16,color="magenta"];663 -> 840[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 663 -> 841[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 664 -> 170[label="",style="dashed", color="red", weight=0]; 27.70/11.35 664[label="xwv400 == xwv3000",fontsize=16,color="magenta"];664 -> 842[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 664 -> 843[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 665 -> 171[label="",style="dashed", color="red", weight=0]; 27.70/11.35 665[label="xwv400 == xwv3000",fontsize=16,color="magenta"];665 -> 844[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 665 -> 845[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 666 -> 172[label="",style="dashed", color="red", weight=0]; 27.70/11.35 666[label="xwv400 == xwv3000",fontsize=16,color="magenta"];666 -> 846[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 666 -> 847[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 667 -> 173[label="",style="dashed", color="red", weight=0]; 27.70/11.35 667[label="xwv400 == xwv3000",fontsize=16,color="magenta"];667 -> 848[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 667 -> 849[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 668 -> 174[label="",style="dashed", color="red", weight=0]; 27.70/11.35 668[label="xwv400 == xwv3000",fontsize=16,color="magenta"];668 -> 850[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 668 -> 851[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 669 -> 175[label="",style="dashed", color="red", weight=0]; 27.70/11.35 669[label="xwv400 == xwv3000",fontsize=16,color="magenta"];669 -> 852[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 669 -> 853[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 670 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.35 670[label="xwv400 == xwv3000",fontsize=16,color="magenta"];670 -> 854[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 670 -> 855[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 671 -> 177[label="",style="dashed", color="red", weight=0]; 27.70/11.35 671[label="xwv400 == xwv3000",fontsize=16,color="magenta"];671 -> 856[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 671 -> 857[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 672 -> 178[label="",style="dashed", color="red", weight=0]; 27.70/11.35 672[label="xwv400 == xwv3000",fontsize=16,color="magenta"];672 -> 858[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 672 -> 859[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 673 -> 179[label="",style="dashed", color="red", weight=0]; 27.70/11.35 673[label="xwv400 == xwv3000",fontsize=16,color="magenta"];673 -> 860[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 673 -> 861[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 674 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 674[label="xwv400 == xwv3000",fontsize=16,color="magenta"];674 -> 862[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 674 -> 863[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 675 -> 181[label="",style="dashed", color="red", weight=0]; 27.70/11.35 675[label="xwv400 == xwv3000",fontsize=16,color="magenta"];675 -> 864[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 675 -> 865[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 676 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.35 676[label="xwv400 == xwv3000",fontsize=16,color="magenta"];676 -> 866[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 676 -> 867[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 677[label="xwv401 == xwv3001",fontsize=16,color="blue",shape="box"];4739[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 4739[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4739 -> 868[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4740[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 4740[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4740 -> 869[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4741[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 4741[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4741 -> 870[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4742[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 4742[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4742 -> 871[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4743[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 4743[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4743 -> 872[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4744[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 4744[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4744 -> 873[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4745[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 4745[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4745 -> 874[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4746[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 4746[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4746 -> 875[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4747[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 4747[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4747 -> 876[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4748[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 4748[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4748 -> 877[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4749[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 4749[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4749 -> 878[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4750[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 4750[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4750 -> 879[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4751[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 4751[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4751 -> 880[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4752[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 4752[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4752 -> 881[label="",style="solid", color="blue", weight=3]; 27.70/11.35 678[label="xwv402 == xwv3002",fontsize=16,color="blue",shape="box"];4753[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];678 -> 4753[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4753 -> 882[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4754[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];678 -> 4754[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4754 -> 883[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4755[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];678 -> 4755[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4755 -> 884[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4756[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];678 -> 4756[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4756 -> 885[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4757[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];678 -> 4757[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4757 -> 886[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4758[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];678 -> 4758[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4758 -> 887[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4759[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];678 -> 4759[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4759 -> 888[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4760[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];678 -> 4760[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4760 -> 889[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4761[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];678 -> 4761[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4761 -> 890[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4762[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];678 -> 4762[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4762 -> 891[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4763[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];678 -> 4763[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4763 -> 892[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4764[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];678 -> 4764[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4764 -> 893[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4765[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];678 -> 4765[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4765 -> 894[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4766[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];678 -> 4766[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4766 -> 895[label="",style="solid", color="blue", weight=3]; 27.70/11.35 679 -> 173[label="",style="dashed", color="red", weight=0]; 27.70/11.35 679[label="xwv400 == xwv3000",fontsize=16,color="magenta"];679 -> 896[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 679 -> 897[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 680 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.35 680[label="xwv400 == xwv3000",fontsize=16,color="magenta"];680 -> 898[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 680 -> 899[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 681 -> 173[label="",style="dashed", color="red", weight=0]; 27.70/11.35 681[label="xwv401 == xwv3001",fontsize=16,color="magenta"];681 -> 900[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 681 -> 901[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 682 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.35 682[label="xwv401 == xwv3001",fontsize=16,color="magenta"];682 -> 902[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 682 -> 903[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 683[label="primEqNat (Succ xwv4000) xwv3000",fontsize=16,color="burlywood",shape="box"];4767[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];683 -> 4767[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4767 -> 904[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4768[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];683 -> 4768[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4768 -> 905[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 684[label="primEqNat Zero xwv3000",fontsize=16,color="burlywood",shape="box"];4769[label="xwv3000/Succ xwv30000",fontsize=10,color="white",style="solid",shape="box"];684 -> 4769[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4769 -> 906[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4770[label="xwv3000/Zero",fontsize=10,color="white",style="solid",shape="box"];684 -> 4770[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4770 -> 907[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 685[label="primEqInt (Pos (Succ xwv4000)) (Pos (Succ xwv30000))",fontsize=16,color="black",shape="box"];685 -> 908[label="",style="solid", color="black", weight=3]; 27.70/11.35 686[label="primEqInt (Pos (Succ xwv4000)) (Pos Zero)",fontsize=16,color="black",shape="box"];686 -> 909[label="",style="solid", color="black", weight=3]; 27.70/11.35 687[label="False",fontsize=16,color="green",shape="box"];688[label="primEqInt (Pos Zero) (Pos (Succ xwv30000))",fontsize=16,color="black",shape="box"];688 -> 910[label="",style="solid", color="black", weight=3]; 27.70/11.35 689[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];689 -> 911[label="",style="solid", color="black", weight=3]; 27.70/11.35 690[label="primEqInt (Pos Zero) (Neg (Succ xwv30000))",fontsize=16,color="black",shape="box"];690 -> 912[label="",style="solid", color="black", weight=3]; 27.70/11.35 691[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];691 -> 913[label="",style="solid", color="black", weight=3]; 27.70/11.35 692[label="False",fontsize=16,color="green",shape="box"];693[label="primEqInt (Neg (Succ xwv4000)) (Neg (Succ xwv30000))",fontsize=16,color="black",shape="box"];693 -> 914[label="",style="solid", color="black", weight=3]; 27.70/11.35 694[label="primEqInt (Neg (Succ xwv4000)) (Neg Zero)",fontsize=16,color="black",shape="box"];694 -> 915[label="",style="solid", color="black", weight=3]; 27.70/11.35 695[label="primEqInt (Neg Zero) (Pos (Succ xwv30000))",fontsize=16,color="black",shape="box"];695 -> 916[label="",style="solid", color="black", weight=3]; 27.70/11.35 696[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];696 -> 917[label="",style="solid", color="black", weight=3]; 27.70/11.35 697[label="primEqInt (Neg Zero) (Neg (Succ xwv30000))",fontsize=16,color="black",shape="box"];697 -> 918[label="",style="solid", color="black", weight=3]; 27.70/11.35 698[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];698 -> 919[label="",style="solid", color="black", weight=3]; 27.70/11.35 2042[label="Just xwv13",fontsize=16,color="green",shape="box"];2043[label="Just xwv18",fontsize=16,color="green",shape="box"];954[label="xwv16",fontsize=16,color="green",shape="box"];955[label="xwv17",fontsize=16,color="green",shape="box"];958[label="FiniteMap.glueBal4 FiniteMap.EmptyFM xwv34",fontsize=16,color="black",shape="box"];958 -> 1097[label="",style="solid", color="black", weight=3]; 27.70/11.35 959[label="FiniteMap.glueBal (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];959 -> 1098[label="",style="solid", color="black", weight=3]; 27.70/11.35 960[label="FiniteMap.glueBal (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];960 -> 1099[label="",style="solid", color="black", weight=3]; 27.70/11.35 2181[label="GT",fontsize=16,color="green",shape="box"];2182[label="Nothing <= xwv2900",fontsize=16,color="burlywood",shape="box"];4771[label="xwv2900/Nothing",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4771[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4771 -> 2207[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4772[label="xwv2900/Just xwv29000",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4772[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4772 -> 2208[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2183[label="Just xwv28000 <= xwv2900",fontsize=16,color="burlywood",shape="box"];4773[label="xwv2900/Nothing",fontsize=10,color="white",style="solid",shape="box"];2183 -> 4773[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4773 -> 2209[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4774[label="xwv2900/Just xwv29000",fontsize=10,color="white",style="solid",shape="box"];2183 -> 4774[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4774 -> 2210[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2184[label="False <= xwv2900",fontsize=16,color="burlywood",shape="box"];4775[label="xwv2900/False",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4775[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4775 -> 2211[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4776[label="xwv2900/True",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4776[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4776 -> 2212[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2185[label="True <= xwv2900",fontsize=16,color="burlywood",shape="box"];4777[label="xwv2900/False",fontsize=10,color="white",style="solid",shape="box"];2185 -> 4777[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4777 -> 2213[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4778[label="xwv2900/True",fontsize=10,color="white",style="solid",shape="box"];2185 -> 4778[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4778 -> 2214[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2186[label="(xwv28000,xwv28001,xwv28002) <= xwv2900",fontsize=16,color="burlywood",shape="box"];4779[label="xwv2900/(xwv29000,xwv29001,xwv29002)",fontsize=10,color="white",style="solid",shape="box"];2186 -> 4779[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4779 -> 2215[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2187[label="Left xwv28000 <= xwv2900",fontsize=16,color="burlywood",shape="box"];4780[label="xwv2900/Left xwv29000",fontsize=10,color="white",style="solid",shape="box"];2187 -> 4780[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4780 -> 2216[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4781[label="xwv2900/Right xwv29000",fontsize=10,color="white",style="solid",shape="box"];2187 -> 4781[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4781 -> 2217[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2188[label="Right xwv28000 <= xwv2900",fontsize=16,color="burlywood",shape="box"];4782[label="xwv2900/Left xwv29000",fontsize=10,color="white",style="solid",shape="box"];2188 -> 4782[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4782 -> 2218[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4783[label="xwv2900/Right xwv29000",fontsize=10,color="white",style="solid",shape="box"];2188 -> 4783[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4783 -> 2219[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2189 -> 2233[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2189[label="compare xwv2800 xwv2900 /= GT",fontsize=16,color="magenta"];2189 -> 2234[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2190[label="LT <= xwv2900",fontsize=16,color="burlywood",shape="box"];4784[label="xwv2900/LT",fontsize=10,color="white",style="solid",shape="box"];2190 -> 4784[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4784 -> 2221[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4785[label="xwv2900/EQ",fontsize=10,color="white",style="solid",shape="box"];2190 -> 4785[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4785 -> 2222[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4786[label="xwv2900/GT",fontsize=10,color="white",style="solid",shape="box"];2190 -> 4786[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4786 -> 2223[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2191[label="EQ <= xwv2900",fontsize=16,color="burlywood",shape="box"];4787[label="xwv2900/LT",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4787[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4787 -> 2224[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4788[label="xwv2900/EQ",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4788[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4788 -> 2225[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4789[label="xwv2900/GT",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4789[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4789 -> 2226[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2192[label="GT <= xwv2900",fontsize=16,color="burlywood",shape="box"];4790[label="xwv2900/LT",fontsize=10,color="white",style="solid",shape="box"];2192 -> 4790[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4790 -> 2227[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4791[label="xwv2900/EQ",fontsize=10,color="white",style="solid",shape="box"];2192 -> 4791[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4791 -> 2228[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4792[label="xwv2900/GT",fontsize=10,color="white",style="solid",shape="box"];2192 -> 4792[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4792 -> 2229[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2193 -> 2233[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2193[label="compare xwv2800 xwv2900 /= GT",fontsize=16,color="magenta"];2193 -> 2235[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2194[label="(xwv28000,xwv28001) <= xwv2900",fontsize=16,color="burlywood",shape="box"];4793[label="xwv2900/(xwv29000,xwv29001)",fontsize=10,color="white",style="solid",shape="box"];2194 -> 4793[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4793 -> 2231[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2195 -> 2233[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2195[label="compare xwv2800 xwv2900 /= GT",fontsize=16,color="magenta"];2195 -> 2236[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2196 -> 2233[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2196[label="compare xwv2800 xwv2900 /= GT",fontsize=16,color="magenta"];2196 -> 2237[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2197 -> 2233[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2197[label="compare xwv2800 xwv2900 /= GT",fontsize=16,color="magenta"];2197 -> 2238[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2198 -> 2233[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2198[label="compare xwv2800 xwv2900 /= GT",fontsize=16,color="magenta"];2198 -> 2239[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2199 -> 2233[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2199[label="compare xwv2800 xwv2900 /= GT",fontsize=16,color="magenta"];2199 -> 2240[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2200 -> 2233[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2200[label="compare xwv2800 xwv2900 /= GT",fontsize=16,color="magenta"];2200 -> 2241[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2201[label="compare0 (Just xwv117) (Just xwv118) otherwise",fontsize=16,color="black",shape="box"];2201 -> 2242[label="",style="solid", color="black", weight=3]; 27.70/11.35 2202[label="LT",fontsize=16,color="green",shape="box"];3650 -> 1208[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3650[label="FiniteMap.sizeFM xwv246",fontsize=16,color="magenta"];3650 -> 3670[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3651[label="primPlusInt (Pos xwv2500) (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv246)",fontsize=16,color="black",shape="box"];3651 -> 3671[label="",style="solid", color="black", weight=3]; 27.70/11.35 3652[label="primPlusInt (Neg xwv2500) (FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv246)",fontsize=16,color="black",shape="box"];3652 -> 3672[label="",style="solid", color="black", weight=3]; 27.70/11.35 1807[label="xwv280",fontsize=16,color="green",shape="box"];1808[label="xwv290",fontsize=16,color="green",shape="box"];1190[label="compare xwv28 xwv29",fontsize=16,color="black",shape="triangle"];1190 -> 1338[label="",style="solid", color="black", weight=3]; 27.70/11.35 3653[label="FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv246",fontsize=16,color="black",shape="triangle"];3653 -> 3673[label="",style="solid", color="black", weight=3]; 27.70/11.35 3654 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3654[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv246",fontsize=16,color="magenta"];3654 -> 3674[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3654 -> 3675[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1477[label="xwv85 > xwv84",fontsize=16,color="black",shape="triangle"];1477 -> 1491[label="",style="solid", color="black", weight=3]; 27.70/11.35 3655[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv340 xwv341 xwv344 xwv246 xwv340 xwv341 xwv246 xwv344 False",fontsize=16,color="black",shape="box"];3655 -> 3676[label="",style="solid", color="black", weight=3]; 27.70/11.35 3656[label="FiniteMap.mkBalBranch6MkBalBranch4 xwv340 xwv341 xwv344 xwv246 xwv340 xwv341 xwv246 xwv344 True",fontsize=16,color="black",shape="box"];3656 -> 3677[label="",style="solid", color="black", weight=3]; 27.70/11.35 4395[label="FiniteMap.mkBranchResult xwv364 xwv365 xwv366 xwv367",fontsize=16,color="black",shape="box"];4395 -> 4434[label="",style="solid", color="black", weight=3]; 27.70/11.35 747[label="xwv3000",fontsize=16,color="green",shape="box"];748[label="xwv400",fontsize=16,color="green",shape="box"];749[label="xwv3000",fontsize=16,color="green",shape="box"];750[label="xwv400",fontsize=16,color="green",shape="box"];751[label="xwv3000",fontsize=16,color="green",shape="box"];752[label="xwv400",fontsize=16,color="green",shape="box"];753[label="xwv3000",fontsize=16,color="green",shape="box"];754[label="xwv400",fontsize=16,color="green",shape="box"];755[label="xwv3000",fontsize=16,color="green",shape="box"];756[label="xwv400",fontsize=16,color="green",shape="box"];757[label="xwv3000",fontsize=16,color="green",shape="box"];758[label="xwv400",fontsize=16,color="green",shape="box"];759[label="xwv3000",fontsize=16,color="green",shape="box"];760[label="xwv400",fontsize=16,color="green",shape="box"];761[label="xwv3000",fontsize=16,color="green",shape="box"];762[label="xwv400",fontsize=16,color="green",shape="box"];763[label="xwv3000",fontsize=16,color="green",shape="box"];764[label="xwv400",fontsize=16,color="green",shape="box"];765[label="xwv3000",fontsize=16,color="green",shape="box"];766[label="xwv400",fontsize=16,color="green",shape="box"];767[label="xwv3000",fontsize=16,color="green",shape="box"];768[label="xwv400",fontsize=16,color="green",shape="box"];769[label="xwv3000",fontsize=16,color="green",shape="box"];770[label="xwv400",fontsize=16,color="green",shape="box"];771[label="xwv3000",fontsize=16,color="green",shape="box"];772[label="xwv400",fontsize=16,color="green",shape="box"];773[label="xwv3000",fontsize=16,color="green",shape="box"];774[label="xwv400",fontsize=16,color="green",shape="box"];775[label="False",fontsize=16,color="green",shape="box"];776[label="xwv57",fontsize=16,color="green",shape="box"];777[label="xwv3000",fontsize=16,color="green",shape="box"];778[label="xwv400",fontsize=16,color="green",shape="box"];779[label="xwv3000",fontsize=16,color="green",shape="box"];780[label="xwv400",fontsize=16,color="green",shape="box"];781[label="xwv3000",fontsize=16,color="green",shape="box"];782[label="xwv400",fontsize=16,color="green",shape="box"];783[label="xwv3000",fontsize=16,color="green",shape="box"];784[label="xwv400",fontsize=16,color="green",shape="box"];785[label="xwv3000",fontsize=16,color="green",shape="box"];786[label="xwv400",fontsize=16,color="green",shape="box"];787[label="xwv3000",fontsize=16,color="green",shape="box"];788[label="xwv400",fontsize=16,color="green",shape="box"];789[label="xwv3000",fontsize=16,color="green",shape="box"];790[label="xwv400",fontsize=16,color="green",shape="box"];791[label="xwv3000",fontsize=16,color="green",shape="box"];792[label="xwv400",fontsize=16,color="green",shape="box"];793[label="xwv3000",fontsize=16,color="green",shape="box"];794[label="xwv400",fontsize=16,color="green",shape="box"];795[label="xwv3000",fontsize=16,color="green",shape="box"];796[label="xwv400",fontsize=16,color="green",shape="box"];797[label="xwv3000",fontsize=16,color="green",shape="box"];798[label="xwv400",fontsize=16,color="green",shape="box"];799[label="xwv3000",fontsize=16,color="green",shape="box"];800[label="xwv400",fontsize=16,color="green",shape="box"];801[label="xwv3000",fontsize=16,color="green",shape="box"];802[label="xwv400",fontsize=16,color="green",shape="box"];803[label="xwv3000",fontsize=16,color="green",shape="box"];804[label="xwv400",fontsize=16,color="green",shape="box"];805[label="xwv3001",fontsize=16,color="green",shape="box"];806[label="xwv401",fontsize=16,color="green",shape="box"];807[label="xwv3001",fontsize=16,color="green",shape="box"];808[label="xwv401",fontsize=16,color="green",shape="box"];809[label="xwv3001",fontsize=16,color="green",shape="box"];810[label="xwv401",fontsize=16,color="green",shape="box"];811[label="xwv3001",fontsize=16,color="green",shape="box"];812[label="xwv401",fontsize=16,color="green",shape="box"];813[label="xwv3001",fontsize=16,color="green",shape="box"];814[label="xwv401",fontsize=16,color="green",shape="box"];815[label="xwv3001",fontsize=16,color="green",shape="box"];816[label="xwv401",fontsize=16,color="green",shape="box"];817[label="xwv3001",fontsize=16,color="green",shape="box"];818[label="xwv401",fontsize=16,color="green",shape="box"];819[label="xwv3001",fontsize=16,color="green",shape="box"];820[label="xwv401",fontsize=16,color="green",shape="box"];821[label="xwv3001",fontsize=16,color="green",shape="box"];822[label="xwv401",fontsize=16,color="green",shape="box"];823[label="xwv3001",fontsize=16,color="green",shape="box"];824[label="xwv401",fontsize=16,color="green",shape="box"];825[label="xwv3001",fontsize=16,color="green",shape="box"];826[label="xwv401",fontsize=16,color="green",shape="box"];827[label="xwv3001",fontsize=16,color="green",shape="box"];828[label="xwv401",fontsize=16,color="green",shape="box"];829[label="xwv3001",fontsize=16,color="green",shape="box"];830[label="xwv401",fontsize=16,color="green",shape="box"];831[label="xwv3001",fontsize=16,color="green",shape="box"];832[label="xwv401",fontsize=16,color="green",shape="box"];833[label="primMulInt xwv401 xwv3000",fontsize=16,color="burlywood",shape="triangle"];4794[label="xwv401/Pos xwv4010",fontsize=10,color="white",style="solid",shape="box"];833 -> 4794[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4794 -> 1001[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4795[label="xwv401/Neg xwv4010",fontsize=10,color="white",style="solid",shape="box"];833 -> 4795[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4795 -> 1002[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 834[label="xwv400",fontsize=16,color="green",shape="box"];835[label="xwv3001",fontsize=16,color="green",shape="box"];836[label="xwv401",fontsize=16,color="green",shape="box"];837[label="xwv3000",fontsize=16,color="green",shape="box"];838[label="xwv400",fontsize=16,color="green",shape="box"];839[label="xwv3001",fontsize=16,color="green",shape="box"];840[label="xwv3000",fontsize=16,color="green",shape="box"];841[label="xwv400",fontsize=16,color="green",shape="box"];842[label="xwv3000",fontsize=16,color="green",shape="box"];843[label="xwv400",fontsize=16,color="green",shape="box"];844[label="xwv3000",fontsize=16,color="green",shape="box"];845[label="xwv400",fontsize=16,color="green",shape="box"];846[label="xwv3000",fontsize=16,color="green",shape="box"];847[label="xwv400",fontsize=16,color="green",shape="box"];848[label="xwv3000",fontsize=16,color="green",shape="box"];849[label="xwv400",fontsize=16,color="green",shape="box"];850[label="xwv3000",fontsize=16,color="green",shape="box"];851[label="xwv400",fontsize=16,color="green",shape="box"];852[label="xwv3000",fontsize=16,color="green",shape="box"];853[label="xwv400",fontsize=16,color="green",shape="box"];854[label="xwv3000",fontsize=16,color="green",shape="box"];855[label="xwv400",fontsize=16,color="green",shape="box"];856[label="xwv3000",fontsize=16,color="green",shape="box"];857[label="xwv400",fontsize=16,color="green",shape="box"];858[label="xwv3000",fontsize=16,color="green",shape="box"];859[label="xwv400",fontsize=16,color="green",shape="box"];860[label="xwv3000",fontsize=16,color="green",shape="box"];861[label="xwv400",fontsize=16,color="green",shape="box"];862[label="xwv3000",fontsize=16,color="green",shape="box"];863[label="xwv400",fontsize=16,color="green",shape="box"];864[label="xwv3000",fontsize=16,color="green",shape="box"];865[label="xwv400",fontsize=16,color="green",shape="box"];866[label="xwv3000",fontsize=16,color="green",shape="box"];867[label="xwv400",fontsize=16,color="green",shape="box"];868 -> 169[label="",style="dashed", color="red", weight=0]; 27.70/11.35 868[label="xwv401 == xwv3001",fontsize=16,color="magenta"];868 -> 1003[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 868 -> 1004[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 869 -> 170[label="",style="dashed", color="red", weight=0]; 27.70/11.35 869[label="xwv401 == xwv3001",fontsize=16,color="magenta"];869 -> 1005[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 869 -> 1006[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 870 -> 171[label="",style="dashed", color="red", weight=0]; 27.70/11.35 870[label="xwv401 == xwv3001",fontsize=16,color="magenta"];870 -> 1007[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 870 -> 1008[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 871 -> 172[label="",style="dashed", color="red", weight=0]; 27.70/11.35 871[label="xwv401 == xwv3001",fontsize=16,color="magenta"];871 -> 1009[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 871 -> 1010[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 872 -> 173[label="",style="dashed", color="red", weight=0]; 27.70/11.35 872[label="xwv401 == xwv3001",fontsize=16,color="magenta"];872 -> 1011[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 872 -> 1012[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 873 -> 174[label="",style="dashed", color="red", weight=0]; 27.70/11.35 873[label="xwv401 == xwv3001",fontsize=16,color="magenta"];873 -> 1013[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 873 -> 1014[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 874 -> 175[label="",style="dashed", color="red", weight=0]; 27.70/11.35 874[label="xwv401 == xwv3001",fontsize=16,color="magenta"];874 -> 1015[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 874 -> 1016[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 875 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.35 875[label="xwv401 == xwv3001",fontsize=16,color="magenta"];875 -> 1017[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 875 -> 1018[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 876 -> 177[label="",style="dashed", color="red", weight=0]; 27.70/11.35 876[label="xwv401 == xwv3001",fontsize=16,color="magenta"];876 -> 1019[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 876 -> 1020[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 877 -> 178[label="",style="dashed", color="red", weight=0]; 27.70/11.35 877[label="xwv401 == xwv3001",fontsize=16,color="magenta"];877 -> 1021[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 877 -> 1022[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 878 -> 179[label="",style="dashed", color="red", weight=0]; 27.70/11.35 878[label="xwv401 == xwv3001",fontsize=16,color="magenta"];878 -> 1023[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 878 -> 1024[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 879 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 879[label="xwv401 == xwv3001",fontsize=16,color="magenta"];879 -> 1025[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 879 -> 1026[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 880 -> 181[label="",style="dashed", color="red", weight=0]; 27.70/11.35 880[label="xwv401 == xwv3001",fontsize=16,color="magenta"];880 -> 1027[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 880 -> 1028[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 881 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.35 881[label="xwv401 == xwv3001",fontsize=16,color="magenta"];881 -> 1029[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 881 -> 1030[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 882 -> 169[label="",style="dashed", color="red", weight=0]; 27.70/11.35 882[label="xwv402 == xwv3002",fontsize=16,color="magenta"];882 -> 1031[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 882 -> 1032[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 883 -> 170[label="",style="dashed", color="red", weight=0]; 27.70/11.35 883[label="xwv402 == xwv3002",fontsize=16,color="magenta"];883 -> 1033[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 883 -> 1034[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 884 -> 171[label="",style="dashed", color="red", weight=0]; 27.70/11.35 884[label="xwv402 == xwv3002",fontsize=16,color="magenta"];884 -> 1035[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 884 -> 1036[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 885 -> 172[label="",style="dashed", color="red", weight=0]; 27.70/11.35 885[label="xwv402 == xwv3002",fontsize=16,color="magenta"];885 -> 1037[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 885 -> 1038[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 886 -> 173[label="",style="dashed", color="red", weight=0]; 27.70/11.35 886[label="xwv402 == xwv3002",fontsize=16,color="magenta"];886 -> 1039[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 886 -> 1040[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 887 -> 174[label="",style="dashed", color="red", weight=0]; 27.70/11.35 887[label="xwv402 == xwv3002",fontsize=16,color="magenta"];887 -> 1041[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 887 -> 1042[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 888 -> 175[label="",style="dashed", color="red", weight=0]; 27.70/11.35 888[label="xwv402 == xwv3002",fontsize=16,color="magenta"];888 -> 1043[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 888 -> 1044[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 889 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.35 889[label="xwv402 == xwv3002",fontsize=16,color="magenta"];889 -> 1045[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 889 -> 1046[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 890 -> 177[label="",style="dashed", color="red", weight=0]; 27.70/11.35 890[label="xwv402 == xwv3002",fontsize=16,color="magenta"];890 -> 1047[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 890 -> 1048[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 891 -> 178[label="",style="dashed", color="red", weight=0]; 27.70/11.35 891[label="xwv402 == xwv3002",fontsize=16,color="magenta"];891 -> 1049[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 891 -> 1050[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 892 -> 179[label="",style="dashed", color="red", weight=0]; 27.70/11.35 892[label="xwv402 == xwv3002",fontsize=16,color="magenta"];892 -> 1051[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 892 -> 1052[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 893 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 893[label="xwv402 == xwv3002",fontsize=16,color="magenta"];893 -> 1053[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 893 -> 1054[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 894 -> 181[label="",style="dashed", color="red", weight=0]; 27.70/11.35 894[label="xwv402 == xwv3002",fontsize=16,color="magenta"];894 -> 1055[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 894 -> 1056[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 895 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.35 895[label="xwv402 == xwv3002",fontsize=16,color="magenta"];895 -> 1057[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 895 -> 1058[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 896[label="xwv3000",fontsize=16,color="green",shape="box"];897[label="xwv400",fontsize=16,color="green",shape="box"];898[label="xwv3000",fontsize=16,color="green",shape="box"];899[label="xwv400",fontsize=16,color="green",shape="box"];900[label="xwv3001",fontsize=16,color="green",shape="box"];901[label="xwv401",fontsize=16,color="green",shape="box"];902[label="xwv3001",fontsize=16,color="green",shape="box"];903[label="xwv401",fontsize=16,color="green",shape="box"];904[label="primEqNat (Succ xwv4000) (Succ xwv30000)",fontsize=16,color="black",shape="box"];904 -> 1059[label="",style="solid", color="black", weight=3]; 27.70/11.35 905[label="primEqNat (Succ xwv4000) Zero",fontsize=16,color="black",shape="box"];905 -> 1060[label="",style="solid", color="black", weight=3]; 27.70/11.35 906[label="primEqNat Zero (Succ xwv30000)",fontsize=16,color="black",shape="box"];906 -> 1061[label="",style="solid", color="black", weight=3]; 27.70/11.35 907[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];907 -> 1062[label="",style="solid", color="black", weight=3]; 27.70/11.35 908 -> 451[label="",style="dashed", color="red", weight=0]; 27.70/11.35 908[label="primEqNat xwv4000 xwv30000",fontsize=16,color="magenta"];908 -> 1063[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 908 -> 1064[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 909[label="False",fontsize=16,color="green",shape="box"];910[label="False",fontsize=16,color="green",shape="box"];911[label="True",fontsize=16,color="green",shape="box"];912[label="False",fontsize=16,color="green",shape="box"];913[label="True",fontsize=16,color="green",shape="box"];914 -> 451[label="",style="dashed", color="red", weight=0]; 27.70/11.35 914[label="primEqNat xwv4000 xwv30000",fontsize=16,color="magenta"];914 -> 1065[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 914 -> 1066[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 915[label="False",fontsize=16,color="green",shape="box"];916[label="False",fontsize=16,color="green",shape="box"];917[label="True",fontsize=16,color="green",shape="box"];918[label="False",fontsize=16,color="green",shape="box"];919[label="True",fontsize=16,color="green",shape="box"];1097[label="xwv34",fontsize=16,color="green",shape="box"];1098[label="FiniteMap.glueBal3 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1098 -> 1203[label="",style="solid", color="black", weight=3]; 27.70/11.35 1099[label="FiniteMap.glueBal2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];1099 -> 1204[label="",style="solid", color="black", weight=3]; 27.70/11.35 2207[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2207 -> 2243[label="",style="solid", color="black", weight=3]; 27.70/11.35 2208[label="Nothing <= Just xwv29000",fontsize=16,color="black",shape="box"];2208 -> 2244[label="",style="solid", color="black", weight=3]; 27.70/11.35 2209[label="Just xwv28000 <= Nothing",fontsize=16,color="black",shape="box"];2209 -> 2245[label="",style="solid", color="black", weight=3]; 27.70/11.35 2210[label="Just xwv28000 <= Just xwv29000",fontsize=16,color="black",shape="box"];2210 -> 2246[label="",style="solid", color="black", weight=3]; 27.70/11.35 2211[label="False <= False",fontsize=16,color="black",shape="box"];2211 -> 2247[label="",style="solid", color="black", weight=3]; 27.70/11.35 2212[label="False <= True",fontsize=16,color="black",shape="box"];2212 -> 2248[label="",style="solid", color="black", weight=3]; 27.70/11.35 2213[label="True <= False",fontsize=16,color="black",shape="box"];2213 -> 2249[label="",style="solid", color="black", weight=3]; 27.70/11.35 2214[label="True <= True",fontsize=16,color="black",shape="box"];2214 -> 2250[label="",style="solid", color="black", weight=3]; 27.70/11.35 2215[label="(xwv28000,xwv28001,xwv28002) <= (xwv29000,xwv29001,xwv29002)",fontsize=16,color="black",shape="box"];2215 -> 2251[label="",style="solid", color="black", weight=3]; 27.70/11.35 2216[label="Left xwv28000 <= Left xwv29000",fontsize=16,color="black",shape="box"];2216 -> 2252[label="",style="solid", color="black", weight=3]; 27.70/11.35 2217[label="Left xwv28000 <= Right xwv29000",fontsize=16,color="black",shape="box"];2217 -> 2253[label="",style="solid", color="black", weight=3]; 27.70/11.35 2218[label="Right xwv28000 <= Left xwv29000",fontsize=16,color="black",shape="box"];2218 -> 2254[label="",style="solid", color="black", weight=3]; 27.70/11.35 2219[label="Right xwv28000 <= Right xwv29000",fontsize=16,color="black",shape="box"];2219 -> 2255[label="",style="solid", color="black", weight=3]; 27.70/11.35 2234[label="compare xwv2800 xwv2900",fontsize=16,color="burlywood",shape="triangle"];4796[label="xwv2800/Integer xwv28000",fontsize=10,color="white",style="solid",shape="box"];2234 -> 4796[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4796 -> 2256[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2233[label="xwv123 /= GT",fontsize=16,color="black",shape="triangle"];2233 -> 2257[label="",style="solid", color="black", weight=3]; 27.70/11.35 2221[label="LT <= LT",fontsize=16,color="black",shape="box"];2221 -> 2258[label="",style="solid", color="black", weight=3]; 27.70/11.35 2222[label="LT <= EQ",fontsize=16,color="black",shape="box"];2222 -> 2259[label="",style="solid", color="black", weight=3]; 27.70/11.35 2223[label="LT <= GT",fontsize=16,color="black",shape="box"];2223 -> 2260[label="",style="solid", color="black", weight=3]; 27.70/11.35 2224[label="EQ <= LT",fontsize=16,color="black",shape="box"];2224 -> 2261[label="",style="solid", color="black", weight=3]; 27.70/11.35 2225[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2225 -> 2262[label="",style="solid", color="black", weight=3]; 27.70/11.35 2226[label="EQ <= GT",fontsize=16,color="black",shape="box"];2226 -> 2263[label="",style="solid", color="black", weight=3]; 27.70/11.35 2227[label="GT <= LT",fontsize=16,color="black",shape="box"];2227 -> 2264[label="",style="solid", color="black", weight=3]; 27.70/11.35 2228[label="GT <= EQ",fontsize=16,color="black",shape="box"];2228 -> 2265[label="",style="solid", color="black", weight=3]; 27.70/11.35 2229[label="GT <= GT",fontsize=16,color="black",shape="box"];2229 -> 2266[label="",style="solid", color="black", weight=3]; 27.70/11.35 2235[label="compare xwv2800 xwv2900",fontsize=16,color="burlywood",shape="triangle"];4797[label="xwv2800/xwv28000 :% xwv28001",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4797[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4797 -> 2267[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2231[label="(xwv28000,xwv28001) <= (xwv29000,xwv29001)",fontsize=16,color="black",shape="box"];2231 -> 2268[label="",style="solid", color="black", weight=3]; 27.70/11.35 2236[label="compare xwv2800 xwv2900",fontsize=16,color="black",shape="triangle"];2236 -> 2269[label="",style="solid", color="black", weight=3]; 27.70/11.35 2237 -> 1190[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2237[label="compare xwv2800 xwv2900",fontsize=16,color="magenta"];2237 -> 2270[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2237 -> 2271[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2238[label="compare xwv2800 xwv2900",fontsize=16,color="burlywood",shape="triangle"];4798[label="xwv2800/()",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4798[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4798 -> 2272[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2239[label="compare xwv2800 xwv2900",fontsize=16,color="black",shape="triangle"];2239 -> 2273[label="",style="solid", color="black", weight=3]; 27.70/11.35 2240[label="compare xwv2800 xwv2900",fontsize=16,color="burlywood",shape="triangle"];4799[label="xwv2800/xwv28000 : xwv28001",fontsize=10,color="white",style="solid",shape="box"];2240 -> 4799[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4799 -> 2274[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4800[label="xwv2800/[]",fontsize=10,color="white",style="solid",shape="box"];2240 -> 4800[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4800 -> 2275[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2241[label="compare xwv2800 xwv2900",fontsize=16,color="black",shape="triangle"];2241 -> 2276[label="",style="solid", color="black", weight=3]; 27.70/11.35 2242[label="compare0 (Just xwv117) (Just xwv118) True",fontsize=16,color="black",shape="box"];2242 -> 2311[label="",style="solid", color="black", weight=3]; 27.70/11.35 3670[label="xwv246",fontsize=16,color="green",shape="box"];1208[label="FiniteMap.sizeFM xwv33",fontsize=16,color="burlywood",shape="triangle"];4801[label="xwv33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1208 -> 4801[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4801 -> 1349[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4802[label="xwv33/FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=10,color="white",style="solid",shape="box"];1208 -> 4802[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4802 -> 1350[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 3671 -> 3687[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3671[label="primPlusInt (Pos xwv2500) (FiniteMap.sizeFM xwv344)",fontsize=16,color="magenta"];3671 -> 3688[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3672 -> 3689[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3672[label="primPlusInt (Neg xwv2500) (FiniteMap.sizeFM xwv344)",fontsize=16,color="magenta"];3672 -> 3690[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1338[label="primCmpInt xwv28 xwv29",fontsize=16,color="burlywood",shape="triangle"];4803[label="xwv28/Pos xwv280",fontsize=10,color="white",style="solid",shape="box"];1338 -> 4803[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4803 -> 1464[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4804[label="xwv28/Neg xwv280",fontsize=10,color="white",style="solid",shape="box"];1338 -> 4804[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4804 -> 1465[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 3673 -> 1208[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3673[label="FiniteMap.sizeFM xwv344",fontsize=16,color="magenta"];3673 -> 3691[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3674[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];3674 -> 3692[label="",style="solid", color="black", weight=3]; 27.70/11.35 3675 -> 3648[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3675[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv246",fontsize=16,color="magenta"];1491 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 1491[label="compare xwv85 xwv84 == GT",fontsize=16,color="magenta"];1491 -> 1509[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1491 -> 1510[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3676 -> 3693[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3676[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv340 xwv341 xwv344 xwv246 xwv340 xwv341 xwv246 xwv344 (FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv246 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv246)",fontsize=16,color="magenta"];3676 -> 3694[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3677[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv340 xwv341 xwv344 xwv246 xwv246 xwv344 xwv344",fontsize=16,color="burlywood",shape="box"];4805[label="xwv344/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3677 -> 4805[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4805 -> 3695[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4806[label="xwv344/FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444",fontsize=10,color="white",style="solid",shape="box"];3677 -> 4806[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4806 -> 3696[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4434[label="FiniteMap.Branch xwv364 xwv365 (FiniteMap.mkBranchUnbox xwv366 xwv364 xwv367 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv366 xwv364 xwv367 + FiniteMap.mkBranchRight_size xwv366 xwv364 xwv367)) xwv366 xwv367",fontsize=16,color="green",shape="box"];4434 -> 4441[label="",style="dashed", color="green", weight=3]; 27.70/11.35 1001[label="primMulInt (Pos xwv4010) xwv3000",fontsize=16,color="burlywood",shape="box"];4807[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];1001 -> 4807[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4807 -> 1142[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4808[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];1001 -> 4808[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4808 -> 1143[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1002[label="primMulInt (Neg xwv4010) xwv3000",fontsize=16,color="burlywood",shape="box"];4809[label="xwv3000/Pos xwv30000",fontsize=10,color="white",style="solid",shape="box"];1002 -> 4809[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4809 -> 1144[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4810[label="xwv3000/Neg xwv30000",fontsize=10,color="white",style="solid",shape="box"];1002 -> 4810[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4810 -> 1145[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1003[label="xwv3001",fontsize=16,color="green",shape="box"];1004[label="xwv401",fontsize=16,color="green",shape="box"];1005[label="xwv3001",fontsize=16,color="green",shape="box"];1006[label="xwv401",fontsize=16,color="green",shape="box"];1007[label="xwv3001",fontsize=16,color="green",shape="box"];1008[label="xwv401",fontsize=16,color="green",shape="box"];1009[label="xwv3001",fontsize=16,color="green",shape="box"];1010[label="xwv401",fontsize=16,color="green",shape="box"];1011[label="xwv3001",fontsize=16,color="green",shape="box"];1012[label="xwv401",fontsize=16,color="green",shape="box"];1013[label="xwv3001",fontsize=16,color="green",shape="box"];1014[label="xwv401",fontsize=16,color="green",shape="box"];1015[label="xwv3001",fontsize=16,color="green",shape="box"];1016[label="xwv401",fontsize=16,color="green",shape="box"];1017[label="xwv3001",fontsize=16,color="green",shape="box"];1018[label="xwv401",fontsize=16,color="green",shape="box"];1019[label="xwv3001",fontsize=16,color="green",shape="box"];1020[label="xwv401",fontsize=16,color="green",shape="box"];1021[label="xwv3001",fontsize=16,color="green",shape="box"];1022[label="xwv401",fontsize=16,color="green",shape="box"];1023[label="xwv3001",fontsize=16,color="green",shape="box"];1024[label="xwv401",fontsize=16,color="green",shape="box"];1025[label="xwv3001",fontsize=16,color="green",shape="box"];1026[label="xwv401",fontsize=16,color="green",shape="box"];1027[label="xwv3001",fontsize=16,color="green",shape="box"];1028[label="xwv401",fontsize=16,color="green",shape="box"];1029[label="xwv3001",fontsize=16,color="green",shape="box"];1030[label="xwv401",fontsize=16,color="green",shape="box"];1031[label="xwv3002",fontsize=16,color="green",shape="box"];1032[label="xwv402",fontsize=16,color="green",shape="box"];1033[label="xwv3002",fontsize=16,color="green",shape="box"];1034[label="xwv402",fontsize=16,color="green",shape="box"];1035[label="xwv3002",fontsize=16,color="green",shape="box"];1036[label="xwv402",fontsize=16,color="green",shape="box"];1037[label="xwv3002",fontsize=16,color="green",shape="box"];1038[label="xwv402",fontsize=16,color="green",shape="box"];1039[label="xwv3002",fontsize=16,color="green",shape="box"];1040[label="xwv402",fontsize=16,color="green",shape="box"];1041[label="xwv3002",fontsize=16,color="green",shape="box"];1042[label="xwv402",fontsize=16,color="green",shape="box"];1043[label="xwv3002",fontsize=16,color="green",shape="box"];1044[label="xwv402",fontsize=16,color="green",shape="box"];1045[label="xwv3002",fontsize=16,color="green",shape="box"];1046[label="xwv402",fontsize=16,color="green",shape="box"];1047[label="xwv3002",fontsize=16,color="green",shape="box"];1048[label="xwv402",fontsize=16,color="green",shape="box"];1049[label="xwv3002",fontsize=16,color="green",shape="box"];1050[label="xwv402",fontsize=16,color="green",shape="box"];1051[label="xwv3002",fontsize=16,color="green",shape="box"];1052[label="xwv402",fontsize=16,color="green",shape="box"];1053[label="xwv3002",fontsize=16,color="green",shape="box"];1054[label="xwv402",fontsize=16,color="green",shape="box"];1055[label="xwv3002",fontsize=16,color="green",shape="box"];1056[label="xwv402",fontsize=16,color="green",shape="box"];1057[label="xwv3002",fontsize=16,color="green",shape="box"];1058[label="xwv402",fontsize=16,color="green",shape="box"];1059 -> 451[label="",style="dashed", color="red", weight=0]; 27.70/11.35 1059[label="primEqNat xwv4000 xwv30000",fontsize=16,color="magenta"];1059 -> 1146[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1059 -> 1147[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1060[label="False",fontsize=16,color="green",shape="box"];1061[label="False",fontsize=16,color="green",shape="box"];1062[label="True",fontsize=16,color="green",shape="box"];1063[label="xwv30000",fontsize=16,color="green",shape="box"];1064[label="xwv4000",fontsize=16,color="green",shape="box"];1065[label="xwv30000",fontsize=16,color="green",shape="box"];1066[label="xwv4000",fontsize=16,color="green",shape="box"];1203[label="FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=16,color="green",shape="box"];1204 -> 1474[label="",style="dashed", color="red", weight=0]; 27.70/11.35 1204[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"];1204 -> 1475[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2243[label="True",fontsize=16,color="green",shape="box"];2244[label="True",fontsize=16,color="green",shape="box"];2245[label="False",fontsize=16,color="green",shape="box"];2246[label="xwv28000 <= xwv29000",fontsize=16,color="blue",shape="box"];4811[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4811[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4811 -> 2312[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4812[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4812[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4812 -> 2313[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4813[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4813[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4813 -> 2314[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4814[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4814[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4814 -> 2315[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4815[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4815[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4815 -> 2316[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4816[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4816[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4816 -> 2317[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4817[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4817[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4817 -> 2318[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4818[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4818[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4818 -> 2319[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4819[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4819[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4819 -> 2320[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4820[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4820[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4820 -> 2321[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4821[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4821[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4821 -> 2322[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4822[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4822[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4822 -> 2323[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4823[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4823[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4823 -> 2324[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4824[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4824[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4824 -> 2325[label="",style="solid", color="blue", weight=3]; 27.70/11.35 2247[label="True",fontsize=16,color="green",shape="box"];2248[label="True",fontsize=16,color="green",shape="box"];2249[label="False",fontsize=16,color="green",shape="box"];2250[label="True",fontsize=16,color="green",shape="box"];2251 -> 2401[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2251[label="xwv28000 < xwv29000 || xwv28000 == xwv29000 && (xwv28001 < xwv29001 || xwv28001 == xwv29001 && xwv28002 <= xwv29002)",fontsize=16,color="magenta"];2251 -> 2402[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2251 -> 2403[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2252[label="xwv28000 <= xwv29000",fontsize=16,color="blue",shape="box"];4825[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 4825[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4825 -> 2331[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4826[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 4826[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4826 -> 2332[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4827[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 4827[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4827 -> 2333[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4828[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 4828[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4828 -> 2334[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4829[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 4829[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4829 -> 2335[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4830[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 4830[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4830 -> 2336[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4831[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 4831[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4831 -> 2337[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4832[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 4832[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4832 -> 2338[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4833[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 4833[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4833 -> 2339[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4834[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 4834[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4834 -> 2340[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4835[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 4835[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4835 -> 2341[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4836[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 4836[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4836 -> 2342[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4837[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 4837[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4837 -> 2343[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4838[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2252 -> 4838[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4838 -> 2344[label="",style="solid", color="blue", weight=3]; 27.70/11.35 2253[label="True",fontsize=16,color="green",shape="box"];2254[label="False",fontsize=16,color="green",shape="box"];2255[label="xwv28000 <= xwv29000",fontsize=16,color="blue",shape="box"];4839[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 4839[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4839 -> 2345[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4840[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 4840[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4840 -> 2346[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4841[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 4841[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4841 -> 2347[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4842[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 4842[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4842 -> 2348[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4843[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 4843[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4843 -> 2349[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4844[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 4844[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4844 -> 2350[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4845[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 4845[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4845 -> 2351[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4846[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 4846[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4846 -> 2352[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4847[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 4847[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4847 -> 2353[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4848[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 4848[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4848 -> 2354[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4849[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 4849[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4849 -> 2355[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4850[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 4850[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4850 -> 2356[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4851[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 4851[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4851 -> 2357[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4852[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 4852[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4852 -> 2358[label="",style="solid", color="blue", weight=3]; 27.70/11.35 2256[label="compare (Integer xwv28000) xwv2900",fontsize=16,color="burlywood",shape="box"];4853[label="xwv2900/Integer xwv29000",fontsize=10,color="white",style="solid",shape="box"];2256 -> 4853[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4853 -> 2359[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2257 -> 2360[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2257[label="not (xwv123 == GT)",fontsize=16,color="magenta"];2257 -> 2361[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2258[label="True",fontsize=16,color="green",shape="box"];2259[label="True",fontsize=16,color="green",shape="box"];2260[label="True",fontsize=16,color="green",shape="box"];2261[label="False",fontsize=16,color="green",shape="box"];2262[label="True",fontsize=16,color="green",shape="box"];2263[label="True",fontsize=16,color="green",shape="box"];2264[label="False",fontsize=16,color="green",shape="box"];2265[label="False",fontsize=16,color="green",shape="box"];2266[label="True",fontsize=16,color="green",shape="box"];2267[label="compare (xwv28000 :% xwv28001) xwv2900",fontsize=16,color="burlywood",shape="box"];4854[label="xwv2900/xwv29000 :% xwv29001",fontsize=10,color="white",style="solid",shape="box"];2267 -> 4854[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4854 -> 2362[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2268 -> 2401[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2268[label="xwv28000 < xwv29000 || xwv28000 == xwv29000 && xwv28001 <= xwv29001",fontsize=16,color="magenta"];2268 -> 2404[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2268 -> 2405[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2269[label="primCmpChar xwv2800 xwv2900",fontsize=16,color="burlywood",shape="box"];4855[label="xwv2800/Char xwv28000",fontsize=10,color="white",style="solid",shape="box"];2269 -> 4855[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4855 -> 2363[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2270[label="xwv2800",fontsize=16,color="green",shape="box"];2271[label="xwv2900",fontsize=16,color="green",shape="box"];2272[label="compare () xwv2900",fontsize=16,color="burlywood",shape="box"];4856[label="xwv2900/()",fontsize=10,color="white",style="solid",shape="box"];2272 -> 4856[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4856 -> 2364[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2273[label="primCmpDouble xwv2800 xwv2900",fontsize=16,color="burlywood",shape="box"];4857[label="xwv2800/Double xwv28000 xwv28001",fontsize=10,color="white",style="solid",shape="box"];2273 -> 4857[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4857 -> 2365[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2274[label="compare (xwv28000 : xwv28001) xwv2900",fontsize=16,color="burlywood",shape="box"];4858[label="xwv2900/xwv29000 : xwv29001",fontsize=10,color="white",style="solid",shape="box"];2274 -> 4858[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4858 -> 2366[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4859[label="xwv2900/[]",fontsize=10,color="white",style="solid",shape="box"];2274 -> 4859[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4859 -> 2367[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2275[label="compare [] xwv2900",fontsize=16,color="burlywood",shape="box"];4860[label="xwv2900/xwv29000 : xwv29001",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4860[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4860 -> 2368[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4861[label="xwv2900/[]",fontsize=10,color="white",style="solid",shape="box"];2275 -> 4861[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4861 -> 2369[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2276[label="primCmpFloat xwv2800 xwv2900",fontsize=16,color="burlywood",shape="box"];4862[label="xwv2800/Float xwv28000 xwv28001",fontsize=10,color="white",style="solid",shape="box"];2276 -> 4862[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4862 -> 2370[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2311[label="GT",fontsize=16,color="green",shape="box"];1349[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1349 -> 1532[label="",style="solid", color="black", weight=3]; 27.70/11.35 1350[label="FiniteMap.sizeFM (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="black",shape="box"];1350 -> 1533[label="",style="solid", color="black", weight=3]; 27.70/11.35 3688 -> 1208[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3688[label="FiniteMap.sizeFM xwv344",fontsize=16,color="magenta"];3688 -> 3698[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3687[label="primPlusInt (Pos xwv2500) xwv251",fontsize=16,color="burlywood",shape="triangle"];4863[label="xwv251/Pos xwv2510",fontsize=10,color="white",style="solid",shape="box"];3687 -> 4863[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4863 -> 3699[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4864[label="xwv251/Neg xwv2510",fontsize=10,color="white",style="solid",shape="box"];3687 -> 4864[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4864 -> 3700[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 3690 -> 1208[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3690[label="FiniteMap.sizeFM xwv344",fontsize=16,color="magenta"];3690 -> 3701[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3689[label="primPlusInt (Neg xwv2500) xwv252",fontsize=16,color="burlywood",shape="triangle"];4865[label="xwv252/Pos xwv2520",fontsize=10,color="white",style="solid",shape="box"];3689 -> 4865[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4865 -> 3702[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4866[label="xwv252/Neg xwv2520",fontsize=10,color="white",style="solid",shape="box"];3689 -> 4866[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4866 -> 3703[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1464[label="primCmpInt (Pos xwv280) xwv29",fontsize=16,color="burlywood",shape="box"];4867[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];1464 -> 4867[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4867 -> 1677[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4868[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];1464 -> 4868[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4868 -> 1678[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1465[label="primCmpInt (Neg xwv280) xwv29",fontsize=16,color="burlywood",shape="box"];4869[label="xwv280/Succ xwv2800",fontsize=10,color="white",style="solid",shape="box"];1465 -> 4869[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4869 -> 1679[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4870[label="xwv280/Zero",fontsize=10,color="white",style="solid",shape="box"];1465 -> 4870[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4870 -> 1680[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 3691[label="xwv344",fontsize=16,color="green",shape="box"];3692[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1509[label="GT",fontsize=16,color="green",shape="box"];1510 -> 1190[label="",style="dashed", color="red", weight=0]; 27.70/11.35 1510[label="compare xwv85 xwv84",fontsize=16,color="magenta"];1510 -> 1526[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1510 -> 1527[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3694 -> 1477[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3694[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv246 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv246",fontsize=16,color="magenta"];3694 -> 3704[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3694 -> 3705[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3693[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv340 xwv341 xwv344 xwv246 xwv340 xwv341 xwv246 xwv344 xwv253",fontsize=16,color="burlywood",shape="triangle"];4871[label="xwv253/False",fontsize=10,color="white",style="solid",shape="box"];3693 -> 4871[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4871 -> 3706[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4872[label="xwv253/True",fontsize=10,color="white",style="solid",shape="box"];3693 -> 4872[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4872 -> 3707[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 3695[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv340 xwv341 FiniteMap.EmptyFM xwv246 xwv246 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3695 -> 3720[label="",style="solid", color="black", weight=3]; 27.70/11.35 3696[label="FiniteMap.mkBalBranch6MkBalBranch0 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv246 xwv246 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444)",fontsize=16,color="black",shape="box"];3696 -> 3721[label="",style="solid", color="black", weight=3]; 27.70/11.35 4441[label="FiniteMap.mkBranchUnbox xwv366 xwv364 xwv367 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv366 xwv364 xwv367 + FiniteMap.mkBranchRight_size xwv366 xwv364 xwv367)",fontsize=16,color="black",shape="box"];4441 -> 4442[label="",style="solid", color="black", weight=3]; 27.70/11.35 1142[label="primMulInt (Pos xwv4010) (Pos xwv30000)",fontsize=16,color="black",shape="box"];1142 -> 1228[label="",style="solid", color="black", weight=3]; 27.70/11.35 1143[label="primMulInt (Pos xwv4010) (Neg xwv30000)",fontsize=16,color="black",shape="box"];1143 -> 1229[label="",style="solid", color="black", weight=3]; 27.70/11.35 1144[label="primMulInt (Neg xwv4010) (Pos xwv30000)",fontsize=16,color="black",shape="box"];1144 -> 1230[label="",style="solid", color="black", weight=3]; 27.70/11.35 1145[label="primMulInt (Neg xwv4010) (Neg xwv30000)",fontsize=16,color="black",shape="box"];1145 -> 1231[label="",style="solid", color="black", weight=3]; 27.70/11.35 1146[label="xwv30000",fontsize=16,color="green",shape="box"];1147[label="xwv4000",fontsize=16,color="green",shape="box"];1475 -> 1477[label="",style="dashed", color="red", weight=0]; 27.70/11.35 1475[label="FiniteMap.sizeFM (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344) > FiniteMap.sizeFM (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="magenta"];1475 -> 1486[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1475 -> 1487[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1474[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) xwv80",fontsize=16,color="burlywood",shape="triangle"];4873[label="xwv80/False",fontsize=10,color="white",style="solid",shape="box"];1474 -> 4873[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4873 -> 1495[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4874[label="xwv80/True",fontsize=10,color="white",style="solid",shape="box"];1474 -> 4874[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4874 -> 1496[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2312 -> 2126[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2312[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2312 -> 2371[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2312 -> 2372[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2313 -> 2127[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2313[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2313 -> 2373[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2313 -> 2374[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2314 -> 2128[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2314[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2314 -> 2375[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2314 -> 2376[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2315 -> 2129[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2315[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2315 -> 2377[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2315 -> 2378[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2316 -> 2130[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2316[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2316 -> 2379[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2316 -> 2380[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2317 -> 2131[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2317[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2317 -> 2381[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2317 -> 2382[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2318 -> 2132[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2318[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2318 -> 2383[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2318 -> 2384[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2319 -> 2133[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2319[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2319 -> 2385[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2319 -> 2386[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2320 -> 2134[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2320[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2320 -> 2387[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2320 -> 2388[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2321 -> 2135[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2321[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2321 -> 2389[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2321 -> 2390[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2322 -> 2136[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2322[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2322 -> 2391[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2322 -> 2392[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2323 -> 2137[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2323[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2323 -> 2393[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2323 -> 2394[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2324 -> 2138[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2324[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2324 -> 2395[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2324 -> 2396[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2325 -> 2139[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2325[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2325 -> 2397[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2325 -> 2398[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2402[label="xwv28000 < xwv29000",fontsize=16,color="blue",shape="box"];4875[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 4875[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4875 -> 2410[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4876[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 4876[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4876 -> 2411[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4877[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 4877[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4877 -> 2412[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4878[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 4878[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4878 -> 2413[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4879[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 4879[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4879 -> 2414[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4880[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 4880[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4880 -> 2415[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4881[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 4881[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4881 -> 2416[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4882[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 4882[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4882 -> 2417[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4883[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 4883[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4883 -> 2418[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4884[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 4884[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4884 -> 2419[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4885[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 4885[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4885 -> 2420[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4886[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 4886[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4886 -> 2421[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4887[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 4887[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4887 -> 2422[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4888[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2402 -> 4888[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4888 -> 2423[label="",style="solid", color="blue", weight=3]; 27.70/11.35 2403 -> 513[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2403[label="xwv28000 == xwv29000 && (xwv28001 < xwv29001 || xwv28001 == xwv29001 && xwv28002 <= xwv29002)",fontsize=16,color="magenta"];2403 -> 2424[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2403 -> 2425[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2401[label="xwv130 || xwv131",fontsize=16,color="burlywood",shape="triangle"];4889[label="xwv130/False",fontsize=10,color="white",style="solid",shape="box"];2401 -> 4889[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4889 -> 2426[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4890[label="xwv130/True",fontsize=10,color="white",style="solid",shape="box"];2401 -> 4890[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4890 -> 2427[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2331 -> 2126[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2331[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2331 -> 2428[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2331 -> 2429[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2332 -> 2127[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2332[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2332 -> 2430[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2332 -> 2431[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2333 -> 2128[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2333[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2333 -> 2432[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2333 -> 2433[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2334 -> 2129[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2334[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2334 -> 2434[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2334 -> 2435[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2335 -> 2130[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2335[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2335 -> 2436[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2335 -> 2437[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2336 -> 2131[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2336[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2336 -> 2438[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2336 -> 2439[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2337 -> 2132[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2337[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2337 -> 2440[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2337 -> 2441[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2338 -> 2133[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2338[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2338 -> 2442[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2338 -> 2443[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2339 -> 2134[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2339[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2339 -> 2444[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2339 -> 2445[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2340 -> 2135[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2340[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2340 -> 2446[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2340 -> 2447[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2341 -> 2136[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2341[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2341 -> 2448[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2341 -> 2449[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2342 -> 2137[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2342[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2342 -> 2450[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2342 -> 2451[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2343 -> 2138[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2343[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2343 -> 2452[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2343 -> 2453[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2344 -> 2139[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2344[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2344 -> 2454[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2344 -> 2455[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2345 -> 2126[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2345[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2345 -> 2456[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2345 -> 2457[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2346 -> 2127[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2346[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2346 -> 2458[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2346 -> 2459[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2347 -> 2128[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2347[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2347 -> 2460[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2347 -> 2461[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2348 -> 2129[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2348[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2348 -> 2462[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2348 -> 2463[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2349 -> 2130[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2349[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2349 -> 2464[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2349 -> 2465[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2350 -> 2131[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2350[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2350 -> 2466[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2350 -> 2467[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2351 -> 2132[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2351[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2351 -> 2468[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2351 -> 2469[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2352 -> 2133[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2352[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2352 -> 2470[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2352 -> 2471[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2353 -> 2134[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2353[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2353 -> 2472[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2353 -> 2473[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2354 -> 2135[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2354[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2354 -> 2474[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2354 -> 2475[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2355 -> 2136[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2355[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2355 -> 2476[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2355 -> 2477[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2356 -> 2137[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2356[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2356 -> 2478[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2356 -> 2479[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2357 -> 2138[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2357[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2357 -> 2480[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2357 -> 2481[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2358 -> 2139[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2358[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];2358 -> 2482[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2358 -> 2483[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2359[label="compare (Integer xwv28000) (Integer xwv29000)",fontsize=16,color="black",shape="box"];2359 -> 2484[label="",style="solid", color="black", weight=3]; 27.70/11.35 2361 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2361[label="xwv123 == GT",fontsize=16,color="magenta"];2361 -> 2485[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2361 -> 2486[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2360[label="not xwv126",fontsize=16,color="burlywood",shape="triangle"];4891[label="xwv126/False",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4891[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4891 -> 2487[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4892[label="xwv126/True",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4892[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4892 -> 2488[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2362[label="compare (xwv28000 :% xwv28001) (xwv29000 :% xwv29001)",fontsize=16,color="black",shape="box"];2362 -> 2489[label="",style="solid", color="black", weight=3]; 27.70/11.35 2404[label="xwv28000 < xwv29000",fontsize=16,color="blue",shape="box"];4893[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4893[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4893 -> 2490[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4894[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4894[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4894 -> 2491[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4895[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4895[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4895 -> 2492[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4896[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4896[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4896 -> 2493[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4897[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4897[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4897 -> 2494[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4898[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4898[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4898 -> 2495[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4899[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4899[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4899 -> 2496[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4900[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4900[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4900 -> 2497[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4901[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4901[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4901 -> 2498[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4902[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4902[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4902 -> 2499[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4903[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4903[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4903 -> 2500[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4904[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4904[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4904 -> 2501[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4905[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4905[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4905 -> 2502[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4906[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4906[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4906 -> 2503[label="",style="solid", color="blue", weight=3]; 27.70/11.35 2405 -> 513[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2405[label="xwv28000 == xwv29000 && xwv28001 <= xwv29001",fontsize=16,color="magenta"];2405 -> 2504[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2405 -> 2505[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2363[label="primCmpChar (Char xwv28000) xwv2900",fontsize=16,color="burlywood",shape="box"];4907[label="xwv2900/Char xwv29000",fontsize=10,color="white",style="solid",shape="box"];2363 -> 4907[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4907 -> 2506[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2364[label="compare () ()",fontsize=16,color="black",shape="box"];2364 -> 2507[label="",style="solid", color="black", weight=3]; 27.70/11.35 2365[label="primCmpDouble (Double xwv28000 xwv28001) xwv2900",fontsize=16,color="burlywood",shape="box"];4908[label="xwv28001/Pos xwv280010",fontsize=10,color="white",style="solid",shape="box"];2365 -> 4908[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4908 -> 2508[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4909[label="xwv28001/Neg xwv280010",fontsize=10,color="white",style="solid",shape="box"];2365 -> 4909[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4909 -> 2509[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2366[label="compare (xwv28000 : xwv28001) (xwv29000 : xwv29001)",fontsize=16,color="black",shape="box"];2366 -> 2510[label="",style="solid", color="black", weight=3]; 27.70/11.35 2367[label="compare (xwv28000 : xwv28001) []",fontsize=16,color="black",shape="box"];2367 -> 2511[label="",style="solid", color="black", weight=3]; 27.70/11.35 2368[label="compare [] (xwv29000 : xwv29001)",fontsize=16,color="black",shape="box"];2368 -> 2512[label="",style="solid", color="black", weight=3]; 27.70/11.35 2369[label="compare [] []",fontsize=16,color="black",shape="box"];2369 -> 2513[label="",style="solid", color="black", weight=3]; 27.70/11.35 2370[label="primCmpFloat (Float xwv28000 xwv28001) xwv2900",fontsize=16,color="burlywood",shape="box"];4910[label="xwv28001/Pos xwv280010",fontsize=10,color="white",style="solid",shape="box"];2370 -> 4910[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4910 -> 2514[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4911[label="xwv28001/Neg xwv280010",fontsize=10,color="white",style="solid",shape="box"];2370 -> 4911[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4911 -> 2515[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1532[label="Pos Zero",fontsize=16,color="green",shape="box"];1533[label="xwv332",fontsize=16,color="green",shape="box"];3698[label="xwv344",fontsize=16,color="green",shape="box"];3699[label="primPlusInt (Pos xwv2500) (Pos xwv2510)",fontsize=16,color="black",shape="box"];3699 -> 3723[label="",style="solid", color="black", weight=3]; 27.70/11.35 3700[label="primPlusInt (Pos xwv2500) (Neg xwv2510)",fontsize=16,color="black",shape="box"];3700 -> 3724[label="",style="solid", color="black", weight=3]; 27.70/11.35 3701[label="xwv344",fontsize=16,color="green",shape="box"];3702[label="primPlusInt (Neg xwv2500) (Pos xwv2520)",fontsize=16,color="black",shape="box"];3702 -> 3725[label="",style="solid", color="black", weight=3]; 27.70/11.35 3703[label="primPlusInt (Neg xwv2500) (Neg xwv2520)",fontsize=16,color="black",shape="box"];3703 -> 3726[label="",style="solid", color="black", weight=3]; 27.70/11.35 1677[label="primCmpInt (Pos (Succ xwv2800)) xwv29",fontsize=16,color="burlywood",shape="box"];4912[label="xwv29/Pos xwv290",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4912[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4912 -> 1822[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4913[label="xwv29/Neg xwv290",fontsize=10,color="white",style="solid",shape="box"];1677 -> 4913[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4913 -> 1823[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1678[label="primCmpInt (Pos Zero) xwv29",fontsize=16,color="burlywood",shape="box"];4914[label="xwv29/Pos xwv290",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4914[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4914 -> 1824[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4915[label="xwv29/Neg xwv290",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4915[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4915 -> 1825[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1679[label="primCmpInt (Neg (Succ xwv2800)) xwv29",fontsize=16,color="burlywood",shape="box"];4916[label="xwv29/Pos xwv290",fontsize=10,color="white",style="solid",shape="box"];1679 -> 4916[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4916 -> 1826[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4917[label="xwv29/Neg xwv290",fontsize=10,color="white",style="solid",shape="box"];1679 -> 4917[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4917 -> 1827[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1680[label="primCmpInt (Neg Zero) xwv29",fontsize=16,color="burlywood",shape="box"];4918[label="xwv29/Pos xwv290",fontsize=10,color="white",style="solid",shape="box"];1680 -> 4918[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4918 -> 1828[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4919[label="xwv29/Neg xwv290",fontsize=10,color="white",style="solid",shape="box"];1680 -> 4919[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4919 -> 1829[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1526[label="xwv85",fontsize=16,color="green",shape="box"];1527[label="xwv84",fontsize=16,color="green",shape="box"];3704 -> 3648[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3704[label="FiniteMap.mkBalBranch6Size_l xwv340 xwv341 xwv344 xwv246",fontsize=16,color="magenta"];3705 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3705[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv246",fontsize=16,color="magenta"];3705 -> 3727[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3705 -> 3728[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3706[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv340 xwv341 xwv344 xwv246 xwv340 xwv341 xwv246 xwv344 False",fontsize=16,color="black",shape="box"];3706 -> 3729[label="",style="solid", color="black", weight=3]; 27.70/11.35 3707[label="FiniteMap.mkBalBranch6MkBalBranch3 xwv340 xwv341 xwv344 xwv246 xwv340 xwv341 xwv246 xwv344 True",fontsize=16,color="black",shape="box"];3707 -> 3730[label="",style="solid", color="black", weight=3]; 27.70/11.35 3720[label="error []",fontsize=16,color="red",shape="box"];3721[label="FiniteMap.mkBalBranch6MkBalBranch02 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv246 xwv246 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444)",fontsize=16,color="black",shape="box"];3721 -> 3739[label="",style="solid", color="black", weight=3]; 27.70/11.35 4442[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv366 xwv364 xwv367 + FiniteMap.mkBranchRight_size xwv366 xwv364 xwv367",fontsize=16,color="black",shape="box"];4442 -> 4443[label="",style="solid", color="black", weight=3]; 27.70/11.35 1228[label="Pos (primMulNat xwv4010 xwv30000)",fontsize=16,color="green",shape="box"];1228 -> 1369[label="",style="dashed", color="green", weight=3]; 27.70/11.35 1229[label="Neg (primMulNat xwv4010 xwv30000)",fontsize=16,color="green",shape="box"];1229 -> 1370[label="",style="dashed", color="green", weight=3]; 27.70/11.35 1230[label="Neg (primMulNat xwv4010 xwv30000)",fontsize=16,color="green",shape="box"];1230 -> 1371[label="",style="dashed", color="green", weight=3]; 27.70/11.35 1231[label="Pos (primMulNat xwv4010 xwv30000)",fontsize=16,color="green",shape="box"];1231 -> 1372[label="",style="dashed", color="green", weight=3]; 27.70/11.35 1486 -> 1208[label="",style="dashed", color="red", weight=0]; 27.70/11.35 1486[label="FiniteMap.sizeFM (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="magenta"];1486 -> 1691[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1487 -> 1208[label="",style="dashed", color="red", weight=0]; 27.70/11.35 1487[label="FiniteMap.sizeFM (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="magenta"];1487 -> 1692[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1495[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"];1495 -> 1693[label="",style="solid", color="black", weight=3]; 27.70/11.35 1496[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"];1496 -> 1694[label="",style="solid", color="black", weight=3]; 27.70/11.35 2371[label="xwv28000",fontsize=16,color="green",shape="box"];2372[label="xwv29000",fontsize=16,color="green",shape="box"];2373[label="xwv28000",fontsize=16,color="green",shape="box"];2374[label="xwv29000",fontsize=16,color="green",shape="box"];2375[label="xwv28000",fontsize=16,color="green",shape="box"];2376[label="xwv29000",fontsize=16,color="green",shape="box"];2377[label="xwv28000",fontsize=16,color="green",shape="box"];2378[label="xwv29000",fontsize=16,color="green",shape="box"];2379[label="xwv28000",fontsize=16,color="green",shape="box"];2380[label="xwv29000",fontsize=16,color="green",shape="box"];2381[label="xwv28000",fontsize=16,color="green",shape="box"];2382[label="xwv29000",fontsize=16,color="green",shape="box"];2383[label="xwv28000",fontsize=16,color="green",shape="box"];2384[label="xwv29000",fontsize=16,color="green",shape="box"];2385[label="xwv28000",fontsize=16,color="green",shape="box"];2386[label="xwv29000",fontsize=16,color="green",shape="box"];2387[label="xwv28000",fontsize=16,color="green",shape="box"];2388[label="xwv29000",fontsize=16,color="green",shape="box"];2389[label="xwv28000",fontsize=16,color="green",shape="box"];2390[label="xwv29000",fontsize=16,color="green",shape="box"];2391[label="xwv28000",fontsize=16,color="green",shape="box"];2392[label="xwv29000",fontsize=16,color="green",shape="box"];2393[label="xwv28000",fontsize=16,color="green",shape="box"];2394[label="xwv29000",fontsize=16,color="green",shape="box"];2395[label="xwv28000",fontsize=16,color="green",shape="box"];2396[label="xwv29000",fontsize=16,color="green",shape="box"];2397[label="xwv28000",fontsize=16,color="green",shape="box"];2398[label="xwv29000",fontsize=16,color="green",shape="box"];2410[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2410 -> 2531[label="",style="solid", color="black", weight=3]; 27.70/11.35 2411[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2411 -> 2532[label="",style="solid", color="black", weight=3]; 27.70/11.35 2412[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2412 -> 2533[label="",style="solid", color="black", weight=3]; 27.70/11.35 2413[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2413 -> 2534[label="",style="solid", color="black", weight=3]; 27.70/11.35 2414[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2414 -> 2535[label="",style="solid", color="black", weight=3]; 27.70/11.35 2415[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2415 -> 2536[label="",style="solid", color="black", weight=3]; 27.70/11.35 2416[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2416 -> 2537[label="",style="solid", color="black", weight=3]; 27.70/11.35 2417[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2417 -> 2538[label="",style="solid", color="black", weight=3]; 27.70/11.35 2418[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2418 -> 2539[label="",style="solid", color="black", weight=3]; 27.70/11.35 2419 -> 1254[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2419[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2419 -> 2540[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2419 -> 2541[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2420[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2420 -> 2542[label="",style="solid", color="black", weight=3]; 27.70/11.35 2421[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2421 -> 2543[label="",style="solid", color="black", weight=3]; 27.70/11.35 2422[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2422 -> 2544[label="",style="solid", color="black", weight=3]; 27.70/11.35 2423[label="xwv28000 < xwv29000",fontsize=16,color="black",shape="triangle"];2423 -> 2545[label="",style="solid", color="black", weight=3]; 27.70/11.35 2424[label="xwv28000 == xwv29000",fontsize=16,color="blue",shape="box"];4920[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4920[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4920 -> 2546[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4921[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4921[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4921 -> 2547[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4922[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4922[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4922 -> 2548[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4923[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4923[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4923 -> 2549[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4924[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4924[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4924 -> 2550[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4925[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4925[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4925 -> 2551[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4926[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4926[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4926 -> 2552[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4927[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4927[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4927 -> 2553[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4928[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4928[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4928 -> 2554[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4929[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4929[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4929 -> 2555[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4930[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4930[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4930 -> 2556[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4931[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4931[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4931 -> 2557[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4932[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4932[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4932 -> 2558[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4933[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4933[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4933 -> 2559[label="",style="solid", color="blue", weight=3]; 27.70/11.35 2425 -> 2401[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2425[label="xwv28001 < xwv29001 || xwv28001 == xwv29001 && xwv28002 <= xwv29002",fontsize=16,color="magenta"];2425 -> 2560[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2425 -> 2561[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2426[label="False || xwv131",fontsize=16,color="black",shape="box"];2426 -> 2562[label="",style="solid", color="black", weight=3]; 27.70/11.35 2427[label="True || xwv131",fontsize=16,color="black",shape="box"];2427 -> 2563[label="",style="solid", color="black", weight=3]; 27.70/11.35 2428[label="xwv28000",fontsize=16,color="green",shape="box"];2429[label="xwv29000",fontsize=16,color="green",shape="box"];2430[label="xwv28000",fontsize=16,color="green",shape="box"];2431[label="xwv29000",fontsize=16,color="green",shape="box"];2432[label="xwv28000",fontsize=16,color="green",shape="box"];2433[label="xwv29000",fontsize=16,color="green",shape="box"];2434[label="xwv28000",fontsize=16,color="green",shape="box"];2435[label="xwv29000",fontsize=16,color="green",shape="box"];2436[label="xwv28000",fontsize=16,color="green",shape="box"];2437[label="xwv29000",fontsize=16,color="green",shape="box"];2438[label="xwv28000",fontsize=16,color="green",shape="box"];2439[label="xwv29000",fontsize=16,color="green",shape="box"];2440[label="xwv28000",fontsize=16,color="green",shape="box"];2441[label="xwv29000",fontsize=16,color="green",shape="box"];2442[label="xwv28000",fontsize=16,color="green",shape="box"];2443[label="xwv29000",fontsize=16,color="green",shape="box"];2444[label="xwv28000",fontsize=16,color="green",shape="box"];2445[label="xwv29000",fontsize=16,color="green",shape="box"];2446[label="xwv28000",fontsize=16,color="green",shape="box"];2447[label="xwv29000",fontsize=16,color="green",shape="box"];2448[label="xwv28000",fontsize=16,color="green",shape="box"];2449[label="xwv29000",fontsize=16,color="green",shape="box"];2450[label="xwv28000",fontsize=16,color="green",shape="box"];2451[label="xwv29000",fontsize=16,color="green",shape="box"];2452[label="xwv28000",fontsize=16,color="green",shape="box"];2453[label="xwv29000",fontsize=16,color="green",shape="box"];2454[label="xwv28000",fontsize=16,color="green",shape="box"];2455[label="xwv29000",fontsize=16,color="green",shape="box"];2456[label="xwv28000",fontsize=16,color="green",shape="box"];2457[label="xwv29000",fontsize=16,color="green",shape="box"];2458[label="xwv28000",fontsize=16,color="green",shape="box"];2459[label="xwv29000",fontsize=16,color="green",shape="box"];2460[label="xwv28000",fontsize=16,color="green",shape="box"];2461[label="xwv29000",fontsize=16,color="green",shape="box"];2462[label="xwv28000",fontsize=16,color="green",shape="box"];2463[label="xwv29000",fontsize=16,color="green",shape="box"];2464[label="xwv28000",fontsize=16,color="green",shape="box"];2465[label="xwv29000",fontsize=16,color="green",shape="box"];2466[label="xwv28000",fontsize=16,color="green",shape="box"];2467[label="xwv29000",fontsize=16,color="green",shape="box"];2468[label="xwv28000",fontsize=16,color="green",shape="box"];2469[label="xwv29000",fontsize=16,color="green",shape="box"];2470[label="xwv28000",fontsize=16,color="green",shape="box"];2471[label="xwv29000",fontsize=16,color="green",shape="box"];2472[label="xwv28000",fontsize=16,color="green",shape="box"];2473[label="xwv29000",fontsize=16,color="green",shape="box"];2474[label="xwv28000",fontsize=16,color="green",shape="box"];2475[label="xwv29000",fontsize=16,color="green",shape="box"];2476[label="xwv28000",fontsize=16,color="green",shape="box"];2477[label="xwv29000",fontsize=16,color="green",shape="box"];2478[label="xwv28000",fontsize=16,color="green",shape="box"];2479[label="xwv29000",fontsize=16,color="green",shape="box"];2480[label="xwv28000",fontsize=16,color="green",shape="box"];2481[label="xwv29000",fontsize=16,color="green",shape="box"];2482[label="xwv28000",fontsize=16,color="green",shape="box"];2483[label="xwv29000",fontsize=16,color="green",shape="box"];2484 -> 1338[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2484[label="primCmpInt xwv28000 xwv29000",fontsize=16,color="magenta"];2484 -> 2564[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2484 -> 2565[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2485[label="GT",fontsize=16,color="green",shape="box"];2486[label="xwv123",fontsize=16,color="green",shape="box"];2487[label="not False",fontsize=16,color="black",shape="box"];2487 -> 2566[label="",style="solid", color="black", weight=3]; 27.70/11.35 2488[label="not True",fontsize=16,color="black",shape="box"];2488 -> 2567[label="",style="solid", color="black", weight=3]; 27.70/11.35 2489[label="compare (xwv28000 * xwv29001) (xwv29000 * xwv28001)",fontsize=16,color="blue",shape="box"];4934[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2489 -> 4934[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4934 -> 2568[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4935[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2489 -> 4935[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4935 -> 2569[label="",style="solid", color="blue", weight=3]; 27.70/11.35 2490 -> 2410[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2490[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2490 -> 2570[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2490 -> 2571[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2491 -> 2411[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2491[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2491 -> 2572[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2491 -> 2573[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2492 -> 2412[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2492[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2492 -> 2574[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2492 -> 2575[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2493 -> 2413[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2493[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2493 -> 2576[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2493 -> 2577[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2494 -> 2414[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2494[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2494 -> 2578[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2494 -> 2579[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2495 -> 2415[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2495[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2495 -> 2580[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2495 -> 2581[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2496 -> 2416[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2496[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2496 -> 2582[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2496 -> 2583[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2497 -> 2417[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2497[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2497 -> 2584[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2497 -> 2585[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2498 -> 2418[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2498[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2498 -> 2586[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2498 -> 2587[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2499 -> 1254[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2499[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2499 -> 2588[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2499 -> 2589[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2500 -> 2420[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2500[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2500 -> 2590[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2500 -> 2591[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2501 -> 2421[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2501[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2501 -> 2592[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2501 -> 2593[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2502 -> 2422[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2502[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2502 -> 2594[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2502 -> 2595[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2503 -> 2423[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2503[label="xwv28000 < xwv29000",fontsize=16,color="magenta"];2503 -> 2596[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2503 -> 2597[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2504[label="xwv28000 == xwv29000",fontsize=16,color="blue",shape="box"];4936[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4936[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4936 -> 2598[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4937[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4937[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4937 -> 2599[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4938[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4938[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4938 -> 2600[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4939[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4939[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4939 -> 2601[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4940[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4940[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4940 -> 2602[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4941[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4941[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4941 -> 2603[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4942[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4942[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4942 -> 2604[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4943[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4943[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4943 -> 2605[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4944[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4944[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4944 -> 2606[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4945[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4945[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4945 -> 2607[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4946[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4946[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4946 -> 2608[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4947[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4947[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4947 -> 2609[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4948[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4948[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4948 -> 2610[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4949[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4949[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4949 -> 2611[label="",style="solid", color="blue", weight=3]; 27.70/11.35 2505[label="xwv28001 <= xwv29001",fontsize=16,color="blue",shape="box"];4950[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4950[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4950 -> 2612[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4951[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4951[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4951 -> 2613[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4952[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4952[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4952 -> 2614[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4953[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4953[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4953 -> 2615[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4954[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4954[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4954 -> 2616[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4955[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4955[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4955 -> 2617[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4956[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4956[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4956 -> 2618[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4957[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4957[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4957 -> 2619[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4958[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4958[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4958 -> 2620[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4959[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4959[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4959 -> 2621[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4960[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4960[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4960 -> 2622[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4961[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4961[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4961 -> 2623[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4962[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4962[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4962 -> 2624[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4963[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4963[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4963 -> 2625[label="",style="solid", color="blue", weight=3]; 27.70/11.35 2506[label="primCmpChar (Char xwv28000) (Char xwv29000)",fontsize=16,color="black",shape="box"];2506 -> 2626[label="",style="solid", color="black", weight=3]; 27.70/11.35 2507[label="EQ",fontsize=16,color="green",shape="box"];2508[label="primCmpDouble (Double xwv28000 (Pos xwv280010)) xwv2900",fontsize=16,color="burlywood",shape="box"];4964[label="xwv2900/Double xwv29000 xwv29001",fontsize=10,color="white",style="solid",shape="box"];2508 -> 4964[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4964 -> 2627[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2509[label="primCmpDouble (Double xwv28000 (Neg xwv280010)) xwv2900",fontsize=16,color="burlywood",shape="box"];4965[label="xwv2900/Double xwv29000 xwv29001",fontsize=10,color="white",style="solid",shape="box"];2509 -> 4965[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4965 -> 2628[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2510 -> 2629[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2510[label="primCompAux xwv28000 xwv29000 (compare xwv28001 xwv29001)",fontsize=16,color="magenta"];2510 -> 2630[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2511[label="GT",fontsize=16,color="green",shape="box"];2512[label="LT",fontsize=16,color="green",shape="box"];2513[label="EQ",fontsize=16,color="green",shape="box"];2514[label="primCmpFloat (Float xwv28000 (Pos xwv280010)) xwv2900",fontsize=16,color="burlywood",shape="box"];4966[label="xwv2900/Float xwv29000 xwv29001",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4966[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4966 -> 2631[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2515[label="primCmpFloat (Float xwv28000 (Neg xwv280010)) xwv2900",fontsize=16,color="burlywood",shape="box"];4967[label="xwv2900/Float xwv29000 xwv29001",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4967[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4967 -> 2632[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 3723[label="Pos (primPlusNat xwv2500 xwv2510)",fontsize=16,color="green",shape="box"];3723 -> 3741[label="",style="dashed", color="green", weight=3]; 27.70/11.35 3724[label="primMinusNat xwv2500 xwv2510",fontsize=16,color="burlywood",shape="triangle"];4968[label="xwv2500/Succ xwv25000",fontsize=10,color="white",style="solid",shape="box"];3724 -> 4968[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4968 -> 3742[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4969[label="xwv2500/Zero",fontsize=10,color="white",style="solid",shape="box"];3724 -> 4969[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4969 -> 3743[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 3725 -> 3724[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3725[label="primMinusNat xwv2520 xwv2500",fontsize=16,color="magenta"];3725 -> 3744[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3725 -> 3745[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3726[label="Neg (primPlusNat xwv2500 xwv2520)",fontsize=16,color="green",shape="box"];3726 -> 3746[label="",style="dashed", color="green", weight=3]; 27.70/11.35 1822[label="primCmpInt (Pos (Succ xwv2800)) (Pos xwv290)",fontsize=16,color="black",shape="box"];1822 -> 1938[label="",style="solid", color="black", weight=3]; 27.70/11.35 1823[label="primCmpInt (Pos (Succ xwv2800)) (Neg xwv290)",fontsize=16,color="black",shape="box"];1823 -> 1939[label="",style="solid", color="black", weight=3]; 27.70/11.35 1824[label="primCmpInt (Pos Zero) (Pos xwv290)",fontsize=16,color="burlywood",shape="box"];4970[label="xwv290/Succ xwv2900",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4970[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4970 -> 1940[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4971[label="xwv290/Zero",fontsize=10,color="white",style="solid",shape="box"];1824 -> 4971[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4971 -> 1941[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1825[label="primCmpInt (Pos Zero) (Neg xwv290)",fontsize=16,color="burlywood",shape="box"];4972[label="xwv290/Succ xwv2900",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4972[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4972 -> 1942[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4973[label="xwv290/Zero",fontsize=10,color="white",style="solid",shape="box"];1825 -> 4973[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4973 -> 1943[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1826[label="primCmpInt (Neg (Succ xwv2800)) (Pos xwv290)",fontsize=16,color="black",shape="box"];1826 -> 1944[label="",style="solid", color="black", weight=3]; 27.70/11.35 1827[label="primCmpInt (Neg (Succ xwv2800)) (Neg xwv290)",fontsize=16,color="black",shape="box"];1827 -> 1945[label="",style="solid", color="black", weight=3]; 27.70/11.35 1828[label="primCmpInt (Neg Zero) (Pos xwv290)",fontsize=16,color="burlywood",shape="box"];4974[label="xwv290/Succ xwv2900",fontsize=10,color="white",style="solid",shape="box"];1828 -> 4974[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4974 -> 1946[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4975[label="xwv290/Zero",fontsize=10,color="white",style="solid",shape="box"];1828 -> 4975[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4975 -> 1947[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1829[label="primCmpInt (Neg Zero) (Neg xwv290)",fontsize=16,color="burlywood",shape="box"];4976[label="xwv290/Succ xwv2900",fontsize=10,color="white",style="solid",shape="box"];1829 -> 4976[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4976 -> 1948[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4977[label="xwv290/Zero",fontsize=10,color="white",style="solid",shape="box"];1829 -> 4977[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4977 -> 1949[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 3727 -> 3674[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3727[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];3728 -> 3653[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3728[label="FiniteMap.mkBalBranch6Size_r xwv340 xwv341 xwv344 xwv246",fontsize=16,color="magenta"];3729[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv340 xwv341 xwv344 xwv246 xwv340 xwv341 xwv246 xwv344 otherwise",fontsize=16,color="black",shape="box"];3729 -> 3747[label="",style="solid", color="black", weight=3]; 27.70/11.35 3730[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv340 xwv341 xwv344 xwv246 xwv246 xwv344 xwv246",fontsize=16,color="burlywood",shape="box"];4978[label="xwv246/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3730 -> 4978[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4978 -> 3748[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4979[label="xwv246/FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464",fontsize=10,color="white",style="solid",shape="box"];3730 -> 4979[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4979 -> 3749[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 3739 -> 3762[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3739[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv246 xwv246 (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"];3739 -> 3763[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 4443 -> 4445[label="",style="dashed", color="red", weight=0]; 27.70/11.35 4443[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv366 xwv364 xwv367) (FiniteMap.mkBranchRight_size xwv366 xwv364 xwv367)",fontsize=16,color="magenta"];4443 -> 4446[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1369[label="primMulNat xwv4010 xwv30000",fontsize=16,color="burlywood",shape="triangle"];4980[label="xwv4010/Succ xwv40100",fontsize=10,color="white",style="solid",shape="box"];1369 -> 4980[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4980 -> 1540[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4981[label="xwv4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1369 -> 4981[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4981 -> 1541[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1370 -> 1369[label="",style="dashed", color="red", weight=0]; 27.70/11.35 1370[label="primMulNat xwv4010 xwv30000",fontsize=16,color="magenta"];1370 -> 1542[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1371 -> 1369[label="",style="dashed", color="red", weight=0]; 27.70/11.35 1371[label="primMulNat xwv4010 xwv30000",fontsize=16,color="magenta"];1371 -> 1543[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1372 -> 1369[label="",style="dashed", color="red", weight=0]; 27.70/11.35 1372[label="primMulNat xwv4010 xwv30000",fontsize=16,color="magenta"];1372 -> 1544[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1372 -> 1545[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1691[label="FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344",fontsize=16,color="green",shape="box"];1692[label="FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=16,color="green",shape="box"];1693[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"];1693 -> 1836[label="",style="solid", color="black", weight=3]; 27.70/11.35 1694 -> 3516[label="",style="dashed", color="red", weight=0]; 27.70/11.35 1694[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"];1694 -> 3553[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1694 -> 3554[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1694 -> 3555[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1694 -> 3556[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2531 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2531[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2531 -> 2633[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2531 -> 2634[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2532 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2532[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2532 -> 2635[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2532 -> 2636[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2533 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2533[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2533 -> 2637[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2533 -> 2638[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2534 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2534[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2534 -> 2639[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2534 -> 2640[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2535 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2535[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2535 -> 2641[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2535 -> 2642[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2536 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2536[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2536 -> 2643[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2536 -> 2644[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2537 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2537[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2537 -> 2645[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2537 -> 2646[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2538 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2538[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2538 -> 2647[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2538 -> 2648[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2539 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2539[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2539 -> 2649[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2539 -> 2650[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2540[label="xwv28000",fontsize=16,color="green",shape="box"];2541[label="xwv29000",fontsize=16,color="green",shape="box"];2542 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2542[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2542 -> 2651[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2542 -> 2652[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2543 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2543[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2543 -> 2653[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2543 -> 2654[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2544 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2544[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2544 -> 2655[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2544 -> 2656[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2545 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2545[label="compare xwv28000 xwv29000 == LT",fontsize=16,color="magenta"];2545 -> 2657[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2545 -> 2658[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2546 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2546[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2546 -> 2659[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2546 -> 2660[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2547 -> 175[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2547[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2547 -> 2661[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2547 -> 2662[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2548 -> 178[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2548[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2548 -> 2663[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2548 -> 2664[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2549 -> 171[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2549[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2549 -> 2665[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2549 -> 2666[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2550 -> 173[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2550[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2550 -> 2667[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2550 -> 2668[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2551 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2551[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2551 -> 2669[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2551 -> 2670[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2552 -> 179[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2552[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2552 -> 2671[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2552 -> 2672[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2553 -> 172[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2553[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2553 -> 2673[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2553 -> 2674[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2554 -> 181[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2554[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2554 -> 2675[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2554 -> 2676[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2555 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2555[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2555 -> 2677[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2555 -> 2678[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2556 -> 169[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2556[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2556 -> 2679[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2556 -> 2680[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2557 -> 174[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2557[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2557 -> 2681[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2557 -> 2682[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2558 -> 170[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2558[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2558 -> 2683[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2558 -> 2684[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2559 -> 177[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2559[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2559 -> 2685[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2559 -> 2686[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2560[label="xwv28001 < xwv29001",fontsize=16,color="blue",shape="box"];4982[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4982[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4982 -> 2687[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4983[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4983[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4983 -> 2688[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4984[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4984[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4984 -> 2689[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4985[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4985[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4985 -> 2690[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4986[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4986[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4986 -> 2691[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4987[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4987[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4987 -> 2692[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4988[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4988[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4988 -> 2693[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4989[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4989[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4989 -> 2694[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4990[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4990[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4990 -> 2695[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4991[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4991[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4991 -> 2696[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4992[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4992[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4992 -> 2697[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4993[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4993[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4993 -> 2698[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4994[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4994[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4994 -> 2699[label="",style="solid", color="blue", weight=3]; 27.70/11.35 4995[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4995[label="",style="solid", color="blue", weight=9]; 27.70/11.35 4995 -> 2700[label="",style="solid", color="blue", weight=3]; 27.70/11.35 2561 -> 513[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2561[label="xwv28001 == xwv29001 && xwv28002 <= xwv29002",fontsize=16,color="magenta"];2561 -> 2701[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2561 -> 2702[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2562[label="xwv131",fontsize=16,color="green",shape="box"];2563[label="True",fontsize=16,color="green",shape="box"];2564[label="xwv28000",fontsize=16,color="green",shape="box"];2565[label="xwv29000",fontsize=16,color="green",shape="box"];2566[label="True",fontsize=16,color="green",shape="box"];2567[label="False",fontsize=16,color="green",shape="box"];2568 -> 2234[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2568[label="compare (xwv28000 * xwv29001) (xwv29000 * xwv28001)",fontsize=16,color="magenta"];2568 -> 2703[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2568 -> 2704[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2569 -> 1190[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2569[label="compare (xwv28000 * xwv29001) (xwv29000 * xwv28001)",fontsize=16,color="magenta"];2569 -> 2705[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2569 -> 2706[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2570[label="xwv28000",fontsize=16,color="green",shape="box"];2571[label="xwv29000",fontsize=16,color="green",shape="box"];2572[label="xwv28000",fontsize=16,color="green",shape="box"];2573[label="xwv29000",fontsize=16,color="green",shape="box"];2574[label="xwv28000",fontsize=16,color="green",shape="box"];2575[label="xwv29000",fontsize=16,color="green",shape="box"];2576[label="xwv28000",fontsize=16,color="green",shape="box"];2577[label="xwv29000",fontsize=16,color="green",shape="box"];2578[label="xwv28000",fontsize=16,color="green",shape="box"];2579[label="xwv29000",fontsize=16,color="green",shape="box"];2580[label="xwv28000",fontsize=16,color="green",shape="box"];2581[label="xwv29000",fontsize=16,color="green",shape="box"];2582[label="xwv28000",fontsize=16,color="green",shape="box"];2583[label="xwv29000",fontsize=16,color="green",shape="box"];2584[label="xwv28000",fontsize=16,color="green",shape="box"];2585[label="xwv29000",fontsize=16,color="green",shape="box"];2586[label="xwv28000",fontsize=16,color="green",shape="box"];2587[label="xwv29000",fontsize=16,color="green",shape="box"];2588[label="xwv28000",fontsize=16,color="green",shape="box"];2589[label="xwv29000",fontsize=16,color="green",shape="box"];2590[label="xwv28000",fontsize=16,color="green",shape="box"];2591[label="xwv29000",fontsize=16,color="green",shape="box"];2592[label="xwv28000",fontsize=16,color="green",shape="box"];2593[label="xwv29000",fontsize=16,color="green",shape="box"];2594[label="xwv28000",fontsize=16,color="green",shape="box"];2595[label="xwv29000",fontsize=16,color="green",shape="box"];2596[label="xwv28000",fontsize=16,color="green",shape="box"];2597[label="xwv29000",fontsize=16,color="green",shape="box"];2598 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2598[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2598 -> 2707[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2598 -> 2708[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2599 -> 175[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2599[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2599 -> 2709[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2599 -> 2710[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2600 -> 178[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2600[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2600 -> 2711[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2600 -> 2712[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2601 -> 171[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2601[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2601 -> 2713[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2601 -> 2714[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2602 -> 173[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2602[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2602 -> 2715[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2602 -> 2716[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2603 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2603[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2603 -> 2717[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2603 -> 2718[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2604 -> 179[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2604[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2604 -> 2719[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2604 -> 2720[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2605 -> 172[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2605[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2605 -> 2721[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2605 -> 2722[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2606 -> 181[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2606[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2606 -> 2723[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2606 -> 2724[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2607 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2607[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2607 -> 2725[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2607 -> 2726[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2608 -> 169[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2608[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2608 -> 2727[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2608 -> 2728[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2609 -> 174[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2609[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2609 -> 2729[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2609 -> 2730[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2610 -> 170[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2610[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2610 -> 2731[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2610 -> 2732[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2611 -> 177[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2611[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2611 -> 2733[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2611 -> 2734[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2612 -> 2126[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2612[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2612 -> 2735[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2612 -> 2736[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2613 -> 2127[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2613[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2613 -> 2737[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2613 -> 2738[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2614 -> 2128[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2614[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2614 -> 2739[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2614 -> 2740[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2615 -> 2129[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2615[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2615 -> 2741[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2615 -> 2742[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2616 -> 2130[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2616[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2616 -> 2743[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2616 -> 2744[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2617 -> 2131[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2617[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2617 -> 2745[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2617 -> 2746[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2618 -> 2132[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2618[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2618 -> 2747[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2618 -> 2748[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2619 -> 2133[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2619[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2619 -> 2749[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2619 -> 2750[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2620 -> 2134[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2620[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2620 -> 2751[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2620 -> 2752[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2621 -> 2135[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2621[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2621 -> 2753[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2621 -> 2754[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2622 -> 2136[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2622[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2622 -> 2755[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2622 -> 2756[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2623 -> 2137[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2623[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2623 -> 2757[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2623 -> 2758[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2624 -> 2138[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2624[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2624 -> 2759[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2624 -> 2760[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2625 -> 2139[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2625[label="xwv28001 <= xwv29001",fontsize=16,color="magenta"];2625 -> 2761[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2625 -> 2762[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2626 -> 2145[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2626[label="primCmpNat xwv28000 xwv29000",fontsize=16,color="magenta"];2626 -> 2763[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2626 -> 2764[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2627[label="primCmpDouble (Double xwv28000 (Pos xwv280010)) (Double xwv29000 xwv29001)",fontsize=16,color="burlywood",shape="box"];4996[label="xwv29001/Pos xwv290010",fontsize=10,color="white",style="solid",shape="box"];2627 -> 4996[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4996 -> 2765[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4997[label="xwv29001/Neg xwv290010",fontsize=10,color="white",style="solid",shape="box"];2627 -> 4997[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4997 -> 2766[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2628[label="primCmpDouble (Double xwv28000 (Neg xwv280010)) (Double xwv29000 xwv29001)",fontsize=16,color="burlywood",shape="box"];4998[label="xwv29001/Pos xwv290010",fontsize=10,color="white",style="solid",shape="box"];2628 -> 4998[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4998 -> 2767[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4999[label="xwv29001/Neg xwv290010",fontsize=10,color="white",style="solid",shape="box"];2628 -> 4999[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 4999 -> 2768[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2630 -> 2240[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2630[label="compare xwv28001 xwv29001",fontsize=16,color="magenta"];2630 -> 2769[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2630 -> 2770[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2629[label="primCompAux xwv28000 xwv29000 xwv141",fontsize=16,color="black",shape="triangle"];2629 -> 2771[label="",style="solid", color="black", weight=3]; 27.70/11.35 2631[label="primCmpFloat (Float xwv28000 (Pos xwv280010)) (Float xwv29000 xwv29001)",fontsize=16,color="burlywood",shape="box"];5000[label="xwv29001/Pos xwv290010",fontsize=10,color="white",style="solid",shape="box"];2631 -> 5000[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5000 -> 2789[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5001[label="xwv29001/Neg xwv290010",fontsize=10,color="white",style="solid",shape="box"];2631 -> 5001[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5001 -> 2790[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2632[label="primCmpFloat (Float xwv28000 (Neg xwv280010)) (Float xwv29000 xwv29001)",fontsize=16,color="burlywood",shape="box"];5002[label="xwv29001/Pos xwv290010",fontsize=10,color="white",style="solid",shape="box"];2632 -> 5002[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5002 -> 2791[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5003[label="xwv29001/Neg xwv290010",fontsize=10,color="white",style="solid",shape="box"];2632 -> 5003[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5003 -> 2792[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 3741 -> 2056[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3741[label="primPlusNat xwv2500 xwv2510",fontsize=16,color="magenta"];3741 -> 3770[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3741 -> 3771[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3742[label="primMinusNat (Succ xwv25000) xwv2510",fontsize=16,color="burlywood",shape="box"];5004[label="xwv2510/Succ xwv25100",fontsize=10,color="white",style="solid",shape="box"];3742 -> 5004[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5004 -> 3772[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5005[label="xwv2510/Zero",fontsize=10,color="white",style="solid",shape="box"];3742 -> 5005[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5005 -> 3773[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 3743[label="primMinusNat Zero xwv2510",fontsize=16,color="burlywood",shape="box"];5006[label="xwv2510/Succ xwv25100",fontsize=10,color="white",style="solid",shape="box"];3743 -> 5006[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5006 -> 3774[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5007[label="xwv2510/Zero",fontsize=10,color="white",style="solid",shape="box"];3743 -> 5007[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5007 -> 3775[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 3744[label="xwv2520",fontsize=16,color="green",shape="box"];3745[label="xwv2500",fontsize=16,color="green",shape="box"];3746 -> 2056[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3746[label="primPlusNat xwv2500 xwv2520",fontsize=16,color="magenta"];3746 -> 3776[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3746 -> 3777[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1938[label="primCmpNat (Succ xwv2800) xwv290",fontsize=16,color="burlywood",shape="triangle"];5008[label="xwv290/Succ xwv2900",fontsize=10,color="white",style="solid",shape="box"];1938 -> 5008[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5008 -> 2076[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5009[label="xwv290/Zero",fontsize=10,color="white",style="solid",shape="box"];1938 -> 5009[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5009 -> 2077[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1939[label="GT",fontsize=16,color="green",shape="box"];1940[label="primCmpInt (Pos Zero) (Pos (Succ xwv2900))",fontsize=16,color="black",shape="box"];1940 -> 2078[label="",style="solid", color="black", weight=3]; 27.70/11.35 1941[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1941 -> 2079[label="",style="solid", color="black", weight=3]; 27.70/11.35 1942[label="primCmpInt (Pos Zero) (Neg (Succ xwv2900))",fontsize=16,color="black",shape="box"];1942 -> 2080[label="",style="solid", color="black", weight=3]; 27.70/11.35 1943[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1943 -> 2081[label="",style="solid", color="black", weight=3]; 27.70/11.35 1944[label="LT",fontsize=16,color="green",shape="box"];1945[label="primCmpNat xwv290 (Succ xwv2800)",fontsize=16,color="burlywood",shape="triangle"];5010[label="xwv290/Succ xwv2900",fontsize=10,color="white",style="solid",shape="box"];1945 -> 5010[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5010 -> 2082[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5011[label="xwv290/Zero",fontsize=10,color="white",style="solid",shape="box"];1945 -> 5011[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5011 -> 2083[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1946[label="primCmpInt (Neg Zero) (Pos (Succ xwv2900))",fontsize=16,color="black",shape="box"];1946 -> 2084[label="",style="solid", color="black", weight=3]; 27.70/11.35 1947[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1947 -> 2085[label="",style="solid", color="black", weight=3]; 27.70/11.35 1948[label="primCmpInt (Neg Zero) (Neg (Succ xwv2900))",fontsize=16,color="black",shape="box"];1948 -> 2086[label="",style="solid", color="black", weight=3]; 27.70/11.35 1949[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1949 -> 2087[label="",style="solid", color="black", weight=3]; 27.70/11.35 3747[label="FiniteMap.mkBalBranch6MkBalBranch2 xwv340 xwv341 xwv344 xwv246 xwv340 xwv341 xwv246 xwv344 True",fontsize=16,color="black",shape="box"];3747 -> 3778[label="",style="solid", color="black", weight=3]; 27.70/11.35 3748[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv340 xwv341 xwv344 FiniteMap.EmptyFM FiniteMap.EmptyFM xwv344 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3748 -> 3779[label="",style="solid", color="black", weight=3]; 27.70/11.35 3749[label="FiniteMap.mkBalBranch6MkBalBranch1 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) xwv344 (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464)",fontsize=16,color="black",shape="box"];3749 -> 3780[label="",style="solid", color="black", weight=3]; 27.70/11.35 3763 -> 1254[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3763[label="FiniteMap.sizeFM xwv3443 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3444",fontsize=16,color="magenta"];3763 -> 3781[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3763 -> 3782[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3762[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv246 xwv246 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 xwv258",fontsize=16,color="burlywood",shape="triangle"];5012[label="xwv258/False",fontsize=10,color="white",style="solid",shape="box"];3762 -> 5012[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5012 -> 3783[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5013[label="xwv258/True",fontsize=10,color="white",style="solid",shape="box"];3762 -> 5013[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5013 -> 3784[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 4446[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xwv366 xwv364 xwv367",fontsize=16,color="black",shape="box"];4446 -> 4448[label="",style="solid", color="black", weight=3]; 27.70/11.35 4445[label="primPlusInt xwv368 (FiniteMap.mkBranchRight_size xwv366 xwv364 xwv367)",fontsize=16,color="burlywood",shape="triangle"];5014[label="xwv368/Pos xwv3680",fontsize=10,color="white",style="solid",shape="box"];4445 -> 5014[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5014 -> 4449[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5015[label="xwv368/Neg xwv3680",fontsize=10,color="white",style="solid",shape="box"];4445 -> 5015[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5015 -> 4450[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1540[label="primMulNat (Succ xwv40100) xwv30000",fontsize=16,color="burlywood",shape="box"];5016[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1540 -> 5016[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5016 -> 1735[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5017[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1540 -> 5017[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5017 -> 1736[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1541[label="primMulNat Zero xwv30000",fontsize=16,color="burlywood",shape="box"];5018[label="xwv30000/Succ xwv300000",fontsize=10,color="white",style="solid",shape="box"];1541 -> 5018[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5018 -> 1737[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5019[label="xwv30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1541 -> 5019[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5019 -> 1738[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 1542[label="xwv30000",fontsize=16,color="green",shape="box"];1543[label="xwv4010",fontsize=16,color="green",shape="box"];1544[label="xwv4010",fontsize=16,color="green",shape="box"];1545[label="xwv30000",fontsize=16,color="green",shape="box"];1836[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"];1836 -> 1961[label="",style="solid", color="black", weight=3]; 27.70/11.35 3553[label="FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334",fontsize=16,color="green",shape="box"];3554[label="FiniteMap.glueBal2Mid_elt2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];3554 -> 3581[label="",style="solid", color="black", weight=3]; 27.70/11.35 3555[label="FiniteMap.deleteMin (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="burlywood",shape="triangle"];5020[label="xwv343/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3555 -> 5020[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5020 -> 3582[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5021[label="xwv343/FiniteMap.Branch xwv3430 xwv3431 xwv3432 xwv3433 xwv3434",fontsize=10,color="white",style="solid",shape="box"];3555 -> 5021[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5021 -> 3583[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 3556[label="FiniteMap.glueBal2Mid_key2 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];3556 -> 3584[label="",style="solid", color="black", weight=3]; 27.70/11.35 2633[label="LT",fontsize=16,color="green",shape="box"];2634[label="compare xwv28000 xwv29000",fontsize=16,color="black",shape="triangle"];2634 -> 2793[label="",style="solid", color="black", weight=3]; 27.70/11.35 2635[label="LT",fontsize=16,color="green",shape="box"];2636[label="compare xwv28000 xwv29000",fontsize=16,color="black",shape="triangle"];2636 -> 2794[label="",style="solid", color="black", weight=3]; 27.70/11.35 2637[label="LT",fontsize=16,color="green",shape="box"];2638[label="compare xwv28000 xwv29000",fontsize=16,color="black",shape="triangle"];2638 -> 2795[label="",style="solid", color="black", weight=3]; 27.70/11.35 2639[label="LT",fontsize=16,color="green",shape="box"];2640[label="compare xwv28000 xwv29000",fontsize=16,color="black",shape="triangle"];2640 -> 2796[label="",style="solid", color="black", weight=3]; 27.70/11.35 2641[label="LT",fontsize=16,color="green",shape="box"];2642 -> 2234[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2642[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2642 -> 2797[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2642 -> 2798[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2643[label="LT",fontsize=16,color="green",shape="box"];2644[label="compare xwv28000 xwv29000",fontsize=16,color="black",shape="triangle"];2644 -> 2799[label="",style="solid", color="black", weight=3]; 27.70/11.35 2645[label="LT",fontsize=16,color="green",shape="box"];2646 -> 2235[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2646[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2646 -> 2800[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2646 -> 2801[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2647[label="LT",fontsize=16,color="green",shape="box"];2648[label="compare xwv28000 xwv29000",fontsize=16,color="black",shape="triangle"];2648 -> 2802[label="",style="solid", color="black", weight=3]; 27.70/11.35 2649[label="LT",fontsize=16,color="green",shape="box"];2650 -> 2236[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2650[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2650 -> 2803[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2650 -> 2804[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2651[label="LT",fontsize=16,color="green",shape="box"];2652 -> 2238[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2652[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2652 -> 2805[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2652 -> 2806[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2653[label="LT",fontsize=16,color="green",shape="box"];2654 -> 2239[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2654[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2654 -> 2807[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2654 -> 2808[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2655[label="LT",fontsize=16,color="green",shape="box"];2656 -> 2240[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2656[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2656 -> 2809[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2656 -> 2810[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2657[label="LT",fontsize=16,color="green",shape="box"];2658 -> 2241[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2658[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2658 -> 2811[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2658 -> 2812[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2659[label="xwv29000",fontsize=16,color="green",shape="box"];2660[label="xwv28000",fontsize=16,color="green",shape="box"];2661[label="xwv29000",fontsize=16,color="green",shape="box"];2662[label="xwv28000",fontsize=16,color="green",shape="box"];2663[label="xwv29000",fontsize=16,color="green",shape="box"];2664[label="xwv28000",fontsize=16,color="green",shape="box"];2665[label="xwv29000",fontsize=16,color="green",shape="box"];2666[label="xwv28000",fontsize=16,color="green",shape="box"];2667[label="xwv29000",fontsize=16,color="green",shape="box"];2668[label="xwv28000",fontsize=16,color="green",shape="box"];2669[label="xwv29000",fontsize=16,color="green",shape="box"];2670[label="xwv28000",fontsize=16,color="green",shape="box"];2671[label="xwv29000",fontsize=16,color="green",shape="box"];2672[label="xwv28000",fontsize=16,color="green",shape="box"];2673[label="xwv29000",fontsize=16,color="green",shape="box"];2674[label="xwv28000",fontsize=16,color="green",shape="box"];2675[label="xwv29000",fontsize=16,color="green",shape="box"];2676[label="xwv28000",fontsize=16,color="green",shape="box"];2677[label="xwv29000",fontsize=16,color="green",shape="box"];2678[label="xwv28000",fontsize=16,color="green",shape="box"];2679[label="xwv29000",fontsize=16,color="green",shape="box"];2680[label="xwv28000",fontsize=16,color="green",shape="box"];2681[label="xwv29000",fontsize=16,color="green",shape="box"];2682[label="xwv28000",fontsize=16,color="green",shape="box"];2683[label="xwv29000",fontsize=16,color="green",shape="box"];2684[label="xwv28000",fontsize=16,color="green",shape="box"];2685[label="xwv29000",fontsize=16,color="green",shape="box"];2686[label="xwv28000",fontsize=16,color="green",shape="box"];2687 -> 2410[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2687[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2687 -> 2813[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2687 -> 2814[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2688 -> 2411[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2688[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2688 -> 2815[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2688 -> 2816[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2689 -> 2412[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2689[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2689 -> 2817[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2689 -> 2818[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2690 -> 2413[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2690[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2690 -> 2819[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2690 -> 2820[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2691 -> 2414[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2691[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2691 -> 2821[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2691 -> 2822[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2692 -> 2415[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2692[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2692 -> 2823[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2692 -> 2824[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2693 -> 2416[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2693[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2693 -> 2825[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2693 -> 2826[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2694 -> 2417[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2694[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2694 -> 2827[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2694 -> 2828[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2695 -> 2418[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2695[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2695 -> 2829[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2695 -> 2830[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2696 -> 1254[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2696[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2696 -> 2831[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2696 -> 2832[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2697 -> 2420[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2697[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2697 -> 2833[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2697 -> 2834[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2698 -> 2421[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2698[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2698 -> 2835[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2698 -> 2836[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2699 -> 2422[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2699[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2699 -> 2837[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2699 -> 2838[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2700 -> 2423[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2700[label="xwv28001 < xwv29001",fontsize=16,color="magenta"];2700 -> 2839[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2700 -> 2840[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2701[label="xwv28001 == xwv29001",fontsize=16,color="blue",shape="box"];5022[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 5022[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5022 -> 2841[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5023[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 5023[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5023 -> 2842[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5024[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 5024[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5024 -> 2843[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5025[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 5025[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5025 -> 2844[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5026[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 5026[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5026 -> 2845[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5027[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 5027[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5027 -> 2846[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5028[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 5028[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5028 -> 2847[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5029[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 5029[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5029 -> 2848[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5030[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 5030[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5030 -> 2849[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5031[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 5031[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5031 -> 2850[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5032[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 5032[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5032 -> 2851[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5033[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 5033[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5033 -> 2852[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5034[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 5034[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5034 -> 2853[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5035[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2701 -> 5035[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5035 -> 2854[label="",style="solid", color="blue", weight=3]; 27.70/11.35 2702[label="xwv28002 <= xwv29002",fontsize=16,color="blue",shape="box"];5036[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 5036[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5036 -> 2855[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5037[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 5037[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5037 -> 2856[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5038[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 5038[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5038 -> 2857[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5039[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 5039[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5039 -> 2858[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5040[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 5040[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5040 -> 2859[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5041[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 5041[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5041 -> 2860[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5042[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 5042[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5042 -> 2861[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5043[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 5043[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5043 -> 2862[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5044[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 5044[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5044 -> 2863[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5045[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 5045[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5045 -> 2864[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5046[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 5046[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5046 -> 2865[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5047[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 5047[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5047 -> 2866[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5048[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 5048[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5048 -> 2867[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5049[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2702 -> 5049[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5049 -> 2868[label="",style="solid", color="blue", weight=3]; 27.70/11.35 2703[label="xwv28000 * xwv29001",fontsize=16,color="burlywood",shape="triangle"];5050[label="xwv28000/Integer xwv280000",fontsize=10,color="white",style="solid",shape="box"];2703 -> 5050[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5050 -> 2869[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2704 -> 2703[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2704[label="xwv29000 * xwv28001",fontsize=16,color="magenta"];2704 -> 2870[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2704 -> 2871[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2705 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2705[label="xwv28000 * xwv29001",fontsize=16,color="magenta"];2705 -> 2872[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2705 -> 2873[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2706 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2706[label="xwv29000 * xwv28001",fontsize=16,color="magenta"];2706 -> 2874[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2706 -> 2875[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2707[label="xwv29000",fontsize=16,color="green",shape="box"];2708[label="xwv28000",fontsize=16,color="green",shape="box"];2709[label="xwv29000",fontsize=16,color="green",shape="box"];2710[label="xwv28000",fontsize=16,color="green",shape="box"];2711[label="xwv29000",fontsize=16,color="green",shape="box"];2712[label="xwv28000",fontsize=16,color="green",shape="box"];2713[label="xwv29000",fontsize=16,color="green",shape="box"];2714[label="xwv28000",fontsize=16,color="green",shape="box"];2715[label="xwv29000",fontsize=16,color="green",shape="box"];2716[label="xwv28000",fontsize=16,color="green",shape="box"];2717[label="xwv29000",fontsize=16,color="green",shape="box"];2718[label="xwv28000",fontsize=16,color="green",shape="box"];2719[label="xwv29000",fontsize=16,color="green",shape="box"];2720[label="xwv28000",fontsize=16,color="green",shape="box"];2721[label="xwv29000",fontsize=16,color="green",shape="box"];2722[label="xwv28000",fontsize=16,color="green",shape="box"];2723[label="xwv29000",fontsize=16,color="green",shape="box"];2724[label="xwv28000",fontsize=16,color="green",shape="box"];2725[label="xwv29000",fontsize=16,color="green",shape="box"];2726[label="xwv28000",fontsize=16,color="green",shape="box"];2727[label="xwv29000",fontsize=16,color="green",shape="box"];2728[label="xwv28000",fontsize=16,color="green",shape="box"];2729[label="xwv29000",fontsize=16,color="green",shape="box"];2730[label="xwv28000",fontsize=16,color="green",shape="box"];2731[label="xwv29000",fontsize=16,color="green",shape="box"];2732[label="xwv28000",fontsize=16,color="green",shape="box"];2733[label="xwv29000",fontsize=16,color="green",shape="box"];2734[label="xwv28000",fontsize=16,color="green",shape="box"];2735[label="xwv28001",fontsize=16,color="green",shape="box"];2736[label="xwv29001",fontsize=16,color="green",shape="box"];2737[label="xwv28001",fontsize=16,color="green",shape="box"];2738[label="xwv29001",fontsize=16,color="green",shape="box"];2739[label="xwv28001",fontsize=16,color="green",shape="box"];2740[label="xwv29001",fontsize=16,color="green",shape="box"];2741[label="xwv28001",fontsize=16,color="green",shape="box"];2742[label="xwv29001",fontsize=16,color="green",shape="box"];2743[label="xwv28001",fontsize=16,color="green",shape="box"];2744[label="xwv29001",fontsize=16,color="green",shape="box"];2745[label="xwv28001",fontsize=16,color="green",shape="box"];2746[label="xwv29001",fontsize=16,color="green",shape="box"];2747[label="xwv28001",fontsize=16,color="green",shape="box"];2748[label="xwv29001",fontsize=16,color="green",shape="box"];2749[label="xwv28001",fontsize=16,color="green",shape="box"];2750[label="xwv29001",fontsize=16,color="green",shape="box"];2751[label="xwv28001",fontsize=16,color="green",shape="box"];2752[label="xwv29001",fontsize=16,color="green",shape="box"];2753[label="xwv28001",fontsize=16,color="green",shape="box"];2754[label="xwv29001",fontsize=16,color="green",shape="box"];2755[label="xwv28001",fontsize=16,color="green",shape="box"];2756[label="xwv29001",fontsize=16,color="green",shape="box"];2757[label="xwv28001",fontsize=16,color="green",shape="box"];2758[label="xwv29001",fontsize=16,color="green",shape="box"];2759[label="xwv28001",fontsize=16,color="green",shape="box"];2760[label="xwv29001",fontsize=16,color="green",shape="box"];2761[label="xwv28001",fontsize=16,color="green",shape="box"];2762[label="xwv29001",fontsize=16,color="green",shape="box"];2763[label="xwv29000",fontsize=16,color="green",shape="box"];2764[label="xwv28000",fontsize=16,color="green",shape="box"];2145[label="primCmpNat xwv2800 xwv2900",fontsize=16,color="burlywood",shape="triangle"];5051[label="xwv2800/Succ xwv28000",fontsize=10,color="white",style="solid",shape="box"];2145 -> 5051[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5051 -> 2278[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5052[label="xwv2800/Zero",fontsize=10,color="white",style="solid",shape="box"];2145 -> 5052[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5052 -> 2279[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2765[label="primCmpDouble (Double xwv28000 (Pos xwv280010)) (Double xwv29000 (Pos xwv290010))",fontsize=16,color="black",shape="box"];2765 -> 2876[label="",style="solid", color="black", weight=3]; 27.70/11.35 2766[label="primCmpDouble (Double xwv28000 (Pos xwv280010)) (Double xwv29000 (Neg xwv290010))",fontsize=16,color="black",shape="box"];2766 -> 2877[label="",style="solid", color="black", weight=3]; 27.70/11.35 2767[label="primCmpDouble (Double xwv28000 (Neg xwv280010)) (Double xwv29000 (Pos xwv290010))",fontsize=16,color="black",shape="box"];2767 -> 2878[label="",style="solid", color="black", weight=3]; 27.70/11.35 2768[label="primCmpDouble (Double xwv28000 (Neg xwv280010)) (Double xwv29000 (Neg xwv290010))",fontsize=16,color="black",shape="box"];2768 -> 2879[label="",style="solid", color="black", weight=3]; 27.70/11.35 2769[label="xwv28001",fontsize=16,color="green",shape="box"];2770[label="xwv29001",fontsize=16,color="green",shape="box"];2771 -> 2880[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2771[label="primCompAux0 xwv141 (compare xwv28000 xwv29000)",fontsize=16,color="magenta"];2771 -> 2881[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2771 -> 2882[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2789[label="primCmpFloat (Float xwv28000 (Pos xwv280010)) (Float xwv29000 (Pos xwv290010))",fontsize=16,color="black",shape="box"];2789 -> 2883[label="",style="solid", color="black", weight=3]; 27.70/11.35 2790[label="primCmpFloat (Float xwv28000 (Pos xwv280010)) (Float xwv29000 (Neg xwv290010))",fontsize=16,color="black",shape="box"];2790 -> 2884[label="",style="solid", color="black", weight=3]; 27.70/11.35 2791[label="primCmpFloat (Float xwv28000 (Neg xwv280010)) (Float xwv29000 (Pos xwv290010))",fontsize=16,color="black",shape="box"];2791 -> 2885[label="",style="solid", color="black", weight=3]; 27.70/11.35 2792[label="primCmpFloat (Float xwv28000 (Neg xwv280010)) (Float xwv29000 (Neg xwv290010))",fontsize=16,color="black",shape="box"];2792 -> 2886[label="",style="solid", color="black", weight=3]; 27.70/11.35 3770[label="xwv2510",fontsize=16,color="green",shape="box"];3771[label="xwv2500",fontsize=16,color="green",shape="box"];2056[label="primPlusNat xwv3320 xwv910",fontsize=16,color="burlywood",shape="triangle"];5053[label="xwv3320/Succ xwv33200",fontsize=10,color="white",style="solid",shape="box"];2056 -> 5053[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5053 -> 2094[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5054[label="xwv3320/Zero",fontsize=10,color="white",style="solid",shape="box"];2056 -> 5054[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5054 -> 2095[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 3772[label="primMinusNat (Succ xwv25000) (Succ xwv25100)",fontsize=16,color="black",shape="box"];3772 -> 3797[label="",style="solid", color="black", weight=3]; 27.70/11.35 3773[label="primMinusNat (Succ xwv25000) Zero",fontsize=16,color="black",shape="box"];3773 -> 3798[label="",style="solid", color="black", weight=3]; 27.70/11.35 3774[label="primMinusNat Zero (Succ xwv25100)",fontsize=16,color="black",shape="box"];3774 -> 3799[label="",style="solid", color="black", weight=3]; 27.70/11.35 3775[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];3775 -> 3800[label="",style="solid", color="black", weight=3]; 27.70/11.35 3776[label="xwv2520",fontsize=16,color="green",shape="box"];3777[label="xwv2500",fontsize=16,color="green",shape="box"];2076[label="primCmpNat (Succ xwv2800) (Succ xwv2900)",fontsize=16,color="black",shape="box"];2076 -> 2145[label="",style="solid", color="black", weight=3]; 27.70/11.35 2077[label="primCmpNat (Succ xwv2800) Zero",fontsize=16,color="black",shape="box"];2077 -> 2146[label="",style="solid", color="black", weight=3]; 27.70/11.35 2078 -> 1945[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2078[label="primCmpNat Zero (Succ xwv2900)",fontsize=16,color="magenta"];2078 -> 2147[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2078 -> 2148[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2079[label="EQ",fontsize=16,color="green",shape="box"];2080[label="GT",fontsize=16,color="green",shape="box"];2081[label="EQ",fontsize=16,color="green",shape="box"];2082[label="primCmpNat (Succ xwv2900) (Succ xwv2800)",fontsize=16,color="black",shape="box"];2082 -> 2149[label="",style="solid", color="black", weight=3]; 27.70/11.35 2083[label="primCmpNat Zero (Succ xwv2800)",fontsize=16,color="black",shape="box"];2083 -> 2150[label="",style="solid", color="black", weight=3]; 27.70/11.35 2084[label="LT",fontsize=16,color="green",shape="box"];2085[label="EQ",fontsize=16,color="green",shape="box"];2086 -> 1938[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2086[label="primCmpNat (Succ xwv2900) Zero",fontsize=16,color="magenta"];2086 -> 2151[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2086 -> 2152[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2087[label="EQ",fontsize=16,color="green",shape="box"];3778 -> 4339[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3778[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) xwv340 xwv341 xwv246 xwv344",fontsize=16,color="magenta"];3778 -> 4345[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3778 -> 4346[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3778 -> 4347[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3778 -> 4348[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3778 -> 4349[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3779[label="error []",fontsize=16,color="red",shape="box"];3780[label="FiniteMap.mkBalBranch6MkBalBranch12 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) xwv344 (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464)",fontsize=16,color="black",shape="box"];3780 -> 3802[label="",style="solid", color="black", weight=3]; 27.70/11.35 3781 -> 1208[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3781[label="FiniteMap.sizeFM xwv3443",fontsize=16,color="magenta"];3781 -> 3803[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3782 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3782[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv3444",fontsize=16,color="magenta"];3782 -> 3804[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3782 -> 3805[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3783[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv246 xwv246 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 False",fontsize=16,color="black",shape="box"];3783 -> 3806[label="",style="solid", color="black", weight=3]; 27.70/11.35 3784[label="FiniteMap.mkBalBranch6MkBalBranch01 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv246 xwv246 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 True",fontsize=16,color="black",shape="box"];3784 -> 3807[label="",style="solid", color="black", weight=3]; 27.70/11.35 4448 -> 3687[label="",style="dashed", color="red", weight=0]; 27.70/11.35 4448[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xwv366 xwv364 xwv367)",fontsize=16,color="magenta"];4448 -> 4451[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 4448 -> 4452[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 4449[label="primPlusInt (Pos xwv3680) (FiniteMap.mkBranchRight_size xwv366 xwv364 xwv367)",fontsize=16,color="black",shape="box"];4449 -> 4453[label="",style="solid", color="black", weight=3]; 27.70/11.35 4450[label="primPlusInt (Neg xwv3680) (FiniteMap.mkBranchRight_size xwv366 xwv364 xwv367)",fontsize=16,color="black",shape="box"];4450 -> 4454[label="",style="solid", color="black", weight=3]; 27.70/11.35 1735[label="primMulNat (Succ xwv40100) (Succ xwv300000)",fontsize=16,color="black",shape="box"];1735 -> 1866[label="",style="solid", color="black", weight=3]; 27.70/11.35 1736[label="primMulNat (Succ xwv40100) Zero",fontsize=16,color="black",shape="box"];1736 -> 1867[label="",style="solid", color="black", weight=3]; 27.70/11.35 1737[label="primMulNat Zero (Succ xwv300000)",fontsize=16,color="black",shape="box"];1737 -> 1868[label="",style="solid", color="black", weight=3]; 27.70/11.35 1738[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1738 -> 1869[label="",style="solid", color="black", weight=3]; 27.70/11.35 1961 -> 3516[label="",style="dashed", color="red", weight=0]; 27.70/11.35 1961[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"];1961 -> 3557[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1961 -> 3558[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1961 -> 3559[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 1961 -> 3560[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3581[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"];3581 -> 3595[label="",style="solid", color="black", weight=3]; 27.70/11.35 3582[label="FiniteMap.deleteMin (FiniteMap.Branch xwv340 xwv341 xwv342 FiniteMap.EmptyFM xwv344)",fontsize=16,color="black",shape="box"];3582 -> 3596[label="",style="solid", color="black", weight=3]; 27.70/11.35 3583[label="FiniteMap.deleteMin (FiniteMap.Branch xwv340 xwv341 xwv342 (FiniteMap.Branch xwv3430 xwv3431 xwv3432 xwv3433 xwv3434) xwv344)",fontsize=16,color="black",shape="box"];3583 -> 3597[label="",style="solid", color="black", weight=3]; 27.70/11.35 3584[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"];3584 -> 3598[label="",style="solid", color="black", weight=3]; 27.70/11.35 2793[label="compare3 xwv28000 xwv29000",fontsize=16,color="black",shape="box"];2793 -> 2887[label="",style="solid", color="black", weight=3]; 27.70/11.35 2794[label="compare3 xwv28000 xwv29000",fontsize=16,color="black",shape="box"];2794 -> 2888[label="",style="solid", color="black", weight=3]; 27.70/11.35 2795[label="compare3 xwv28000 xwv29000",fontsize=16,color="black",shape="box"];2795 -> 2889[label="",style="solid", color="black", weight=3]; 27.70/11.35 2796[label="compare3 xwv28000 xwv29000",fontsize=16,color="black",shape="box"];2796 -> 2890[label="",style="solid", color="black", weight=3]; 27.70/11.35 2797[label="xwv28000",fontsize=16,color="green",shape="box"];2798[label="xwv29000",fontsize=16,color="green",shape="box"];2799[label="compare3 xwv28000 xwv29000",fontsize=16,color="black",shape="box"];2799 -> 2891[label="",style="solid", color="black", weight=3]; 27.70/11.35 2800[label="xwv28000",fontsize=16,color="green",shape="box"];2801[label="xwv29000",fontsize=16,color="green",shape="box"];2802[label="compare3 xwv28000 xwv29000",fontsize=16,color="black",shape="box"];2802 -> 2892[label="",style="solid", color="black", weight=3]; 27.70/11.35 2803[label="xwv28000",fontsize=16,color="green",shape="box"];2804[label="xwv29000",fontsize=16,color="green",shape="box"];2805[label="xwv28000",fontsize=16,color="green",shape="box"];2806[label="xwv29000",fontsize=16,color="green",shape="box"];2807[label="xwv28000",fontsize=16,color="green",shape="box"];2808[label="xwv29000",fontsize=16,color="green",shape="box"];2809[label="xwv28000",fontsize=16,color="green",shape="box"];2810[label="xwv29000",fontsize=16,color="green",shape="box"];2811[label="xwv28000",fontsize=16,color="green",shape="box"];2812[label="xwv29000",fontsize=16,color="green",shape="box"];2813[label="xwv28001",fontsize=16,color="green",shape="box"];2814[label="xwv29001",fontsize=16,color="green",shape="box"];2815[label="xwv28001",fontsize=16,color="green",shape="box"];2816[label="xwv29001",fontsize=16,color="green",shape="box"];2817[label="xwv28001",fontsize=16,color="green",shape="box"];2818[label="xwv29001",fontsize=16,color="green",shape="box"];2819[label="xwv28001",fontsize=16,color="green",shape="box"];2820[label="xwv29001",fontsize=16,color="green",shape="box"];2821[label="xwv28001",fontsize=16,color="green",shape="box"];2822[label="xwv29001",fontsize=16,color="green",shape="box"];2823[label="xwv28001",fontsize=16,color="green",shape="box"];2824[label="xwv29001",fontsize=16,color="green",shape="box"];2825[label="xwv28001",fontsize=16,color="green",shape="box"];2826[label="xwv29001",fontsize=16,color="green",shape="box"];2827[label="xwv28001",fontsize=16,color="green",shape="box"];2828[label="xwv29001",fontsize=16,color="green",shape="box"];2829[label="xwv28001",fontsize=16,color="green",shape="box"];2830[label="xwv29001",fontsize=16,color="green",shape="box"];2831[label="xwv28001",fontsize=16,color="green",shape="box"];2832[label="xwv29001",fontsize=16,color="green",shape="box"];2833[label="xwv28001",fontsize=16,color="green",shape="box"];2834[label="xwv29001",fontsize=16,color="green",shape="box"];2835[label="xwv28001",fontsize=16,color="green",shape="box"];2836[label="xwv29001",fontsize=16,color="green",shape="box"];2837[label="xwv28001",fontsize=16,color="green",shape="box"];2838[label="xwv29001",fontsize=16,color="green",shape="box"];2839[label="xwv28001",fontsize=16,color="green",shape="box"];2840[label="xwv29001",fontsize=16,color="green",shape="box"];2841 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2841[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2841 -> 2893[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2841 -> 2894[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2842 -> 175[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2842[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2842 -> 2895[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2842 -> 2896[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2843 -> 178[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2843[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2843 -> 2897[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2843 -> 2898[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2844 -> 171[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2844[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2844 -> 2899[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2844 -> 2900[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2845 -> 173[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2845[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2845 -> 2901[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2845 -> 2902[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2846 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2846[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2846 -> 2903[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2846 -> 2904[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2847 -> 179[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2847[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2847 -> 2905[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2847 -> 2906[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2848 -> 172[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2848[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2848 -> 2907[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2848 -> 2908[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2849 -> 181[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2849[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2849 -> 2909[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2849 -> 2910[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2850 -> 182[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2850[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2850 -> 2911[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2850 -> 2912[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2851 -> 169[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2851[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2851 -> 2913[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2851 -> 2914[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2852 -> 174[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2852[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2852 -> 2915[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2852 -> 2916[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2853 -> 170[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2853[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2853 -> 2917[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2853 -> 2918[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2854 -> 177[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2854[label="xwv28001 == xwv29001",fontsize=16,color="magenta"];2854 -> 2919[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2854 -> 2920[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2855 -> 2126[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2855[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2855 -> 2921[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2855 -> 2922[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2856 -> 2127[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2856[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2856 -> 2923[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2856 -> 2924[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2857 -> 2128[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2857[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2857 -> 2925[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2857 -> 2926[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2858 -> 2129[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2858[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2858 -> 2927[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2858 -> 2928[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2859 -> 2130[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2859[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2859 -> 2929[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2859 -> 2930[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2860 -> 2131[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2860[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2860 -> 2931[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2860 -> 2932[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2861 -> 2132[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2861[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2861 -> 2933[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2861 -> 2934[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2862 -> 2133[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2862[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2862 -> 2935[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2862 -> 2936[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2863 -> 2134[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2863[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2863 -> 2937[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2863 -> 2938[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2864 -> 2135[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2864[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2864 -> 2939[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2864 -> 2940[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2865 -> 2136[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2865[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2865 -> 2941[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2865 -> 2942[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2866 -> 2137[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2866[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2866 -> 2943[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2866 -> 2944[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2867 -> 2138[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2867[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2867 -> 2945[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2867 -> 2946[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2868 -> 2139[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2868[label="xwv28002 <= xwv29002",fontsize=16,color="magenta"];2868 -> 2947[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2868 -> 2948[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2869[label="Integer xwv280000 * xwv29001",fontsize=16,color="burlywood",shape="box"];5055[label="xwv29001/Integer xwv290010",fontsize=10,color="white",style="solid",shape="box"];2869 -> 5055[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5055 -> 2949[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2870[label="xwv28001",fontsize=16,color="green",shape="box"];2871[label="xwv29000",fontsize=16,color="green",shape="box"];2872[label="xwv28000",fontsize=16,color="green",shape="box"];2873[label="xwv29001",fontsize=16,color="green",shape="box"];2874[label="xwv29000",fontsize=16,color="green",shape="box"];2875[label="xwv28001",fontsize=16,color="green",shape="box"];2278[label="primCmpNat (Succ xwv28000) xwv2900",fontsize=16,color="burlywood",shape="box"];5056[label="xwv2900/Succ xwv29000",fontsize=10,color="white",style="solid",shape="box"];2278 -> 5056[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5056 -> 2516[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5057[label="xwv2900/Zero",fontsize=10,color="white",style="solid",shape="box"];2278 -> 5057[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5057 -> 2517[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2279[label="primCmpNat Zero xwv2900",fontsize=16,color="burlywood",shape="box"];5058[label="xwv2900/Succ xwv29000",fontsize=10,color="white",style="solid",shape="box"];2279 -> 5058[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5058 -> 2518[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5059[label="xwv2900/Zero",fontsize=10,color="white",style="solid",shape="box"];2279 -> 5059[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5059 -> 2519[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2876 -> 1190[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2876[label="compare (xwv28000 * Pos xwv290010) (Pos xwv280010 * xwv29000)",fontsize=16,color="magenta"];2876 -> 2950[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2876 -> 2951[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2877 -> 1190[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2877[label="compare (xwv28000 * Pos xwv290010) (Neg xwv280010 * xwv29000)",fontsize=16,color="magenta"];2877 -> 2952[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2877 -> 2953[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2878 -> 1190[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2878[label="compare (xwv28000 * Neg xwv290010) (Pos xwv280010 * xwv29000)",fontsize=16,color="magenta"];2878 -> 2954[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2878 -> 2955[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2879 -> 1190[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2879[label="compare (xwv28000 * Neg xwv290010) (Neg xwv280010 * xwv29000)",fontsize=16,color="magenta"];2879 -> 2956[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2879 -> 2957[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2881[label="compare xwv28000 xwv29000",fontsize=16,color="blue",shape="box"];5060[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2881 -> 5060[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5060 -> 2958[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5061[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2881 -> 5061[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5061 -> 2959[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5062[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2881 -> 5062[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5062 -> 2960[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5063[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2881 -> 5063[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5063 -> 2961[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5064[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2881 -> 5064[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5064 -> 2962[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5065[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2881 -> 5065[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5065 -> 2963[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5066[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2881 -> 5066[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5066 -> 2964[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5067[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2881 -> 5067[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5067 -> 2965[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5068[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2881 -> 5068[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5068 -> 2966[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5069[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2881 -> 5069[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5069 -> 2967[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5070[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2881 -> 5070[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5070 -> 2968[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5071[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2881 -> 5071[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5071 -> 2969[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5072[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2881 -> 5072[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5072 -> 2970[label="",style="solid", color="blue", weight=3]; 27.70/11.35 5073[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2881 -> 5073[label="",style="solid", color="blue", weight=9]; 27.70/11.35 5073 -> 2971[label="",style="solid", color="blue", weight=3]; 27.70/11.35 2882[label="xwv141",fontsize=16,color="green",shape="box"];2880[label="primCompAux0 xwv153 xwv154",fontsize=16,color="burlywood",shape="triangle"];5074[label="xwv154/LT",fontsize=10,color="white",style="solid",shape="box"];2880 -> 5074[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5074 -> 2972[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5075[label="xwv154/EQ",fontsize=10,color="white",style="solid",shape="box"];2880 -> 5075[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5075 -> 2973[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5076[label="xwv154/GT",fontsize=10,color="white",style="solid",shape="box"];2880 -> 5076[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5076 -> 2974[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2883 -> 1190[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2883[label="compare (xwv28000 * Pos xwv290010) (Pos xwv280010 * xwv29000)",fontsize=16,color="magenta"];2883 -> 2984[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2883 -> 2985[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2884 -> 1190[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2884[label="compare (xwv28000 * Pos xwv290010) (Neg xwv280010 * xwv29000)",fontsize=16,color="magenta"];2884 -> 2986[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2884 -> 2987[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2885 -> 1190[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2885[label="compare (xwv28000 * Neg xwv290010) (Pos xwv280010 * xwv29000)",fontsize=16,color="magenta"];2885 -> 2988[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2885 -> 2989[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2886 -> 1190[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2886[label="compare (xwv28000 * Neg xwv290010) (Neg xwv280010 * xwv29000)",fontsize=16,color="magenta"];2886 -> 2990[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2886 -> 2991[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2094[label="primPlusNat (Succ xwv33200) xwv910",fontsize=16,color="burlywood",shape="box"];5077[label="xwv910/Succ xwv9100",fontsize=10,color="white",style="solid",shape="box"];2094 -> 5077[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5077 -> 2161[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5078[label="xwv910/Zero",fontsize=10,color="white",style="solid",shape="box"];2094 -> 5078[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5078 -> 2162[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 2095[label="primPlusNat Zero xwv910",fontsize=16,color="burlywood",shape="box"];5079[label="xwv910/Succ xwv9100",fontsize=10,color="white",style="solid",shape="box"];2095 -> 5079[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5079 -> 2163[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 5080[label="xwv910/Zero",fontsize=10,color="white",style="solid",shape="box"];2095 -> 5080[label="",style="solid", color="burlywood", weight=9]; 27.70/11.35 5080 -> 2164[label="",style="solid", color="burlywood", weight=3]; 27.70/11.35 3797 -> 3724[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3797[label="primMinusNat xwv25000 xwv25100",fontsize=16,color="magenta"];3797 -> 3825[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3797 -> 3826[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3798[label="Pos (Succ xwv25000)",fontsize=16,color="green",shape="box"];3799[label="Neg (Succ xwv25100)",fontsize=16,color="green",shape="box"];3800[label="Pos Zero",fontsize=16,color="green",shape="box"];2146[label="GT",fontsize=16,color="green",shape="box"];2147[label="Zero",fontsize=16,color="green",shape="box"];2148[label="xwv2900",fontsize=16,color="green",shape="box"];2149 -> 2145[label="",style="dashed", color="red", weight=0]; 27.70/11.35 2149[label="primCmpNat xwv2900 xwv2800",fontsize=16,color="magenta"];2149 -> 2280[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2149 -> 2281[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 2150[label="LT",fontsize=16,color="green",shape="box"];2151[label="Zero",fontsize=16,color="green",shape="box"];2152[label="xwv2900",fontsize=16,color="green",shape="box"];4345[label="xwv246",fontsize=16,color="green",shape="box"];4346[label="xwv340",fontsize=16,color="green",shape="box"];4347[label="xwv341",fontsize=16,color="green",shape="box"];4348[label="Succ Zero",fontsize=16,color="green",shape="box"];4349[label="xwv344",fontsize=16,color="green",shape="box"];3802 -> 3827[label="",style="dashed", color="red", weight=0]; 27.70/11.35 3802[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) xwv344 xwv2460 xwv2461 xwv2462 xwv2463 xwv2464 (FiniteMap.sizeFM xwv2464 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv2463)",fontsize=16,color="magenta"];3802 -> 3828[label="",style="dashed", color="magenta", weight=3]; 27.70/11.35 3803[label="xwv3443",fontsize=16,color="green",shape="box"];3804[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3805 -> 1208[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3805[label="FiniteMap.sizeFM xwv3444",fontsize=16,color="magenta"];3805 -> 3829[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3806[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv246 xwv246 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 otherwise",fontsize=16,color="black",shape="box"];3806 -> 3830[label="",style="solid", color="black", weight=3]; 27.70/11.36 3807[label="FiniteMap.mkBalBranch6Single_L xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv246 xwv246 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444)",fontsize=16,color="black",shape="box"];3807 -> 3831[label="",style="solid", color="black", weight=3]; 27.70/11.36 4451[label="Succ Zero",fontsize=16,color="green",shape="box"];4452[label="FiniteMap.mkBranchLeft_size xwv366 xwv364 xwv367",fontsize=16,color="black",shape="box"];4452 -> 4455[label="",style="solid", color="black", weight=3]; 27.70/11.36 4453 -> 3687[label="",style="dashed", color="red", weight=0]; 27.70/11.36 4453[label="primPlusInt (Pos xwv3680) (FiniteMap.sizeFM xwv367)",fontsize=16,color="magenta"];4453 -> 4456[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4453 -> 4457[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4454 -> 3689[label="",style="dashed", color="red", weight=0]; 27.70/11.36 4454[label="primPlusInt (Neg xwv3680) (FiniteMap.sizeFM xwv367)",fontsize=16,color="magenta"];4454 -> 4458[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4454 -> 4459[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 1866 -> 1983[label="",style="dashed", color="red", weight=0]; 27.70/11.36 1866[label="primPlusNat (primMulNat xwv40100 (Succ xwv300000)) (Succ xwv300000)",fontsize=16,color="magenta"];1866 -> 1984[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 1867[label="Zero",fontsize=16,color="green",shape="box"];1868[label="Zero",fontsize=16,color="green",shape="box"];1869[label="Zero",fontsize=16,color="green",shape="box"];3557[label="FiniteMap.deleteMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334)",fontsize=16,color="burlywood",shape="triangle"];5081[label="xwv334/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5081[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5081 -> 3585[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5082[label="xwv334/FiniteMap.Branch xwv3340 xwv3341 xwv3342 xwv3343 xwv3344",fontsize=10,color="white",style="solid",shape="box"];3557 -> 5082[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5082 -> 3586[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 3558[label="FiniteMap.glueBal2Mid_elt1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];3558 -> 3587[label="",style="solid", color="black", weight=3]; 27.70/11.36 3559[label="FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344",fontsize=16,color="green",shape="box"];3560[label="FiniteMap.glueBal2Mid_key1 (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 xwv334) (FiniteMap.Branch xwv340 xwv341 xwv342 xwv343 xwv344)",fontsize=16,color="black",shape="box"];3560 -> 3588[label="",style="solid", color="black", weight=3]; 27.70/11.36 3595 -> 3855[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3595[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"];3595 -> 3856[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3595 -> 3857[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3595 -> 3858[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3595 -> 3859[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3595 -> 3860[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3595 -> 3861[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3595 -> 3862[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3595 -> 3863[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3595 -> 3864[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3595 -> 3865[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3595 -> 3866[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3595 -> 3867[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3595 -> 3868[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3595 -> 3869[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3595 -> 3870[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3596[label="xwv344",fontsize=16,color="green",shape="box"];3597 -> 3516[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3597[label="FiniteMap.mkBalBranch xwv340 xwv341 (FiniteMap.deleteMin (FiniteMap.Branch xwv3430 xwv3431 xwv3432 xwv3433 xwv3434)) xwv344",fontsize=16,color="magenta"];3597 -> 3611[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3598 -> 3958[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3598[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"];3598 -> 3959[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3598 -> 3960[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3598 -> 3961[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3598 -> 3962[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3598 -> 3963[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3598 -> 3964[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3598 -> 3965[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3598 -> 3966[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3598 -> 3967[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3598 -> 3968[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3598 -> 3969[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3598 -> 3970[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3598 -> 3971[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3598 -> 3972[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3598 -> 3973[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2887 -> 1985[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2887[label="compare2 xwv28000 xwv29000 (xwv28000 == xwv29000)",fontsize=16,color="magenta"];2887 -> 2992[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2887 -> 2993[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2887 -> 2994[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2888 -> 2995[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2888[label="compare2 xwv28000 xwv29000 (xwv28000 == xwv29000)",fontsize=16,color="magenta"];2888 -> 2996[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2889 -> 2997[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2889[label="compare2 xwv28000 xwv29000 (xwv28000 == xwv29000)",fontsize=16,color="magenta"];2889 -> 2998[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2890 -> 2999[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2890[label="compare2 xwv28000 xwv29000 (xwv28000 == xwv29000)",fontsize=16,color="magenta"];2890 -> 3000[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2891 -> 3001[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2891[label="compare2 xwv28000 xwv29000 (xwv28000 == xwv29000)",fontsize=16,color="magenta"];2891 -> 3002[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2892 -> 3003[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2892[label="compare2 xwv28000 xwv29000 (xwv28000 == xwv29000)",fontsize=16,color="magenta"];2892 -> 3004[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2893[label="xwv29001",fontsize=16,color="green",shape="box"];2894[label="xwv28001",fontsize=16,color="green",shape="box"];2895[label="xwv29001",fontsize=16,color="green",shape="box"];2896[label="xwv28001",fontsize=16,color="green",shape="box"];2897[label="xwv29001",fontsize=16,color="green",shape="box"];2898[label="xwv28001",fontsize=16,color="green",shape="box"];2899[label="xwv29001",fontsize=16,color="green",shape="box"];2900[label="xwv28001",fontsize=16,color="green",shape="box"];2901[label="xwv29001",fontsize=16,color="green",shape="box"];2902[label="xwv28001",fontsize=16,color="green",shape="box"];2903[label="xwv29001",fontsize=16,color="green",shape="box"];2904[label="xwv28001",fontsize=16,color="green",shape="box"];2905[label="xwv29001",fontsize=16,color="green",shape="box"];2906[label="xwv28001",fontsize=16,color="green",shape="box"];2907[label="xwv29001",fontsize=16,color="green",shape="box"];2908[label="xwv28001",fontsize=16,color="green",shape="box"];2909[label="xwv29001",fontsize=16,color="green",shape="box"];2910[label="xwv28001",fontsize=16,color="green",shape="box"];2911[label="xwv29001",fontsize=16,color="green",shape="box"];2912[label="xwv28001",fontsize=16,color="green",shape="box"];2913[label="xwv29001",fontsize=16,color="green",shape="box"];2914[label="xwv28001",fontsize=16,color="green",shape="box"];2915[label="xwv29001",fontsize=16,color="green",shape="box"];2916[label="xwv28001",fontsize=16,color="green",shape="box"];2917[label="xwv29001",fontsize=16,color="green",shape="box"];2918[label="xwv28001",fontsize=16,color="green",shape="box"];2919[label="xwv29001",fontsize=16,color="green",shape="box"];2920[label="xwv28001",fontsize=16,color="green",shape="box"];2921[label="xwv28002",fontsize=16,color="green",shape="box"];2922[label="xwv29002",fontsize=16,color="green",shape="box"];2923[label="xwv28002",fontsize=16,color="green",shape="box"];2924[label="xwv29002",fontsize=16,color="green",shape="box"];2925[label="xwv28002",fontsize=16,color="green",shape="box"];2926[label="xwv29002",fontsize=16,color="green",shape="box"];2927[label="xwv28002",fontsize=16,color="green",shape="box"];2928[label="xwv29002",fontsize=16,color="green",shape="box"];2929[label="xwv28002",fontsize=16,color="green",shape="box"];2930[label="xwv29002",fontsize=16,color="green",shape="box"];2931[label="xwv28002",fontsize=16,color="green",shape="box"];2932[label="xwv29002",fontsize=16,color="green",shape="box"];2933[label="xwv28002",fontsize=16,color="green",shape="box"];2934[label="xwv29002",fontsize=16,color="green",shape="box"];2935[label="xwv28002",fontsize=16,color="green",shape="box"];2936[label="xwv29002",fontsize=16,color="green",shape="box"];2937[label="xwv28002",fontsize=16,color="green",shape="box"];2938[label="xwv29002",fontsize=16,color="green",shape="box"];2939[label="xwv28002",fontsize=16,color="green",shape="box"];2940[label="xwv29002",fontsize=16,color="green",shape="box"];2941[label="xwv28002",fontsize=16,color="green",shape="box"];2942[label="xwv29002",fontsize=16,color="green",shape="box"];2943[label="xwv28002",fontsize=16,color="green",shape="box"];2944[label="xwv29002",fontsize=16,color="green",shape="box"];2945[label="xwv28002",fontsize=16,color="green",shape="box"];2946[label="xwv29002",fontsize=16,color="green",shape="box"];2947[label="xwv28002",fontsize=16,color="green",shape="box"];2948[label="xwv29002",fontsize=16,color="green",shape="box"];2949[label="Integer xwv280000 * Integer xwv290010",fontsize=16,color="black",shape="box"];2949 -> 3005[label="",style="solid", color="black", weight=3]; 27.70/11.36 2516[label="primCmpNat (Succ xwv28000) (Succ xwv29000)",fontsize=16,color="black",shape="box"];2516 -> 2772[label="",style="solid", color="black", weight=3]; 27.70/11.36 2517[label="primCmpNat (Succ xwv28000) Zero",fontsize=16,color="black",shape="box"];2517 -> 2773[label="",style="solid", color="black", weight=3]; 27.70/11.36 2518[label="primCmpNat Zero (Succ xwv29000)",fontsize=16,color="black",shape="box"];2518 -> 2774[label="",style="solid", color="black", weight=3]; 27.70/11.36 2519[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2519 -> 2775[label="",style="solid", color="black", weight=3]; 27.70/11.36 2950 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2950[label="xwv28000 * Pos xwv290010",fontsize=16,color="magenta"];2950 -> 3006[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2950 -> 3007[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2951 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2951[label="Pos xwv280010 * xwv29000",fontsize=16,color="magenta"];2951 -> 3008[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2951 -> 3009[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2952 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2952[label="xwv28000 * Pos xwv290010",fontsize=16,color="magenta"];2952 -> 3010[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2952 -> 3011[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2953 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2953[label="Neg xwv280010 * xwv29000",fontsize=16,color="magenta"];2953 -> 3012[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2953 -> 3013[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2954 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2954[label="xwv28000 * Neg xwv290010",fontsize=16,color="magenta"];2954 -> 3014[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2954 -> 3015[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2955 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2955[label="Pos xwv280010 * xwv29000",fontsize=16,color="magenta"];2955 -> 3016[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2955 -> 3017[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2956 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2956[label="xwv28000 * Neg xwv290010",fontsize=16,color="magenta"];2956 -> 3018[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2956 -> 3019[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2957 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2957[label="Neg xwv280010 * xwv29000",fontsize=16,color="magenta"];2957 -> 3020[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2957 -> 3021[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2958 -> 2634[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2958[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2958 -> 3022[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2958 -> 3023[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2959 -> 2636[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2959[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2959 -> 3024[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2959 -> 3025[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2960 -> 2638[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2960[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2960 -> 3026[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2960 -> 3027[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2961 -> 2640[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2961[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2961 -> 3028[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2961 -> 3029[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2962 -> 2234[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2962[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2962 -> 3030[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2962 -> 3031[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2963 -> 2644[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2963[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2963 -> 3032[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2963 -> 3033[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2964 -> 2235[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2964[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2964 -> 3034[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2964 -> 3035[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2965 -> 2648[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2965[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2965 -> 3036[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2965 -> 3037[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2966 -> 2236[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2966[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2966 -> 3038[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2966 -> 3039[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2967 -> 1190[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2967[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2967 -> 3040[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2967 -> 3041[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2968 -> 2238[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2968[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2968 -> 3042[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2968 -> 3043[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2969 -> 2239[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2969[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2969 -> 3044[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2969 -> 3045[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2970 -> 2240[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2970[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2970 -> 3046[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2970 -> 3047[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2971 -> 2241[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2971[label="compare xwv28000 xwv29000",fontsize=16,color="magenta"];2971 -> 3048[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2971 -> 3049[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2972[label="primCompAux0 xwv153 LT",fontsize=16,color="black",shape="box"];2972 -> 3050[label="",style="solid", color="black", weight=3]; 27.70/11.36 2973[label="primCompAux0 xwv153 EQ",fontsize=16,color="black",shape="box"];2973 -> 3051[label="",style="solid", color="black", weight=3]; 27.70/11.36 2974[label="primCompAux0 xwv153 GT",fontsize=16,color="black",shape="box"];2974 -> 3052[label="",style="solid", color="black", weight=3]; 27.70/11.36 2984 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2984[label="xwv28000 * Pos xwv290010",fontsize=16,color="magenta"];2984 -> 3053[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2984 -> 3054[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2985 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2985[label="Pos xwv280010 * xwv29000",fontsize=16,color="magenta"];2985 -> 3055[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2985 -> 3056[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2986 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2986[label="xwv28000 * Pos xwv290010",fontsize=16,color="magenta"];2986 -> 3057[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2986 -> 3058[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2987 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2987[label="Neg xwv280010 * xwv29000",fontsize=16,color="magenta"];2987 -> 3059[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2987 -> 3060[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2988 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2988[label="xwv28000 * Neg xwv290010",fontsize=16,color="magenta"];2988 -> 3061[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2988 -> 3062[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2989 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2989[label="Pos xwv280010 * xwv29000",fontsize=16,color="magenta"];2989 -> 3063[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2989 -> 3064[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2990 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2990[label="xwv28000 * Neg xwv290010",fontsize=16,color="magenta"];2990 -> 3065[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2990 -> 3066[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2991 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2991[label="Neg xwv280010 * xwv29000",fontsize=16,color="magenta"];2991 -> 3067[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2991 -> 3068[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2161[label="primPlusNat (Succ xwv33200) (Succ xwv9100)",fontsize=16,color="black",shape="box"];2161 -> 2289[label="",style="solid", color="black", weight=3]; 27.70/11.36 2162[label="primPlusNat (Succ xwv33200) Zero",fontsize=16,color="black",shape="box"];2162 -> 2290[label="",style="solid", color="black", weight=3]; 27.70/11.36 2163[label="primPlusNat Zero (Succ xwv9100)",fontsize=16,color="black",shape="box"];2163 -> 2291[label="",style="solid", color="black", weight=3]; 27.70/11.36 2164[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2164 -> 2292[label="",style="solid", color="black", weight=3]; 27.70/11.36 3825[label="xwv25000",fontsize=16,color="green",shape="box"];3826[label="xwv25100",fontsize=16,color="green",shape="box"];2280[label="xwv2800",fontsize=16,color="green",shape="box"];2281[label="xwv2900",fontsize=16,color="green",shape="box"];3828 -> 1254[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3828[label="FiniteMap.sizeFM xwv2464 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv2463",fontsize=16,color="magenta"];3828 -> 3835[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3828 -> 3836[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3827[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) xwv344 xwv2460 xwv2461 xwv2462 xwv2463 xwv2464 xwv263",fontsize=16,color="burlywood",shape="triangle"];5083[label="xwv263/False",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5083[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5083 -> 3837[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5084[label="xwv263/True",fontsize=10,color="white",style="solid",shape="box"];3827 -> 5084[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5084 -> 3838[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 3829[label="xwv3444",fontsize=16,color="green",shape="box"];3830[label="FiniteMap.mkBalBranch6MkBalBranch00 xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv246 xwv246 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv3440 xwv3441 xwv3442 xwv3443 xwv3444 True",fontsize=16,color="black",shape="box"];3830 -> 3847[label="",style="solid", color="black", weight=3]; 27.70/11.36 3831 -> 4339[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3831[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xwv3440 xwv3441 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv340 xwv341 xwv246 xwv3443) xwv3444",fontsize=16,color="magenta"];3831 -> 4350[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3831 -> 4351[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3831 -> 4352[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3831 -> 4353[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3831 -> 4354[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4455[label="FiniteMap.sizeFM xwv366",fontsize=16,color="burlywood",shape="triangle"];5085[label="xwv366/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4455 -> 5085[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5085 -> 4460[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5086[label="xwv366/FiniteMap.Branch xwv3660 xwv3661 xwv3662 xwv3663 xwv3664",fontsize=10,color="white",style="solid",shape="box"];4455 -> 5086[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5086 -> 4461[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 4456[label="xwv3680",fontsize=16,color="green",shape="box"];4457 -> 4455[label="",style="dashed", color="red", weight=0]; 27.70/11.36 4457[label="FiniteMap.sizeFM xwv367",fontsize=16,color="magenta"];4457 -> 4462[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4458[label="xwv3680",fontsize=16,color="green",shape="box"];4459 -> 4455[label="",style="dashed", color="red", weight=0]; 27.70/11.36 4459[label="FiniteMap.sizeFM xwv367",fontsize=16,color="magenta"];4459 -> 4463[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 1984 -> 1369[label="",style="dashed", color="red", weight=0]; 27.70/11.36 1984[label="primMulNat xwv40100 (Succ xwv300000)",fontsize=16,color="magenta"];1984 -> 2106[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 1984 -> 2107[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 1983 -> 2056[label="",style="dashed", color="red", weight=0]; 27.70/11.36 1983[label="primPlusNat xwv101 (Succ xwv300000)",fontsize=16,color="magenta"];1983 -> 2108[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 1983 -> 2109[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3585[label="FiniteMap.deleteMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 FiniteMap.EmptyFM)",fontsize=16,color="black",shape="box"];3585 -> 3599[label="",style="solid", color="black", weight=3]; 27.70/11.36 3586[label="FiniteMap.deleteMax (FiniteMap.Branch xwv330 xwv331 xwv332 xwv333 (FiniteMap.Branch xwv3340 xwv3341 xwv3342 xwv3343 xwv3344))",fontsize=16,color="black",shape="box"];3586 -> 3600[label="",style="solid", color="black", weight=3]; 27.70/11.36 3587[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"];3587 -> 3601[label="",style="solid", color="black", weight=3]; 27.70/11.36 3588[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"];3588 -> 3602[label="",style="solid", color="black", weight=3]; 27.70/11.36 3856[label="xwv344",fontsize=16,color="green",shape="box"];3857[label="xwv342",fontsize=16,color="green",shape="box"];3858[label="xwv332",fontsize=16,color="green",shape="box"];3859[label="xwv334",fontsize=16,color="green",shape="box"];3860[label="xwv341",fontsize=16,color="green",shape="box"];3861[label="xwv340",fontsize=16,color="green",shape="box"];3862[label="xwv331",fontsize=16,color="green",shape="box"];3863[label="xwv333",fontsize=16,color="green",shape="box"];3864[label="xwv344",fontsize=16,color="green",shape="box"];3865[label="xwv343",fontsize=16,color="green",shape="box"];3866[label="xwv330",fontsize=16,color="green",shape="box"];3867[label="xwv342",fontsize=16,color="green",shape="box"];3868[label="xwv340",fontsize=16,color="green",shape="box"];3869[label="xwv341",fontsize=16,color="green",shape="box"];3870[label="xwv343",fontsize=16,color="green",shape="box"];3855[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv268 xwv269 xwv270 xwv271 xwv272) (FiniteMap.Branch xwv273 xwv274 xwv275 xwv276 xwv277) (FiniteMap.findMin (FiniteMap.Branch xwv278 xwv279 xwv280 xwv281 xwv282))",fontsize=16,color="burlywood",shape="triangle"];5087[label="xwv281/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3855 -> 5087[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5087 -> 3946[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5088[label="xwv281/FiniteMap.Branch xwv2810 xwv2811 xwv2812 xwv2813 xwv2814",fontsize=10,color="white",style="solid",shape="box"];3855 -> 5088[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5088 -> 3947[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 3611 -> 3555[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3611[label="FiniteMap.deleteMin (FiniteMap.Branch xwv3430 xwv3431 xwv3432 xwv3433 xwv3434)",fontsize=16,color="magenta"];3611 -> 3627[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3611 -> 3628[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3611 -> 3629[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3611 -> 3630[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3611 -> 3631[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3959[label="xwv334",fontsize=16,color="green",shape="box"];3960[label="xwv343",fontsize=16,color="green",shape="box"];3961[label="xwv342",fontsize=16,color="green",shape="box"];3962[label="xwv344",fontsize=16,color="green",shape="box"];3963[label="xwv333",fontsize=16,color="green",shape="box"];3964[label="xwv342",fontsize=16,color="green",shape="box"];3965[label="xwv344",fontsize=16,color="green",shape="box"];3966[label="xwv330",fontsize=16,color="green",shape="box"];3967[label="xwv341",fontsize=16,color="green",shape="box"];3968[label="xwv341",fontsize=16,color="green",shape="box"];3969[label="xwv332",fontsize=16,color="green",shape="box"];3970[label="xwv343",fontsize=16,color="green",shape="box"];3971[label="xwv340",fontsize=16,color="green",shape="box"];3972[label="xwv331",fontsize=16,color="green",shape="box"];3973[label="xwv340",fontsize=16,color="green",shape="box"];3958[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv284 xwv285 xwv286 xwv287 xwv288) (FiniteMap.Branch xwv289 xwv290 xwv291 xwv292 xwv293) (FiniteMap.findMin (FiniteMap.Branch xwv294 xwv295 xwv296 xwv297 xwv298))",fontsize=16,color="burlywood",shape="triangle"];5089[label="xwv297/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3958 -> 5089[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5089 -> 4049[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5090[label="xwv297/FiniteMap.Branch xwv2970 xwv2971 xwv2972 xwv2973 xwv2974",fontsize=10,color="white",style="solid",shape="box"];3958 -> 5090[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5090 -> 4050[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 2992[label="xwv28000",fontsize=16,color="green",shape="box"];2993 -> 176[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2993[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2993 -> 3069[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2993 -> 3070[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2994[label="xwv29000",fontsize=16,color="green",shape="box"];2996 -> 175[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2996[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2996 -> 3071[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2996 -> 3072[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2995[label="compare2 xwv28000 xwv29000 xwv158",fontsize=16,color="burlywood",shape="triangle"];5091[label="xwv158/False",fontsize=10,color="white",style="solid",shape="box"];2995 -> 5091[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5091 -> 3073[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5092[label="xwv158/True",fontsize=10,color="white",style="solid",shape="box"];2995 -> 5092[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5092 -> 3074[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 2998 -> 178[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2998[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];2998 -> 3075[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2998 -> 3076[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2997[label="compare2 xwv28000 xwv29000 xwv159",fontsize=16,color="burlywood",shape="triangle"];5093[label="xwv159/False",fontsize=10,color="white",style="solid",shape="box"];2997 -> 5093[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5093 -> 3077[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5094[label="xwv159/True",fontsize=10,color="white",style="solid",shape="box"];2997 -> 5094[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5094 -> 3078[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 3000 -> 171[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3000[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];3000 -> 3079[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3000 -> 3080[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2999[label="compare2 xwv28000 xwv29000 xwv160",fontsize=16,color="burlywood",shape="triangle"];5095[label="xwv160/False",fontsize=10,color="white",style="solid",shape="box"];2999 -> 5095[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5095 -> 3081[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5096[label="xwv160/True",fontsize=10,color="white",style="solid",shape="box"];2999 -> 5096[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5096 -> 3082[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 3002 -> 50[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3002[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];3002 -> 3083[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3002 -> 3084[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3001[label="compare2 xwv28000 xwv29000 xwv161",fontsize=16,color="burlywood",shape="triangle"];5097[label="xwv161/False",fontsize=10,color="white",style="solid",shape="box"];3001 -> 5097[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5097 -> 3085[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5098[label="xwv161/True",fontsize=10,color="white",style="solid",shape="box"];3001 -> 5098[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5098 -> 3086[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 3004 -> 172[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3004[label="xwv28000 == xwv29000",fontsize=16,color="magenta"];3004 -> 3087[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3004 -> 3088[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3003[label="compare2 xwv28000 xwv29000 xwv162",fontsize=16,color="burlywood",shape="triangle"];5099[label="xwv162/False",fontsize=10,color="white",style="solid",shape="box"];3003 -> 5099[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5099 -> 3089[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5100[label="xwv162/True",fontsize=10,color="white",style="solid",shape="box"];3003 -> 5100[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5100 -> 3090[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 3005[label="Integer (primMulInt xwv280000 xwv290010)",fontsize=16,color="green",shape="box"];3005 -> 3122[label="",style="dashed", color="green", weight=3]; 27.70/11.36 2772 -> 2145[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2772[label="primCmpNat xwv28000 xwv29000",fontsize=16,color="magenta"];2772 -> 2975[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2772 -> 2976[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2773[label="GT",fontsize=16,color="green",shape="box"];2774[label="LT",fontsize=16,color="green",shape="box"];2775[label="EQ",fontsize=16,color="green",shape="box"];3006[label="xwv28000",fontsize=16,color="green",shape="box"];3007[label="Pos xwv290010",fontsize=16,color="green",shape="box"];3008[label="Pos xwv280010",fontsize=16,color="green",shape="box"];3009[label="xwv29000",fontsize=16,color="green",shape="box"];3010[label="xwv28000",fontsize=16,color="green",shape="box"];3011[label="Pos xwv290010",fontsize=16,color="green",shape="box"];3012[label="Neg xwv280010",fontsize=16,color="green",shape="box"];3013[label="xwv29000",fontsize=16,color="green",shape="box"];3014[label="xwv28000",fontsize=16,color="green",shape="box"];3015[label="Neg xwv290010",fontsize=16,color="green",shape="box"];3016[label="Pos xwv280010",fontsize=16,color="green",shape="box"];3017[label="xwv29000",fontsize=16,color="green",shape="box"];3018[label="xwv28000",fontsize=16,color="green",shape="box"];3019[label="Neg xwv290010",fontsize=16,color="green",shape="box"];3020[label="Neg xwv280010",fontsize=16,color="green",shape="box"];3021[label="xwv29000",fontsize=16,color="green",shape="box"];3022[label="xwv28000",fontsize=16,color="green",shape="box"];3023[label="xwv29000",fontsize=16,color="green",shape="box"];3024[label="xwv28000",fontsize=16,color="green",shape="box"];3025[label="xwv29000",fontsize=16,color="green",shape="box"];3026[label="xwv28000",fontsize=16,color="green",shape="box"];3027[label="xwv29000",fontsize=16,color="green",shape="box"];3028[label="xwv28000",fontsize=16,color="green",shape="box"];3029[label="xwv29000",fontsize=16,color="green",shape="box"];3030[label="xwv28000",fontsize=16,color="green",shape="box"];3031[label="xwv29000",fontsize=16,color="green",shape="box"];3032[label="xwv28000",fontsize=16,color="green",shape="box"];3033[label="xwv29000",fontsize=16,color="green",shape="box"];3034[label="xwv28000",fontsize=16,color="green",shape="box"];3035[label="xwv29000",fontsize=16,color="green",shape="box"];3036[label="xwv28000",fontsize=16,color="green",shape="box"];3037[label="xwv29000",fontsize=16,color="green",shape="box"];3038[label="xwv28000",fontsize=16,color="green",shape="box"];3039[label="xwv29000",fontsize=16,color="green",shape="box"];3040[label="xwv28000",fontsize=16,color="green",shape="box"];3041[label="xwv29000",fontsize=16,color="green",shape="box"];3042[label="xwv28000",fontsize=16,color="green",shape="box"];3043[label="xwv29000",fontsize=16,color="green",shape="box"];3044[label="xwv28000",fontsize=16,color="green",shape="box"];3045[label="xwv29000",fontsize=16,color="green",shape="box"];3046[label="xwv28000",fontsize=16,color="green",shape="box"];3047[label="xwv29000",fontsize=16,color="green",shape="box"];3048[label="xwv28000",fontsize=16,color="green",shape="box"];3049[label="xwv29000",fontsize=16,color="green",shape="box"];3050[label="LT",fontsize=16,color="green",shape="box"];3051[label="xwv153",fontsize=16,color="green",shape="box"];3052[label="GT",fontsize=16,color="green",shape="box"];3053[label="xwv28000",fontsize=16,color="green",shape="box"];3054[label="Pos xwv290010",fontsize=16,color="green",shape="box"];3055[label="Pos xwv280010",fontsize=16,color="green",shape="box"];3056[label="xwv29000",fontsize=16,color="green",shape="box"];3057[label="xwv28000",fontsize=16,color="green",shape="box"];3058[label="Pos xwv290010",fontsize=16,color="green",shape="box"];3059[label="Neg xwv280010",fontsize=16,color="green",shape="box"];3060[label="xwv29000",fontsize=16,color="green",shape="box"];3061[label="xwv28000",fontsize=16,color="green",shape="box"];3062[label="Neg xwv290010",fontsize=16,color="green",shape="box"];3063[label="Pos xwv280010",fontsize=16,color="green",shape="box"];3064[label="xwv29000",fontsize=16,color="green",shape="box"];3065[label="xwv28000",fontsize=16,color="green",shape="box"];3066[label="Neg xwv290010",fontsize=16,color="green",shape="box"];3067[label="Neg xwv280010",fontsize=16,color="green",shape="box"];3068[label="xwv29000",fontsize=16,color="green",shape="box"];2289[label="Succ (Succ (primPlusNat xwv33200 xwv9100))",fontsize=16,color="green",shape="box"];2289 -> 2779[label="",style="dashed", color="green", weight=3]; 27.70/11.36 2290[label="Succ xwv33200",fontsize=16,color="green",shape="box"];2291[label="Succ xwv9100",fontsize=16,color="green",shape="box"];2292[label="Zero",fontsize=16,color="green",shape="box"];3835 -> 1208[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3835[label="FiniteMap.sizeFM xwv2464",fontsize=16,color="magenta"];3835 -> 3849[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3836 -> 631[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3836[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xwv2463",fontsize=16,color="magenta"];3836 -> 3850[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3836 -> 3851[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3837[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) xwv344 xwv2460 xwv2461 xwv2462 xwv2463 xwv2464 False",fontsize=16,color="black",shape="box"];3837 -> 3852[label="",style="solid", color="black", weight=3]; 27.70/11.36 3838[label="FiniteMap.mkBalBranch6MkBalBranch11 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) xwv344 xwv2460 xwv2461 xwv2462 xwv2463 xwv2464 True",fontsize=16,color="black",shape="box"];3838 -> 3853[label="",style="solid", color="black", weight=3]; 27.70/11.36 3847[label="FiniteMap.mkBalBranch6Double_L xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444) xwv246 xwv246 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 xwv3443 xwv3444)",fontsize=16,color="burlywood",shape="box"];5101[label="xwv3443/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3847 -> 5101[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5101 -> 3948[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5102[label="xwv3443/FiniteMap.Branch xwv34430 xwv34431 xwv34432 xwv34433 xwv34434",fontsize=10,color="white",style="solid",shape="box"];3847 -> 5102[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5102 -> 3949[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 4350 -> 4339[label="",style="dashed", color="red", weight=0]; 27.70/11.36 4350[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xwv340 xwv341 xwv246 xwv3443",fontsize=16,color="magenta"];4350 -> 4396[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4350 -> 4397[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4350 -> 4398[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4350 -> 4399[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4350 -> 4400[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4351[label="xwv3440",fontsize=16,color="green",shape="box"];4352[label="xwv3441",fontsize=16,color="green",shape="box"];4353[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];4354[label="xwv3444",fontsize=16,color="green",shape="box"];4460[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4460 -> 4464[label="",style="solid", color="black", weight=3]; 27.70/11.36 4461[label="FiniteMap.sizeFM (FiniteMap.Branch xwv3660 xwv3661 xwv3662 xwv3663 xwv3664)",fontsize=16,color="black",shape="box"];4461 -> 4465[label="",style="solid", color="black", weight=3]; 27.70/11.36 4462[label="xwv367",fontsize=16,color="green",shape="box"];4463[label="xwv367",fontsize=16,color="green",shape="box"];2106[label="xwv40100",fontsize=16,color="green",shape="box"];2107[label="Succ xwv300000",fontsize=16,color="green",shape="box"];2108[label="Succ xwv300000",fontsize=16,color="green",shape="box"];2109[label="xwv101",fontsize=16,color="green",shape="box"];3599[label="xwv333",fontsize=16,color="green",shape="box"];3600 -> 3516[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3600[label="FiniteMap.mkBalBranch xwv330 xwv331 xwv333 (FiniteMap.deleteMax (FiniteMap.Branch xwv3340 xwv3341 xwv3342 xwv3343 xwv3344))",fontsize=16,color="magenta"];3600 -> 3614[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3600 -> 3615[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3600 -> 3616[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3600 -> 3617[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3601 -> 4137[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3601[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"];3601 -> 4138[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3601 -> 4139[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3601 -> 4140[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3601 -> 4141[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3601 -> 4142[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3601 -> 4143[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3601 -> 4144[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3601 -> 4145[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3601 -> 4146[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3601 -> 4147[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3601 -> 4148[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3601 -> 4149[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3601 -> 4150[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3601 -> 4151[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3601 -> 4152[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3602 -> 4242[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3602[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"];3602 -> 4243[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3602 -> 4244[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3602 -> 4245[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3602 -> 4246[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3602 -> 4247[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3602 -> 4248[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3602 -> 4249[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3602 -> 4250[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3602 -> 4251[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3602 -> 4252[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3602 -> 4253[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3602 -> 4254[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3602 -> 4255[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3602 -> 4256[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3602 -> 4257[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3946[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv268 xwv269 xwv270 xwv271 xwv272) (FiniteMap.Branch xwv273 xwv274 xwv275 xwv276 xwv277) (FiniteMap.findMin (FiniteMap.Branch xwv278 xwv279 xwv280 FiniteMap.EmptyFM xwv282))",fontsize=16,color="black",shape="box"];3946 -> 4051[label="",style="solid", color="black", weight=3]; 27.70/11.36 3947[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv268 xwv269 xwv270 xwv271 xwv272) (FiniteMap.Branch xwv273 xwv274 xwv275 xwv276 xwv277) (FiniteMap.findMin (FiniteMap.Branch xwv278 xwv279 xwv280 (FiniteMap.Branch xwv2810 xwv2811 xwv2812 xwv2813 xwv2814) xwv282))",fontsize=16,color="black",shape="box"];3947 -> 4052[label="",style="solid", color="black", weight=3]; 27.70/11.36 3627[label="xwv3431",fontsize=16,color="green",shape="box"];3628[label="xwv3432",fontsize=16,color="green",shape="box"];3629[label="xwv3434",fontsize=16,color="green",shape="box"];3630[label="xwv3433",fontsize=16,color="green",shape="box"];3631[label="xwv3430",fontsize=16,color="green",shape="box"];4049[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv284 xwv285 xwv286 xwv287 xwv288) (FiniteMap.Branch xwv289 xwv290 xwv291 xwv292 xwv293) (FiniteMap.findMin (FiniteMap.Branch xwv294 xwv295 xwv296 FiniteMap.EmptyFM xwv298))",fontsize=16,color="black",shape="box"];4049 -> 4066[label="",style="solid", color="black", weight=3]; 27.70/11.36 4050[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv284 xwv285 xwv286 xwv287 xwv288) (FiniteMap.Branch xwv289 xwv290 xwv291 xwv292 xwv293) (FiniteMap.findMin (FiniteMap.Branch xwv294 xwv295 xwv296 (FiniteMap.Branch xwv2970 xwv2971 xwv2972 xwv2973 xwv2974) xwv298))",fontsize=16,color="black",shape="box"];4050 -> 4067[label="",style="solid", color="black", weight=3]; 27.70/11.36 3069[label="xwv29000",fontsize=16,color="green",shape="box"];3070[label="xwv28000",fontsize=16,color="green",shape="box"];3071[label="xwv29000",fontsize=16,color="green",shape="box"];3072[label="xwv28000",fontsize=16,color="green",shape="box"];3073[label="compare2 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3073 -> 3123[label="",style="solid", color="black", weight=3]; 27.70/11.36 3074[label="compare2 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3074 -> 3124[label="",style="solid", color="black", weight=3]; 27.70/11.36 3075[label="xwv29000",fontsize=16,color="green",shape="box"];3076[label="xwv28000",fontsize=16,color="green",shape="box"];3077[label="compare2 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3077 -> 3125[label="",style="solid", color="black", weight=3]; 27.70/11.36 3078[label="compare2 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3078 -> 3126[label="",style="solid", color="black", weight=3]; 27.70/11.36 3079[label="xwv29000",fontsize=16,color="green",shape="box"];3080[label="xwv28000",fontsize=16,color="green",shape="box"];3081[label="compare2 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3081 -> 3127[label="",style="solid", color="black", weight=3]; 27.70/11.36 3082[label="compare2 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3082 -> 3128[label="",style="solid", color="black", weight=3]; 27.70/11.36 3083[label="xwv29000",fontsize=16,color="green",shape="box"];3084[label="xwv28000",fontsize=16,color="green",shape="box"];3085[label="compare2 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3085 -> 3129[label="",style="solid", color="black", weight=3]; 27.70/11.36 3086[label="compare2 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3086 -> 3130[label="",style="solid", color="black", weight=3]; 27.70/11.36 3087[label="xwv29000",fontsize=16,color="green",shape="box"];3088[label="xwv28000",fontsize=16,color="green",shape="box"];3089[label="compare2 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3089 -> 3131[label="",style="solid", color="black", weight=3]; 27.70/11.36 3090[label="compare2 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3090 -> 3132[label="",style="solid", color="black", weight=3]; 27.70/11.36 3122 -> 833[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3122[label="primMulInt xwv280000 xwv290010",fontsize=16,color="magenta"];3122 -> 3155[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3122 -> 3156[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2975[label="xwv29000",fontsize=16,color="green",shape="box"];2976[label="xwv28000",fontsize=16,color="green",shape="box"];2779 -> 2056[label="",style="dashed", color="red", weight=0]; 27.70/11.36 2779[label="primPlusNat xwv33200 xwv9100",fontsize=16,color="magenta"];2779 -> 3230[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 2779 -> 3231[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3849[label="xwv2464",fontsize=16,color="green",shape="box"];3850[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3851 -> 1208[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3851[label="FiniteMap.sizeFM xwv2463",fontsize=16,color="magenta"];3851 -> 3954[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3852[label="FiniteMap.mkBalBranch6MkBalBranch10 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) xwv344 xwv2460 xwv2461 xwv2462 xwv2463 xwv2464 otherwise",fontsize=16,color="black",shape="box"];3852 -> 3955[label="",style="solid", color="black", weight=3]; 27.70/11.36 3853[label="FiniteMap.mkBalBranch6Single_R xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) xwv344",fontsize=16,color="black",shape="box"];3853 -> 3956[label="",style="solid", color="black", weight=3]; 27.70/11.36 3948[label="FiniteMap.mkBalBranch6Double_L xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 FiniteMap.EmptyFM xwv3444) xwv246 xwv246 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 FiniteMap.EmptyFM xwv3444)",fontsize=16,color="black",shape="box"];3948 -> 4053[label="",style="solid", color="black", weight=3]; 27.70/11.36 3949[label="FiniteMap.mkBalBranch6Double_L xwv340 xwv341 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 (FiniteMap.Branch xwv34430 xwv34431 xwv34432 xwv34433 xwv34434) xwv3444) xwv246 xwv246 (FiniteMap.Branch xwv3440 xwv3441 xwv3442 (FiniteMap.Branch xwv34430 xwv34431 xwv34432 xwv34433 xwv34434) xwv3444)",fontsize=16,color="black",shape="box"];3949 -> 4054[label="",style="solid", color="black", weight=3]; 27.70/11.36 4396[label="xwv246",fontsize=16,color="green",shape="box"];4397[label="xwv340",fontsize=16,color="green",shape="box"];4398[label="xwv341",fontsize=16,color="green",shape="box"];4399[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];4400[label="xwv3443",fontsize=16,color="green",shape="box"];4464[label="Pos Zero",fontsize=16,color="green",shape="box"];4465[label="xwv3662",fontsize=16,color="green",shape="box"];3614[label="xwv333",fontsize=16,color="green",shape="box"];3615[label="xwv331",fontsize=16,color="green",shape="box"];3616 -> 3557[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3616[label="FiniteMap.deleteMax (FiniteMap.Branch xwv3340 xwv3341 xwv3342 xwv3343 xwv3344)",fontsize=16,color="magenta"];3616 -> 3634[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3616 -> 3635[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3616 -> 3636[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3616 -> 3637[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3616 -> 3638[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3617[label="xwv330",fontsize=16,color="green",shape="box"];4138[label="xwv333",fontsize=16,color="green",shape="box"];4139[label="xwv334",fontsize=16,color="green",shape="box"];4140[label="xwv331",fontsize=16,color="green",shape="box"];4141[label="xwv330",fontsize=16,color="green",shape="box"];4142[label="xwv343",fontsize=16,color="green",shape="box"];4143[label="xwv333",fontsize=16,color="green",shape="box"];4144[label="xwv331",fontsize=16,color="green",shape="box"];4145[label="xwv341",fontsize=16,color="green",shape="box"];4146[label="xwv340",fontsize=16,color="green",shape="box"];4147[label="xwv332",fontsize=16,color="green",shape="box"];4148[label="xwv332",fontsize=16,color="green",shape="box"];4149[label="xwv342",fontsize=16,color="green",shape="box"];4150[label="xwv334",fontsize=16,color="green",shape="box"];4151[label="xwv330",fontsize=16,color="green",shape="box"];4152[label="xwv344",fontsize=16,color="green",shape="box"];4137[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv331 xwv332 xwv333 xwv334 xwv335) (FiniteMap.Branch xwv336 xwv337 xwv338 xwv339 xwv340) (FiniteMap.findMax (FiniteMap.Branch xwv341 xwv342 xwv343 xwv344 xwv345))",fontsize=16,color="burlywood",shape="triangle"];5103[label="xwv345/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4137 -> 5103[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5103 -> 4228[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5104[label="xwv345/FiniteMap.Branch xwv3450 xwv3451 xwv3452 xwv3453 xwv3454",fontsize=10,color="white",style="solid",shape="box"];4137 -> 5104[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5104 -> 4229[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 4243[label="xwv333",fontsize=16,color="green",shape="box"];4244[label="xwv341",fontsize=16,color="green",shape="box"];4245[label="xwv343",fontsize=16,color="green",shape="box"];4246[label="xwv331",fontsize=16,color="green",shape="box"];4247[label="xwv340",fontsize=16,color="green",shape="box"];4248[label="xwv342",fontsize=16,color="green",shape="box"];4249[label="xwv333",fontsize=16,color="green",shape="box"];4250[label="xwv332",fontsize=16,color="green",shape="box"];4251[label="xwv330",fontsize=16,color="green",shape="box"];4252[label="xwv334",fontsize=16,color="green",shape="box"];4253[label="xwv330",fontsize=16,color="green",shape="box"];4254[label="xwv334",fontsize=16,color="green",shape="box"];4255[label="xwv344",fontsize=16,color="green",shape="box"];4256[label="xwv331",fontsize=16,color="green",shape="box"];4257[label="xwv332",fontsize=16,color="green",shape="box"];4242[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv347 xwv348 xwv349 xwv350 xwv351) (FiniteMap.Branch xwv352 xwv353 xwv354 xwv355 xwv356) (FiniteMap.findMax (FiniteMap.Branch xwv357 xwv358 xwv359 xwv360 xwv361))",fontsize=16,color="burlywood",shape="triangle"];5105[label="xwv361/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4242 -> 5105[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5105 -> 4333[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5106[label="xwv361/FiniteMap.Branch xwv3610 xwv3611 xwv3612 xwv3613 xwv3614",fontsize=10,color="white",style="solid",shape="box"];4242 -> 5106[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5106 -> 4334[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 4051[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv268 xwv269 xwv270 xwv271 xwv272) (FiniteMap.Branch xwv273 xwv274 xwv275 xwv276 xwv277) (xwv278,xwv279)",fontsize=16,color="black",shape="box"];4051 -> 4068[label="",style="solid", color="black", weight=3]; 27.70/11.36 4052 -> 3855[label="",style="dashed", color="red", weight=0]; 27.70/11.36 4052[label="FiniteMap.glueBal2Mid_elt20 (FiniteMap.Branch xwv268 xwv269 xwv270 xwv271 xwv272) (FiniteMap.Branch xwv273 xwv274 xwv275 xwv276 xwv277) (FiniteMap.findMin (FiniteMap.Branch xwv2810 xwv2811 xwv2812 xwv2813 xwv2814))",fontsize=16,color="magenta"];4052 -> 4069[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4052 -> 4070[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4052 -> 4071[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4052 -> 4072[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4052 -> 4073[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4066[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv284 xwv285 xwv286 xwv287 xwv288) (FiniteMap.Branch xwv289 xwv290 xwv291 xwv292 xwv293) (xwv294,xwv295)",fontsize=16,color="black",shape="box"];4066 -> 4086[label="",style="solid", color="black", weight=3]; 27.70/11.36 4067 -> 3958[label="",style="dashed", color="red", weight=0]; 27.70/11.36 4067[label="FiniteMap.glueBal2Mid_key20 (FiniteMap.Branch xwv284 xwv285 xwv286 xwv287 xwv288) (FiniteMap.Branch xwv289 xwv290 xwv291 xwv292 xwv293) (FiniteMap.findMin (FiniteMap.Branch xwv2970 xwv2971 xwv2972 xwv2973 xwv2974))",fontsize=16,color="magenta"];4067 -> 4087[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4067 -> 4088[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4067 -> 4089[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4067 -> 4090[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4067 -> 4091[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3123 -> 3157[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3123[label="compare1 xwv28000 xwv29000 (xwv28000 <= xwv29000)",fontsize=16,color="magenta"];3123 -> 3158[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3124[label="EQ",fontsize=16,color="green",shape="box"];3125 -> 3161[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3125[label="compare1 xwv28000 xwv29000 (xwv28000 <= xwv29000)",fontsize=16,color="magenta"];3125 -> 3162[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3126[label="EQ",fontsize=16,color="green",shape="box"];3127 -> 3166[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3127[label="compare1 xwv28000 xwv29000 (xwv28000 <= xwv29000)",fontsize=16,color="magenta"];3127 -> 3167[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3128[label="EQ",fontsize=16,color="green",shape="box"];3129 -> 3169[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3129[label="compare1 xwv28000 xwv29000 (xwv28000 <= xwv29000)",fontsize=16,color="magenta"];3129 -> 3170[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3130[label="EQ",fontsize=16,color="green",shape="box"];3131 -> 3172[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3131[label="compare1 xwv28000 xwv29000 (xwv28000 <= xwv29000)",fontsize=16,color="magenta"];3131 -> 3173[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3132[label="EQ",fontsize=16,color="green",shape="box"];3155[label="xwv280000",fontsize=16,color="green",shape="box"];3156[label="xwv290010",fontsize=16,color="green",shape="box"];3230[label="xwv9100",fontsize=16,color="green",shape="box"];3231[label="xwv33200",fontsize=16,color="green",shape="box"];3954[label="xwv2463",fontsize=16,color="green",shape="box"];3955[label="FiniteMap.mkBalBranch6MkBalBranch10 xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) xwv344 xwv2460 xwv2461 xwv2462 xwv2463 xwv2464 True",fontsize=16,color="black",shape="box"];3955 -> 4056[label="",style="solid", color="black", weight=3]; 27.70/11.36 3956 -> 4339[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3956[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xwv2460 xwv2461 xwv2463 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xwv340 xwv341 xwv2464 xwv344)",fontsize=16,color="magenta"];3956 -> 4360[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3956 -> 4361[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3956 -> 4362[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3956 -> 4363[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3956 -> 4364[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4053[label="error []",fontsize=16,color="red",shape="box"];4054 -> 4339[label="",style="dashed", color="red", weight=0]; 27.70/11.36 4054[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xwv34430 xwv34431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv340 xwv341 xwv246 xwv34433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xwv3440 xwv3441 xwv34434 xwv3444)",fontsize=16,color="magenta"];4054 -> 4365[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4054 -> 4366[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4054 -> 4367[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4054 -> 4368[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4054 -> 4369[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3634[label="xwv3344",fontsize=16,color="green",shape="box"];3635[label="xwv3340",fontsize=16,color="green",shape="box"];3636[label="xwv3342",fontsize=16,color="green",shape="box"];3637[label="xwv3341",fontsize=16,color="green",shape="box"];3638[label="xwv3343",fontsize=16,color="green",shape="box"];4228[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv331 xwv332 xwv333 xwv334 xwv335) (FiniteMap.Branch xwv336 xwv337 xwv338 xwv339 xwv340) (FiniteMap.findMax (FiniteMap.Branch xwv341 xwv342 xwv343 xwv344 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];4228 -> 4335[label="",style="solid", color="black", weight=3]; 27.70/11.36 4229[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv331 xwv332 xwv333 xwv334 xwv335) (FiniteMap.Branch xwv336 xwv337 xwv338 xwv339 xwv340) (FiniteMap.findMax (FiniteMap.Branch xwv341 xwv342 xwv343 xwv344 (FiniteMap.Branch xwv3450 xwv3451 xwv3452 xwv3453 xwv3454)))",fontsize=16,color="black",shape="box"];4229 -> 4336[label="",style="solid", color="black", weight=3]; 27.70/11.36 4333[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv347 xwv348 xwv349 xwv350 xwv351) (FiniteMap.Branch xwv352 xwv353 xwv354 xwv355 xwv356) (FiniteMap.findMax (FiniteMap.Branch xwv357 xwv358 xwv359 xwv360 FiniteMap.EmptyFM))",fontsize=16,color="black",shape="box"];4333 -> 4401[label="",style="solid", color="black", weight=3]; 27.70/11.36 4334[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv347 xwv348 xwv349 xwv350 xwv351) (FiniteMap.Branch xwv352 xwv353 xwv354 xwv355 xwv356) (FiniteMap.findMax (FiniteMap.Branch xwv357 xwv358 xwv359 xwv360 (FiniteMap.Branch xwv3610 xwv3611 xwv3612 xwv3613 xwv3614)))",fontsize=16,color="black",shape="box"];4334 -> 4402[label="",style="solid", color="black", weight=3]; 27.70/11.36 4068[label="xwv279",fontsize=16,color="green",shape="box"];4069[label="xwv2814",fontsize=16,color="green",shape="box"];4070[label="xwv2812",fontsize=16,color="green",shape="box"];4071[label="xwv2811",fontsize=16,color="green",shape="box"];4072[label="xwv2810",fontsize=16,color="green",shape="box"];4073[label="xwv2813",fontsize=16,color="green",shape="box"];4086[label="xwv294",fontsize=16,color="green",shape="box"];4087[label="xwv2973",fontsize=16,color="green",shape="box"];4088[label="xwv2972",fontsize=16,color="green",shape="box"];4089[label="xwv2974",fontsize=16,color="green",shape="box"];4090[label="xwv2971",fontsize=16,color="green",shape="box"];4091[label="xwv2970",fontsize=16,color="green",shape="box"];3158 -> 2127[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3158[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];3158 -> 3174[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3158 -> 3175[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3157[label="compare1 xwv28000 xwv29000 xwv174",fontsize=16,color="burlywood",shape="triangle"];5107[label="xwv174/False",fontsize=10,color="white",style="solid",shape="box"];3157 -> 5107[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5107 -> 3176[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5108[label="xwv174/True",fontsize=10,color="white",style="solid",shape="box"];3157 -> 5108[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5108 -> 3177[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 3162 -> 2128[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3162[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];3162 -> 3178[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3162 -> 3179[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3161[label="compare1 xwv28000 xwv29000 xwv175",fontsize=16,color="burlywood",shape="triangle"];5109[label="xwv175/False",fontsize=10,color="white",style="solid",shape="box"];3161 -> 5109[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5109 -> 3180[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5110[label="xwv175/True",fontsize=10,color="white",style="solid",shape="box"];3161 -> 5110[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5110 -> 3181[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 3167 -> 2129[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3167[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];3167 -> 3182[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3167 -> 3183[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3166[label="compare1 xwv28000 xwv29000 xwv176",fontsize=16,color="burlywood",shape="triangle"];5111[label="xwv176/False",fontsize=10,color="white",style="solid",shape="box"];3166 -> 5111[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5111 -> 3184[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5112[label="xwv176/True",fontsize=10,color="white",style="solid",shape="box"];3166 -> 5112[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5112 -> 3185[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 3170 -> 2131[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3170[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];3170 -> 3186[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3170 -> 3187[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3169[label="compare1 xwv28000 xwv29000 xwv177",fontsize=16,color="burlywood",shape="triangle"];5113[label="xwv177/False",fontsize=10,color="white",style="solid",shape="box"];3169 -> 5113[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5113 -> 3188[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5114[label="xwv177/True",fontsize=10,color="white",style="solid",shape="box"];3169 -> 5114[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5114 -> 3189[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 3173 -> 2133[label="",style="dashed", color="red", weight=0]; 27.70/11.36 3173[label="xwv28000 <= xwv29000",fontsize=16,color="magenta"];3173 -> 3190[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3173 -> 3191[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3172[label="compare1 xwv28000 xwv29000 xwv178",fontsize=16,color="burlywood",shape="triangle"];5115[label="xwv178/False",fontsize=10,color="white",style="solid",shape="box"];3172 -> 5115[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5115 -> 3192[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5116[label="xwv178/True",fontsize=10,color="white",style="solid",shape="box"];3172 -> 5116[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5116 -> 3193[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 4056[label="FiniteMap.mkBalBranch6Double_R xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 xwv2464) xwv344",fontsize=16,color="burlywood",shape="box"];5117[label="xwv2464/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4056 -> 5117[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5117 -> 4093[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 5118[label="xwv2464/FiniteMap.Branch xwv24640 xwv24641 xwv24642 xwv24643 xwv24644",fontsize=10,color="white",style="solid",shape="box"];4056 -> 5118[label="",style="solid", color="burlywood", weight=9]; 27.70/11.36 5118 -> 4094[label="",style="solid", color="burlywood", weight=3]; 27.70/11.36 4360[label="xwv2463",fontsize=16,color="green",shape="box"];4361[label="xwv2460",fontsize=16,color="green",shape="box"];4362[label="xwv2461",fontsize=16,color="green",shape="box"];4363[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];4364 -> 4339[label="",style="dashed", color="red", weight=0]; 27.70/11.36 4364[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xwv340 xwv341 xwv2464 xwv344",fontsize=16,color="magenta"];4364 -> 4403[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4364 -> 4404[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4364 -> 4405[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4364 -> 4406[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4364 -> 4407[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4365 -> 4339[label="",style="dashed", color="red", weight=0]; 27.70/11.36 4365[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xwv340 xwv341 xwv246 xwv34433",fontsize=16,color="magenta"];4365 -> 4408[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4365 -> 4409[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4365 -> 4410[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4365 -> 4411[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4365 -> 4412[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4366[label="xwv34430",fontsize=16,color="green",shape="box"];4367[label="xwv34431",fontsize=16,color="green",shape="box"];4368[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];4369 -> 4339[label="",style="dashed", color="red", weight=0]; 27.70/11.36 4369[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xwv3440 xwv3441 xwv34434 xwv3444",fontsize=16,color="magenta"];4369 -> 4413[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4369 -> 4414[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4369 -> 4415[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4369 -> 4416[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4369 -> 4417[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4335[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv331 xwv332 xwv333 xwv334 xwv335) (FiniteMap.Branch xwv336 xwv337 xwv338 xwv339 xwv340) (xwv341,xwv342)",fontsize=16,color="black",shape="box"];4335 -> 4418[label="",style="solid", color="black", weight=3]; 27.70/11.36 4336 -> 4137[label="",style="dashed", color="red", weight=0]; 27.70/11.36 4336[label="FiniteMap.glueBal2Mid_elt10 (FiniteMap.Branch xwv331 xwv332 xwv333 xwv334 xwv335) (FiniteMap.Branch xwv336 xwv337 xwv338 xwv339 xwv340) (FiniteMap.findMax (FiniteMap.Branch xwv3450 xwv3451 xwv3452 xwv3453 xwv3454))",fontsize=16,color="magenta"];4336 -> 4419[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4336 -> 4420[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4336 -> 4421[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4336 -> 4422[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4336 -> 4423[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4401[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv347 xwv348 xwv349 xwv350 xwv351) (FiniteMap.Branch xwv352 xwv353 xwv354 xwv355 xwv356) (xwv357,xwv358)",fontsize=16,color="black",shape="box"];4401 -> 4435[label="",style="solid", color="black", weight=3]; 27.70/11.36 4402 -> 4242[label="",style="dashed", color="red", weight=0]; 27.70/11.36 4402[label="FiniteMap.glueBal2Mid_key10 (FiniteMap.Branch xwv347 xwv348 xwv349 xwv350 xwv351) (FiniteMap.Branch xwv352 xwv353 xwv354 xwv355 xwv356) (FiniteMap.findMax (FiniteMap.Branch xwv3610 xwv3611 xwv3612 xwv3613 xwv3614))",fontsize=16,color="magenta"];4402 -> 4436[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4402 -> 4437[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4402 -> 4438[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4402 -> 4439[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4402 -> 4440[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3174[label="xwv28000",fontsize=16,color="green",shape="box"];3175[label="xwv29000",fontsize=16,color="green",shape="box"];3176[label="compare1 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3176 -> 3220[label="",style="solid", color="black", weight=3]; 27.70/11.36 3177[label="compare1 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3177 -> 3221[label="",style="solid", color="black", weight=3]; 27.70/11.36 3178[label="xwv28000",fontsize=16,color="green",shape="box"];3179[label="xwv29000",fontsize=16,color="green",shape="box"];3180[label="compare1 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3180 -> 3222[label="",style="solid", color="black", weight=3]; 27.70/11.36 3181[label="compare1 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3181 -> 3223[label="",style="solid", color="black", weight=3]; 27.70/11.36 3182[label="xwv28000",fontsize=16,color="green",shape="box"];3183[label="xwv29000",fontsize=16,color="green",shape="box"];3184[label="compare1 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3184 -> 3224[label="",style="solid", color="black", weight=3]; 27.70/11.36 3185[label="compare1 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3185 -> 3225[label="",style="solid", color="black", weight=3]; 27.70/11.36 3186[label="xwv28000",fontsize=16,color="green",shape="box"];3187[label="xwv29000",fontsize=16,color="green",shape="box"];3188[label="compare1 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3188 -> 3226[label="",style="solid", color="black", weight=3]; 27.70/11.36 3189[label="compare1 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3189 -> 3227[label="",style="solid", color="black", weight=3]; 27.70/11.36 3190[label="xwv28000",fontsize=16,color="green",shape="box"];3191[label="xwv29000",fontsize=16,color="green",shape="box"];3192[label="compare1 xwv28000 xwv29000 False",fontsize=16,color="black",shape="box"];3192 -> 3228[label="",style="solid", color="black", weight=3]; 27.70/11.36 3193[label="compare1 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3193 -> 3229[label="",style="solid", color="black", weight=3]; 27.70/11.36 4093[label="FiniteMap.mkBalBranch6Double_R xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 FiniteMap.EmptyFM) (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 FiniteMap.EmptyFM) xwv344",fontsize=16,color="black",shape="box"];4093 -> 4134[label="",style="solid", color="black", weight=3]; 27.70/11.36 4094[label="FiniteMap.mkBalBranch6Double_R xwv340 xwv341 xwv344 (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 (FiniteMap.Branch xwv24640 xwv24641 xwv24642 xwv24643 xwv24644)) (FiniteMap.Branch xwv2460 xwv2461 xwv2462 xwv2463 (FiniteMap.Branch xwv24640 xwv24641 xwv24642 xwv24643 xwv24644)) xwv344",fontsize=16,color="black",shape="box"];4094 -> 4135[label="",style="solid", color="black", weight=3]; 27.70/11.36 4403[label="xwv2464",fontsize=16,color="green",shape="box"];4404[label="xwv340",fontsize=16,color="green",shape="box"];4405[label="xwv341",fontsize=16,color="green",shape="box"];4406[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];4407[label="xwv344",fontsize=16,color="green",shape="box"];4408[label="xwv246",fontsize=16,color="green",shape="box"];4409[label="xwv340",fontsize=16,color="green",shape="box"];4410[label="xwv341",fontsize=16,color="green",shape="box"];4411[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4412[label="xwv34433",fontsize=16,color="green",shape="box"];4413[label="xwv34434",fontsize=16,color="green",shape="box"];4414[label="xwv3440",fontsize=16,color="green",shape="box"];4415[label="xwv3441",fontsize=16,color="green",shape="box"];4416[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];4417[label="xwv3444",fontsize=16,color="green",shape="box"];4418[label="xwv342",fontsize=16,color="green",shape="box"];4419[label="xwv3453",fontsize=16,color="green",shape="box"];4420[label="xwv3454",fontsize=16,color="green",shape="box"];4421[label="xwv3451",fontsize=16,color="green",shape="box"];4422[label="xwv3452",fontsize=16,color="green",shape="box"];4423[label="xwv3450",fontsize=16,color="green",shape="box"];4435[label="xwv357",fontsize=16,color="green",shape="box"];4436[label="xwv3611",fontsize=16,color="green",shape="box"];4437[label="xwv3613",fontsize=16,color="green",shape="box"];4438[label="xwv3612",fontsize=16,color="green",shape="box"];4439[label="xwv3610",fontsize=16,color="green",shape="box"];4440[label="xwv3614",fontsize=16,color="green",shape="box"];3220[label="compare0 xwv28000 xwv29000 otherwise",fontsize=16,color="black",shape="box"];3220 -> 3291[label="",style="solid", color="black", weight=3]; 27.70/11.36 3221[label="LT",fontsize=16,color="green",shape="box"];3222[label="compare0 xwv28000 xwv29000 otherwise",fontsize=16,color="black",shape="box"];3222 -> 3292[label="",style="solid", color="black", weight=3]; 27.70/11.36 3223[label="LT",fontsize=16,color="green",shape="box"];3224[label="compare0 xwv28000 xwv29000 otherwise",fontsize=16,color="black",shape="box"];3224 -> 3293[label="",style="solid", color="black", weight=3]; 27.70/11.36 3225[label="LT",fontsize=16,color="green",shape="box"];3226[label="compare0 xwv28000 xwv29000 otherwise",fontsize=16,color="black",shape="box"];3226 -> 3294[label="",style="solid", color="black", weight=3]; 27.70/11.36 3227[label="LT",fontsize=16,color="green",shape="box"];3228[label="compare0 xwv28000 xwv29000 otherwise",fontsize=16,color="black",shape="box"];3228 -> 3295[label="",style="solid", color="black", weight=3]; 27.70/11.36 3229[label="LT",fontsize=16,color="green",shape="box"];4134[label="error []",fontsize=16,color="red",shape="box"];4135 -> 4339[label="",style="dashed", color="red", weight=0]; 27.70/11.36 4135[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xwv24640 xwv24641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv2460 xwv2461 xwv2463 xwv24643) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xwv340 xwv341 xwv24644 xwv344)",fontsize=16,color="magenta"];4135 -> 4380[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4135 -> 4381[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4135 -> 4382[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4135 -> 4383[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4135 -> 4384[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3291[label="compare0 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3291 -> 3589[label="",style="solid", color="black", weight=3]; 27.70/11.36 3292[label="compare0 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3292 -> 3590[label="",style="solid", color="black", weight=3]; 27.70/11.36 3293[label="compare0 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3293 -> 3591[label="",style="solid", color="black", weight=3]; 27.70/11.36 3294[label="compare0 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3294 -> 3592[label="",style="solid", color="black", weight=3]; 27.70/11.36 3295[label="compare0 xwv28000 xwv29000 True",fontsize=16,color="black",shape="box"];3295 -> 3593[label="",style="solid", color="black", weight=3]; 27.70/11.36 4380 -> 4339[label="",style="dashed", color="red", weight=0]; 27.70/11.36 4380[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xwv2460 xwv2461 xwv2463 xwv24643",fontsize=16,color="magenta"];4380 -> 4424[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4380 -> 4425[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4380 -> 4426[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4380 -> 4427[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4380 -> 4428[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4381[label="xwv24640",fontsize=16,color="green",shape="box"];4382[label="xwv24641",fontsize=16,color="green",shape="box"];4383[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];4384 -> 4339[label="",style="dashed", color="red", weight=0]; 27.70/11.36 4384[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xwv340 xwv341 xwv24644 xwv344",fontsize=16,color="magenta"];4384 -> 4429[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4384 -> 4430[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4384 -> 4431[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4384 -> 4432[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 4384 -> 4433[label="",style="dashed", color="magenta", weight=3]; 27.70/11.36 3589[label="GT",fontsize=16,color="green",shape="box"];3590[label="GT",fontsize=16,color="green",shape="box"];3591[label="GT",fontsize=16,color="green",shape="box"];3592[label="GT",fontsize=16,color="green",shape="box"];3593[label="GT",fontsize=16,color="green",shape="box"];4424[label="xwv2463",fontsize=16,color="green",shape="box"];4425[label="xwv2460",fontsize=16,color="green",shape="box"];4426[label="xwv2461",fontsize=16,color="green",shape="box"];4427[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4428[label="xwv24643",fontsize=16,color="green",shape="box"];4429[label="xwv24644",fontsize=16,color="green",shape="box"];4430[label="xwv340",fontsize=16,color="green",shape="box"];4431[label="xwv341",fontsize=16,color="green",shape="box"];4432[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4433[label="xwv344",fontsize=16,color="green",shape="box"];} 27.70/11.36 27.70/11.36 ---------------------------------------- 27.70/11.36 27.70/11.36 (16) 27.70/11.36 Complex Obligation (AND) 27.70/11.36 27.70/11.36 ---------------------------------------- 27.70/11.36 27.70/11.36 (17) 27.70/11.36 Obligation: 27.70/11.36 Q DP problem: 27.70/11.36 The TRS P consists of the following rules: 27.70/11.36 27.70/11.36 new_primCmpNat(Succ(xwv28000), Succ(xwv29000)) -> new_primCmpNat(xwv28000, xwv29000) 27.70/11.36 27.70/11.36 R is empty. 27.70/11.36 Q is empty. 27.70/11.36 We have to consider all minimal (P,Q,R)-chains. 27.70/11.36 ---------------------------------------- 27.70/11.36 27.70/11.36 (18) QDPSizeChangeProof (EQUIVALENT) 27.70/11.36 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. 27.70/11.36 27.70/11.36 From the DPs we obtained the following set of size-change graphs: 27.70/11.36 *new_primCmpNat(Succ(xwv28000), Succ(xwv29000)) -> new_primCmpNat(xwv28000, xwv29000) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2 27.70/11.36 27.70/11.36 27.70/11.36 ---------------------------------------- 27.70/11.36 27.70/11.36 (19) 27.70/11.36 YES 27.70/11.36 27.70/11.36 ---------------------------------------- 27.70/11.36 27.70/11.36 (20) 27.70/11.36 Obligation: 27.70/11.36 Q DP problem: 27.70/11.36 The TRS P consists of the following rules: 27.70/11.36 27.70/11.36 new_esEs2(Just(xwv400), Just(xwv3000), app(app(ty_@2, hg), hh)) -> new_esEs1(xwv400, xwv3000, hg, hh) 27.70/11.36 new_esEs0(Left(xwv400), Left(xwv3000), app(app(ty_@2, cf), cg), cc) -> new_esEs1(xwv400, xwv3000, cf, cg) 27.70/11.36 new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(xwv401, xwv3001, ha, hb, hc) 27.70/11.36 new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(app(ty_Either, bah), bba), baf, bag) -> new_esEs0(xwv400, xwv3000, bah, bba) 27.70/11.36 new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), gb, app(app(ty_Either, gd), ge)) -> new_esEs0(xwv401, xwv3001, gd, ge) 27.70/11.36 new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, app(app(ty_Either, bcb), bcc), bag) -> new_esEs0(xwv401, xwv3001, bcb, bcc) 27.70/11.36 new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(app(ty_Either, fa), fb), eh) -> new_esEs0(xwv400, xwv3000, fa, fb) 27.70/11.36 new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, baf, app(app(ty_Either, bdc), bdd)) -> new_esEs0(xwv402, xwv3002, bdc, bdd) 27.70/11.36 new_esEs(:(xwv400, xwv401), :(xwv3000, xwv3001), app(app(ty_@2, bc), bd)) -> new_esEs1(xwv400, xwv3000, bc, bd) 27.70/11.36 new_esEs2(Just(xwv400), Just(xwv3000), app(ty_[], hd)) -> new_esEs(xwv400, xwv3000, hd) 27.70/11.36 new_esEs0(Left(xwv400), Left(xwv3000), app(ty_Maybe, da), cc) -> new_esEs2(xwv400, xwv3000, da) 27.70/11.36 new_esEs2(Just(xwv400), Just(xwv3000), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(xwv400, xwv3000, bab, bac, bad) 27.70/11.36 new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(app(app(ty_@3, bbe), bbf), bbg), baf, bag) -> new_esEs3(xwv400, xwv3000, bbe, bbf, bbg) 27.70/11.36 new_esEs(:(xwv400, xwv401), :(xwv3000, xwv3001), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs3(xwv400, xwv3000, bf, bg, bh) 27.70/11.36 new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(ty_[], eg), eh) -> new_esEs(xwv400, xwv3000, eg) 27.70/11.36 new_esEs0(Right(xwv400), Right(xwv3000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xwv400, xwv3000, dg, dh) 27.70/11.36 new_esEs(:(xwv400, xwv401), :(xwv3000, xwv3001), ca) -> new_esEs(xwv401, xwv3001, ca) 27.70/11.36 new_esEs2(Just(xwv400), Just(xwv3000), app(ty_Maybe, baa)) -> new_esEs2(xwv400, xwv3000, baa) 27.70/11.36 new_esEs(:(xwv400, xwv401), :(xwv3000, xwv3001), app(ty_[], h)) -> new_esEs(xwv400, xwv3000, h) 27.70/11.36 new_esEs0(Right(xwv400), Right(xwv3000), de, app(ty_[], df)) -> new_esEs(xwv400, xwv3000, df) 27.70/11.36 new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, baf, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(xwv402, xwv3002, bdh, bea, beb) 27.70/11.36 new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), gb, app(ty_Maybe, gh)) -> new_esEs2(xwv401, xwv3001, gh) 27.70/11.36 new_esEs0(Right(xwv400), Right(xwv3000), de, app(ty_Maybe, ec)) -> new_esEs2(xwv400, xwv3000, ec) 27.70/11.36 new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(ty_Maybe, ff), eh) -> new_esEs2(xwv400, xwv3000, ff) 27.70/11.36 new_esEs(:(xwv400, xwv401), :(xwv3000, xwv3001), app(ty_Maybe, be)) -> new_esEs2(xwv400, xwv3000, be) 27.70/11.36 new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(app(ty_@2, bbb), bbc), baf, bag) -> new_esEs1(xwv400, xwv3000, bbb, bbc) 27.70/11.36 new_esEs0(Left(xwv400), Left(xwv3000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xwv400, xwv3000, cd, ce) 27.70/11.36 new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(app(app(ty_@3, fg), fh), ga), eh) -> new_esEs3(xwv400, xwv3000, fg, fh, ga) 27.70/11.36 new_esEs0(Left(xwv400), Left(xwv3000), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(xwv400, xwv3000, db, dc, dd) 27.70/11.36 new_esEs2(Just(xwv400), Just(xwv3000), app(app(ty_Either, he), hf)) -> new_esEs0(xwv400, xwv3000, he, hf) 27.70/11.36 new_esEs0(Right(xwv400), Right(xwv3000), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xwv400, xwv3000, ed, ee, ef) 27.70/11.36 new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, app(app(app(ty_@3, bcg), bch), bda), bag) -> new_esEs3(xwv401, xwv3001, bcg, bch, bda) 27.70/11.36 new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, app(ty_[], bca), bag) -> new_esEs(xwv401, xwv3001, bca) 27.70/11.36 new_esEs0(Right(xwv400), Right(xwv3000), de, app(app(ty_@2, ea), eb)) -> new_esEs1(xwv400, xwv3000, ea, eb) 27.70/11.36 new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, app(app(ty_@2, bcd), bce), bag) -> new_esEs1(xwv401, xwv3001, bcd, bce) 27.70/11.36 new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, baf, app(ty_[], bdb)) -> new_esEs(xwv402, xwv3002, bdb) 27.70/11.36 new_esEs(:(xwv400, xwv401), :(xwv3000, xwv3001), app(app(ty_Either, ba), bb)) -> new_esEs0(xwv400, xwv3000, ba, bb) 27.70/11.36 new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(app(ty_@2, fc), fd), eh) -> new_esEs1(xwv400, xwv3000, fc, fd) 27.70/11.36 new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), gb, app(ty_[], gc)) -> new_esEs(xwv401, xwv3001, gc) 27.70/11.36 new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, baf, app(ty_Maybe, bdg)) -> new_esEs2(xwv402, xwv3002, bdg) 27.70/11.36 new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(ty_[], bae), baf, bag) -> new_esEs(xwv400, xwv3000, bae) 27.70/11.36 new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, baf, app(app(ty_@2, bde), bdf)) -> new_esEs1(xwv402, xwv3002, bde, bdf) 27.70/11.36 new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(ty_Maybe, bbd), baf, bag) -> new_esEs2(xwv400, xwv3000, bbd) 27.70/11.36 new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), gb, app(app(ty_@2, gf), gg)) -> new_esEs1(xwv401, xwv3001, gf, gg) 27.70/11.36 new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, app(ty_Maybe, bcf), bag) -> new_esEs2(xwv401, xwv3001, bcf) 27.70/11.36 new_esEs0(Left(xwv400), Left(xwv3000), app(ty_[], cb), cc) -> new_esEs(xwv400, xwv3000, cb) 27.70/11.36 27.70/11.36 R is empty. 27.70/11.36 Q is empty. 27.70/11.36 We have to consider all minimal (P,Q,R)-chains. 27.70/11.36 ---------------------------------------- 27.70/11.36 27.70/11.36 (21) QDPSizeChangeProof (EQUIVALENT) 27.70/11.36 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. 27.70/11.36 27.70/11.36 From the DPs we obtained the following set of size-change graphs: 27.70/11.36 *new_esEs(:(xwv400, xwv401), :(xwv3000, xwv3001), app(ty_Maybe, be)) -> new_esEs2(xwv400, xwv3000, be) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs2(Just(xwv400), Just(xwv3000), app(ty_Maybe, baa)) -> new_esEs2(xwv400, xwv3000, baa) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs(:(xwv400, xwv401), :(xwv3000, xwv3001), app(app(ty_Either, ba), bb)) -> new_esEs0(xwv400, xwv3000, ba, bb) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs2(Just(xwv400), Just(xwv3000), app(app(ty_Either, he), hf)) -> new_esEs0(xwv400, xwv3000, he, hf) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs(:(xwv400, xwv401), :(xwv3000, xwv3001), app(app(ty_@2, bc), bd)) -> new_esEs1(xwv400, xwv3000, bc, bd) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs2(Just(xwv400), Just(xwv3000), app(app(ty_@2, hg), hh)) -> new_esEs1(xwv400, xwv3000, hg, hh) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs(:(xwv400, xwv401), :(xwv3000, xwv3001), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs3(xwv400, xwv3000, bf, bg, bh) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs2(Just(xwv400), Just(xwv3000), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(xwv400, xwv3000, bab, bac, bad) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs2(Just(xwv400), Just(xwv3000), app(ty_[], hd)) -> new_esEs(xwv400, xwv3000, hd) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), gb, app(ty_Maybe, gh)) -> new_esEs2(xwv401, xwv3001, gh) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(ty_Maybe, ff), eh) -> new_esEs2(xwv400, xwv3000, ff) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), gb, app(app(ty_Either, gd), ge)) -> new_esEs0(xwv401, xwv3001, gd, ge) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(app(ty_Either, fa), fb), eh) -> new_esEs0(xwv400, xwv3000, fa, fb) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(app(ty_@2, fc), fd), eh) -> new_esEs1(xwv400, xwv3000, fc, fd) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), gb, app(app(ty_@2, gf), gg)) -> new_esEs1(xwv401, xwv3001, gf, gg) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(xwv401, xwv3001, ha, hb, hc) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(app(app(ty_@3, fg), fh), ga), eh) -> new_esEs3(xwv400, xwv3000, fg, fh, ga) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), app(ty_[], eg), eh) -> new_esEs(xwv400, xwv3000, eg) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs1(@2(xwv400, xwv401), @2(xwv3000, xwv3001), gb, app(ty_[], gc)) -> new_esEs(xwv401, xwv3001, gc) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, baf, app(ty_Maybe, bdg)) -> new_esEs2(xwv402, xwv3002, bdg) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(ty_Maybe, bbd), baf, bag) -> new_esEs2(xwv400, xwv3000, bbd) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, app(ty_Maybe, bcf), bag) -> new_esEs2(xwv401, xwv3001, bcf) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs0(Left(xwv400), Left(xwv3000), app(ty_Maybe, da), cc) -> new_esEs2(xwv400, xwv3000, da) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs0(Right(xwv400), Right(xwv3000), de, app(ty_Maybe, ec)) -> new_esEs2(xwv400, xwv3000, ec) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(app(ty_Either, bah), bba), baf, bag) -> new_esEs0(xwv400, xwv3000, bah, bba) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, app(app(ty_Either, bcb), bcc), bag) -> new_esEs0(xwv401, xwv3001, bcb, bcc) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, baf, app(app(ty_Either, bdc), bdd)) -> new_esEs0(xwv402, xwv3002, bdc, bdd) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs0(Right(xwv400), Right(xwv3000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xwv400, xwv3000, dg, dh) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs0(Left(xwv400), Left(xwv3000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xwv400, xwv3000, cd, ce) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(app(ty_@2, bbb), bbc), baf, bag) -> new_esEs1(xwv400, xwv3000, bbb, bbc) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, app(app(ty_@2, bcd), bce), bag) -> new_esEs1(xwv401, xwv3001, bcd, bce) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, baf, app(app(ty_@2, bde), bdf)) -> new_esEs1(xwv402, xwv3002, bde, bdf) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(app(app(ty_@3, bbe), bbf), bbg), baf, bag) -> new_esEs3(xwv400, xwv3000, bbe, bbf, bbg) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, baf, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(xwv402, xwv3002, bdh, bea, beb) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, app(app(app(ty_@3, bcg), bch), bda), bag) -> new_esEs3(xwv401, xwv3001, bcg, bch, bda) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, app(ty_[], bca), bag) -> new_esEs(xwv401, xwv3001, bca) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bbh, baf, app(ty_[], bdb)) -> new_esEs(xwv402, xwv3002, bdb) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs3(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), app(ty_[], bae), baf, bag) -> new_esEs(xwv400, xwv3000, bae) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs0(Left(xwv400), Left(xwv3000), app(app(ty_@2, cf), cg), cc) -> new_esEs1(xwv400, xwv3000, cf, cg) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs0(Right(xwv400), Right(xwv3000), de, app(app(ty_@2, ea), eb)) -> new_esEs1(xwv400, xwv3000, ea, eb) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs0(Left(xwv400), Left(xwv3000), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(xwv400, xwv3000, db, dc, dd) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs0(Right(xwv400), Right(xwv3000), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xwv400, xwv3000, ed, ee, ef) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs0(Right(xwv400), Right(xwv3000), de, app(ty_[], df)) -> new_esEs(xwv400, xwv3000, df) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs0(Left(xwv400), Left(xwv3000), app(ty_[], cb), cc) -> new_esEs(xwv400, xwv3000, cb) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs(:(xwv400, xwv401), :(xwv3000, xwv3001), ca) -> new_esEs(xwv401, xwv3001, ca) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 27.70/11.36 27.70/11.36 27.70/11.36 *new_esEs(:(xwv400, xwv401), :(xwv3000, xwv3001), app(ty_[], h)) -> new_esEs(xwv400, xwv3000, h) 27.70/11.36 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.70/11.36 27.70/11.36 27.70/11.36 ---------------------------------------- 27.70/11.36 27.70/11.36 (22) 27.70/11.36 YES 27.70/11.36 27.70/11.36 ---------------------------------------- 27.70/11.36 27.70/11.36 (23) 27.70/11.36 Obligation: 27.70/11.36 Q DP problem: 27.70/11.36 The TRS P consists of the following rules: 27.70/11.36 27.70/11.36 new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv33, Nothing, h, ba) 27.70/11.36 new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv34, Nothing, h, ba) 27.70/11.36 new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Nothing, h, ba) -> new_delFromFM1(xwv31, xwv32, xwv33, xwv34, new_esEs15(new_compare23(Nothing, Nothing, new_esEs4(Nothing, Nothing, h), h), LT), h, ba) 27.70/11.36 new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Nothing, h, ba) -> new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, new_esEs15(new_compare23(Nothing, Just(xwv300), False, h), GT), h, ba) 27.70/11.36 new_delFromFM11(xwv31, xwv32, xwv33, xwv34, xwv40, True, h, ba) -> new_delFromFM(xwv33, Just(xwv40), h, ba) 27.70/11.36 new_delFromFM1(xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv33, Nothing, h, ba) 27.70/11.36 new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(new_compare23(Just(xwv40), Nothing, False, h), GT), h, ba) 27.70/11.36 new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, False, h, ba) -> new_delFromFM11(xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(new_compare23(Just(xwv40), Nothing, new_esEs4(Just(xwv40), Nothing, h), h), LT), h, ba) 27.70/11.36 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bb, bc) -> new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs15(new_compare23(Just(xwv18), Just(xwv13), new_esEs4(Just(xwv18), Just(xwv13), bb), bb), LT), bb, bc) 27.70/11.36 new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, True, h, ba) -> new_delFromFM(xwv34, Just(xwv40), h, ba) 27.70/11.36 new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, False, h, ba) -> new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, new_esEs15(new_compare23(Nothing, Just(xwv300), new_esEs4(Nothing, Just(xwv300), h), h), LT), h, ba) 27.70/11.36 new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv16, Just(xwv18), bb, bc) 27.70/11.36 new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(new_compare23(Just(xwv40), Just(xwv300), new_esEs29(xwv40, xwv300, h), h), GT), h, ba) 27.70/11.36 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv17, Just(xwv18), bb, bc) 27.70/11.36 27.70/11.36 The TRS R consists of the following rules: 27.70/11.36 27.70/11.36 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 27.70/11.36 new_primCmpInt(Neg(Succ(xwv2800)), Pos(xwv290)) -> LT 27.70/11.36 new_ltEs19(xwv2800, xwv2900, ty_Double) -> new_ltEs4(xwv2800, xwv2900) 27.70/11.36 new_pePe(True, xwv131) -> True 27.70/11.36 new_esEs24(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.36 new_compare29(xwv28000, xwv29000, app(app(ty_@2, cac), cad)) -> new_compare30(xwv28000, xwv29000, cac, cad) 27.70/11.36 new_ltEs14(xwv2800, xwv2900) -> new_fsEs(new_compare14(xwv2800, xwv2900)) 27.70/11.36 new_lt8(xwv28000, xwv29000, app(app(ty_@2, bah), bba)) -> new_lt14(xwv28000, xwv29000, bah, bba) 27.70/11.36 new_compare23(xwv280, xwv290, True, bee) -> EQ 27.70/11.36 new_esEs23(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.70/11.36 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 27.70/11.36 new_ltEs20(xwv28002, xwv29002, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_ltEs5(xwv28002, xwv29002, ccb, ccc, ccd) 27.70/11.36 new_primCmpInt(Pos(Zero), Neg(Succ(xwv2900))) -> GT 27.70/11.36 new_esEs29(xwv40, xwv300, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs5(xwv40, xwv300, bff, bfg, bfh) 27.70/11.36 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Ordering, eh) -> new_ltEs10(xwv28000, xwv29000) 27.70/11.36 new_ltEs19(xwv2800, xwv2900, app(app(ty_@2, hg), hh)) -> new_ltEs12(xwv2800, xwv2900, hg, hh) 27.70/11.36 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Int, eh) -> new_ltEs14(xwv28000, xwv29000) 27.70/11.36 new_esEs18(xwv28000, xwv29000, ty_Float) -> new_esEs13(xwv28000, xwv29000) 27.70/11.36 new_esEs24(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.36 new_esEs20(xwv28000, xwv29000, ty_Double) -> new_esEs11(xwv28000, xwv29000) 27.70/11.36 new_esEs26(xwv402, xwv3002, app(app(ty_@2, daf), dag)) -> new_esEs7(xwv402, xwv3002, daf, dag) 27.70/11.36 new_compare15(xwv28000, xwv29000, ed, ee, ef) -> new_compare24(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, ed, ee, ef), ed, ee, ef) 27.70/11.36 new_esEs18(xwv28000, xwv29000, ty_Bool) -> new_esEs12(xwv28000, xwv29000) 27.70/11.36 new_ltEs10(GT, LT) -> False 27.70/11.36 new_lt7(xwv28000, xwv29000) -> new_esEs15(new_compare8(xwv28000, xwv29000), LT) 27.70/11.36 new_ltEs4(xwv2800, xwv2900) -> new_fsEs(new_compare7(xwv2800, xwv2900)) 27.70/11.36 new_esEs25(xwv401, xwv3001, ty_Double) -> new_esEs11(xwv401, xwv3001) 27.70/11.36 new_primCompAux0(xwv153, GT) -> GT 27.70/11.36 new_esEs22(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.36 new_esEs28(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.70/11.36 new_esEs19(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.36 new_ltEs20(xwv28002, xwv29002, ty_Double) -> new_ltEs4(xwv28002, xwv29002) 27.70/11.36 new_compare210(xwv28000, xwv29000, False) -> new_compare110(xwv28000, xwv29000, new_ltEs10(xwv28000, xwv29000)) 27.70/11.36 new_primEqInt(Pos(Succ(xwv4000)), Pos(Zero)) -> False 27.70/11.36 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 27.70/11.36 new_esEs27(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.36 new_ltEs10(EQ, LT) -> False 27.70/11.36 new_compare31(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.36 new_ltEs11(xwv2800, xwv2900, bfb) -> new_fsEs(new_compare28(xwv2800, xwv2900, bfb)) 27.70/11.36 new_esEs23(xwv401, xwv3001, app(ty_[], cee)) -> new_esEs9(xwv401, xwv3001, cee) 27.70/11.36 new_lt16(xwv280, xwv290) -> new_esEs15(new_compare14(xwv280, xwv290), LT) 27.70/11.36 new_primCmpNat2(Succ(xwv28000), Succ(xwv29000)) -> new_primCmpNat2(xwv28000, xwv29000) 27.70/11.36 new_esEs20(xwv28000, xwv29000, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs5(xwv28000, xwv29000, ed, ee, ef) 27.70/11.36 new_esEs6(Left(xwv400), Left(xwv3000), ty_Double, bd) -> new_esEs11(xwv400, xwv3000) 27.70/11.36 new_compare1(:(xwv28000, xwv28001), [], bce) -> GT 27.70/11.36 new_esEs22(xwv400, xwv3000, app(ty_Maybe, cdh)) -> new_esEs4(xwv400, xwv3000, cdh) 27.70/11.36 new_primEqNat0(Succ(xwv4000), Succ(xwv30000)) -> new_primEqNat0(xwv4000, xwv30000) 27.70/11.36 new_esEs23(xwv401, xwv3001, app(ty_Ratio, cff)) -> new_esEs14(xwv401, xwv3001, cff) 27.70/11.36 new_esEs29(xwv40, xwv300, ty_Float) -> new_esEs13(xwv40, xwv300) 27.70/11.36 new_compare12(xwv28000, xwv29000) -> new_compare210(xwv28000, xwv29000, new_esEs15(xwv28000, xwv29000)) 27.70/11.36 new_primCompAux0(xwv153, LT) -> LT 27.70/11.36 new_esEs20(xwv28000, xwv29000, ty_Ordering) -> new_esEs15(xwv28000, xwv29000) 27.70/11.36 new_not(True) -> False 27.70/11.36 new_ltEs18(xwv28001, xwv29001, app(ty_Maybe, bbc)) -> new_ltEs7(xwv28001, xwv29001, bbc) 27.70/11.36 new_ltEs19(xwv2800, xwv2900, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs5(xwv2800, xwv2900, beg, beh, bfa) 27.70/11.36 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs5(xwv28000, xwv29000, dbg, dbh, dca) 27.70/11.36 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Integer) -> new_ltEs9(xwv28000, xwv29000) 27.70/11.36 new_esEs29(xwv40, xwv300, ty_Ordering) -> new_esEs15(xwv40, xwv300) 27.70/11.36 new_compare17(xwv28000, xwv29000, False, bcf, bcg) -> GT 27.70/11.36 new_compare29(xwv28000, xwv29000, ty_@0) -> new_compare9(xwv28000, xwv29000) 27.70/11.36 new_esEs18(xwv28000, xwv29000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs5(xwv28000, xwv29000, bab, bac, bad) 27.70/11.36 new_ltEs19(xwv2800, xwv2900, ty_Bool) -> new_ltEs8(xwv2800, xwv2900) 27.70/11.36 new_esEs23(xwv401, xwv3001, ty_Bool) -> new_esEs12(xwv401, xwv3001) 27.70/11.36 new_ltEs18(xwv28001, xwv29001, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs5(xwv28001, xwv29001, bbd, bbe, bbf) 27.70/11.36 new_esEs15(LT, EQ) -> False 27.70/11.36 new_esEs15(EQ, LT) -> False 27.70/11.36 new_ltEs18(xwv28001, xwv29001, app(app(ty_Either, bbg), bbh)) -> new_ltEs6(xwv28001, xwv29001, bbg, bbh) 27.70/11.36 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(ty_Either, fd), ff), eh) -> new_ltEs6(xwv28000, xwv29000, fd, ff) 27.70/11.36 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Bool, eh) -> new_ltEs8(xwv28000, xwv29000) 27.70/11.36 new_compare29(xwv28000, xwv29000, app(ty_Maybe, bhd)) -> new_compare6(xwv28000, xwv29000, bhd) 27.70/11.36 new_esEs8(@0, @0) -> True 27.70/11.36 new_primEqNat0(Succ(xwv4000), Zero) -> False 27.70/11.36 new_primEqNat0(Zero, Succ(xwv30000)) -> False 27.70/11.36 new_esEs24(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.36 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_Ratio, cf), bd) -> new_esEs14(xwv400, xwv3000, cf) 27.70/11.36 new_ltEs7(Nothing, Just(xwv29000), bef) -> True 27.70/11.36 new_esEs19(xwv400, xwv3000, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs5(xwv400, xwv3000, bea, beb, bec) 27.70/11.36 new_primCmpNat0(xwv2800, Succ(xwv2900)) -> new_primCmpNat2(xwv2800, xwv2900) 27.70/11.36 new_esEs22(xwv400, xwv3000, app(app(ty_@2, cdf), cdg)) -> new_esEs7(xwv400, xwv3000, cdf, cdg) 27.70/11.36 new_esEs22(xwv400, xwv3000, app(ty_[], cdc)) -> new_esEs9(xwv400, xwv3000, cdc) 27.70/11.36 new_esEs25(xwv401, xwv3001, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs5(xwv401, xwv3001, chg, chh, daa) 27.70/11.36 new_compare110(xwv28000, xwv29000, True) -> LT 27.70/11.36 new_esEs18(xwv28000, xwv29000, ty_Double) -> new_esEs11(xwv28000, xwv29000) 27.70/11.36 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(app(ty_@3, ge), gf), gg)) -> new_ltEs5(xwv28000, xwv29000, ge, gf, gg) 27.70/11.36 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Double) -> new_ltEs4(xwv28000, xwv29000) 27.70/11.36 new_esEs18(xwv28000, xwv29000, app(ty_Ratio, bag)) -> new_esEs14(xwv28000, xwv29000, bag) 27.70/11.36 new_esEs23(xwv401, xwv3001, ty_@0) -> new_esEs8(xwv401, xwv3001) 27.70/11.36 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_Maybe, eg), eh) -> new_ltEs7(xwv28000, xwv29000, eg) 27.70/11.36 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.36 new_primCmpInt(Pos(Succ(xwv2800)), Neg(xwv290)) -> GT 27.70/11.36 new_esEs24(xwv400, xwv3000, app(ty_Ratio, cgh)) -> new_esEs14(xwv400, xwv3000, cgh) 27.70/11.36 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Bool) -> new_ltEs8(xwv28000, xwv29000) 27.70/11.36 new_esEs24(xwv400, xwv3000, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs5(xwv400, xwv3000, cge, cgf, cgg) 27.70/11.36 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Char, eh) -> new_ltEs13(xwv28000, xwv29000) 27.70/11.36 new_ltEs10(GT, EQ) -> False 27.70/11.36 new_esEs29(xwv40, xwv300, ty_Double) -> new_esEs11(xwv40, xwv300) 27.70/11.36 new_esEs18(xwv28000, xwv29000, ty_Ordering) -> new_esEs15(xwv28000, xwv29000) 27.70/11.36 new_ltEs17(xwv2800, xwv2900) -> new_fsEs(new_compare31(xwv2800, xwv2900)) 27.70/11.36 new_ltEs9(xwv2800, xwv2900) -> new_fsEs(new_compare8(xwv2800, xwv2900)) 27.70/11.36 new_compare1(:(xwv28000, xwv28001), :(xwv29000, xwv29001), bce) -> new_primCompAux1(xwv28000, xwv29000, new_compare1(xwv28001, xwv29001, bce), bce) 27.70/11.36 new_esEs26(xwv402, xwv3002, ty_Char) -> new_esEs16(xwv402, xwv3002) 27.70/11.36 new_primPlusNat1(Succ(xwv33200), Succ(xwv9100)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv9100))) 27.70/11.36 new_lt8(xwv28000, xwv29000, ty_Int) -> new_lt16(xwv28000, xwv29000) 27.70/11.36 new_esEs6(Left(xwv400), Left(xwv3000), app(app(app(ty_@3, cc), cd), ce), bd) -> new_esEs5(xwv400, xwv3000, cc, cd, ce) 27.70/11.36 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_Ratio, eb)) -> new_esEs14(xwv400, xwv3000, eb) 27.70/11.36 new_ltEs20(xwv28002, xwv29002, ty_Bool) -> new_ltEs8(xwv28002, xwv29002) 27.70/11.36 new_esEs28(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.70/11.36 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_Maybe, gd)) -> new_ltEs7(xwv28000, xwv29000, gd) 27.70/11.36 new_ltEs20(xwv28002, xwv29002, app(ty_Maybe, cca)) -> new_ltEs7(xwv28002, xwv29002, cca) 27.70/11.36 new_compare211(xwv28000, xwv29000, False, bch, bda) -> new_compare18(xwv28000, xwv29000, new_ltEs12(xwv28000, xwv29000, bch, bda), bch, bda) 27.70/11.36 new_compare210(xwv28000, xwv29000, True) -> EQ 27.70/11.36 new_lt8(xwv28000, xwv29000, ty_@0) -> new_lt4(xwv28000, xwv29000) 27.70/11.36 new_esEs21(xwv28001, xwv29001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(xwv28001, xwv29001, cah, cba, cbb) 27.70/11.36 new_esEs14(:%(xwv400, xwv401), :%(xwv3000, xwv3001), bga) -> new_asAs(new_esEs27(xwv400, xwv3000, bga), new_esEs28(xwv401, xwv3001, bga)) 27.70/11.36 new_esEs6(Left(xwv400), Left(xwv3000), ty_Ordering, bd) -> new_esEs15(xwv400, xwv3000) 27.70/11.36 new_pePe(False, xwv131) -> xwv131 27.70/11.36 new_lt19(xwv28000, xwv29000, ty_Int) -> new_lt16(xwv28000, xwv29000) 27.70/11.36 new_lt8(xwv28000, xwv29000, app(app(ty_Either, bae), baf)) -> new_lt12(xwv28000, xwv29000, bae, baf) 27.70/11.36 new_esEs22(xwv400, xwv3000, app(ty_Ratio, ced)) -> new_esEs14(xwv400, xwv3000, ced) 27.70/11.36 new_esEs12(False, False) -> True 27.70/11.36 new_esEs15(GT, GT) -> True 27.70/11.36 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Double, eh) -> new_ltEs4(xwv28000, xwv29000) 27.70/11.36 new_esEs22(xwv400, xwv3000, app(app(ty_Either, cdd), cde)) -> new_esEs6(xwv400, xwv3000, cdd, cde) 27.70/11.36 new_esEs15(EQ, GT) -> False 27.70/11.36 new_esEs15(GT, EQ) -> False 27.70/11.36 new_ltEs20(xwv28002, xwv29002, ty_Char) -> new_ltEs13(xwv28002, xwv29002) 27.70/11.36 new_lt8(xwv28000, xwv29000, ty_Ordering) -> new_lt6(xwv28000, xwv29000) 27.70/11.36 new_lt19(xwv28000, xwv29000, ty_Bool) -> new_lt10(xwv28000, xwv29000) 27.70/11.36 new_esEs25(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.70/11.36 new_ltEs18(xwv28001, xwv29001, ty_Double) -> new_ltEs4(xwv28001, xwv29001) 27.70/11.36 new_lt19(xwv28000, xwv29000, app(app(ty_Either, bcf), bcg)) -> new_lt12(xwv28000, xwv29000, bcf, bcg) 27.70/11.36 new_ltEs18(xwv28001, xwv29001, app(ty_[], bcd)) -> new_ltEs16(xwv28001, xwv29001, bcd) 27.70/11.36 new_lt20(xwv28001, xwv29001, app(ty_Maybe, cag)) -> new_lt9(xwv28001, xwv29001, cag) 27.70/11.36 new_ltEs18(xwv28001, xwv29001, app(app(ty_@2, bcb), bcc)) -> new_ltEs12(xwv28001, xwv29001, bcb, bcc) 27.70/11.36 new_esEs9(:(xwv400, xwv401), [], bdb) -> False 27.70/11.36 new_esEs9([], :(xwv3000, xwv3001), bdb) -> False 27.70/11.36 new_esEs25(xwv401, xwv3001, ty_Ordering) -> new_esEs15(xwv401, xwv3001) 27.70/11.36 new_lt19(xwv28000, xwv29000, app(ty_Maybe, ec)) -> new_lt9(xwv28000, xwv29000, ec) 27.70/11.36 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 27.70/11.36 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 27.70/11.36 new_esEs23(xwv401, xwv3001, app(ty_Maybe, cfb)) -> new_esEs4(xwv401, xwv3001, cfb) 27.70/11.36 new_compare11(xwv28000, xwv29000, True, ed, ee, ef) -> LT 27.70/11.36 new_esEs26(xwv402, xwv3002, app(ty_[], dac)) -> new_esEs9(xwv402, xwv3002, dac) 27.70/11.36 new_compare19(xwv117, xwv118, True, dbe) -> LT 27.70/11.36 new_ltEs18(xwv28001, xwv29001, ty_Integer) -> new_ltEs9(xwv28001, xwv29001) 27.70/11.36 new_compare30(xwv28000, xwv29000, bch, bda) -> new_compare211(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, bch, bda), bch, bda) 27.70/11.36 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.36 new_esEs6(Left(xwv400), Left(xwv3000), ty_Integer, bd) -> new_esEs10(xwv400, xwv3000) 27.70/11.36 new_compare7(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.36 new_esEs20(xwv28000, xwv29000, app(ty_Ratio, caf)) -> new_esEs14(xwv28000, xwv29000, caf) 27.70/11.36 new_esEs21(xwv28001, xwv29001, ty_Float) -> new_esEs13(xwv28001, xwv29001) 27.70/11.36 new_lt6(xwv28000, xwv29000) -> new_esEs15(new_compare12(xwv28000, xwv29000), LT) 27.70/11.36 new_esEs18(xwv28000, xwv29000, ty_Char) -> new_esEs16(xwv28000, xwv29000) 27.70/11.36 new_ltEs19(xwv2800, xwv2900, ty_Char) -> new_ltEs13(xwv2800, xwv2900) 27.70/11.36 new_esEs4(Just(xwv400), Just(xwv3000), app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(xwv400, xwv3000, bgh, bha, bhb) 27.70/11.36 new_esEs19(xwv400, xwv3000, app(ty_Maybe, bdh)) -> new_esEs4(xwv400, xwv3000, bdh) 27.70/11.36 new_primEqInt(Neg(Succ(xwv4000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 27.70/11.36 new_primCmpInt(Neg(Zero), Pos(Succ(xwv2900))) -> LT 27.70/11.36 new_lt8(xwv28000, xwv29000, app(ty_[], bbb)) -> new_lt5(xwv28000, xwv29000, bbb) 27.70/11.36 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_[], gb), eh) -> new_ltEs16(xwv28000, xwv29000, gb) 27.70/11.36 new_primMulInt(Pos(xwv4010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.36 new_ltEs8(True, False) -> False 27.70/11.36 new_lt18(xwv28000, xwv29000) -> new_esEs15(new_compare31(xwv28000, xwv29000), LT) 27.70/11.36 new_esEs24(xwv400, xwv3000, app(app(ty_Either, cfh), cga)) -> new_esEs6(xwv400, xwv3000, cfh, cga) 27.70/11.36 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Float, eh) -> new_ltEs17(xwv28000, xwv29000) 27.70/11.36 new_compare18(xwv28000, xwv29000, False, bch, bda) -> GT 27.70/11.36 new_esEs6(Left(xwv400), Left(xwv3000), app(app(ty_Either, bf), bg), bd) -> new_esEs6(xwv400, xwv3000, bf, bg) 27.70/11.36 new_compare29(xwv28000, xwv29000, app(ty_[], cae)) -> new_compare1(xwv28000, xwv29000, cae) 27.70/11.36 new_ltEs16(xwv2800, xwv2900, bce) -> new_fsEs(new_compare1(xwv2800, xwv2900, bce)) 27.70/11.36 new_lt11(xwv28000, xwv29000, ed, ee, ef) -> new_esEs15(new_compare15(xwv28000, xwv29000, ed, ee, ef), LT) 27.70/11.36 new_esEs23(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.70/11.36 new_primMulNat0(Succ(xwv40100), Zero) -> Zero 27.70/11.36 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 27.70/11.36 new_ltEs8(False, False) -> True 27.70/11.36 new_esEs4(Just(xwv400), Just(xwv3000), ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.36 new_compare29(xwv28000, xwv29000, ty_Char) -> new_compare13(xwv28000, xwv29000) 27.70/11.36 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(ty_Either, gh), ha)) -> new_ltEs6(xwv28000, xwv29000, gh, ha) 27.70/11.36 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs5(xwv400, xwv3000, dg, dh, ea) 27.70/11.36 new_esEs23(xwv401, xwv3001, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_esEs5(xwv401, xwv3001, cfc, cfd, cfe) 27.70/11.36 new_esEs24(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.36 new_primCmpNat2(Succ(xwv28000), Zero) -> GT 27.70/11.36 new_compare11(xwv28000, xwv29000, False, ed, ee, ef) -> GT 27.70/11.36 new_lt8(xwv28000, xwv29000, ty_Char) -> new_lt15(xwv28000, xwv29000) 27.70/11.36 new_compare29(xwv28000, xwv29000, ty_Float) -> new_compare31(xwv28000, xwv29000) 27.70/11.36 new_esEs15(LT, GT) -> False 27.70/11.36 new_esEs15(GT, LT) -> False 27.70/11.36 new_lt20(xwv28001, xwv29001, app(app(app(ty_@3, cah), cba), cbb)) -> new_lt11(xwv28001, xwv29001, cah, cba, cbb) 27.70/11.36 new_esEs25(xwv401, xwv3001, ty_@0) -> new_esEs8(xwv401, xwv3001) 27.70/11.36 new_esEs6(Left(xwv400), Left(xwv3000), app(app(ty_@2, bh), ca), bd) -> new_esEs7(xwv400, xwv3000, bh, ca) 27.70/11.36 new_ltEs18(xwv28001, xwv29001, ty_Bool) -> new_ltEs8(xwv28001, xwv29001) 27.70/11.36 new_ltEs20(xwv28002, xwv29002, app(app(ty_@2, cch), cda)) -> new_ltEs12(xwv28002, xwv29002, cch, cda) 27.70/11.36 new_compare17(xwv28000, xwv29000, True, bcf, bcg) -> LT 27.70/11.36 new_compare18(xwv28000, xwv29000, True, bch, bda) -> LT 27.70/11.36 new_compare1([], [], bce) -> EQ 27.70/11.36 new_lt20(xwv28001, xwv29001, ty_Bool) -> new_lt10(xwv28001, xwv29001) 27.70/11.36 new_esEs9(:(xwv400, xwv401), :(xwv3000, xwv3001), bdb) -> new_asAs(new_esEs19(xwv400, xwv3000, bdb), new_esEs9(xwv401, xwv3001, bdb)) 27.70/11.36 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Int) -> new_ltEs14(xwv28000, xwv29000) 27.70/11.36 new_esEs20(xwv28000, xwv29000, ty_Float) -> new_esEs13(xwv28000, xwv29000) 27.70/11.36 new_esEs20(xwv28000, xwv29000, app(ty_Maybe, ec)) -> new_esEs4(xwv28000, xwv29000, ec) 27.70/11.36 new_compare29(xwv28000, xwv29000, ty_Ordering) -> new_compare12(xwv28000, xwv29000) 27.70/11.36 new_esEs24(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.36 new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) 27.70/11.36 new_primPlusNat1(Zero, Succ(xwv9100)) -> Succ(xwv9100) 27.70/11.36 new_esEs26(xwv402, xwv3002, ty_@0) -> new_esEs8(xwv402, xwv3002) 27.70/11.36 new_lt20(xwv28001, xwv29001, ty_Int) -> new_lt16(xwv28001, xwv29001) 27.70/11.36 new_ltEs20(xwv28002, xwv29002, app(ty_[], cdb)) -> new_ltEs16(xwv28002, xwv29002, cdb) 27.70/11.36 new_compare23(Just(xwv2800), Nothing, False, bee) -> GT 27.70/11.36 new_compare13(Char(xwv28000), Char(xwv29000)) -> new_primCmpNat2(xwv28000, xwv29000) 27.70/11.36 new_esEs17(xwv40, xwv300) -> new_primEqInt(xwv40, xwv300) 27.70/11.36 new_lt20(xwv28001, xwv29001, ty_Float) -> new_lt18(xwv28001, xwv29001) 27.70/11.36 new_esEs6(Left(xwv400), Left(xwv3000), ty_@0, bd) -> new_esEs8(xwv400, xwv3000) 27.70/11.36 new_compare6(xwv28000, xwv29000, ec) -> new_compare23(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, ec), ec) 27.70/11.36 new_ltEs20(xwv28002, xwv29002, ty_Integer) -> new_ltEs9(xwv28002, xwv29002) 27.70/11.36 new_primCompAux1(xwv28000, xwv29000, xwv141, bce) -> new_primCompAux0(xwv141, new_compare29(xwv28000, xwv29000, bce)) 27.70/11.36 new_esEs25(xwv401, xwv3001, ty_Bool) -> new_esEs12(xwv401, xwv3001) 27.70/11.36 new_ltEs19(xwv2800, xwv2900, ty_Integer) -> new_ltEs9(xwv2800, xwv2900) 27.70/11.36 new_esEs24(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.36 new_esEs26(xwv402, xwv3002, ty_Int) -> new_esEs17(xwv402, xwv3002) 27.70/11.36 new_ltEs19(xwv2800, xwv2900, app(ty_[], bce)) -> new_ltEs16(xwv2800, xwv2900, bce) 27.70/11.36 new_esEs19(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.36 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_[], da)) -> new_esEs9(xwv400, xwv3000, da) 27.70/11.36 new_compare28(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Int) -> new_compare14(new_sr(xwv28000, xwv29001), new_sr(xwv29000, xwv28001)) 27.70/11.36 new_esEs21(xwv28001, xwv29001, app(ty_Maybe, cag)) -> new_esEs4(xwv28001, xwv29001, cag) 27.70/11.36 new_primMulInt(Neg(xwv4010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.36 new_lt14(xwv28000, xwv29000, bch, bda) -> new_esEs15(new_compare30(xwv28000, xwv29000, bch, bda), LT) 27.70/11.36 new_esEs25(xwv401, xwv3001, app(app(ty_@2, chd), che)) -> new_esEs7(xwv401, xwv3001, chd, che) 27.70/11.36 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_@0) -> new_ltEs15(xwv28000, xwv29000) 27.70/11.36 new_lt19(xwv28000, xwv29000, ty_Float) -> new_lt18(xwv28000, xwv29000) 27.70/11.36 new_esEs7(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bfc, bfd) -> new_asAs(new_esEs22(xwv400, xwv3000, bfc), new_esEs23(xwv401, xwv3001, bfd)) 27.70/11.36 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(ty_@2, dd), de)) -> new_esEs7(xwv400, xwv3000, dd, de) 27.70/11.36 new_esEs6(Left(xwv400), Left(xwv3000), ty_Bool, bd) -> new_esEs12(xwv400, xwv3000) 27.70/11.36 new_ltEs12(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), hg, hh) -> new_pePe(new_lt8(xwv28000, xwv29000, hg), new_asAs(new_esEs18(xwv28000, xwv29000, hg), new_ltEs18(xwv28001, xwv29001, hh))) 27.70/11.36 new_esEs26(xwv402, xwv3002, ty_Double) -> new_esEs11(xwv402, xwv3002) 27.70/11.36 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Ordering) -> new_ltEs10(xwv28000, xwv29000) 27.70/11.36 new_ltEs8(False, True) -> True 27.70/11.36 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_Maybe, bgg)) -> new_esEs4(xwv400, xwv3000, bgg) 27.70/11.36 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Float) -> new_ltEs17(xwv28000, xwv29000) 27.70/11.36 new_esEs23(xwv401, xwv3001, app(app(ty_Either, cef), ceg)) -> new_esEs6(xwv401, xwv3001, cef, ceg) 27.70/11.36 new_esEs24(xwv400, xwv3000, app(ty_[], cfg)) -> new_esEs9(xwv400, xwv3000, cfg) 27.70/11.36 new_compare31(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.36 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Char) -> new_ltEs13(xwv28000, xwv29000) 27.70/11.36 new_esEs21(xwv28001, xwv29001, app(app(ty_Either, cbc), cbd)) -> new_esEs6(xwv28001, xwv29001, cbc, cbd) 27.70/11.36 new_esEs13(Float(xwv400, xwv401), Float(xwv3000, xwv3001)) -> new_esEs17(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 27.70/11.36 new_esEs26(xwv402, xwv3002, ty_Integer) -> new_esEs10(xwv402, xwv3002) 27.70/11.36 new_ltEs18(xwv28001, xwv29001, ty_Ordering) -> new_ltEs10(xwv28001, xwv29001) 27.70/11.36 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(ty_@2, fh), ga), eh) -> new_ltEs12(xwv28000, xwv29000, fh, ga) 27.70/11.36 new_esEs6(Left(xwv400), Left(xwv3000), ty_Int, bd) -> new_esEs17(xwv400, xwv3000) 27.70/11.36 new_compare8(Integer(xwv28000), Integer(xwv29000)) -> new_primCmpInt(xwv28000, xwv29000) 27.70/11.36 new_primMulInt(Pos(xwv4010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.36 new_primMulInt(Neg(xwv4010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.36 new_lt8(xwv28000, xwv29000, app(app(app(ty_@3, bab), bac), bad)) -> new_lt11(xwv28000, xwv29000, bab, bac, bad) 27.70/11.36 new_esEs20(xwv28000, xwv29000, ty_@0) -> new_esEs8(xwv28000, xwv29000) 27.70/11.36 new_compare29(xwv28000, xwv29000, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_compare15(xwv28000, xwv29000, bhe, bhf, bhg) 27.70/11.36 new_compare29(xwv28000, xwv29000, ty_Bool) -> new_compare16(xwv28000, xwv29000) 27.70/11.36 new_primCmpInt(Pos(Succ(xwv2800)), Pos(xwv290)) -> new_primCmpNat0(xwv2800, xwv290) 27.70/11.36 new_esEs15(LT, LT) -> True 27.70/11.36 new_esEs24(xwv400, xwv3000, app(ty_Maybe, cgd)) -> new_esEs4(xwv400, xwv3000, cgd) 27.70/11.36 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(ty_Either, db), dc)) -> new_esEs6(xwv400, xwv3000, db, dc) 27.70/11.36 new_lt9(xwv28000, xwv29000, ec) -> new_esEs15(new_compare6(xwv28000, xwv29000, ec), LT) 27.70/11.36 new_esEs19(xwv400, xwv3000, app(ty_[], bdc)) -> new_esEs9(xwv400, xwv3000, bdc) 27.70/11.36 new_esEs25(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.70/11.36 new_esEs22(xwv400, xwv3000, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs5(xwv400, xwv3000, cea, ceb, cec) 27.70/11.36 new_esEs19(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.36 new_lt8(xwv28000, xwv29000, ty_Double) -> new_lt17(xwv28000, xwv29000) 27.70/11.36 new_sr0(Integer(xwv280000), Integer(xwv290010)) -> Integer(new_primMulInt(xwv280000, xwv290010)) 27.70/11.36 new_esEs18(xwv28000, xwv29000, app(ty_Maybe, baa)) -> new_esEs4(xwv28000, xwv29000, baa) 27.70/11.36 new_esEs21(xwv28001, xwv29001, app(ty_Ratio, cbe)) -> new_esEs14(xwv28001, xwv29001, cbe) 27.70/11.36 new_esEs29(xwv40, xwv300, ty_Char) -> new_esEs16(xwv40, xwv300) 27.70/11.36 new_esEs4(Just(xwv400), Just(xwv3000), ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.36 new_esEs29(xwv40, xwv300, ty_@0) -> new_esEs8(xwv40, xwv300) 27.70/11.36 new_compare24(xwv28000, xwv29000, True, ed, ee, ef) -> EQ 27.70/11.36 new_esEs4(Just(xwv400), Just(xwv3000), app(app(ty_Either, bgc), bgd)) -> new_esEs6(xwv400, xwv3000, bgc, bgd) 27.70/11.36 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.36 new_lt19(xwv28000, xwv29000, app(app(app(ty_@3, ed), ee), ef)) -> new_lt11(xwv28000, xwv29000, ed, ee, ef) 27.70/11.36 new_primCmpNat0(xwv2800, Zero) -> GT 27.70/11.36 new_lt10(xwv28000, xwv29000) -> new_esEs15(new_compare16(xwv28000, xwv29000), LT) 27.70/11.36 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_Ratio, bhc)) -> new_esEs14(xwv400, xwv3000, bhc) 27.70/11.36 new_primCmpNat2(Zero, Succ(xwv29000)) -> LT 27.70/11.36 new_esEs25(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 27.70/11.36 new_asAs(True, xwv57) -> xwv57 27.70/11.36 new_esEs25(xwv401, xwv3001, app(ty_Ratio, dab)) -> new_esEs14(xwv401, xwv3001, dab) 27.70/11.36 new_esEs26(xwv402, xwv3002, ty_Float) -> new_esEs13(xwv402, xwv3002) 27.70/11.36 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Bool) -> new_ltEs8(xwv28000, xwv29000) 27.70/11.36 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Ordering) -> new_ltEs10(xwv28000, xwv29000) 27.70/11.36 new_esEs10(Integer(xwv400), Integer(xwv3000)) -> new_primEqInt(xwv400, xwv3000) 27.70/11.36 new_lt19(xwv28000, xwv29000, ty_Double) -> new_lt17(xwv28000, xwv29000) 27.70/11.36 new_esEs26(xwv402, xwv3002, ty_Ordering) -> new_esEs15(xwv402, xwv3002) 27.70/11.36 new_ltEs18(xwv28001, xwv29001, ty_Char) -> new_ltEs13(xwv28001, xwv29001) 27.70/11.36 new_ltEs10(LT, LT) -> True 27.70/11.36 new_compare7(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.36 new_ltEs20(xwv28002, xwv29002, ty_@0) -> new_ltEs15(xwv28002, xwv29002) 27.70/11.36 new_esEs25(xwv401, xwv3001, app(ty_[], cha)) -> new_esEs9(xwv401, xwv3001, cha) 27.70/11.36 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_Ratio, fg), eh) -> new_ltEs11(xwv28000, xwv29000, fg) 27.70/11.36 new_esEs6(Left(xwv400), Right(xwv3000), cg, bd) -> False 27.70/11.36 new_esEs6(Right(xwv400), Left(xwv3000), cg, bd) -> False 27.70/11.36 new_esEs21(xwv28001, xwv29001, ty_Bool) -> new_esEs12(xwv28001, xwv29001) 27.70/11.36 new_esEs21(xwv28001, xwv29001, ty_Int) -> new_esEs17(xwv28001, xwv29001) 27.70/11.36 new_esEs16(Char(xwv400), Char(xwv3000)) -> new_primEqNat0(xwv400, xwv3000) 27.70/11.36 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_Ratio, hb)) -> new_ltEs11(xwv28000, xwv29000, hb) 27.70/11.36 new_esEs22(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.36 new_esEs26(xwv402, xwv3002, ty_Bool) -> new_esEs12(xwv402, xwv3002) 27.70/11.36 new_esEs24(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.36 new_ltEs20(xwv28002, xwv29002, app(ty_Ratio, ccg)) -> new_ltEs11(xwv28002, xwv29002, ccg) 27.70/11.36 new_esEs18(xwv28000, xwv29000, app(app(ty_@2, bah), bba)) -> new_esEs7(xwv28000, xwv29000, bah, bba) 27.70/11.36 new_esEs20(xwv28000, xwv29000, app(ty_[], hf)) -> new_esEs9(xwv28000, xwv29000, hf) 27.70/11.36 new_ltEs8(True, True) -> True 27.70/11.36 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_@0) -> new_ltEs15(xwv28000, xwv29000) 27.70/11.36 new_ltEs19(xwv2800, xwv2900, ty_@0) -> new_ltEs15(xwv2800, xwv2900) 27.70/11.36 new_esEs24(xwv400, xwv3000, app(app(ty_@2, cgb), cgc)) -> new_esEs7(xwv400, xwv3000, cgb, cgc) 27.70/11.36 new_compare110(xwv28000, xwv29000, False) -> GT 27.70/11.36 new_lt8(xwv28000, xwv29000, ty_Integer) -> new_lt7(xwv28000, xwv29000) 27.70/11.36 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Int) -> new_ltEs14(xwv28000, xwv29000) 27.70/11.36 new_ltEs18(xwv28001, xwv29001, ty_Int) -> new_ltEs14(xwv28001, xwv29001) 27.70/11.36 new_sr(xwv401, xwv3000) -> new_primMulInt(xwv401, xwv3000) 27.70/11.36 new_esEs12(False, True) -> False 27.70/11.36 new_esEs12(True, False) -> False 27.70/11.36 new_lt20(xwv28001, xwv29001, app(app(ty_Either, cbc), cbd)) -> new_lt12(xwv28001, xwv29001, cbc, cbd) 27.70/11.36 new_esEs23(xwv401, xwv3001, ty_Double) -> new_esEs11(xwv401, xwv3001) 27.70/11.36 new_ltEs7(Nothing, Nothing, bef) -> True 27.70/11.36 new_esEs4(Just(xwv400), Just(xwv3000), ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.36 new_primMulNat0(Zero, Zero) -> Zero 27.70/11.36 new_esEs4(Just(xwv400), Just(xwv3000), ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.36 new_esEs22(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.36 new_esEs12(True, True) -> True 27.70/11.36 new_compare10(xwv28000, xwv29000, False) -> GT 27.70/11.36 new_esEs21(xwv28001, xwv29001, ty_Integer) -> new_esEs10(xwv28001, xwv29001) 27.70/11.36 new_esEs18(xwv28000, xwv29000, ty_@0) -> new_esEs8(xwv28000, xwv29000) 27.70/11.36 new_esEs29(xwv40, xwv300, ty_Int) -> new_esEs17(xwv40, xwv300) 27.70/11.36 new_primCmpInt(Neg(Zero), Neg(Succ(xwv2900))) -> new_primCmpNat0(xwv2900, Zero) 27.70/11.36 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_Maybe, cb), bd) -> new_esEs4(xwv400, xwv3000, cb) 27.70/11.36 new_esEs26(xwv402, xwv3002, app(app(ty_Either, dad), dae)) -> new_esEs6(xwv402, xwv3002, dad, dae) 27.70/11.36 new_ltEs7(Just(xwv28000), Nothing, bef) -> False 27.70/11.36 new_esEs23(xwv401, xwv3001, app(app(ty_@2, ceh), cfa)) -> new_esEs7(xwv401, xwv3001, ceh, cfa) 27.70/11.36 new_compare9(@0, @0) -> EQ 27.70/11.36 new_esEs21(xwv28001, xwv29001, app(ty_[], cbh)) -> new_esEs9(xwv28001, xwv29001, cbh) 27.70/11.36 new_primCmpNat1(Zero, xwv2800) -> LT 27.70/11.36 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_[], bgb)) -> new_esEs9(xwv400, xwv3000, bgb) 27.70/11.36 new_esEs4(Nothing, Nothing, bfe) -> True 27.70/11.36 new_esEs6(Left(xwv400), Left(xwv3000), ty_Char, bd) -> new_esEs16(xwv400, xwv3000) 27.70/11.36 new_compare29(xwv28000, xwv29000, app(ty_Ratio, cab)) -> new_compare28(xwv28000, xwv29000, cab) 27.70/11.36 new_esEs4(Nothing, Just(xwv3000), bfe) -> False 27.70/11.36 new_esEs4(Just(xwv400), Nothing, bfe) -> False 27.70/11.36 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_Ratio, dcd)) -> new_ltEs11(xwv28000, xwv29000, dcd) 27.70/11.36 new_ltEs19(xwv2800, xwv2900, app(ty_Ratio, bfb)) -> new_ltEs11(xwv2800, xwv2900, bfb) 27.70/11.36 new_esEs19(xwv400, xwv3000, app(ty_Ratio, bed)) -> new_esEs14(xwv400, xwv3000, bed) 27.70/11.36 new_compare29(xwv28000, xwv29000, ty_Int) -> new_compare14(xwv28000, xwv29000) 27.70/11.36 new_primCmpNat2(Zero, Zero) -> EQ 27.70/11.36 new_lt5(xwv28000, xwv29000, hf) -> new_esEs15(new_compare1(xwv28000, xwv29000, hf), LT) 27.70/11.36 new_lt20(xwv28001, xwv29001, app(ty_Ratio, cbe)) -> new_lt13(xwv28001, xwv29001, cbe) 27.70/11.36 new_esEs21(xwv28001, xwv29001, ty_Char) -> new_esEs16(xwv28001, xwv29001) 27.70/11.36 new_esEs4(Just(xwv400), Just(xwv3000), ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.36 new_lt20(xwv28001, xwv29001, ty_Integer) -> new_lt7(xwv28001, xwv29001) 27.70/11.36 new_esEs29(xwv40, xwv300, app(ty_Ratio, bga)) -> new_esEs14(xwv40, xwv300, bga) 27.70/11.36 new_compare28(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Integer) -> new_compare8(new_sr0(xwv28000, xwv29001), new_sr0(xwv29000, xwv28001)) 27.70/11.36 new_esEs19(xwv400, xwv3000, app(app(ty_Either, bdd), bde)) -> new_esEs6(xwv400, xwv3000, bdd, bde) 27.70/11.36 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_Maybe, df)) -> new_esEs4(xwv400, xwv3000, df) 27.70/11.36 new_esEs25(xwv401, xwv3001, app(app(ty_Either, chb), chc)) -> new_esEs6(xwv401, xwv3001, chb, chc) 27.70/11.36 new_primCompAux0(xwv153, EQ) -> xwv153 27.70/11.36 new_ltEs18(xwv28001, xwv29001, app(ty_Ratio, bca)) -> new_ltEs11(xwv28001, xwv29001, bca) 27.70/11.36 new_lt19(xwv28000, xwv29000, app(ty_Ratio, caf)) -> new_lt13(xwv28000, xwv29000, caf) 27.70/11.36 new_ltEs19(xwv2800, xwv2900, app(ty_Maybe, bef)) -> new_ltEs7(xwv2800, xwv2900, bef) 27.70/11.36 new_primEqInt(Neg(Succ(xwv4000)), Neg(Zero)) -> False 27.70/11.36 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 27.70/11.36 new_lt19(xwv28000, xwv29000, ty_Integer) -> new_lt7(xwv28000, xwv29000) 27.70/11.36 new_ltEs18(xwv28001, xwv29001, ty_@0) -> new_ltEs15(xwv28001, xwv29001) 27.70/11.36 new_esEs20(xwv28000, xwv29000, ty_Char) -> new_esEs16(xwv28000, xwv29000) 27.70/11.36 new_primEqInt(Pos(Succ(xwv4000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 27.70/11.36 new_ltEs10(GT, GT) -> True 27.70/11.36 new_ltEs20(xwv28002, xwv29002, app(app(ty_Either, cce), ccf)) -> new_ltEs6(xwv28002, xwv29002, cce, ccf) 27.70/11.36 new_compare19(xwv117, xwv118, False, dbe) -> GT 27.70/11.36 new_esEs20(xwv28000, xwv29000, app(app(ty_Either, bcf), bcg)) -> new_esEs6(xwv28000, xwv29000, bcf, bcg) 27.70/11.36 new_compare23(Just(xwv2800), Just(xwv2900), False, bee) -> new_compare19(xwv2800, xwv2900, new_ltEs19(xwv2800, xwv2900, bee), bee) 27.70/11.36 new_primEqInt(Pos(Succ(xwv4000)), Neg(xwv3000)) -> False 27.70/11.36 new_primEqInt(Neg(Succ(xwv4000)), Pos(xwv3000)) -> False 27.70/11.36 new_compare29(xwv28000, xwv29000, app(app(ty_Either, bhh), caa)) -> new_compare26(xwv28000, xwv29000, bhh, caa) 27.70/11.36 new_compare14(xwv28, xwv29) -> new_primCmpInt(xwv28, xwv29) 27.70/11.36 new_compare23(Nothing, Just(xwv2900), False, bee) -> LT 27.70/11.36 new_esEs22(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.36 new_esEs27(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.36 new_compare211(xwv28000, xwv29000, True, bch, bda) -> EQ 27.70/11.36 new_ltEs19(xwv2800, xwv2900, app(app(ty_Either, gc), eh)) -> new_ltEs6(xwv2800, xwv2900, gc, eh) 27.70/11.36 new_esEs29(xwv40, xwv300, app(ty_Maybe, bfe)) -> new_esEs4(xwv40, xwv300, bfe) 27.70/11.36 new_esEs22(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.36 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 27.70/11.36 new_ltEs10(LT, EQ) -> True 27.70/11.36 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(ty_Either, dcb), dcc)) -> new_ltEs6(xwv28000, xwv29000, dcb, dcc) 27.70/11.36 new_lt8(xwv28000, xwv29000, ty_Bool) -> new_lt10(xwv28000, xwv29000) 27.70/11.36 new_compare26(xwv28000, xwv29000, bcf, bcg) -> new_compare27(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bcf, bcg), bcf, bcg) 27.70/11.36 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_@0, eh) -> new_ltEs15(xwv28000, xwv29000) 27.70/11.36 new_primCmpNat1(Succ(xwv2900), xwv2800) -> new_primCmpNat2(xwv2900, xwv2800) 27.70/11.36 new_esEs6(Left(xwv400), Left(xwv3000), ty_Float, bd) -> new_esEs13(xwv400, xwv3000) 27.70/11.36 new_esEs19(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.36 new_lt20(xwv28001, xwv29001, ty_Char) -> new_lt15(xwv28001, xwv29001) 27.70/11.36 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_Maybe, dbf)) -> new_ltEs7(xwv28000, xwv29000, dbf) 27.70/11.36 new_esEs15(EQ, EQ) -> True 27.70/11.36 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Float) -> new_ltEs17(xwv28000, xwv29000) 27.70/11.36 new_esEs23(xwv401, xwv3001, ty_Float) -> new_esEs13(xwv401, xwv3001) 27.70/11.36 new_fsEs(xwv123) -> new_not(new_esEs15(xwv123, GT)) 27.70/11.36 new_esEs19(xwv400, xwv3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(xwv400, xwv3000, bdf, bdg) 27.70/11.36 new_compare23(Nothing, Nothing, False, bee) -> LT 27.70/11.36 new_compare24(xwv28000, xwv29000, False, ed, ee, ef) -> new_compare11(xwv28000, xwv29000, new_ltEs5(xwv28000, xwv29000, ed, ee, ef), ed, ee, ef) 27.70/11.36 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(ty_@2, hc), hd)) -> new_ltEs12(xwv28000, xwv29000, hc, hd) 27.70/11.36 new_primPlusNat0(xwv101, xwv300000) -> new_primPlusNat1(xwv101, Succ(xwv300000)) 27.70/11.36 new_esEs4(Just(xwv400), Just(xwv3000), ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.36 new_compare29(xwv28000, xwv29000, ty_Double) -> new_compare7(xwv28000, xwv29000) 27.70/11.36 new_ltEs6(Right(xwv28000), Left(xwv29000), gc, eh) -> False 27.70/11.36 new_not(False) -> True 27.70/11.36 new_lt20(xwv28001, xwv29001, ty_@0) -> new_lt4(xwv28001, xwv29001) 27.70/11.36 new_compare1([], :(xwv29000, xwv29001), bce) -> LT 27.70/11.36 new_esEs21(xwv28001, xwv29001, ty_@0) -> new_esEs8(xwv28001, xwv29001) 27.70/11.36 new_esEs11(Double(xwv400, xwv401), Double(xwv3000, xwv3001)) -> new_esEs17(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 27.70/11.36 new_lt19(xwv28000, xwv29000, app(ty_[], hf)) -> new_lt5(xwv28000, xwv29000, hf) 27.70/11.36 new_primCmpInt(Neg(Succ(xwv2800)), Neg(xwv290)) -> new_primCmpNat1(xwv290, xwv2800) 27.70/11.36 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.36 new_lt13(xwv28000, xwv29000, caf) -> new_esEs15(new_compare28(xwv28000, xwv29000, caf), LT) 27.70/11.36 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Char) -> new_ltEs13(xwv28000, xwv29000) 27.70/11.36 new_lt12(xwv28000, xwv29000, bcf, bcg) -> new_esEs15(new_compare26(xwv28000, xwv29000, bcf, bcg), LT) 27.70/11.36 new_esEs29(xwv40, xwv300, app(app(ty_Either, cg), bd)) -> new_esEs6(xwv40, xwv300, cg, bd) 27.70/11.36 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_[], he)) -> new_ltEs16(xwv28000, xwv29000, he) 27.70/11.36 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_[], be), bd) -> new_esEs9(xwv400, xwv3000, be) 27.70/11.36 new_esEs20(xwv28000, xwv29000, ty_Bool) -> new_esEs12(xwv28000, xwv29000) 27.70/11.36 new_esEs22(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.36 new_ltEs10(EQ, GT) -> True 27.70/11.36 new_lt17(xwv28000, xwv29000) -> new_esEs15(new_compare7(xwv28000, xwv29000), LT) 27.70/11.36 new_compare25(xwv28000, xwv29000, True) -> EQ 27.70/11.36 new_compare27(xwv28000, xwv29000, True, bcf, bcg) -> EQ 27.70/11.36 new_compare27(xwv28000, xwv29000, False, bcf, bcg) -> new_compare17(xwv28000, xwv29000, new_ltEs6(xwv28000, xwv29000, bcf, bcg), bcf, bcg) 27.70/11.36 new_esEs29(xwv40, xwv300, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xwv40, xwv300, bfc, bfd) 27.70/11.36 new_ltEs10(EQ, EQ) -> True 27.70/11.36 new_esEs19(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.36 new_esEs29(xwv40, xwv300, ty_Bool) -> new_esEs12(xwv40, xwv300) 27.70/11.36 new_esEs5(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bff, bfg, bfh) -> new_asAs(new_esEs24(xwv400, xwv3000, bff), new_asAs(new_esEs25(xwv401, xwv3001, bfg), new_esEs26(xwv402, xwv3002, bfh))) 27.70/11.36 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, fa), fb), fc), eh) -> new_ltEs5(xwv28000, xwv29000, fa, fb, fc) 27.70/11.36 new_ltEs18(xwv28001, xwv29001, ty_Float) -> new_ltEs17(xwv28001, xwv29001) 27.70/11.36 new_lt20(xwv28001, xwv29001, app(ty_[], cbh)) -> new_lt5(xwv28001, xwv29001, cbh) 27.70/11.36 new_esEs23(xwv401, xwv3001, ty_Ordering) -> new_esEs15(xwv401, xwv3001) 27.70/11.36 new_compare10(xwv28000, xwv29000, True) -> LT 27.70/11.36 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 27.70/11.36 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 27.70/11.36 new_lt20(xwv28001, xwv29001, ty_Double) -> new_lt17(xwv28001, xwv29001) 27.70/11.36 new_primPlusNat1(Zero, Zero) -> Zero 27.70/11.36 new_lt19(xwv28000, xwv29000, ty_Char) -> new_lt15(xwv28000, xwv29000) 27.70/11.36 new_esEs20(xwv28000, xwv29000, ty_Integer) -> new_esEs10(xwv28000, xwv29000) 27.70/11.36 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Integer, eh) -> new_ltEs9(xwv28000, xwv29000) 27.70/11.36 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.36 new_lt8(xwv28000, xwv29000, ty_Float) -> new_lt18(xwv28000, xwv29000) 27.70/11.36 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.36 new_esEs25(xwv401, xwv3001, app(ty_Maybe, chf)) -> new_esEs4(xwv401, xwv3001, chf) 27.70/11.36 new_lt8(xwv28000, xwv29000, app(ty_Ratio, bag)) -> new_lt13(xwv28000, xwv29000, bag) 27.70/11.36 new_esEs18(xwv28000, xwv29000, ty_Int) -> new_esEs17(xwv28000, xwv29000) 27.70/11.36 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_[], dcg)) -> new_ltEs16(xwv28000, xwv29000, dcg) 27.70/11.36 new_lt4(xwv28000, xwv29000) -> new_esEs15(new_compare9(xwv28000, xwv29000), LT) 27.70/11.36 new_esEs4(Just(xwv400), Just(xwv3000), ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.36 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 27.70/11.36 new_esEs23(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 27.70/11.36 new_lt19(xwv28000, xwv29000, ty_@0) -> new_lt4(xwv28000, xwv29000) 27.70/11.36 new_esEs18(xwv28000, xwv29000, app(app(ty_Either, bae), baf)) -> new_esEs6(xwv28000, xwv29000, bae, baf) 27.70/11.36 new_primMulNat0(Succ(xwv40100), Succ(xwv300000)) -> new_primPlusNat0(new_primMulNat0(xwv40100, Succ(xwv300000)), xwv300000) 27.70/11.36 new_compare7(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.36 new_compare7(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.36 new_esEs22(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.36 new_ltEs15(xwv2800, xwv2900) -> new_fsEs(new_compare9(xwv2800, xwv2900)) 27.70/11.36 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Integer) -> new_ltEs9(xwv28000, xwv29000) 27.70/11.36 new_primCmpInt(Pos(Zero), Pos(Succ(xwv2900))) -> new_primCmpNat1(Zero, xwv2900) 27.70/11.36 new_esEs26(xwv402, xwv3002, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs5(xwv402, xwv3002, dba, dbb, dbc) 27.70/11.36 new_esEs21(xwv28001, xwv29001, app(app(ty_@2, cbf), cbg)) -> new_esEs7(xwv28001, xwv29001, cbf, cbg) 27.70/11.36 new_esEs19(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.36 new_esEs24(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.36 new_esEs26(xwv402, xwv3002, app(ty_Ratio, dbd)) -> new_esEs14(xwv402, xwv3002, dbd) 27.70/11.36 new_lt20(xwv28001, xwv29001, app(app(ty_@2, cbf), cbg)) -> new_lt14(xwv28001, xwv29001, cbf, cbg) 27.70/11.36 new_esEs21(xwv28001, xwv29001, ty_Ordering) -> new_esEs15(xwv28001, xwv29001) 27.70/11.36 new_esEs4(Just(xwv400), Just(xwv3000), app(app(ty_@2, bge), bgf)) -> new_esEs7(xwv400, xwv3000, bge, bgf) 27.70/11.36 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(ty_@2, dce), dcf)) -> new_ltEs12(xwv28000, xwv29000, dce, dcf) 27.70/11.36 new_esEs29(xwv40, xwv300, ty_Integer) -> new_esEs10(xwv40, xwv300) 27.70/11.36 new_compare16(xwv28000, xwv29000) -> new_compare25(xwv28000, xwv29000, new_esEs12(xwv28000, xwv29000)) 27.70/11.36 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 27.70/11.36 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 27.70/11.36 new_esEs9([], [], bdb) -> True 27.70/11.36 new_esEs4(Just(xwv400), Just(xwv3000), ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.36 new_esEs22(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.36 new_compare25(xwv28000, xwv29000, False) -> new_compare10(xwv28000, xwv29000, new_ltEs8(xwv28000, xwv29000)) 27.70/11.36 new_esEs29(xwv40, xwv300, app(ty_[], bdb)) -> new_esEs9(xwv40, xwv300, bdb) 27.70/11.36 new_esEs26(xwv402, xwv3002, app(ty_Maybe, dah)) -> new_esEs4(xwv402, xwv3002, dah) 27.70/11.36 new_primEqNat0(Zero, Zero) -> True 27.70/11.36 new_lt19(xwv28000, xwv29000, ty_Ordering) -> new_lt6(xwv28000, xwv29000) 27.70/11.36 new_esEs21(xwv28001, xwv29001, ty_Double) -> new_esEs11(xwv28001, xwv29001) 27.70/11.36 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Double) -> new_ltEs4(xwv28000, xwv29000) 27.70/11.36 new_compare31(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.36 new_compare31(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.36 new_lt15(xwv28000, xwv29000) -> new_esEs15(new_compare13(xwv28000, xwv29000), LT) 27.70/11.36 new_ltEs10(LT, GT) -> True 27.70/11.36 new_asAs(False, xwv57) -> False 27.70/11.36 new_esEs19(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.36 new_ltEs13(xwv2800, xwv2900) -> new_fsEs(new_compare13(xwv2800, xwv2900)) 27.70/11.36 new_esEs19(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.36 new_ltEs19(xwv2800, xwv2900, ty_Int) -> new_ltEs14(xwv2800, xwv2900) 27.70/11.36 new_ltEs20(xwv28002, xwv29002, ty_Float) -> new_ltEs17(xwv28002, xwv29002) 27.70/11.36 new_lt20(xwv28001, xwv29001, ty_Ordering) -> new_lt6(xwv28001, xwv29001) 27.70/11.36 new_esEs25(xwv401, xwv3001, ty_Float) -> new_esEs13(xwv401, xwv3001) 27.70/11.36 new_ltEs6(Left(xwv28000), Right(xwv29000), gc, eh) -> True 27.70/11.36 new_ltEs19(xwv2800, xwv2900, ty_Ordering) -> new_ltEs10(xwv2800, xwv2900) 27.70/11.36 new_ltEs20(xwv28002, xwv29002, ty_Ordering) -> new_ltEs10(xwv28002, xwv29002) 27.70/11.36 new_esEs18(xwv28000, xwv29000, ty_Integer) -> new_esEs10(xwv28000, xwv29000) 27.70/11.36 new_ltEs5(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), beg, beh, bfa) -> new_pePe(new_lt19(xwv28000, xwv29000, beg), new_asAs(new_esEs20(xwv28000, xwv29000, beg), new_pePe(new_lt20(xwv28001, xwv29001, beh), new_asAs(new_esEs21(xwv28001, xwv29001, beh), new_ltEs20(xwv28002, xwv29002, bfa))))) 27.70/11.36 new_lt19(xwv28000, xwv29000, app(app(ty_@2, bch), bda)) -> new_lt14(xwv28000, xwv29000, bch, bda) 27.70/11.36 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.36 new_lt8(xwv28000, xwv29000, app(ty_Maybe, baa)) -> new_lt9(xwv28000, xwv29000, baa) 27.70/11.36 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.36 new_compare29(xwv28000, xwv29000, ty_Integer) -> new_compare8(xwv28000, xwv29000) 27.70/11.36 new_esEs20(xwv28000, xwv29000, ty_Int) -> new_esEs17(xwv28000, xwv29000) 27.70/11.36 new_ltEs19(xwv2800, xwv2900, ty_Float) -> new_ltEs17(xwv2800, xwv2900) 27.70/11.36 new_ltEs20(xwv28002, xwv29002, ty_Int) -> new_ltEs14(xwv28002, xwv29002) 27.70/11.36 new_esEs18(xwv28000, xwv29000, app(ty_[], bbb)) -> new_esEs9(xwv28000, xwv29000, bbb) 27.70/11.36 new_esEs20(xwv28000, xwv29000, app(app(ty_@2, bch), bda)) -> new_esEs7(xwv28000, xwv29000, bch, bda) 27.70/11.36 27.70/11.36 The set Q consists of the following terms: 27.70/11.36 27.70/11.36 new_compare29(x0, x1, ty_Int) 27.70/11.36 new_esEs22(x0, x1, ty_Float) 27.70/11.36 new_esEs21(x0, x1, ty_Double) 27.70/11.36 new_esEs19(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_esEs4(Just(x0), Just(x1), ty_Ordering) 27.70/11.36 new_pePe(False, x0) 27.70/11.36 new_primCompAux0(x0, EQ) 27.70/11.36 new_esEs26(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_compare1([], :(x0, x1), x2) 27.70/11.36 new_esEs4(Just(x0), Just(x1), ty_Double) 27.70/11.36 new_primPlusNat1(Zero, Zero) 27.70/11.36 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 27.70/11.36 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 27.70/11.36 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 27.70/11.36 new_primPlusNat1(Succ(x0), Zero) 27.70/11.36 new_ltEs10(LT, LT) 27.70/11.36 new_compare29(x0, x1, ty_Char) 27.70/11.36 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 27.70/11.36 new_esEs21(x0, x1, ty_Int) 27.70/11.36 new_sr(x0, x1) 27.70/11.36 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_esEs20(x0, x1, ty_Double) 27.70/11.36 new_ltEs19(x0, x1, app(ty_[], x2)) 27.70/11.36 new_primEqInt(Pos(Zero), Pos(Zero)) 27.70/11.36 new_esEs4(Just(x0), Nothing, x1) 27.70/11.36 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 27.70/11.36 new_esEs16(Char(x0), Char(x1)) 27.70/11.36 new_primCmpNat2(Zero, Succ(x0)) 27.70/11.36 new_esEs17(x0, x1) 27.70/11.36 new_compare13(Char(x0), Char(x1)) 27.70/11.36 new_esEs28(x0, x1, ty_Int) 27.70/11.36 new_lt19(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_ltEs15(x0, x1) 27.70/11.36 new_esEs24(x0, x1, ty_Float) 27.70/11.36 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 27.70/11.36 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_lt8(x0, x1, ty_Char) 27.70/11.36 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_esEs20(x0, x1, ty_Ordering) 27.70/11.36 new_esEs18(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_esEs21(x0, x1, ty_Ordering) 27.70/11.36 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 27.70/11.36 new_compare29(x0, x1, ty_Ordering) 27.70/11.36 new_primEqInt(Neg(Zero), Neg(Zero)) 27.70/11.36 new_esEs25(x0, x1, ty_Float) 27.70/11.36 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 27.70/11.36 new_compare17(x0, x1, True, x2, x3) 27.70/11.36 new_esEs15(EQ, GT) 27.70/11.36 new_esEs15(GT, EQ) 27.70/11.36 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 27.70/11.36 new_lt20(x0, x1, ty_Ordering) 27.70/11.36 new_esEs15(LT, LT) 27.70/11.36 new_esEs12(False, True) 27.70/11.36 new_esEs12(True, False) 27.70/11.36 new_esEs29(x0, x1, app(ty_[], x2)) 27.70/11.36 new_compare210(x0, x1, True) 27.70/11.36 new_compare28(:%(x0, x1), :%(x2, x3), ty_Int) 27.70/11.36 new_esEs29(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_ltEs13(x0, x1) 27.70/11.36 new_asAs(True, x0) 27.70/11.36 new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 27.70/11.36 new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 27.70/11.36 new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 27.70/11.36 new_compare14(x0, x1) 27.70/11.36 new_ltEs8(False, False) 27.70/11.36 new_compare211(x0, x1, True, x2, x3) 27.70/11.36 new_lt20(x0, x1, ty_Double) 27.70/11.36 new_compare29(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_esEs21(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_ltEs10(GT, EQ) 27.70/11.36 new_ltEs10(EQ, GT) 27.70/11.36 new_lt8(x0, x1, ty_Int) 27.70/11.36 new_ltEs7(Just(x0), Just(x1), ty_Float) 27.70/11.36 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 27.70/11.36 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_lt8(x0, x1, ty_@0) 27.70/11.36 new_compare29(x0, x1, ty_Double) 27.70/11.36 new_esEs25(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_ltEs18(x0, x1, ty_Double) 27.70/11.36 new_compare27(x0, x1, True, x2, x3) 27.70/11.36 new_compare29(x0, x1, ty_Bool) 27.70/11.36 new_primEqInt(Pos(Zero), Neg(Zero)) 27.70/11.36 new_primEqInt(Neg(Zero), Pos(Zero)) 27.70/11.36 new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 27.70/11.36 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 27.70/11.36 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 27.70/11.36 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 27.70/11.36 new_ltEs7(Nothing, Nothing, x0) 27.70/11.36 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 27.70/11.36 new_esEs25(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 27.70/11.36 new_esEs24(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 27.70/11.36 new_compare29(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 27.70/11.36 new_compare15(x0, x1, x2, x3, x4) 27.70/11.36 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_compare10(x0, x1, False) 27.70/11.36 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 27.70/11.36 new_primCmpNat0(x0, Succ(x1)) 27.70/11.36 new_lt15(x0, x1) 27.70/11.36 new_lt20(x0, x1, app(ty_[], x2)) 27.70/11.36 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_compare110(x0, x1, True) 27.70/11.36 new_esEs29(x0, x1, ty_Int) 27.70/11.36 new_primMulInt(Pos(x0), Pos(x1)) 27.70/11.36 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 27.70/11.36 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_lt12(x0, x1, x2, x3) 27.70/11.36 new_esEs19(x0, x1, ty_Ordering) 27.70/11.36 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_compare29(x0, x1, ty_Integer) 27.70/11.36 new_esEs22(x0, x1, ty_Bool) 27.70/11.36 new_primMulInt(Pos(x0), Neg(x1)) 27.70/11.36 new_primMulInt(Neg(x0), Pos(x1)) 27.70/11.36 new_esEs24(x0, x1, ty_@0) 27.70/11.36 new_ltEs10(EQ, LT) 27.70/11.36 new_ltEs10(GT, GT) 27.70/11.36 new_ltEs10(LT, EQ) 27.70/11.36 new_esEs21(x0, x1, ty_Bool) 27.70/11.36 new_esEs23(x0, x1, ty_Integer) 27.70/11.36 new_lt13(x0, x1, x2) 27.70/11.36 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 27.70/11.36 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 27.70/11.36 new_esEs15(LT, GT) 27.70/11.36 new_esEs15(GT, LT) 27.70/11.36 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 27.70/11.36 new_esEs29(x0, x1, ty_Char) 27.70/11.36 new_ltEs19(x0, x1, ty_Float) 27.70/11.36 new_esEs19(x0, x1, ty_Int) 27.70/11.36 new_esEs4(Nothing, Nothing, x0) 27.70/11.36 new_esEs23(x0, x1, ty_Bool) 27.70/11.36 new_compare1(:(x0, x1), [], x2) 27.70/11.36 new_primCompAux0(x0, LT) 27.70/11.36 new_sr0(Integer(x0), Integer(x1)) 27.70/11.36 new_esEs20(x0, x1, ty_@0) 27.70/11.36 new_compare27(x0, x1, False, x2, x3) 27.70/11.36 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_ltEs19(x0, x1, ty_Char) 27.70/11.36 new_esEs18(x0, x1, ty_Double) 27.70/11.36 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 27.70/11.36 new_esEs18(x0, x1, ty_Ordering) 27.70/11.36 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 27.70/11.36 new_esEs25(x0, x1, ty_@0) 27.70/11.36 new_lt17(x0, x1) 27.70/11.36 new_compare8(Integer(x0), Integer(x1)) 27.70/11.36 new_lt8(x0, x1, ty_Double) 27.70/11.36 new_lt20(x0, x1, ty_Char) 27.70/11.36 new_esEs26(x0, x1, ty_Integer) 27.70/11.36 new_esEs29(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_compare29(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_esEs4(Just(x0), Just(x1), ty_Bool) 27.70/11.36 new_ltEs19(x0, x1, ty_Int) 27.70/11.36 new_compare28(:%(x0, x1), :%(x2, x3), ty_Integer) 27.70/11.36 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 27.70/11.36 new_primCompAux1(x0, x1, x2, x3) 27.70/11.36 new_esEs19(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_lt20(x0, x1, ty_Int) 27.70/11.36 new_compare29(x0, x1, ty_@0) 27.70/11.36 new_esEs19(x0, x1, ty_Float) 27.70/11.36 new_esEs25(x0, x1, ty_Integer) 27.70/11.36 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_primCmpInt(Neg(Zero), Neg(Zero)) 27.70/11.36 new_ltEs6(Right(x0), Left(x1), x2, x3) 27.70/11.36 new_ltEs20(x0, x1, ty_Float) 27.70/11.36 new_ltEs6(Left(x0), Right(x1), x2, x3) 27.70/11.36 new_compare23(Nothing, Just(x0), False, x1) 27.70/11.36 new_compare23(Nothing, Nothing, False, x0) 27.70/11.36 new_esEs23(x0, x1, app(ty_[], x2)) 27.70/11.36 new_esEs27(x0, x1, ty_Int) 27.70/11.36 new_esEs26(x0, x1, ty_Float) 27.70/11.36 new_ltEs7(Just(x0), Just(x1), ty_Double) 27.70/11.36 new_compare210(x0, x1, False) 27.70/11.36 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 27.70/11.36 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_esEs23(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_ltEs14(x0, x1) 27.70/11.36 new_esEs26(x0, x1, ty_Bool) 27.70/11.36 new_primCmpInt(Pos(Zero), Neg(Zero)) 27.70/11.36 new_primCmpInt(Neg(Zero), Pos(Zero)) 27.70/11.36 new_esEs20(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_esEs20(x0, x1, app(ty_[], x2)) 27.70/11.36 new_esEs27(x0, x1, ty_Integer) 27.70/11.36 new_esEs22(x0, x1, ty_Integer) 27.70/11.36 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_lt8(x0, x1, app(ty_[], x2)) 27.70/11.36 new_compare29(x0, x1, app(ty_[], x2)) 27.70/11.36 new_lt14(x0, x1, x2, x3) 27.70/11.36 new_esEs21(x0, x1, ty_Char) 27.70/11.36 new_esEs21(x0, x1, ty_Integer) 27.70/11.36 new_ltEs8(True, False) 27.70/11.36 new_ltEs8(False, True) 27.70/11.36 new_esEs4(Just(x0), Just(x1), ty_Char) 27.70/11.36 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 27.70/11.36 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_lt5(x0, x1, x2) 27.70/11.36 new_lt20(x0, x1, ty_Float) 27.70/11.36 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 27.70/11.36 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 27.70/11.36 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 27.70/11.36 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 27.70/11.36 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 27.70/11.36 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_lt19(x0, x1, ty_Double) 27.70/11.36 new_compare11(x0, x1, False, x2, x3, x4) 27.70/11.36 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 27.70/11.36 new_compare29(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 27.70/11.36 new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 27.70/11.36 new_lt20(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_esEs29(x0, x1, ty_Ordering) 27.70/11.36 new_esEs19(x0, x1, ty_Char) 27.70/11.36 new_esEs23(x0, x1, ty_Float) 27.70/11.36 new_esEs9(:(x0, x1), [], x2) 27.70/11.36 new_ltEs18(x0, x1, ty_Ordering) 27.70/11.36 new_esEs4(Just(x0), Just(x1), ty_Int) 27.70/11.36 new_compare19(x0, x1, False, x2) 27.70/11.36 new_lt19(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_esEs4(Just(x0), Just(x1), ty_Float) 27.70/11.36 new_esEs26(x0, x1, app(ty_[], x2)) 27.70/11.36 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 27.70/11.36 new_lt19(x0, x1, ty_@0) 27.70/11.36 new_esEs29(x0, x1, ty_Integer) 27.70/11.36 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 27.70/11.36 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 27.70/11.36 new_esEs22(x0, x1, ty_Ordering) 27.70/11.36 new_lt20(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_primCmpNat2(Succ(x0), Zero) 27.70/11.36 new_esEs24(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_esEs23(x0, x1, ty_Int) 27.70/11.36 new_lt19(x0, x1, ty_Int) 27.70/11.36 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_esEs22(x0, x1, ty_Double) 27.70/11.36 new_ltEs7(Just(x0), Just(x1), ty_Char) 27.70/11.36 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_primCmpNat2(Succ(x0), Succ(x1)) 27.70/11.36 new_esEs21(x0, x1, ty_Float) 27.70/11.36 new_esEs19(x0, x1, ty_Bool) 27.70/11.36 new_lt19(x0, x1, app(ty_[], x2)) 27.70/11.36 new_compare25(x0, x1, False) 27.70/11.36 new_ltEs20(x0, x1, ty_Char) 27.70/11.36 new_esEs26(x0, x1, ty_Char) 27.70/11.36 new_esEs25(x0, x1, ty_Ordering) 27.70/11.36 new_lt11(x0, x1, x2, x3, x4) 27.70/11.36 new_ltEs18(x0, x1, ty_Integer) 27.70/11.36 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 27.70/11.36 new_primMulNat0(Zero, Zero) 27.70/11.36 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 27.70/11.36 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 27.70/11.36 new_ltEs19(x0, x1, ty_Integer) 27.70/11.36 new_esEs24(x0, x1, ty_Double) 27.70/11.36 new_primEqNat0(Succ(x0), Zero) 27.70/11.36 new_esEs15(EQ, EQ) 27.70/11.36 new_primEqNat0(Succ(x0), Succ(x1)) 27.70/11.36 new_esEs25(x0, x1, ty_Int) 27.70/11.36 new_ltEs18(x0, x1, ty_Bool) 27.70/11.36 new_esEs23(x0, x1, ty_Char) 27.70/11.36 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_ltEs19(x0, x1, ty_Bool) 27.70/11.36 new_esEs26(x0, x1, ty_Int) 27.70/11.36 new_lt20(x0, x1, ty_Integer) 27.70/11.36 new_ltEs10(EQ, EQ) 27.70/11.36 new_ltEs7(Just(x0), Nothing, x1) 27.70/11.36 new_esEs19(x0, x1, ty_Integer) 27.70/11.36 new_compare9(@0, @0) 27.70/11.36 new_ltEs19(x0, x1, ty_@0) 27.70/11.36 new_compare110(x0, x1, False) 27.70/11.36 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_ltEs20(x0, x1, ty_Int) 27.70/11.36 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 27.70/11.36 new_lt4(x0, x1) 27.70/11.36 new_esEs24(x0, x1, ty_Ordering) 27.70/11.36 new_esEs19(x0, x1, ty_@0) 27.70/11.36 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 27.70/11.36 new_lt8(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_compare29(x0, x1, ty_Float) 27.70/11.36 new_lt8(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_esEs18(x0, x1, ty_Char) 27.70/11.36 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 27.70/11.36 new_primCmpNat2(Zero, Zero) 27.70/11.36 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 27.70/11.36 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 27.70/11.36 new_esEs18(x0, x1, ty_@0) 27.70/11.36 new_compare6(x0, x1, x2) 27.70/11.36 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 27.70/11.36 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_lt10(x0, x1) 27.70/11.36 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 27.70/11.36 new_ltEs7(Just(x0), Just(x1), ty_Int) 27.70/11.36 new_compare24(x0, x1, False, x2, x3, x4) 27.70/11.36 new_asAs(False, x0) 27.70/11.36 new_esEs29(x0, x1, ty_Bool) 27.70/11.36 new_esEs23(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 27.70/11.36 new_primEqNat0(Zero, Succ(x0)) 27.70/11.36 new_not(True) 27.70/11.36 new_lt20(x0, x1, ty_Bool) 27.70/11.36 new_esEs22(x0, x1, ty_Char) 27.70/11.36 new_ltEs10(GT, LT) 27.70/11.36 new_ltEs7(Just(x0), Just(x1), ty_@0) 27.70/11.36 new_ltEs10(LT, GT) 27.70/11.36 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 27.70/11.36 new_esEs22(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_lt8(x0, x1, ty_Float) 27.70/11.36 new_esEs12(False, False) 27.70/11.36 new_ltEs20(x0, x1, ty_Double) 27.70/11.36 new_esEs22(x0, x1, app(ty_[], x2)) 27.70/11.36 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 27.70/11.36 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 27.70/11.36 new_ltEs20(x0, x1, ty_@0) 27.70/11.36 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_esEs20(x0, x1, ty_Integer) 27.70/11.36 new_esEs26(x0, x1, ty_Ordering) 27.70/11.36 new_ltEs4(x0, x1) 27.70/11.36 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 27.70/11.36 new_esEs9([], [], x0) 27.70/11.36 new_esEs18(x0, x1, ty_Integer) 27.70/11.36 new_compare18(x0, x1, True, x2, x3) 27.70/11.36 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_esEs25(x0, x1, ty_Char) 27.70/11.36 new_primMulNat0(Zero, Succ(x0)) 27.70/11.36 new_primCmpNat0(x0, Zero) 27.70/11.36 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 27.70/11.36 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 27.70/11.36 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 27.70/11.36 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 27.70/11.36 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 27.70/11.36 new_esEs29(x0, x1, ty_Float) 27.70/11.36 new_ltEs16(x0, x1, x2) 27.70/11.36 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 27.70/11.36 new_esEs18(x0, x1, ty_Bool) 27.70/11.36 new_esEs22(x0, x1, ty_Int) 27.70/11.36 new_primPlusNat1(Zero, Succ(x0)) 27.70/11.36 new_esEs20(x0, x1, ty_Bool) 27.70/11.36 new_compare23(x0, x1, True, x2) 27.70/11.36 new_ltEs7(Nothing, Just(x0), x1) 27.70/11.36 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 27.70/11.36 new_lt6(x0, x1) 27.70/11.36 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 27.70/11.36 new_esEs20(x0, x1, app(ty_Ratio, x2)) 27.70/11.36 new_esEs4(Just(x0), Just(x1), ty_Integer) 27.70/11.36 new_ltEs18(x0, x1, ty_Char) 27.70/11.36 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 27.70/11.36 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 27.70/11.36 new_esEs25(x0, x1, ty_Double) 27.70/11.36 new_compare17(x0, x1, False, x2, x3) 27.70/11.36 new_ltEs18(x0, x1, ty_@0) 27.70/11.36 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_esEs25(x0, x1, ty_Bool) 27.70/11.36 new_esEs29(x0, x1, ty_@0) 27.70/11.36 new_esEs21(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_esEs26(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_lt18(x0, x1) 27.70/11.36 new_esEs24(x0, x1, app(ty_[], x2)) 27.70/11.36 new_esEs9([], :(x0, x1), x2) 27.70/11.36 new_lt19(x0, x1, ty_Ordering) 27.70/11.36 new_esEs22(x0, x1, ty_@0) 27.70/11.36 new_ltEs18(x0, x1, ty_Int) 27.70/11.36 new_esEs23(x0, x1, ty_Ordering) 27.70/11.36 new_ltEs20(x0, x1, app(ty_[], x2)) 27.70/11.36 new_ltEs20(x0, x1, ty_Bool) 27.70/11.36 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 27.70/11.36 new_primCmpInt(Pos(Zero), Pos(Zero)) 27.70/11.36 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 27.70/11.36 new_ltEs11(x0, x1, x2) 27.70/11.36 new_esEs9(:(x0, x1), :(x2, x3), x4) 27.70/11.36 new_pePe(True, x0) 27.70/11.36 new_ltEs7(Just(x0), Just(x1), ty_Integer) 27.70/11.36 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 27.70/11.36 new_ltEs19(x0, x1, ty_Ordering) 27.70/11.36 new_compare25(x0, x1, True) 27.70/11.36 new_primMulInt(Neg(x0), Neg(x1)) 27.70/11.36 new_lt19(x0, x1, ty_Integer) 27.70/11.36 new_esEs6(Left(x0), Right(x1), x2, x3) 27.70/11.36 new_esEs6(Right(x0), Left(x1), x2, x3) 27.70/11.36 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 27.70/11.36 new_compare12(x0, x1) 27.70/11.36 new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 27.70/11.36 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 27.70/11.36 new_esEs18(x0, x1, ty_Float) 27.70/11.36 new_ltEs18(x0, x1, ty_Float) 27.70/11.36 new_primMulNat0(Succ(x0), Succ(x1)) 27.70/11.36 new_ltEs19(x0, x1, ty_Double) 27.70/11.36 new_compare11(x0, x1, True, x2, x3, x4) 27.70/11.36 new_esEs15(GT, GT) 27.70/11.36 new_primCmpNat1(Zero, x0) 27.70/11.36 new_esEs29(x0, x1, ty_Double) 27.70/11.36 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 27.70/11.36 new_esEs28(x0, x1, ty_Integer) 27.70/11.36 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_esEs15(LT, EQ) 27.70/11.36 new_esEs15(EQ, LT) 27.70/11.36 new_lt19(x0, x1, ty_Bool) 27.70/11.36 new_primPlusNat0(x0, x1) 27.70/11.36 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 27.70/11.36 new_esEs20(x0, x1, ty_Char) 27.70/11.36 new_lt20(x0, x1, ty_@0) 27.70/11.36 new_lt16(x0, x1) 27.70/11.36 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 27.70/11.36 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 27.70/11.36 new_esEs21(x0, x1, ty_@0) 27.70/11.36 new_compare16(x0, x1) 27.70/11.36 new_fsEs(x0) 27.70/11.36 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_esEs24(x0, x1, ty_Integer) 27.70/11.36 new_primPlusNat1(Succ(x0), Succ(x1)) 27.70/11.36 new_compare211(x0, x1, False, x2, x3) 27.70/11.36 new_compare19(x0, x1, True, x2) 27.70/11.36 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_esEs18(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_esEs18(x0, x1, app(ty_[], x2)) 27.70/11.36 new_ltEs20(x0, x1, ty_Integer) 27.70/11.36 new_esEs8(@0, @0) 27.70/11.36 new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 27.70/11.36 new_esEs19(x0, x1, app(ty_[], x2)) 27.70/11.36 new_esEs18(x0, x1, ty_Int) 27.70/11.36 new_esEs20(x0, x1, ty_Int) 27.70/11.36 new_primEqNat0(Zero, Zero) 27.70/11.36 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 27.70/11.36 new_esEs26(x0, x1, ty_Double) 27.70/11.36 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 27.70/11.36 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 27.70/11.36 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_primCmpNat1(Succ(x0), x1) 27.70/11.36 new_esEs12(True, True) 27.70/11.36 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 27.70/11.36 new_esEs10(Integer(x0), Integer(x1)) 27.70/11.36 new_not(False) 27.70/11.36 new_esEs24(x0, x1, ty_Char) 27.70/11.36 new_lt8(x0, x1, ty_Bool) 27.70/11.36 new_esEs26(x0, x1, ty_@0) 27.70/11.36 new_compare10(x0, x1, True) 27.70/11.36 new_ltEs7(Just(x0), Just(x1), ty_Bool) 27.70/11.36 new_ltEs9(x0, x1) 27.70/11.36 new_compare1([], [], x0) 27.70/11.36 new_ltEs20(x0, x1, ty_Ordering) 27.70/11.36 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 27.70/11.36 new_esEs24(x0, x1, ty_Int) 27.70/11.36 new_esEs13(Float(x0, x1), Float(x2, x3)) 27.70/11.36 new_primCompAux0(x0, GT) 27.70/11.36 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 27.70/11.36 new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 27.70/11.36 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_primMulNat0(Succ(x0), Zero) 27.70/11.36 new_ltEs18(x0, x1, app(ty_[], x2)) 27.70/11.36 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_esEs23(x0, x1, ty_Double) 27.70/11.36 new_ltEs8(True, True) 27.70/11.36 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.36 new_esEs20(x0, x1, ty_Float) 27.70/11.36 new_lt7(x0, x1) 27.70/11.36 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_esEs25(x0, x1, app(ty_[], x2)) 27.70/11.36 new_lt8(x0, x1, ty_Ordering) 27.70/11.36 new_lt9(x0, x1, x2) 27.70/11.36 new_lt19(x0, x1, ty_Float) 27.70/11.36 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 27.70/11.36 new_lt8(x0, x1, ty_Integer) 27.70/11.36 new_compare23(Just(x0), Just(x1), False, x2) 27.70/11.36 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 27.70/11.36 new_compare23(Just(x0), Nothing, False, x1) 27.70/11.36 new_compare18(x0, x1, False, x2, x3) 27.70/11.36 new_lt19(x0, x1, ty_Char) 27.70/11.36 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_esEs14(:%(x0, x1), :%(x2, x3), x4) 27.70/11.36 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 27.70/11.36 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 27.70/11.36 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 27.70/11.36 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 27.70/11.36 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 27.70/11.36 new_esEs19(x0, x1, ty_Double) 27.70/11.36 new_esEs22(x0, x1, app(ty_Maybe, x2)) 27.70/11.36 new_esEs21(x0, x1, app(ty_[], x2)) 27.70/11.36 new_compare26(x0, x1, x2, x3) 27.70/11.36 new_esEs23(x0, x1, ty_@0) 27.70/11.36 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.36 new_esEs11(Double(x0, x1), Double(x2, x3)) 27.70/11.36 new_compare24(x0, x1, True, x2, x3, x4) 27.70/11.36 new_compare1(:(x0, x1), :(x2, x3), x4) 27.70/11.36 new_esEs4(Just(x0), Just(x1), ty_@0) 27.70/11.36 new_ltEs17(x0, x1) 27.70/11.36 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 27.70/11.36 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 27.70/11.36 new_esEs4(Nothing, Just(x0), x1) 27.70/11.36 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 27.70/11.36 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.36 new_compare30(x0, x1, x2, x3) 27.70/11.36 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 27.70/11.36 new_esEs24(x0, x1, ty_Bool) 27.70/11.36 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 27.70/11.36 27.70/11.36 We have to consider all minimal (P,Q,R)-chains. 27.70/11.36 ---------------------------------------- 27.70/11.36 27.70/11.36 (24) DependencyGraphProof (EQUIVALENT) 27.70/11.36 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 27.70/11.36 ---------------------------------------- 27.70/11.36 27.70/11.36 (25) 27.70/11.36 Complex Obligation (AND) 27.70/11.36 27.70/11.36 ---------------------------------------- 27.70/11.36 27.70/11.36 (26) 27.70/11.36 Obligation: 27.70/11.36 Q DP problem: 27.70/11.36 The TRS P consists of the following rules: 27.70/11.36 27.70/11.36 new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(new_compare23(Just(xwv40), Nothing, False, h), GT), h, ba) 27.70/11.36 new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, False, h, ba) -> new_delFromFM11(xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(new_compare23(Just(xwv40), Nothing, new_esEs4(Just(xwv40), Nothing, h), h), LT), h, ba) 27.70/11.36 new_delFromFM11(xwv31, xwv32, xwv33, xwv34, xwv40, True, h, ba) -> new_delFromFM(xwv33, Just(xwv40), h, ba) 27.70/11.36 new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(new_compare23(Just(xwv40), Just(xwv300), new_esEs29(xwv40, xwv300, h), h), GT), h, ba) 27.70/11.36 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bb, bc) -> new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs15(new_compare23(Just(xwv18), Just(xwv13), new_esEs4(Just(xwv18), Just(xwv13), bb), bb), LT), bb, bc) 27.70/11.36 new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv16, Just(xwv18), bb, bc) 27.70/11.36 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv17, Just(xwv18), bb, bc) 27.70/11.36 new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, True, h, ba) -> new_delFromFM(xwv34, Just(xwv40), h, ba) 27.70/11.36 27.70/11.36 The TRS R consists of the following rules: 27.70/11.36 27.70/11.36 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 27.70/11.36 new_primCmpInt(Neg(Succ(xwv2800)), Pos(xwv290)) -> LT 27.70/11.36 new_ltEs19(xwv2800, xwv2900, ty_Double) -> new_ltEs4(xwv2800, xwv2900) 27.70/11.36 new_pePe(True, xwv131) -> True 27.70/11.36 new_esEs24(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.36 new_compare29(xwv28000, xwv29000, app(app(ty_@2, cac), cad)) -> new_compare30(xwv28000, xwv29000, cac, cad) 27.70/11.36 new_ltEs14(xwv2800, xwv2900) -> new_fsEs(new_compare14(xwv2800, xwv2900)) 27.70/11.36 new_lt8(xwv28000, xwv29000, app(app(ty_@2, bah), bba)) -> new_lt14(xwv28000, xwv29000, bah, bba) 27.70/11.36 new_compare23(xwv280, xwv290, True, bee) -> EQ 27.70/11.36 new_esEs23(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.70/11.36 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 27.70/11.36 new_ltEs20(xwv28002, xwv29002, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_ltEs5(xwv28002, xwv29002, ccb, ccc, ccd) 27.70/11.36 new_primCmpInt(Pos(Zero), Neg(Succ(xwv2900))) -> GT 27.70/11.36 new_esEs29(xwv40, xwv300, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs5(xwv40, xwv300, bff, bfg, bfh) 27.70/11.36 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Ordering, eh) -> new_ltEs10(xwv28000, xwv29000) 27.70/11.36 new_ltEs19(xwv2800, xwv2900, app(app(ty_@2, hg), hh)) -> new_ltEs12(xwv2800, xwv2900, hg, hh) 27.70/11.36 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Int, eh) -> new_ltEs14(xwv28000, xwv29000) 27.70/11.36 new_esEs18(xwv28000, xwv29000, ty_Float) -> new_esEs13(xwv28000, xwv29000) 27.70/11.36 new_esEs24(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.36 new_esEs20(xwv28000, xwv29000, ty_Double) -> new_esEs11(xwv28000, xwv29000) 27.70/11.36 new_esEs26(xwv402, xwv3002, app(app(ty_@2, daf), dag)) -> new_esEs7(xwv402, xwv3002, daf, dag) 27.70/11.36 new_compare15(xwv28000, xwv29000, ed, ee, ef) -> new_compare24(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, ed, ee, ef), ed, ee, ef) 27.70/11.36 new_esEs18(xwv28000, xwv29000, ty_Bool) -> new_esEs12(xwv28000, xwv29000) 27.70/11.36 new_ltEs10(GT, LT) -> False 27.70/11.36 new_lt7(xwv28000, xwv29000) -> new_esEs15(new_compare8(xwv28000, xwv29000), LT) 27.70/11.36 new_ltEs4(xwv2800, xwv2900) -> new_fsEs(new_compare7(xwv2800, xwv2900)) 27.70/11.36 new_esEs25(xwv401, xwv3001, ty_Double) -> new_esEs11(xwv401, xwv3001) 27.70/11.36 new_primCompAux0(xwv153, GT) -> GT 27.70/11.36 new_esEs22(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.36 new_esEs28(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.70/11.36 new_esEs19(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.36 new_ltEs20(xwv28002, xwv29002, ty_Double) -> new_ltEs4(xwv28002, xwv29002) 27.70/11.36 new_compare210(xwv28000, xwv29000, False) -> new_compare110(xwv28000, xwv29000, new_ltEs10(xwv28000, xwv29000)) 27.70/11.36 new_primEqInt(Pos(Succ(xwv4000)), Pos(Zero)) -> False 27.70/11.36 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 27.70/11.36 new_esEs27(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.36 new_ltEs10(EQ, LT) -> False 27.70/11.36 new_compare31(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.36 new_ltEs11(xwv2800, xwv2900, bfb) -> new_fsEs(new_compare28(xwv2800, xwv2900, bfb)) 27.70/11.36 new_esEs23(xwv401, xwv3001, app(ty_[], cee)) -> new_esEs9(xwv401, xwv3001, cee) 27.70/11.36 new_lt16(xwv280, xwv290) -> new_esEs15(new_compare14(xwv280, xwv290), LT) 27.70/11.36 new_primCmpNat2(Succ(xwv28000), Succ(xwv29000)) -> new_primCmpNat2(xwv28000, xwv29000) 27.70/11.36 new_esEs20(xwv28000, xwv29000, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs5(xwv28000, xwv29000, ed, ee, ef) 27.70/11.36 new_esEs6(Left(xwv400), Left(xwv3000), ty_Double, bd) -> new_esEs11(xwv400, xwv3000) 27.70/11.36 new_compare1(:(xwv28000, xwv28001), [], bce) -> GT 27.70/11.36 new_esEs22(xwv400, xwv3000, app(ty_Maybe, cdh)) -> new_esEs4(xwv400, xwv3000, cdh) 27.70/11.36 new_primEqNat0(Succ(xwv4000), Succ(xwv30000)) -> new_primEqNat0(xwv4000, xwv30000) 27.70/11.37 new_esEs23(xwv401, xwv3001, app(ty_Ratio, cff)) -> new_esEs14(xwv401, xwv3001, cff) 27.70/11.37 new_esEs29(xwv40, xwv300, ty_Float) -> new_esEs13(xwv40, xwv300) 27.70/11.37 new_compare12(xwv28000, xwv29000) -> new_compare210(xwv28000, xwv29000, new_esEs15(xwv28000, xwv29000)) 27.70/11.37 new_primCompAux0(xwv153, LT) -> LT 27.70/11.37 new_esEs20(xwv28000, xwv29000, ty_Ordering) -> new_esEs15(xwv28000, xwv29000) 27.70/11.37 new_not(True) -> False 27.70/11.37 new_ltEs18(xwv28001, xwv29001, app(ty_Maybe, bbc)) -> new_ltEs7(xwv28001, xwv29001, bbc) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs5(xwv2800, xwv2900, beg, beh, bfa) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs5(xwv28000, xwv29000, dbg, dbh, dca) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Integer) -> new_ltEs9(xwv28000, xwv29000) 27.70/11.37 new_esEs29(xwv40, xwv300, ty_Ordering) -> new_esEs15(xwv40, xwv300) 27.70/11.37 new_compare17(xwv28000, xwv29000, False, bcf, bcg) -> GT 27.70/11.37 new_compare29(xwv28000, xwv29000, ty_@0) -> new_compare9(xwv28000, xwv29000) 27.70/11.37 new_esEs18(xwv28000, xwv29000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs5(xwv28000, xwv29000, bab, bac, bad) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, ty_Bool) -> new_ltEs8(xwv2800, xwv2900) 27.70/11.37 new_esEs23(xwv401, xwv3001, ty_Bool) -> new_esEs12(xwv401, xwv3001) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs5(xwv28001, xwv29001, bbd, bbe, bbf) 27.70/11.37 new_esEs15(LT, EQ) -> False 27.70/11.37 new_esEs15(EQ, LT) -> False 27.70/11.37 new_ltEs18(xwv28001, xwv29001, app(app(ty_Either, bbg), bbh)) -> new_ltEs6(xwv28001, xwv29001, bbg, bbh) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(ty_Either, fd), ff), eh) -> new_ltEs6(xwv28000, xwv29000, fd, ff) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Bool, eh) -> new_ltEs8(xwv28000, xwv29000) 27.70/11.37 new_compare29(xwv28000, xwv29000, app(ty_Maybe, bhd)) -> new_compare6(xwv28000, xwv29000, bhd) 27.70/11.37 new_esEs8(@0, @0) -> True 27.70/11.37 new_primEqNat0(Succ(xwv4000), Zero) -> False 27.70/11.37 new_primEqNat0(Zero, Succ(xwv30000)) -> False 27.70/11.37 new_esEs24(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_Ratio, cf), bd) -> new_esEs14(xwv400, xwv3000, cf) 27.70/11.37 new_ltEs7(Nothing, Just(xwv29000), bef) -> True 27.70/11.37 new_esEs19(xwv400, xwv3000, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs5(xwv400, xwv3000, bea, beb, bec) 27.70/11.37 new_primCmpNat0(xwv2800, Succ(xwv2900)) -> new_primCmpNat2(xwv2800, xwv2900) 27.70/11.37 new_esEs22(xwv400, xwv3000, app(app(ty_@2, cdf), cdg)) -> new_esEs7(xwv400, xwv3000, cdf, cdg) 27.70/11.37 new_esEs22(xwv400, xwv3000, app(ty_[], cdc)) -> new_esEs9(xwv400, xwv3000, cdc) 27.70/11.37 new_esEs25(xwv401, xwv3001, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs5(xwv401, xwv3001, chg, chh, daa) 27.70/11.37 new_compare110(xwv28000, xwv29000, True) -> LT 27.70/11.37 new_esEs18(xwv28000, xwv29000, ty_Double) -> new_esEs11(xwv28000, xwv29000) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(app(ty_@3, ge), gf), gg)) -> new_ltEs5(xwv28000, xwv29000, ge, gf, gg) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Double) -> new_ltEs4(xwv28000, xwv29000) 27.70/11.37 new_esEs18(xwv28000, xwv29000, app(ty_Ratio, bag)) -> new_esEs14(xwv28000, xwv29000, bag) 27.70/11.37 new_esEs23(xwv401, xwv3001, ty_@0) -> new_esEs8(xwv401, xwv3001) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_Maybe, eg), eh) -> new_ltEs7(xwv28000, xwv29000, eg) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.37 new_primCmpInt(Pos(Succ(xwv2800)), Neg(xwv290)) -> GT 27.70/11.37 new_esEs24(xwv400, xwv3000, app(ty_Ratio, cgh)) -> new_esEs14(xwv400, xwv3000, cgh) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Bool) -> new_ltEs8(xwv28000, xwv29000) 27.70/11.37 new_esEs24(xwv400, xwv3000, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs5(xwv400, xwv3000, cge, cgf, cgg) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Char, eh) -> new_ltEs13(xwv28000, xwv29000) 27.70/11.37 new_ltEs10(GT, EQ) -> False 27.70/11.37 new_esEs29(xwv40, xwv300, ty_Double) -> new_esEs11(xwv40, xwv300) 27.70/11.37 new_esEs18(xwv28000, xwv29000, ty_Ordering) -> new_esEs15(xwv28000, xwv29000) 27.70/11.37 new_ltEs17(xwv2800, xwv2900) -> new_fsEs(new_compare31(xwv2800, xwv2900)) 27.70/11.37 new_ltEs9(xwv2800, xwv2900) -> new_fsEs(new_compare8(xwv2800, xwv2900)) 27.70/11.37 new_compare1(:(xwv28000, xwv28001), :(xwv29000, xwv29001), bce) -> new_primCompAux1(xwv28000, xwv29000, new_compare1(xwv28001, xwv29001, bce), bce) 27.70/11.37 new_esEs26(xwv402, xwv3002, ty_Char) -> new_esEs16(xwv402, xwv3002) 27.70/11.37 new_primPlusNat1(Succ(xwv33200), Succ(xwv9100)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv9100))) 27.70/11.37 new_lt8(xwv28000, xwv29000, ty_Int) -> new_lt16(xwv28000, xwv29000) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), app(app(app(ty_@3, cc), cd), ce), bd) -> new_esEs5(xwv400, xwv3000, cc, cd, ce) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_Ratio, eb)) -> new_esEs14(xwv400, xwv3000, eb) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, ty_Bool) -> new_ltEs8(xwv28002, xwv29002) 27.70/11.37 new_esEs28(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_Maybe, gd)) -> new_ltEs7(xwv28000, xwv29000, gd) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, app(ty_Maybe, cca)) -> new_ltEs7(xwv28002, xwv29002, cca) 27.70/11.37 new_compare211(xwv28000, xwv29000, False, bch, bda) -> new_compare18(xwv28000, xwv29000, new_ltEs12(xwv28000, xwv29000, bch, bda), bch, bda) 27.70/11.37 new_compare210(xwv28000, xwv29000, True) -> EQ 27.70/11.37 new_lt8(xwv28000, xwv29000, ty_@0) -> new_lt4(xwv28000, xwv29000) 27.70/11.37 new_esEs21(xwv28001, xwv29001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(xwv28001, xwv29001, cah, cba, cbb) 27.70/11.37 new_esEs14(:%(xwv400, xwv401), :%(xwv3000, xwv3001), bga) -> new_asAs(new_esEs27(xwv400, xwv3000, bga), new_esEs28(xwv401, xwv3001, bga)) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), ty_Ordering, bd) -> new_esEs15(xwv400, xwv3000) 27.70/11.37 new_pePe(False, xwv131) -> xwv131 27.70/11.37 new_lt19(xwv28000, xwv29000, ty_Int) -> new_lt16(xwv28000, xwv29000) 27.70/11.37 new_lt8(xwv28000, xwv29000, app(app(ty_Either, bae), baf)) -> new_lt12(xwv28000, xwv29000, bae, baf) 27.70/11.37 new_esEs22(xwv400, xwv3000, app(ty_Ratio, ced)) -> new_esEs14(xwv400, xwv3000, ced) 27.70/11.37 new_esEs12(False, False) -> True 27.70/11.37 new_esEs15(GT, GT) -> True 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Double, eh) -> new_ltEs4(xwv28000, xwv29000) 27.70/11.37 new_esEs22(xwv400, xwv3000, app(app(ty_Either, cdd), cde)) -> new_esEs6(xwv400, xwv3000, cdd, cde) 27.70/11.37 new_esEs15(EQ, GT) -> False 27.70/11.37 new_esEs15(GT, EQ) -> False 27.70/11.37 new_ltEs20(xwv28002, xwv29002, ty_Char) -> new_ltEs13(xwv28002, xwv29002) 27.70/11.37 new_lt8(xwv28000, xwv29000, ty_Ordering) -> new_lt6(xwv28000, xwv29000) 27.70/11.37 new_lt19(xwv28000, xwv29000, ty_Bool) -> new_lt10(xwv28000, xwv29000) 27.70/11.37 new_esEs25(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, ty_Double) -> new_ltEs4(xwv28001, xwv29001) 27.70/11.37 new_lt19(xwv28000, xwv29000, app(app(ty_Either, bcf), bcg)) -> new_lt12(xwv28000, xwv29000, bcf, bcg) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, app(ty_[], bcd)) -> new_ltEs16(xwv28001, xwv29001, bcd) 27.70/11.37 new_lt20(xwv28001, xwv29001, app(ty_Maybe, cag)) -> new_lt9(xwv28001, xwv29001, cag) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, app(app(ty_@2, bcb), bcc)) -> new_ltEs12(xwv28001, xwv29001, bcb, bcc) 27.70/11.37 new_esEs9(:(xwv400, xwv401), [], bdb) -> False 27.70/11.37 new_esEs9([], :(xwv3000, xwv3001), bdb) -> False 27.70/11.37 new_esEs25(xwv401, xwv3001, ty_Ordering) -> new_esEs15(xwv401, xwv3001) 27.70/11.37 new_lt19(xwv28000, xwv29000, app(ty_Maybe, ec)) -> new_lt9(xwv28000, xwv29000, ec) 27.70/11.37 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 27.70/11.37 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 27.70/11.37 new_esEs23(xwv401, xwv3001, app(ty_Maybe, cfb)) -> new_esEs4(xwv401, xwv3001, cfb) 27.70/11.37 new_compare11(xwv28000, xwv29000, True, ed, ee, ef) -> LT 27.70/11.37 new_esEs26(xwv402, xwv3002, app(ty_[], dac)) -> new_esEs9(xwv402, xwv3002, dac) 27.70/11.37 new_compare19(xwv117, xwv118, True, dbe) -> LT 27.70/11.37 new_ltEs18(xwv28001, xwv29001, ty_Integer) -> new_ltEs9(xwv28001, xwv29001) 27.70/11.37 new_compare30(xwv28000, xwv29000, bch, bda) -> new_compare211(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, bch, bda), bch, bda) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), ty_Integer, bd) -> new_esEs10(xwv400, xwv3000) 27.70/11.37 new_compare7(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.37 new_esEs20(xwv28000, xwv29000, app(ty_Ratio, caf)) -> new_esEs14(xwv28000, xwv29000, caf) 27.70/11.37 new_esEs21(xwv28001, xwv29001, ty_Float) -> new_esEs13(xwv28001, xwv29001) 27.70/11.37 new_lt6(xwv28000, xwv29000) -> new_esEs15(new_compare12(xwv28000, xwv29000), LT) 27.70/11.37 new_esEs18(xwv28000, xwv29000, ty_Char) -> new_esEs16(xwv28000, xwv29000) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, ty_Char) -> new_ltEs13(xwv2800, xwv2900) 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(xwv400, xwv3000, bgh, bha, bhb) 27.70/11.37 new_esEs19(xwv400, xwv3000, app(ty_Maybe, bdh)) -> new_esEs4(xwv400, xwv3000, bdh) 27.70/11.37 new_primEqInt(Neg(Succ(xwv4000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 27.70/11.37 new_primCmpInt(Neg(Zero), Pos(Succ(xwv2900))) -> LT 27.70/11.37 new_lt8(xwv28000, xwv29000, app(ty_[], bbb)) -> new_lt5(xwv28000, xwv29000, bbb) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_[], gb), eh) -> new_ltEs16(xwv28000, xwv29000, gb) 27.70/11.37 new_primMulInt(Pos(xwv4010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.37 new_ltEs8(True, False) -> False 27.70/11.37 new_lt18(xwv28000, xwv29000) -> new_esEs15(new_compare31(xwv28000, xwv29000), LT) 27.70/11.37 new_esEs24(xwv400, xwv3000, app(app(ty_Either, cfh), cga)) -> new_esEs6(xwv400, xwv3000, cfh, cga) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Float, eh) -> new_ltEs17(xwv28000, xwv29000) 27.70/11.37 new_compare18(xwv28000, xwv29000, False, bch, bda) -> GT 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), app(app(ty_Either, bf), bg), bd) -> new_esEs6(xwv400, xwv3000, bf, bg) 27.70/11.37 new_compare29(xwv28000, xwv29000, app(ty_[], cae)) -> new_compare1(xwv28000, xwv29000, cae) 27.70/11.37 new_ltEs16(xwv2800, xwv2900, bce) -> new_fsEs(new_compare1(xwv2800, xwv2900, bce)) 27.70/11.37 new_lt11(xwv28000, xwv29000, ed, ee, ef) -> new_esEs15(new_compare15(xwv28000, xwv29000, ed, ee, ef), LT) 27.70/11.37 new_esEs23(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.70/11.37 new_primMulNat0(Succ(xwv40100), Zero) -> Zero 27.70/11.37 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 27.70/11.37 new_ltEs8(False, False) -> True 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.37 new_compare29(xwv28000, xwv29000, ty_Char) -> new_compare13(xwv28000, xwv29000) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(ty_Either, gh), ha)) -> new_ltEs6(xwv28000, xwv29000, gh, ha) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs5(xwv400, xwv3000, dg, dh, ea) 27.70/11.37 new_esEs23(xwv401, xwv3001, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_esEs5(xwv401, xwv3001, cfc, cfd, cfe) 27.70/11.37 new_esEs24(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.37 new_primCmpNat2(Succ(xwv28000), Zero) -> GT 27.70/11.37 new_compare11(xwv28000, xwv29000, False, ed, ee, ef) -> GT 27.70/11.37 new_lt8(xwv28000, xwv29000, ty_Char) -> new_lt15(xwv28000, xwv29000) 27.70/11.37 new_compare29(xwv28000, xwv29000, ty_Float) -> new_compare31(xwv28000, xwv29000) 27.70/11.37 new_esEs15(LT, GT) -> False 27.70/11.37 new_esEs15(GT, LT) -> False 27.70/11.37 new_lt20(xwv28001, xwv29001, app(app(app(ty_@3, cah), cba), cbb)) -> new_lt11(xwv28001, xwv29001, cah, cba, cbb) 27.70/11.37 new_esEs25(xwv401, xwv3001, ty_@0) -> new_esEs8(xwv401, xwv3001) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), app(app(ty_@2, bh), ca), bd) -> new_esEs7(xwv400, xwv3000, bh, ca) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, ty_Bool) -> new_ltEs8(xwv28001, xwv29001) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, app(app(ty_@2, cch), cda)) -> new_ltEs12(xwv28002, xwv29002, cch, cda) 27.70/11.37 new_compare17(xwv28000, xwv29000, True, bcf, bcg) -> LT 27.70/11.37 new_compare18(xwv28000, xwv29000, True, bch, bda) -> LT 27.70/11.37 new_compare1([], [], bce) -> EQ 27.70/11.37 new_lt20(xwv28001, xwv29001, ty_Bool) -> new_lt10(xwv28001, xwv29001) 27.70/11.37 new_esEs9(:(xwv400, xwv401), :(xwv3000, xwv3001), bdb) -> new_asAs(new_esEs19(xwv400, xwv3000, bdb), new_esEs9(xwv401, xwv3001, bdb)) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Int) -> new_ltEs14(xwv28000, xwv29000) 27.70/11.37 new_esEs20(xwv28000, xwv29000, ty_Float) -> new_esEs13(xwv28000, xwv29000) 27.70/11.37 new_esEs20(xwv28000, xwv29000, app(ty_Maybe, ec)) -> new_esEs4(xwv28000, xwv29000, ec) 27.70/11.37 new_compare29(xwv28000, xwv29000, ty_Ordering) -> new_compare12(xwv28000, xwv29000) 27.70/11.37 new_esEs24(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.37 new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) 27.70/11.37 new_primPlusNat1(Zero, Succ(xwv9100)) -> Succ(xwv9100) 27.70/11.37 new_esEs26(xwv402, xwv3002, ty_@0) -> new_esEs8(xwv402, xwv3002) 27.70/11.37 new_lt20(xwv28001, xwv29001, ty_Int) -> new_lt16(xwv28001, xwv29001) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, app(ty_[], cdb)) -> new_ltEs16(xwv28002, xwv29002, cdb) 27.70/11.37 new_compare23(Just(xwv2800), Nothing, False, bee) -> GT 27.70/11.37 new_compare13(Char(xwv28000), Char(xwv29000)) -> new_primCmpNat2(xwv28000, xwv29000) 27.70/11.37 new_esEs17(xwv40, xwv300) -> new_primEqInt(xwv40, xwv300) 27.70/11.37 new_lt20(xwv28001, xwv29001, ty_Float) -> new_lt18(xwv28001, xwv29001) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), ty_@0, bd) -> new_esEs8(xwv400, xwv3000) 27.70/11.37 new_compare6(xwv28000, xwv29000, ec) -> new_compare23(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, ec), ec) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, ty_Integer) -> new_ltEs9(xwv28002, xwv29002) 27.70/11.37 new_primCompAux1(xwv28000, xwv29000, xwv141, bce) -> new_primCompAux0(xwv141, new_compare29(xwv28000, xwv29000, bce)) 27.70/11.37 new_esEs25(xwv401, xwv3001, ty_Bool) -> new_esEs12(xwv401, xwv3001) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, ty_Integer) -> new_ltEs9(xwv2800, xwv2900) 27.70/11.37 new_esEs24(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.37 new_esEs26(xwv402, xwv3002, ty_Int) -> new_esEs17(xwv402, xwv3002) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, app(ty_[], bce)) -> new_ltEs16(xwv2800, xwv2900, bce) 27.70/11.37 new_esEs19(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_[], da)) -> new_esEs9(xwv400, xwv3000, da) 27.70/11.37 new_compare28(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Int) -> new_compare14(new_sr(xwv28000, xwv29001), new_sr(xwv29000, xwv28001)) 27.70/11.37 new_esEs21(xwv28001, xwv29001, app(ty_Maybe, cag)) -> new_esEs4(xwv28001, xwv29001, cag) 27.70/11.37 new_primMulInt(Neg(xwv4010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.37 new_lt14(xwv28000, xwv29000, bch, bda) -> new_esEs15(new_compare30(xwv28000, xwv29000, bch, bda), LT) 27.70/11.37 new_esEs25(xwv401, xwv3001, app(app(ty_@2, chd), che)) -> new_esEs7(xwv401, xwv3001, chd, che) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_@0) -> new_ltEs15(xwv28000, xwv29000) 27.70/11.37 new_lt19(xwv28000, xwv29000, ty_Float) -> new_lt18(xwv28000, xwv29000) 27.70/11.37 new_esEs7(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bfc, bfd) -> new_asAs(new_esEs22(xwv400, xwv3000, bfc), new_esEs23(xwv401, xwv3001, bfd)) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(ty_@2, dd), de)) -> new_esEs7(xwv400, xwv3000, dd, de) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), ty_Bool, bd) -> new_esEs12(xwv400, xwv3000) 27.70/11.37 new_ltEs12(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), hg, hh) -> new_pePe(new_lt8(xwv28000, xwv29000, hg), new_asAs(new_esEs18(xwv28000, xwv29000, hg), new_ltEs18(xwv28001, xwv29001, hh))) 27.70/11.37 new_esEs26(xwv402, xwv3002, ty_Double) -> new_esEs11(xwv402, xwv3002) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Ordering) -> new_ltEs10(xwv28000, xwv29000) 27.70/11.37 new_ltEs8(False, True) -> True 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_Maybe, bgg)) -> new_esEs4(xwv400, xwv3000, bgg) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Float) -> new_ltEs17(xwv28000, xwv29000) 27.70/11.37 new_esEs23(xwv401, xwv3001, app(app(ty_Either, cef), ceg)) -> new_esEs6(xwv401, xwv3001, cef, ceg) 27.70/11.37 new_esEs24(xwv400, xwv3000, app(ty_[], cfg)) -> new_esEs9(xwv400, xwv3000, cfg) 27.70/11.37 new_compare31(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Char) -> new_ltEs13(xwv28000, xwv29000) 27.70/11.37 new_esEs21(xwv28001, xwv29001, app(app(ty_Either, cbc), cbd)) -> new_esEs6(xwv28001, xwv29001, cbc, cbd) 27.70/11.37 new_esEs13(Float(xwv400, xwv401), Float(xwv3000, xwv3001)) -> new_esEs17(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 27.70/11.37 new_esEs26(xwv402, xwv3002, ty_Integer) -> new_esEs10(xwv402, xwv3002) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, ty_Ordering) -> new_ltEs10(xwv28001, xwv29001) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(ty_@2, fh), ga), eh) -> new_ltEs12(xwv28000, xwv29000, fh, ga) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), ty_Int, bd) -> new_esEs17(xwv400, xwv3000) 27.70/11.37 new_compare8(Integer(xwv28000), Integer(xwv29000)) -> new_primCmpInt(xwv28000, xwv29000) 27.70/11.37 new_primMulInt(Pos(xwv4010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.37 new_primMulInt(Neg(xwv4010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.37 new_lt8(xwv28000, xwv29000, app(app(app(ty_@3, bab), bac), bad)) -> new_lt11(xwv28000, xwv29000, bab, bac, bad) 27.70/11.37 new_esEs20(xwv28000, xwv29000, ty_@0) -> new_esEs8(xwv28000, xwv29000) 27.70/11.37 new_compare29(xwv28000, xwv29000, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_compare15(xwv28000, xwv29000, bhe, bhf, bhg) 27.70/11.37 new_compare29(xwv28000, xwv29000, ty_Bool) -> new_compare16(xwv28000, xwv29000) 27.70/11.37 new_primCmpInt(Pos(Succ(xwv2800)), Pos(xwv290)) -> new_primCmpNat0(xwv2800, xwv290) 27.70/11.37 new_esEs15(LT, LT) -> True 27.70/11.37 new_esEs24(xwv400, xwv3000, app(ty_Maybe, cgd)) -> new_esEs4(xwv400, xwv3000, cgd) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(ty_Either, db), dc)) -> new_esEs6(xwv400, xwv3000, db, dc) 27.70/11.37 new_lt9(xwv28000, xwv29000, ec) -> new_esEs15(new_compare6(xwv28000, xwv29000, ec), LT) 27.70/11.37 new_esEs19(xwv400, xwv3000, app(ty_[], bdc)) -> new_esEs9(xwv400, xwv3000, bdc) 27.70/11.37 new_esEs25(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.70/11.37 new_esEs22(xwv400, xwv3000, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs5(xwv400, xwv3000, cea, ceb, cec) 27.70/11.37 new_esEs19(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.37 new_lt8(xwv28000, xwv29000, ty_Double) -> new_lt17(xwv28000, xwv29000) 27.70/11.37 new_sr0(Integer(xwv280000), Integer(xwv290010)) -> Integer(new_primMulInt(xwv280000, xwv290010)) 27.70/11.37 new_esEs18(xwv28000, xwv29000, app(ty_Maybe, baa)) -> new_esEs4(xwv28000, xwv29000, baa) 27.70/11.37 new_esEs21(xwv28001, xwv29001, app(ty_Ratio, cbe)) -> new_esEs14(xwv28001, xwv29001, cbe) 27.70/11.37 new_esEs29(xwv40, xwv300, ty_Char) -> new_esEs16(xwv40, xwv300) 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.37 new_esEs29(xwv40, xwv300, ty_@0) -> new_esEs8(xwv40, xwv300) 27.70/11.37 new_compare24(xwv28000, xwv29000, True, ed, ee, ef) -> EQ 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), app(app(ty_Either, bgc), bgd)) -> new_esEs6(xwv400, xwv3000, bgc, bgd) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.37 new_lt19(xwv28000, xwv29000, app(app(app(ty_@3, ed), ee), ef)) -> new_lt11(xwv28000, xwv29000, ed, ee, ef) 27.70/11.37 new_primCmpNat0(xwv2800, Zero) -> GT 27.70/11.37 new_lt10(xwv28000, xwv29000) -> new_esEs15(new_compare16(xwv28000, xwv29000), LT) 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_Ratio, bhc)) -> new_esEs14(xwv400, xwv3000, bhc) 27.70/11.37 new_primCmpNat2(Zero, Succ(xwv29000)) -> LT 27.70/11.37 new_esEs25(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 27.70/11.37 new_asAs(True, xwv57) -> xwv57 27.70/11.37 new_esEs25(xwv401, xwv3001, app(ty_Ratio, dab)) -> new_esEs14(xwv401, xwv3001, dab) 27.70/11.37 new_esEs26(xwv402, xwv3002, ty_Float) -> new_esEs13(xwv402, xwv3002) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Bool) -> new_ltEs8(xwv28000, xwv29000) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Ordering) -> new_ltEs10(xwv28000, xwv29000) 27.70/11.37 new_esEs10(Integer(xwv400), Integer(xwv3000)) -> new_primEqInt(xwv400, xwv3000) 27.70/11.37 new_lt19(xwv28000, xwv29000, ty_Double) -> new_lt17(xwv28000, xwv29000) 27.70/11.37 new_esEs26(xwv402, xwv3002, ty_Ordering) -> new_esEs15(xwv402, xwv3002) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, ty_Char) -> new_ltEs13(xwv28001, xwv29001) 27.70/11.37 new_ltEs10(LT, LT) -> True 27.70/11.37 new_compare7(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, ty_@0) -> new_ltEs15(xwv28002, xwv29002) 27.70/11.37 new_esEs25(xwv401, xwv3001, app(ty_[], cha)) -> new_esEs9(xwv401, xwv3001, cha) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_Ratio, fg), eh) -> new_ltEs11(xwv28000, xwv29000, fg) 27.70/11.37 new_esEs6(Left(xwv400), Right(xwv3000), cg, bd) -> False 27.70/11.37 new_esEs6(Right(xwv400), Left(xwv3000), cg, bd) -> False 27.70/11.37 new_esEs21(xwv28001, xwv29001, ty_Bool) -> new_esEs12(xwv28001, xwv29001) 27.70/11.37 new_esEs21(xwv28001, xwv29001, ty_Int) -> new_esEs17(xwv28001, xwv29001) 27.70/11.37 new_esEs16(Char(xwv400), Char(xwv3000)) -> new_primEqNat0(xwv400, xwv3000) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_Ratio, hb)) -> new_ltEs11(xwv28000, xwv29000, hb) 27.70/11.37 new_esEs22(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.37 new_esEs26(xwv402, xwv3002, ty_Bool) -> new_esEs12(xwv402, xwv3002) 27.70/11.37 new_esEs24(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, app(ty_Ratio, ccg)) -> new_ltEs11(xwv28002, xwv29002, ccg) 27.70/11.37 new_esEs18(xwv28000, xwv29000, app(app(ty_@2, bah), bba)) -> new_esEs7(xwv28000, xwv29000, bah, bba) 27.70/11.37 new_esEs20(xwv28000, xwv29000, app(ty_[], hf)) -> new_esEs9(xwv28000, xwv29000, hf) 27.70/11.37 new_ltEs8(True, True) -> True 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_@0) -> new_ltEs15(xwv28000, xwv29000) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, ty_@0) -> new_ltEs15(xwv2800, xwv2900) 27.70/11.37 new_esEs24(xwv400, xwv3000, app(app(ty_@2, cgb), cgc)) -> new_esEs7(xwv400, xwv3000, cgb, cgc) 27.70/11.37 new_compare110(xwv28000, xwv29000, False) -> GT 27.70/11.37 new_lt8(xwv28000, xwv29000, ty_Integer) -> new_lt7(xwv28000, xwv29000) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Int) -> new_ltEs14(xwv28000, xwv29000) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, ty_Int) -> new_ltEs14(xwv28001, xwv29001) 27.70/11.37 new_sr(xwv401, xwv3000) -> new_primMulInt(xwv401, xwv3000) 27.70/11.37 new_esEs12(False, True) -> False 27.70/11.37 new_esEs12(True, False) -> False 27.70/11.37 new_lt20(xwv28001, xwv29001, app(app(ty_Either, cbc), cbd)) -> new_lt12(xwv28001, xwv29001, cbc, cbd) 27.70/11.37 new_esEs23(xwv401, xwv3001, ty_Double) -> new_esEs11(xwv401, xwv3001) 27.70/11.37 new_ltEs7(Nothing, Nothing, bef) -> True 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.37 new_primMulNat0(Zero, Zero) -> Zero 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.37 new_esEs22(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.37 new_esEs12(True, True) -> True 27.70/11.37 new_compare10(xwv28000, xwv29000, False) -> GT 27.70/11.37 new_esEs21(xwv28001, xwv29001, ty_Integer) -> new_esEs10(xwv28001, xwv29001) 27.70/11.37 new_esEs18(xwv28000, xwv29000, ty_@0) -> new_esEs8(xwv28000, xwv29000) 27.70/11.37 new_esEs29(xwv40, xwv300, ty_Int) -> new_esEs17(xwv40, xwv300) 27.70/11.37 new_primCmpInt(Neg(Zero), Neg(Succ(xwv2900))) -> new_primCmpNat0(xwv2900, Zero) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_Maybe, cb), bd) -> new_esEs4(xwv400, xwv3000, cb) 27.70/11.37 new_esEs26(xwv402, xwv3002, app(app(ty_Either, dad), dae)) -> new_esEs6(xwv402, xwv3002, dad, dae) 27.70/11.37 new_ltEs7(Just(xwv28000), Nothing, bef) -> False 27.70/11.37 new_esEs23(xwv401, xwv3001, app(app(ty_@2, ceh), cfa)) -> new_esEs7(xwv401, xwv3001, ceh, cfa) 27.70/11.37 new_compare9(@0, @0) -> EQ 27.70/11.37 new_esEs21(xwv28001, xwv29001, app(ty_[], cbh)) -> new_esEs9(xwv28001, xwv29001, cbh) 27.70/11.37 new_primCmpNat1(Zero, xwv2800) -> LT 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_[], bgb)) -> new_esEs9(xwv400, xwv3000, bgb) 27.70/11.37 new_esEs4(Nothing, Nothing, bfe) -> True 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), ty_Char, bd) -> new_esEs16(xwv400, xwv3000) 27.70/11.37 new_compare29(xwv28000, xwv29000, app(ty_Ratio, cab)) -> new_compare28(xwv28000, xwv29000, cab) 27.70/11.37 new_esEs4(Nothing, Just(xwv3000), bfe) -> False 27.70/11.37 new_esEs4(Just(xwv400), Nothing, bfe) -> False 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_Ratio, dcd)) -> new_ltEs11(xwv28000, xwv29000, dcd) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, app(ty_Ratio, bfb)) -> new_ltEs11(xwv2800, xwv2900, bfb) 27.70/11.37 new_esEs19(xwv400, xwv3000, app(ty_Ratio, bed)) -> new_esEs14(xwv400, xwv3000, bed) 27.70/11.37 new_compare29(xwv28000, xwv29000, ty_Int) -> new_compare14(xwv28000, xwv29000) 27.70/11.37 new_primCmpNat2(Zero, Zero) -> EQ 27.70/11.37 new_lt5(xwv28000, xwv29000, hf) -> new_esEs15(new_compare1(xwv28000, xwv29000, hf), LT) 27.70/11.37 new_lt20(xwv28001, xwv29001, app(ty_Ratio, cbe)) -> new_lt13(xwv28001, xwv29001, cbe) 27.70/11.37 new_esEs21(xwv28001, xwv29001, ty_Char) -> new_esEs16(xwv28001, xwv29001) 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.37 new_lt20(xwv28001, xwv29001, ty_Integer) -> new_lt7(xwv28001, xwv29001) 27.70/11.37 new_esEs29(xwv40, xwv300, app(ty_Ratio, bga)) -> new_esEs14(xwv40, xwv300, bga) 27.70/11.37 new_compare28(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Integer) -> new_compare8(new_sr0(xwv28000, xwv29001), new_sr0(xwv29000, xwv28001)) 27.70/11.37 new_esEs19(xwv400, xwv3000, app(app(ty_Either, bdd), bde)) -> new_esEs6(xwv400, xwv3000, bdd, bde) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_Maybe, df)) -> new_esEs4(xwv400, xwv3000, df) 27.70/11.37 new_esEs25(xwv401, xwv3001, app(app(ty_Either, chb), chc)) -> new_esEs6(xwv401, xwv3001, chb, chc) 27.70/11.37 new_primCompAux0(xwv153, EQ) -> xwv153 27.70/11.37 new_ltEs18(xwv28001, xwv29001, app(ty_Ratio, bca)) -> new_ltEs11(xwv28001, xwv29001, bca) 27.70/11.37 new_lt19(xwv28000, xwv29000, app(ty_Ratio, caf)) -> new_lt13(xwv28000, xwv29000, caf) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, app(ty_Maybe, bef)) -> new_ltEs7(xwv2800, xwv2900, bef) 27.70/11.37 new_primEqInt(Neg(Succ(xwv4000)), Neg(Zero)) -> False 27.70/11.37 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 27.70/11.37 new_lt19(xwv28000, xwv29000, ty_Integer) -> new_lt7(xwv28000, xwv29000) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, ty_@0) -> new_ltEs15(xwv28001, xwv29001) 27.70/11.37 new_esEs20(xwv28000, xwv29000, ty_Char) -> new_esEs16(xwv28000, xwv29000) 27.70/11.37 new_primEqInt(Pos(Succ(xwv4000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 27.70/11.37 new_ltEs10(GT, GT) -> True 27.70/11.37 new_ltEs20(xwv28002, xwv29002, app(app(ty_Either, cce), ccf)) -> new_ltEs6(xwv28002, xwv29002, cce, ccf) 27.70/11.37 new_compare19(xwv117, xwv118, False, dbe) -> GT 27.70/11.37 new_esEs20(xwv28000, xwv29000, app(app(ty_Either, bcf), bcg)) -> new_esEs6(xwv28000, xwv29000, bcf, bcg) 27.70/11.37 new_compare23(Just(xwv2800), Just(xwv2900), False, bee) -> new_compare19(xwv2800, xwv2900, new_ltEs19(xwv2800, xwv2900, bee), bee) 27.70/11.37 new_primEqInt(Pos(Succ(xwv4000)), Neg(xwv3000)) -> False 27.70/11.37 new_primEqInt(Neg(Succ(xwv4000)), Pos(xwv3000)) -> False 27.70/11.37 new_compare29(xwv28000, xwv29000, app(app(ty_Either, bhh), caa)) -> new_compare26(xwv28000, xwv29000, bhh, caa) 27.70/11.37 new_compare14(xwv28, xwv29) -> new_primCmpInt(xwv28, xwv29) 27.70/11.37 new_compare23(Nothing, Just(xwv2900), False, bee) -> LT 27.70/11.37 new_esEs22(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.37 new_esEs27(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.37 new_compare211(xwv28000, xwv29000, True, bch, bda) -> EQ 27.70/11.37 new_ltEs19(xwv2800, xwv2900, app(app(ty_Either, gc), eh)) -> new_ltEs6(xwv2800, xwv2900, gc, eh) 27.70/11.37 new_esEs29(xwv40, xwv300, app(ty_Maybe, bfe)) -> new_esEs4(xwv40, xwv300, bfe) 27.70/11.37 new_esEs22(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.37 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 27.70/11.37 new_ltEs10(LT, EQ) -> True 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(ty_Either, dcb), dcc)) -> new_ltEs6(xwv28000, xwv29000, dcb, dcc) 27.70/11.37 new_lt8(xwv28000, xwv29000, ty_Bool) -> new_lt10(xwv28000, xwv29000) 27.70/11.37 new_compare26(xwv28000, xwv29000, bcf, bcg) -> new_compare27(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bcf, bcg), bcf, bcg) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_@0, eh) -> new_ltEs15(xwv28000, xwv29000) 27.70/11.37 new_primCmpNat1(Succ(xwv2900), xwv2800) -> new_primCmpNat2(xwv2900, xwv2800) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), ty_Float, bd) -> new_esEs13(xwv400, xwv3000) 27.70/11.37 new_esEs19(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.37 new_lt20(xwv28001, xwv29001, ty_Char) -> new_lt15(xwv28001, xwv29001) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_Maybe, dbf)) -> new_ltEs7(xwv28000, xwv29000, dbf) 27.70/11.37 new_esEs15(EQ, EQ) -> True 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Float) -> new_ltEs17(xwv28000, xwv29000) 27.70/11.37 new_esEs23(xwv401, xwv3001, ty_Float) -> new_esEs13(xwv401, xwv3001) 27.70/11.37 new_fsEs(xwv123) -> new_not(new_esEs15(xwv123, GT)) 27.70/11.37 new_esEs19(xwv400, xwv3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(xwv400, xwv3000, bdf, bdg) 27.70/11.37 new_compare23(Nothing, Nothing, False, bee) -> LT 27.70/11.37 new_compare24(xwv28000, xwv29000, False, ed, ee, ef) -> new_compare11(xwv28000, xwv29000, new_ltEs5(xwv28000, xwv29000, ed, ee, ef), ed, ee, ef) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(ty_@2, hc), hd)) -> new_ltEs12(xwv28000, xwv29000, hc, hd) 27.70/11.37 new_primPlusNat0(xwv101, xwv300000) -> new_primPlusNat1(xwv101, Succ(xwv300000)) 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.37 new_compare29(xwv28000, xwv29000, ty_Double) -> new_compare7(xwv28000, xwv29000) 27.70/11.37 new_ltEs6(Right(xwv28000), Left(xwv29000), gc, eh) -> False 27.70/11.37 new_not(False) -> True 27.70/11.37 new_lt20(xwv28001, xwv29001, ty_@0) -> new_lt4(xwv28001, xwv29001) 27.70/11.37 new_compare1([], :(xwv29000, xwv29001), bce) -> LT 27.70/11.37 new_esEs21(xwv28001, xwv29001, ty_@0) -> new_esEs8(xwv28001, xwv29001) 27.70/11.37 new_esEs11(Double(xwv400, xwv401), Double(xwv3000, xwv3001)) -> new_esEs17(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 27.70/11.37 new_lt19(xwv28000, xwv29000, app(ty_[], hf)) -> new_lt5(xwv28000, xwv29000, hf) 27.70/11.37 new_primCmpInt(Neg(Succ(xwv2800)), Neg(xwv290)) -> new_primCmpNat1(xwv290, xwv2800) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.37 new_lt13(xwv28000, xwv29000, caf) -> new_esEs15(new_compare28(xwv28000, xwv29000, caf), LT) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Char) -> new_ltEs13(xwv28000, xwv29000) 27.70/11.37 new_lt12(xwv28000, xwv29000, bcf, bcg) -> new_esEs15(new_compare26(xwv28000, xwv29000, bcf, bcg), LT) 27.70/11.37 new_esEs29(xwv40, xwv300, app(app(ty_Either, cg), bd)) -> new_esEs6(xwv40, xwv300, cg, bd) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_[], he)) -> new_ltEs16(xwv28000, xwv29000, he) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_[], be), bd) -> new_esEs9(xwv400, xwv3000, be) 27.70/11.37 new_esEs20(xwv28000, xwv29000, ty_Bool) -> new_esEs12(xwv28000, xwv29000) 27.70/11.37 new_esEs22(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.37 new_ltEs10(EQ, GT) -> True 27.70/11.37 new_lt17(xwv28000, xwv29000) -> new_esEs15(new_compare7(xwv28000, xwv29000), LT) 27.70/11.37 new_compare25(xwv28000, xwv29000, True) -> EQ 27.70/11.37 new_compare27(xwv28000, xwv29000, True, bcf, bcg) -> EQ 27.70/11.37 new_compare27(xwv28000, xwv29000, False, bcf, bcg) -> new_compare17(xwv28000, xwv29000, new_ltEs6(xwv28000, xwv29000, bcf, bcg), bcf, bcg) 27.70/11.37 new_esEs29(xwv40, xwv300, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xwv40, xwv300, bfc, bfd) 27.70/11.37 new_ltEs10(EQ, EQ) -> True 27.70/11.37 new_esEs19(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.37 new_esEs29(xwv40, xwv300, ty_Bool) -> new_esEs12(xwv40, xwv300) 27.70/11.37 new_esEs5(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bff, bfg, bfh) -> new_asAs(new_esEs24(xwv400, xwv3000, bff), new_asAs(new_esEs25(xwv401, xwv3001, bfg), new_esEs26(xwv402, xwv3002, bfh))) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, fa), fb), fc), eh) -> new_ltEs5(xwv28000, xwv29000, fa, fb, fc) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, ty_Float) -> new_ltEs17(xwv28001, xwv29001) 27.70/11.37 new_lt20(xwv28001, xwv29001, app(ty_[], cbh)) -> new_lt5(xwv28001, xwv29001, cbh) 27.70/11.37 new_esEs23(xwv401, xwv3001, ty_Ordering) -> new_esEs15(xwv401, xwv3001) 27.70/11.37 new_compare10(xwv28000, xwv29000, True) -> LT 27.70/11.37 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 27.70/11.37 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 27.70/11.37 new_lt20(xwv28001, xwv29001, ty_Double) -> new_lt17(xwv28001, xwv29001) 27.70/11.37 new_primPlusNat1(Zero, Zero) -> Zero 27.70/11.37 new_lt19(xwv28000, xwv29000, ty_Char) -> new_lt15(xwv28000, xwv29000) 27.70/11.37 new_esEs20(xwv28000, xwv29000, ty_Integer) -> new_esEs10(xwv28000, xwv29000) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Integer, eh) -> new_ltEs9(xwv28000, xwv29000) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.37 new_lt8(xwv28000, xwv29000, ty_Float) -> new_lt18(xwv28000, xwv29000) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.37 new_esEs25(xwv401, xwv3001, app(ty_Maybe, chf)) -> new_esEs4(xwv401, xwv3001, chf) 27.70/11.37 new_lt8(xwv28000, xwv29000, app(ty_Ratio, bag)) -> new_lt13(xwv28000, xwv29000, bag) 27.70/11.37 new_esEs18(xwv28000, xwv29000, ty_Int) -> new_esEs17(xwv28000, xwv29000) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_[], dcg)) -> new_ltEs16(xwv28000, xwv29000, dcg) 27.70/11.37 new_lt4(xwv28000, xwv29000) -> new_esEs15(new_compare9(xwv28000, xwv29000), LT) 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.37 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 27.70/11.37 new_esEs23(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 27.70/11.37 new_lt19(xwv28000, xwv29000, ty_@0) -> new_lt4(xwv28000, xwv29000) 27.70/11.37 new_esEs18(xwv28000, xwv29000, app(app(ty_Either, bae), baf)) -> new_esEs6(xwv28000, xwv29000, bae, baf) 27.70/11.37 new_primMulNat0(Succ(xwv40100), Succ(xwv300000)) -> new_primPlusNat0(new_primMulNat0(xwv40100, Succ(xwv300000)), xwv300000) 27.70/11.37 new_compare7(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.37 new_compare7(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.37 new_esEs22(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.37 new_ltEs15(xwv2800, xwv2900) -> new_fsEs(new_compare9(xwv2800, xwv2900)) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Integer) -> new_ltEs9(xwv28000, xwv29000) 27.70/11.37 new_primCmpInt(Pos(Zero), Pos(Succ(xwv2900))) -> new_primCmpNat1(Zero, xwv2900) 27.70/11.37 new_esEs26(xwv402, xwv3002, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs5(xwv402, xwv3002, dba, dbb, dbc) 27.70/11.37 new_esEs21(xwv28001, xwv29001, app(app(ty_@2, cbf), cbg)) -> new_esEs7(xwv28001, xwv29001, cbf, cbg) 27.70/11.37 new_esEs19(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.37 new_esEs24(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.37 new_esEs26(xwv402, xwv3002, app(ty_Ratio, dbd)) -> new_esEs14(xwv402, xwv3002, dbd) 27.70/11.37 new_lt20(xwv28001, xwv29001, app(app(ty_@2, cbf), cbg)) -> new_lt14(xwv28001, xwv29001, cbf, cbg) 27.70/11.37 new_esEs21(xwv28001, xwv29001, ty_Ordering) -> new_esEs15(xwv28001, xwv29001) 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), app(app(ty_@2, bge), bgf)) -> new_esEs7(xwv400, xwv3000, bge, bgf) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(ty_@2, dce), dcf)) -> new_ltEs12(xwv28000, xwv29000, dce, dcf) 27.70/11.37 new_esEs29(xwv40, xwv300, ty_Integer) -> new_esEs10(xwv40, xwv300) 27.70/11.37 new_compare16(xwv28000, xwv29000) -> new_compare25(xwv28000, xwv29000, new_esEs12(xwv28000, xwv29000)) 27.70/11.37 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 27.70/11.37 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 27.70/11.37 new_esEs9([], [], bdb) -> True 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.37 new_esEs22(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.37 new_compare25(xwv28000, xwv29000, False) -> new_compare10(xwv28000, xwv29000, new_ltEs8(xwv28000, xwv29000)) 27.70/11.37 new_esEs29(xwv40, xwv300, app(ty_[], bdb)) -> new_esEs9(xwv40, xwv300, bdb) 27.70/11.37 new_esEs26(xwv402, xwv3002, app(ty_Maybe, dah)) -> new_esEs4(xwv402, xwv3002, dah) 27.70/11.37 new_primEqNat0(Zero, Zero) -> True 27.70/11.37 new_lt19(xwv28000, xwv29000, ty_Ordering) -> new_lt6(xwv28000, xwv29000) 27.70/11.37 new_esEs21(xwv28001, xwv29001, ty_Double) -> new_esEs11(xwv28001, xwv29001) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Double) -> new_ltEs4(xwv28000, xwv29000) 27.70/11.37 new_compare31(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.37 new_compare31(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.37 new_lt15(xwv28000, xwv29000) -> new_esEs15(new_compare13(xwv28000, xwv29000), LT) 27.70/11.37 new_ltEs10(LT, GT) -> True 27.70/11.37 new_asAs(False, xwv57) -> False 27.70/11.37 new_esEs19(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.37 new_ltEs13(xwv2800, xwv2900) -> new_fsEs(new_compare13(xwv2800, xwv2900)) 27.70/11.37 new_esEs19(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, ty_Int) -> new_ltEs14(xwv2800, xwv2900) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, ty_Float) -> new_ltEs17(xwv28002, xwv29002) 27.70/11.37 new_lt20(xwv28001, xwv29001, ty_Ordering) -> new_lt6(xwv28001, xwv29001) 27.70/11.37 new_esEs25(xwv401, xwv3001, ty_Float) -> new_esEs13(xwv401, xwv3001) 27.70/11.37 new_ltEs6(Left(xwv28000), Right(xwv29000), gc, eh) -> True 27.70/11.37 new_ltEs19(xwv2800, xwv2900, ty_Ordering) -> new_ltEs10(xwv2800, xwv2900) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, ty_Ordering) -> new_ltEs10(xwv28002, xwv29002) 27.70/11.37 new_esEs18(xwv28000, xwv29000, ty_Integer) -> new_esEs10(xwv28000, xwv29000) 27.70/11.37 new_ltEs5(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), beg, beh, bfa) -> new_pePe(new_lt19(xwv28000, xwv29000, beg), new_asAs(new_esEs20(xwv28000, xwv29000, beg), new_pePe(new_lt20(xwv28001, xwv29001, beh), new_asAs(new_esEs21(xwv28001, xwv29001, beh), new_ltEs20(xwv28002, xwv29002, bfa))))) 27.70/11.37 new_lt19(xwv28000, xwv29000, app(app(ty_@2, bch), bda)) -> new_lt14(xwv28000, xwv29000, bch, bda) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.37 new_lt8(xwv28000, xwv29000, app(ty_Maybe, baa)) -> new_lt9(xwv28000, xwv29000, baa) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.37 new_compare29(xwv28000, xwv29000, ty_Integer) -> new_compare8(xwv28000, xwv29000) 27.70/11.37 new_esEs20(xwv28000, xwv29000, ty_Int) -> new_esEs17(xwv28000, xwv29000) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, ty_Float) -> new_ltEs17(xwv2800, xwv2900) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, ty_Int) -> new_ltEs14(xwv28002, xwv29002) 27.70/11.37 new_esEs18(xwv28000, xwv29000, app(ty_[], bbb)) -> new_esEs9(xwv28000, xwv29000, bbb) 27.70/11.37 new_esEs20(xwv28000, xwv29000, app(app(ty_@2, bch), bda)) -> new_esEs7(xwv28000, xwv29000, bch, bda) 27.70/11.37 27.70/11.37 The set Q consists of the following terms: 27.70/11.37 27.70/11.37 new_compare29(x0, x1, ty_Int) 27.70/11.37 new_esEs22(x0, x1, ty_Float) 27.70/11.37 new_esEs21(x0, x1, ty_Double) 27.70/11.37 new_esEs19(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_esEs4(Just(x0), Just(x1), ty_Ordering) 27.70/11.37 new_pePe(False, x0) 27.70/11.37 new_primCompAux0(x0, EQ) 27.70/11.37 new_esEs26(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_compare1([], :(x0, x1), x2) 27.70/11.37 new_esEs4(Just(x0), Just(x1), ty_Double) 27.70/11.37 new_primPlusNat1(Zero, Zero) 27.70/11.37 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 27.70/11.37 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 27.70/11.37 new_primPlusNat1(Succ(x0), Zero) 27.70/11.37 new_ltEs10(LT, LT) 27.70/11.37 new_compare29(x0, x1, ty_Char) 27.70/11.37 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 27.70/11.37 new_esEs21(x0, x1, ty_Int) 27.70/11.37 new_sr(x0, x1) 27.70/11.37 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs20(x0, x1, ty_Double) 27.70/11.37 new_ltEs19(x0, x1, app(ty_[], x2)) 27.70/11.37 new_primEqInt(Pos(Zero), Pos(Zero)) 27.70/11.37 new_esEs4(Just(x0), Nothing, x1) 27.70/11.37 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 27.70/11.37 new_esEs16(Char(x0), Char(x1)) 27.70/11.37 new_primCmpNat2(Zero, Succ(x0)) 27.70/11.37 new_esEs17(x0, x1) 27.70/11.37 new_compare13(Char(x0), Char(x1)) 27.70/11.37 new_esEs28(x0, x1, ty_Int) 27.70/11.37 new_lt19(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_ltEs15(x0, x1) 27.70/11.37 new_esEs24(x0, x1, ty_Float) 27.70/11.37 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_lt8(x0, x1, ty_Char) 27.70/11.37 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs20(x0, x1, ty_Ordering) 27.70/11.37 new_esEs18(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_esEs21(x0, x1, ty_Ordering) 27.70/11.37 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 27.70/11.37 new_compare29(x0, x1, ty_Ordering) 27.70/11.37 new_primEqInt(Neg(Zero), Neg(Zero)) 27.70/11.37 new_esEs25(x0, x1, ty_Float) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 27.70/11.37 new_compare17(x0, x1, True, x2, x3) 27.70/11.37 new_esEs15(EQ, GT) 27.70/11.37 new_esEs15(GT, EQ) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 27.70/11.37 new_lt20(x0, x1, ty_Ordering) 27.70/11.37 new_esEs15(LT, LT) 27.70/11.37 new_esEs12(False, True) 27.70/11.37 new_esEs12(True, False) 27.70/11.37 new_esEs29(x0, x1, app(ty_[], x2)) 27.70/11.37 new_compare210(x0, x1, True) 27.70/11.37 new_compare28(:%(x0, x1), :%(x2, x3), ty_Int) 27.70/11.37 new_esEs29(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_ltEs13(x0, x1) 27.70/11.37 new_asAs(True, x0) 27.70/11.37 new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 27.70/11.37 new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 27.70/11.37 new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 27.70/11.37 new_compare14(x0, x1) 27.70/11.37 new_ltEs8(False, False) 27.70/11.37 new_compare211(x0, x1, True, x2, x3) 27.70/11.37 new_lt20(x0, x1, ty_Double) 27.70/11.37 new_compare29(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs21(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_ltEs10(GT, EQ) 27.70/11.37 new_ltEs10(EQ, GT) 27.70/11.37 new_lt8(x0, x1, ty_Int) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), ty_Float) 27.70/11.37 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 27.70/11.37 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_lt8(x0, x1, ty_@0) 27.70/11.37 new_compare29(x0, x1, ty_Double) 27.70/11.37 new_esEs25(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_ltEs18(x0, x1, ty_Double) 27.70/11.37 new_compare27(x0, x1, True, x2, x3) 27.70/11.37 new_compare29(x0, x1, ty_Bool) 27.70/11.37 new_primEqInt(Pos(Zero), Neg(Zero)) 27.70/11.37 new_primEqInt(Neg(Zero), Pos(Zero)) 27.70/11.37 new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 27.70/11.37 new_ltEs7(Nothing, Nothing, x0) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 27.70/11.37 new_esEs25(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 27.70/11.37 new_esEs24(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 27.70/11.37 new_compare29(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 27.70/11.37 new_compare15(x0, x1, x2, x3, x4) 27.70/11.37 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_compare10(x0, x1, False) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 27.70/11.37 new_primCmpNat0(x0, Succ(x1)) 27.70/11.37 new_lt15(x0, x1) 27.70/11.37 new_lt20(x0, x1, app(ty_[], x2)) 27.70/11.37 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_compare110(x0, x1, True) 27.70/11.37 new_esEs29(x0, x1, ty_Int) 27.70/11.37 new_primMulInt(Pos(x0), Pos(x1)) 27.70/11.37 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 27.70/11.37 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_lt12(x0, x1, x2, x3) 27.70/11.37 new_esEs19(x0, x1, ty_Ordering) 27.70/11.37 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_compare29(x0, x1, ty_Integer) 27.70/11.37 new_esEs22(x0, x1, ty_Bool) 27.70/11.37 new_primMulInt(Pos(x0), Neg(x1)) 27.70/11.37 new_primMulInt(Neg(x0), Pos(x1)) 27.70/11.37 new_esEs24(x0, x1, ty_@0) 27.70/11.37 new_ltEs10(EQ, LT) 27.70/11.37 new_ltEs10(GT, GT) 27.70/11.37 new_ltEs10(LT, EQ) 27.70/11.37 new_esEs21(x0, x1, ty_Bool) 27.70/11.37 new_esEs23(x0, x1, ty_Integer) 27.70/11.37 new_lt13(x0, x1, x2) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 27.70/11.37 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 27.70/11.37 new_esEs15(LT, GT) 27.70/11.37 new_esEs15(GT, LT) 27.70/11.37 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 27.70/11.37 new_esEs29(x0, x1, ty_Char) 27.70/11.37 new_ltEs19(x0, x1, ty_Float) 27.70/11.37 new_esEs19(x0, x1, ty_Int) 27.70/11.37 new_esEs4(Nothing, Nothing, x0) 27.70/11.37 new_esEs23(x0, x1, ty_Bool) 27.70/11.37 new_compare1(:(x0, x1), [], x2) 27.70/11.37 new_primCompAux0(x0, LT) 27.70/11.37 new_sr0(Integer(x0), Integer(x1)) 27.70/11.37 new_esEs20(x0, x1, ty_@0) 27.70/11.37 new_compare27(x0, x1, False, x2, x3) 27.70/11.37 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_ltEs19(x0, x1, ty_Char) 27.70/11.37 new_esEs18(x0, x1, ty_Double) 27.70/11.37 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 27.70/11.37 new_esEs18(x0, x1, ty_Ordering) 27.70/11.37 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 27.70/11.37 new_esEs25(x0, x1, ty_@0) 27.70/11.37 new_lt17(x0, x1) 27.70/11.37 new_compare8(Integer(x0), Integer(x1)) 27.70/11.37 new_lt8(x0, x1, ty_Double) 27.70/11.37 new_lt20(x0, x1, ty_Char) 27.70/11.37 new_esEs26(x0, x1, ty_Integer) 27.70/11.37 new_esEs29(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_compare29(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs4(Just(x0), Just(x1), ty_Bool) 27.70/11.37 new_ltEs19(x0, x1, ty_Int) 27.70/11.37 new_compare28(:%(x0, x1), :%(x2, x3), ty_Integer) 27.70/11.37 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 27.70/11.37 new_primCompAux1(x0, x1, x2, x3) 27.70/11.37 new_esEs19(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_lt20(x0, x1, ty_Int) 27.70/11.37 new_compare29(x0, x1, ty_@0) 27.70/11.37 new_esEs19(x0, x1, ty_Float) 27.70/11.37 new_esEs25(x0, x1, ty_Integer) 27.70/11.37 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_primCmpInt(Neg(Zero), Neg(Zero)) 27.70/11.37 new_ltEs6(Right(x0), Left(x1), x2, x3) 27.70/11.37 new_ltEs20(x0, x1, ty_Float) 27.70/11.37 new_ltEs6(Left(x0), Right(x1), x2, x3) 27.70/11.37 new_compare23(Nothing, Just(x0), False, x1) 27.70/11.37 new_compare23(Nothing, Nothing, False, x0) 27.70/11.37 new_esEs23(x0, x1, app(ty_[], x2)) 27.70/11.37 new_esEs27(x0, x1, ty_Int) 27.70/11.37 new_esEs26(x0, x1, ty_Float) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), ty_Double) 27.70/11.37 new_compare210(x0, x1, False) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 27.70/11.37 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs23(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_ltEs14(x0, x1) 27.70/11.37 new_esEs26(x0, x1, ty_Bool) 27.70/11.37 new_primCmpInt(Pos(Zero), Neg(Zero)) 27.70/11.37 new_primCmpInt(Neg(Zero), Pos(Zero)) 27.70/11.37 new_esEs20(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs20(x0, x1, app(ty_[], x2)) 27.70/11.37 new_esEs27(x0, x1, ty_Integer) 27.70/11.37 new_esEs22(x0, x1, ty_Integer) 27.70/11.37 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_lt8(x0, x1, app(ty_[], x2)) 27.70/11.37 new_compare29(x0, x1, app(ty_[], x2)) 27.70/11.37 new_lt14(x0, x1, x2, x3) 27.70/11.37 new_esEs21(x0, x1, ty_Char) 27.70/11.37 new_esEs21(x0, x1, ty_Integer) 27.70/11.37 new_ltEs8(True, False) 27.70/11.37 new_ltEs8(False, True) 27.70/11.37 new_esEs4(Just(x0), Just(x1), ty_Char) 27.70/11.37 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 27.70/11.37 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_lt5(x0, x1, x2) 27.70/11.37 new_lt20(x0, x1, ty_Float) 27.70/11.37 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 27.70/11.37 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 27.70/11.37 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 27.70/11.37 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 27.70/11.37 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_lt19(x0, x1, ty_Double) 27.70/11.37 new_compare11(x0, x1, False, x2, x3, x4) 27.70/11.37 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 27.70/11.37 new_compare29(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 27.70/11.37 new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 27.70/11.37 new_lt20(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_esEs29(x0, x1, ty_Ordering) 27.70/11.37 new_esEs19(x0, x1, ty_Char) 27.70/11.37 new_esEs23(x0, x1, ty_Float) 27.70/11.37 new_esEs9(:(x0, x1), [], x2) 27.70/11.37 new_ltEs18(x0, x1, ty_Ordering) 27.70/11.37 new_esEs4(Just(x0), Just(x1), ty_Int) 27.70/11.37 new_compare19(x0, x1, False, x2) 27.70/11.37 new_lt19(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs4(Just(x0), Just(x1), ty_Float) 27.70/11.37 new_esEs26(x0, x1, app(ty_[], x2)) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 27.70/11.37 new_lt19(x0, x1, ty_@0) 27.70/11.37 new_esEs29(x0, x1, ty_Integer) 27.70/11.37 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 27.70/11.37 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 27.70/11.37 new_esEs22(x0, x1, ty_Ordering) 27.70/11.37 new_lt20(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_primCmpNat2(Succ(x0), Zero) 27.70/11.37 new_esEs24(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs23(x0, x1, ty_Int) 27.70/11.37 new_lt19(x0, x1, ty_Int) 27.70/11.37 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_esEs22(x0, x1, ty_Double) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), ty_Char) 27.70/11.37 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_primCmpNat2(Succ(x0), Succ(x1)) 27.70/11.37 new_esEs21(x0, x1, ty_Float) 27.70/11.37 new_esEs19(x0, x1, ty_Bool) 27.70/11.37 new_lt19(x0, x1, app(ty_[], x2)) 27.70/11.37 new_compare25(x0, x1, False) 27.70/11.37 new_ltEs20(x0, x1, ty_Char) 27.70/11.37 new_esEs26(x0, x1, ty_Char) 27.70/11.37 new_esEs25(x0, x1, ty_Ordering) 27.70/11.37 new_lt11(x0, x1, x2, x3, x4) 27.70/11.37 new_ltEs18(x0, x1, ty_Integer) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 27.70/11.37 new_primMulNat0(Zero, Zero) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 27.70/11.37 new_ltEs19(x0, x1, ty_Integer) 27.70/11.37 new_esEs24(x0, x1, ty_Double) 27.70/11.37 new_primEqNat0(Succ(x0), Zero) 27.70/11.37 new_esEs15(EQ, EQ) 27.70/11.37 new_primEqNat0(Succ(x0), Succ(x1)) 27.70/11.37 new_esEs25(x0, x1, ty_Int) 27.70/11.37 new_ltEs18(x0, x1, ty_Bool) 27.70/11.37 new_esEs23(x0, x1, ty_Char) 27.70/11.37 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_ltEs19(x0, x1, ty_Bool) 27.70/11.37 new_esEs26(x0, x1, ty_Int) 27.70/11.37 new_lt20(x0, x1, ty_Integer) 27.70/11.37 new_ltEs10(EQ, EQ) 27.70/11.37 new_ltEs7(Just(x0), Nothing, x1) 27.70/11.37 new_esEs19(x0, x1, ty_Integer) 27.70/11.37 new_compare9(@0, @0) 27.70/11.37 new_ltEs19(x0, x1, ty_@0) 27.70/11.37 new_compare110(x0, x1, False) 27.70/11.37 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_ltEs20(x0, x1, ty_Int) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 27.70/11.37 new_lt4(x0, x1) 27.70/11.37 new_esEs24(x0, x1, ty_Ordering) 27.70/11.37 new_esEs19(x0, x1, ty_@0) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 27.70/11.37 new_lt8(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_compare29(x0, x1, ty_Float) 27.70/11.37 new_lt8(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs18(x0, x1, ty_Char) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 27.70/11.37 new_primCmpNat2(Zero, Zero) 27.70/11.37 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 27.70/11.37 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 27.70/11.37 new_esEs18(x0, x1, ty_@0) 27.70/11.37 new_compare6(x0, x1, x2) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 27.70/11.37 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_lt10(x0, x1) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), ty_Int) 27.70/11.37 new_compare24(x0, x1, False, x2, x3, x4) 27.70/11.37 new_asAs(False, x0) 27.70/11.37 new_esEs29(x0, x1, ty_Bool) 27.70/11.37 new_esEs23(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 27.70/11.37 new_primEqNat0(Zero, Succ(x0)) 27.70/11.37 new_not(True) 27.70/11.37 new_lt20(x0, x1, ty_Bool) 27.70/11.37 new_esEs22(x0, x1, ty_Char) 27.70/11.37 new_ltEs10(GT, LT) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), ty_@0) 27.70/11.37 new_ltEs10(LT, GT) 27.70/11.37 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 27.70/11.37 new_esEs22(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_lt8(x0, x1, ty_Float) 27.70/11.37 new_esEs12(False, False) 27.70/11.37 new_ltEs20(x0, x1, ty_Double) 27.70/11.37 new_esEs22(x0, x1, app(ty_[], x2)) 27.70/11.37 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 27.70/11.37 new_ltEs20(x0, x1, ty_@0) 27.70/11.37 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_esEs20(x0, x1, ty_Integer) 27.70/11.37 new_esEs26(x0, x1, ty_Ordering) 27.70/11.37 new_ltEs4(x0, x1) 27.70/11.37 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 27.70/11.37 new_esEs9([], [], x0) 27.70/11.37 new_esEs18(x0, x1, ty_Integer) 27.70/11.37 new_compare18(x0, x1, True, x2, x3) 27.70/11.37 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs25(x0, x1, ty_Char) 27.70/11.37 new_primMulNat0(Zero, Succ(x0)) 27.70/11.37 new_primCmpNat0(x0, Zero) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 27.70/11.37 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 27.70/11.37 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 27.70/11.37 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 27.70/11.37 new_esEs29(x0, x1, ty_Float) 27.70/11.37 new_ltEs16(x0, x1, x2) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 27.70/11.37 new_esEs18(x0, x1, ty_Bool) 27.70/11.37 new_esEs22(x0, x1, ty_Int) 27.70/11.37 new_primPlusNat1(Zero, Succ(x0)) 27.70/11.37 new_esEs20(x0, x1, ty_Bool) 27.70/11.37 new_compare23(x0, x1, True, x2) 27.70/11.37 new_ltEs7(Nothing, Just(x0), x1) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 27.70/11.37 new_lt6(x0, x1) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 27.70/11.37 new_esEs20(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_esEs4(Just(x0), Just(x1), ty_Integer) 27.70/11.37 new_ltEs18(x0, x1, ty_Char) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 27.70/11.37 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 27.70/11.37 new_esEs25(x0, x1, ty_Double) 27.70/11.37 new_compare17(x0, x1, False, x2, x3) 27.70/11.37 new_ltEs18(x0, x1, ty_@0) 27.70/11.37 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs25(x0, x1, ty_Bool) 27.70/11.37 new_esEs29(x0, x1, ty_@0) 27.70/11.37 new_esEs21(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs26(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_lt18(x0, x1) 27.70/11.37 new_esEs24(x0, x1, app(ty_[], x2)) 27.70/11.37 new_esEs9([], :(x0, x1), x2) 27.70/11.37 new_lt19(x0, x1, ty_Ordering) 27.70/11.37 new_esEs22(x0, x1, ty_@0) 27.70/11.37 new_ltEs18(x0, x1, ty_Int) 27.70/11.37 new_esEs23(x0, x1, ty_Ordering) 27.70/11.37 new_ltEs20(x0, x1, app(ty_[], x2)) 27.70/11.37 new_ltEs20(x0, x1, ty_Bool) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 27.70/11.37 new_primCmpInt(Pos(Zero), Pos(Zero)) 27.70/11.37 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 27.70/11.37 new_ltEs11(x0, x1, x2) 27.70/11.37 new_esEs9(:(x0, x1), :(x2, x3), x4) 27.70/11.37 new_pePe(True, x0) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), ty_Integer) 27.70/11.37 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 27.70/11.37 new_ltEs19(x0, x1, ty_Ordering) 27.70/11.37 new_compare25(x0, x1, True) 27.70/11.37 new_primMulInt(Neg(x0), Neg(x1)) 27.70/11.37 new_lt19(x0, x1, ty_Integer) 27.70/11.37 new_esEs6(Left(x0), Right(x1), x2, x3) 27.70/11.37 new_esEs6(Right(x0), Left(x1), x2, x3) 27.70/11.37 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 27.70/11.37 new_compare12(x0, x1) 27.70/11.37 new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 27.70/11.37 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 27.70/11.37 new_esEs18(x0, x1, ty_Float) 27.70/11.37 new_ltEs18(x0, x1, ty_Float) 27.70/11.37 new_primMulNat0(Succ(x0), Succ(x1)) 27.70/11.37 new_ltEs19(x0, x1, ty_Double) 27.70/11.37 new_compare11(x0, x1, True, x2, x3, x4) 27.70/11.37 new_esEs15(GT, GT) 27.70/11.37 new_primCmpNat1(Zero, x0) 27.70/11.37 new_esEs29(x0, x1, ty_Double) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 27.70/11.37 new_esEs28(x0, x1, ty_Integer) 27.70/11.37 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_esEs15(LT, EQ) 27.70/11.37 new_esEs15(EQ, LT) 27.70/11.37 new_lt19(x0, x1, ty_Bool) 27.70/11.37 new_primPlusNat0(x0, x1) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 27.70/11.37 new_esEs20(x0, x1, ty_Char) 27.70/11.37 new_lt20(x0, x1, ty_@0) 27.70/11.37 new_lt16(x0, x1) 27.70/11.37 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 27.70/11.37 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 27.70/11.37 new_esEs21(x0, x1, ty_@0) 27.70/11.37 new_compare16(x0, x1) 27.70/11.37 new_fsEs(x0) 27.70/11.37 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs24(x0, x1, ty_Integer) 27.70/11.37 new_primPlusNat1(Succ(x0), Succ(x1)) 27.70/11.37 new_compare211(x0, x1, False, x2, x3) 27.70/11.37 new_compare19(x0, x1, True, x2) 27.70/11.37 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs18(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs18(x0, x1, app(ty_[], x2)) 27.70/11.37 new_ltEs20(x0, x1, ty_Integer) 27.70/11.37 new_esEs8(@0, @0) 27.70/11.37 new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 27.70/11.37 new_esEs19(x0, x1, app(ty_[], x2)) 27.70/11.37 new_esEs18(x0, x1, ty_Int) 27.70/11.37 new_esEs20(x0, x1, ty_Int) 27.70/11.37 new_primEqNat0(Zero, Zero) 27.70/11.37 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 27.70/11.37 new_esEs26(x0, x1, ty_Double) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 27.70/11.37 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 27.70/11.37 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_primCmpNat1(Succ(x0), x1) 27.70/11.37 new_esEs12(True, True) 27.70/11.37 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 27.70/11.37 new_esEs10(Integer(x0), Integer(x1)) 27.70/11.37 new_not(False) 27.70/11.37 new_esEs24(x0, x1, ty_Char) 27.70/11.37 new_lt8(x0, x1, ty_Bool) 27.70/11.37 new_esEs26(x0, x1, ty_@0) 27.70/11.37 new_compare10(x0, x1, True) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), ty_Bool) 27.70/11.37 new_ltEs9(x0, x1) 27.70/11.37 new_compare1([], [], x0) 27.70/11.37 new_ltEs20(x0, x1, ty_Ordering) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 27.70/11.37 new_esEs24(x0, x1, ty_Int) 27.70/11.37 new_esEs13(Float(x0, x1), Float(x2, x3)) 27.70/11.37 new_primCompAux0(x0, GT) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 27.70/11.37 new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 27.70/11.37 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_primMulNat0(Succ(x0), Zero) 27.70/11.37 new_ltEs18(x0, x1, app(ty_[], x2)) 27.70/11.37 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs23(x0, x1, ty_Double) 27.70/11.37 new_ltEs8(True, True) 27.70/11.37 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs20(x0, x1, ty_Float) 27.70/11.37 new_lt7(x0, x1) 27.70/11.37 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs25(x0, x1, app(ty_[], x2)) 27.70/11.37 new_lt8(x0, x1, ty_Ordering) 27.70/11.37 new_lt9(x0, x1, x2) 27.70/11.37 new_lt19(x0, x1, ty_Float) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 27.70/11.37 new_lt8(x0, x1, ty_Integer) 27.70/11.37 new_compare23(Just(x0), Just(x1), False, x2) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 27.70/11.37 new_compare23(Just(x0), Nothing, False, x1) 27.70/11.37 new_compare18(x0, x1, False, x2, x3) 27.70/11.37 new_lt19(x0, x1, ty_Char) 27.70/11.37 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_esEs14(:%(x0, x1), :%(x2, x3), x4) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 27.70/11.37 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 27.70/11.37 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 27.70/11.37 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 27.70/11.37 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 27.70/11.37 new_esEs19(x0, x1, ty_Double) 27.70/11.37 new_esEs22(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs21(x0, x1, app(ty_[], x2)) 27.70/11.37 new_compare26(x0, x1, x2, x3) 27.70/11.37 new_esEs23(x0, x1, ty_@0) 27.70/11.37 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs11(Double(x0, x1), Double(x2, x3)) 27.70/11.37 new_compare24(x0, x1, True, x2, x3, x4) 27.70/11.37 new_compare1(:(x0, x1), :(x2, x3), x4) 27.70/11.37 new_esEs4(Just(x0), Just(x1), ty_@0) 27.70/11.37 new_ltEs17(x0, x1) 27.70/11.37 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 27.70/11.37 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 27.70/11.37 new_esEs4(Nothing, Just(x0), x1) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 27.70/11.37 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_compare30(x0, x1, x2, x3) 27.70/11.37 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 27.70/11.37 new_esEs24(x0, x1, ty_Bool) 27.70/11.37 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 27.70/11.37 27.70/11.37 We have to consider all minimal (P,Q,R)-chains. 27.70/11.37 ---------------------------------------- 27.70/11.37 27.70/11.37 (27) TransformationProof (EQUIVALENT) 27.70/11.37 By rewriting [LPAR04] the rule new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(new_compare23(Just(xwv40), Nothing, False, h), GT), h, ba) at position [5,0] we obtained the following new rules [LPAR04]: 27.70/11.37 27.70/11.37 (new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(GT, GT), h, ba),new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(GT, GT), h, ba)) 27.70/11.37 27.70/11.37 27.70/11.37 ---------------------------------------- 27.70/11.37 27.70/11.37 (28) 27.70/11.37 Obligation: 27.70/11.37 Q DP problem: 27.70/11.37 The TRS P consists of the following rules: 27.70/11.37 27.70/11.37 new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, False, h, ba) -> new_delFromFM11(xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(new_compare23(Just(xwv40), Nothing, new_esEs4(Just(xwv40), Nothing, h), h), LT), h, ba) 27.70/11.37 new_delFromFM11(xwv31, xwv32, xwv33, xwv34, xwv40, True, h, ba) -> new_delFromFM(xwv33, Just(xwv40), h, ba) 27.70/11.37 new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(new_compare23(Just(xwv40), Just(xwv300), new_esEs29(xwv40, xwv300, h), h), GT), h, ba) 27.70/11.37 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bb, bc) -> new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs15(new_compare23(Just(xwv18), Just(xwv13), new_esEs4(Just(xwv18), Just(xwv13), bb), bb), LT), bb, bc) 27.70/11.37 new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv16, Just(xwv18), bb, bc) 27.70/11.37 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv17, Just(xwv18), bb, bc) 27.70/11.37 new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, True, h, ba) -> new_delFromFM(xwv34, Just(xwv40), h, ba) 27.70/11.37 new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(GT, GT), h, ba) 27.70/11.37 27.70/11.37 The TRS R consists of the following rules: 27.70/11.37 27.70/11.37 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 27.70/11.37 new_primCmpInt(Neg(Succ(xwv2800)), Pos(xwv290)) -> LT 27.70/11.37 new_ltEs19(xwv2800, xwv2900, ty_Double) -> new_ltEs4(xwv2800, xwv2900) 27.70/11.37 new_pePe(True, xwv131) -> True 27.70/11.37 new_esEs24(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.37 new_compare29(xwv28000, xwv29000, app(app(ty_@2, cac), cad)) -> new_compare30(xwv28000, xwv29000, cac, cad) 27.70/11.37 new_ltEs14(xwv2800, xwv2900) -> new_fsEs(new_compare14(xwv2800, xwv2900)) 27.70/11.37 new_lt8(xwv28000, xwv29000, app(app(ty_@2, bah), bba)) -> new_lt14(xwv28000, xwv29000, bah, bba) 27.70/11.37 new_compare23(xwv280, xwv290, True, bee) -> EQ 27.70/11.37 new_esEs23(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.70/11.37 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 27.70/11.37 new_ltEs20(xwv28002, xwv29002, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_ltEs5(xwv28002, xwv29002, ccb, ccc, ccd) 27.70/11.37 new_primCmpInt(Pos(Zero), Neg(Succ(xwv2900))) -> GT 27.70/11.37 new_esEs29(xwv40, xwv300, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs5(xwv40, xwv300, bff, bfg, bfh) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Ordering, eh) -> new_ltEs10(xwv28000, xwv29000) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, app(app(ty_@2, hg), hh)) -> new_ltEs12(xwv2800, xwv2900, hg, hh) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Int, eh) -> new_ltEs14(xwv28000, xwv29000) 27.70/11.37 new_esEs18(xwv28000, xwv29000, ty_Float) -> new_esEs13(xwv28000, xwv29000) 27.70/11.37 new_esEs24(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.37 new_esEs20(xwv28000, xwv29000, ty_Double) -> new_esEs11(xwv28000, xwv29000) 27.70/11.37 new_esEs26(xwv402, xwv3002, app(app(ty_@2, daf), dag)) -> new_esEs7(xwv402, xwv3002, daf, dag) 27.70/11.37 new_compare15(xwv28000, xwv29000, ed, ee, ef) -> new_compare24(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, ed, ee, ef), ed, ee, ef) 27.70/11.37 new_esEs18(xwv28000, xwv29000, ty_Bool) -> new_esEs12(xwv28000, xwv29000) 27.70/11.37 new_ltEs10(GT, LT) -> False 27.70/11.37 new_lt7(xwv28000, xwv29000) -> new_esEs15(new_compare8(xwv28000, xwv29000), LT) 27.70/11.37 new_ltEs4(xwv2800, xwv2900) -> new_fsEs(new_compare7(xwv2800, xwv2900)) 27.70/11.37 new_esEs25(xwv401, xwv3001, ty_Double) -> new_esEs11(xwv401, xwv3001) 27.70/11.37 new_primCompAux0(xwv153, GT) -> GT 27.70/11.37 new_esEs22(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.37 new_esEs28(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.70/11.37 new_esEs19(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, ty_Double) -> new_ltEs4(xwv28002, xwv29002) 27.70/11.37 new_compare210(xwv28000, xwv29000, False) -> new_compare110(xwv28000, xwv29000, new_ltEs10(xwv28000, xwv29000)) 27.70/11.37 new_primEqInt(Pos(Succ(xwv4000)), Pos(Zero)) -> False 27.70/11.37 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 27.70/11.37 new_esEs27(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.37 new_ltEs10(EQ, LT) -> False 27.70/11.37 new_compare31(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.37 new_ltEs11(xwv2800, xwv2900, bfb) -> new_fsEs(new_compare28(xwv2800, xwv2900, bfb)) 27.70/11.37 new_esEs23(xwv401, xwv3001, app(ty_[], cee)) -> new_esEs9(xwv401, xwv3001, cee) 27.70/11.37 new_lt16(xwv280, xwv290) -> new_esEs15(new_compare14(xwv280, xwv290), LT) 27.70/11.37 new_primCmpNat2(Succ(xwv28000), Succ(xwv29000)) -> new_primCmpNat2(xwv28000, xwv29000) 27.70/11.37 new_esEs20(xwv28000, xwv29000, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs5(xwv28000, xwv29000, ed, ee, ef) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), ty_Double, bd) -> new_esEs11(xwv400, xwv3000) 27.70/11.37 new_compare1(:(xwv28000, xwv28001), [], bce) -> GT 27.70/11.37 new_esEs22(xwv400, xwv3000, app(ty_Maybe, cdh)) -> new_esEs4(xwv400, xwv3000, cdh) 27.70/11.37 new_primEqNat0(Succ(xwv4000), Succ(xwv30000)) -> new_primEqNat0(xwv4000, xwv30000) 27.70/11.37 new_esEs23(xwv401, xwv3001, app(ty_Ratio, cff)) -> new_esEs14(xwv401, xwv3001, cff) 27.70/11.37 new_esEs29(xwv40, xwv300, ty_Float) -> new_esEs13(xwv40, xwv300) 27.70/11.37 new_compare12(xwv28000, xwv29000) -> new_compare210(xwv28000, xwv29000, new_esEs15(xwv28000, xwv29000)) 27.70/11.37 new_primCompAux0(xwv153, LT) -> LT 27.70/11.37 new_esEs20(xwv28000, xwv29000, ty_Ordering) -> new_esEs15(xwv28000, xwv29000) 27.70/11.37 new_not(True) -> False 27.70/11.37 new_ltEs18(xwv28001, xwv29001, app(ty_Maybe, bbc)) -> new_ltEs7(xwv28001, xwv29001, bbc) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs5(xwv2800, xwv2900, beg, beh, bfa) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs5(xwv28000, xwv29000, dbg, dbh, dca) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Integer) -> new_ltEs9(xwv28000, xwv29000) 27.70/11.37 new_esEs29(xwv40, xwv300, ty_Ordering) -> new_esEs15(xwv40, xwv300) 27.70/11.37 new_compare17(xwv28000, xwv29000, False, bcf, bcg) -> GT 27.70/11.37 new_compare29(xwv28000, xwv29000, ty_@0) -> new_compare9(xwv28000, xwv29000) 27.70/11.37 new_esEs18(xwv28000, xwv29000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs5(xwv28000, xwv29000, bab, bac, bad) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, ty_Bool) -> new_ltEs8(xwv2800, xwv2900) 27.70/11.37 new_esEs23(xwv401, xwv3001, ty_Bool) -> new_esEs12(xwv401, xwv3001) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs5(xwv28001, xwv29001, bbd, bbe, bbf) 27.70/11.37 new_esEs15(LT, EQ) -> False 27.70/11.37 new_esEs15(EQ, LT) -> False 27.70/11.37 new_ltEs18(xwv28001, xwv29001, app(app(ty_Either, bbg), bbh)) -> new_ltEs6(xwv28001, xwv29001, bbg, bbh) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(ty_Either, fd), ff), eh) -> new_ltEs6(xwv28000, xwv29000, fd, ff) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Bool, eh) -> new_ltEs8(xwv28000, xwv29000) 27.70/11.37 new_compare29(xwv28000, xwv29000, app(ty_Maybe, bhd)) -> new_compare6(xwv28000, xwv29000, bhd) 27.70/11.37 new_esEs8(@0, @0) -> True 27.70/11.37 new_primEqNat0(Succ(xwv4000), Zero) -> False 27.70/11.37 new_primEqNat0(Zero, Succ(xwv30000)) -> False 27.70/11.37 new_esEs24(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_Ratio, cf), bd) -> new_esEs14(xwv400, xwv3000, cf) 27.70/11.37 new_ltEs7(Nothing, Just(xwv29000), bef) -> True 27.70/11.37 new_esEs19(xwv400, xwv3000, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs5(xwv400, xwv3000, bea, beb, bec) 27.70/11.37 new_primCmpNat0(xwv2800, Succ(xwv2900)) -> new_primCmpNat2(xwv2800, xwv2900) 27.70/11.37 new_esEs22(xwv400, xwv3000, app(app(ty_@2, cdf), cdg)) -> new_esEs7(xwv400, xwv3000, cdf, cdg) 27.70/11.37 new_esEs22(xwv400, xwv3000, app(ty_[], cdc)) -> new_esEs9(xwv400, xwv3000, cdc) 27.70/11.37 new_esEs25(xwv401, xwv3001, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs5(xwv401, xwv3001, chg, chh, daa) 27.70/11.37 new_compare110(xwv28000, xwv29000, True) -> LT 27.70/11.37 new_esEs18(xwv28000, xwv29000, ty_Double) -> new_esEs11(xwv28000, xwv29000) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(app(ty_@3, ge), gf), gg)) -> new_ltEs5(xwv28000, xwv29000, ge, gf, gg) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Double) -> new_ltEs4(xwv28000, xwv29000) 27.70/11.37 new_esEs18(xwv28000, xwv29000, app(ty_Ratio, bag)) -> new_esEs14(xwv28000, xwv29000, bag) 27.70/11.37 new_esEs23(xwv401, xwv3001, ty_@0) -> new_esEs8(xwv401, xwv3001) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_Maybe, eg), eh) -> new_ltEs7(xwv28000, xwv29000, eg) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.37 new_primCmpInt(Pos(Succ(xwv2800)), Neg(xwv290)) -> GT 27.70/11.37 new_esEs24(xwv400, xwv3000, app(ty_Ratio, cgh)) -> new_esEs14(xwv400, xwv3000, cgh) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Bool) -> new_ltEs8(xwv28000, xwv29000) 27.70/11.37 new_esEs24(xwv400, xwv3000, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs5(xwv400, xwv3000, cge, cgf, cgg) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Char, eh) -> new_ltEs13(xwv28000, xwv29000) 27.70/11.37 new_ltEs10(GT, EQ) -> False 27.70/11.37 new_esEs29(xwv40, xwv300, ty_Double) -> new_esEs11(xwv40, xwv300) 27.70/11.37 new_esEs18(xwv28000, xwv29000, ty_Ordering) -> new_esEs15(xwv28000, xwv29000) 27.70/11.37 new_ltEs17(xwv2800, xwv2900) -> new_fsEs(new_compare31(xwv2800, xwv2900)) 27.70/11.37 new_ltEs9(xwv2800, xwv2900) -> new_fsEs(new_compare8(xwv2800, xwv2900)) 27.70/11.37 new_compare1(:(xwv28000, xwv28001), :(xwv29000, xwv29001), bce) -> new_primCompAux1(xwv28000, xwv29000, new_compare1(xwv28001, xwv29001, bce), bce) 27.70/11.37 new_esEs26(xwv402, xwv3002, ty_Char) -> new_esEs16(xwv402, xwv3002) 27.70/11.37 new_primPlusNat1(Succ(xwv33200), Succ(xwv9100)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv9100))) 27.70/11.37 new_lt8(xwv28000, xwv29000, ty_Int) -> new_lt16(xwv28000, xwv29000) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), app(app(app(ty_@3, cc), cd), ce), bd) -> new_esEs5(xwv400, xwv3000, cc, cd, ce) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_Ratio, eb)) -> new_esEs14(xwv400, xwv3000, eb) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, ty_Bool) -> new_ltEs8(xwv28002, xwv29002) 27.70/11.37 new_esEs28(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_Maybe, gd)) -> new_ltEs7(xwv28000, xwv29000, gd) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, app(ty_Maybe, cca)) -> new_ltEs7(xwv28002, xwv29002, cca) 27.70/11.37 new_compare211(xwv28000, xwv29000, False, bch, bda) -> new_compare18(xwv28000, xwv29000, new_ltEs12(xwv28000, xwv29000, bch, bda), bch, bda) 27.70/11.37 new_compare210(xwv28000, xwv29000, True) -> EQ 27.70/11.37 new_lt8(xwv28000, xwv29000, ty_@0) -> new_lt4(xwv28000, xwv29000) 27.70/11.37 new_esEs21(xwv28001, xwv29001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(xwv28001, xwv29001, cah, cba, cbb) 27.70/11.37 new_esEs14(:%(xwv400, xwv401), :%(xwv3000, xwv3001), bga) -> new_asAs(new_esEs27(xwv400, xwv3000, bga), new_esEs28(xwv401, xwv3001, bga)) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), ty_Ordering, bd) -> new_esEs15(xwv400, xwv3000) 27.70/11.37 new_pePe(False, xwv131) -> xwv131 27.70/11.37 new_lt19(xwv28000, xwv29000, ty_Int) -> new_lt16(xwv28000, xwv29000) 27.70/11.37 new_lt8(xwv28000, xwv29000, app(app(ty_Either, bae), baf)) -> new_lt12(xwv28000, xwv29000, bae, baf) 27.70/11.37 new_esEs22(xwv400, xwv3000, app(ty_Ratio, ced)) -> new_esEs14(xwv400, xwv3000, ced) 27.70/11.37 new_esEs12(False, False) -> True 27.70/11.37 new_esEs15(GT, GT) -> True 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Double, eh) -> new_ltEs4(xwv28000, xwv29000) 27.70/11.37 new_esEs22(xwv400, xwv3000, app(app(ty_Either, cdd), cde)) -> new_esEs6(xwv400, xwv3000, cdd, cde) 27.70/11.37 new_esEs15(EQ, GT) -> False 27.70/11.37 new_esEs15(GT, EQ) -> False 27.70/11.37 new_ltEs20(xwv28002, xwv29002, ty_Char) -> new_ltEs13(xwv28002, xwv29002) 27.70/11.37 new_lt8(xwv28000, xwv29000, ty_Ordering) -> new_lt6(xwv28000, xwv29000) 27.70/11.37 new_lt19(xwv28000, xwv29000, ty_Bool) -> new_lt10(xwv28000, xwv29000) 27.70/11.37 new_esEs25(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, ty_Double) -> new_ltEs4(xwv28001, xwv29001) 27.70/11.37 new_lt19(xwv28000, xwv29000, app(app(ty_Either, bcf), bcg)) -> new_lt12(xwv28000, xwv29000, bcf, bcg) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, app(ty_[], bcd)) -> new_ltEs16(xwv28001, xwv29001, bcd) 27.70/11.37 new_lt20(xwv28001, xwv29001, app(ty_Maybe, cag)) -> new_lt9(xwv28001, xwv29001, cag) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, app(app(ty_@2, bcb), bcc)) -> new_ltEs12(xwv28001, xwv29001, bcb, bcc) 27.70/11.37 new_esEs9(:(xwv400, xwv401), [], bdb) -> False 27.70/11.37 new_esEs9([], :(xwv3000, xwv3001), bdb) -> False 27.70/11.37 new_esEs25(xwv401, xwv3001, ty_Ordering) -> new_esEs15(xwv401, xwv3001) 27.70/11.37 new_lt19(xwv28000, xwv29000, app(ty_Maybe, ec)) -> new_lt9(xwv28000, xwv29000, ec) 27.70/11.37 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 27.70/11.37 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 27.70/11.37 new_esEs23(xwv401, xwv3001, app(ty_Maybe, cfb)) -> new_esEs4(xwv401, xwv3001, cfb) 27.70/11.37 new_compare11(xwv28000, xwv29000, True, ed, ee, ef) -> LT 27.70/11.37 new_esEs26(xwv402, xwv3002, app(ty_[], dac)) -> new_esEs9(xwv402, xwv3002, dac) 27.70/11.37 new_compare19(xwv117, xwv118, True, dbe) -> LT 27.70/11.37 new_ltEs18(xwv28001, xwv29001, ty_Integer) -> new_ltEs9(xwv28001, xwv29001) 27.70/11.37 new_compare30(xwv28000, xwv29000, bch, bda) -> new_compare211(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, bch, bda), bch, bda) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), ty_Integer, bd) -> new_esEs10(xwv400, xwv3000) 27.70/11.37 new_compare7(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.37 new_esEs20(xwv28000, xwv29000, app(ty_Ratio, caf)) -> new_esEs14(xwv28000, xwv29000, caf) 27.70/11.37 new_esEs21(xwv28001, xwv29001, ty_Float) -> new_esEs13(xwv28001, xwv29001) 27.70/11.37 new_lt6(xwv28000, xwv29000) -> new_esEs15(new_compare12(xwv28000, xwv29000), LT) 27.70/11.37 new_esEs18(xwv28000, xwv29000, ty_Char) -> new_esEs16(xwv28000, xwv29000) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, ty_Char) -> new_ltEs13(xwv2800, xwv2900) 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(xwv400, xwv3000, bgh, bha, bhb) 27.70/11.37 new_esEs19(xwv400, xwv3000, app(ty_Maybe, bdh)) -> new_esEs4(xwv400, xwv3000, bdh) 27.70/11.37 new_primEqInt(Neg(Succ(xwv4000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 27.70/11.37 new_primCmpInt(Neg(Zero), Pos(Succ(xwv2900))) -> LT 27.70/11.37 new_lt8(xwv28000, xwv29000, app(ty_[], bbb)) -> new_lt5(xwv28000, xwv29000, bbb) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_[], gb), eh) -> new_ltEs16(xwv28000, xwv29000, gb) 27.70/11.37 new_primMulInt(Pos(xwv4010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.37 new_ltEs8(True, False) -> False 27.70/11.37 new_lt18(xwv28000, xwv29000) -> new_esEs15(new_compare31(xwv28000, xwv29000), LT) 27.70/11.37 new_esEs24(xwv400, xwv3000, app(app(ty_Either, cfh), cga)) -> new_esEs6(xwv400, xwv3000, cfh, cga) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Float, eh) -> new_ltEs17(xwv28000, xwv29000) 27.70/11.37 new_compare18(xwv28000, xwv29000, False, bch, bda) -> GT 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), app(app(ty_Either, bf), bg), bd) -> new_esEs6(xwv400, xwv3000, bf, bg) 27.70/11.37 new_compare29(xwv28000, xwv29000, app(ty_[], cae)) -> new_compare1(xwv28000, xwv29000, cae) 27.70/11.37 new_ltEs16(xwv2800, xwv2900, bce) -> new_fsEs(new_compare1(xwv2800, xwv2900, bce)) 27.70/11.37 new_lt11(xwv28000, xwv29000, ed, ee, ef) -> new_esEs15(new_compare15(xwv28000, xwv29000, ed, ee, ef), LT) 27.70/11.37 new_esEs23(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.70/11.37 new_primMulNat0(Succ(xwv40100), Zero) -> Zero 27.70/11.37 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 27.70/11.37 new_ltEs8(False, False) -> True 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.37 new_compare29(xwv28000, xwv29000, ty_Char) -> new_compare13(xwv28000, xwv29000) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(ty_Either, gh), ha)) -> new_ltEs6(xwv28000, xwv29000, gh, ha) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs5(xwv400, xwv3000, dg, dh, ea) 27.70/11.37 new_esEs23(xwv401, xwv3001, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_esEs5(xwv401, xwv3001, cfc, cfd, cfe) 27.70/11.37 new_esEs24(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.37 new_primCmpNat2(Succ(xwv28000), Zero) -> GT 27.70/11.37 new_compare11(xwv28000, xwv29000, False, ed, ee, ef) -> GT 27.70/11.37 new_lt8(xwv28000, xwv29000, ty_Char) -> new_lt15(xwv28000, xwv29000) 27.70/11.37 new_compare29(xwv28000, xwv29000, ty_Float) -> new_compare31(xwv28000, xwv29000) 27.70/11.37 new_esEs15(LT, GT) -> False 27.70/11.37 new_esEs15(GT, LT) -> False 27.70/11.37 new_lt20(xwv28001, xwv29001, app(app(app(ty_@3, cah), cba), cbb)) -> new_lt11(xwv28001, xwv29001, cah, cba, cbb) 27.70/11.37 new_esEs25(xwv401, xwv3001, ty_@0) -> new_esEs8(xwv401, xwv3001) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), app(app(ty_@2, bh), ca), bd) -> new_esEs7(xwv400, xwv3000, bh, ca) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, ty_Bool) -> new_ltEs8(xwv28001, xwv29001) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, app(app(ty_@2, cch), cda)) -> new_ltEs12(xwv28002, xwv29002, cch, cda) 27.70/11.37 new_compare17(xwv28000, xwv29000, True, bcf, bcg) -> LT 27.70/11.37 new_compare18(xwv28000, xwv29000, True, bch, bda) -> LT 27.70/11.37 new_compare1([], [], bce) -> EQ 27.70/11.37 new_lt20(xwv28001, xwv29001, ty_Bool) -> new_lt10(xwv28001, xwv29001) 27.70/11.37 new_esEs9(:(xwv400, xwv401), :(xwv3000, xwv3001), bdb) -> new_asAs(new_esEs19(xwv400, xwv3000, bdb), new_esEs9(xwv401, xwv3001, bdb)) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Int) -> new_ltEs14(xwv28000, xwv29000) 27.70/11.37 new_esEs20(xwv28000, xwv29000, ty_Float) -> new_esEs13(xwv28000, xwv29000) 27.70/11.37 new_esEs20(xwv28000, xwv29000, app(ty_Maybe, ec)) -> new_esEs4(xwv28000, xwv29000, ec) 27.70/11.37 new_compare29(xwv28000, xwv29000, ty_Ordering) -> new_compare12(xwv28000, xwv29000) 27.70/11.37 new_esEs24(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.37 new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) 27.70/11.37 new_primPlusNat1(Zero, Succ(xwv9100)) -> Succ(xwv9100) 27.70/11.37 new_esEs26(xwv402, xwv3002, ty_@0) -> new_esEs8(xwv402, xwv3002) 27.70/11.37 new_lt20(xwv28001, xwv29001, ty_Int) -> new_lt16(xwv28001, xwv29001) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, app(ty_[], cdb)) -> new_ltEs16(xwv28002, xwv29002, cdb) 27.70/11.37 new_compare23(Just(xwv2800), Nothing, False, bee) -> GT 27.70/11.37 new_compare13(Char(xwv28000), Char(xwv29000)) -> new_primCmpNat2(xwv28000, xwv29000) 27.70/11.37 new_esEs17(xwv40, xwv300) -> new_primEqInt(xwv40, xwv300) 27.70/11.37 new_lt20(xwv28001, xwv29001, ty_Float) -> new_lt18(xwv28001, xwv29001) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), ty_@0, bd) -> new_esEs8(xwv400, xwv3000) 27.70/11.37 new_compare6(xwv28000, xwv29000, ec) -> new_compare23(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, ec), ec) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, ty_Integer) -> new_ltEs9(xwv28002, xwv29002) 27.70/11.37 new_primCompAux1(xwv28000, xwv29000, xwv141, bce) -> new_primCompAux0(xwv141, new_compare29(xwv28000, xwv29000, bce)) 27.70/11.37 new_esEs25(xwv401, xwv3001, ty_Bool) -> new_esEs12(xwv401, xwv3001) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, ty_Integer) -> new_ltEs9(xwv2800, xwv2900) 27.70/11.37 new_esEs24(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.37 new_esEs26(xwv402, xwv3002, ty_Int) -> new_esEs17(xwv402, xwv3002) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, app(ty_[], bce)) -> new_ltEs16(xwv2800, xwv2900, bce) 27.70/11.37 new_esEs19(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_[], da)) -> new_esEs9(xwv400, xwv3000, da) 27.70/11.37 new_compare28(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Int) -> new_compare14(new_sr(xwv28000, xwv29001), new_sr(xwv29000, xwv28001)) 27.70/11.37 new_esEs21(xwv28001, xwv29001, app(ty_Maybe, cag)) -> new_esEs4(xwv28001, xwv29001, cag) 27.70/11.37 new_primMulInt(Neg(xwv4010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.37 new_lt14(xwv28000, xwv29000, bch, bda) -> new_esEs15(new_compare30(xwv28000, xwv29000, bch, bda), LT) 27.70/11.37 new_esEs25(xwv401, xwv3001, app(app(ty_@2, chd), che)) -> new_esEs7(xwv401, xwv3001, chd, che) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_@0) -> new_ltEs15(xwv28000, xwv29000) 27.70/11.37 new_lt19(xwv28000, xwv29000, ty_Float) -> new_lt18(xwv28000, xwv29000) 27.70/11.37 new_esEs7(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bfc, bfd) -> new_asAs(new_esEs22(xwv400, xwv3000, bfc), new_esEs23(xwv401, xwv3001, bfd)) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(ty_@2, dd), de)) -> new_esEs7(xwv400, xwv3000, dd, de) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), ty_Bool, bd) -> new_esEs12(xwv400, xwv3000) 27.70/11.37 new_ltEs12(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), hg, hh) -> new_pePe(new_lt8(xwv28000, xwv29000, hg), new_asAs(new_esEs18(xwv28000, xwv29000, hg), new_ltEs18(xwv28001, xwv29001, hh))) 27.70/11.37 new_esEs26(xwv402, xwv3002, ty_Double) -> new_esEs11(xwv402, xwv3002) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Ordering) -> new_ltEs10(xwv28000, xwv29000) 27.70/11.37 new_ltEs8(False, True) -> True 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_Maybe, bgg)) -> new_esEs4(xwv400, xwv3000, bgg) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Float) -> new_ltEs17(xwv28000, xwv29000) 27.70/11.37 new_esEs23(xwv401, xwv3001, app(app(ty_Either, cef), ceg)) -> new_esEs6(xwv401, xwv3001, cef, ceg) 27.70/11.37 new_esEs24(xwv400, xwv3000, app(ty_[], cfg)) -> new_esEs9(xwv400, xwv3000, cfg) 27.70/11.37 new_compare31(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Char) -> new_ltEs13(xwv28000, xwv29000) 27.70/11.37 new_esEs21(xwv28001, xwv29001, app(app(ty_Either, cbc), cbd)) -> new_esEs6(xwv28001, xwv29001, cbc, cbd) 27.70/11.37 new_esEs13(Float(xwv400, xwv401), Float(xwv3000, xwv3001)) -> new_esEs17(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 27.70/11.37 new_esEs26(xwv402, xwv3002, ty_Integer) -> new_esEs10(xwv402, xwv3002) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, ty_Ordering) -> new_ltEs10(xwv28001, xwv29001) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(ty_@2, fh), ga), eh) -> new_ltEs12(xwv28000, xwv29000, fh, ga) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), ty_Int, bd) -> new_esEs17(xwv400, xwv3000) 27.70/11.37 new_compare8(Integer(xwv28000), Integer(xwv29000)) -> new_primCmpInt(xwv28000, xwv29000) 27.70/11.37 new_primMulInt(Pos(xwv4010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.37 new_primMulInt(Neg(xwv4010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.37 new_lt8(xwv28000, xwv29000, app(app(app(ty_@3, bab), bac), bad)) -> new_lt11(xwv28000, xwv29000, bab, bac, bad) 27.70/11.37 new_esEs20(xwv28000, xwv29000, ty_@0) -> new_esEs8(xwv28000, xwv29000) 27.70/11.37 new_compare29(xwv28000, xwv29000, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_compare15(xwv28000, xwv29000, bhe, bhf, bhg) 27.70/11.37 new_compare29(xwv28000, xwv29000, ty_Bool) -> new_compare16(xwv28000, xwv29000) 27.70/11.37 new_primCmpInt(Pos(Succ(xwv2800)), Pos(xwv290)) -> new_primCmpNat0(xwv2800, xwv290) 27.70/11.37 new_esEs15(LT, LT) -> True 27.70/11.37 new_esEs24(xwv400, xwv3000, app(ty_Maybe, cgd)) -> new_esEs4(xwv400, xwv3000, cgd) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(ty_Either, db), dc)) -> new_esEs6(xwv400, xwv3000, db, dc) 27.70/11.37 new_lt9(xwv28000, xwv29000, ec) -> new_esEs15(new_compare6(xwv28000, xwv29000, ec), LT) 27.70/11.37 new_esEs19(xwv400, xwv3000, app(ty_[], bdc)) -> new_esEs9(xwv400, xwv3000, bdc) 27.70/11.37 new_esEs25(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.70/11.37 new_esEs22(xwv400, xwv3000, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs5(xwv400, xwv3000, cea, ceb, cec) 27.70/11.37 new_esEs19(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.37 new_lt8(xwv28000, xwv29000, ty_Double) -> new_lt17(xwv28000, xwv29000) 27.70/11.37 new_sr0(Integer(xwv280000), Integer(xwv290010)) -> Integer(new_primMulInt(xwv280000, xwv290010)) 27.70/11.37 new_esEs18(xwv28000, xwv29000, app(ty_Maybe, baa)) -> new_esEs4(xwv28000, xwv29000, baa) 27.70/11.37 new_esEs21(xwv28001, xwv29001, app(ty_Ratio, cbe)) -> new_esEs14(xwv28001, xwv29001, cbe) 27.70/11.37 new_esEs29(xwv40, xwv300, ty_Char) -> new_esEs16(xwv40, xwv300) 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.37 new_esEs29(xwv40, xwv300, ty_@0) -> new_esEs8(xwv40, xwv300) 27.70/11.37 new_compare24(xwv28000, xwv29000, True, ed, ee, ef) -> EQ 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), app(app(ty_Either, bgc), bgd)) -> new_esEs6(xwv400, xwv3000, bgc, bgd) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.37 new_lt19(xwv28000, xwv29000, app(app(app(ty_@3, ed), ee), ef)) -> new_lt11(xwv28000, xwv29000, ed, ee, ef) 27.70/11.37 new_primCmpNat0(xwv2800, Zero) -> GT 27.70/11.37 new_lt10(xwv28000, xwv29000) -> new_esEs15(new_compare16(xwv28000, xwv29000), LT) 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_Ratio, bhc)) -> new_esEs14(xwv400, xwv3000, bhc) 27.70/11.37 new_primCmpNat2(Zero, Succ(xwv29000)) -> LT 27.70/11.37 new_esEs25(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 27.70/11.37 new_asAs(True, xwv57) -> xwv57 27.70/11.37 new_esEs25(xwv401, xwv3001, app(ty_Ratio, dab)) -> new_esEs14(xwv401, xwv3001, dab) 27.70/11.37 new_esEs26(xwv402, xwv3002, ty_Float) -> new_esEs13(xwv402, xwv3002) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Bool) -> new_ltEs8(xwv28000, xwv29000) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Ordering) -> new_ltEs10(xwv28000, xwv29000) 27.70/11.37 new_esEs10(Integer(xwv400), Integer(xwv3000)) -> new_primEqInt(xwv400, xwv3000) 27.70/11.37 new_lt19(xwv28000, xwv29000, ty_Double) -> new_lt17(xwv28000, xwv29000) 27.70/11.37 new_esEs26(xwv402, xwv3002, ty_Ordering) -> new_esEs15(xwv402, xwv3002) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, ty_Char) -> new_ltEs13(xwv28001, xwv29001) 27.70/11.37 new_ltEs10(LT, LT) -> True 27.70/11.37 new_compare7(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, ty_@0) -> new_ltEs15(xwv28002, xwv29002) 27.70/11.37 new_esEs25(xwv401, xwv3001, app(ty_[], cha)) -> new_esEs9(xwv401, xwv3001, cha) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_Ratio, fg), eh) -> new_ltEs11(xwv28000, xwv29000, fg) 27.70/11.37 new_esEs6(Left(xwv400), Right(xwv3000), cg, bd) -> False 27.70/11.37 new_esEs6(Right(xwv400), Left(xwv3000), cg, bd) -> False 27.70/11.37 new_esEs21(xwv28001, xwv29001, ty_Bool) -> new_esEs12(xwv28001, xwv29001) 27.70/11.37 new_esEs21(xwv28001, xwv29001, ty_Int) -> new_esEs17(xwv28001, xwv29001) 27.70/11.37 new_esEs16(Char(xwv400), Char(xwv3000)) -> new_primEqNat0(xwv400, xwv3000) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_Ratio, hb)) -> new_ltEs11(xwv28000, xwv29000, hb) 27.70/11.37 new_esEs22(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.37 new_esEs26(xwv402, xwv3002, ty_Bool) -> new_esEs12(xwv402, xwv3002) 27.70/11.37 new_esEs24(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, app(ty_Ratio, ccg)) -> new_ltEs11(xwv28002, xwv29002, ccg) 27.70/11.37 new_esEs18(xwv28000, xwv29000, app(app(ty_@2, bah), bba)) -> new_esEs7(xwv28000, xwv29000, bah, bba) 27.70/11.37 new_esEs20(xwv28000, xwv29000, app(ty_[], hf)) -> new_esEs9(xwv28000, xwv29000, hf) 27.70/11.37 new_ltEs8(True, True) -> True 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_@0) -> new_ltEs15(xwv28000, xwv29000) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, ty_@0) -> new_ltEs15(xwv2800, xwv2900) 27.70/11.37 new_esEs24(xwv400, xwv3000, app(app(ty_@2, cgb), cgc)) -> new_esEs7(xwv400, xwv3000, cgb, cgc) 27.70/11.37 new_compare110(xwv28000, xwv29000, False) -> GT 27.70/11.37 new_lt8(xwv28000, xwv29000, ty_Integer) -> new_lt7(xwv28000, xwv29000) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Int) -> new_ltEs14(xwv28000, xwv29000) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, ty_Int) -> new_ltEs14(xwv28001, xwv29001) 27.70/11.37 new_sr(xwv401, xwv3000) -> new_primMulInt(xwv401, xwv3000) 27.70/11.37 new_esEs12(False, True) -> False 27.70/11.37 new_esEs12(True, False) -> False 27.70/11.37 new_lt20(xwv28001, xwv29001, app(app(ty_Either, cbc), cbd)) -> new_lt12(xwv28001, xwv29001, cbc, cbd) 27.70/11.37 new_esEs23(xwv401, xwv3001, ty_Double) -> new_esEs11(xwv401, xwv3001) 27.70/11.37 new_ltEs7(Nothing, Nothing, bef) -> True 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.37 new_primMulNat0(Zero, Zero) -> Zero 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.37 new_esEs22(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.37 new_esEs12(True, True) -> True 27.70/11.37 new_compare10(xwv28000, xwv29000, False) -> GT 27.70/11.37 new_esEs21(xwv28001, xwv29001, ty_Integer) -> new_esEs10(xwv28001, xwv29001) 27.70/11.37 new_esEs18(xwv28000, xwv29000, ty_@0) -> new_esEs8(xwv28000, xwv29000) 27.70/11.37 new_esEs29(xwv40, xwv300, ty_Int) -> new_esEs17(xwv40, xwv300) 27.70/11.37 new_primCmpInt(Neg(Zero), Neg(Succ(xwv2900))) -> new_primCmpNat0(xwv2900, Zero) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_Maybe, cb), bd) -> new_esEs4(xwv400, xwv3000, cb) 27.70/11.37 new_esEs26(xwv402, xwv3002, app(app(ty_Either, dad), dae)) -> new_esEs6(xwv402, xwv3002, dad, dae) 27.70/11.37 new_ltEs7(Just(xwv28000), Nothing, bef) -> False 27.70/11.37 new_esEs23(xwv401, xwv3001, app(app(ty_@2, ceh), cfa)) -> new_esEs7(xwv401, xwv3001, ceh, cfa) 27.70/11.37 new_compare9(@0, @0) -> EQ 27.70/11.37 new_esEs21(xwv28001, xwv29001, app(ty_[], cbh)) -> new_esEs9(xwv28001, xwv29001, cbh) 27.70/11.37 new_primCmpNat1(Zero, xwv2800) -> LT 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_[], bgb)) -> new_esEs9(xwv400, xwv3000, bgb) 27.70/11.37 new_esEs4(Nothing, Nothing, bfe) -> True 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), ty_Char, bd) -> new_esEs16(xwv400, xwv3000) 27.70/11.37 new_compare29(xwv28000, xwv29000, app(ty_Ratio, cab)) -> new_compare28(xwv28000, xwv29000, cab) 27.70/11.37 new_esEs4(Nothing, Just(xwv3000), bfe) -> False 27.70/11.37 new_esEs4(Just(xwv400), Nothing, bfe) -> False 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_Ratio, dcd)) -> new_ltEs11(xwv28000, xwv29000, dcd) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, app(ty_Ratio, bfb)) -> new_ltEs11(xwv2800, xwv2900, bfb) 27.70/11.37 new_esEs19(xwv400, xwv3000, app(ty_Ratio, bed)) -> new_esEs14(xwv400, xwv3000, bed) 27.70/11.37 new_compare29(xwv28000, xwv29000, ty_Int) -> new_compare14(xwv28000, xwv29000) 27.70/11.37 new_primCmpNat2(Zero, Zero) -> EQ 27.70/11.37 new_lt5(xwv28000, xwv29000, hf) -> new_esEs15(new_compare1(xwv28000, xwv29000, hf), LT) 27.70/11.37 new_lt20(xwv28001, xwv29001, app(ty_Ratio, cbe)) -> new_lt13(xwv28001, xwv29001, cbe) 27.70/11.37 new_esEs21(xwv28001, xwv29001, ty_Char) -> new_esEs16(xwv28001, xwv29001) 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.37 new_lt20(xwv28001, xwv29001, ty_Integer) -> new_lt7(xwv28001, xwv29001) 27.70/11.37 new_esEs29(xwv40, xwv300, app(ty_Ratio, bga)) -> new_esEs14(xwv40, xwv300, bga) 27.70/11.37 new_compare28(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Integer) -> new_compare8(new_sr0(xwv28000, xwv29001), new_sr0(xwv29000, xwv28001)) 27.70/11.37 new_esEs19(xwv400, xwv3000, app(app(ty_Either, bdd), bde)) -> new_esEs6(xwv400, xwv3000, bdd, bde) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_Maybe, df)) -> new_esEs4(xwv400, xwv3000, df) 27.70/11.37 new_esEs25(xwv401, xwv3001, app(app(ty_Either, chb), chc)) -> new_esEs6(xwv401, xwv3001, chb, chc) 27.70/11.37 new_primCompAux0(xwv153, EQ) -> xwv153 27.70/11.37 new_ltEs18(xwv28001, xwv29001, app(ty_Ratio, bca)) -> new_ltEs11(xwv28001, xwv29001, bca) 27.70/11.37 new_lt19(xwv28000, xwv29000, app(ty_Ratio, caf)) -> new_lt13(xwv28000, xwv29000, caf) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, app(ty_Maybe, bef)) -> new_ltEs7(xwv2800, xwv2900, bef) 27.70/11.37 new_primEqInt(Neg(Succ(xwv4000)), Neg(Zero)) -> False 27.70/11.37 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 27.70/11.37 new_lt19(xwv28000, xwv29000, ty_Integer) -> new_lt7(xwv28000, xwv29000) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, ty_@0) -> new_ltEs15(xwv28001, xwv29001) 27.70/11.37 new_esEs20(xwv28000, xwv29000, ty_Char) -> new_esEs16(xwv28000, xwv29000) 27.70/11.37 new_primEqInt(Pos(Succ(xwv4000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 27.70/11.37 new_ltEs10(GT, GT) -> True 27.70/11.37 new_ltEs20(xwv28002, xwv29002, app(app(ty_Either, cce), ccf)) -> new_ltEs6(xwv28002, xwv29002, cce, ccf) 27.70/11.37 new_compare19(xwv117, xwv118, False, dbe) -> GT 27.70/11.37 new_esEs20(xwv28000, xwv29000, app(app(ty_Either, bcf), bcg)) -> new_esEs6(xwv28000, xwv29000, bcf, bcg) 27.70/11.37 new_compare23(Just(xwv2800), Just(xwv2900), False, bee) -> new_compare19(xwv2800, xwv2900, new_ltEs19(xwv2800, xwv2900, bee), bee) 27.70/11.37 new_primEqInt(Pos(Succ(xwv4000)), Neg(xwv3000)) -> False 27.70/11.37 new_primEqInt(Neg(Succ(xwv4000)), Pos(xwv3000)) -> False 27.70/11.37 new_compare29(xwv28000, xwv29000, app(app(ty_Either, bhh), caa)) -> new_compare26(xwv28000, xwv29000, bhh, caa) 27.70/11.37 new_compare14(xwv28, xwv29) -> new_primCmpInt(xwv28, xwv29) 27.70/11.37 new_compare23(Nothing, Just(xwv2900), False, bee) -> LT 27.70/11.37 new_esEs22(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.37 new_esEs27(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.37 new_compare211(xwv28000, xwv29000, True, bch, bda) -> EQ 27.70/11.37 new_ltEs19(xwv2800, xwv2900, app(app(ty_Either, gc), eh)) -> new_ltEs6(xwv2800, xwv2900, gc, eh) 27.70/11.37 new_esEs29(xwv40, xwv300, app(ty_Maybe, bfe)) -> new_esEs4(xwv40, xwv300, bfe) 27.70/11.37 new_esEs22(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.37 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 27.70/11.37 new_ltEs10(LT, EQ) -> True 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(ty_Either, dcb), dcc)) -> new_ltEs6(xwv28000, xwv29000, dcb, dcc) 27.70/11.37 new_lt8(xwv28000, xwv29000, ty_Bool) -> new_lt10(xwv28000, xwv29000) 27.70/11.37 new_compare26(xwv28000, xwv29000, bcf, bcg) -> new_compare27(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bcf, bcg), bcf, bcg) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_@0, eh) -> new_ltEs15(xwv28000, xwv29000) 27.70/11.37 new_primCmpNat1(Succ(xwv2900), xwv2800) -> new_primCmpNat2(xwv2900, xwv2800) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), ty_Float, bd) -> new_esEs13(xwv400, xwv3000) 27.70/11.37 new_esEs19(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.37 new_lt20(xwv28001, xwv29001, ty_Char) -> new_lt15(xwv28001, xwv29001) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_Maybe, dbf)) -> new_ltEs7(xwv28000, xwv29000, dbf) 27.70/11.37 new_esEs15(EQ, EQ) -> True 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Float) -> new_ltEs17(xwv28000, xwv29000) 27.70/11.37 new_esEs23(xwv401, xwv3001, ty_Float) -> new_esEs13(xwv401, xwv3001) 27.70/11.37 new_fsEs(xwv123) -> new_not(new_esEs15(xwv123, GT)) 27.70/11.37 new_esEs19(xwv400, xwv3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(xwv400, xwv3000, bdf, bdg) 27.70/11.37 new_compare23(Nothing, Nothing, False, bee) -> LT 27.70/11.37 new_compare24(xwv28000, xwv29000, False, ed, ee, ef) -> new_compare11(xwv28000, xwv29000, new_ltEs5(xwv28000, xwv29000, ed, ee, ef), ed, ee, ef) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(ty_@2, hc), hd)) -> new_ltEs12(xwv28000, xwv29000, hc, hd) 27.70/11.37 new_primPlusNat0(xwv101, xwv300000) -> new_primPlusNat1(xwv101, Succ(xwv300000)) 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.37 new_compare29(xwv28000, xwv29000, ty_Double) -> new_compare7(xwv28000, xwv29000) 27.70/11.37 new_ltEs6(Right(xwv28000), Left(xwv29000), gc, eh) -> False 27.70/11.37 new_not(False) -> True 27.70/11.37 new_lt20(xwv28001, xwv29001, ty_@0) -> new_lt4(xwv28001, xwv29001) 27.70/11.37 new_compare1([], :(xwv29000, xwv29001), bce) -> LT 27.70/11.37 new_esEs21(xwv28001, xwv29001, ty_@0) -> new_esEs8(xwv28001, xwv29001) 27.70/11.37 new_esEs11(Double(xwv400, xwv401), Double(xwv3000, xwv3001)) -> new_esEs17(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 27.70/11.37 new_lt19(xwv28000, xwv29000, app(ty_[], hf)) -> new_lt5(xwv28000, xwv29000, hf) 27.70/11.37 new_primCmpInt(Neg(Succ(xwv2800)), Neg(xwv290)) -> new_primCmpNat1(xwv290, xwv2800) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.37 new_lt13(xwv28000, xwv29000, caf) -> new_esEs15(new_compare28(xwv28000, xwv29000, caf), LT) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Char) -> new_ltEs13(xwv28000, xwv29000) 27.70/11.37 new_lt12(xwv28000, xwv29000, bcf, bcg) -> new_esEs15(new_compare26(xwv28000, xwv29000, bcf, bcg), LT) 27.70/11.37 new_esEs29(xwv40, xwv300, app(app(ty_Either, cg), bd)) -> new_esEs6(xwv40, xwv300, cg, bd) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_[], he)) -> new_ltEs16(xwv28000, xwv29000, he) 27.70/11.37 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_[], be), bd) -> new_esEs9(xwv400, xwv3000, be) 27.70/11.37 new_esEs20(xwv28000, xwv29000, ty_Bool) -> new_esEs12(xwv28000, xwv29000) 27.70/11.37 new_esEs22(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.37 new_ltEs10(EQ, GT) -> True 27.70/11.37 new_lt17(xwv28000, xwv29000) -> new_esEs15(new_compare7(xwv28000, xwv29000), LT) 27.70/11.37 new_compare25(xwv28000, xwv29000, True) -> EQ 27.70/11.37 new_compare27(xwv28000, xwv29000, True, bcf, bcg) -> EQ 27.70/11.37 new_compare27(xwv28000, xwv29000, False, bcf, bcg) -> new_compare17(xwv28000, xwv29000, new_ltEs6(xwv28000, xwv29000, bcf, bcg), bcf, bcg) 27.70/11.37 new_esEs29(xwv40, xwv300, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xwv40, xwv300, bfc, bfd) 27.70/11.37 new_ltEs10(EQ, EQ) -> True 27.70/11.37 new_esEs19(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.37 new_esEs29(xwv40, xwv300, ty_Bool) -> new_esEs12(xwv40, xwv300) 27.70/11.37 new_esEs5(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bff, bfg, bfh) -> new_asAs(new_esEs24(xwv400, xwv3000, bff), new_asAs(new_esEs25(xwv401, xwv3001, bfg), new_esEs26(xwv402, xwv3002, bfh))) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, fa), fb), fc), eh) -> new_ltEs5(xwv28000, xwv29000, fa, fb, fc) 27.70/11.37 new_ltEs18(xwv28001, xwv29001, ty_Float) -> new_ltEs17(xwv28001, xwv29001) 27.70/11.37 new_lt20(xwv28001, xwv29001, app(ty_[], cbh)) -> new_lt5(xwv28001, xwv29001, cbh) 27.70/11.37 new_esEs23(xwv401, xwv3001, ty_Ordering) -> new_esEs15(xwv401, xwv3001) 27.70/11.37 new_compare10(xwv28000, xwv29000, True) -> LT 27.70/11.37 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 27.70/11.37 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 27.70/11.37 new_lt20(xwv28001, xwv29001, ty_Double) -> new_lt17(xwv28001, xwv29001) 27.70/11.37 new_primPlusNat1(Zero, Zero) -> Zero 27.70/11.37 new_lt19(xwv28000, xwv29000, ty_Char) -> new_lt15(xwv28000, xwv29000) 27.70/11.37 new_esEs20(xwv28000, xwv29000, ty_Integer) -> new_esEs10(xwv28000, xwv29000) 27.70/11.37 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Integer, eh) -> new_ltEs9(xwv28000, xwv29000) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.37 new_lt8(xwv28000, xwv29000, ty_Float) -> new_lt18(xwv28000, xwv29000) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.37 new_esEs25(xwv401, xwv3001, app(ty_Maybe, chf)) -> new_esEs4(xwv401, xwv3001, chf) 27.70/11.37 new_lt8(xwv28000, xwv29000, app(ty_Ratio, bag)) -> new_lt13(xwv28000, xwv29000, bag) 27.70/11.37 new_esEs18(xwv28000, xwv29000, ty_Int) -> new_esEs17(xwv28000, xwv29000) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_[], dcg)) -> new_ltEs16(xwv28000, xwv29000, dcg) 27.70/11.37 new_lt4(xwv28000, xwv29000) -> new_esEs15(new_compare9(xwv28000, xwv29000), LT) 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.37 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 27.70/11.37 new_esEs23(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 27.70/11.37 new_lt19(xwv28000, xwv29000, ty_@0) -> new_lt4(xwv28000, xwv29000) 27.70/11.37 new_esEs18(xwv28000, xwv29000, app(app(ty_Either, bae), baf)) -> new_esEs6(xwv28000, xwv29000, bae, baf) 27.70/11.37 new_primMulNat0(Succ(xwv40100), Succ(xwv300000)) -> new_primPlusNat0(new_primMulNat0(xwv40100, Succ(xwv300000)), xwv300000) 27.70/11.37 new_compare7(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.37 new_compare7(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.37 new_esEs22(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.37 new_ltEs15(xwv2800, xwv2900) -> new_fsEs(new_compare9(xwv2800, xwv2900)) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Integer) -> new_ltEs9(xwv28000, xwv29000) 27.70/11.37 new_primCmpInt(Pos(Zero), Pos(Succ(xwv2900))) -> new_primCmpNat1(Zero, xwv2900) 27.70/11.37 new_esEs26(xwv402, xwv3002, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs5(xwv402, xwv3002, dba, dbb, dbc) 27.70/11.37 new_esEs21(xwv28001, xwv29001, app(app(ty_@2, cbf), cbg)) -> new_esEs7(xwv28001, xwv29001, cbf, cbg) 27.70/11.37 new_esEs19(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.37 new_esEs24(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.37 new_esEs26(xwv402, xwv3002, app(ty_Ratio, dbd)) -> new_esEs14(xwv402, xwv3002, dbd) 27.70/11.37 new_lt20(xwv28001, xwv29001, app(app(ty_@2, cbf), cbg)) -> new_lt14(xwv28001, xwv29001, cbf, cbg) 27.70/11.37 new_esEs21(xwv28001, xwv29001, ty_Ordering) -> new_esEs15(xwv28001, xwv29001) 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), app(app(ty_@2, bge), bgf)) -> new_esEs7(xwv400, xwv3000, bge, bgf) 27.70/11.37 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(ty_@2, dce), dcf)) -> new_ltEs12(xwv28000, xwv29000, dce, dcf) 27.70/11.37 new_esEs29(xwv40, xwv300, ty_Integer) -> new_esEs10(xwv40, xwv300) 27.70/11.37 new_compare16(xwv28000, xwv29000) -> new_compare25(xwv28000, xwv29000, new_esEs12(xwv28000, xwv29000)) 27.70/11.37 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 27.70/11.37 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 27.70/11.37 new_esEs9([], [], bdb) -> True 27.70/11.37 new_esEs4(Just(xwv400), Just(xwv3000), ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.37 new_esEs22(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.37 new_compare25(xwv28000, xwv29000, False) -> new_compare10(xwv28000, xwv29000, new_ltEs8(xwv28000, xwv29000)) 27.70/11.37 new_esEs29(xwv40, xwv300, app(ty_[], bdb)) -> new_esEs9(xwv40, xwv300, bdb) 27.70/11.37 new_esEs26(xwv402, xwv3002, app(ty_Maybe, dah)) -> new_esEs4(xwv402, xwv3002, dah) 27.70/11.37 new_primEqNat0(Zero, Zero) -> True 27.70/11.37 new_lt19(xwv28000, xwv29000, ty_Ordering) -> new_lt6(xwv28000, xwv29000) 27.70/11.37 new_esEs21(xwv28001, xwv29001, ty_Double) -> new_esEs11(xwv28001, xwv29001) 27.70/11.37 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Double) -> new_ltEs4(xwv28000, xwv29000) 27.70/11.37 new_compare31(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.37 new_compare31(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.37 new_lt15(xwv28000, xwv29000) -> new_esEs15(new_compare13(xwv28000, xwv29000), LT) 27.70/11.37 new_ltEs10(LT, GT) -> True 27.70/11.37 new_asAs(False, xwv57) -> False 27.70/11.37 new_esEs19(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.37 new_ltEs13(xwv2800, xwv2900) -> new_fsEs(new_compare13(xwv2800, xwv2900)) 27.70/11.37 new_esEs19(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, ty_Int) -> new_ltEs14(xwv2800, xwv2900) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, ty_Float) -> new_ltEs17(xwv28002, xwv29002) 27.70/11.37 new_lt20(xwv28001, xwv29001, ty_Ordering) -> new_lt6(xwv28001, xwv29001) 27.70/11.37 new_esEs25(xwv401, xwv3001, ty_Float) -> new_esEs13(xwv401, xwv3001) 27.70/11.37 new_ltEs6(Left(xwv28000), Right(xwv29000), gc, eh) -> True 27.70/11.37 new_ltEs19(xwv2800, xwv2900, ty_Ordering) -> new_ltEs10(xwv2800, xwv2900) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, ty_Ordering) -> new_ltEs10(xwv28002, xwv29002) 27.70/11.37 new_esEs18(xwv28000, xwv29000, ty_Integer) -> new_esEs10(xwv28000, xwv29000) 27.70/11.37 new_ltEs5(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), beg, beh, bfa) -> new_pePe(new_lt19(xwv28000, xwv29000, beg), new_asAs(new_esEs20(xwv28000, xwv29000, beg), new_pePe(new_lt20(xwv28001, xwv29001, beh), new_asAs(new_esEs21(xwv28001, xwv29001, beh), new_ltEs20(xwv28002, xwv29002, bfa))))) 27.70/11.37 new_lt19(xwv28000, xwv29000, app(app(ty_@2, bch), bda)) -> new_lt14(xwv28000, xwv29000, bch, bda) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.37 new_lt8(xwv28000, xwv29000, app(ty_Maybe, baa)) -> new_lt9(xwv28000, xwv29000, baa) 27.70/11.37 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.37 new_compare29(xwv28000, xwv29000, ty_Integer) -> new_compare8(xwv28000, xwv29000) 27.70/11.37 new_esEs20(xwv28000, xwv29000, ty_Int) -> new_esEs17(xwv28000, xwv29000) 27.70/11.37 new_ltEs19(xwv2800, xwv2900, ty_Float) -> new_ltEs17(xwv2800, xwv2900) 27.70/11.37 new_ltEs20(xwv28002, xwv29002, ty_Int) -> new_ltEs14(xwv28002, xwv29002) 27.70/11.37 new_esEs18(xwv28000, xwv29000, app(ty_[], bbb)) -> new_esEs9(xwv28000, xwv29000, bbb) 27.70/11.37 new_esEs20(xwv28000, xwv29000, app(app(ty_@2, bch), bda)) -> new_esEs7(xwv28000, xwv29000, bch, bda) 27.70/11.37 27.70/11.37 The set Q consists of the following terms: 27.70/11.37 27.70/11.37 new_compare29(x0, x1, ty_Int) 27.70/11.37 new_esEs22(x0, x1, ty_Float) 27.70/11.37 new_esEs21(x0, x1, ty_Double) 27.70/11.37 new_esEs19(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_esEs4(Just(x0), Just(x1), ty_Ordering) 27.70/11.37 new_pePe(False, x0) 27.70/11.37 new_primCompAux0(x0, EQ) 27.70/11.37 new_esEs26(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_compare1([], :(x0, x1), x2) 27.70/11.37 new_esEs4(Just(x0), Just(x1), ty_Double) 27.70/11.37 new_primPlusNat1(Zero, Zero) 27.70/11.37 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 27.70/11.37 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 27.70/11.37 new_primPlusNat1(Succ(x0), Zero) 27.70/11.37 new_ltEs10(LT, LT) 27.70/11.37 new_compare29(x0, x1, ty_Char) 27.70/11.37 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 27.70/11.37 new_esEs21(x0, x1, ty_Int) 27.70/11.37 new_sr(x0, x1) 27.70/11.37 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs20(x0, x1, ty_Double) 27.70/11.37 new_ltEs19(x0, x1, app(ty_[], x2)) 27.70/11.37 new_primEqInt(Pos(Zero), Pos(Zero)) 27.70/11.37 new_esEs4(Just(x0), Nothing, x1) 27.70/11.37 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 27.70/11.37 new_esEs16(Char(x0), Char(x1)) 27.70/11.37 new_primCmpNat2(Zero, Succ(x0)) 27.70/11.37 new_esEs17(x0, x1) 27.70/11.37 new_compare13(Char(x0), Char(x1)) 27.70/11.37 new_esEs28(x0, x1, ty_Int) 27.70/11.37 new_lt19(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_ltEs15(x0, x1) 27.70/11.37 new_esEs24(x0, x1, ty_Float) 27.70/11.37 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_lt8(x0, x1, ty_Char) 27.70/11.37 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs20(x0, x1, ty_Ordering) 27.70/11.37 new_esEs18(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_esEs21(x0, x1, ty_Ordering) 27.70/11.37 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 27.70/11.37 new_compare29(x0, x1, ty_Ordering) 27.70/11.37 new_primEqInt(Neg(Zero), Neg(Zero)) 27.70/11.37 new_esEs25(x0, x1, ty_Float) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 27.70/11.37 new_compare17(x0, x1, True, x2, x3) 27.70/11.37 new_esEs15(EQ, GT) 27.70/11.37 new_esEs15(GT, EQ) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 27.70/11.37 new_lt20(x0, x1, ty_Ordering) 27.70/11.37 new_esEs15(LT, LT) 27.70/11.37 new_esEs12(False, True) 27.70/11.37 new_esEs12(True, False) 27.70/11.37 new_esEs29(x0, x1, app(ty_[], x2)) 27.70/11.37 new_compare210(x0, x1, True) 27.70/11.37 new_compare28(:%(x0, x1), :%(x2, x3), ty_Int) 27.70/11.37 new_esEs29(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_ltEs13(x0, x1) 27.70/11.37 new_asAs(True, x0) 27.70/11.37 new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 27.70/11.37 new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 27.70/11.37 new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 27.70/11.37 new_compare14(x0, x1) 27.70/11.37 new_ltEs8(False, False) 27.70/11.37 new_compare211(x0, x1, True, x2, x3) 27.70/11.37 new_lt20(x0, x1, ty_Double) 27.70/11.37 new_compare29(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs21(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_ltEs10(GT, EQ) 27.70/11.37 new_ltEs10(EQ, GT) 27.70/11.37 new_lt8(x0, x1, ty_Int) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), ty_Float) 27.70/11.37 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 27.70/11.37 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_lt8(x0, x1, ty_@0) 27.70/11.37 new_compare29(x0, x1, ty_Double) 27.70/11.37 new_esEs25(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_ltEs18(x0, x1, ty_Double) 27.70/11.37 new_compare27(x0, x1, True, x2, x3) 27.70/11.37 new_compare29(x0, x1, ty_Bool) 27.70/11.37 new_primEqInt(Pos(Zero), Neg(Zero)) 27.70/11.37 new_primEqInt(Neg(Zero), Pos(Zero)) 27.70/11.37 new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 27.70/11.37 new_ltEs7(Nothing, Nothing, x0) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 27.70/11.37 new_esEs25(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 27.70/11.37 new_esEs24(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 27.70/11.37 new_compare29(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 27.70/11.37 new_compare15(x0, x1, x2, x3, x4) 27.70/11.37 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_compare10(x0, x1, False) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 27.70/11.37 new_primCmpNat0(x0, Succ(x1)) 27.70/11.37 new_lt15(x0, x1) 27.70/11.37 new_lt20(x0, x1, app(ty_[], x2)) 27.70/11.37 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_compare110(x0, x1, True) 27.70/11.37 new_esEs29(x0, x1, ty_Int) 27.70/11.37 new_primMulInt(Pos(x0), Pos(x1)) 27.70/11.37 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 27.70/11.37 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_lt12(x0, x1, x2, x3) 27.70/11.37 new_esEs19(x0, x1, ty_Ordering) 27.70/11.37 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_compare29(x0, x1, ty_Integer) 27.70/11.37 new_esEs22(x0, x1, ty_Bool) 27.70/11.37 new_primMulInt(Pos(x0), Neg(x1)) 27.70/11.37 new_primMulInt(Neg(x0), Pos(x1)) 27.70/11.37 new_esEs24(x0, x1, ty_@0) 27.70/11.37 new_ltEs10(EQ, LT) 27.70/11.37 new_ltEs10(GT, GT) 27.70/11.37 new_ltEs10(LT, EQ) 27.70/11.37 new_esEs21(x0, x1, ty_Bool) 27.70/11.37 new_esEs23(x0, x1, ty_Integer) 27.70/11.37 new_lt13(x0, x1, x2) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 27.70/11.37 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 27.70/11.37 new_esEs15(LT, GT) 27.70/11.37 new_esEs15(GT, LT) 27.70/11.37 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 27.70/11.37 new_esEs29(x0, x1, ty_Char) 27.70/11.37 new_ltEs19(x0, x1, ty_Float) 27.70/11.37 new_esEs19(x0, x1, ty_Int) 27.70/11.37 new_esEs4(Nothing, Nothing, x0) 27.70/11.37 new_esEs23(x0, x1, ty_Bool) 27.70/11.37 new_compare1(:(x0, x1), [], x2) 27.70/11.37 new_primCompAux0(x0, LT) 27.70/11.37 new_sr0(Integer(x0), Integer(x1)) 27.70/11.37 new_esEs20(x0, x1, ty_@0) 27.70/11.37 new_compare27(x0, x1, False, x2, x3) 27.70/11.37 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_ltEs19(x0, x1, ty_Char) 27.70/11.37 new_esEs18(x0, x1, ty_Double) 27.70/11.37 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 27.70/11.37 new_esEs18(x0, x1, ty_Ordering) 27.70/11.37 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 27.70/11.37 new_esEs25(x0, x1, ty_@0) 27.70/11.37 new_lt17(x0, x1) 27.70/11.37 new_compare8(Integer(x0), Integer(x1)) 27.70/11.37 new_lt8(x0, x1, ty_Double) 27.70/11.37 new_lt20(x0, x1, ty_Char) 27.70/11.37 new_esEs26(x0, x1, ty_Integer) 27.70/11.37 new_esEs29(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_compare29(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs4(Just(x0), Just(x1), ty_Bool) 27.70/11.37 new_ltEs19(x0, x1, ty_Int) 27.70/11.37 new_compare28(:%(x0, x1), :%(x2, x3), ty_Integer) 27.70/11.37 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 27.70/11.37 new_primCompAux1(x0, x1, x2, x3) 27.70/11.37 new_esEs19(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_lt20(x0, x1, ty_Int) 27.70/11.37 new_compare29(x0, x1, ty_@0) 27.70/11.37 new_esEs19(x0, x1, ty_Float) 27.70/11.37 new_esEs25(x0, x1, ty_Integer) 27.70/11.37 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_primCmpInt(Neg(Zero), Neg(Zero)) 27.70/11.37 new_ltEs6(Right(x0), Left(x1), x2, x3) 27.70/11.37 new_ltEs20(x0, x1, ty_Float) 27.70/11.37 new_ltEs6(Left(x0), Right(x1), x2, x3) 27.70/11.37 new_compare23(Nothing, Just(x0), False, x1) 27.70/11.37 new_compare23(Nothing, Nothing, False, x0) 27.70/11.37 new_esEs23(x0, x1, app(ty_[], x2)) 27.70/11.37 new_esEs27(x0, x1, ty_Int) 27.70/11.37 new_esEs26(x0, x1, ty_Float) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), ty_Double) 27.70/11.37 new_compare210(x0, x1, False) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 27.70/11.37 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs23(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_ltEs14(x0, x1) 27.70/11.37 new_esEs26(x0, x1, ty_Bool) 27.70/11.37 new_primCmpInt(Pos(Zero), Neg(Zero)) 27.70/11.37 new_primCmpInt(Neg(Zero), Pos(Zero)) 27.70/11.37 new_esEs20(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs20(x0, x1, app(ty_[], x2)) 27.70/11.37 new_esEs27(x0, x1, ty_Integer) 27.70/11.37 new_esEs22(x0, x1, ty_Integer) 27.70/11.37 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_lt8(x0, x1, app(ty_[], x2)) 27.70/11.37 new_compare29(x0, x1, app(ty_[], x2)) 27.70/11.37 new_lt14(x0, x1, x2, x3) 27.70/11.37 new_esEs21(x0, x1, ty_Char) 27.70/11.37 new_esEs21(x0, x1, ty_Integer) 27.70/11.37 new_ltEs8(True, False) 27.70/11.37 new_ltEs8(False, True) 27.70/11.37 new_esEs4(Just(x0), Just(x1), ty_Char) 27.70/11.37 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 27.70/11.37 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_lt5(x0, x1, x2) 27.70/11.37 new_lt20(x0, x1, ty_Float) 27.70/11.37 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 27.70/11.37 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 27.70/11.37 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 27.70/11.37 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 27.70/11.37 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_lt19(x0, x1, ty_Double) 27.70/11.37 new_compare11(x0, x1, False, x2, x3, x4) 27.70/11.37 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 27.70/11.37 new_compare29(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 27.70/11.37 new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 27.70/11.37 new_lt20(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_esEs29(x0, x1, ty_Ordering) 27.70/11.37 new_esEs19(x0, x1, ty_Char) 27.70/11.37 new_esEs23(x0, x1, ty_Float) 27.70/11.37 new_esEs9(:(x0, x1), [], x2) 27.70/11.37 new_ltEs18(x0, x1, ty_Ordering) 27.70/11.37 new_esEs4(Just(x0), Just(x1), ty_Int) 27.70/11.37 new_compare19(x0, x1, False, x2) 27.70/11.37 new_lt19(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs4(Just(x0), Just(x1), ty_Float) 27.70/11.37 new_esEs26(x0, x1, app(ty_[], x2)) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 27.70/11.37 new_lt19(x0, x1, ty_@0) 27.70/11.37 new_esEs29(x0, x1, ty_Integer) 27.70/11.37 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 27.70/11.37 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 27.70/11.37 new_esEs22(x0, x1, ty_Ordering) 27.70/11.37 new_lt20(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_primCmpNat2(Succ(x0), Zero) 27.70/11.37 new_esEs24(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs23(x0, x1, ty_Int) 27.70/11.37 new_lt19(x0, x1, ty_Int) 27.70/11.37 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_esEs22(x0, x1, ty_Double) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), ty_Char) 27.70/11.37 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_primCmpNat2(Succ(x0), Succ(x1)) 27.70/11.37 new_esEs21(x0, x1, ty_Float) 27.70/11.37 new_esEs19(x0, x1, ty_Bool) 27.70/11.37 new_lt19(x0, x1, app(ty_[], x2)) 27.70/11.37 new_compare25(x0, x1, False) 27.70/11.37 new_ltEs20(x0, x1, ty_Char) 27.70/11.37 new_esEs26(x0, x1, ty_Char) 27.70/11.37 new_esEs25(x0, x1, ty_Ordering) 27.70/11.37 new_lt11(x0, x1, x2, x3, x4) 27.70/11.37 new_ltEs18(x0, x1, ty_Integer) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 27.70/11.37 new_primMulNat0(Zero, Zero) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 27.70/11.37 new_ltEs19(x0, x1, ty_Integer) 27.70/11.37 new_esEs24(x0, x1, ty_Double) 27.70/11.37 new_primEqNat0(Succ(x0), Zero) 27.70/11.37 new_esEs15(EQ, EQ) 27.70/11.37 new_primEqNat0(Succ(x0), Succ(x1)) 27.70/11.37 new_esEs25(x0, x1, ty_Int) 27.70/11.37 new_ltEs18(x0, x1, ty_Bool) 27.70/11.37 new_esEs23(x0, x1, ty_Char) 27.70/11.37 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_ltEs19(x0, x1, ty_Bool) 27.70/11.37 new_esEs26(x0, x1, ty_Int) 27.70/11.37 new_lt20(x0, x1, ty_Integer) 27.70/11.37 new_ltEs10(EQ, EQ) 27.70/11.37 new_ltEs7(Just(x0), Nothing, x1) 27.70/11.37 new_esEs19(x0, x1, ty_Integer) 27.70/11.37 new_compare9(@0, @0) 27.70/11.37 new_ltEs19(x0, x1, ty_@0) 27.70/11.37 new_compare110(x0, x1, False) 27.70/11.37 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_ltEs20(x0, x1, ty_Int) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 27.70/11.37 new_lt4(x0, x1) 27.70/11.37 new_esEs24(x0, x1, ty_Ordering) 27.70/11.37 new_esEs19(x0, x1, ty_@0) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 27.70/11.37 new_lt8(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_compare29(x0, x1, ty_Float) 27.70/11.37 new_lt8(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs18(x0, x1, ty_Char) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 27.70/11.37 new_primCmpNat2(Zero, Zero) 27.70/11.37 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 27.70/11.37 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 27.70/11.37 new_esEs18(x0, x1, ty_@0) 27.70/11.37 new_compare6(x0, x1, x2) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 27.70/11.37 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_lt10(x0, x1) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), ty_Int) 27.70/11.37 new_compare24(x0, x1, False, x2, x3, x4) 27.70/11.37 new_asAs(False, x0) 27.70/11.37 new_esEs29(x0, x1, ty_Bool) 27.70/11.37 new_esEs23(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 27.70/11.37 new_primEqNat0(Zero, Succ(x0)) 27.70/11.37 new_not(True) 27.70/11.37 new_lt20(x0, x1, ty_Bool) 27.70/11.37 new_esEs22(x0, x1, ty_Char) 27.70/11.37 new_ltEs10(GT, LT) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), ty_@0) 27.70/11.37 new_ltEs10(LT, GT) 27.70/11.37 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 27.70/11.37 new_esEs22(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_lt8(x0, x1, ty_Float) 27.70/11.37 new_esEs12(False, False) 27.70/11.37 new_ltEs20(x0, x1, ty_Double) 27.70/11.37 new_esEs22(x0, x1, app(ty_[], x2)) 27.70/11.37 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 27.70/11.37 new_ltEs20(x0, x1, ty_@0) 27.70/11.37 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_esEs20(x0, x1, ty_Integer) 27.70/11.37 new_esEs26(x0, x1, ty_Ordering) 27.70/11.37 new_ltEs4(x0, x1) 27.70/11.37 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 27.70/11.37 new_esEs9([], [], x0) 27.70/11.37 new_esEs18(x0, x1, ty_Integer) 27.70/11.37 new_compare18(x0, x1, True, x2, x3) 27.70/11.37 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs25(x0, x1, ty_Char) 27.70/11.37 new_primMulNat0(Zero, Succ(x0)) 27.70/11.37 new_primCmpNat0(x0, Zero) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 27.70/11.37 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 27.70/11.37 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 27.70/11.37 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 27.70/11.37 new_esEs29(x0, x1, ty_Float) 27.70/11.37 new_ltEs16(x0, x1, x2) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 27.70/11.37 new_esEs18(x0, x1, ty_Bool) 27.70/11.37 new_esEs22(x0, x1, ty_Int) 27.70/11.37 new_primPlusNat1(Zero, Succ(x0)) 27.70/11.37 new_esEs20(x0, x1, ty_Bool) 27.70/11.37 new_compare23(x0, x1, True, x2) 27.70/11.37 new_ltEs7(Nothing, Just(x0), x1) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 27.70/11.37 new_lt6(x0, x1) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 27.70/11.37 new_esEs20(x0, x1, app(ty_Ratio, x2)) 27.70/11.37 new_esEs4(Just(x0), Just(x1), ty_Integer) 27.70/11.37 new_ltEs18(x0, x1, ty_Char) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 27.70/11.37 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 27.70/11.37 new_esEs25(x0, x1, ty_Double) 27.70/11.37 new_compare17(x0, x1, False, x2, x3) 27.70/11.37 new_ltEs18(x0, x1, ty_@0) 27.70/11.37 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs25(x0, x1, ty_Bool) 27.70/11.37 new_esEs29(x0, x1, ty_@0) 27.70/11.37 new_esEs21(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs26(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_lt18(x0, x1) 27.70/11.37 new_esEs24(x0, x1, app(ty_[], x2)) 27.70/11.37 new_esEs9([], :(x0, x1), x2) 27.70/11.37 new_lt19(x0, x1, ty_Ordering) 27.70/11.37 new_esEs22(x0, x1, ty_@0) 27.70/11.37 new_ltEs18(x0, x1, ty_Int) 27.70/11.37 new_esEs23(x0, x1, ty_Ordering) 27.70/11.37 new_ltEs20(x0, x1, app(ty_[], x2)) 27.70/11.37 new_ltEs20(x0, x1, ty_Bool) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 27.70/11.37 new_primCmpInt(Pos(Zero), Pos(Zero)) 27.70/11.37 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 27.70/11.37 new_ltEs11(x0, x1, x2) 27.70/11.37 new_esEs9(:(x0, x1), :(x2, x3), x4) 27.70/11.37 new_pePe(True, x0) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), ty_Integer) 27.70/11.37 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 27.70/11.37 new_ltEs19(x0, x1, ty_Ordering) 27.70/11.37 new_compare25(x0, x1, True) 27.70/11.37 new_primMulInt(Neg(x0), Neg(x1)) 27.70/11.37 new_lt19(x0, x1, ty_Integer) 27.70/11.37 new_esEs6(Left(x0), Right(x1), x2, x3) 27.70/11.37 new_esEs6(Right(x0), Left(x1), x2, x3) 27.70/11.37 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 27.70/11.37 new_compare12(x0, x1) 27.70/11.37 new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 27.70/11.37 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 27.70/11.37 new_esEs18(x0, x1, ty_Float) 27.70/11.37 new_ltEs18(x0, x1, ty_Float) 27.70/11.37 new_primMulNat0(Succ(x0), Succ(x1)) 27.70/11.37 new_ltEs19(x0, x1, ty_Double) 27.70/11.37 new_compare11(x0, x1, True, x2, x3, x4) 27.70/11.37 new_esEs15(GT, GT) 27.70/11.37 new_primCmpNat1(Zero, x0) 27.70/11.37 new_esEs29(x0, x1, ty_Double) 27.70/11.37 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 27.70/11.37 new_esEs28(x0, x1, ty_Integer) 27.70/11.37 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_esEs15(LT, EQ) 27.70/11.37 new_esEs15(EQ, LT) 27.70/11.37 new_lt19(x0, x1, ty_Bool) 27.70/11.37 new_primPlusNat0(x0, x1) 27.70/11.37 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 27.70/11.37 new_esEs20(x0, x1, ty_Char) 27.70/11.37 new_lt20(x0, x1, ty_@0) 27.70/11.37 new_lt16(x0, x1) 27.70/11.37 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 27.70/11.37 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 27.70/11.37 new_esEs21(x0, x1, ty_@0) 27.70/11.37 new_compare16(x0, x1) 27.70/11.37 new_fsEs(x0) 27.70/11.37 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.37 new_esEs24(x0, x1, ty_Integer) 27.70/11.37 new_primPlusNat1(Succ(x0), Succ(x1)) 27.70/11.37 new_compare211(x0, x1, False, x2, x3) 27.70/11.37 new_compare19(x0, x1, True, x2) 27.70/11.37 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.37 new_esEs18(x0, x1, app(ty_Maybe, x2)) 27.70/11.37 new_esEs18(x0, x1, app(ty_[], x2)) 27.70/11.37 new_ltEs20(x0, x1, ty_Integer) 27.70/11.37 new_esEs8(@0, @0) 27.70/11.37 new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 27.70/11.37 new_esEs19(x0, x1, app(ty_[], x2)) 27.70/11.37 new_esEs18(x0, x1, ty_Int) 27.70/11.37 new_esEs20(x0, x1, ty_Int) 27.70/11.37 new_primEqNat0(Zero, Zero) 27.70/11.37 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 27.70/11.37 new_esEs26(x0, x1, ty_Double) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 27.70/11.37 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 27.70/11.37 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.37 new_primCmpNat1(Succ(x0), x1) 27.70/11.37 new_esEs12(True, True) 27.70/11.37 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 27.70/11.37 new_esEs10(Integer(x0), Integer(x1)) 27.70/11.37 new_not(False) 27.70/11.37 new_esEs24(x0, x1, ty_Char) 27.70/11.37 new_lt8(x0, x1, ty_Bool) 27.70/11.37 new_esEs26(x0, x1, ty_@0) 27.70/11.37 new_compare10(x0, x1, True) 27.70/11.37 new_ltEs7(Just(x0), Just(x1), ty_Bool) 27.70/11.37 new_ltEs9(x0, x1) 27.70/11.37 new_compare1([], [], x0) 27.70/11.37 new_ltEs20(x0, x1, ty_Ordering) 27.70/11.37 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 27.70/11.38 new_esEs24(x0, x1, ty_Int) 27.70/11.38 new_esEs13(Float(x0, x1), Float(x2, x3)) 27.70/11.38 new_primCompAux0(x0, GT) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 27.70/11.38 new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 27.70/11.38 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_primMulNat0(Succ(x0), Zero) 27.70/11.38 new_ltEs18(x0, x1, app(ty_[], x2)) 27.70/11.38 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_esEs23(x0, x1, ty_Double) 27.70/11.38 new_ltEs8(True, True) 27.70/11.38 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_esEs20(x0, x1, ty_Float) 27.70/11.38 new_lt7(x0, x1) 27.70/11.38 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_esEs25(x0, x1, app(ty_[], x2)) 27.70/11.38 new_lt8(x0, x1, ty_Ordering) 27.70/11.38 new_lt9(x0, x1, x2) 27.70/11.38 new_lt19(x0, x1, ty_Float) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 27.70/11.38 new_lt8(x0, x1, ty_Integer) 27.70/11.38 new_compare23(Just(x0), Just(x1), False, x2) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 27.70/11.38 new_compare23(Just(x0), Nothing, False, x1) 27.70/11.38 new_compare18(x0, x1, False, x2, x3) 27.70/11.38 new_lt19(x0, x1, ty_Char) 27.70/11.38 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_esEs14(:%(x0, x1), :%(x2, x3), x4) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 27.70/11.38 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 27.70/11.38 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 27.70/11.38 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 27.70/11.38 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 27.70/11.38 new_esEs19(x0, x1, ty_Double) 27.70/11.38 new_esEs22(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_esEs21(x0, x1, app(ty_[], x2)) 27.70/11.38 new_compare26(x0, x1, x2, x3) 27.70/11.38 new_esEs23(x0, x1, ty_@0) 27.70/11.38 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_esEs11(Double(x0, x1), Double(x2, x3)) 27.70/11.38 new_compare24(x0, x1, True, x2, x3, x4) 27.70/11.38 new_compare1(:(x0, x1), :(x2, x3), x4) 27.70/11.38 new_esEs4(Just(x0), Just(x1), ty_@0) 27.70/11.38 new_ltEs17(x0, x1) 27.70/11.38 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 27.70/11.38 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 27.70/11.38 new_esEs4(Nothing, Just(x0), x1) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 27.70/11.38 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_compare30(x0, x1, x2, x3) 27.70/11.38 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 27.70/11.38 new_esEs24(x0, x1, ty_Bool) 27.70/11.38 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 27.70/11.38 27.70/11.38 We have to consider all minimal (P,Q,R)-chains. 27.70/11.38 ---------------------------------------- 27.70/11.38 27.70/11.38 (29) DependencyGraphProof (EQUIVALENT) 27.70/11.38 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 2 less nodes. 27.70/11.38 ---------------------------------------- 27.70/11.38 27.70/11.38 (30) 27.70/11.38 Obligation: 27.70/11.38 Q DP problem: 27.70/11.38 The TRS P consists of the following rules: 27.70/11.38 27.70/11.38 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bb, bc) -> new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs15(new_compare23(Just(xwv18), Just(xwv13), new_esEs4(Just(xwv18), Just(xwv13), bb), bb), LT), bb, bc) 27.70/11.38 new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv16, Just(xwv18), bb, bc) 27.70/11.38 new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(new_compare23(Just(xwv40), Just(xwv300), new_esEs29(xwv40, xwv300, h), h), GT), h, ba) 27.70/11.38 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv17, Just(xwv18), bb, bc) 27.70/11.38 new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(GT, GT), h, ba) 27.70/11.38 new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, True, h, ba) -> new_delFromFM(xwv34, Just(xwv40), h, ba) 27.70/11.38 27.70/11.38 The TRS R consists of the following rules: 27.70/11.38 27.70/11.38 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 27.70/11.38 new_primCmpInt(Neg(Succ(xwv2800)), Pos(xwv290)) -> LT 27.70/11.38 new_ltEs19(xwv2800, xwv2900, ty_Double) -> new_ltEs4(xwv2800, xwv2900) 27.70/11.38 new_pePe(True, xwv131) -> True 27.70/11.38 new_esEs24(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.38 new_compare29(xwv28000, xwv29000, app(app(ty_@2, cac), cad)) -> new_compare30(xwv28000, xwv29000, cac, cad) 27.70/11.38 new_ltEs14(xwv2800, xwv2900) -> new_fsEs(new_compare14(xwv2800, xwv2900)) 27.70/11.38 new_lt8(xwv28000, xwv29000, app(app(ty_@2, bah), bba)) -> new_lt14(xwv28000, xwv29000, bah, bba) 27.70/11.38 new_compare23(xwv280, xwv290, True, bee) -> EQ 27.70/11.38 new_esEs23(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.70/11.38 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 27.70/11.38 new_ltEs20(xwv28002, xwv29002, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_ltEs5(xwv28002, xwv29002, ccb, ccc, ccd) 27.70/11.38 new_primCmpInt(Pos(Zero), Neg(Succ(xwv2900))) -> GT 27.70/11.38 new_esEs29(xwv40, xwv300, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs5(xwv40, xwv300, bff, bfg, bfh) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Ordering, eh) -> new_ltEs10(xwv28000, xwv29000) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, app(app(ty_@2, hg), hh)) -> new_ltEs12(xwv2800, xwv2900, hg, hh) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Int, eh) -> new_ltEs14(xwv28000, xwv29000) 27.70/11.38 new_esEs18(xwv28000, xwv29000, ty_Float) -> new_esEs13(xwv28000, xwv29000) 27.70/11.38 new_esEs24(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.38 new_esEs20(xwv28000, xwv29000, ty_Double) -> new_esEs11(xwv28000, xwv29000) 27.70/11.38 new_esEs26(xwv402, xwv3002, app(app(ty_@2, daf), dag)) -> new_esEs7(xwv402, xwv3002, daf, dag) 27.70/11.38 new_compare15(xwv28000, xwv29000, ed, ee, ef) -> new_compare24(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, ed, ee, ef), ed, ee, ef) 27.70/11.38 new_esEs18(xwv28000, xwv29000, ty_Bool) -> new_esEs12(xwv28000, xwv29000) 27.70/11.38 new_ltEs10(GT, LT) -> False 27.70/11.38 new_lt7(xwv28000, xwv29000) -> new_esEs15(new_compare8(xwv28000, xwv29000), LT) 27.70/11.38 new_ltEs4(xwv2800, xwv2900) -> new_fsEs(new_compare7(xwv2800, xwv2900)) 27.70/11.38 new_esEs25(xwv401, xwv3001, ty_Double) -> new_esEs11(xwv401, xwv3001) 27.70/11.38 new_primCompAux0(xwv153, GT) -> GT 27.70/11.38 new_esEs22(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.38 new_esEs28(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.70/11.38 new_esEs19(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, ty_Double) -> new_ltEs4(xwv28002, xwv29002) 27.70/11.38 new_compare210(xwv28000, xwv29000, False) -> new_compare110(xwv28000, xwv29000, new_ltEs10(xwv28000, xwv29000)) 27.70/11.38 new_primEqInt(Pos(Succ(xwv4000)), Pos(Zero)) -> False 27.70/11.38 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 27.70/11.38 new_esEs27(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.38 new_ltEs10(EQ, LT) -> False 27.70/11.38 new_compare31(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.38 new_ltEs11(xwv2800, xwv2900, bfb) -> new_fsEs(new_compare28(xwv2800, xwv2900, bfb)) 27.70/11.38 new_esEs23(xwv401, xwv3001, app(ty_[], cee)) -> new_esEs9(xwv401, xwv3001, cee) 27.70/11.38 new_lt16(xwv280, xwv290) -> new_esEs15(new_compare14(xwv280, xwv290), LT) 27.70/11.38 new_primCmpNat2(Succ(xwv28000), Succ(xwv29000)) -> new_primCmpNat2(xwv28000, xwv29000) 27.70/11.38 new_esEs20(xwv28000, xwv29000, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs5(xwv28000, xwv29000, ed, ee, ef) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), ty_Double, bd) -> new_esEs11(xwv400, xwv3000) 27.70/11.38 new_compare1(:(xwv28000, xwv28001), [], bce) -> GT 27.70/11.38 new_esEs22(xwv400, xwv3000, app(ty_Maybe, cdh)) -> new_esEs4(xwv400, xwv3000, cdh) 27.70/11.38 new_primEqNat0(Succ(xwv4000), Succ(xwv30000)) -> new_primEqNat0(xwv4000, xwv30000) 27.70/11.38 new_esEs23(xwv401, xwv3001, app(ty_Ratio, cff)) -> new_esEs14(xwv401, xwv3001, cff) 27.70/11.38 new_esEs29(xwv40, xwv300, ty_Float) -> new_esEs13(xwv40, xwv300) 27.70/11.38 new_compare12(xwv28000, xwv29000) -> new_compare210(xwv28000, xwv29000, new_esEs15(xwv28000, xwv29000)) 27.70/11.38 new_primCompAux0(xwv153, LT) -> LT 27.70/11.38 new_esEs20(xwv28000, xwv29000, ty_Ordering) -> new_esEs15(xwv28000, xwv29000) 27.70/11.38 new_not(True) -> False 27.70/11.38 new_ltEs18(xwv28001, xwv29001, app(ty_Maybe, bbc)) -> new_ltEs7(xwv28001, xwv29001, bbc) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs5(xwv2800, xwv2900, beg, beh, bfa) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs5(xwv28000, xwv29000, dbg, dbh, dca) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Integer) -> new_ltEs9(xwv28000, xwv29000) 27.70/11.38 new_esEs29(xwv40, xwv300, ty_Ordering) -> new_esEs15(xwv40, xwv300) 27.70/11.38 new_compare17(xwv28000, xwv29000, False, bcf, bcg) -> GT 27.70/11.38 new_compare29(xwv28000, xwv29000, ty_@0) -> new_compare9(xwv28000, xwv29000) 27.70/11.38 new_esEs18(xwv28000, xwv29000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs5(xwv28000, xwv29000, bab, bac, bad) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, ty_Bool) -> new_ltEs8(xwv2800, xwv2900) 27.70/11.38 new_esEs23(xwv401, xwv3001, ty_Bool) -> new_esEs12(xwv401, xwv3001) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs5(xwv28001, xwv29001, bbd, bbe, bbf) 27.70/11.38 new_esEs15(LT, EQ) -> False 27.70/11.38 new_esEs15(EQ, LT) -> False 27.70/11.38 new_ltEs18(xwv28001, xwv29001, app(app(ty_Either, bbg), bbh)) -> new_ltEs6(xwv28001, xwv29001, bbg, bbh) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(ty_Either, fd), ff), eh) -> new_ltEs6(xwv28000, xwv29000, fd, ff) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Bool, eh) -> new_ltEs8(xwv28000, xwv29000) 27.70/11.38 new_compare29(xwv28000, xwv29000, app(ty_Maybe, bhd)) -> new_compare6(xwv28000, xwv29000, bhd) 27.70/11.38 new_esEs8(@0, @0) -> True 27.70/11.38 new_primEqNat0(Succ(xwv4000), Zero) -> False 27.70/11.38 new_primEqNat0(Zero, Succ(xwv30000)) -> False 27.70/11.38 new_esEs24(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_Ratio, cf), bd) -> new_esEs14(xwv400, xwv3000, cf) 27.70/11.38 new_ltEs7(Nothing, Just(xwv29000), bef) -> True 27.70/11.38 new_esEs19(xwv400, xwv3000, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs5(xwv400, xwv3000, bea, beb, bec) 27.70/11.38 new_primCmpNat0(xwv2800, Succ(xwv2900)) -> new_primCmpNat2(xwv2800, xwv2900) 27.70/11.38 new_esEs22(xwv400, xwv3000, app(app(ty_@2, cdf), cdg)) -> new_esEs7(xwv400, xwv3000, cdf, cdg) 27.70/11.38 new_esEs22(xwv400, xwv3000, app(ty_[], cdc)) -> new_esEs9(xwv400, xwv3000, cdc) 27.70/11.38 new_esEs25(xwv401, xwv3001, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs5(xwv401, xwv3001, chg, chh, daa) 27.70/11.38 new_compare110(xwv28000, xwv29000, True) -> LT 27.70/11.38 new_esEs18(xwv28000, xwv29000, ty_Double) -> new_esEs11(xwv28000, xwv29000) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(app(ty_@3, ge), gf), gg)) -> new_ltEs5(xwv28000, xwv29000, ge, gf, gg) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Double) -> new_ltEs4(xwv28000, xwv29000) 27.70/11.38 new_esEs18(xwv28000, xwv29000, app(ty_Ratio, bag)) -> new_esEs14(xwv28000, xwv29000, bag) 27.70/11.38 new_esEs23(xwv401, xwv3001, ty_@0) -> new_esEs8(xwv401, xwv3001) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_Maybe, eg), eh) -> new_ltEs7(xwv28000, xwv29000, eg) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.38 new_primCmpInt(Pos(Succ(xwv2800)), Neg(xwv290)) -> GT 27.70/11.38 new_esEs24(xwv400, xwv3000, app(ty_Ratio, cgh)) -> new_esEs14(xwv400, xwv3000, cgh) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Bool) -> new_ltEs8(xwv28000, xwv29000) 27.70/11.38 new_esEs24(xwv400, xwv3000, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs5(xwv400, xwv3000, cge, cgf, cgg) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Char, eh) -> new_ltEs13(xwv28000, xwv29000) 27.70/11.38 new_ltEs10(GT, EQ) -> False 27.70/11.38 new_esEs29(xwv40, xwv300, ty_Double) -> new_esEs11(xwv40, xwv300) 27.70/11.38 new_esEs18(xwv28000, xwv29000, ty_Ordering) -> new_esEs15(xwv28000, xwv29000) 27.70/11.38 new_ltEs17(xwv2800, xwv2900) -> new_fsEs(new_compare31(xwv2800, xwv2900)) 27.70/11.38 new_ltEs9(xwv2800, xwv2900) -> new_fsEs(new_compare8(xwv2800, xwv2900)) 27.70/11.38 new_compare1(:(xwv28000, xwv28001), :(xwv29000, xwv29001), bce) -> new_primCompAux1(xwv28000, xwv29000, new_compare1(xwv28001, xwv29001, bce), bce) 27.70/11.38 new_esEs26(xwv402, xwv3002, ty_Char) -> new_esEs16(xwv402, xwv3002) 27.70/11.38 new_primPlusNat1(Succ(xwv33200), Succ(xwv9100)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv9100))) 27.70/11.38 new_lt8(xwv28000, xwv29000, ty_Int) -> new_lt16(xwv28000, xwv29000) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), app(app(app(ty_@3, cc), cd), ce), bd) -> new_esEs5(xwv400, xwv3000, cc, cd, ce) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_Ratio, eb)) -> new_esEs14(xwv400, xwv3000, eb) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, ty_Bool) -> new_ltEs8(xwv28002, xwv29002) 27.70/11.38 new_esEs28(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_Maybe, gd)) -> new_ltEs7(xwv28000, xwv29000, gd) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, app(ty_Maybe, cca)) -> new_ltEs7(xwv28002, xwv29002, cca) 27.70/11.38 new_compare211(xwv28000, xwv29000, False, bch, bda) -> new_compare18(xwv28000, xwv29000, new_ltEs12(xwv28000, xwv29000, bch, bda), bch, bda) 27.70/11.38 new_compare210(xwv28000, xwv29000, True) -> EQ 27.70/11.38 new_lt8(xwv28000, xwv29000, ty_@0) -> new_lt4(xwv28000, xwv29000) 27.70/11.38 new_esEs21(xwv28001, xwv29001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(xwv28001, xwv29001, cah, cba, cbb) 27.70/11.38 new_esEs14(:%(xwv400, xwv401), :%(xwv3000, xwv3001), bga) -> new_asAs(new_esEs27(xwv400, xwv3000, bga), new_esEs28(xwv401, xwv3001, bga)) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), ty_Ordering, bd) -> new_esEs15(xwv400, xwv3000) 27.70/11.38 new_pePe(False, xwv131) -> xwv131 27.70/11.38 new_lt19(xwv28000, xwv29000, ty_Int) -> new_lt16(xwv28000, xwv29000) 27.70/11.38 new_lt8(xwv28000, xwv29000, app(app(ty_Either, bae), baf)) -> new_lt12(xwv28000, xwv29000, bae, baf) 27.70/11.38 new_esEs22(xwv400, xwv3000, app(ty_Ratio, ced)) -> new_esEs14(xwv400, xwv3000, ced) 27.70/11.38 new_esEs12(False, False) -> True 27.70/11.38 new_esEs15(GT, GT) -> True 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Double, eh) -> new_ltEs4(xwv28000, xwv29000) 27.70/11.38 new_esEs22(xwv400, xwv3000, app(app(ty_Either, cdd), cde)) -> new_esEs6(xwv400, xwv3000, cdd, cde) 27.70/11.38 new_esEs15(EQ, GT) -> False 27.70/11.38 new_esEs15(GT, EQ) -> False 27.70/11.38 new_ltEs20(xwv28002, xwv29002, ty_Char) -> new_ltEs13(xwv28002, xwv29002) 27.70/11.38 new_lt8(xwv28000, xwv29000, ty_Ordering) -> new_lt6(xwv28000, xwv29000) 27.70/11.38 new_lt19(xwv28000, xwv29000, ty_Bool) -> new_lt10(xwv28000, xwv29000) 27.70/11.38 new_esEs25(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, ty_Double) -> new_ltEs4(xwv28001, xwv29001) 27.70/11.38 new_lt19(xwv28000, xwv29000, app(app(ty_Either, bcf), bcg)) -> new_lt12(xwv28000, xwv29000, bcf, bcg) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, app(ty_[], bcd)) -> new_ltEs16(xwv28001, xwv29001, bcd) 27.70/11.38 new_lt20(xwv28001, xwv29001, app(ty_Maybe, cag)) -> new_lt9(xwv28001, xwv29001, cag) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, app(app(ty_@2, bcb), bcc)) -> new_ltEs12(xwv28001, xwv29001, bcb, bcc) 27.70/11.38 new_esEs9(:(xwv400, xwv401), [], bdb) -> False 27.70/11.38 new_esEs9([], :(xwv3000, xwv3001), bdb) -> False 27.70/11.38 new_esEs25(xwv401, xwv3001, ty_Ordering) -> new_esEs15(xwv401, xwv3001) 27.70/11.38 new_lt19(xwv28000, xwv29000, app(ty_Maybe, ec)) -> new_lt9(xwv28000, xwv29000, ec) 27.70/11.38 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 27.70/11.38 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 27.70/11.38 new_esEs23(xwv401, xwv3001, app(ty_Maybe, cfb)) -> new_esEs4(xwv401, xwv3001, cfb) 27.70/11.38 new_compare11(xwv28000, xwv29000, True, ed, ee, ef) -> LT 27.70/11.38 new_esEs26(xwv402, xwv3002, app(ty_[], dac)) -> new_esEs9(xwv402, xwv3002, dac) 27.70/11.38 new_compare19(xwv117, xwv118, True, dbe) -> LT 27.70/11.38 new_ltEs18(xwv28001, xwv29001, ty_Integer) -> new_ltEs9(xwv28001, xwv29001) 27.70/11.38 new_compare30(xwv28000, xwv29000, bch, bda) -> new_compare211(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, bch, bda), bch, bda) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), ty_Integer, bd) -> new_esEs10(xwv400, xwv3000) 27.70/11.38 new_compare7(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.38 new_esEs20(xwv28000, xwv29000, app(ty_Ratio, caf)) -> new_esEs14(xwv28000, xwv29000, caf) 27.70/11.38 new_esEs21(xwv28001, xwv29001, ty_Float) -> new_esEs13(xwv28001, xwv29001) 27.70/11.38 new_lt6(xwv28000, xwv29000) -> new_esEs15(new_compare12(xwv28000, xwv29000), LT) 27.70/11.38 new_esEs18(xwv28000, xwv29000, ty_Char) -> new_esEs16(xwv28000, xwv29000) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, ty_Char) -> new_ltEs13(xwv2800, xwv2900) 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(xwv400, xwv3000, bgh, bha, bhb) 27.70/11.38 new_esEs19(xwv400, xwv3000, app(ty_Maybe, bdh)) -> new_esEs4(xwv400, xwv3000, bdh) 27.70/11.38 new_primEqInt(Neg(Succ(xwv4000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 27.70/11.38 new_primCmpInt(Neg(Zero), Pos(Succ(xwv2900))) -> LT 27.70/11.38 new_lt8(xwv28000, xwv29000, app(ty_[], bbb)) -> new_lt5(xwv28000, xwv29000, bbb) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_[], gb), eh) -> new_ltEs16(xwv28000, xwv29000, gb) 27.70/11.38 new_primMulInt(Pos(xwv4010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.38 new_ltEs8(True, False) -> False 27.70/11.38 new_lt18(xwv28000, xwv29000) -> new_esEs15(new_compare31(xwv28000, xwv29000), LT) 27.70/11.38 new_esEs24(xwv400, xwv3000, app(app(ty_Either, cfh), cga)) -> new_esEs6(xwv400, xwv3000, cfh, cga) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Float, eh) -> new_ltEs17(xwv28000, xwv29000) 27.70/11.38 new_compare18(xwv28000, xwv29000, False, bch, bda) -> GT 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), app(app(ty_Either, bf), bg), bd) -> new_esEs6(xwv400, xwv3000, bf, bg) 27.70/11.38 new_compare29(xwv28000, xwv29000, app(ty_[], cae)) -> new_compare1(xwv28000, xwv29000, cae) 27.70/11.38 new_ltEs16(xwv2800, xwv2900, bce) -> new_fsEs(new_compare1(xwv2800, xwv2900, bce)) 27.70/11.38 new_lt11(xwv28000, xwv29000, ed, ee, ef) -> new_esEs15(new_compare15(xwv28000, xwv29000, ed, ee, ef), LT) 27.70/11.38 new_esEs23(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.70/11.38 new_primMulNat0(Succ(xwv40100), Zero) -> Zero 27.70/11.38 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 27.70/11.38 new_ltEs8(False, False) -> True 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.38 new_compare29(xwv28000, xwv29000, ty_Char) -> new_compare13(xwv28000, xwv29000) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(ty_Either, gh), ha)) -> new_ltEs6(xwv28000, xwv29000, gh, ha) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs5(xwv400, xwv3000, dg, dh, ea) 27.70/11.38 new_esEs23(xwv401, xwv3001, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_esEs5(xwv401, xwv3001, cfc, cfd, cfe) 27.70/11.38 new_esEs24(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.38 new_primCmpNat2(Succ(xwv28000), Zero) -> GT 27.70/11.38 new_compare11(xwv28000, xwv29000, False, ed, ee, ef) -> GT 27.70/11.38 new_lt8(xwv28000, xwv29000, ty_Char) -> new_lt15(xwv28000, xwv29000) 27.70/11.38 new_compare29(xwv28000, xwv29000, ty_Float) -> new_compare31(xwv28000, xwv29000) 27.70/11.38 new_esEs15(LT, GT) -> False 27.70/11.38 new_esEs15(GT, LT) -> False 27.70/11.38 new_lt20(xwv28001, xwv29001, app(app(app(ty_@3, cah), cba), cbb)) -> new_lt11(xwv28001, xwv29001, cah, cba, cbb) 27.70/11.38 new_esEs25(xwv401, xwv3001, ty_@0) -> new_esEs8(xwv401, xwv3001) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), app(app(ty_@2, bh), ca), bd) -> new_esEs7(xwv400, xwv3000, bh, ca) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, ty_Bool) -> new_ltEs8(xwv28001, xwv29001) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, app(app(ty_@2, cch), cda)) -> new_ltEs12(xwv28002, xwv29002, cch, cda) 27.70/11.38 new_compare17(xwv28000, xwv29000, True, bcf, bcg) -> LT 27.70/11.38 new_compare18(xwv28000, xwv29000, True, bch, bda) -> LT 27.70/11.38 new_compare1([], [], bce) -> EQ 27.70/11.38 new_lt20(xwv28001, xwv29001, ty_Bool) -> new_lt10(xwv28001, xwv29001) 27.70/11.38 new_esEs9(:(xwv400, xwv401), :(xwv3000, xwv3001), bdb) -> new_asAs(new_esEs19(xwv400, xwv3000, bdb), new_esEs9(xwv401, xwv3001, bdb)) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Int) -> new_ltEs14(xwv28000, xwv29000) 27.70/11.38 new_esEs20(xwv28000, xwv29000, ty_Float) -> new_esEs13(xwv28000, xwv29000) 27.70/11.38 new_esEs20(xwv28000, xwv29000, app(ty_Maybe, ec)) -> new_esEs4(xwv28000, xwv29000, ec) 27.70/11.38 new_compare29(xwv28000, xwv29000, ty_Ordering) -> new_compare12(xwv28000, xwv29000) 27.70/11.38 new_esEs24(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.38 new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) 27.70/11.38 new_primPlusNat1(Zero, Succ(xwv9100)) -> Succ(xwv9100) 27.70/11.38 new_esEs26(xwv402, xwv3002, ty_@0) -> new_esEs8(xwv402, xwv3002) 27.70/11.38 new_lt20(xwv28001, xwv29001, ty_Int) -> new_lt16(xwv28001, xwv29001) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, app(ty_[], cdb)) -> new_ltEs16(xwv28002, xwv29002, cdb) 27.70/11.38 new_compare23(Just(xwv2800), Nothing, False, bee) -> GT 27.70/11.38 new_compare13(Char(xwv28000), Char(xwv29000)) -> new_primCmpNat2(xwv28000, xwv29000) 27.70/11.38 new_esEs17(xwv40, xwv300) -> new_primEqInt(xwv40, xwv300) 27.70/11.38 new_lt20(xwv28001, xwv29001, ty_Float) -> new_lt18(xwv28001, xwv29001) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), ty_@0, bd) -> new_esEs8(xwv400, xwv3000) 27.70/11.38 new_compare6(xwv28000, xwv29000, ec) -> new_compare23(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, ec), ec) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, ty_Integer) -> new_ltEs9(xwv28002, xwv29002) 27.70/11.38 new_primCompAux1(xwv28000, xwv29000, xwv141, bce) -> new_primCompAux0(xwv141, new_compare29(xwv28000, xwv29000, bce)) 27.70/11.38 new_esEs25(xwv401, xwv3001, ty_Bool) -> new_esEs12(xwv401, xwv3001) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, ty_Integer) -> new_ltEs9(xwv2800, xwv2900) 27.70/11.38 new_esEs24(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.38 new_esEs26(xwv402, xwv3002, ty_Int) -> new_esEs17(xwv402, xwv3002) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, app(ty_[], bce)) -> new_ltEs16(xwv2800, xwv2900, bce) 27.70/11.38 new_esEs19(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_[], da)) -> new_esEs9(xwv400, xwv3000, da) 27.70/11.38 new_compare28(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Int) -> new_compare14(new_sr(xwv28000, xwv29001), new_sr(xwv29000, xwv28001)) 27.70/11.38 new_esEs21(xwv28001, xwv29001, app(ty_Maybe, cag)) -> new_esEs4(xwv28001, xwv29001, cag) 27.70/11.38 new_primMulInt(Neg(xwv4010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.38 new_lt14(xwv28000, xwv29000, bch, bda) -> new_esEs15(new_compare30(xwv28000, xwv29000, bch, bda), LT) 27.70/11.38 new_esEs25(xwv401, xwv3001, app(app(ty_@2, chd), che)) -> new_esEs7(xwv401, xwv3001, chd, che) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_@0) -> new_ltEs15(xwv28000, xwv29000) 27.70/11.38 new_lt19(xwv28000, xwv29000, ty_Float) -> new_lt18(xwv28000, xwv29000) 27.70/11.38 new_esEs7(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bfc, bfd) -> new_asAs(new_esEs22(xwv400, xwv3000, bfc), new_esEs23(xwv401, xwv3001, bfd)) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(ty_@2, dd), de)) -> new_esEs7(xwv400, xwv3000, dd, de) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), ty_Bool, bd) -> new_esEs12(xwv400, xwv3000) 27.70/11.38 new_ltEs12(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), hg, hh) -> new_pePe(new_lt8(xwv28000, xwv29000, hg), new_asAs(new_esEs18(xwv28000, xwv29000, hg), new_ltEs18(xwv28001, xwv29001, hh))) 27.70/11.38 new_esEs26(xwv402, xwv3002, ty_Double) -> new_esEs11(xwv402, xwv3002) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Ordering) -> new_ltEs10(xwv28000, xwv29000) 27.70/11.38 new_ltEs8(False, True) -> True 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_Maybe, bgg)) -> new_esEs4(xwv400, xwv3000, bgg) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Float) -> new_ltEs17(xwv28000, xwv29000) 27.70/11.38 new_esEs23(xwv401, xwv3001, app(app(ty_Either, cef), ceg)) -> new_esEs6(xwv401, xwv3001, cef, ceg) 27.70/11.38 new_esEs24(xwv400, xwv3000, app(ty_[], cfg)) -> new_esEs9(xwv400, xwv3000, cfg) 27.70/11.38 new_compare31(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Char) -> new_ltEs13(xwv28000, xwv29000) 27.70/11.38 new_esEs21(xwv28001, xwv29001, app(app(ty_Either, cbc), cbd)) -> new_esEs6(xwv28001, xwv29001, cbc, cbd) 27.70/11.38 new_esEs13(Float(xwv400, xwv401), Float(xwv3000, xwv3001)) -> new_esEs17(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 27.70/11.38 new_esEs26(xwv402, xwv3002, ty_Integer) -> new_esEs10(xwv402, xwv3002) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, ty_Ordering) -> new_ltEs10(xwv28001, xwv29001) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(ty_@2, fh), ga), eh) -> new_ltEs12(xwv28000, xwv29000, fh, ga) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), ty_Int, bd) -> new_esEs17(xwv400, xwv3000) 27.70/11.38 new_compare8(Integer(xwv28000), Integer(xwv29000)) -> new_primCmpInt(xwv28000, xwv29000) 27.70/11.38 new_primMulInt(Pos(xwv4010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.38 new_primMulInt(Neg(xwv4010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.38 new_lt8(xwv28000, xwv29000, app(app(app(ty_@3, bab), bac), bad)) -> new_lt11(xwv28000, xwv29000, bab, bac, bad) 27.70/11.38 new_esEs20(xwv28000, xwv29000, ty_@0) -> new_esEs8(xwv28000, xwv29000) 27.70/11.38 new_compare29(xwv28000, xwv29000, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_compare15(xwv28000, xwv29000, bhe, bhf, bhg) 27.70/11.38 new_compare29(xwv28000, xwv29000, ty_Bool) -> new_compare16(xwv28000, xwv29000) 27.70/11.38 new_primCmpInt(Pos(Succ(xwv2800)), Pos(xwv290)) -> new_primCmpNat0(xwv2800, xwv290) 27.70/11.38 new_esEs15(LT, LT) -> True 27.70/11.38 new_esEs24(xwv400, xwv3000, app(ty_Maybe, cgd)) -> new_esEs4(xwv400, xwv3000, cgd) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(ty_Either, db), dc)) -> new_esEs6(xwv400, xwv3000, db, dc) 27.70/11.38 new_lt9(xwv28000, xwv29000, ec) -> new_esEs15(new_compare6(xwv28000, xwv29000, ec), LT) 27.70/11.38 new_esEs19(xwv400, xwv3000, app(ty_[], bdc)) -> new_esEs9(xwv400, xwv3000, bdc) 27.70/11.38 new_esEs25(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.70/11.38 new_esEs22(xwv400, xwv3000, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs5(xwv400, xwv3000, cea, ceb, cec) 27.70/11.38 new_esEs19(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.38 new_lt8(xwv28000, xwv29000, ty_Double) -> new_lt17(xwv28000, xwv29000) 27.70/11.38 new_sr0(Integer(xwv280000), Integer(xwv290010)) -> Integer(new_primMulInt(xwv280000, xwv290010)) 27.70/11.38 new_esEs18(xwv28000, xwv29000, app(ty_Maybe, baa)) -> new_esEs4(xwv28000, xwv29000, baa) 27.70/11.38 new_esEs21(xwv28001, xwv29001, app(ty_Ratio, cbe)) -> new_esEs14(xwv28001, xwv29001, cbe) 27.70/11.38 new_esEs29(xwv40, xwv300, ty_Char) -> new_esEs16(xwv40, xwv300) 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.38 new_esEs29(xwv40, xwv300, ty_@0) -> new_esEs8(xwv40, xwv300) 27.70/11.38 new_compare24(xwv28000, xwv29000, True, ed, ee, ef) -> EQ 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), app(app(ty_Either, bgc), bgd)) -> new_esEs6(xwv400, xwv3000, bgc, bgd) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.38 new_lt19(xwv28000, xwv29000, app(app(app(ty_@3, ed), ee), ef)) -> new_lt11(xwv28000, xwv29000, ed, ee, ef) 27.70/11.38 new_primCmpNat0(xwv2800, Zero) -> GT 27.70/11.38 new_lt10(xwv28000, xwv29000) -> new_esEs15(new_compare16(xwv28000, xwv29000), LT) 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_Ratio, bhc)) -> new_esEs14(xwv400, xwv3000, bhc) 27.70/11.38 new_primCmpNat2(Zero, Succ(xwv29000)) -> LT 27.70/11.38 new_esEs25(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 27.70/11.38 new_asAs(True, xwv57) -> xwv57 27.70/11.38 new_esEs25(xwv401, xwv3001, app(ty_Ratio, dab)) -> new_esEs14(xwv401, xwv3001, dab) 27.70/11.38 new_esEs26(xwv402, xwv3002, ty_Float) -> new_esEs13(xwv402, xwv3002) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Bool) -> new_ltEs8(xwv28000, xwv29000) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Ordering) -> new_ltEs10(xwv28000, xwv29000) 27.70/11.38 new_esEs10(Integer(xwv400), Integer(xwv3000)) -> new_primEqInt(xwv400, xwv3000) 27.70/11.38 new_lt19(xwv28000, xwv29000, ty_Double) -> new_lt17(xwv28000, xwv29000) 27.70/11.38 new_esEs26(xwv402, xwv3002, ty_Ordering) -> new_esEs15(xwv402, xwv3002) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, ty_Char) -> new_ltEs13(xwv28001, xwv29001) 27.70/11.38 new_ltEs10(LT, LT) -> True 27.70/11.38 new_compare7(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, ty_@0) -> new_ltEs15(xwv28002, xwv29002) 27.70/11.38 new_esEs25(xwv401, xwv3001, app(ty_[], cha)) -> new_esEs9(xwv401, xwv3001, cha) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_Ratio, fg), eh) -> new_ltEs11(xwv28000, xwv29000, fg) 27.70/11.38 new_esEs6(Left(xwv400), Right(xwv3000), cg, bd) -> False 27.70/11.38 new_esEs6(Right(xwv400), Left(xwv3000), cg, bd) -> False 27.70/11.38 new_esEs21(xwv28001, xwv29001, ty_Bool) -> new_esEs12(xwv28001, xwv29001) 27.70/11.38 new_esEs21(xwv28001, xwv29001, ty_Int) -> new_esEs17(xwv28001, xwv29001) 27.70/11.38 new_esEs16(Char(xwv400), Char(xwv3000)) -> new_primEqNat0(xwv400, xwv3000) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_Ratio, hb)) -> new_ltEs11(xwv28000, xwv29000, hb) 27.70/11.38 new_esEs22(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.38 new_esEs26(xwv402, xwv3002, ty_Bool) -> new_esEs12(xwv402, xwv3002) 27.70/11.38 new_esEs24(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, app(ty_Ratio, ccg)) -> new_ltEs11(xwv28002, xwv29002, ccg) 27.70/11.38 new_esEs18(xwv28000, xwv29000, app(app(ty_@2, bah), bba)) -> new_esEs7(xwv28000, xwv29000, bah, bba) 27.70/11.38 new_esEs20(xwv28000, xwv29000, app(ty_[], hf)) -> new_esEs9(xwv28000, xwv29000, hf) 27.70/11.38 new_ltEs8(True, True) -> True 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_@0) -> new_ltEs15(xwv28000, xwv29000) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, ty_@0) -> new_ltEs15(xwv2800, xwv2900) 27.70/11.38 new_esEs24(xwv400, xwv3000, app(app(ty_@2, cgb), cgc)) -> new_esEs7(xwv400, xwv3000, cgb, cgc) 27.70/11.38 new_compare110(xwv28000, xwv29000, False) -> GT 27.70/11.38 new_lt8(xwv28000, xwv29000, ty_Integer) -> new_lt7(xwv28000, xwv29000) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Int) -> new_ltEs14(xwv28000, xwv29000) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, ty_Int) -> new_ltEs14(xwv28001, xwv29001) 27.70/11.38 new_sr(xwv401, xwv3000) -> new_primMulInt(xwv401, xwv3000) 27.70/11.38 new_esEs12(False, True) -> False 27.70/11.38 new_esEs12(True, False) -> False 27.70/11.38 new_lt20(xwv28001, xwv29001, app(app(ty_Either, cbc), cbd)) -> new_lt12(xwv28001, xwv29001, cbc, cbd) 27.70/11.38 new_esEs23(xwv401, xwv3001, ty_Double) -> new_esEs11(xwv401, xwv3001) 27.70/11.38 new_ltEs7(Nothing, Nothing, bef) -> True 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.38 new_primMulNat0(Zero, Zero) -> Zero 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.38 new_esEs22(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.38 new_esEs12(True, True) -> True 27.70/11.38 new_compare10(xwv28000, xwv29000, False) -> GT 27.70/11.38 new_esEs21(xwv28001, xwv29001, ty_Integer) -> new_esEs10(xwv28001, xwv29001) 27.70/11.38 new_esEs18(xwv28000, xwv29000, ty_@0) -> new_esEs8(xwv28000, xwv29000) 27.70/11.38 new_esEs29(xwv40, xwv300, ty_Int) -> new_esEs17(xwv40, xwv300) 27.70/11.38 new_primCmpInt(Neg(Zero), Neg(Succ(xwv2900))) -> new_primCmpNat0(xwv2900, Zero) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_Maybe, cb), bd) -> new_esEs4(xwv400, xwv3000, cb) 27.70/11.38 new_esEs26(xwv402, xwv3002, app(app(ty_Either, dad), dae)) -> new_esEs6(xwv402, xwv3002, dad, dae) 27.70/11.38 new_ltEs7(Just(xwv28000), Nothing, bef) -> False 27.70/11.38 new_esEs23(xwv401, xwv3001, app(app(ty_@2, ceh), cfa)) -> new_esEs7(xwv401, xwv3001, ceh, cfa) 27.70/11.38 new_compare9(@0, @0) -> EQ 27.70/11.38 new_esEs21(xwv28001, xwv29001, app(ty_[], cbh)) -> new_esEs9(xwv28001, xwv29001, cbh) 27.70/11.38 new_primCmpNat1(Zero, xwv2800) -> LT 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_[], bgb)) -> new_esEs9(xwv400, xwv3000, bgb) 27.70/11.38 new_esEs4(Nothing, Nothing, bfe) -> True 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), ty_Char, bd) -> new_esEs16(xwv400, xwv3000) 27.70/11.38 new_compare29(xwv28000, xwv29000, app(ty_Ratio, cab)) -> new_compare28(xwv28000, xwv29000, cab) 27.70/11.38 new_esEs4(Nothing, Just(xwv3000), bfe) -> False 27.70/11.38 new_esEs4(Just(xwv400), Nothing, bfe) -> False 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_Ratio, dcd)) -> new_ltEs11(xwv28000, xwv29000, dcd) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, app(ty_Ratio, bfb)) -> new_ltEs11(xwv2800, xwv2900, bfb) 27.70/11.38 new_esEs19(xwv400, xwv3000, app(ty_Ratio, bed)) -> new_esEs14(xwv400, xwv3000, bed) 27.70/11.38 new_compare29(xwv28000, xwv29000, ty_Int) -> new_compare14(xwv28000, xwv29000) 27.70/11.38 new_primCmpNat2(Zero, Zero) -> EQ 27.70/11.38 new_lt5(xwv28000, xwv29000, hf) -> new_esEs15(new_compare1(xwv28000, xwv29000, hf), LT) 27.70/11.38 new_lt20(xwv28001, xwv29001, app(ty_Ratio, cbe)) -> new_lt13(xwv28001, xwv29001, cbe) 27.70/11.38 new_esEs21(xwv28001, xwv29001, ty_Char) -> new_esEs16(xwv28001, xwv29001) 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.38 new_lt20(xwv28001, xwv29001, ty_Integer) -> new_lt7(xwv28001, xwv29001) 27.70/11.38 new_esEs29(xwv40, xwv300, app(ty_Ratio, bga)) -> new_esEs14(xwv40, xwv300, bga) 27.70/11.38 new_compare28(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Integer) -> new_compare8(new_sr0(xwv28000, xwv29001), new_sr0(xwv29000, xwv28001)) 27.70/11.38 new_esEs19(xwv400, xwv3000, app(app(ty_Either, bdd), bde)) -> new_esEs6(xwv400, xwv3000, bdd, bde) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_Maybe, df)) -> new_esEs4(xwv400, xwv3000, df) 27.70/11.38 new_esEs25(xwv401, xwv3001, app(app(ty_Either, chb), chc)) -> new_esEs6(xwv401, xwv3001, chb, chc) 27.70/11.38 new_primCompAux0(xwv153, EQ) -> xwv153 27.70/11.38 new_ltEs18(xwv28001, xwv29001, app(ty_Ratio, bca)) -> new_ltEs11(xwv28001, xwv29001, bca) 27.70/11.38 new_lt19(xwv28000, xwv29000, app(ty_Ratio, caf)) -> new_lt13(xwv28000, xwv29000, caf) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, app(ty_Maybe, bef)) -> new_ltEs7(xwv2800, xwv2900, bef) 27.70/11.38 new_primEqInt(Neg(Succ(xwv4000)), Neg(Zero)) -> False 27.70/11.38 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 27.70/11.38 new_lt19(xwv28000, xwv29000, ty_Integer) -> new_lt7(xwv28000, xwv29000) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, ty_@0) -> new_ltEs15(xwv28001, xwv29001) 27.70/11.38 new_esEs20(xwv28000, xwv29000, ty_Char) -> new_esEs16(xwv28000, xwv29000) 27.70/11.38 new_primEqInt(Pos(Succ(xwv4000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 27.70/11.38 new_ltEs10(GT, GT) -> True 27.70/11.38 new_ltEs20(xwv28002, xwv29002, app(app(ty_Either, cce), ccf)) -> new_ltEs6(xwv28002, xwv29002, cce, ccf) 27.70/11.38 new_compare19(xwv117, xwv118, False, dbe) -> GT 27.70/11.38 new_esEs20(xwv28000, xwv29000, app(app(ty_Either, bcf), bcg)) -> new_esEs6(xwv28000, xwv29000, bcf, bcg) 27.70/11.38 new_compare23(Just(xwv2800), Just(xwv2900), False, bee) -> new_compare19(xwv2800, xwv2900, new_ltEs19(xwv2800, xwv2900, bee), bee) 27.70/11.38 new_primEqInt(Pos(Succ(xwv4000)), Neg(xwv3000)) -> False 27.70/11.38 new_primEqInt(Neg(Succ(xwv4000)), Pos(xwv3000)) -> False 27.70/11.38 new_compare29(xwv28000, xwv29000, app(app(ty_Either, bhh), caa)) -> new_compare26(xwv28000, xwv29000, bhh, caa) 27.70/11.38 new_compare14(xwv28, xwv29) -> new_primCmpInt(xwv28, xwv29) 27.70/11.38 new_compare23(Nothing, Just(xwv2900), False, bee) -> LT 27.70/11.38 new_esEs22(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.38 new_esEs27(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.38 new_compare211(xwv28000, xwv29000, True, bch, bda) -> EQ 27.70/11.38 new_ltEs19(xwv2800, xwv2900, app(app(ty_Either, gc), eh)) -> new_ltEs6(xwv2800, xwv2900, gc, eh) 27.70/11.38 new_esEs29(xwv40, xwv300, app(ty_Maybe, bfe)) -> new_esEs4(xwv40, xwv300, bfe) 27.70/11.38 new_esEs22(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.38 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 27.70/11.38 new_ltEs10(LT, EQ) -> True 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(ty_Either, dcb), dcc)) -> new_ltEs6(xwv28000, xwv29000, dcb, dcc) 27.70/11.38 new_lt8(xwv28000, xwv29000, ty_Bool) -> new_lt10(xwv28000, xwv29000) 27.70/11.38 new_compare26(xwv28000, xwv29000, bcf, bcg) -> new_compare27(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bcf, bcg), bcf, bcg) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_@0, eh) -> new_ltEs15(xwv28000, xwv29000) 27.70/11.38 new_primCmpNat1(Succ(xwv2900), xwv2800) -> new_primCmpNat2(xwv2900, xwv2800) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), ty_Float, bd) -> new_esEs13(xwv400, xwv3000) 27.70/11.38 new_esEs19(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.38 new_lt20(xwv28001, xwv29001, ty_Char) -> new_lt15(xwv28001, xwv29001) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_Maybe, dbf)) -> new_ltEs7(xwv28000, xwv29000, dbf) 27.70/11.38 new_esEs15(EQ, EQ) -> True 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Float) -> new_ltEs17(xwv28000, xwv29000) 27.70/11.38 new_esEs23(xwv401, xwv3001, ty_Float) -> new_esEs13(xwv401, xwv3001) 27.70/11.38 new_fsEs(xwv123) -> new_not(new_esEs15(xwv123, GT)) 27.70/11.38 new_esEs19(xwv400, xwv3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(xwv400, xwv3000, bdf, bdg) 27.70/11.38 new_compare23(Nothing, Nothing, False, bee) -> LT 27.70/11.38 new_compare24(xwv28000, xwv29000, False, ed, ee, ef) -> new_compare11(xwv28000, xwv29000, new_ltEs5(xwv28000, xwv29000, ed, ee, ef), ed, ee, ef) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(ty_@2, hc), hd)) -> new_ltEs12(xwv28000, xwv29000, hc, hd) 27.70/11.38 new_primPlusNat0(xwv101, xwv300000) -> new_primPlusNat1(xwv101, Succ(xwv300000)) 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.38 new_compare29(xwv28000, xwv29000, ty_Double) -> new_compare7(xwv28000, xwv29000) 27.70/11.38 new_ltEs6(Right(xwv28000), Left(xwv29000), gc, eh) -> False 27.70/11.38 new_not(False) -> True 27.70/11.38 new_lt20(xwv28001, xwv29001, ty_@0) -> new_lt4(xwv28001, xwv29001) 27.70/11.38 new_compare1([], :(xwv29000, xwv29001), bce) -> LT 27.70/11.38 new_esEs21(xwv28001, xwv29001, ty_@0) -> new_esEs8(xwv28001, xwv29001) 27.70/11.38 new_esEs11(Double(xwv400, xwv401), Double(xwv3000, xwv3001)) -> new_esEs17(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 27.70/11.38 new_lt19(xwv28000, xwv29000, app(ty_[], hf)) -> new_lt5(xwv28000, xwv29000, hf) 27.70/11.38 new_primCmpInt(Neg(Succ(xwv2800)), Neg(xwv290)) -> new_primCmpNat1(xwv290, xwv2800) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.38 new_lt13(xwv28000, xwv29000, caf) -> new_esEs15(new_compare28(xwv28000, xwv29000, caf), LT) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Char) -> new_ltEs13(xwv28000, xwv29000) 27.70/11.38 new_lt12(xwv28000, xwv29000, bcf, bcg) -> new_esEs15(new_compare26(xwv28000, xwv29000, bcf, bcg), LT) 27.70/11.38 new_esEs29(xwv40, xwv300, app(app(ty_Either, cg), bd)) -> new_esEs6(xwv40, xwv300, cg, bd) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_[], he)) -> new_ltEs16(xwv28000, xwv29000, he) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_[], be), bd) -> new_esEs9(xwv400, xwv3000, be) 27.70/11.38 new_esEs20(xwv28000, xwv29000, ty_Bool) -> new_esEs12(xwv28000, xwv29000) 27.70/11.38 new_esEs22(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.38 new_ltEs10(EQ, GT) -> True 27.70/11.38 new_lt17(xwv28000, xwv29000) -> new_esEs15(new_compare7(xwv28000, xwv29000), LT) 27.70/11.38 new_compare25(xwv28000, xwv29000, True) -> EQ 27.70/11.38 new_compare27(xwv28000, xwv29000, True, bcf, bcg) -> EQ 27.70/11.38 new_compare27(xwv28000, xwv29000, False, bcf, bcg) -> new_compare17(xwv28000, xwv29000, new_ltEs6(xwv28000, xwv29000, bcf, bcg), bcf, bcg) 27.70/11.38 new_esEs29(xwv40, xwv300, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xwv40, xwv300, bfc, bfd) 27.70/11.38 new_ltEs10(EQ, EQ) -> True 27.70/11.38 new_esEs19(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.38 new_esEs29(xwv40, xwv300, ty_Bool) -> new_esEs12(xwv40, xwv300) 27.70/11.38 new_esEs5(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bff, bfg, bfh) -> new_asAs(new_esEs24(xwv400, xwv3000, bff), new_asAs(new_esEs25(xwv401, xwv3001, bfg), new_esEs26(xwv402, xwv3002, bfh))) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, fa), fb), fc), eh) -> new_ltEs5(xwv28000, xwv29000, fa, fb, fc) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, ty_Float) -> new_ltEs17(xwv28001, xwv29001) 27.70/11.38 new_lt20(xwv28001, xwv29001, app(ty_[], cbh)) -> new_lt5(xwv28001, xwv29001, cbh) 27.70/11.38 new_esEs23(xwv401, xwv3001, ty_Ordering) -> new_esEs15(xwv401, xwv3001) 27.70/11.38 new_compare10(xwv28000, xwv29000, True) -> LT 27.70/11.38 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 27.70/11.38 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 27.70/11.38 new_lt20(xwv28001, xwv29001, ty_Double) -> new_lt17(xwv28001, xwv29001) 27.70/11.38 new_primPlusNat1(Zero, Zero) -> Zero 27.70/11.38 new_lt19(xwv28000, xwv29000, ty_Char) -> new_lt15(xwv28000, xwv29000) 27.70/11.38 new_esEs20(xwv28000, xwv29000, ty_Integer) -> new_esEs10(xwv28000, xwv29000) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Integer, eh) -> new_ltEs9(xwv28000, xwv29000) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.38 new_lt8(xwv28000, xwv29000, ty_Float) -> new_lt18(xwv28000, xwv29000) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.38 new_esEs25(xwv401, xwv3001, app(ty_Maybe, chf)) -> new_esEs4(xwv401, xwv3001, chf) 27.70/11.38 new_lt8(xwv28000, xwv29000, app(ty_Ratio, bag)) -> new_lt13(xwv28000, xwv29000, bag) 27.70/11.38 new_esEs18(xwv28000, xwv29000, ty_Int) -> new_esEs17(xwv28000, xwv29000) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_[], dcg)) -> new_ltEs16(xwv28000, xwv29000, dcg) 27.70/11.38 new_lt4(xwv28000, xwv29000) -> new_esEs15(new_compare9(xwv28000, xwv29000), LT) 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.38 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 27.70/11.38 new_esEs23(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 27.70/11.38 new_lt19(xwv28000, xwv29000, ty_@0) -> new_lt4(xwv28000, xwv29000) 27.70/11.38 new_esEs18(xwv28000, xwv29000, app(app(ty_Either, bae), baf)) -> new_esEs6(xwv28000, xwv29000, bae, baf) 27.70/11.38 new_primMulNat0(Succ(xwv40100), Succ(xwv300000)) -> new_primPlusNat0(new_primMulNat0(xwv40100, Succ(xwv300000)), xwv300000) 27.70/11.38 new_compare7(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.38 new_compare7(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.38 new_esEs22(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.38 new_ltEs15(xwv2800, xwv2900) -> new_fsEs(new_compare9(xwv2800, xwv2900)) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Integer) -> new_ltEs9(xwv28000, xwv29000) 27.70/11.38 new_primCmpInt(Pos(Zero), Pos(Succ(xwv2900))) -> new_primCmpNat1(Zero, xwv2900) 27.70/11.38 new_esEs26(xwv402, xwv3002, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs5(xwv402, xwv3002, dba, dbb, dbc) 27.70/11.38 new_esEs21(xwv28001, xwv29001, app(app(ty_@2, cbf), cbg)) -> new_esEs7(xwv28001, xwv29001, cbf, cbg) 27.70/11.38 new_esEs19(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.38 new_esEs24(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.38 new_esEs26(xwv402, xwv3002, app(ty_Ratio, dbd)) -> new_esEs14(xwv402, xwv3002, dbd) 27.70/11.38 new_lt20(xwv28001, xwv29001, app(app(ty_@2, cbf), cbg)) -> new_lt14(xwv28001, xwv29001, cbf, cbg) 27.70/11.38 new_esEs21(xwv28001, xwv29001, ty_Ordering) -> new_esEs15(xwv28001, xwv29001) 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), app(app(ty_@2, bge), bgf)) -> new_esEs7(xwv400, xwv3000, bge, bgf) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(ty_@2, dce), dcf)) -> new_ltEs12(xwv28000, xwv29000, dce, dcf) 27.70/11.38 new_esEs29(xwv40, xwv300, ty_Integer) -> new_esEs10(xwv40, xwv300) 27.70/11.38 new_compare16(xwv28000, xwv29000) -> new_compare25(xwv28000, xwv29000, new_esEs12(xwv28000, xwv29000)) 27.70/11.38 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 27.70/11.38 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 27.70/11.38 new_esEs9([], [], bdb) -> True 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.38 new_esEs22(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.38 new_compare25(xwv28000, xwv29000, False) -> new_compare10(xwv28000, xwv29000, new_ltEs8(xwv28000, xwv29000)) 27.70/11.38 new_esEs29(xwv40, xwv300, app(ty_[], bdb)) -> new_esEs9(xwv40, xwv300, bdb) 27.70/11.38 new_esEs26(xwv402, xwv3002, app(ty_Maybe, dah)) -> new_esEs4(xwv402, xwv3002, dah) 27.70/11.38 new_primEqNat0(Zero, Zero) -> True 27.70/11.38 new_lt19(xwv28000, xwv29000, ty_Ordering) -> new_lt6(xwv28000, xwv29000) 27.70/11.38 new_esEs21(xwv28001, xwv29001, ty_Double) -> new_esEs11(xwv28001, xwv29001) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Double) -> new_ltEs4(xwv28000, xwv29000) 27.70/11.38 new_compare31(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.38 new_compare31(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.38 new_lt15(xwv28000, xwv29000) -> new_esEs15(new_compare13(xwv28000, xwv29000), LT) 27.70/11.38 new_ltEs10(LT, GT) -> True 27.70/11.38 new_asAs(False, xwv57) -> False 27.70/11.38 new_esEs19(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.38 new_ltEs13(xwv2800, xwv2900) -> new_fsEs(new_compare13(xwv2800, xwv2900)) 27.70/11.38 new_esEs19(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, ty_Int) -> new_ltEs14(xwv2800, xwv2900) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, ty_Float) -> new_ltEs17(xwv28002, xwv29002) 27.70/11.38 new_lt20(xwv28001, xwv29001, ty_Ordering) -> new_lt6(xwv28001, xwv29001) 27.70/11.38 new_esEs25(xwv401, xwv3001, ty_Float) -> new_esEs13(xwv401, xwv3001) 27.70/11.38 new_ltEs6(Left(xwv28000), Right(xwv29000), gc, eh) -> True 27.70/11.38 new_ltEs19(xwv2800, xwv2900, ty_Ordering) -> new_ltEs10(xwv2800, xwv2900) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, ty_Ordering) -> new_ltEs10(xwv28002, xwv29002) 27.70/11.38 new_esEs18(xwv28000, xwv29000, ty_Integer) -> new_esEs10(xwv28000, xwv29000) 27.70/11.38 new_ltEs5(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), beg, beh, bfa) -> new_pePe(new_lt19(xwv28000, xwv29000, beg), new_asAs(new_esEs20(xwv28000, xwv29000, beg), new_pePe(new_lt20(xwv28001, xwv29001, beh), new_asAs(new_esEs21(xwv28001, xwv29001, beh), new_ltEs20(xwv28002, xwv29002, bfa))))) 27.70/11.38 new_lt19(xwv28000, xwv29000, app(app(ty_@2, bch), bda)) -> new_lt14(xwv28000, xwv29000, bch, bda) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.38 new_lt8(xwv28000, xwv29000, app(ty_Maybe, baa)) -> new_lt9(xwv28000, xwv29000, baa) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.38 new_compare29(xwv28000, xwv29000, ty_Integer) -> new_compare8(xwv28000, xwv29000) 27.70/11.38 new_esEs20(xwv28000, xwv29000, ty_Int) -> new_esEs17(xwv28000, xwv29000) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, ty_Float) -> new_ltEs17(xwv2800, xwv2900) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, ty_Int) -> new_ltEs14(xwv28002, xwv29002) 27.70/11.38 new_esEs18(xwv28000, xwv29000, app(ty_[], bbb)) -> new_esEs9(xwv28000, xwv29000, bbb) 27.70/11.38 new_esEs20(xwv28000, xwv29000, app(app(ty_@2, bch), bda)) -> new_esEs7(xwv28000, xwv29000, bch, bda) 27.70/11.38 27.70/11.38 The set Q consists of the following terms: 27.70/11.38 27.70/11.38 new_compare29(x0, x1, ty_Int) 27.70/11.38 new_esEs22(x0, x1, ty_Float) 27.70/11.38 new_esEs21(x0, x1, ty_Double) 27.70/11.38 new_esEs19(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_esEs4(Just(x0), Just(x1), ty_Ordering) 27.70/11.38 new_pePe(False, x0) 27.70/11.38 new_primCompAux0(x0, EQ) 27.70/11.38 new_esEs26(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_compare1([], :(x0, x1), x2) 27.70/11.38 new_esEs4(Just(x0), Just(x1), ty_Double) 27.70/11.38 new_primPlusNat1(Zero, Zero) 27.70/11.38 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 27.70/11.38 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 27.70/11.38 new_primPlusNat1(Succ(x0), Zero) 27.70/11.38 new_ltEs10(LT, LT) 27.70/11.38 new_compare29(x0, x1, ty_Char) 27.70/11.38 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 27.70/11.38 new_esEs21(x0, x1, ty_Int) 27.70/11.38 new_sr(x0, x1) 27.70/11.38 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_esEs20(x0, x1, ty_Double) 27.70/11.38 new_ltEs19(x0, x1, app(ty_[], x2)) 27.70/11.38 new_primEqInt(Pos(Zero), Pos(Zero)) 27.70/11.38 new_esEs4(Just(x0), Nothing, x1) 27.70/11.38 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 27.70/11.38 new_esEs16(Char(x0), Char(x1)) 27.70/11.38 new_primCmpNat2(Zero, Succ(x0)) 27.70/11.38 new_esEs17(x0, x1) 27.70/11.38 new_compare13(Char(x0), Char(x1)) 27.70/11.38 new_esEs28(x0, x1, ty_Int) 27.70/11.38 new_lt19(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_ltEs15(x0, x1) 27.70/11.38 new_esEs24(x0, x1, ty_Float) 27.70/11.38 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 27.70/11.38 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_lt8(x0, x1, ty_Char) 27.70/11.38 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_esEs20(x0, x1, ty_Ordering) 27.70/11.38 new_esEs18(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_esEs21(x0, x1, ty_Ordering) 27.70/11.38 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 27.70/11.38 new_compare29(x0, x1, ty_Ordering) 27.70/11.38 new_primEqInt(Neg(Zero), Neg(Zero)) 27.70/11.38 new_esEs25(x0, x1, ty_Float) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 27.70/11.38 new_compare17(x0, x1, True, x2, x3) 27.70/11.38 new_esEs15(EQ, GT) 27.70/11.38 new_esEs15(GT, EQ) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 27.70/11.38 new_lt20(x0, x1, ty_Ordering) 27.70/11.38 new_esEs15(LT, LT) 27.70/11.38 new_esEs12(False, True) 27.70/11.38 new_esEs12(True, False) 27.70/11.38 new_esEs29(x0, x1, app(ty_[], x2)) 27.70/11.38 new_compare210(x0, x1, True) 27.70/11.38 new_compare28(:%(x0, x1), :%(x2, x3), ty_Int) 27.70/11.38 new_esEs29(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_ltEs13(x0, x1) 27.70/11.38 new_asAs(True, x0) 27.70/11.38 new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 27.70/11.38 new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 27.70/11.38 new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 27.70/11.38 new_compare14(x0, x1) 27.70/11.38 new_ltEs8(False, False) 27.70/11.38 new_compare211(x0, x1, True, x2, x3) 27.70/11.38 new_lt20(x0, x1, ty_Double) 27.70/11.38 new_compare29(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_esEs21(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_ltEs10(GT, EQ) 27.70/11.38 new_ltEs10(EQ, GT) 27.70/11.38 new_lt8(x0, x1, ty_Int) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), ty_Float) 27.70/11.38 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 27.70/11.38 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_lt8(x0, x1, ty_@0) 27.70/11.38 new_compare29(x0, x1, ty_Double) 27.70/11.38 new_esEs25(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_ltEs18(x0, x1, ty_Double) 27.70/11.38 new_compare27(x0, x1, True, x2, x3) 27.70/11.38 new_compare29(x0, x1, ty_Bool) 27.70/11.38 new_primEqInt(Pos(Zero), Neg(Zero)) 27.70/11.38 new_primEqInt(Neg(Zero), Pos(Zero)) 27.70/11.38 new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 27.70/11.38 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 27.70/11.38 new_ltEs7(Nothing, Nothing, x0) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 27.70/11.38 new_esEs25(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 27.70/11.38 new_esEs24(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 27.70/11.38 new_compare29(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 27.70/11.38 new_compare15(x0, x1, x2, x3, x4) 27.70/11.38 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_compare10(x0, x1, False) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 27.70/11.38 new_primCmpNat0(x0, Succ(x1)) 27.70/11.38 new_lt15(x0, x1) 27.70/11.38 new_lt20(x0, x1, app(ty_[], x2)) 27.70/11.38 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_compare110(x0, x1, True) 27.70/11.38 new_esEs29(x0, x1, ty_Int) 27.70/11.38 new_primMulInt(Pos(x0), Pos(x1)) 27.70/11.38 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 27.70/11.38 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_lt12(x0, x1, x2, x3) 27.70/11.38 new_esEs19(x0, x1, ty_Ordering) 27.70/11.38 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_compare29(x0, x1, ty_Integer) 27.70/11.38 new_esEs22(x0, x1, ty_Bool) 27.70/11.38 new_primMulInt(Pos(x0), Neg(x1)) 27.70/11.38 new_primMulInt(Neg(x0), Pos(x1)) 27.70/11.38 new_esEs24(x0, x1, ty_@0) 27.70/11.38 new_ltEs10(EQ, LT) 27.70/11.38 new_ltEs10(GT, GT) 27.70/11.38 new_ltEs10(LT, EQ) 27.70/11.38 new_esEs21(x0, x1, ty_Bool) 27.70/11.38 new_esEs23(x0, x1, ty_Integer) 27.70/11.38 new_lt13(x0, x1, x2) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 27.70/11.38 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 27.70/11.38 new_esEs15(LT, GT) 27.70/11.38 new_esEs15(GT, LT) 27.70/11.38 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 27.70/11.38 new_esEs29(x0, x1, ty_Char) 27.70/11.38 new_ltEs19(x0, x1, ty_Float) 27.70/11.38 new_esEs19(x0, x1, ty_Int) 27.70/11.38 new_esEs4(Nothing, Nothing, x0) 27.70/11.38 new_esEs23(x0, x1, ty_Bool) 27.70/11.38 new_compare1(:(x0, x1), [], x2) 27.70/11.38 new_primCompAux0(x0, LT) 27.70/11.38 new_sr0(Integer(x0), Integer(x1)) 27.70/11.38 new_esEs20(x0, x1, ty_@0) 27.70/11.38 new_compare27(x0, x1, False, x2, x3) 27.70/11.38 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_ltEs19(x0, x1, ty_Char) 27.70/11.38 new_esEs18(x0, x1, ty_Double) 27.70/11.38 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 27.70/11.38 new_esEs18(x0, x1, ty_Ordering) 27.70/11.38 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 27.70/11.38 new_esEs25(x0, x1, ty_@0) 27.70/11.38 new_lt17(x0, x1) 27.70/11.38 new_compare8(Integer(x0), Integer(x1)) 27.70/11.38 new_lt8(x0, x1, ty_Double) 27.70/11.38 new_lt20(x0, x1, ty_Char) 27.70/11.38 new_esEs26(x0, x1, ty_Integer) 27.70/11.38 new_esEs29(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_compare29(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_esEs4(Just(x0), Just(x1), ty_Bool) 27.70/11.38 new_ltEs19(x0, x1, ty_Int) 27.70/11.38 new_compare28(:%(x0, x1), :%(x2, x3), ty_Integer) 27.70/11.38 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 27.70/11.38 new_primCompAux1(x0, x1, x2, x3) 27.70/11.38 new_esEs19(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_lt20(x0, x1, ty_Int) 27.70/11.38 new_compare29(x0, x1, ty_@0) 27.70/11.38 new_esEs19(x0, x1, ty_Float) 27.70/11.38 new_esEs25(x0, x1, ty_Integer) 27.70/11.38 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_primCmpInt(Neg(Zero), Neg(Zero)) 27.70/11.38 new_ltEs6(Right(x0), Left(x1), x2, x3) 27.70/11.38 new_ltEs20(x0, x1, ty_Float) 27.70/11.38 new_ltEs6(Left(x0), Right(x1), x2, x3) 27.70/11.38 new_compare23(Nothing, Just(x0), False, x1) 27.70/11.38 new_compare23(Nothing, Nothing, False, x0) 27.70/11.38 new_esEs23(x0, x1, app(ty_[], x2)) 27.70/11.38 new_esEs27(x0, x1, ty_Int) 27.70/11.38 new_esEs26(x0, x1, ty_Float) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), ty_Double) 27.70/11.38 new_compare210(x0, x1, False) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 27.70/11.38 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_esEs23(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_ltEs14(x0, x1) 27.70/11.38 new_esEs26(x0, x1, ty_Bool) 27.70/11.38 new_primCmpInt(Pos(Zero), Neg(Zero)) 27.70/11.38 new_primCmpInt(Neg(Zero), Pos(Zero)) 27.70/11.38 new_esEs20(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_esEs20(x0, x1, app(ty_[], x2)) 27.70/11.38 new_esEs27(x0, x1, ty_Integer) 27.70/11.38 new_esEs22(x0, x1, ty_Integer) 27.70/11.38 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_lt8(x0, x1, app(ty_[], x2)) 27.70/11.38 new_compare29(x0, x1, app(ty_[], x2)) 27.70/11.38 new_lt14(x0, x1, x2, x3) 27.70/11.38 new_esEs21(x0, x1, ty_Char) 27.70/11.38 new_esEs21(x0, x1, ty_Integer) 27.70/11.38 new_ltEs8(True, False) 27.70/11.38 new_ltEs8(False, True) 27.70/11.38 new_esEs4(Just(x0), Just(x1), ty_Char) 27.70/11.38 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 27.70/11.38 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_lt5(x0, x1, x2) 27.70/11.38 new_lt20(x0, x1, ty_Float) 27.70/11.38 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 27.70/11.38 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 27.70/11.38 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 27.70/11.38 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 27.70/11.38 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_lt19(x0, x1, ty_Double) 27.70/11.38 new_compare11(x0, x1, False, x2, x3, x4) 27.70/11.38 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 27.70/11.38 new_compare29(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 27.70/11.38 new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 27.70/11.38 new_lt20(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_esEs29(x0, x1, ty_Ordering) 27.70/11.38 new_esEs19(x0, x1, ty_Char) 27.70/11.38 new_esEs23(x0, x1, ty_Float) 27.70/11.38 new_esEs9(:(x0, x1), [], x2) 27.70/11.38 new_ltEs18(x0, x1, ty_Ordering) 27.70/11.38 new_esEs4(Just(x0), Just(x1), ty_Int) 27.70/11.38 new_compare19(x0, x1, False, x2) 27.70/11.38 new_lt19(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_esEs4(Just(x0), Just(x1), ty_Float) 27.70/11.38 new_esEs26(x0, x1, app(ty_[], x2)) 27.70/11.38 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 27.70/11.38 new_lt19(x0, x1, ty_@0) 27.70/11.38 new_esEs29(x0, x1, ty_Integer) 27.70/11.38 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 27.70/11.38 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 27.70/11.38 new_esEs22(x0, x1, ty_Ordering) 27.70/11.38 new_lt20(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_primCmpNat2(Succ(x0), Zero) 27.70/11.38 new_esEs24(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_esEs23(x0, x1, ty_Int) 27.70/11.38 new_lt19(x0, x1, ty_Int) 27.70/11.38 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_esEs22(x0, x1, ty_Double) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), ty_Char) 27.70/11.38 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_primCmpNat2(Succ(x0), Succ(x1)) 27.70/11.38 new_esEs21(x0, x1, ty_Float) 27.70/11.38 new_esEs19(x0, x1, ty_Bool) 27.70/11.38 new_lt19(x0, x1, app(ty_[], x2)) 27.70/11.38 new_compare25(x0, x1, False) 27.70/11.38 new_ltEs20(x0, x1, ty_Char) 27.70/11.38 new_esEs26(x0, x1, ty_Char) 27.70/11.38 new_esEs25(x0, x1, ty_Ordering) 27.70/11.38 new_lt11(x0, x1, x2, x3, x4) 27.70/11.38 new_ltEs18(x0, x1, ty_Integer) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 27.70/11.38 new_primMulNat0(Zero, Zero) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 27.70/11.38 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 27.70/11.38 new_ltEs19(x0, x1, ty_Integer) 27.70/11.38 new_esEs24(x0, x1, ty_Double) 27.70/11.38 new_primEqNat0(Succ(x0), Zero) 27.70/11.38 new_esEs15(EQ, EQ) 27.70/11.38 new_primEqNat0(Succ(x0), Succ(x1)) 27.70/11.38 new_esEs25(x0, x1, ty_Int) 27.70/11.38 new_ltEs18(x0, x1, ty_Bool) 27.70/11.38 new_esEs23(x0, x1, ty_Char) 27.70/11.38 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_ltEs19(x0, x1, ty_Bool) 27.70/11.38 new_esEs26(x0, x1, ty_Int) 27.70/11.38 new_lt20(x0, x1, ty_Integer) 27.70/11.38 new_ltEs10(EQ, EQ) 27.70/11.38 new_ltEs7(Just(x0), Nothing, x1) 27.70/11.38 new_esEs19(x0, x1, ty_Integer) 27.70/11.38 new_compare9(@0, @0) 27.70/11.38 new_ltEs19(x0, x1, ty_@0) 27.70/11.38 new_compare110(x0, x1, False) 27.70/11.38 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_ltEs20(x0, x1, ty_Int) 27.70/11.38 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 27.70/11.38 new_lt4(x0, x1) 27.70/11.38 new_esEs24(x0, x1, ty_Ordering) 27.70/11.38 new_esEs19(x0, x1, ty_@0) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 27.70/11.38 new_lt8(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_compare29(x0, x1, ty_Float) 27.70/11.38 new_lt8(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_esEs18(x0, x1, ty_Char) 27.70/11.38 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 27.70/11.38 new_primCmpNat2(Zero, Zero) 27.70/11.38 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 27.70/11.38 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 27.70/11.38 new_esEs18(x0, x1, ty_@0) 27.70/11.38 new_compare6(x0, x1, x2) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 27.70/11.38 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_lt10(x0, x1) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), ty_Int) 27.70/11.38 new_compare24(x0, x1, False, x2, x3, x4) 27.70/11.38 new_asAs(False, x0) 27.70/11.38 new_esEs29(x0, x1, ty_Bool) 27.70/11.38 new_esEs23(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 27.70/11.38 new_primEqNat0(Zero, Succ(x0)) 27.70/11.38 new_not(True) 27.70/11.38 new_lt20(x0, x1, ty_Bool) 27.70/11.38 new_esEs22(x0, x1, ty_Char) 27.70/11.38 new_ltEs10(GT, LT) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), ty_@0) 27.70/11.38 new_ltEs10(LT, GT) 27.70/11.38 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 27.70/11.38 new_esEs22(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_lt8(x0, x1, ty_Float) 27.70/11.38 new_esEs12(False, False) 27.70/11.38 new_ltEs20(x0, x1, ty_Double) 27.70/11.38 new_esEs22(x0, x1, app(ty_[], x2)) 27.70/11.38 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 27.70/11.38 new_ltEs20(x0, x1, ty_@0) 27.70/11.38 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_esEs20(x0, x1, ty_Integer) 27.70/11.38 new_esEs26(x0, x1, ty_Ordering) 27.70/11.38 new_ltEs4(x0, x1) 27.70/11.38 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 27.70/11.38 new_esEs9([], [], x0) 27.70/11.38 new_esEs18(x0, x1, ty_Integer) 27.70/11.38 new_compare18(x0, x1, True, x2, x3) 27.70/11.38 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_esEs25(x0, x1, ty_Char) 27.70/11.38 new_primMulNat0(Zero, Succ(x0)) 27.70/11.38 new_primCmpNat0(x0, Zero) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 27.70/11.38 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 27.70/11.38 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 27.70/11.38 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 27.70/11.38 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 27.70/11.38 new_esEs29(x0, x1, ty_Float) 27.70/11.38 new_ltEs16(x0, x1, x2) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 27.70/11.38 new_esEs18(x0, x1, ty_Bool) 27.70/11.38 new_esEs22(x0, x1, ty_Int) 27.70/11.38 new_primPlusNat1(Zero, Succ(x0)) 27.70/11.38 new_esEs20(x0, x1, ty_Bool) 27.70/11.38 new_compare23(x0, x1, True, x2) 27.70/11.38 new_ltEs7(Nothing, Just(x0), x1) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 27.70/11.38 new_lt6(x0, x1) 27.70/11.38 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 27.70/11.38 new_esEs20(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_esEs4(Just(x0), Just(x1), ty_Integer) 27.70/11.38 new_ltEs18(x0, x1, ty_Char) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 27.70/11.38 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 27.70/11.38 new_esEs25(x0, x1, ty_Double) 27.70/11.38 new_compare17(x0, x1, False, x2, x3) 27.70/11.38 new_ltEs18(x0, x1, ty_@0) 27.70/11.38 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_esEs25(x0, x1, ty_Bool) 27.70/11.38 new_esEs29(x0, x1, ty_@0) 27.70/11.38 new_esEs21(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_esEs26(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_lt18(x0, x1) 27.70/11.38 new_esEs24(x0, x1, app(ty_[], x2)) 27.70/11.38 new_esEs9([], :(x0, x1), x2) 27.70/11.38 new_lt19(x0, x1, ty_Ordering) 27.70/11.38 new_esEs22(x0, x1, ty_@0) 27.70/11.38 new_ltEs18(x0, x1, ty_Int) 27.70/11.38 new_esEs23(x0, x1, ty_Ordering) 27.70/11.38 new_ltEs20(x0, x1, app(ty_[], x2)) 27.70/11.38 new_ltEs20(x0, x1, ty_Bool) 27.70/11.38 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 27.70/11.38 new_primCmpInt(Pos(Zero), Pos(Zero)) 27.70/11.38 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 27.70/11.38 new_ltEs11(x0, x1, x2) 27.70/11.38 new_esEs9(:(x0, x1), :(x2, x3), x4) 27.70/11.38 new_pePe(True, x0) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), ty_Integer) 27.70/11.38 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 27.70/11.38 new_ltEs19(x0, x1, ty_Ordering) 27.70/11.38 new_compare25(x0, x1, True) 27.70/11.38 new_primMulInt(Neg(x0), Neg(x1)) 27.70/11.38 new_lt19(x0, x1, ty_Integer) 27.70/11.38 new_esEs6(Left(x0), Right(x1), x2, x3) 27.70/11.38 new_esEs6(Right(x0), Left(x1), x2, x3) 27.70/11.38 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 27.70/11.38 new_compare12(x0, x1) 27.70/11.38 new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 27.70/11.38 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 27.70/11.38 new_esEs18(x0, x1, ty_Float) 27.70/11.38 new_ltEs18(x0, x1, ty_Float) 27.70/11.38 new_primMulNat0(Succ(x0), Succ(x1)) 27.70/11.38 new_ltEs19(x0, x1, ty_Double) 27.70/11.38 new_compare11(x0, x1, True, x2, x3, x4) 27.70/11.38 new_esEs15(GT, GT) 27.70/11.38 new_primCmpNat1(Zero, x0) 27.70/11.38 new_esEs29(x0, x1, ty_Double) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 27.70/11.38 new_esEs28(x0, x1, ty_Integer) 27.70/11.38 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_esEs15(LT, EQ) 27.70/11.38 new_esEs15(EQ, LT) 27.70/11.38 new_lt19(x0, x1, ty_Bool) 27.70/11.38 new_primPlusNat0(x0, x1) 27.70/11.38 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 27.70/11.38 new_esEs20(x0, x1, ty_Char) 27.70/11.38 new_lt20(x0, x1, ty_@0) 27.70/11.38 new_lt16(x0, x1) 27.70/11.38 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 27.70/11.38 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 27.70/11.38 new_esEs21(x0, x1, ty_@0) 27.70/11.38 new_compare16(x0, x1) 27.70/11.38 new_fsEs(x0) 27.70/11.38 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_esEs24(x0, x1, ty_Integer) 27.70/11.38 new_primPlusNat1(Succ(x0), Succ(x1)) 27.70/11.38 new_compare211(x0, x1, False, x2, x3) 27.70/11.38 new_compare19(x0, x1, True, x2) 27.70/11.38 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_esEs18(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_esEs18(x0, x1, app(ty_[], x2)) 27.70/11.38 new_ltEs20(x0, x1, ty_Integer) 27.70/11.38 new_esEs8(@0, @0) 27.70/11.38 new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 27.70/11.38 new_esEs19(x0, x1, app(ty_[], x2)) 27.70/11.38 new_esEs18(x0, x1, ty_Int) 27.70/11.38 new_esEs20(x0, x1, ty_Int) 27.70/11.38 new_primEqNat0(Zero, Zero) 27.70/11.38 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 27.70/11.38 new_esEs26(x0, x1, ty_Double) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 27.70/11.38 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 27.70/11.38 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_primCmpNat1(Succ(x0), x1) 27.70/11.38 new_esEs12(True, True) 27.70/11.38 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 27.70/11.38 new_esEs10(Integer(x0), Integer(x1)) 27.70/11.38 new_not(False) 27.70/11.38 new_esEs24(x0, x1, ty_Char) 27.70/11.38 new_lt8(x0, x1, ty_Bool) 27.70/11.38 new_esEs26(x0, x1, ty_@0) 27.70/11.38 new_compare10(x0, x1, True) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), ty_Bool) 27.70/11.38 new_ltEs9(x0, x1) 27.70/11.38 new_compare1([], [], x0) 27.70/11.38 new_ltEs20(x0, x1, ty_Ordering) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 27.70/11.38 new_esEs24(x0, x1, ty_Int) 27.70/11.38 new_esEs13(Float(x0, x1), Float(x2, x3)) 27.70/11.38 new_primCompAux0(x0, GT) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 27.70/11.38 new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 27.70/11.38 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_primMulNat0(Succ(x0), Zero) 27.70/11.38 new_ltEs18(x0, x1, app(ty_[], x2)) 27.70/11.38 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_esEs23(x0, x1, ty_Double) 27.70/11.38 new_ltEs8(True, True) 27.70/11.38 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_esEs20(x0, x1, ty_Float) 27.70/11.38 new_lt7(x0, x1) 27.70/11.38 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_esEs25(x0, x1, app(ty_[], x2)) 27.70/11.38 new_lt8(x0, x1, ty_Ordering) 27.70/11.38 new_lt9(x0, x1, x2) 27.70/11.38 new_lt19(x0, x1, ty_Float) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 27.70/11.38 new_lt8(x0, x1, ty_Integer) 27.70/11.38 new_compare23(Just(x0), Just(x1), False, x2) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 27.70/11.38 new_compare23(Just(x0), Nothing, False, x1) 27.70/11.38 new_compare18(x0, x1, False, x2, x3) 27.70/11.38 new_lt19(x0, x1, ty_Char) 27.70/11.38 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_esEs14(:%(x0, x1), :%(x2, x3), x4) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 27.70/11.38 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 27.70/11.38 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 27.70/11.38 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 27.70/11.38 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 27.70/11.38 new_esEs19(x0, x1, ty_Double) 27.70/11.38 new_esEs22(x0, x1, app(ty_Maybe, x2)) 27.70/11.38 new_esEs21(x0, x1, app(ty_[], x2)) 27.70/11.38 new_compare26(x0, x1, x2, x3) 27.70/11.38 new_esEs23(x0, x1, ty_@0) 27.70/11.38 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_esEs11(Double(x0, x1), Double(x2, x3)) 27.70/11.38 new_compare24(x0, x1, True, x2, x3, x4) 27.70/11.38 new_compare1(:(x0, x1), :(x2, x3), x4) 27.70/11.38 new_esEs4(Just(x0), Just(x1), ty_@0) 27.70/11.38 new_ltEs17(x0, x1) 27.70/11.38 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 27.70/11.38 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 27.70/11.38 new_esEs4(Nothing, Just(x0), x1) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 27.70/11.38 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 27.70/11.38 new_compare30(x0, x1, x2, x3) 27.70/11.38 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 27.70/11.38 new_esEs24(x0, x1, ty_Bool) 27.70/11.38 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 27.70/11.38 27.70/11.38 We have to consider all minimal (P,Q,R)-chains. 27.70/11.38 ---------------------------------------- 27.70/11.38 27.70/11.38 (31) TransformationProof (EQUIVALENT) 27.70/11.38 By rewriting [LPAR04] the rule new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(GT, GT), h, ba) at position [5] we obtained the following new rules [LPAR04]: 27.70/11.38 27.70/11.38 (new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, True, h, ba),new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, True, h, ba)) 27.70/11.38 27.70/11.38 27.70/11.38 ---------------------------------------- 27.70/11.38 27.70/11.38 (32) 27.70/11.38 Obligation: 27.70/11.38 Q DP problem: 27.70/11.38 The TRS P consists of the following rules: 27.70/11.38 27.70/11.38 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bb, bc) -> new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs15(new_compare23(Just(xwv18), Just(xwv13), new_esEs4(Just(xwv18), Just(xwv13), bb), bb), LT), bb, bc) 27.70/11.38 new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv16, Just(xwv18), bb, bc) 27.70/11.38 new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(new_compare23(Just(xwv40), Just(xwv300), new_esEs29(xwv40, xwv300, h), h), GT), h, ba) 27.70/11.38 new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv17, Just(xwv18), bb, bc) 27.70/11.38 new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, True, h, ba) -> new_delFromFM(xwv34, Just(xwv40), h, ba) 27.70/11.38 new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, True, h, ba) 27.70/11.38 27.70/11.38 The TRS R consists of the following rules: 27.70/11.38 27.70/11.38 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 27.70/11.38 new_primCmpInt(Neg(Succ(xwv2800)), Pos(xwv290)) -> LT 27.70/11.38 new_ltEs19(xwv2800, xwv2900, ty_Double) -> new_ltEs4(xwv2800, xwv2900) 27.70/11.38 new_pePe(True, xwv131) -> True 27.70/11.38 new_esEs24(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.38 new_compare29(xwv28000, xwv29000, app(app(ty_@2, cac), cad)) -> new_compare30(xwv28000, xwv29000, cac, cad) 27.70/11.38 new_ltEs14(xwv2800, xwv2900) -> new_fsEs(new_compare14(xwv2800, xwv2900)) 27.70/11.38 new_lt8(xwv28000, xwv29000, app(app(ty_@2, bah), bba)) -> new_lt14(xwv28000, xwv29000, bah, bba) 27.70/11.38 new_compare23(xwv280, xwv290, True, bee) -> EQ 27.70/11.38 new_esEs23(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.70/11.38 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 27.70/11.38 new_ltEs20(xwv28002, xwv29002, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_ltEs5(xwv28002, xwv29002, ccb, ccc, ccd) 27.70/11.38 new_primCmpInt(Pos(Zero), Neg(Succ(xwv2900))) -> GT 27.70/11.38 new_esEs29(xwv40, xwv300, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs5(xwv40, xwv300, bff, bfg, bfh) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Ordering, eh) -> new_ltEs10(xwv28000, xwv29000) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, app(app(ty_@2, hg), hh)) -> new_ltEs12(xwv2800, xwv2900, hg, hh) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Int, eh) -> new_ltEs14(xwv28000, xwv29000) 27.70/11.38 new_esEs18(xwv28000, xwv29000, ty_Float) -> new_esEs13(xwv28000, xwv29000) 27.70/11.38 new_esEs24(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.38 new_esEs20(xwv28000, xwv29000, ty_Double) -> new_esEs11(xwv28000, xwv29000) 27.70/11.38 new_esEs26(xwv402, xwv3002, app(app(ty_@2, daf), dag)) -> new_esEs7(xwv402, xwv3002, daf, dag) 27.70/11.38 new_compare15(xwv28000, xwv29000, ed, ee, ef) -> new_compare24(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, ed, ee, ef), ed, ee, ef) 27.70/11.38 new_esEs18(xwv28000, xwv29000, ty_Bool) -> new_esEs12(xwv28000, xwv29000) 27.70/11.38 new_ltEs10(GT, LT) -> False 27.70/11.38 new_lt7(xwv28000, xwv29000) -> new_esEs15(new_compare8(xwv28000, xwv29000), LT) 27.70/11.38 new_ltEs4(xwv2800, xwv2900) -> new_fsEs(new_compare7(xwv2800, xwv2900)) 27.70/11.38 new_esEs25(xwv401, xwv3001, ty_Double) -> new_esEs11(xwv401, xwv3001) 27.70/11.38 new_primCompAux0(xwv153, GT) -> GT 27.70/11.38 new_esEs22(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.38 new_esEs28(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.70/11.38 new_esEs19(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, ty_Double) -> new_ltEs4(xwv28002, xwv29002) 27.70/11.38 new_compare210(xwv28000, xwv29000, False) -> new_compare110(xwv28000, xwv29000, new_ltEs10(xwv28000, xwv29000)) 27.70/11.38 new_primEqInt(Pos(Succ(xwv4000)), Pos(Zero)) -> False 27.70/11.38 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 27.70/11.38 new_esEs27(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.38 new_ltEs10(EQ, LT) -> False 27.70/11.38 new_compare31(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.38 new_ltEs11(xwv2800, xwv2900, bfb) -> new_fsEs(new_compare28(xwv2800, xwv2900, bfb)) 27.70/11.38 new_esEs23(xwv401, xwv3001, app(ty_[], cee)) -> new_esEs9(xwv401, xwv3001, cee) 27.70/11.38 new_lt16(xwv280, xwv290) -> new_esEs15(new_compare14(xwv280, xwv290), LT) 27.70/11.38 new_primCmpNat2(Succ(xwv28000), Succ(xwv29000)) -> new_primCmpNat2(xwv28000, xwv29000) 27.70/11.38 new_esEs20(xwv28000, xwv29000, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs5(xwv28000, xwv29000, ed, ee, ef) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), ty_Double, bd) -> new_esEs11(xwv400, xwv3000) 27.70/11.38 new_compare1(:(xwv28000, xwv28001), [], bce) -> GT 27.70/11.38 new_esEs22(xwv400, xwv3000, app(ty_Maybe, cdh)) -> new_esEs4(xwv400, xwv3000, cdh) 27.70/11.38 new_primEqNat0(Succ(xwv4000), Succ(xwv30000)) -> new_primEqNat0(xwv4000, xwv30000) 27.70/11.38 new_esEs23(xwv401, xwv3001, app(ty_Ratio, cff)) -> new_esEs14(xwv401, xwv3001, cff) 27.70/11.38 new_esEs29(xwv40, xwv300, ty_Float) -> new_esEs13(xwv40, xwv300) 27.70/11.38 new_compare12(xwv28000, xwv29000) -> new_compare210(xwv28000, xwv29000, new_esEs15(xwv28000, xwv29000)) 27.70/11.38 new_primCompAux0(xwv153, LT) -> LT 27.70/11.38 new_esEs20(xwv28000, xwv29000, ty_Ordering) -> new_esEs15(xwv28000, xwv29000) 27.70/11.38 new_not(True) -> False 27.70/11.38 new_ltEs18(xwv28001, xwv29001, app(ty_Maybe, bbc)) -> new_ltEs7(xwv28001, xwv29001, bbc) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs5(xwv2800, xwv2900, beg, beh, bfa) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs5(xwv28000, xwv29000, dbg, dbh, dca) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Integer) -> new_ltEs9(xwv28000, xwv29000) 27.70/11.38 new_esEs29(xwv40, xwv300, ty_Ordering) -> new_esEs15(xwv40, xwv300) 27.70/11.38 new_compare17(xwv28000, xwv29000, False, bcf, bcg) -> GT 27.70/11.38 new_compare29(xwv28000, xwv29000, ty_@0) -> new_compare9(xwv28000, xwv29000) 27.70/11.38 new_esEs18(xwv28000, xwv29000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs5(xwv28000, xwv29000, bab, bac, bad) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, ty_Bool) -> new_ltEs8(xwv2800, xwv2900) 27.70/11.38 new_esEs23(xwv401, xwv3001, ty_Bool) -> new_esEs12(xwv401, xwv3001) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs5(xwv28001, xwv29001, bbd, bbe, bbf) 27.70/11.38 new_esEs15(LT, EQ) -> False 27.70/11.38 new_esEs15(EQ, LT) -> False 27.70/11.38 new_ltEs18(xwv28001, xwv29001, app(app(ty_Either, bbg), bbh)) -> new_ltEs6(xwv28001, xwv29001, bbg, bbh) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(ty_Either, fd), ff), eh) -> new_ltEs6(xwv28000, xwv29000, fd, ff) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Bool, eh) -> new_ltEs8(xwv28000, xwv29000) 27.70/11.38 new_compare29(xwv28000, xwv29000, app(ty_Maybe, bhd)) -> new_compare6(xwv28000, xwv29000, bhd) 27.70/11.38 new_esEs8(@0, @0) -> True 27.70/11.38 new_primEqNat0(Succ(xwv4000), Zero) -> False 27.70/11.38 new_primEqNat0(Zero, Succ(xwv30000)) -> False 27.70/11.38 new_esEs24(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_Ratio, cf), bd) -> new_esEs14(xwv400, xwv3000, cf) 27.70/11.38 new_ltEs7(Nothing, Just(xwv29000), bef) -> True 27.70/11.38 new_esEs19(xwv400, xwv3000, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs5(xwv400, xwv3000, bea, beb, bec) 27.70/11.38 new_primCmpNat0(xwv2800, Succ(xwv2900)) -> new_primCmpNat2(xwv2800, xwv2900) 27.70/11.38 new_esEs22(xwv400, xwv3000, app(app(ty_@2, cdf), cdg)) -> new_esEs7(xwv400, xwv3000, cdf, cdg) 27.70/11.38 new_esEs22(xwv400, xwv3000, app(ty_[], cdc)) -> new_esEs9(xwv400, xwv3000, cdc) 27.70/11.38 new_esEs25(xwv401, xwv3001, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs5(xwv401, xwv3001, chg, chh, daa) 27.70/11.38 new_compare110(xwv28000, xwv29000, True) -> LT 27.70/11.38 new_esEs18(xwv28000, xwv29000, ty_Double) -> new_esEs11(xwv28000, xwv29000) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(app(ty_@3, ge), gf), gg)) -> new_ltEs5(xwv28000, xwv29000, ge, gf, gg) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Double) -> new_ltEs4(xwv28000, xwv29000) 27.70/11.38 new_esEs18(xwv28000, xwv29000, app(ty_Ratio, bag)) -> new_esEs14(xwv28000, xwv29000, bag) 27.70/11.38 new_esEs23(xwv401, xwv3001, ty_@0) -> new_esEs8(xwv401, xwv3001) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_Maybe, eg), eh) -> new_ltEs7(xwv28000, xwv29000, eg) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.38 new_primCmpInt(Pos(Succ(xwv2800)), Neg(xwv290)) -> GT 27.70/11.38 new_esEs24(xwv400, xwv3000, app(ty_Ratio, cgh)) -> new_esEs14(xwv400, xwv3000, cgh) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Bool) -> new_ltEs8(xwv28000, xwv29000) 27.70/11.38 new_esEs24(xwv400, xwv3000, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs5(xwv400, xwv3000, cge, cgf, cgg) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Char, eh) -> new_ltEs13(xwv28000, xwv29000) 27.70/11.38 new_ltEs10(GT, EQ) -> False 27.70/11.38 new_esEs29(xwv40, xwv300, ty_Double) -> new_esEs11(xwv40, xwv300) 27.70/11.38 new_esEs18(xwv28000, xwv29000, ty_Ordering) -> new_esEs15(xwv28000, xwv29000) 27.70/11.38 new_ltEs17(xwv2800, xwv2900) -> new_fsEs(new_compare31(xwv2800, xwv2900)) 27.70/11.38 new_ltEs9(xwv2800, xwv2900) -> new_fsEs(new_compare8(xwv2800, xwv2900)) 27.70/11.38 new_compare1(:(xwv28000, xwv28001), :(xwv29000, xwv29001), bce) -> new_primCompAux1(xwv28000, xwv29000, new_compare1(xwv28001, xwv29001, bce), bce) 27.70/11.38 new_esEs26(xwv402, xwv3002, ty_Char) -> new_esEs16(xwv402, xwv3002) 27.70/11.38 new_primPlusNat1(Succ(xwv33200), Succ(xwv9100)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv9100))) 27.70/11.38 new_lt8(xwv28000, xwv29000, ty_Int) -> new_lt16(xwv28000, xwv29000) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), app(app(app(ty_@3, cc), cd), ce), bd) -> new_esEs5(xwv400, xwv3000, cc, cd, ce) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_Ratio, eb)) -> new_esEs14(xwv400, xwv3000, eb) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, ty_Bool) -> new_ltEs8(xwv28002, xwv29002) 27.70/11.38 new_esEs28(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_Maybe, gd)) -> new_ltEs7(xwv28000, xwv29000, gd) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, app(ty_Maybe, cca)) -> new_ltEs7(xwv28002, xwv29002, cca) 27.70/11.38 new_compare211(xwv28000, xwv29000, False, bch, bda) -> new_compare18(xwv28000, xwv29000, new_ltEs12(xwv28000, xwv29000, bch, bda), bch, bda) 27.70/11.38 new_compare210(xwv28000, xwv29000, True) -> EQ 27.70/11.38 new_lt8(xwv28000, xwv29000, ty_@0) -> new_lt4(xwv28000, xwv29000) 27.70/11.38 new_esEs21(xwv28001, xwv29001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(xwv28001, xwv29001, cah, cba, cbb) 27.70/11.38 new_esEs14(:%(xwv400, xwv401), :%(xwv3000, xwv3001), bga) -> new_asAs(new_esEs27(xwv400, xwv3000, bga), new_esEs28(xwv401, xwv3001, bga)) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), ty_Ordering, bd) -> new_esEs15(xwv400, xwv3000) 27.70/11.38 new_pePe(False, xwv131) -> xwv131 27.70/11.38 new_lt19(xwv28000, xwv29000, ty_Int) -> new_lt16(xwv28000, xwv29000) 27.70/11.38 new_lt8(xwv28000, xwv29000, app(app(ty_Either, bae), baf)) -> new_lt12(xwv28000, xwv29000, bae, baf) 27.70/11.38 new_esEs22(xwv400, xwv3000, app(ty_Ratio, ced)) -> new_esEs14(xwv400, xwv3000, ced) 27.70/11.38 new_esEs12(False, False) -> True 27.70/11.38 new_esEs15(GT, GT) -> True 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Double, eh) -> new_ltEs4(xwv28000, xwv29000) 27.70/11.38 new_esEs22(xwv400, xwv3000, app(app(ty_Either, cdd), cde)) -> new_esEs6(xwv400, xwv3000, cdd, cde) 27.70/11.38 new_esEs15(EQ, GT) -> False 27.70/11.38 new_esEs15(GT, EQ) -> False 27.70/11.38 new_ltEs20(xwv28002, xwv29002, ty_Char) -> new_ltEs13(xwv28002, xwv29002) 27.70/11.38 new_lt8(xwv28000, xwv29000, ty_Ordering) -> new_lt6(xwv28000, xwv29000) 27.70/11.38 new_lt19(xwv28000, xwv29000, ty_Bool) -> new_lt10(xwv28000, xwv29000) 27.70/11.38 new_esEs25(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, ty_Double) -> new_ltEs4(xwv28001, xwv29001) 27.70/11.38 new_lt19(xwv28000, xwv29000, app(app(ty_Either, bcf), bcg)) -> new_lt12(xwv28000, xwv29000, bcf, bcg) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, app(ty_[], bcd)) -> new_ltEs16(xwv28001, xwv29001, bcd) 27.70/11.38 new_lt20(xwv28001, xwv29001, app(ty_Maybe, cag)) -> new_lt9(xwv28001, xwv29001, cag) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, app(app(ty_@2, bcb), bcc)) -> new_ltEs12(xwv28001, xwv29001, bcb, bcc) 27.70/11.38 new_esEs9(:(xwv400, xwv401), [], bdb) -> False 27.70/11.38 new_esEs9([], :(xwv3000, xwv3001), bdb) -> False 27.70/11.38 new_esEs25(xwv401, xwv3001, ty_Ordering) -> new_esEs15(xwv401, xwv3001) 27.70/11.38 new_lt19(xwv28000, xwv29000, app(ty_Maybe, ec)) -> new_lt9(xwv28000, xwv29000, ec) 27.70/11.38 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 27.70/11.38 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 27.70/11.38 new_esEs23(xwv401, xwv3001, app(ty_Maybe, cfb)) -> new_esEs4(xwv401, xwv3001, cfb) 27.70/11.38 new_compare11(xwv28000, xwv29000, True, ed, ee, ef) -> LT 27.70/11.38 new_esEs26(xwv402, xwv3002, app(ty_[], dac)) -> new_esEs9(xwv402, xwv3002, dac) 27.70/11.38 new_compare19(xwv117, xwv118, True, dbe) -> LT 27.70/11.38 new_ltEs18(xwv28001, xwv29001, ty_Integer) -> new_ltEs9(xwv28001, xwv29001) 27.70/11.38 new_compare30(xwv28000, xwv29000, bch, bda) -> new_compare211(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, bch, bda), bch, bda) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), ty_Integer, bd) -> new_esEs10(xwv400, xwv3000) 27.70/11.38 new_compare7(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.38 new_esEs20(xwv28000, xwv29000, app(ty_Ratio, caf)) -> new_esEs14(xwv28000, xwv29000, caf) 27.70/11.38 new_esEs21(xwv28001, xwv29001, ty_Float) -> new_esEs13(xwv28001, xwv29001) 27.70/11.38 new_lt6(xwv28000, xwv29000) -> new_esEs15(new_compare12(xwv28000, xwv29000), LT) 27.70/11.38 new_esEs18(xwv28000, xwv29000, ty_Char) -> new_esEs16(xwv28000, xwv29000) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, ty_Char) -> new_ltEs13(xwv2800, xwv2900) 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(xwv400, xwv3000, bgh, bha, bhb) 27.70/11.38 new_esEs19(xwv400, xwv3000, app(ty_Maybe, bdh)) -> new_esEs4(xwv400, xwv3000, bdh) 27.70/11.38 new_primEqInt(Neg(Succ(xwv4000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 27.70/11.38 new_primCmpInt(Neg(Zero), Pos(Succ(xwv2900))) -> LT 27.70/11.38 new_lt8(xwv28000, xwv29000, app(ty_[], bbb)) -> new_lt5(xwv28000, xwv29000, bbb) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_[], gb), eh) -> new_ltEs16(xwv28000, xwv29000, gb) 27.70/11.38 new_primMulInt(Pos(xwv4010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.38 new_ltEs8(True, False) -> False 27.70/11.38 new_lt18(xwv28000, xwv29000) -> new_esEs15(new_compare31(xwv28000, xwv29000), LT) 27.70/11.38 new_esEs24(xwv400, xwv3000, app(app(ty_Either, cfh), cga)) -> new_esEs6(xwv400, xwv3000, cfh, cga) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Float, eh) -> new_ltEs17(xwv28000, xwv29000) 27.70/11.38 new_compare18(xwv28000, xwv29000, False, bch, bda) -> GT 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), app(app(ty_Either, bf), bg), bd) -> new_esEs6(xwv400, xwv3000, bf, bg) 27.70/11.38 new_compare29(xwv28000, xwv29000, app(ty_[], cae)) -> new_compare1(xwv28000, xwv29000, cae) 27.70/11.38 new_ltEs16(xwv2800, xwv2900, bce) -> new_fsEs(new_compare1(xwv2800, xwv2900, bce)) 27.70/11.38 new_lt11(xwv28000, xwv29000, ed, ee, ef) -> new_esEs15(new_compare15(xwv28000, xwv29000, ed, ee, ef), LT) 27.70/11.38 new_esEs23(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.70/11.38 new_primMulNat0(Succ(xwv40100), Zero) -> Zero 27.70/11.38 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 27.70/11.38 new_ltEs8(False, False) -> True 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.38 new_compare29(xwv28000, xwv29000, ty_Char) -> new_compare13(xwv28000, xwv29000) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(ty_Either, gh), ha)) -> new_ltEs6(xwv28000, xwv29000, gh, ha) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs5(xwv400, xwv3000, dg, dh, ea) 27.70/11.38 new_esEs23(xwv401, xwv3001, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_esEs5(xwv401, xwv3001, cfc, cfd, cfe) 27.70/11.38 new_esEs24(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.38 new_primCmpNat2(Succ(xwv28000), Zero) -> GT 27.70/11.38 new_compare11(xwv28000, xwv29000, False, ed, ee, ef) -> GT 27.70/11.38 new_lt8(xwv28000, xwv29000, ty_Char) -> new_lt15(xwv28000, xwv29000) 27.70/11.38 new_compare29(xwv28000, xwv29000, ty_Float) -> new_compare31(xwv28000, xwv29000) 27.70/11.38 new_esEs15(LT, GT) -> False 27.70/11.38 new_esEs15(GT, LT) -> False 27.70/11.38 new_lt20(xwv28001, xwv29001, app(app(app(ty_@3, cah), cba), cbb)) -> new_lt11(xwv28001, xwv29001, cah, cba, cbb) 27.70/11.38 new_esEs25(xwv401, xwv3001, ty_@0) -> new_esEs8(xwv401, xwv3001) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), app(app(ty_@2, bh), ca), bd) -> new_esEs7(xwv400, xwv3000, bh, ca) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, ty_Bool) -> new_ltEs8(xwv28001, xwv29001) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, app(app(ty_@2, cch), cda)) -> new_ltEs12(xwv28002, xwv29002, cch, cda) 27.70/11.38 new_compare17(xwv28000, xwv29000, True, bcf, bcg) -> LT 27.70/11.38 new_compare18(xwv28000, xwv29000, True, bch, bda) -> LT 27.70/11.38 new_compare1([], [], bce) -> EQ 27.70/11.38 new_lt20(xwv28001, xwv29001, ty_Bool) -> new_lt10(xwv28001, xwv29001) 27.70/11.38 new_esEs9(:(xwv400, xwv401), :(xwv3000, xwv3001), bdb) -> new_asAs(new_esEs19(xwv400, xwv3000, bdb), new_esEs9(xwv401, xwv3001, bdb)) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Int) -> new_ltEs14(xwv28000, xwv29000) 27.70/11.38 new_esEs20(xwv28000, xwv29000, ty_Float) -> new_esEs13(xwv28000, xwv29000) 27.70/11.38 new_esEs20(xwv28000, xwv29000, app(ty_Maybe, ec)) -> new_esEs4(xwv28000, xwv29000, ec) 27.70/11.38 new_compare29(xwv28000, xwv29000, ty_Ordering) -> new_compare12(xwv28000, xwv29000) 27.70/11.38 new_esEs24(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.38 new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) 27.70/11.38 new_primPlusNat1(Zero, Succ(xwv9100)) -> Succ(xwv9100) 27.70/11.38 new_esEs26(xwv402, xwv3002, ty_@0) -> new_esEs8(xwv402, xwv3002) 27.70/11.38 new_lt20(xwv28001, xwv29001, ty_Int) -> new_lt16(xwv28001, xwv29001) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, app(ty_[], cdb)) -> new_ltEs16(xwv28002, xwv29002, cdb) 27.70/11.38 new_compare23(Just(xwv2800), Nothing, False, bee) -> GT 27.70/11.38 new_compare13(Char(xwv28000), Char(xwv29000)) -> new_primCmpNat2(xwv28000, xwv29000) 27.70/11.38 new_esEs17(xwv40, xwv300) -> new_primEqInt(xwv40, xwv300) 27.70/11.38 new_lt20(xwv28001, xwv29001, ty_Float) -> new_lt18(xwv28001, xwv29001) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), ty_@0, bd) -> new_esEs8(xwv400, xwv3000) 27.70/11.38 new_compare6(xwv28000, xwv29000, ec) -> new_compare23(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, ec), ec) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, ty_Integer) -> new_ltEs9(xwv28002, xwv29002) 27.70/11.38 new_primCompAux1(xwv28000, xwv29000, xwv141, bce) -> new_primCompAux0(xwv141, new_compare29(xwv28000, xwv29000, bce)) 27.70/11.38 new_esEs25(xwv401, xwv3001, ty_Bool) -> new_esEs12(xwv401, xwv3001) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, ty_Integer) -> new_ltEs9(xwv2800, xwv2900) 27.70/11.38 new_esEs24(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.38 new_esEs26(xwv402, xwv3002, ty_Int) -> new_esEs17(xwv402, xwv3002) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, app(ty_[], bce)) -> new_ltEs16(xwv2800, xwv2900, bce) 27.70/11.38 new_esEs19(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_[], da)) -> new_esEs9(xwv400, xwv3000, da) 27.70/11.38 new_compare28(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Int) -> new_compare14(new_sr(xwv28000, xwv29001), new_sr(xwv29000, xwv28001)) 27.70/11.38 new_esEs21(xwv28001, xwv29001, app(ty_Maybe, cag)) -> new_esEs4(xwv28001, xwv29001, cag) 27.70/11.38 new_primMulInt(Neg(xwv4010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.38 new_lt14(xwv28000, xwv29000, bch, bda) -> new_esEs15(new_compare30(xwv28000, xwv29000, bch, bda), LT) 27.70/11.38 new_esEs25(xwv401, xwv3001, app(app(ty_@2, chd), che)) -> new_esEs7(xwv401, xwv3001, chd, che) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_@0) -> new_ltEs15(xwv28000, xwv29000) 27.70/11.38 new_lt19(xwv28000, xwv29000, ty_Float) -> new_lt18(xwv28000, xwv29000) 27.70/11.38 new_esEs7(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bfc, bfd) -> new_asAs(new_esEs22(xwv400, xwv3000, bfc), new_esEs23(xwv401, xwv3001, bfd)) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(ty_@2, dd), de)) -> new_esEs7(xwv400, xwv3000, dd, de) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), ty_Bool, bd) -> new_esEs12(xwv400, xwv3000) 27.70/11.38 new_ltEs12(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), hg, hh) -> new_pePe(new_lt8(xwv28000, xwv29000, hg), new_asAs(new_esEs18(xwv28000, xwv29000, hg), new_ltEs18(xwv28001, xwv29001, hh))) 27.70/11.38 new_esEs26(xwv402, xwv3002, ty_Double) -> new_esEs11(xwv402, xwv3002) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Ordering) -> new_ltEs10(xwv28000, xwv29000) 27.70/11.38 new_ltEs8(False, True) -> True 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_Maybe, bgg)) -> new_esEs4(xwv400, xwv3000, bgg) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Float) -> new_ltEs17(xwv28000, xwv29000) 27.70/11.38 new_esEs23(xwv401, xwv3001, app(app(ty_Either, cef), ceg)) -> new_esEs6(xwv401, xwv3001, cef, ceg) 27.70/11.38 new_esEs24(xwv400, xwv3000, app(ty_[], cfg)) -> new_esEs9(xwv400, xwv3000, cfg) 27.70/11.38 new_compare31(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Char) -> new_ltEs13(xwv28000, xwv29000) 27.70/11.38 new_esEs21(xwv28001, xwv29001, app(app(ty_Either, cbc), cbd)) -> new_esEs6(xwv28001, xwv29001, cbc, cbd) 27.70/11.38 new_esEs13(Float(xwv400, xwv401), Float(xwv3000, xwv3001)) -> new_esEs17(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 27.70/11.38 new_esEs26(xwv402, xwv3002, ty_Integer) -> new_esEs10(xwv402, xwv3002) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, ty_Ordering) -> new_ltEs10(xwv28001, xwv29001) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(ty_@2, fh), ga), eh) -> new_ltEs12(xwv28000, xwv29000, fh, ga) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), ty_Int, bd) -> new_esEs17(xwv400, xwv3000) 27.70/11.38 new_compare8(Integer(xwv28000), Integer(xwv29000)) -> new_primCmpInt(xwv28000, xwv29000) 27.70/11.38 new_primMulInt(Pos(xwv4010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.38 new_primMulInt(Neg(xwv4010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 27.70/11.38 new_lt8(xwv28000, xwv29000, app(app(app(ty_@3, bab), bac), bad)) -> new_lt11(xwv28000, xwv29000, bab, bac, bad) 27.70/11.38 new_esEs20(xwv28000, xwv29000, ty_@0) -> new_esEs8(xwv28000, xwv29000) 27.70/11.38 new_compare29(xwv28000, xwv29000, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_compare15(xwv28000, xwv29000, bhe, bhf, bhg) 27.70/11.38 new_compare29(xwv28000, xwv29000, ty_Bool) -> new_compare16(xwv28000, xwv29000) 27.70/11.38 new_primCmpInt(Pos(Succ(xwv2800)), Pos(xwv290)) -> new_primCmpNat0(xwv2800, xwv290) 27.70/11.38 new_esEs15(LT, LT) -> True 27.70/11.38 new_esEs24(xwv400, xwv3000, app(ty_Maybe, cgd)) -> new_esEs4(xwv400, xwv3000, cgd) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(ty_Either, db), dc)) -> new_esEs6(xwv400, xwv3000, db, dc) 27.70/11.38 new_lt9(xwv28000, xwv29000, ec) -> new_esEs15(new_compare6(xwv28000, xwv29000, ec), LT) 27.70/11.38 new_esEs19(xwv400, xwv3000, app(ty_[], bdc)) -> new_esEs9(xwv400, xwv3000, bdc) 27.70/11.38 new_esEs25(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.70/11.38 new_esEs22(xwv400, xwv3000, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs5(xwv400, xwv3000, cea, ceb, cec) 27.70/11.38 new_esEs19(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.38 new_lt8(xwv28000, xwv29000, ty_Double) -> new_lt17(xwv28000, xwv29000) 27.70/11.38 new_sr0(Integer(xwv280000), Integer(xwv290010)) -> Integer(new_primMulInt(xwv280000, xwv290010)) 27.70/11.38 new_esEs18(xwv28000, xwv29000, app(ty_Maybe, baa)) -> new_esEs4(xwv28000, xwv29000, baa) 27.70/11.38 new_esEs21(xwv28001, xwv29001, app(ty_Ratio, cbe)) -> new_esEs14(xwv28001, xwv29001, cbe) 27.70/11.38 new_esEs29(xwv40, xwv300, ty_Char) -> new_esEs16(xwv40, xwv300) 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.38 new_esEs29(xwv40, xwv300, ty_@0) -> new_esEs8(xwv40, xwv300) 27.70/11.38 new_compare24(xwv28000, xwv29000, True, ed, ee, ef) -> EQ 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), app(app(ty_Either, bgc), bgd)) -> new_esEs6(xwv400, xwv3000, bgc, bgd) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.38 new_lt19(xwv28000, xwv29000, app(app(app(ty_@3, ed), ee), ef)) -> new_lt11(xwv28000, xwv29000, ed, ee, ef) 27.70/11.38 new_primCmpNat0(xwv2800, Zero) -> GT 27.70/11.38 new_lt10(xwv28000, xwv29000) -> new_esEs15(new_compare16(xwv28000, xwv29000), LT) 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_Ratio, bhc)) -> new_esEs14(xwv400, xwv3000, bhc) 27.70/11.38 new_primCmpNat2(Zero, Succ(xwv29000)) -> LT 27.70/11.38 new_esEs25(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 27.70/11.38 new_asAs(True, xwv57) -> xwv57 27.70/11.38 new_esEs25(xwv401, xwv3001, app(ty_Ratio, dab)) -> new_esEs14(xwv401, xwv3001, dab) 27.70/11.38 new_esEs26(xwv402, xwv3002, ty_Float) -> new_esEs13(xwv402, xwv3002) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Bool) -> new_ltEs8(xwv28000, xwv29000) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Ordering) -> new_ltEs10(xwv28000, xwv29000) 27.70/11.38 new_esEs10(Integer(xwv400), Integer(xwv3000)) -> new_primEqInt(xwv400, xwv3000) 27.70/11.38 new_lt19(xwv28000, xwv29000, ty_Double) -> new_lt17(xwv28000, xwv29000) 27.70/11.38 new_esEs26(xwv402, xwv3002, ty_Ordering) -> new_esEs15(xwv402, xwv3002) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, ty_Char) -> new_ltEs13(xwv28001, xwv29001) 27.70/11.38 new_ltEs10(LT, LT) -> True 27.70/11.38 new_compare7(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, ty_@0) -> new_ltEs15(xwv28002, xwv29002) 27.70/11.38 new_esEs25(xwv401, xwv3001, app(ty_[], cha)) -> new_esEs9(xwv401, xwv3001, cha) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_Ratio, fg), eh) -> new_ltEs11(xwv28000, xwv29000, fg) 27.70/11.38 new_esEs6(Left(xwv400), Right(xwv3000), cg, bd) -> False 27.70/11.38 new_esEs6(Right(xwv400), Left(xwv3000), cg, bd) -> False 27.70/11.38 new_esEs21(xwv28001, xwv29001, ty_Bool) -> new_esEs12(xwv28001, xwv29001) 27.70/11.38 new_esEs21(xwv28001, xwv29001, ty_Int) -> new_esEs17(xwv28001, xwv29001) 27.70/11.38 new_esEs16(Char(xwv400), Char(xwv3000)) -> new_primEqNat0(xwv400, xwv3000) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_Ratio, hb)) -> new_ltEs11(xwv28000, xwv29000, hb) 27.70/11.38 new_esEs22(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.38 new_esEs26(xwv402, xwv3002, ty_Bool) -> new_esEs12(xwv402, xwv3002) 27.70/11.38 new_esEs24(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, app(ty_Ratio, ccg)) -> new_ltEs11(xwv28002, xwv29002, ccg) 27.70/11.38 new_esEs18(xwv28000, xwv29000, app(app(ty_@2, bah), bba)) -> new_esEs7(xwv28000, xwv29000, bah, bba) 27.70/11.38 new_esEs20(xwv28000, xwv29000, app(ty_[], hf)) -> new_esEs9(xwv28000, xwv29000, hf) 27.70/11.38 new_ltEs8(True, True) -> True 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_@0) -> new_ltEs15(xwv28000, xwv29000) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, ty_@0) -> new_ltEs15(xwv2800, xwv2900) 27.70/11.38 new_esEs24(xwv400, xwv3000, app(app(ty_@2, cgb), cgc)) -> new_esEs7(xwv400, xwv3000, cgb, cgc) 27.70/11.38 new_compare110(xwv28000, xwv29000, False) -> GT 27.70/11.38 new_lt8(xwv28000, xwv29000, ty_Integer) -> new_lt7(xwv28000, xwv29000) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Int) -> new_ltEs14(xwv28000, xwv29000) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, ty_Int) -> new_ltEs14(xwv28001, xwv29001) 27.70/11.38 new_sr(xwv401, xwv3000) -> new_primMulInt(xwv401, xwv3000) 27.70/11.38 new_esEs12(False, True) -> False 27.70/11.38 new_esEs12(True, False) -> False 27.70/11.38 new_lt20(xwv28001, xwv29001, app(app(ty_Either, cbc), cbd)) -> new_lt12(xwv28001, xwv29001, cbc, cbd) 27.70/11.38 new_esEs23(xwv401, xwv3001, ty_Double) -> new_esEs11(xwv401, xwv3001) 27.70/11.38 new_ltEs7(Nothing, Nothing, bef) -> True 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.38 new_primMulNat0(Zero, Zero) -> Zero 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.38 new_esEs22(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.38 new_esEs12(True, True) -> True 27.70/11.38 new_compare10(xwv28000, xwv29000, False) -> GT 27.70/11.38 new_esEs21(xwv28001, xwv29001, ty_Integer) -> new_esEs10(xwv28001, xwv29001) 27.70/11.38 new_esEs18(xwv28000, xwv29000, ty_@0) -> new_esEs8(xwv28000, xwv29000) 27.70/11.38 new_esEs29(xwv40, xwv300, ty_Int) -> new_esEs17(xwv40, xwv300) 27.70/11.38 new_primCmpInt(Neg(Zero), Neg(Succ(xwv2900))) -> new_primCmpNat0(xwv2900, Zero) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_Maybe, cb), bd) -> new_esEs4(xwv400, xwv3000, cb) 27.70/11.38 new_esEs26(xwv402, xwv3002, app(app(ty_Either, dad), dae)) -> new_esEs6(xwv402, xwv3002, dad, dae) 27.70/11.38 new_ltEs7(Just(xwv28000), Nothing, bef) -> False 27.70/11.38 new_esEs23(xwv401, xwv3001, app(app(ty_@2, ceh), cfa)) -> new_esEs7(xwv401, xwv3001, ceh, cfa) 27.70/11.38 new_compare9(@0, @0) -> EQ 27.70/11.38 new_esEs21(xwv28001, xwv29001, app(ty_[], cbh)) -> new_esEs9(xwv28001, xwv29001, cbh) 27.70/11.38 new_primCmpNat1(Zero, xwv2800) -> LT 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_[], bgb)) -> new_esEs9(xwv400, xwv3000, bgb) 27.70/11.38 new_esEs4(Nothing, Nothing, bfe) -> True 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), ty_Char, bd) -> new_esEs16(xwv400, xwv3000) 27.70/11.38 new_compare29(xwv28000, xwv29000, app(ty_Ratio, cab)) -> new_compare28(xwv28000, xwv29000, cab) 27.70/11.38 new_esEs4(Nothing, Just(xwv3000), bfe) -> False 27.70/11.38 new_esEs4(Just(xwv400), Nothing, bfe) -> False 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_Ratio, dcd)) -> new_ltEs11(xwv28000, xwv29000, dcd) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, app(ty_Ratio, bfb)) -> new_ltEs11(xwv2800, xwv2900, bfb) 27.70/11.38 new_esEs19(xwv400, xwv3000, app(ty_Ratio, bed)) -> new_esEs14(xwv400, xwv3000, bed) 27.70/11.38 new_compare29(xwv28000, xwv29000, ty_Int) -> new_compare14(xwv28000, xwv29000) 27.70/11.38 new_primCmpNat2(Zero, Zero) -> EQ 27.70/11.38 new_lt5(xwv28000, xwv29000, hf) -> new_esEs15(new_compare1(xwv28000, xwv29000, hf), LT) 27.70/11.38 new_lt20(xwv28001, xwv29001, app(ty_Ratio, cbe)) -> new_lt13(xwv28001, xwv29001, cbe) 27.70/11.38 new_esEs21(xwv28001, xwv29001, ty_Char) -> new_esEs16(xwv28001, xwv29001) 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.38 new_lt20(xwv28001, xwv29001, ty_Integer) -> new_lt7(xwv28001, xwv29001) 27.70/11.38 new_esEs29(xwv40, xwv300, app(ty_Ratio, bga)) -> new_esEs14(xwv40, xwv300, bga) 27.70/11.38 new_compare28(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Integer) -> new_compare8(new_sr0(xwv28000, xwv29001), new_sr0(xwv29000, xwv28001)) 27.70/11.38 new_esEs19(xwv400, xwv3000, app(app(ty_Either, bdd), bde)) -> new_esEs6(xwv400, xwv3000, bdd, bde) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_Maybe, df)) -> new_esEs4(xwv400, xwv3000, df) 27.70/11.38 new_esEs25(xwv401, xwv3001, app(app(ty_Either, chb), chc)) -> new_esEs6(xwv401, xwv3001, chb, chc) 27.70/11.38 new_primCompAux0(xwv153, EQ) -> xwv153 27.70/11.38 new_ltEs18(xwv28001, xwv29001, app(ty_Ratio, bca)) -> new_ltEs11(xwv28001, xwv29001, bca) 27.70/11.38 new_lt19(xwv28000, xwv29000, app(ty_Ratio, caf)) -> new_lt13(xwv28000, xwv29000, caf) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, app(ty_Maybe, bef)) -> new_ltEs7(xwv2800, xwv2900, bef) 27.70/11.38 new_primEqInt(Neg(Succ(xwv4000)), Neg(Zero)) -> False 27.70/11.38 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 27.70/11.38 new_lt19(xwv28000, xwv29000, ty_Integer) -> new_lt7(xwv28000, xwv29000) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, ty_@0) -> new_ltEs15(xwv28001, xwv29001) 27.70/11.38 new_esEs20(xwv28000, xwv29000, ty_Char) -> new_esEs16(xwv28000, xwv29000) 27.70/11.38 new_primEqInt(Pos(Succ(xwv4000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 27.70/11.38 new_ltEs10(GT, GT) -> True 27.70/11.38 new_ltEs20(xwv28002, xwv29002, app(app(ty_Either, cce), ccf)) -> new_ltEs6(xwv28002, xwv29002, cce, ccf) 27.70/11.38 new_compare19(xwv117, xwv118, False, dbe) -> GT 27.70/11.38 new_esEs20(xwv28000, xwv29000, app(app(ty_Either, bcf), bcg)) -> new_esEs6(xwv28000, xwv29000, bcf, bcg) 27.70/11.38 new_compare23(Just(xwv2800), Just(xwv2900), False, bee) -> new_compare19(xwv2800, xwv2900, new_ltEs19(xwv2800, xwv2900, bee), bee) 27.70/11.38 new_primEqInt(Pos(Succ(xwv4000)), Neg(xwv3000)) -> False 27.70/11.38 new_primEqInt(Neg(Succ(xwv4000)), Pos(xwv3000)) -> False 27.70/11.38 new_compare29(xwv28000, xwv29000, app(app(ty_Either, bhh), caa)) -> new_compare26(xwv28000, xwv29000, bhh, caa) 27.70/11.38 new_compare14(xwv28, xwv29) -> new_primCmpInt(xwv28, xwv29) 27.70/11.38 new_compare23(Nothing, Just(xwv2900), False, bee) -> LT 27.70/11.38 new_esEs22(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.70/11.38 new_esEs27(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.38 new_compare211(xwv28000, xwv29000, True, bch, bda) -> EQ 27.70/11.38 new_ltEs19(xwv2800, xwv2900, app(app(ty_Either, gc), eh)) -> new_ltEs6(xwv2800, xwv2900, gc, eh) 27.70/11.38 new_esEs29(xwv40, xwv300, app(ty_Maybe, bfe)) -> new_esEs4(xwv40, xwv300, bfe) 27.70/11.38 new_esEs22(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.38 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 27.70/11.38 new_ltEs10(LT, EQ) -> True 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(ty_Either, dcb), dcc)) -> new_ltEs6(xwv28000, xwv29000, dcb, dcc) 27.70/11.38 new_lt8(xwv28000, xwv29000, ty_Bool) -> new_lt10(xwv28000, xwv29000) 27.70/11.38 new_compare26(xwv28000, xwv29000, bcf, bcg) -> new_compare27(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bcf, bcg), bcf, bcg) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_@0, eh) -> new_ltEs15(xwv28000, xwv29000) 27.70/11.38 new_primCmpNat1(Succ(xwv2900), xwv2800) -> new_primCmpNat2(xwv2900, xwv2800) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), ty_Float, bd) -> new_esEs13(xwv400, xwv3000) 27.70/11.38 new_esEs19(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.38 new_lt20(xwv28001, xwv29001, ty_Char) -> new_lt15(xwv28001, xwv29001) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_Maybe, dbf)) -> new_ltEs7(xwv28000, xwv29000, dbf) 27.70/11.38 new_esEs15(EQ, EQ) -> True 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Float) -> new_ltEs17(xwv28000, xwv29000) 27.70/11.38 new_esEs23(xwv401, xwv3001, ty_Float) -> new_esEs13(xwv401, xwv3001) 27.70/11.38 new_fsEs(xwv123) -> new_not(new_esEs15(xwv123, GT)) 27.70/11.38 new_esEs19(xwv400, xwv3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(xwv400, xwv3000, bdf, bdg) 27.70/11.38 new_compare23(Nothing, Nothing, False, bee) -> LT 27.70/11.38 new_compare24(xwv28000, xwv29000, False, ed, ee, ef) -> new_compare11(xwv28000, xwv29000, new_ltEs5(xwv28000, xwv29000, ed, ee, ef), ed, ee, ef) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(ty_@2, hc), hd)) -> new_ltEs12(xwv28000, xwv29000, hc, hd) 27.70/11.38 new_primPlusNat0(xwv101, xwv300000) -> new_primPlusNat1(xwv101, Succ(xwv300000)) 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.38 new_compare29(xwv28000, xwv29000, ty_Double) -> new_compare7(xwv28000, xwv29000) 27.70/11.38 new_ltEs6(Right(xwv28000), Left(xwv29000), gc, eh) -> False 27.70/11.38 new_not(False) -> True 27.70/11.38 new_lt20(xwv28001, xwv29001, ty_@0) -> new_lt4(xwv28001, xwv29001) 27.70/11.38 new_compare1([], :(xwv29000, xwv29001), bce) -> LT 27.70/11.38 new_esEs21(xwv28001, xwv29001, ty_@0) -> new_esEs8(xwv28001, xwv29001) 27.70/11.38 new_esEs11(Double(xwv400, xwv401), Double(xwv3000, xwv3001)) -> new_esEs17(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 27.70/11.38 new_lt19(xwv28000, xwv29000, app(ty_[], hf)) -> new_lt5(xwv28000, xwv29000, hf) 27.70/11.38 new_primCmpInt(Neg(Succ(xwv2800)), Neg(xwv290)) -> new_primCmpNat1(xwv290, xwv2800) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.38 new_lt13(xwv28000, xwv29000, caf) -> new_esEs15(new_compare28(xwv28000, xwv29000, caf), LT) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Char) -> new_ltEs13(xwv28000, xwv29000) 27.70/11.38 new_lt12(xwv28000, xwv29000, bcf, bcg) -> new_esEs15(new_compare26(xwv28000, xwv29000, bcf, bcg), LT) 27.70/11.38 new_esEs29(xwv40, xwv300, app(app(ty_Either, cg), bd)) -> new_esEs6(xwv40, xwv300, cg, bd) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_[], he)) -> new_ltEs16(xwv28000, xwv29000, he) 27.70/11.38 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_[], be), bd) -> new_esEs9(xwv400, xwv3000, be) 27.70/11.38 new_esEs20(xwv28000, xwv29000, ty_Bool) -> new_esEs12(xwv28000, xwv29000) 27.70/11.38 new_esEs22(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.38 new_ltEs10(EQ, GT) -> True 27.70/11.38 new_lt17(xwv28000, xwv29000) -> new_esEs15(new_compare7(xwv28000, xwv29000), LT) 27.70/11.38 new_compare25(xwv28000, xwv29000, True) -> EQ 27.70/11.38 new_compare27(xwv28000, xwv29000, True, bcf, bcg) -> EQ 27.70/11.38 new_compare27(xwv28000, xwv29000, False, bcf, bcg) -> new_compare17(xwv28000, xwv29000, new_ltEs6(xwv28000, xwv29000, bcf, bcg), bcf, bcg) 27.70/11.38 new_esEs29(xwv40, xwv300, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xwv40, xwv300, bfc, bfd) 27.70/11.38 new_ltEs10(EQ, EQ) -> True 27.70/11.38 new_esEs19(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.38 new_esEs29(xwv40, xwv300, ty_Bool) -> new_esEs12(xwv40, xwv300) 27.70/11.38 new_esEs5(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bff, bfg, bfh) -> new_asAs(new_esEs24(xwv400, xwv3000, bff), new_asAs(new_esEs25(xwv401, xwv3001, bfg), new_esEs26(xwv402, xwv3002, bfh))) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, fa), fb), fc), eh) -> new_ltEs5(xwv28000, xwv29000, fa, fb, fc) 27.70/11.38 new_ltEs18(xwv28001, xwv29001, ty_Float) -> new_ltEs17(xwv28001, xwv29001) 27.70/11.38 new_lt20(xwv28001, xwv29001, app(ty_[], cbh)) -> new_lt5(xwv28001, xwv29001, cbh) 27.70/11.38 new_esEs23(xwv401, xwv3001, ty_Ordering) -> new_esEs15(xwv401, xwv3001) 27.70/11.38 new_compare10(xwv28000, xwv29000, True) -> LT 27.70/11.38 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 27.70/11.38 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 27.70/11.38 new_lt20(xwv28001, xwv29001, ty_Double) -> new_lt17(xwv28001, xwv29001) 27.70/11.38 new_primPlusNat1(Zero, Zero) -> Zero 27.70/11.38 new_lt19(xwv28000, xwv29000, ty_Char) -> new_lt15(xwv28000, xwv29000) 27.70/11.38 new_esEs20(xwv28000, xwv29000, ty_Integer) -> new_esEs10(xwv28000, xwv29000) 27.70/11.38 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Integer, eh) -> new_ltEs9(xwv28000, xwv29000) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.70/11.38 new_lt8(xwv28000, xwv29000, ty_Float) -> new_lt18(xwv28000, xwv29000) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.38 new_esEs25(xwv401, xwv3001, app(ty_Maybe, chf)) -> new_esEs4(xwv401, xwv3001, chf) 27.70/11.38 new_lt8(xwv28000, xwv29000, app(ty_Ratio, bag)) -> new_lt13(xwv28000, xwv29000, bag) 27.70/11.38 new_esEs18(xwv28000, xwv29000, ty_Int) -> new_esEs17(xwv28000, xwv29000) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_[], dcg)) -> new_ltEs16(xwv28000, xwv29000, dcg) 27.70/11.38 new_lt4(xwv28000, xwv29000) -> new_esEs15(new_compare9(xwv28000, xwv29000), LT) 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), ty_Double) -> new_esEs11(xwv400, xwv3000) 27.70/11.38 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 27.70/11.38 new_esEs23(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 27.70/11.38 new_lt19(xwv28000, xwv29000, ty_@0) -> new_lt4(xwv28000, xwv29000) 27.70/11.38 new_esEs18(xwv28000, xwv29000, app(app(ty_Either, bae), baf)) -> new_esEs6(xwv28000, xwv29000, bae, baf) 27.70/11.38 new_primMulNat0(Succ(xwv40100), Succ(xwv300000)) -> new_primPlusNat0(new_primMulNat0(xwv40100, Succ(xwv300000)), xwv300000) 27.70/11.38 new_compare7(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.38 new_compare7(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.38 new_esEs22(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.38 new_ltEs15(xwv2800, xwv2900) -> new_fsEs(new_compare9(xwv2800, xwv2900)) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Integer) -> new_ltEs9(xwv28000, xwv29000) 27.70/11.38 new_primCmpInt(Pos(Zero), Pos(Succ(xwv2900))) -> new_primCmpNat1(Zero, xwv2900) 27.70/11.38 new_esEs26(xwv402, xwv3002, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs5(xwv402, xwv3002, dba, dbb, dbc) 27.70/11.38 new_esEs21(xwv28001, xwv29001, app(app(ty_@2, cbf), cbg)) -> new_esEs7(xwv28001, xwv29001, cbf, cbg) 27.70/11.38 new_esEs19(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.38 new_esEs24(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.70/11.38 new_esEs26(xwv402, xwv3002, app(ty_Ratio, dbd)) -> new_esEs14(xwv402, xwv3002, dbd) 27.70/11.38 new_lt20(xwv28001, xwv29001, app(app(ty_@2, cbf), cbg)) -> new_lt14(xwv28001, xwv29001, cbf, cbg) 27.70/11.38 new_esEs21(xwv28001, xwv29001, ty_Ordering) -> new_esEs15(xwv28001, xwv29001) 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), app(app(ty_@2, bge), bgf)) -> new_esEs7(xwv400, xwv3000, bge, bgf) 27.70/11.38 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(ty_@2, dce), dcf)) -> new_ltEs12(xwv28000, xwv29000, dce, dcf) 27.70/11.38 new_esEs29(xwv40, xwv300, ty_Integer) -> new_esEs10(xwv40, xwv300) 27.70/11.38 new_compare16(xwv28000, xwv29000) -> new_compare25(xwv28000, xwv29000, new_esEs12(xwv28000, xwv29000)) 27.70/11.38 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 27.70/11.38 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 27.70/11.38 new_esEs9([], [], bdb) -> True 27.70/11.38 new_esEs4(Just(xwv400), Just(xwv3000), ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.38 new_esEs22(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.70/11.38 new_compare25(xwv28000, xwv29000, False) -> new_compare10(xwv28000, xwv29000, new_ltEs8(xwv28000, xwv29000)) 27.70/11.38 new_esEs29(xwv40, xwv300, app(ty_[], bdb)) -> new_esEs9(xwv40, xwv300, bdb) 27.70/11.38 new_esEs26(xwv402, xwv3002, app(ty_Maybe, dah)) -> new_esEs4(xwv402, xwv3002, dah) 27.70/11.38 new_primEqNat0(Zero, Zero) -> True 27.70/11.38 new_lt19(xwv28000, xwv29000, ty_Ordering) -> new_lt6(xwv28000, xwv29000) 27.70/11.38 new_esEs21(xwv28001, xwv29001, ty_Double) -> new_esEs11(xwv28001, xwv29001) 27.70/11.38 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Double) -> new_ltEs4(xwv28000, xwv29000) 27.70/11.38 new_compare31(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.70/11.38 new_compare31(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.70/11.38 new_lt15(xwv28000, xwv29000) -> new_esEs15(new_compare13(xwv28000, xwv29000), LT) 27.70/11.38 new_ltEs10(LT, GT) -> True 27.70/11.38 new_asAs(False, xwv57) -> False 27.70/11.38 new_esEs19(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.70/11.38 new_ltEs13(xwv2800, xwv2900) -> new_fsEs(new_compare13(xwv2800, xwv2900)) 27.70/11.38 new_esEs19(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, ty_Int) -> new_ltEs14(xwv2800, xwv2900) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, ty_Float) -> new_ltEs17(xwv28002, xwv29002) 27.70/11.38 new_lt20(xwv28001, xwv29001, ty_Ordering) -> new_lt6(xwv28001, xwv29001) 27.70/11.38 new_esEs25(xwv401, xwv3001, ty_Float) -> new_esEs13(xwv401, xwv3001) 27.70/11.38 new_ltEs6(Left(xwv28000), Right(xwv29000), gc, eh) -> True 27.70/11.38 new_ltEs19(xwv2800, xwv2900, ty_Ordering) -> new_ltEs10(xwv2800, xwv2900) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, ty_Ordering) -> new_ltEs10(xwv28002, xwv29002) 27.70/11.38 new_esEs18(xwv28000, xwv29000, ty_Integer) -> new_esEs10(xwv28000, xwv29000) 27.70/11.38 new_ltEs5(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), beg, beh, bfa) -> new_pePe(new_lt19(xwv28000, xwv29000, beg), new_asAs(new_esEs20(xwv28000, xwv29000, beg), new_pePe(new_lt20(xwv28001, xwv29001, beh), new_asAs(new_esEs21(xwv28001, xwv29001, beh), new_ltEs20(xwv28002, xwv29002, bfa))))) 27.70/11.38 new_lt19(xwv28000, xwv29000, app(app(ty_@2, bch), bda)) -> new_lt14(xwv28000, xwv29000, bch, bda) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.70/11.38 new_lt8(xwv28000, xwv29000, app(ty_Maybe, baa)) -> new_lt9(xwv28000, xwv29000, baa) 27.70/11.38 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.70/11.38 new_compare29(xwv28000, xwv29000, ty_Integer) -> new_compare8(xwv28000, xwv29000) 27.70/11.38 new_esEs20(xwv28000, xwv29000, ty_Int) -> new_esEs17(xwv28000, xwv29000) 27.70/11.38 new_ltEs19(xwv2800, xwv2900, ty_Float) -> new_ltEs17(xwv2800, xwv2900) 27.70/11.38 new_ltEs20(xwv28002, xwv29002, ty_Int) -> new_ltEs14(xwv28002, xwv29002) 27.70/11.38 new_esEs18(xwv28000, xwv29000, app(ty_[], bbb)) -> new_esEs9(xwv28000, xwv29000, bbb) 27.70/11.38 new_esEs20(xwv28000, xwv29000, app(app(ty_@2, bch), bda)) -> new_esEs7(xwv28000, xwv29000, bch, bda) 27.70/11.38 27.70/11.38 The set Q consists of the following terms: 27.70/11.38 27.70/11.38 new_compare29(x0, x1, ty_Int) 27.70/11.38 new_esEs22(x0, x1, ty_Float) 27.70/11.38 new_esEs21(x0, x1, ty_Double) 27.70/11.38 new_esEs19(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_esEs4(Just(x0), Just(x1), ty_Ordering) 27.70/11.38 new_pePe(False, x0) 27.70/11.38 new_primCompAux0(x0, EQ) 27.70/11.38 new_esEs26(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_compare1([], :(x0, x1), x2) 27.70/11.38 new_esEs4(Just(x0), Just(x1), ty_Double) 27.70/11.38 new_primPlusNat1(Zero, Zero) 27.70/11.38 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 27.70/11.38 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 27.70/11.38 new_primPlusNat1(Succ(x0), Zero) 27.70/11.38 new_ltEs10(LT, LT) 27.70/11.38 new_compare29(x0, x1, ty_Char) 27.70/11.38 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 27.70/11.38 new_esEs21(x0, x1, ty_Int) 27.70/11.38 new_sr(x0, x1) 27.70/11.38 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_esEs20(x0, x1, ty_Double) 27.70/11.38 new_ltEs19(x0, x1, app(ty_[], x2)) 27.70/11.38 new_primEqInt(Pos(Zero), Pos(Zero)) 27.70/11.38 new_esEs4(Just(x0), Nothing, x1) 27.70/11.38 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 27.70/11.38 new_esEs16(Char(x0), Char(x1)) 27.70/11.38 new_primCmpNat2(Zero, Succ(x0)) 27.70/11.38 new_esEs17(x0, x1) 27.70/11.38 new_compare13(Char(x0), Char(x1)) 27.70/11.38 new_esEs28(x0, x1, ty_Int) 27.70/11.38 new_lt19(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_ltEs15(x0, x1) 27.70/11.38 new_esEs24(x0, x1, ty_Float) 27.70/11.38 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 27.70/11.38 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 27.70/11.38 new_lt8(x0, x1, ty_Char) 27.70/11.38 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.70/11.38 new_esEs20(x0, x1, ty_Ordering) 27.70/11.38 new_esEs18(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_esEs21(x0, x1, ty_Ordering) 27.70/11.38 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 27.70/11.38 new_compare29(x0, x1, ty_Ordering) 27.70/11.38 new_primEqInt(Neg(Zero), Neg(Zero)) 27.70/11.38 new_esEs25(x0, x1, ty_Float) 27.70/11.38 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 27.70/11.38 new_compare17(x0, x1, True, x2, x3) 27.70/11.38 new_esEs15(EQ, GT) 27.70/11.38 new_esEs15(GT, EQ) 27.70/11.38 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 27.70/11.38 new_lt20(x0, x1, ty_Ordering) 27.70/11.38 new_esEs15(LT, LT) 27.70/11.38 new_esEs12(False, True) 27.70/11.38 new_esEs12(True, False) 27.70/11.38 new_esEs29(x0, x1, app(ty_[], x2)) 27.70/11.38 new_compare210(x0, x1, True) 27.70/11.38 new_compare28(:%(x0, x1), :%(x2, x3), ty_Int) 27.70/11.38 new_esEs29(x0, x1, app(ty_Ratio, x2)) 27.70/11.38 new_ltEs13(x0, x1) 27.70/11.38 new_asAs(True, x0) 27.70/11.38 new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 27.70/11.38 new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 27.89/11.38 new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 27.89/11.38 new_compare14(x0, x1) 27.89/11.38 new_ltEs8(False, False) 27.89/11.38 new_compare211(x0, x1, True, x2, x3) 27.89/11.38 new_lt20(x0, x1, ty_Double) 27.89/11.38 new_compare29(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.38 new_esEs21(x0, x1, app(ty_Ratio, x2)) 27.89/11.38 new_ltEs10(GT, EQ) 27.89/11.38 new_ltEs10(EQ, GT) 27.89/11.38 new_lt8(x0, x1, ty_Int) 27.89/11.38 new_ltEs7(Just(x0), Just(x1), ty_Float) 27.89/11.38 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 27.89/11.38 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 27.89/11.38 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.38 new_lt8(x0, x1, ty_@0) 27.89/11.38 new_compare29(x0, x1, ty_Double) 27.89/11.38 new_esEs25(x0, x1, app(ty_Maybe, x2)) 27.89/11.38 new_ltEs18(x0, x1, ty_Double) 27.89/11.38 new_compare27(x0, x1, True, x2, x3) 27.89/11.38 new_compare29(x0, x1, ty_Bool) 27.89/11.38 new_primEqInt(Pos(Zero), Neg(Zero)) 27.89/11.38 new_primEqInt(Neg(Zero), Pos(Zero)) 27.89/11.38 new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.38 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 27.89/11.38 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 27.89/11.38 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 27.89/11.38 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 27.89/11.38 new_ltEs7(Nothing, Nothing, x0) 27.89/11.38 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 27.89/11.38 new_esEs25(x0, x1, app(ty_Ratio, x2)) 27.89/11.38 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 27.89/11.38 new_esEs24(x0, x1, app(ty_Ratio, x2)) 27.89/11.38 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 27.89/11.38 new_compare29(x0, x1, app(ty_Ratio, x2)) 27.89/11.38 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 27.89/11.38 new_compare15(x0, x1, x2, x3, x4) 27.89/11.38 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.38 new_compare10(x0, x1, False) 27.89/11.38 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 27.89/11.38 new_primCmpNat0(x0, Succ(x1)) 27.89/11.38 new_lt15(x0, x1) 27.89/11.38 new_lt20(x0, x1, app(ty_[], x2)) 27.89/11.38 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.38 new_compare110(x0, x1, True) 27.89/11.38 new_esEs29(x0, x1, ty_Int) 27.89/11.38 new_primMulInt(Pos(x0), Pos(x1)) 27.89/11.38 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 27.89/11.38 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.38 new_lt12(x0, x1, x2, x3) 27.89/11.38 new_esEs19(x0, x1, ty_Ordering) 27.89/11.38 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.38 new_compare29(x0, x1, ty_Integer) 27.89/11.38 new_esEs22(x0, x1, ty_Bool) 27.89/11.38 new_primMulInt(Pos(x0), Neg(x1)) 27.89/11.38 new_primMulInt(Neg(x0), Pos(x1)) 27.89/11.38 new_esEs24(x0, x1, ty_@0) 27.89/11.38 new_ltEs10(EQ, LT) 27.89/11.38 new_ltEs10(GT, GT) 27.89/11.38 new_ltEs10(LT, EQ) 27.89/11.38 new_esEs21(x0, x1, ty_Bool) 27.89/11.38 new_esEs23(x0, x1, ty_Integer) 27.89/11.38 new_lt13(x0, x1, x2) 27.89/11.38 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 27.89/11.38 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 27.89/11.38 new_esEs15(LT, GT) 27.89/11.38 new_esEs15(GT, LT) 27.89/11.38 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.38 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 27.89/11.38 new_esEs29(x0, x1, ty_Char) 27.89/11.38 new_ltEs19(x0, x1, ty_Float) 27.89/11.38 new_esEs19(x0, x1, ty_Int) 27.89/11.38 new_esEs4(Nothing, Nothing, x0) 27.89/11.38 new_esEs23(x0, x1, ty_Bool) 27.89/11.38 new_compare1(:(x0, x1), [], x2) 27.89/11.38 new_primCompAux0(x0, LT) 27.89/11.38 new_sr0(Integer(x0), Integer(x1)) 27.89/11.38 new_esEs20(x0, x1, ty_@0) 27.89/11.38 new_compare27(x0, x1, False, x2, x3) 27.89/11.38 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.38 new_ltEs19(x0, x1, ty_Char) 27.89/11.38 new_esEs18(x0, x1, ty_Double) 27.89/11.38 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 27.89/11.38 new_esEs18(x0, x1, ty_Ordering) 27.89/11.38 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.38 new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 27.89/11.38 new_esEs25(x0, x1, ty_@0) 27.89/11.38 new_lt17(x0, x1) 27.89/11.38 new_compare8(Integer(x0), Integer(x1)) 27.89/11.38 new_lt8(x0, x1, ty_Double) 27.89/11.38 new_lt20(x0, x1, ty_Char) 27.89/11.38 new_esEs26(x0, x1, ty_Integer) 27.89/11.38 new_esEs29(x0, x1, app(ty_Maybe, x2)) 27.89/11.38 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 27.89/11.38 new_compare29(x0, x1, app(ty_Maybe, x2)) 27.89/11.38 new_esEs4(Just(x0), Just(x1), ty_Bool) 27.89/11.38 new_ltEs19(x0, x1, ty_Int) 27.89/11.38 new_compare28(:%(x0, x1), :%(x2, x3), ty_Integer) 27.89/11.38 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 27.89/11.38 new_primCompAux1(x0, x1, x2, x3) 27.89/11.38 new_esEs19(x0, x1, app(ty_Maybe, x2)) 27.89/11.38 new_lt20(x0, x1, ty_Int) 27.89/11.38 new_compare29(x0, x1, ty_@0) 27.89/11.38 new_esEs19(x0, x1, ty_Float) 27.89/11.38 new_esEs25(x0, x1, ty_Integer) 27.89/11.38 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.38 new_primCmpInt(Neg(Zero), Neg(Zero)) 27.89/11.38 new_ltEs6(Right(x0), Left(x1), x2, x3) 27.89/11.38 new_ltEs20(x0, x1, ty_Float) 27.89/11.38 new_ltEs6(Left(x0), Right(x1), x2, x3) 27.89/11.38 new_compare23(Nothing, Just(x0), False, x1) 27.89/11.38 new_compare23(Nothing, Nothing, False, x0) 27.89/11.38 new_esEs23(x0, x1, app(ty_[], x2)) 27.89/11.38 new_esEs27(x0, x1, ty_Int) 27.89/11.38 new_esEs26(x0, x1, ty_Float) 27.89/11.38 new_ltEs7(Just(x0), Just(x1), ty_Double) 27.89/11.38 new_compare210(x0, x1, False) 27.89/11.38 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 27.89/11.38 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.38 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.38 new_esEs23(x0, x1, app(ty_Ratio, x2)) 27.89/11.38 new_ltEs14(x0, x1) 27.89/11.38 new_esEs26(x0, x1, ty_Bool) 27.89/11.38 new_primCmpInt(Pos(Zero), Neg(Zero)) 27.89/11.38 new_primCmpInt(Neg(Zero), Pos(Zero)) 27.89/11.38 new_esEs20(x0, x1, app(ty_Maybe, x2)) 27.89/11.38 new_esEs20(x0, x1, app(ty_[], x2)) 27.89/11.38 new_esEs27(x0, x1, ty_Integer) 27.89/11.38 new_esEs22(x0, x1, ty_Integer) 27.89/11.38 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.38 new_lt8(x0, x1, app(ty_[], x2)) 27.89/11.38 new_compare29(x0, x1, app(ty_[], x2)) 27.89/11.38 new_lt14(x0, x1, x2, x3) 27.89/11.38 new_esEs21(x0, x1, ty_Char) 27.89/11.38 new_esEs21(x0, x1, ty_Integer) 27.89/11.38 new_ltEs8(True, False) 27.89/11.38 new_ltEs8(False, True) 27.89/11.38 new_esEs4(Just(x0), Just(x1), ty_Char) 27.89/11.38 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.38 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 27.89/11.38 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.38 new_lt5(x0, x1, x2) 27.89/11.38 new_lt20(x0, x1, ty_Float) 27.89/11.38 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 27.89/11.38 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 27.89/11.38 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 27.89/11.38 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 27.89/11.38 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 27.89/11.38 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.38 new_lt19(x0, x1, ty_Double) 27.89/11.38 new_compare11(x0, x1, False, x2, x3, x4) 27.89/11.38 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 27.89/11.38 new_compare29(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.38 new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 27.89/11.38 new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 27.89/11.38 new_lt20(x0, x1, app(ty_Ratio, x2)) 27.89/11.38 new_esEs29(x0, x1, ty_Ordering) 27.89/11.38 new_esEs19(x0, x1, ty_Char) 27.89/11.38 new_esEs23(x0, x1, ty_Float) 27.89/11.38 new_esEs9(:(x0, x1), [], x2) 27.89/11.38 new_ltEs18(x0, x1, ty_Ordering) 27.89/11.38 new_esEs4(Just(x0), Just(x1), ty_Int) 27.89/11.38 new_compare19(x0, x1, False, x2) 27.89/11.38 new_lt19(x0, x1, app(ty_Maybe, x2)) 27.89/11.38 new_esEs4(Just(x0), Just(x1), ty_Float) 27.89/11.38 new_esEs26(x0, x1, app(ty_[], x2)) 27.89/11.38 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 27.89/11.38 new_lt19(x0, x1, ty_@0) 27.89/11.38 new_esEs29(x0, x1, ty_Integer) 27.89/11.38 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 27.89/11.38 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.38 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 27.89/11.38 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.38 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 27.89/11.38 new_esEs22(x0, x1, ty_Ordering) 27.89/11.38 new_lt20(x0, x1, app(ty_Maybe, x2)) 27.89/11.38 new_primCmpNat2(Succ(x0), Zero) 27.89/11.38 new_esEs24(x0, x1, app(ty_Maybe, x2)) 27.89/11.38 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 27.89/11.38 new_esEs23(x0, x1, ty_Int) 27.89/11.38 new_lt19(x0, x1, ty_Int) 27.89/11.38 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.38 new_esEs22(x0, x1, ty_Double) 27.89/11.38 new_ltEs7(Just(x0), Just(x1), ty_Char) 27.89/11.38 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.38 new_primCmpNat2(Succ(x0), Succ(x1)) 27.89/11.38 new_esEs21(x0, x1, ty_Float) 27.89/11.38 new_esEs19(x0, x1, ty_Bool) 27.89/11.38 new_lt19(x0, x1, app(ty_[], x2)) 27.89/11.38 new_compare25(x0, x1, False) 27.89/11.38 new_ltEs20(x0, x1, ty_Char) 27.89/11.38 new_esEs26(x0, x1, ty_Char) 27.89/11.38 new_esEs25(x0, x1, ty_Ordering) 27.89/11.38 new_lt11(x0, x1, x2, x3, x4) 27.89/11.38 new_ltEs18(x0, x1, ty_Integer) 27.89/11.38 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 27.89/11.38 new_primMulNat0(Zero, Zero) 27.89/11.38 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 27.89/11.38 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 27.89/11.38 new_ltEs19(x0, x1, ty_Integer) 27.89/11.38 new_esEs24(x0, x1, ty_Double) 27.89/11.38 new_primEqNat0(Succ(x0), Zero) 27.89/11.38 new_esEs15(EQ, EQ) 27.89/11.38 new_primEqNat0(Succ(x0), Succ(x1)) 27.89/11.38 new_esEs25(x0, x1, ty_Int) 27.89/11.38 new_ltEs18(x0, x1, ty_Bool) 27.89/11.38 new_esEs23(x0, x1, ty_Char) 27.89/11.38 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.38 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.38 new_ltEs19(x0, x1, ty_Bool) 27.89/11.38 new_esEs26(x0, x1, ty_Int) 27.89/11.38 new_lt20(x0, x1, ty_Integer) 27.89/11.38 new_ltEs10(EQ, EQ) 27.89/11.38 new_ltEs7(Just(x0), Nothing, x1) 27.89/11.38 new_esEs19(x0, x1, ty_Integer) 27.89/11.38 new_compare9(@0, @0) 27.89/11.38 new_ltEs19(x0, x1, ty_@0) 27.89/11.38 new_compare110(x0, x1, False) 27.89/11.38 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.38 new_ltEs20(x0, x1, ty_Int) 27.89/11.38 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 27.89/11.38 new_lt4(x0, x1) 27.89/11.38 new_esEs24(x0, x1, ty_Ordering) 27.89/11.38 new_esEs19(x0, x1, ty_@0) 27.89/11.38 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 27.89/11.38 new_lt8(x0, x1, app(ty_Ratio, x2)) 27.89/11.38 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 27.89/11.38 new_compare29(x0, x1, ty_Float) 27.89/11.38 new_lt8(x0, x1, app(ty_Maybe, x2)) 27.89/11.38 new_esEs18(x0, x1, ty_Char) 27.89/11.38 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 27.89/11.38 new_primCmpNat2(Zero, Zero) 27.89/11.38 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 27.89/11.38 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 27.89/11.38 new_esEs18(x0, x1, ty_@0) 27.89/11.38 new_compare6(x0, x1, x2) 27.89/11.38 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 27.89/11.38 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.38 new_lt10(x0, x1) 27.89/11.38 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 27.89/11.38 new_ltEs7(Just(x0), Just(x1), ty_Int) 27.89/11.38 new_compare24(x0, x1, False, x2, x3, x4) 27.89/11.38 new_asAs(False, x0) 27.89/11.38 new_esEs29(x0, x1, ty_Bool) 27.89/11.38 new_esEs23(x0, x1, app(ty_Maybe, x2)) 27.89/11.38 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.38 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 27.89/11.38 new_primEqNat0(Zero, Succ(x0)) 27.89/11.38 new_not(True) 27.89/11.38 new_lt20(x0, x1, ty_Bool) 27.89/11.38 new_esEs22(x0, x1, ty_Char) 27.89/11.38 new_ltEs10(GT, LT) 27.89/11.38 new_ltEs7(Just(x0), Just(x1), ty_@0) 27.89/11.38 new_ltEs10(LT, GT) 27.89/11.38 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.38 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 27.89/11.38 new_esEs22(x0, x1, app(ty_Ratio, x2)) 27.89/11.38 new_lt8(x0, x1, ty_Float) 27.89/11.38 new_esEs12(False, False) 27.89/11.38 new_ltEs20(x0, x1, ty_Double) 27.89/11.38 new_esEs22(x0, x1, app(ty_[], x2)) 27.89/11.38 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 27.89/11.38 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 27.89/11.38 new_ltEs20(x0, x1, ty_@0) 27.89/11.38 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_esEs20(x0, x1, ty_Integer) 27.89/11.39 new_esEs26(x0, x1, ty_Ordering) 27.89/11.39 new_ltEs4(x0, x1) 27.89/11.39 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 27.89/11.39 new_esEs9([], [], x0) 27.89/11.39 new_esEs18(x0, x1, ty_Integer) 27.89/11.39 new_compare18(x0, x1, True, x2, x3) 27.89/11.39 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_esEs25(x0, x1, ty_Char) 27.89/11.39 new_primMulNat0(Zero, Succ(x0)) 27.89/11.39 new_primCmpNat0(x0, Zero) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 27.89/11.39 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 27.89/11.39 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 27.89/11.39 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 27.89/11.39 new_esEs29(x0, x1, ty_Float) 27.89/11.39 new_ltEs16(x0, x1, x2) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 27.89/11.39 new_esEs18(x0, x1, ty_Bool) 27.89/11.39 new_esEs22(x0, x1, ty_Int) 27.89/11.39 new_primPlusNat1(Zero, Succ(x0)) 27.89/11.39 new_esEs20(x0, x1, ty_Bool) 27.89/11.39 new_compare23(x0, x1, True, x2) 27.89/11.39 new_ltEs7(Nothing, Just(x0), x1) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 27.89/11.39 new_lt6(x0, x1) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 27.89/11.39 new_esEs20(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_esEs4(Just(x0), Just(x1), ty_Integer) 27.89/11.39 new_ltEs18(x0, x1, ty_Char) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 27.89/11.39 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 27.89/11.39 new_esEs25(x0, x1, ty_Double) 27.89/11.39 new_compare17(x0, x1, False, x2, x3) 27.89/11.39 new_ltEs18(x0, x1, ty_@0) 27.89/11.39 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_esEs25(x0, x1, ty_Bool) 27.89/11.39 new_esEs29(x0, x1, ty_@0) 27.89/11.39 new_esEs21(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_esEs26(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_lt18(x0, x1) 27.89/11.39 new_esEs24(x0, x1, app(ty_[], x2)) 27.89/11.39 new_esEs9([], :(x0, x1), x2) 27.89/11.39 new_lt19(x0, x1, ty_Ordering) 27.89/11.39 new_esEs22(x0, x1, ty_@0) 27.89/11.39 new_ltEs18(x0, x1, ty_Int) 27.89/11.39 new_esEs23(x0, x1, ty_Ordering) 27.89/11.39 new_ltEs20(x0, x1, app(ty_[], x2)) 27.89/11.39 new_ltEs20(x0, x1, ty_Bool) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 27.89/11.39 new_primCmpInt(Pos(Zero), Pos(Zero)) 27.89/11.39 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 27.89/11.39 new_ltEs11(x0, x1, x2) 27.89/11.39 new_esEs9(:(x0, x1), :(x2, x3), x4) 27.89/11.39 new_pePe(True, x0) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), ty_Integer) 27.89/11.39 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 27.89/11.39 new_ltEs19(x0, x1, ty_Ordering) 27.89/11.39 new_compare25(x0, x1, True) 27.89/11.39 new_primMulInt(Neg(x0), Neg(x1)) 27.89/11.39 new_lt19(x0, x1, ty_Integer) 27.89/11.39 new_esEs6(Left(x0), Right(x1), x2, x3) 27.89/11.39 new_esEs6(Right(x0), Left(x1), x2, x3) 27.89/11.39 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 27.89/11.39 new_compare12(x0, x1) 27.89/11.39 new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 27.89/11.39 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 27.89/11.39 new_esEs18(x0, x1, ty_Float) 27.89/11.39 new_ltEs18(x0, x1, ty_Float) 27.89/11.39 new_primMulNat0(Succ(x0), Succ(x1)) 27.89/11.39 new_ltEs19(x0, x1, ty_Double) 27.89/11.39 new_compare11(x0, x1, True, x2, x3, x4) 27.89/11.39 new_esEs15(GT, GT) 27.89/11.39 new_primCmpNat1(Zero, x0) 27.89/11.39 new_esEs29(x0, x1, ty_Double) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 27.89/11.39 new_esEs28(x0, x1, ty_Integer) 27.89/11.39 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_esEs15(LT, EQ) 27.89/11.39 new_esEs15(EQ, LT) 27.89/11.39 new_lt19(x0, x1, ty_Bool) 27.89/11.39 new_primPlusNat0(x0, x1) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 27.89/11.39 new_esEs20(x0, x1, ty_Char) 27.89/11.39 new_lt20(x0, x1, ty_@0) 27.89/11.39 new_lt16(x0, x1) 27.89/11.39 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 27.89/11.39 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 27.89/11.39 new_esEs21(x0, x1, ty_@0) 27.89/11.39 new_compare16(x0, x1) 27.89/11.39 new_fsEs(x0) 27.89/11.39 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_esEs24(x0, x1, ty_Integer) 27.89/11.39 new_primPlusNat1(Succ(x0), Succ(x1)) 27.89/11.39 new_compare211(x0, x1, False, x2, x3) 27.89/11.39 new_compare19(x0, x1, True, x2) 27.89/11.39 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_esEs18(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_esEs18(x0, x1, app(ty_[], x2)) 27.89/11.39 new_ltEs20(x0, x1, ty_Integer) 27.89/11.39 new_esEs8(@0, @0) 27.89/11.39 new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 27.89/11.39 new_esEs19(x0, x1, app(ty_[], x2)) 27.89/11.39 new_esEs18(x0, x1, ty_Int) 27.89/11.39 new_esEs20(x0, x1, ty_Int) 27.89/11.39 new_primEqNat0(Zero, Zero) 27.89/11.39 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 27.89/11.39 new_esEs26(x0, x1, ty_Double) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 27.89/11.39 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 27.89/11.39 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_primCmpNat1(Succ(x0), x1) 27.89/11.39 new_esEs12(True, True) 27.89/11.39 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 27.89/11.39 new_esEs10(Integer(x0), Integer(x1)) 27.89/11.39 new_not(False) 27.89/11.39 new_esEs24(x0, x1, ty_Char) 27.89/11.39 new_lt8(x0, x1, ty_Bool) 27.89/11.39 new_esEs26(x0, x1, ty_@0) 27.89/11.39 new_compare10(x0, x1, True) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), ty_Bool) 27.89/11.39 new_ltEs9(x0, x1) 27.89/11.39 new_compare1([], [], x0) 27.89/11.39 new_ltEs20(x0, x1, ty_Ordering) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 27.89/11.39 new_esEs24(x0, x1, ty_Int) 27.89/11.39 new_esEs13(Float(x0, x1), Float(x2, x3)) 27.89/11.39 new_primCompAux0(x0, GT) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 27.89/11.39 new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 27.89/11.39 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_primMulNat0(Succ(x0), Zero) 27.89/11.39 new_ltEs18(x0, x1, app(ty_[], x2)) 27.89/11.39 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_esEs23(x0, x1, ty_Double) 27.89/11.39 new_ltEs8(True, True) 27.89/11.39 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_esEs20(x0, x1, ty_Float) 27.89/11.39 new_lt7(x0, x1) 27.89/11.39 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_esEs25(x0, x1, app(ty_[], x2)) 27.89/11.39 new_lt8(x0, x1, ty_Ordering) 27.89/11.39 new_lt9(x0, x1, x2) 27.89/11.39 new_lt19(x0, x1, ty_Float) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 27.89/11.39 new_lt8(x0, x1, ty_Integer) 27.89/11.39 new_compare23(Just(x0), Just(x1), False, x2) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 27.89/11.39 new_compare23(Just(x0), Nothing, False, x1) 27.89/11.39 new_compare18(x0, x1, False, x2, x3) 27.89/11.39 new_lt19(x0, x1, ty_Char) 27.89/11.39 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_esEs14(:%(x0, x1), :%(x2, x3), x4) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 27.89/11.39 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 27.89/11.39 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 27.89/11.39 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 27.89/11.39 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 27.89/11.39 new_esEs19(x0, x1, ty_Double) 27.89/11.39 new_esEs22(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_esEs21(x0, x1, app(ty_[], x2)) 27.89/11.39 new_compare26(x0, x1, x2, x3) 27.89/11.39 new_esEs23(x0, x1, ty_@0) 27.89/11.39 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_esEs11(Double(x0, x1), Double(x2, x3)) 27.89/11.39 new_compare24(x0, x1, True, x2, x3, x4) 27.89/11.39 new_compare1(:(x0, x1), :(x2, x3), x4) 27.89/11.39 new_esEs4(Just(x0), Just(x1), ty_@0) 27.89/11.39 new_ltEs17(x0, x1) 27.89/11.39 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 27.89/11.39 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 27.89/11.39 new_esEs4(Nothing, Just(x0), x1) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 27.89/11.39 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_compare30(x0, x1, x2, x3) 27.89/11.39 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 27.89/11.39 new_esEs24(x0, x1, ty_Bool) 27.89/11.39 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 27.89/11.39 27.89/11.39 We have to consider all minimal (P,Q,R)-chains. 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (33) QDPSizeChangeProof (EQUIVALENT) 27.89/11.39 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. 27.89/11.39 27.89/11.39 From the DPs we obtained the following set of size-change graphs: 27.89/11.39 *new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv16, Just(xwv18), bb, bc) 27.89/11.39 The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4 27.89/11.39 27.89/11.39 27.89/11.39 *new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM21(xwv300, xwv31, xwv32, xwv33, xwv34, xwv40, new_esEs15(new_compare23(Just(xwv40), Just(xwv300), new_esEs29(xwv40, xwv300, h), h), GT), h, ba) 27.89/11.39 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9 27.89/11.39 27.89/11.39 27.89/11.39 *new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Just(xwv40), h, ba) -> new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, True, h, ba) 27.89/11.39 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 2 > 5, 3 >= 7, 4 >= 8 27.89/11.39 27.89/11.39 27.89/11.39 *new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, False, bb, bc) -> new_delFromFM12(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, new_esEs15(new_compare23(Just(xwv18), Just(xwv13), new_esEs4(Just(xwv18), Just(xwv13), bb), bb), LT), bb, bc) 27.89/11.39 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 27.89/11.39 27.89/11.39 27.89/11.39 *new_delFromFM21(xwv13, xwv14, xwv15, xwv16, xwv17, xwv18, True, bb, bc) -> new_delFromFM(xwv17, Just(xwv18), bb, bc) 27.89/11.39 The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4 27.89/11.39 27.89/11.39 27.89/11.39 *new_delFromFM20(xwv31, xwv32, xwv33, xwv34, xwv40, True, h, ba) -> new_delFromFM(xwv34, Just(xwv40), h, ba) 27.89/11.39 The graph contains the following edges 4 >= 1, 7 >= 3, 8 >= 4 27.89/11.39 27.89/11.39 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (34) 27.89/11.39 YES 27.89/11.39 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (35) 27.89/11.39 Obligation: 27.89/11.39 Q DP problem: 27.89/11.39 The TRS P consists of the following rules: 27.89/11.39 27.89/11.39 new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Nothing, h, ba) -> new_delFromFM1(xwv31, xwv32, xwv33, xwv34, new_esEs15(new_compare23(Nothing, Nothing, new_esEs4(Nothing, Nothing, h), h), LT), h, ba) 27.89/11.39 new_delFromFM1(xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv33, Nothing, h, ba) 27.89/11.39 new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Nothing, h, ba) -> new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, new_esEs15(new_compare23(Nothing, Just(xwv300), False, h), GT), h, ba) 27.89/11.39 new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv34, Nothing, h, ba) 27.89/11.39 new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, False, h, ba) -> new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, new_esEs15(new_compare23(Nothing, Just(xwv300), new_esEs4(Nothing, Just(xwv300), h), h), LT), h, ba) 27.89/11.39 new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv33, Nothing, h, ba) 27.89/11.39 27.89/11.39 The TRS R consists of the following rules: 27.89/11.39 27.89/11.39 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 27.89/11.39 new_primCmpInt(Neg(Succ(xwv2800)), Pos(xwv290)) -> LT 27.89/11.39 new_ltEs19(xwv2800, xwv2900, ty_Double) -> new_ltEs4(xwv2800, xwv2900) 27.89/11.39 new_pePe(True, xwv131) -> True 27.89/11.39 new_esEs24(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.89/11.39 new_compare29(xwv28000, xwv29000, app(app(ty_@2, cac), cad)) -> new_compare30(xwv28000, xwv29000, cac, cad) 27.89/11.39 new_ltEs14(xwv2800, xwv2900) -> new_fsEs(new_compare14(xwv2800, xwv2900)) 27.89/11.39 new_lt8(xwv28000, xwv29000, app(app(ty_@2, bah), bba)) -> new_lt14(xwv28000, xwv29000, bah, bba) 27.89/11.39 new_compare23(xwv280, xwv290, True, bee) -> EQ 27.89/11.39 new_esEs23(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.89/11.39 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 27.89/11.39 new_ltEs20(xwv28002, xwv29002, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_ltEs5(xwv28002, xwv29002, ccb, ccc, ccd) 27.89/11.39 new_primCmpInt(Pos(Zero), Neg(Succ(xwv2900))) -> GT 27.89/11.39 new_esEs29(xwv40, xwv300, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs5(xwv40, xwv300, bff, bfg, bfh) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Ordering, eh) -> new_ltEs10(xwv28000, xwv29000) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, app(app(ty_@2, hg), hh)) -> new_ltEs12(xwv2800, xwv2900, hg, hh) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Int, eh) -> new_ltEs14(xwv28000, xwv29000) 27.89/11.39 new_esEs18(xwv28000, xwv29000, ty_Float) -> new_esEs13(xwv28000, xwv29000) 27.89/11.39 new_esEs24(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.89/11.39 new_esEs20(xwv28000, xwv29000, ty_Double) -> new_esEs11(xwv28000, xwv29000) 27.89/11.39 new_esEs26(xwv402, xwv3002, app(app(ty_@2, daf), dag)) -> new_esEs7(xwv402, xwv3002, daf, dag) 27.89/11.39 new_compare15(xwv28000, xwv29000, ed, ee, ef) -> new_compare24(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, ed, ee, ef), ed, ee, ef) 27.89/11.39 new_esEs18(xwv28000, xwv29000, ty_Bool) -> new_esEs12(xwv28000, xwv29000) 27.89/11.39 new_ltEs10(GT, LT) -> False 27.89/11.39 new_lt7(xwv28000, xwv29000) -> new_esEs15(new_compare8(xwv28000, xwv29000), LT) 27.89/11.39 new_ltEs4(xwv2800, xwv2900) -> new_fsEs(new_compare7(xwv2800, xwv2900)) 27.89/11.39 new_esEs25(xwv401, xwv3001, ty_Double) -> new_esEs11(xwv401, xwv3001) 27.89/11.39 new_primCompAux0(xwv153, GT) -> GT 27.89/11.39 new_esEs22(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.89/11.39 new_esEs28(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.89/11.39 new_esEs19(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, ty_Double) -> new_ltEs4(xwv28002, xwv29002) 27.89/11.39 new_compare210(xwv28000, xwv29000, False) -> new_compare110(xwv28000, xwv29000, new_ltEs10(xwv28000, xwv29000)) 27.89/11.39 new_primEqInt(Pos(Succ(xwv4000)), Pos(Zero)) -> False 27.89/11.39 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 27.89/11.39 new_esEs27(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.89/11.39 new_ltEs10(EQ, LT) -> False 27.89/11.39 new_compare31(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.89/11.39 new_ltEs11(xwv2800, xwv2900, bfb) -> new_fsEs(new_compare28(xwv2800, xwv2900, bfb)) 27.89/11.39 new_esEs23(xwv401, xwv3001, app(ty_[], cee)) -> new_esEs9(xwv401, xwv3001, cee) 27.89/11.39 new_lt16(xwv280, xwv290) -> new_esEs15(new_compare14(xwv280, xwv290), LT) 27.89/11.39 new_primCmpNat2(Succ(xwv28000), Succ(xwv29000)) -> new_primCmpNat2(xwv28000, xwv29000) 27.89/11.39 new_esEs20(xwv28000, xwv29000, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs5(xwv28000, xwv29000, ed, ee, ef) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), ty_Double, bd) -> new_esEs11(xwv400, xwv3000) 27.89/11.39 new_compare1(:(xwv28000, xwv28001), [], bce) -> GT 27.89/11.39 new_esEs22(xwv400, xwv3000, app(ty_Maybe, cdh)) -> new_esEs4(xwv400, xwv3000, cdh) 27.89/11.39 new_primEqNat0(Succ(xwv4000), Succ(xwv30000)) -> new_primEqNat0(xwv4000, xwv30000) 27.89/11.39 new_esEs23(xwv401, xwv3001, app(ty_Ratio, cff)) -> new_esEs14(xwv401, xwv3001, cff) 27.89/11.39 new_esEs29(xwv40, xwv300, ty_Float) -> new_esEs13(xwv40, xwv300) 27.89/11.39 new_compare12(xwv28000, xwv29000) -> new_compare210(xwv28000, xwv29000, new_esEs15(xwv28000, xwv29000)) 27.89/11.39 new_primCompAux0(xwv153, LT) -> LT 27.89/11.39 new_esEs20(xwv28000, xwv29000, ty_Ordering) -> new_esEs15(xwv28000, xwv29000) 27.89/11.39 new_not(True) -> False 27.89/11.39 new_ltEs18(xwv28001, xwv29001, app(ty_Maybe, bbc)) -> new_ltEs7(xwv28001, xwv29001, bbc) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs5(xwv2800, xwv2900, beg, beh, bfa) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs5(xwv28000, xwv29000, dbg, dbh, dca) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Integer) -> new_ltEs9(xwv28000, xwv29000) 27.89/11.39 new_esEs29(xwv40, xwv300, ty_Ordering) -> new_esEs15(xwv40, xwv300) 27.89/11.39 new_compare17(xwv28000, xwv29000, False, bcf, bcg) -> GT 27.89/11.39 new_compare29(xwv28000, xwv29000, ty_@0) -> new_compare9(xwv28000, xwv29000) 27.89/11.39 new_esEs18(xwv28000, xwv29000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs5(xwv28000, xwv29000, bab, bac, bad) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, ty_Bool) -> new_ltEs8(xwv2800, xwv2900) 27.89/11.39 new_esEs23(xwv401, xwv3001, ty_Bool) -> new_esEs12(xwv401, xwv3001) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs5(xwv28001, xwv29001, bbd, bbe, bbf) 27.89/11.39 new_esEs15(LT, EQ) -> False 27.89/11.39 new_esEs15(EQ, LT) -> False 27.89/11.39 new_ltEs18(xwv28001, xwv29001, app(app(ty_Either, bbg), bbh)) -> new_ltEs6(xwv28001, xwv29001, bbg, bbh) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(ty_Either, fd), ff), eh) -> new_ltEs6(xwv28000, xwv29000, fd, ff) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Bool, eh) -> new_ltEs8(xwv28000, xwv29000) 27.89/11.39 new_compare29(xwv28000, xwv29000, app(ty_Maybe, bhd)) -> new_compare6(xwv28000, xwv29000, bhd) 27.89/11.39 new_esEs8(@0, @0) -> True 27.89/11.39 new_primEqNat0(Succ(xwv4000), Zero) -> False 27.89/11.39 new_primEqNat0(Zero, Succ(xwv30000)) -> False 27.89/11.39 new_esEs24(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_Ratio, cf), bd) -> new_esEs14(xwv400, xwv3000, cf) 27.89/11.39 new_ltEs7(Nothing, Just(xwv29000), bef) -> True 27.89/11.39 new_esEs19(xwv400, xwv3000, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs5(xwv400, xwv3000, bea, beb, bec) 27.89/11.39 new_primCmpNat0(xwv2800, Succ(xwv2900)) -> new_primCmpNat2(xwv2800, xwv2900) 27.89/11.39 new_esEs22(xwv400, xwv3000, app(app(ty_@2, cdf), cdg)) -> new_esEs7(xwv400, xwv3000, cdf, cdg) 27.89/11.39 new_esEs22(xwv400, xwv3000, app(ty_[], cdc)) -> new_esEs9(xwv400, xwv3000, cdc) 27.89/11.39 new_esEs25(xwv401, xwv3001, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs5(xwv401, xwv3001, chg, chh, daa) 27.89/11.39 new_compare110(xwv28000, xwv29000, True) -> LT 27.89/11.39 new_esEs18(xwv28000, xwv29000, ty_Double) -> new_esEs11(xwv28000, xwv29000) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(app(ty_@3, ge), gf), gg)) -> new_ltEs5(xwv28000, xwv29000, ge, gf, gg) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Double) -> new_ltEs4(xwv28000, xwv29000) 27.89/11.39 new_esEs18(xwv28000, xwv29000, app(ty_Ratio, bag)) -> new_esEs14(xwv28000, xwv29000, bag) 27.89/11.39 new_esEs23(xwv401, xwv3001, ty_@0) -> new_esEs8(xwv401, xwv3001) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_Maybe, eg), eh) -> new_ltEs7(xwv28000, xwv29000, eg) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.89/11.39 new_primCmpInt(Pos(Succ(xwv2800)), Neg(xwv290)) -> GT 27.89/11.39 new_esEs24(xwv400, xwv3000, app(ty_Ratio, cgh)) -> new_esEs14(xwv400, xwv3000, cgh) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Bool) -> new_ltEs8(xwv28000, xwv29000) 27.89/11.39 new_esEs24(xwv400, xwv3000, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs5(xwv400, xwv3000, cge, cgf, cgg) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Char, eh) -> new_ltEs13(xwv28000, xwv29000) 27.89/11.39 new_ltEs10(GT, EQ) -> False 27.89/11.39 new_esEs29(xwv40, xwv300, ty_Double) -> new_esEs11(xwv40, xwv300) 27.89/11.39 new_esEs18(xwv28000, xwv29000, ty_Ordering) -> new_esEs15(xwv28000, xwv29000) 27.89/11.39 new_ltEs17(xwv2800, xwv2900) -> new_fsEs(new_compare31(xwv2800, xwv2900)) 27.89/11.39 new_ltEs9(xwv2800, xwv2900) -> new_fsEs(new_compare8(xwv2800, xwv2900)) 27.89/11.39 new_compare1(:(xwv28000, xwv28001), :(xwv29000, xwv29001), bce) -> new_primCompAux1(xwv28000, xwv29000, new_compare1(xwv28001, xwv29001, bce), bce) 27.89/11.39 new_esEs26(xwv402, xwv3002, ty_Char) -> new_esEs16(xwv402, xwv3002) 27.89/11.39 new_primPlusNat1(Succ(xwv33200), Succ(xwv9100)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv9100))) 27.89/11.39 new_lt8(xwv28000, xwv29000, ty_Int) -> new_lt16(xwv28000, xwv29000) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), app(app(app(ty_@3, cc), cd), ce), bd) -> new_esEs5(xwv400, xwv3000, cc, cd, ce) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_Ratio, eb)) -> new_esEs14(xwv400, xwv3000, eb) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, ty_Bool) -> new_ltEs8(xwv28002, xwv29002) 27.89/11.39 new_esEs28(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_Maybe, gd)) -> new_ltEs7(xwv28000, xwv29000, gd) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, app(ty_Maybe, cca)) -> new_ltEs7(xwv28002, xwv29002, cca) 27.89/11.39 new_compare211(xwv28000, xwv29000, False, bch, bda) -> new_compare18(xwv28000, xwv29000, new_ltEs12(xwv28000, xwv29000, bch, bda), bch, bda) 27.89/11.39 new_compare210(xwv28000, xwv29000, True) -> EQ 27.89/11.39 new_lt8(xwv28000, xwv29000, ty_@0) -> new_lt4(xwv28000, xwv29000) 27.89/11.39 new_esEs21(xwv28001, xwv29001, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs5(xwv28001, xwv29001, cah, cba, cbb) 27.89/11.39 new_esEs14(:%(xwv400, xwv401), :%(xwv3000, xwv3001), bga) -> new_asAs(new_esEs27(xwv400, xwv3000, bga), new_esEs28(xwv401, xwv3001, bga)) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), ty_Ordering, bd) -> new_esEs15(xwv400, xwv3000) 27.89/11.39 new_pePe(False, xwv131) -> xwv131 27.89/11.39 new_lt19(xwv28000, xwv29000, ty_Int) -> new_lt16(xwv28000, xwv29000) 27.89/11.39 new_lt8(xwv28000, xwv29000, app(app(ty_Either, bae), baf)) -> new_lt12(xwv28000, xwv29000, bae, baf) 27.89/11.39 new_esEs22(xwv400, xwv3000, app(ty_Ratio, ced)) -> new_esEs14(xwv400, xwv3000, ced) 27.89/11.39 new_esEs12(False, False) -> True 27.89/11.39 new_esEs15(GT, GT) -> True 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Double, eh) -> new_ltEs4(xwv28000, xwv29000) 27.89/11.39 new_esEs22(xwv400, xwv3000, app(app(ty_Either, cdd), cde)) -> new_esEs6(xwv400, xwv3000, cdd, cde) 27.89/11.39 new_esEs15(EQ, GT) -> False 27.89/11.39 new_esEs15(GT, EQ) -> False 27.89/11.39 new_ltEs20(xwv28002, xwv29002, ty_Char) -> new_ltEs13(xwv28002, xwv29002) 27.89/11.39 new_lt8(xwv28000, xwv29000, ty_Ordering) -> new_lt6(xwv28000, xwv29000) 27.89/11.39 new_lt19(xwv28000, xwv29000, ty_Bool) -> new_lt10(xwv28000, xwv29000) 27.89/11.39 new_esEs25(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, ty_Double) -> new_ltEs4(xwv28001, xwv29001) 27.89/11.39 new_lt19(xwv28000, xwv29000, app(app(ty_Either, bcf), bcg)) -> new_lt12(xwv28000, xwv29000, bcf, bcg) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, app(ty_[], bcd)) -> new_ltEs16(xwv28001, xwv29001, bcd) 27.89/11.39 new_lt20(xwv28001, xwv29001, app(ty_Maybe, cag)) -> new_lt9(xwv28001, xwv29001, cag) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, app(app(ty_@2, bcb), bcc)) -> new_ltEs12(xwv28001, xwv29001, bcb, bcc) 27.89/11.39 new_esEs9(:(xwv400, xwv401), [], bdb) -> False 27.89/11.39 new_esEs9([], :(xwv3000, xwv3001), bdb) -> False 27.89/11.39 new_esEs25(xwv401, xwv3001, ty_Ordering) -> new_esEs15(xwv401, xwv3001) 27.89/11.39 new_lt19(xwv28000, xwv29000, app(ty_Maybe, ec)) -> new_lt9(xwv28000, xwv29000, ec) 27.89/11.39 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 27.89/11.39 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 27.89/11.39 new_esEs23(xwv401, xwv3001, app(ty_Maybe, cfb)) -> new_esEs4(xwv401, xwv3001, cfb) 27.89/11.39 new_compare11(xwv28000, xwv29000, True, ed, ee, ef) -> LT 27.89/11.39 new_esEs26(xwv402, xwv3002, app(ty_[], dac)) -> new_esEs9(xwv402, xwv3002, dac) 27.89/11.39 new_compare19(xwv117, xwv118, True, dbe) -> LT 27.89/11.39 new_ltEs18(xwv28001, xwv29001, ty_Integer) -> new_ltEs9(xwv28001, xwv29001) 27.89/11.39 new_compare30(xwv28000, xwv29000, bch, bda) -> new_compare211(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, bch, bda), bch, bda) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), ty_Integer, bd) -> new_esEs10(xwv400, xwv3000) 27.89/11.39 new_compare7(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.89/11.39 new_esEs20(xwv28000, xwv29000, app(ty_Ratio, caf)) -> new_esEs14(xwv28000, xwv29000, caf) 27.89/11.39 new_esEs21(xwv28001, xwv29001, ty_Float) -> new_esEs13(xwv28001, xwv29001) 27.89/11.39 new_lt6(xwv28000, xwv29000) -> new_esEs15(new_compare12(xwv28000, xwv29000), LT) 27.89/11.39 new_esEs18(xwv28000, xwv29000, ty_Char) -> new_esEs16(xwv28000, xwv29000) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, ty_Char) -> new_ltEs13(xwv2800, xwv2900) 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs5(xwv400, xwv3000, bgh, bha, bhb) 27.89/11.39 new_esEs19(xwv400, xwv3000, app(ty_Maybe, bdh)) -> new_esEs4(xwv400, xwv3000, bdh) 27.89/11.39 new_primEqInt(Neg(Succ(xwv4000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 27.89/11.39 new_primCmpInt(Neg(Zero), Pos(Succ(xwv2900))) -> LT 27.89/11.39 new_lt8(xwv28000, xwv29000, app(ty_[], bbb)) -> new_lt5(xwv28000, xwv29000, bbb) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_[], gb), eh) -> new_ltEs16(xwv28000, xwv29000, gb) 27.89/11.39 new_primMulInt(Pos(xwv4010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 27.89/11.39 new_ltEs8(True, False) -> False 27.89/11.39 new_lt18(xwv28000, xwv29000) -> new_esEs15(new_compare31(xwv28000, xwv29000), LT) 27.89/11.39 new_esEs24(xwv400, xwv3000, app(app(ty_Either, cfh), cga)) -> new_esEs6(xwv400, xwv3000, cfh, cga) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Float, eh) -> new_ltEs17(xwv28000, xwv29000) 27.89/11.39 new_compare18(xwv28000, xwv29000, False, bch, bda) -> GT 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), app(app(ty_Either, bf), bg), bd) -> new_esEs6(xwv400, xwv3000, bf, bg) 27.89/11.39 new_compare29(xwv28000, xwv29000, app(ty_[], cae)) -> new_compare1(xwv28000, xwv29000, cae) 27.89/11.39 new_ltEs16(xwv2800, xwv2900, bce) -> new_fsEs(new_compare1(xwv2800, xwv2900, bce)) 27.89/11.39 new_lt11(xwv28000, xwv29000, ed, ee, ef) -> new_esEs15(new_compare15(xwv28000, xwv29000, ed, ee, ef), LT) 27.89/11.39 new_esEs23(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.89/11.39 new_primMulNat0(Succ(xwv40100), Zero) -> Zero 27.89/11.39 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 27.89/11.39 new_ltEs8(False, False) -> True 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), ty_Float) -> new_esEs13(xwv400, xwv3000) 27.89/11.39 new_compare29(xwv28000, xwv29000, ty_Char) -> new_compare13(xwv28000, xwv29000) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(ty_Either, gh), ha)) -> new_ltEs6(xwv28000, xwv29000, gh, ha) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs5(xwv400, xwv3000, dg, dh, ea) 27.89/11.39 new_esEs23(xwv401, xwv3001, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_esEs5(xwv401, xwv3001, cfc, cfd, cfe) 27.89/11.39 new_esEs24(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.89/11.39 new_primCmpNat2(Succ(xwv28000), Zero) -> GT 27.89/11.39 new_compare11(xwv28000, xwv29000, False, ed, ee, ef) -> GT 27.89/11.39 new_lt8(xwv28000, xwv29000, ty_Char) -> new_lt15(xwv28000, xwv29000) 27.89/11.39 new_compare29(xwv28000, xwv29000, ty_Float) -> new_compare31(xwv28000, xwv29000) 27.89/11.39 new_esEs15(LT, GT) -> False 27.89/11.39 new_esEs15(GT, LT) -> False 27.89/11.39 new_lt20(xwv28001, xwv29001, app(app(app(ty_@3, cah), cba), cbb)) -> new_lt11(xwv28001, xwv29001, cah, cba, cbb) 27.89/11.39 new_esEs25(xwv401, xwv3001, ty_@0) -> new_esEs8(xwv401, xwv3001) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), app(app(ty_@2, bh), ca), bd) -> new_esEs7(xwv400, xwv3000, bh, ca) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, ty_Bool) -> new_ltEs8(xwv28001, xwv29001) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, app(app(ty_@2, cch), cda)) -> new_ltEs12(xwv28002, xwv29002, cch, cda) 27.89/11.39 new_compare17(xwv28000, xwv29000, True, bcf, bcg) -> LT 27.89/11.39 new_compare18(xwv28000, xwv29000, True, bch, bda) -> LT 27.89/11.39 new_compare1([], [], bce) -> EQ 27.89/11.39 new_lt20(xwv28001, xwv29001, ty_Bool) -> new_lt10(xwv28001, xwv29001) 27.89/11.39 new_esEs9(:(xwv400, xwv401), :(xwv3000, xwv3001), bdb) -> new_asAs(new_esEs19(xwv400, xwv3000, bdb), new_esEs9(xwv401, xwv3001, bdb)) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Int) -> new_ltEs14(xwv28000, xwv29000) 27.89/11.39 new_esEs20(xwv28000, xwv29000, ty_Float) -> new_esEs13(xwv28000, xwv29000) 27.89/11.39 new_esEs20(xwv28000, xwv29000, app(ty_Maybe, ec)) -> new_esEs4(xwv28000, xwv29000, ec) 27.89/11.39 new_compare29(xwv28000, xwv29000, ty_Ordering) -> new_compare12(xwv28000, xwv29000) 27.89/11.39 new_esEs24(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.89/11.39 new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) 27.89/11.39 new_primPlusNat1(Zero, Succ(xwv9100)) -> Succ(xwv9100) 27.89/11.39 new_esEs26(xwv402, xwv3002, ty_@0) -> new_esEs8(xwv402, xwv3002) 27.89/11.39 new_lt20(xwv28001, xwv29001, ty_Int) -> new_lt16(xwv28001, xwv29001) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, app(ty_[], cdb)) -> new_ltEs16(xwv28002, xwv29002, cdb) 27.89/11.39 new_compare23(Just(xwv2800), Nothing, False, bee) -> GT 27.89/11.39 new_compare13(Char(xwv28000), Char(xwv29000)) -> new_primCmpNat2(xwv28000, xwv29000) 27.89/11.39 new_esEs17(xwv40, xwv300) -> new_primEqInt(xwv40, xwv300) 27.89/11.39 new_lt20(xwv28001, xwv29001, ty_Float) -> new_lt18(xwv28001, xwv29001) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), ty_@0, bd) -> new_esEs8(xwv400, xwv3000) 27.89/11.39 new_compare6(xwv28000, xwv29000, ec) -> new_compare23(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, ec), ec) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, ty_Integer) -> new_ltEs9(xwv28002, xwv29002) 27.89/11.39 new_primCompAux1(xwv28000, xwv29000, xwv141, bce) -> new_primCompAux0(xwv141, new_compare29(xwv28000, xwv29000, bce)) 27.89/11.39 new_esEs25(xwv401, xwv3001, ty_Bool) -> new_esEs12(xwv401, xwv3001) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, ty_Integer) -> new_ltEs9(xwv2800, xwv2900) 27.89/11.39 new_esEs24(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.89/11.39 new_esEs26(xwv402, xwv3002, ty_Int) -> new_esEs17(xwv402, xwv3002) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, app(ty_[], bce)) -> new_ltEs16(xwv2800, xwv2900, bce) 27.89/11.39 new_esEs19(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_[], da)) -> new_esEs9(xwv400, xwv3000, da) 27.89/11.39 new_compare28(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Int) -> new_compare14(new_sr(xwv28000, xwv29001), new_sr(xwv29000, xwv28001)) 27.89/11.39 new_esEs21(xwv28001, xwv29001, app(ty_Maybe, cag)) -> new_esEs4(xwv28001, xwv29001, cag) 27.89/11.39 new_primMulInt(Neg(xwv4010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 27.89/11.39 new_lt14(xwv28000, xwv29000, bch, bda) -> new_esEs15(new_compare30(xwv28000, xwv29000, bch, bda), LT) 27.89/11.39 new_esEs25(xwv401, xwv3001, app(app(ty_@2, chd), che)) -> new_esEs7(xwv401, xwv3001, chd, che) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_@0) -> new_ltEs15(xwv28000, xwv29000) 27.89/11.39 new_lt19(xwv28000, xwv29000, ty_Float) -> new_lt18(xwv28000, xwv29000) 27.89/11.39 new_esEs7(@2(xwv400, xwv401), @2(xwv3000, xwv3001), bfc, bfd) -> new_asAs(new_esEs22(xwv400, xwv3000, bfc), new_esEs23(xwv401, xwv3001, bfd)) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(ty_@2, dd), de)) -> new_esEs7(xwv400, xwv3000, dd, de) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), ty_Bool, bd) -> new_esEs12(xwv400, xwv3000) 27.89/11.39 new_ltEs12(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), hg, hh) -> new_pePe(new_lt8(xwv28000, xwv29000, hg), new_asAs(new_esEs18(xwv28000, xwv29000, hg), new_ltEs18(xwv28001, xwv29001, hh))) 27.89/11.39 new_esEs26(xwv402, xwv3002, ty_Double) -> new_esEs11(xwv402, xwv3002) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Ordering) -> new_ltEs10(xwv28000, xwv29000) 27.89/11.39 new_ltEs8(False, True) -> True 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_Maybe, bgg)) -> new_esEs4(xwv400, xwv3000, bgg) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Float) -> new_ltEs17(xwv28000, xwv29000) 27.89/11.39 new_esEs23(xwv401, xwv3001, app(app(ty_Either, cef), ceg)) -> new_esEs6(xwv401, xwv3001, cef, ceg) 27.89/11.39 new_esEs24(xwv400, xwv3000, app(ty_[], cfg)) -> new_esEs9(xwv400, xwv3000, cfg) 27.89/11.39 new_compare31(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Char) -> new_ltEs13(xwv28000, xwv29000) 27.89/11.39 new_esEs21(xwv28001, xwv29001, app(app(ty_Either, cbc), cbd)) -> new_esEs6(xwv28001, xwv29001, cbc, cbd) 27.89/11.39 new_esEs13(Float(xwv400, xwv401), Float(xwv3000, xwv3001)) -> new_esEs17(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 27.89/11.39 new_esEs26(xwv402, xwv3002, ty_Integer) -> new_esEs10(xwv402, xwv3002) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, ty_Ordering) -> new_ltEs10(xwv28001, xwv29001) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(ty_@2, fh), ga), eh) -> new_ltEs12(xwv28000, xwv29000, fh, ga) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), ty_Int, bd) -> new_esEs17(xwv400, xwv3000) 27.89/11.39 new_compare8(Integer(xwv28000), Integer(xwv29000)) -> new_primCmpInt(xwv28000, xwv29000) 27.89/11.39 new_primMulInt(Pos(xwv4010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 27.89/11.39 new_primMulInt(Neg(xwv4010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 27.89/11.39 new_lt8(xwv28000, xwv29000, app(app(app(ty_@3, bab), bac), bad)) -> new_lt11(xwv28000, xwv29000, bab, bac, bad) 27.89/11.39 new_esEs20(xwv28000, xwv29000, ty_@0) -> new_esEs8(xwv28000, xwv29000) 27.89/11.39 new_compare29(xwv28000, xwv29000, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_compare15(xwv28000, xwv29000, bhe, bhf, bhg) 27.89/11.39 new_compare29(xwv28000, xwv29000, ty_Bool) -> new_compare16(xwv28000, xwv29000) 27.89/11.39 new_primCmpInt(Pos(Succ(xwv2800)), Pos(xwv290)) -> new_primCmpNat0(xwv2800, xwv290) 27.89/11.39 new_esEs15(LT, LT) -> True 27.89/11.39 new_esEs24(xwv400, xwv3000, app(ty_Maybe, cgd)) -> new_esEs4(xwv400, xwv3000, cgd) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(app(ty_Either, db), dc)) -> new_esEs6(xwv400, xwv3000, db, dc) 27.89/11.39 new_lt9(xwv28000, xwv29000, ec) -> new_esEs15(new_compare6(xwv28000, xwv29000, ec), LT) 27.89/11.39 new_esEs19(xwv400, xwv3000, app(ty_[], bdc)) -> new_esEs9(xwv400, xwv3000, bdc) 27.89/11.39 new_esEs25(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.89/11.39 new_esEs22(xwv400, xwv3000, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs5(xwv400, xwv3000, cea, ceb, cec) 27.89/11.39 new_esEs19(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.89/11.39 new_lt8(xwv28000, xwv29000, ty_Double) -> new_lt17(xwv28000, xwv29000) 27.89/11.39 new_sr0(Integer(xwv280000), Integer(xwv290010)) -> Integer(new_primMulInt(xwv280000, xwv290010)) 27.89/11.39 new_esEs18(xwv28000, xwv29000, app(ty_Maybe, baa)) -> new_esEs4(xwv28000, xwv29000, baa) 27.89/11.39 new_esEs21(xwv28001, xwv29001, app(ty_Ratio, cbe)) -> new_esEs14(xwv28001, xwv29001, cbe) 27.89/11.39 new_esEs29(xwv40, xwv300, ty_Char) -> new_esEs16(xwv40, xwv300) 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), ty_Int) -> new_esEs17(xwv400, xwv3000) 27.89/11.39 new_esEs29(xwv40, xwv300, ty_@0) -> new_esEs8(xwv40, xwv300) 27.89/11.39 new_compare24(xwv28000, xwv29000, True, ed, ee, ef) -> EQ 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), app(app(ty_Either, bgc), bgd)) -> new_esEs6(xwv400, xwv3000, bgc, bgd) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.89/11.39 new_lt19(xwv28000, xwv29000, app(app(app(ty_@3, ed), ee), ef)) -> new_lt11(xwv28000, xwv29000, ed, ee, ef) 27.89/11.39 new_primCmpNat0(xwv2800, Zero) -> GT 27.89/11.39 new_lt10(xwv28000, xwv29000) -> new_esEs15(new_compare16(xwv28000, xwv29000), LT) 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_Ratio, bhc)) -> new_esEs14(xwv400, xwv3000, bhc) 27.89/11.39 new_primCmpNat2(Zero, Succ(xwv29000)) -> LT 27.89/11.39 new_esEs25(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 27.89/11.39 new_asAs(True, xwv57) -> xwv57 27.89/11.39 new_esEs25(xwv401, xwv3001, app(ty_Ratio, dab)) -> new_esEs14(xwv401, xwv3001, dab) 27.89/11.39 new_esEs26(xwv402, xwv3002, ty_Float) -> new_esEs13(xwv402, xwv3002) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Bool) -> new_ltEs8(xwv28000, xwv29000) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Ordering) -> new_ltEs10(xwv28000, xwv29000) 27.89/11.39 new_esEs10(Integer(xwv400), Integer(xwv3000)) -> new_primEqInt(xwv400, xwv3000) 27.89/11.39 new_lt19(xwv28000, xwv29000, ty_Double) -> new_lt17(xwv28000, xwv29000) 27.89/11.39 new_esEs26(xwv402, xwv3002, ty_Ordering) -> new_esEs15(xwv402, xwv3002) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, ty_Char) -> new_ltEs13(xwv28001, xwv29001) 27.89/11.39 new_ltEs10(LT, LT) -> True 27.89/11.39 new_compare7(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, ty_@0) -> new_ltEs15(xwv28002, xwv29002) 27.89/11.39 new_esEs25(xwv401, xwv3001, app(ty_[], cha)) -> new_esEs9(xwv401, xwv3001, cha) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_Ratio, fg), eh) -> new_ltEs11(xwv28000, xwv29000, fg) 27.89/11.39 new_esEs6(Left(xwv400), Right(xwv3000), cg, bd) -> False 27.89/11.39 new_esEs6(Right(xwv400), Left(xwv3000), cg, bd) -> False 27.89/11.39 new_esEs21(xwv28001, xwv29001, ty_Bool) -> new_esEs12(xwv28001, xwv29001) 27.89/11.39 new_esEs21(xwv28001, xwv29001, ty_Int) -> new_esEs17(xwv28001, xwv29001) 27.89/11.39 new_esEs16(Char(xwv400), Char(xwv3000)) -> new_primEqNat0(xwv400, xwv3000) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_Ratio, hb)) -> new_ltEs11(xwv28000, xwv29000, hb) 27.89/11.39 new_esEs22(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.89/11.39 new_esEs26(xwv402, xwv3002, ty_Bool) -> new_esEs12(xwv402, xwv3002) 27.89/11.39 new_esEs24(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, app(ty_Ratio, ccg)) -> new_ltEs11(xwv28002, xwv29002, ccg) 27.89/11.39 new_esEs18(xwv28000, xwv29000, app(app(ty_@2, bah), bba)) -> new_esEs7(xwv28000, xwv29000, bah, bba) 27.89/11.39 new_esEs20(xwv28000, xwv29000, app(ty_[], hf)) -> new_esEs9(xwv28000, xwv29000, hf) 27.89/11.39 new_ltEs8(True, True) -> True 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_@0) -> new_ltEs15(xwv28000, xwv29000) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, ty_@0) -> new_ltEs15(xwv2800, xwv2900) 27.89/11.39 new_esEs24(xwv400, xwv3000, app(app(ty_@2, cgb), cgc)) -> new_esEs7(xwv400, xwv3000, cgb, cgc) 27.89/11.39 new_compare110(xwv28000, xwv29000, False) -> GT 27.89/11.39 new_lt8(xwv28000, xwv29000, ty_Integer) -> new_lt7(xwv28000, xwv29000) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Int) -> new_ltEs14(xwv28000, xwv29000) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, ty_Int) -> new_ltEs14(xwv28001, xwv29001) 27.89/11.39 new_sr(xwv401, xwv3000) -> new_primMulInt(xwv401, xwv3000) 27.89/11.39 new_esEs12(False, True) -> False 27.89/11.39 new_esEs12(True, False) -> False 27.89/11.39 new_lt20(xwv28001, xwv29001, app(app(ty_Either, cbc), cbd)) -> new_lt12(xwv28001, xwv29001, cbc, cbd) 27.89/11.39 new_esEs23(xwv401, xwv3001, ty_Double) -> new_esEs11(xwv401, xwv3001) 27.89/11.39 new_ltEs7(Nothing, Nothing, bef) -> True 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), ty_Char) -> new_esEs16(xwv400, xwv3000) 27.89/11.39 new_primMulNat0(Zero, Zero) -> Zero 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.89/11.39 new_esEs22(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.89/11.39 new_esEs12(True, True) -> True 27.89/11.39 new_compare10(xwv28000, xwv29000, False) -> GT 27.89/11.39 new_esEs21(xwv28001, xwv29001, ty_Integer) -> new_esEs10(xwv28001, xwv29001) 27.89/11.39 new_esEs18(xwv28000, xwv29000, ty_@0) -> new_esEs8(xwv28000, xwv29000) 27.89/11.39 new_esEs29(xwv40, xwv300, ty_Int) -> new_esEs17(xwv40, xwv300) 27.89/11.39 new_primCmpInt(Neg(Zero), Neg(Succ(xwv2900))) -> new_primCmpNat0(xwv2900, Zero) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_Maybe, cb), bd) -> new_esEs4(xwv400, xwv3000, cb) 27.89/11.39 new_esEs26(xwv402, xwv3002, app(app(ty_Either, dad), dae)) -> new_esEs6(xwv402, xwv3002, dad, dae) 27.89/11.39 new_ltEs7(Just(xwv28000), Nothing, bef) -> False 27.89/11.39 new_esEs23(xwv401, xwv3001, app(app(ty_@2, ceh), cfa)) -> new_esEs7(xwv401, xwv3001, ceh, cfa) 27.89/11.39 new_compare9(@0, @0) -> EQ 27.89/11.39 new_esEs21(xwv28001, xwv29001, app(ty_[], cbh)) -> new_esEs9(xwv28001, xwv29001, cbh) 27.89/11.39 new_primCmpNat1(Zero, xwv2800) -> LT 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_[], bgb)) -> new_esEs9(xwv400, xwv3000, bgb) 27.89/11.39 new_esEs4(Nothing, Nothing, bfe) -> True 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), ty_Char, bd) -> new_esEs16(xwv400, xwv3000) 27.89/11.39 new_compare29(xwv28000, xwv29000, app(ty_Ratio, cab)) -> new_compare28(xwv28000, xwv29000, cab) 27.89/11.39 new_esEs4(Nothing, Just(xwv3000), bfe) -> False 27.89/11.39 new_esEs4(Just(xwv400), Nothing, bfe) -> False 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_Ratio, dcd)) -> new_ltEs11(xwv28000, xwv29000, dcd) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, app(ty_Ratio, bfb)) -> new_ltEs11(xwv2800, xwv2900, bfb) 27.89/11.39 new_esEs19(xwv400, xwv3000, app(ty_Ratio, bed)) -> new_esEs14(xwv400, xwv3000, bed) 27.89/11.39 new_compare29(xwv28000, xwv29000, ty_Int) -> new_compare14(xwv28000, xwv29000) 27.89/11.39 new_primCmpNat2(Zero, Zero) -> EQ 27.89/11.39 new_lt5(xwv28000, xwv29000, hf) -> new_esEs15(new_compare1(xwv28000, xwv29000, hf), LT) 27.89/11.39 new_lt20(xwv28001, xwv29001, app(ty_Ratio, cbe)) -> new_lt13(xwv28001, xwv29001, cbe) 27.89/11.39 new_esEs21(xwv28001, xwv29001, ty_Char) -> new_esEs16(xwv28001, xwv29001) 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.89/11.39 new_lt20(xwv28001, xwv29001, ty_Integer) -> new_lt7(xwv28001, xwv29001) 27.89/11.39 new_esEs29(xwv40, xwv300, app(ty_Ratio, bga)) -> new_esEs14(xwv40, xwv300, bga) 27.89/11.39 new_compare28(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Integer) -> new_compare8(new_sr0(xwv28000, xwv29001), new_sr0(xwv29000, xwv28001)) 27.89/11.39 new_esEs19(xwv400, xwv3000, app(app(ty_Either, bdd), bde)) -> new_esEs6(xwv400, xwv3000, bdd, bde) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), cg, app(ty_Maybe, df)) -> new_esEs4(xwv400, xwv3000, df) 27.89/11.39 new_esEs25(xwv401, xwv3001, app(app(ty_Either, chb), chc)) -> new_esEs6(xwv401, xwv3001, chb, chc) 27.89/11.39 new_primCompAux0(xwv153, EQ) -> xwv153 27.89/11.39 new_ltEs18(xwv28001, xwv29001, app(ty_Ratio, bca)) -> new_ltEs11(xwv28001, xwv29001, bca) 27.89/11.39 new_lt19(xwv28000, xwv29000, app(ty_Ratio, caf)) -> new_lt13(xwv28000, xwv29000, caf) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, app(ty_Maybe, bef)) -> new_ltEs7(xwv2800, xwv2900, bef) 27.89/11.39 new_primEqInt(Neg(Succ(xwv4000)), Neg(Zero)) -> False 27.89/11.39 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 27.89/11.39 new_lt19(xwv28000, xwv29000, ty_Integer) -> new_lt7(xwv28000, xwv29000) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, ty_@0) -> new_ltEs15(xwv28001, xwv29001) 27.89/11.39 new_esEs20(xwv28000, xwv29000, ty_Char) -> new_esEs16(xwv28000, xwv29000) 27.89/11.39 new_primEqInt(Pos(Succ(xwv4000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 27.89/11.39 new_ltEs10(GT, GT) -> True 27.89/11.39 new_ltEs20(xwv28002, xwv29002, app(app(ty_Either, cce), ccf)) -> new_ltEs6(xwv28002, xwv29002, cce, ccf) 27.89/11.39 new_compare19(xwv117, xwv118, False, dbe) -> GT 27.89/11.39 new_esEs20(xwv28000, xwv29000, app(app(ty_Either, bcf), bcg)) -> new_esEs6(xwv28000, xwv29000, bcf, bcg) 27.89/11.39 new_compare23(Just(xwv2800), Just(xwv2900), False, bee) -> new_compare19(xwv2800, xwv2900, new_ltEs19(xwv2800, xwv2900, bee), bee) 27.89/11.39 new_primEqInt(Pos(Succ(xwv4000)), Neg(xwv3000)) -> False 27.89/11.39 new_primEqInt(Neg(Succ(xwv4000)), Pos(xwv3000)) -> False 27.89/11.39 new_compare29(xwv28000, xwv29000, app(app(ty_Either, bhh), caa)) -> new_compare26(xwv28000, xwv29000, bhh, caa) 27.89/11.39 new_compare14(xwv28, xwv29) -> new_primCmpInt(xwv28, xwv29) 27.89/11.39 new_compare23(Nothing, Just(xwv2900), False, bee) -> LT 27.89/11.39 new_esEs22(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.89/11.39 new_esEs27(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.89/11.39 new_compare211(xwv28000, xwv29000, True, bch, bda) -> EQ 27.89/11.39 new_ltEs19(xwv2800, xwv2900, app(app(ty_Either, gc), eh)) -> new_ltEs6(xwv2800, xwv2900, gc, eh) 27.89/11.39 new_esEs29(xwv40, xwv300, app(ty_Maybe, bfe)) -> new_esEs4(xwv40, xwv300, bfe) 27.89/11.39 new_esEs22(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.89/11.39 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 27.89/11.39 new_ltEs10(LT, EQ) -> True 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(ty_Either, dcb), dcc)) -> new_ltEs6(xwv28000, xwv29000, dcb, dcc) 27.89/11.39 new_lt8(xwv28000, xwv29000, ty_Bool) -> new_lt10(xwv28000, xwv29000) 27.89/11.39 new_compare26(xwv28000, xwv29000, bcf, bcg) -> new_compare27(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bcf, bcg), bcf, bcg) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_@0, eh) -> new_ltEs15(xwv28000, xwv29000) 27.89/11.39 new_primCmpNat1(Succ(xwv2900), xwv2800) -> new_primCmpNat2(xwv2900, xwv2800) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), ty_Float, bd) -> new_esEs13(xwv400, xwv3000) 27.89/11.39 new_esEs19(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.89/11.39 new_lt20(xwv28001, xwv29001, ty_Char) -> new_lt15(xwv28001, xwv29001) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_Maybe, dbf)) -> new_ltEs7(xwv28000, xwv29000, dbf) 27.89/11.39 new_esEs15(EQ, EQ) -> True 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Float) -> new_ltEs17(xwv28000, xwv29000) 27.89/11.39 new_esEs23(xwv401, xwv3001, ty_Float) -> new_esEs13(xwv401, xwv3001) 27.89/11.39 new_fsEs(xwv123) -> new_not(new_esEs15(xwv123, GT)) 27.89/11.39 new_esEs19(xwv400, xwv3000, app(app(ty_@2, bdf), bdg)) -> new_esEs7(xwv400, xwv3000, bdf, bdg) 27.89/11.39 new_compare23(Nothing, Nothing, False, bee) -> LT 27.89/11.39 new_compare24(xwv28000, xwv29000, False, ed, ee, ef) -> new_compare11(xwv28000, xwv29000, new_ltEs5(xwv28000, xwv29000, ed, ee, ef), ed, ee, ef) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(app(ty_@2, hc), hd)) -> new_ltEs12(xwv28000, xwv29000, hc, hd) 27.89/11.39 new_primPlusNat0(xwv101, xwv300000) -> new_primPlusNat1(xwv101, Succ(xwv300000)) 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.89/11.39 new_compare29(xwv28000, xwv29000, ty_Double) -> new_compare7(xwv28000, xwv29000) 27.89/11.39 new_ltEs6(Right(xwv28000), Left(xwv29000), gc, eh) -> False 27.89/11.39 new_not(False) -> True 27.89/11.39 new_lt20(xwv28001, xwv29001, ty_@0) -> new_lt4(xwv28001, xwv29001) 27.89/11.39 new_compare1([], :(xwv29000, xwv29001), bce) -> LT 27.89/11.39 new_esEs21(xwv28001, xwv29001, ty_@0) -> new_esEs8(xwv28001, xwv29001) 27.89/11.39 new_esEs11(Double(xwv400, xwv401), Double(xwv3000, xwv3001)) -> new_esEs17(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 27.89/11.39 new_lt19(xwv28000, xwv29000, app(ty_[], hf)) -> new_lt5(xwv28000, xwv29000, hf) 27.89/11.39 new_primCmpInt(Neg(Succ(xwv2800)), Neg(xwv290)) -> new_primCmpNat1(xwv290, xwv2800) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.89/11.39 new_lt13(xwv28000, xwv29000, caf) -> new_esEs15(new_compare28(xwv28000, xwv29000, caf), LT) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Char) -> new_ltEs13(xwv28000, xwv29000) 27.89/11.39 new_lt12(xwv28000, xwv29000, bcf, bcg) -> new_esEs15(new_compare26(xwv28000, xwv29000, bcf, bcg), LT) 27.89/11.39 new_esEs29(xwv40, xwv300, app(app(ty_Either, cg), bd)) -> new_esEs6(xwv40, xwv300, cg, bd) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, app(ty_[], he)) -> new_ltEs16(xwv28000, xwv29000, he) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_[], be), bd) -> new_esEs9(xwv400, xwv3000, be) 27.89/11.39 new_esEs20(xwv28000, xwv29000, ty_Bool) -> new_esEs12(xwv28000, xwv29000) 27.89/11.39 new_esEs22(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.89/11.39 new_ltEs10(EQ, GT) -> True 27.89/11.39 new_lt17(xwv28000, xwv29000) -> new_esEs15(new_compare7(xwv28000, xwv29000), LT) 27.89/11.39 new_compare25(xwv28000, xwv29000, True) -> EQ 27.89/11.39 new_compare27(xwv28000, xwv29000, True, bcf, bcg) -> EQ 27.89/11.39 new_compare27(xwv28000, xwv29000, False, bcf, bcg) -> new_compare17(xwv28000, xwv29000, new_ltEs6(xwv28000, xwv29000, bcf, bcg), bcf, bcg) 27.89/11.39 new_esEs29(xwv40, xwv300, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xwv40, xwv300, bfc, bfd) 27.89/11.39 new_ltEs10(EQ, EQ) -> True 27.89/11.39 new_esEs19(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.89/11.39 new_esEs29(xwv40, xwv300, ty_Bool) -> new_esEs12(xwv40, xwv300) 27.89/11.39 new_esEs5(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), bff, bfg, bfh) -> new_asAs(new_esEs24(xwv400, xwv3000, bff), new_asAs(new_esEs25(xwv401, xwv3001, bfg), new_esEs26(xwv402, xwv3002, bfh))) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, fa), fb), fc), eh) -> new_ltEs5(xwv28000, xwv29000, fa, fb, fc) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, ty_Float) -> new_ltEs17(xwv28001, xwv29001) 27.89/11.39 new_lt20(xwv28001, xwv29001, app(ty_[], cbh)) -> new_lt5(xwv28001, xwv29001, cbh) 27.89/11.39 new_esEs23(xwv401, xwv3001, ty_Ordering) -> new_esEs15(xwv401, xwv3001) 27.89/11.39 new_compare10(xwv28000, xwv29000, True) -> LT 27.89/11.39 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 27.89/11.39 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 27.89/11.39 new_lt20(xwv28001, xwv29001, ty_Double) -> new_lt17(xwv28001, xwv29001) 27.89/11.39 new_primPlusNat1(Zero, Zero) -> Zero 27.89/11.39 new_lt19(xwv28000, xwv29000, ty_Char) -> new_lt15(xwv28000, xwv29000) 27.89/11.39 new_esEs20(xwv28000, xwv29000, ty_Integer) -> new_esEs10(xwv28000, xwv29000) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Integer, eh) -> new_ltEs9(xwv28000, xwv29000) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.89/11.39 new_lt8(xwv28000, xwv29000, ty_Float) -> new_lt18(xwv28000, xwv29000) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.89/11.39 new_esEs25(xwv401, xwv3001, app(ty_Maybe, chf)) -> new_esEs4(xwv401, xwv3001, chf) 27.89/11.39 new_lt8(xwv28000, xwv29000, app(ty_Ratio, bag)) -> new_lt13(xwv28000, xwv29000, bag) 27.89/11.39 new_esEs18(xwv28000, xwv29000, ty_Int) -> new_esEs17(xwv28000, xwv29000) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_[], dcg)) -> new_ltEs16(xwv28000, xwv29000, dcg) 27.89/11.39 new_lt4(xwv28000, xwv29000) -> new_esEs15(new_compare9(xwv28000, xwv29000), LT) 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), ty_Double) -> new_esEs11(xwv400, xwv3000) 27.89/11.39 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 27.89/11.39 new_esEs23(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 27.89/11.39 new_lt19(xwv28000, xwv29000, ty_@0) -> new_lt4(xwv28000, xwv29000) 27.89/11.39 new_esEs18(xwv28000, xwv29000, app(app(ty_Either, bae), baf)) -> new_esEs6(xwv28000, xwv29000, bae, baf) 27.89/11.39 new_primMulNat0(Succ(xwv40100), Succ(xwv300000)) -> new_primPlusNat0(new_primMulNat0(xwv40100, Succ(xwv300000)), xwv300000) 27.89/11.39 new_compare7(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.89/11.39 new_compare7(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.89/11.39 new_esEs22(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.89/11.39 new_ltEs15(xwv2800, xwv2900) -> new_fsEs(new_compare9(xwv2800, xwv2900)) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Integer) -> new_ltEs9(xwv28000, xwv29000) 27.89/11.39 new_primCmpInt(Pos(Zero), Pos(Succ(xwv2900))) -> new_primCmpNat1(Zero, xwv2900) 27.89/11.39 new_esEs26(xwv402, xwv3002, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs5(xwv402, xwv3002, dba, dbb, dbc) 27.89/11.39 new_esEs21(xwv28001, xwv29001, app(app(ty_@2, cbf), cbg)) -> new_esEs7(xwv28001, xwv29001, cbf, cbg) 27.89/11.39 new_esEs19(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.89/11.39 new_esEs24(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.89/11.39 new_esEs26(xwv402, xwv3002, app(ty_Ratio, dbd)) -> new_esEs14(xwv402, xwv3002, dbd) 27.89/11.39 new_lt20(xwv28001, xwv29001, app(app(ty_@2, cbf), cbg)) -> new_lt14(xwv28001, xwv29001, cbf, cbg) 27.89/11.39 new_esEs21(xwv28001, xwv29001, ty_Ordering) -> new_esEs15(xwv28001, xwv29001) 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), app(app(ty_@2, bge), bgf)) -> new_esEs7(xwv400, xwv3000, bge, bgf) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(ty_@2, dce), dcf)) -> new_ltEs12(xwv28000, xwv29000, dce, dcf) 27.89/11.39 new_esEs29(xwv40, xwv300, ty_Integer) -> new_esEs10(xwv40, xwv300) 27.89/11.39 new_compare16(xwv28000, xwv29000) -> new_compare25(xwv28000, xwv29000, new_esEs12(xwv28000, xwv29000)) 27.89/11.39 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 27.89/11.39 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 27.89/11.39 new_esEs9([], [], bdb) -> True 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), ty_@0) -> new_esEs8(xwv400, xwv3000) 27.89/11.39 new_esEs22(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.89/11.39 new_compare25(xwv28000, xwv29000, False) -> new_compare10(xwv28000, xwv29000, new_ltEs8(xwv28000, xwv29000)) 27.89/11.39 new_esEs29(xwv40, xwv300, app(ty_[], bdb)) -> new_esEs9(xwv40, xwv300, bdb) 27.89/11.39 new_esEs26(xwv402, xwv3002, app(ty_Maybe, dah)) -> new_esEs4(xwv402, xwv3002, dah) 27.89/11.39 new_primEqNat0(Zero, Zero) -> True 27.89/11.39 new_lt19(xwv28000, xwv29000, ty_Ordering) -> new_lt6(xwv28000, xwv29000) 27.89/11.39 new_esEs21(xwv28001, xwv29001, ty_Double) -> new_esEs11(xwv28001, xwv29001) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), gc, ty_Double) -> new_ltEs4(xwv28000, xwv29000) 27.89/11.39 new_compare31(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.89/11.39 new_compare31(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.89/11.39 new_lt15(xwv28000, xwv29000) -> new_esEs15(new_compare13(xwv28000, xwv29000), LT) 27.89/11.39 new_ltEs10(LT, GT) -> True 27.89/11.39 new_asAs(False, xwv57) -> False 27.89/11.39 new_esEs19(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.89/11.39 new_ltEs13(xwv2800, xwv2900) -> new_fsEs(new_compare13(xwv2800, xwv2900)) 27.89/11.39 new_esEs19(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, ty_Int) -> new_ltEs14(xwv2800, xwv2900) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, ty_Float) -> new_ltEs17(xwv28002, xwv29002) 27.89/11.39 new_lt20(xwv28001, xwv29001, ty_Ordering) -> new_lt6(xwv28001, xwv29001) 27.89/11.39 new_esEs25(xwv401, xwv3001, ty_Float) -> new_esEs13(xwv401, xwv3001) 27.89/11.39 new_ltEs6(Left(xwv28000), Right(xwv29000), gc, eh) -> True 27.89/11.39 new_ltEs19(xwv2800, xwv2900, ty_Ordering) -> new_ltEs10(xwv2800, xwv2900) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, ty_Ordering) -> new_ltEs10(xwv28002, xwv29002) 27.89/11.39 new_esEs18(xwv28000, xwv29000, ty_Integer) -> new_esEs10(xwv28000, xwv29000) 27.89/11.39 new_ltEs5(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), beg, beh, bfa) -> new_pePe(new_lt19(xwv28000, xwv29000, beg), new_asAs(new_esEs20(xwv28000, xwv29000, beg), new_pePe(new_lt20(xwv28001, xwv29001, beh), new_asAs(new_esEs21(xwv28001, xwv29001, beh), new_ltEs20(xwv28002, xwv29002, bfa))))) 27.89/11.39 new_lt19(xwv28000, xwv29000, app(app(ty_@2, bch), bda)) -> new_lt14(xwv28000, xwv29000, bch, bda) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.89/11.39 new_lt8(xwv28000, xwv29000, app(ty_Maybe, baa)) -> new_lt9(xwv28000, xwv29000, baa) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), cg, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.89/11.39 new_compare29(xwv28000, xwv29000, ty_Integer) -> new_compare8(xwv28000, xwv29000) 27.89/11.39 new_esEs20(xwv28000, xwv29000, ty_Int) -> new_esEs17(xwv28000, xwv29000) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, ty_Float) -> new_ltEs17(xwv2800, xwv2900) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, ty_Int) -> new_ltEs14(xwv28002, xwv29002) 27.89/11.39 new_esEs18(xwv28000, xwv29000, app(ty_[], bbb)) -> new_esEs9(xwv28000, xwv29000, bbb) 27.89/11.39 new_esEs20(xwv28000, xwv29000, app(app(ty_@2, bch), bda)) -> new_esEs7(xwv28000, xwv29000, bch, bda) 27.89/11.39 27.89/11.39 The set Q consists of the following terms: 27.89/11.39 27.89/11.39 new_compare29(x0, x1, ty_Int) 27.89/11.39 new_esEs22(x0, x1, ty_Float) 27.89/11.39 new_esEs21(x0, x1, ty_Double) 27.89/11.39 new_esEs19(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_esEs4(Just(x0), Just(x1), ty_Ordering) 27.89/11.39 new_pePe(False, x0) 27.89/11.39 new_primCompAux0(x0, EQ) 27.89/11.39 new_esEs26(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_compare1([], :(x0, x1), x2) 27.89/11.39 new_esEs4(Just(x0), Just(x1), ty_Double) 27.89/11.39 new_primPlusNat1(Zero, Zero) 27.89/11.39 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 27.89/11.39 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 27.89/11.39 new_primPlusNat1(Succ(x0), Zero) 27.89/11.39 new_ltEs10(LT, LT) 27.89/11.39 new_compare29(x0, x1, ty_Char) 27.89/11.39 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 27.89/11.39 new_esEs21(x0, x1, ty_Int) 27.89/11.39 new_sr(x0, x1) 27.89/11.39 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_esEs20(x0, x1, ty_Double) 27.89/11.39 new_ltEs19(x0, x1, app(ty_[], x2)) 27.89/11.39 new_primEqInt(Pos(Zero), Pos(Zero)) 27.89/11.39 new_esEs4(Just(x0), Nothing, x1) 27.89/11.39 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 27.89/11.39 new_esEs16(Char(x0), Char(x1)) 27.89/11.39 new_primCmpNat2(Zero, Succ(x0)) 27.89/11.39 new_esEs17(x0, x1) 27.89/11.39 new_compare13(Char(x0), Char(x1)) 27.89/11.39 new_esEs28(x0, x1, ty_Int) 27.89/11.39 new_lt19(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_ltEs15(x0, x1) 27.89/11.39 new_esEs24(x0, x1, ty_Float) 27.89/11.39 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 27.89/11.39 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_lt8(x0, x1, ty_Char) 27.89/11.39 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_esEs20(x0, x1, ty_Ordering) 27.89/11.39 new_esEs18(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_esEs21(x0, x1, ty_Ordering) 27.89/11.39 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 27.89/11.39 new_compare29(x0, x1, ty_Ordering) 27.89/11.39 new_primEqInt(Neg(Zero), Neg(Zero)) 27.89/11.39 new_esEs25(x0, x1, ty_Float) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 27.89/11.39 new_compare17(x0, x1, True, x2, x3) 27.89/11.39 new_esEs15(EQ, GT) 27.89/11.39 new_esEs15(GT, EQ) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 27.89/11.39 new_lt20(x0, x1, ty_Ordering) 27.89/11.39 new_esEs15(LT, LT) 27.89/11.39 new_esEs12(False, True) 27.89/11.39 new_esEs12(True, False) 27.89/11.39 new_esEs29(x0, x1, app(ty_[], x2)) 27.89/11.39 new_compare210(x0, x1, True) 27.89/11.39 new_compare28(:%(x0, x1), :%(x2, x3), ty_Int) 27.89/11.39 new_esEs29(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_ltEs13(x0, x1) 27.89/11.39 new_asAs(True, x0) 27.89/11.39 new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 27.89/11.39 new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 27.89/11.39 new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 27.89/11.39 new_compare14(x0, x1) 27.89/11.39 new_ltEs8(False, False) 27.89/11.39 new_compare211(x0, x1, True, x2, x3) 27.89/11.39 new_lt20(x0, x1, ty_Double) 27.89/11.39 new_compare29(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_esEs21(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_ltEs10(GT, EQ) 27.89/11.39 new_ltEs10(EQ, GT) 27.89/11.39 new_lt8(x0, x1, ty_Int) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), ty_Float) 27.89/11.39 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 27.89/11.39 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_lt8(x0, x1, ty_@0) 27.89/11.39 new_compare29(x0, x1, ty_Double) 27.89/11.39 new_esEs25(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_ltEs18(x0, x1, ty_Double) 27.89/11.39 new_compare27(x0, x1, True, x2, x3) 27.89/11.39 new_compare29(x0, x1, ty_Bool) 27.89/11.39 new_primEqInt(Pos(Zero), Neg(Zero)) 27.89/11.39 new_primEqInt(Neg(Zero), Pos(Zero)) 27.89/11.39 new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 27.89/11.39 new_ltEs7(Nothing, Nothing, x0) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 27.89/11.39 new_esEs25(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 27.89/11.39 new_esEs24(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 27.89/11.39 new_compare29(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 27.89/11.39 new_compare15(x0, x1, x2, x3, x4) 27.89/11.39 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_compare10(x0, x1, False) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 27.89/11.39 new_primCmpNat0(x0, Succ(x1)) 27.89/11.39 new_lt15(x0, x1) 27.89/11.39 new_lt20(x0, x1, app(ty_[], x2)) 27.89/11.39 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_compare110(x0, x1, True) 27.89/11.39 new_esEs29(x0, x1, ty_Int) 27.89/11.39 new_primMulInt(Pos(x0), Pos(x1)) 27.89/11.39 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 27.89/11.39 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_lt12(x0, x1, x2, x3) 27.89/11.39 new_esEs19(x0, x1, ty_Ordering) 27.89/11.39 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_compare29(x0, x1, ty_Integer) 27.89/11.39 new_esEs22(x0, x1, ty_Bool) 27.89/11.39 new_primMulInt(Pos(x0), Neg(x1)) 27.89/11.39 new_primMulInt(Neg(x0), Pos(x1)) 27.89/11.39 new_esEs24(x0, x1, ty_@0) 27.89/11.39 new_ltEs10(EQ, LT) 27.89/11.39 new_ltEs10(GT, GT) 27.89/11.39 new_ltEs10(LT, EQ) 27.89/11.39 new_esEs21(x0, x1, ty_Bool) 27.89/11.39 new_esEs23(x0, x1, ty_Integer) 27.89/11.39 new_lt13(x0, x1, x2) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 27.89/11.39 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 27.89/11.39 new_esEs15(LT, GT) 27.89/11.39 new_esEs15(GT, LT) 27.89/11.39 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 27.89/11.39 new_esEs29(x0, x1, ty_Char) 27.89/11.39 new_ltEs19(x0, x1, ty_Float) 27.89/11.39 new_esEs19(x0, x1, ty_Int) 27.89/11.39 new_esEs4(Nothing, Nothing, x0) 27.89/11.39 new_esEs23(x0, x1, ty_Bool) 27.89/11.39 new_compare1(:(x0, x1), [], x2) 27.89/11.39 new_primCompAux0(x0, LT) 27.89/11.39 new_sr0(Integer(x0), Integer(x1)) 27.89/11.39 new_esEs20(x0, x1, ty_@0) 27.89/11.39 new_compare27(x0, x1, False, x2, x3) 27.89/11.39 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_ltEs19(x0, x1, ty_Char) 27.89/11.39 new_esEs18(x0, x1, ty_Double) 27.89/11.39 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 27.89/11.39 new_esEs18(x0, x1, ty_Ordering) 27.89/11.39 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 27.89/11.39 new_esEs25(x0, x1, ty_@0) 27.89/11.39 new_lt17(x0, x1) 27.89/11.39 new_compare8(Integer(x0), Integer(x1)) 27.89/11.39 new_lt8(x0, x1, ty_Double) 27.89/11.39 new_lt20(x0, x1, ty_Char) 27.89/11.39 new_esEs26(x0, x1, ty_Integer) 27.89/11.39 new_esEs29(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_compare29(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_esEs4(Just(x0), Just(x1), ty_Bool) 27.89/11.39 new_ltEs19(x0, x1, ty_Int) 27.89/11.39 new_compare28(:%(x0, x1), :%(x2, x3), ty_Integer) 27.89/11.39 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 27.89/11.39 new_primCompAux1(x0, x1, x2, x3) 27.89/11.39 new_esEs19(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_lt20(x0, x1, ty_Int) 27.89/11.39 new_compare29(x0, x1, ty_@0) 27.89/11.39 new_esEs19(x0, x1, ty_Float) 27.89/11.39 new_esEs25(x0, x1, ty_Integer) 27.89/11.39 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_primCmpInt(Neg(Zero), Neg(Zero)) 27.89/11.39 new_ltEs6(Right(x0), Left(x1), x2, x3) 27.89/11.39 new_ltEs20(x0, x1, ty_Float) 27.89/11.39 new_ltEs6(Left(x0), Right(x1), x2, x3) 27.89/11.39 new_compare23(Nothing, Just(x0), False, x1) 27.89/11.39 new_compare23(Nothing, Nothing, False, x0) 27.89/11.39 new_esEs23(x0, x1, app(ty_[], x2)) 27.89/11.39 new_esEs27(x0, x1, ty_Int) 27.89/11.39 new_esEs26(x0, x1, ty_Float) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), ty_Double) 27.89/11.39 new_compare210(x0, x1, False) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 27.89/11.39 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_esEs23(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_ltEs14(x0, x1) 27.89/11.39 new_esEs26(x0, x1, ty_Bool) 27.89/11.39 new_primCmpInt(Pos(Zero), Neg(Zero)) 27.89/11.39 new_primCmpInt(Neg(Zero), Pos(Zero)) 27.89/11.39 new_esEs20(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_esEs20(x0, x1, app(ty_[], x2)) 27.89/11.39 new_esEs27(x0, x1, ty_Integer) 27.89/11.39 new_esEs22(x0, x1, ty_Integer) 27.89/11.39 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_lt8(x0, x1, app(ty_[], x2)) 27.89/11.39 new_compare29(x0, x1, app(ty_[], x2)) 27.89/11.39 new_lt14(x0, x1, x2, x3) 27.89/11.39 new_esEs21(x0, x1, ty_Char) 27.89/11.39 new_esEs21(x0, x1, ty_Integer) 27.89/11.39 new_ltEs8(True, False) 27.89/11.39 new_ltEs8(False, True) 27.89/11.39 new_esEs4(Just(x0), Just(x1), ty_Char) 27.89/11.39 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 27.89/11.39 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_lt5(x0, x1, x2) 27.89/11.39 new_lt20(x0, x1, ty_Float) 27.89/11.39 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 27.89/11.39 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 27.89/11.39 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 27.89/11.39 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 27.89/11.39 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_lt19(x0, x1, ty_Double) 27.89/11.39 new_compare11(x0, x1, False, x2, x3, x4) 27.89/11.39 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 27.89/11.39 new_compare29(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 27.89/11.39 new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 27.89/11.39 new_lt20(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_esEs29(x0, x1, ty_Ordering) 27.89/11.39 new_esEs19(x0, x1, ty_Char) 27.89/11.39 new_esEs23(x0, x1, ty_Float) 27.89/11.39 new_esEs9(:(x0, x1), [], x2) 27.89/11.39 new_ltEs18(x0, x1, ty_Ordering) 27.89/11.39 new_esEs4(Just(x0), Just(x1), ty_Int) 27.89/11.39 new_compare19(x0, x1, False, x2) 27.89/11.39 new_lt19(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_esEs4(Just(x0), Just(x1), ty_Float) 27.89/11.39 new_esEs26(x0, x1, app(ty_[], x2)) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 27.89/11.39 new_lt19(x0, x1, ty_@0) 27.89/11.39 new_esEs29(x0, x1, ty_Integer) 27.89/11.39 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 27.89/11.39 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 27.89/11.39 new_esEs22(x0, x1, ty_Ordering) 27.89/11.39 new_lt20(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_primCmpNat2(Succ(x0), Zero) 27.89/11.39 new_esEs24(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_esEs23(x0, x1, ty_Int) 27.89/11.39 new_lt19(x0, x1, ty_Int) 27.89/11.39 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_esEs22(x0, x1, ty_Double) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), ty_Char) 27.89/11.39 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_primCmpNat2(Succ(x0), Succ(x1)) 27.89/11.39 new_esEs21(x0, x1, ty_Float) 27.89/11.39 new_esEs19(x0, x1, ty_Bool) 27.89/11.39 new_lt19(x0, x1, app(ty_[], x2)) 27.89/11.39 new_compare25(x0, x1, False) 27.89/11.39 new_ltEs20(x0, x1, ty_Char) 27.89/11.39 new_esEs26(x0, x1, ty_Char) 27.89/11.39 new_esEs25(x0, x1, ty_Ordering) 27.89/11.39 new_lt11(x0, x1, x2, x3, x4) 27.89/11.39 new_ltEs18(x0, x1, ty_Integer) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 27.89/11.39 new_primMulNat0(Zero, Zero) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 27.89/11.39 new_ltEs19(x0, x1, ty_Integer) 27.89/11.39 new_esEs24(x0, x1, ty_Double) 27.89/11.39 new_primEqNat0(Succ(x0), Zero) 27.89/11.39 new_esEs15(EQ, EQ) 27.89/11.39 new_primEqNat0(Succ(x0), Succ(x1)) 27.89/11.39 new_esEs25(x0, x1, ty_Int) 27.89/11.39 new_ltEs18(x0, x1, ty_Bool) 27.89/11.39 new_esEs23(x0, x1, ty_Char) 27.89/11.39 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_ltEs19(x0, x1, ty_Bool) 27.89/11.39 new_esEs26(x0, x1, ty_Int) 27.89/11.39 new_lt20(x0, x1, ty_Integer) 27.89/11.39 new_ltEs10(EQ, EQ) 27.89/11.39 new_ltEs7(Just(x0), Nothing, x1) 27.89/11.39 new_esEs19(x0, x1, ty_Integer) 27.89/11.39 new_compare9(@0, @0) 27.89/11.39 new_ltEs19(x0, x1, ty_@0) 27.89/11.39 new_compare110(x0, x1, False) 27.89/11.39 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_ltEs20(x0, x1, ty_Int) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 27.89/11.39 new_lt4(x0, x1) 27.89/11.39 new_esEs24(x0, x1, ty_Ordering) 27.89/11.39 new_esEs19(x0, x1, ty_@0) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 27.89/11.39 new_lt8(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_compare29(x0, x1, ty_Float) 27.89/11.39 new_lt8(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_esEs18(x0, x1, ty_Char) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 27.89/11.39 new_primCmpNat2(Zero, Zero) 27.89/11.39 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 27.89/11.39 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 27.89/11.39 new_esEs18(x0, x1, ty_@0) 27.89/11.39 new_compare6(x0, x1, x2) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 27.89/11.39 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_lt10(x0, x1) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), ty_Int) 27.89/11.39 new_compare24(x0, x1, False, x2, x3, x4) 27.89/11.39 new_asAs(False, x0) 27.89/11.39 new_esEs29(x0, x1, ty_Bool) 27.89/11.39 new_esEs23(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 27.89/11.39 new_primEqNat0(Zero, Succ(x0)) 27.89/11.39 new_not(True) 27.89/11.39 new_lt20(x0, x1, ty_Bool) 27.89/11.39 new_esEs22(x0, x1, ty_Char) 27.89/11.39 new_ltEs10(GT, LT) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), ty_@0) 27.89/11.39 new_ltEs10(LT, GT) 27.89/11.39 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 27.89/11.39 new_esEs22(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_lt8(x0, x1, ty_Float) 27.89/11.39 new_esEs12(False, False) 27.89/11.39 new_ltEs20(x0, x1, ty_Double) 27.89/11.39 new_esEs22(x0, x1, app(ty_[], x2)) 27.89/11.39 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 27.89/11.39 new_ltEs20(x0, x1, ty_@0) 27.89/11.39 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_esEs20(x0, x1, ty_Integer) 27.89/11.39 new_esEs26(x0, x1, ty_Ordering) 27.89/11.39 new_ltEs4(x0, x1) 27.89/11.39 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 27.89/11.39 new_esEs9([], [], x0) 27.89/11.39 new_esEs18(x0, x1, ty_Integer) 27.89/11.39 new_compare18(x0, x1, True, x2, x3) 27.89/11.39 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_esEs25(x0, x1, ty_Char) 27.89/11.39 new_primMulNat0(Zero, Succ(x0)) 27.89/11.39 new_primCmpNat0(x0, Zero) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 27.89/11.39 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 27.89/11.39 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 27.89/11.39 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 27.89/11.39 new_esEs29(x0, x1, ty_Float) 27.89/11.39 new_ltEs16(x0, x1, x2) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 27.89/11.39 new_esEs18(x0, x1, ty_Bool) 27.89/11.39 new_esEs22(x0, x1, ty_Int) 27.89/11.39 new_primPlusNat1(Zero, Succ(x0)) 27.89/11.39 new_esEs20(x0, x1, ty_Bool) 27.89/11.39 new_compare23(x0, x1, True, x2) 27.89/11.39 new_ltEs7(Nothing, Just(x0), x1) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 27.89/11.39 new_lt6(x0, x1) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 27.89/11.39 new_esEs20(x0, x1, app(ty_Ratio, x2)) 27.89/11.39 new_esEs4(Just(x0), Just(x1), ty_Integer) 27.89/11.39 new_ltEs18(x0, x1, ty_Char) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 27.89/11.39 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 27.89/11.39 new_esEs25(x0, x1, ty_Double) 27.89/11.39 new_compare17(x0, x1, False, x2, x3) 27.89/11.39 new_ltEs18(x0, x1, ty_@0) 27.89/11.39 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_esEs25(x0, x1, ty_Bool) 27.89/11.39 new_esEs29(x0, x1, ty_@0) 27.89/11.39 new_esEs21(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_esEs26(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_lt18(x0, x1) 27.89/11.39 new_esEs24(x0, x1, app(ty_[], x2)) 27.89/11.39 new_esEs9([], :(x0, x1), x2) 27.89/11.39 new_lt19(x0, x1, ty_Ordering) 27.89/11.39 new_esEs22(x0, x1, ty_@0) 27.89/11.39 new_ltEs18(x0, x1, ty_Int) 27.89/11.39 new_esEs23(x0, x1, ty_Ordering) 27.89/11.39 new_ltEs20(x0, x1, app(ty_[], x2)) 27.89/11.39 new_ltEs20(x0, x1, ty_Bool) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 27.89/11.39 new_primCmpInt(Pos(Zero), Pos(Zero)) 27.89/11.39 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 27.89/11.39 new_ltEs11(x0, x1, x2) 27.89/11.39 new_esEs9(:(x0, x1), :(x2, x3), x4) 27.89/11.39 new_pePe(True, x0) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), ty_Integer) 27.89/11.39 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 27.89/11.39 new_ltEs19(x0, x1, ty_Ordering) 27.89/11.39 new_compare25(x0, x1, True) 27.89/11.39 new_primMulInt(Neg(x0), Neg(x1)) 27.89/11.39 new_lt19(x0, x1, ty_Integer) 27.89/11.39 new_esEs6(Left(x0), Right(x1), x2, x3) 27.89/11.39 new_esEs6(Right(x0), Left(x1), x2, x3) 27.89/11.39 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 27.89/11.39 new_compare12(x0, x1) 27.89/11.39 new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 27.89/11.39 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 27.89/11.39 new_esEs18(x0, x1, ty_Float) 27.89/11.39 new_ltEs18(x0, x1, ty_Float) 27.89/11.39 new_primMulNat0(Succ(x0), Succ(x1)) 27.89/11.39 new_ltEs19(x0, x1, ty_Double) 27.89/11.39 new_compare11(x0, x1, True, x2, x3, x4) 27.89/11.39 new_esEs15(GT, GT) 27.89/11.39 new_primCmpNat1(Zero, x0) 27.89/11.39 new_esEs29(x0, x1, ty_Double) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 27.89/11.39 new_esEs28(x0, x1, ty_Integer) 27.89/11.39 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_esEs15(LT, EQ) 27.89/11.39 new_esEs15(EQ, LT) 27.89/11.39 new_lt19(x0, x1, ty_Bool) 27.89/11.39 new_primPlusNat0(x0, x1) 27.89/11.39 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 27.89/11.39 new_esEs20(x0, x1, ty_Char) 27.89/11.39 new_lt20(x0, x1, ty_@0) 27.89/11.39 new_lt16(x0, x1) 27.89/11.39 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 27.89/11.39 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 27.89/11.39 new_esEs21(x0, x1, ty_@0) 27.89/11.39 new_compare16(x0, x1) 27.89/11.39 new_fsEs(x0) 27.89/11.39 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_esEs24(x0, x1, ty_Integer) 27.89/11.39 new_primPlusNat1(Succ(x0), Succ(x1)) 27.89/11.39 new_compare211(x0, x1, False, x2, x3) 27.89/11.39 new_compare19(x0, x1, True, x2) 27.89/11.39 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_esEs18(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_esEs18(x0, x1, app(ty_[], x2)) 27.89/11.39 new_ltEs20(x0, x1, ty_Integer) 27.89/11.39 new_esEs8(@0, @0) 27.89/11.39 new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 27.89/11.39 new_esEs19(x0, x1, app(ty_[], x2)) 27.89/11.39 new_esEs18(x0, x1, ty_Int) 27.89/11.39 new_esEs20(x0, x1, ty_Int) 27.89/11.39 new_primEqNat0(Zero, Zero) 27.89/11.39 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 27.89/11.39 new_esEs26(x0, x1, ty_Double) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 27.89/11.39 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 27.89/11.39 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_primCmpNat1(Succ(x0), x1) 27.89/11.39 new_esEs12(True, True) 27.89/11.39 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 27.89/11.39 new_esEs10(Integer(x0), Integer(x1)) 27.89/11.39 new_not(False) 27.89/11.39 new_esEs24(x0, x1, ty_Char) 27.89/11.39 new_lt8(x0, x1, ty_Bool) 27.89/11.39 new_esEs26(x0, x1, ty_@0) 27.89/11.39 new_compare10(x0, x1, True) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), ty_Bool) 27.89/11.39 new_ltEs9(x0, x1) 27.89/11.39 new_compare1([], [], x0) 27.89/11.39 new_ltEs20(x0, x1, ty_Ordering) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 27.89/11.39 new_esEs24(x0, x1, ty_Int) 27.89/11.39 new_esEs13(Float(x0, x1), Float(x2, x3)) 27.89/11.39 new_primCompAux0(x0, GT) 27.89/11.39 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 27.89/11.39 new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 27.89/11.39 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_primMulNat0(Succ(x0), Zero) 27.89/11.39 new_ltEs18(x0, x1, app(ty_[], x2)) 27.89/11.39 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_esEs23(x0, x1, ty_Double) 27.89/11.39 new_ltEs8(True, True) 27.89/11.39 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.39 new_esEs20(x0, x1, ty_Float) 27.89/11.39 new_lt7(x0, x1) 27.89/11.39 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_esEs25(x0, x1, app(ty_[], x2)) 27.89/11.39 new_lt8(x0, x1, ty_Ordering) 27.89/11.39 new_lt9(x0, x1, x2) 27.89/11.39 new_lt19(x0, x1, ty_Float) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 27.89/11.39 new_lt8(x0, x1, ty_Integer) 27.89/11.39 new_compare23(Just(x0), Just(x1), False, x2) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 27.89/11.39 new_compare23(Just(x0), Nothing, False, x1) 27.89/11.39 new_compare18(x0, x1, False, x2, x3) 27.89/11.39 new_lt19(x0, x1, ty_Char) 27.89/11.39 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_esEs14(:%(x0, x1), :%(x2, x3), x4) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 27.89/11.39 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 27.89/11.39 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 27.89/11.39 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 27.89/11.39 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 27.89/11.39 new_esEs19(x0, x1, ty_Double) 27.89/11.39 new_esEs22(x0, x1, app(ty_Maybe, x2)) 27.89/11.39 new_esEs21(x0, x1, app(ty_[], x2)) 27.89/11.39 new_compare26(x0, x1, x2, x3) 27.89/11.39 new_esEs23(x0, x1, ty_@0) 27.89/11.39 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.39 new_esEs11(Double(x0, x1), Double(x2, x3)) 27.89/11.39 new_compare24(x0, x1, True, x2, x3, x4) 27.89/11.39 new_compare1(:(x0, x1), :(x2, x3), x4) 27.89/11.39 new_esEs4(Just(x0), Just(x1), ty_@0) 27.89/11.39 new_ltEs17(x0, x1) 27.89/11.39 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 27.89/11.39 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 27.89/11.39 new_esEs4(Nothing, Just(x0), x1) 27.89/11.39 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 27.89/11.39 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.39 new_compare30(x0, x1, x2, x3) 27.89/11.39 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 27.89/11.39 new_esEs24(x0, x1, ty_Bool) 27.89/11.39 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 27.89/11.39 27.89/11.39 We have to consider all minimal (P,Q,R)-chains. 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (36) QDPSizeChangeProof (EQUIVALENT) 27.89/11.39 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. 27.89/11.39 27.89/11.39 From the DPs we obtained the following set of size-change graphs: 27.89/11.39 *new_delFromFM1(xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv33, Nothing, h, ba) 27.89/11.39 The graph contains the following edges 3 >= 1, 6 >= 3, 7 >= 4 27.89/11.39 27.89/11.39 27.89/11.39 *new_delFromFM(Branch(Nothing, xwv31, xwv32, xwv33, xwv34), Nothing, h, ba) -> new_delFromFM1(xwv31, xwv32, xwv33, xwv34, new_esEs15(new_compare23(Nothing, Nothing, new_esEs4(Nothing, Nothing, h), h), LT), h, ba) 27.89/11.39 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 3 >= 6, 4 >= 7 27.89/11.39 27.89/11.39 27.89/11.39 *new_delFromFM(Branch(Just(xwv300), xwv31, xwv32, xwv33, xwv34), Nothing, h, ba) -> new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, new_esEs15(new_compare23(Nothing, Just(xwv300), False, h), GT), h, ba) 27.89/11.39 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 7, 4 >= 8 27.89/11.39 27.89/11.39 27.89/11.39 *new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, False, h, ba) -> new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, new_esEs15(new_compare23(Nothing, Just(xwv300), new_esEs4(Nothing, Just(xwv300), h), h), LT), h, ba) 27.89/11.39 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 27.89/11.39 27.89/11.39 27.89/11.39 *new_delFromFM2(xwv300, xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv34, Nothing, h, ba) 27.89/11.39 The graph contains the following edges 5 >= 1, 7 >= 3, 8 >= 4 27.89/11.39 27.89/11.39 27.89/11.39 *new_delFromFM10(xwv300, xwv31, xwv32, xwv33, xwv34, True, h, ba) -> new_delFromFM(xwv33, Nothing, h, ba) 27.89/11.39 The graph contains the following edges 4 >= 1, 7 >= 3, 8 >= 4 27.89/11.39 27.89/11.39 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (37) 27.89/11.39 YES 27.89/11.39 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (38) 27.89/11.39 Obligation: 27.89/11.39 Q DP problem: 27.89/11.39 The TRS P consists of the following rules: 27.89/11.39 27.89/11.39 new_primMulNat(Succ(xwv40100), Succ(xwv300000)) -> new_primMulNat(xwv40100, Succ(xwv300000)) 27.89/11.39 27.89/11.39 R is empty. 27.89/11.39 Q is empty. 27.89/11.39 We have to consider all minimal (P,Q,R)-chains. 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (39) QDPSizeChangeProof (EQUIVALENT) 27.89/11.39 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. 27.89/11.39 27.89/11.39 From the DPs we obtained the following set of size-change graphs: 27.89/11.39 *new_primMulNat(Succ(xwv40100), Succ(xwv300000)) -> new_primMulNat(xwv40100, Succ(xwv300000)) 27.89/11.39 The graph contains the following edges 1 > 1, 2 >= 2 27.89/11.39 27.89/11.39 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (40) 27.89/11.39 YES 27.89/11.39 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (41) 27.89/11.39 Obligation: 27.89/11.39 Q DP problem: 27.89/11.39 The TRS P consists of the following rules: 27.89/11.39 27.89/11.39 new_primMinusNat(Succ(xwv25000), Succ(xwv25100)) -> new_primMinusNat(xwv25000, xwv25100) 27.89/11.39 27.89/11.39 R is empty. 27.89/11.39 Q is empty. 27.89/11.39 We have to consider all minimal (P,Q,R)-chains. 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (42) QDPSizeChangeProof (EQUIVALENT) 27.89/11.39 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. 27.89/11.39 27.89/11.39 From the DPs we obtained the following set of size-change graphs: 27.89/11.39 *new_primMinusNat(Succ(xwv25000), Succ(xwv25100)) -> new_primMinusNat(xwv25000, xwv25100) 27.89/11.39 The graph contains the following edges 1 > 1, 2 > 2 27.89/11.39 27.89/11.39 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (43) 27.89/11.39 YES 27.89/11.39 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (44) 27.89/11.39 Obligation: 27.89/11.39 Q DP problem: 27.89/11.39 The TRS P consists of the following rules: 27.89/11.39 27.89/11.39 new_primPlusNat(Succ(xwv33200), Succ(xwv9100)) -> new_primPlusNat(xwv33200, xwv9100) 27.89/11.39 27.89/11.39 R is empty. 27.89/11.39 Q is empty. 27.89/11.39 We have to consider all minimal (P,Q,R)-chains. 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (45) QDPSizeChangeProof (EQUIVALENT) 27.89/11.39 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. 27.89/11.39 27.89/11.39 From the DPs we obtained the following set of size-change graphs: 27.89/11.39 *new_primPlusNat(Succ(xwv33200), Succ(xwv9100)) -> new_primPlusNat(xwv33200, xwv9100) 27.89/11.39 The graph contains the following edges 1 > 1, 2 > 2 27.89/11.39 27.89/11.39 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (46) 27.89/11.39 YES 27.89/11.39 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (47) 27.89/11.39 Obligation: 27.89/11.39 Q DP problem: 27.89/11.39 The TRS P consists of the following rules: 27.89/11.39 27.89/11.39 new_glueBal2Mid_key10(xwv347, xwv348, xwv349, xwv350, xwv351, xwv352, xwv353, xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, Branch(xwv3610, xwv3611, xwv3612, xwv3613, xwv3614), h, ba) -> new_glueBal2Mid_key10(xwv347, xwv348, xwv349, xwv350, xwv351, xwv352, xwv353, xwv354, xwv355, xwv356, xwv3610, xwv3611, xwv3612, xwv3613, xwv3614, h, ba) 27.89/11.39 27.89/11.39 R is empty. 27.89/11.39 Q is empty. 27.89/11.39 We have to consider all minimal (P,Q,R)-chains. 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (48) QDPSizeChangeProof (EQUIVALENT) 27.89/11.39 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. 27.89/11.39 27.89/11.39 From the DPs we obtained the following set of size-change graphs: 27.89/11.39 *new_glueBal2Mid_key10(xwv347, xwv348, xwv349, xwv350, xwv351, xwv352, xwv353, xwv354, xwv355, xwv356, xwv357, xwv358, xwv359, xwv360, Branch(xwv3610, xwv3611, xwv3612, xwv3613, xwv3614), h, ba) -> new_glueBal2Mid_key10(xwv347, xwv348, xwv349, xwv350, xwv351, xwv352, xwv353, xwv354, xwv355, xwv356, xwv3610, xwv3611, xwv3612, xwv3613, xwv3614, h, ba) 27.89/11.39 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 27.89/11.39 27.89/11.39 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (49) 27.89/11.39 YES 27.89/11.39 27.89/11.39 ---------------------------------------- 27.89/11.39 27.89/11.39 (50) 27.89/11.39 Obligation: 27.89/11.39 Q DP problem: 27.89/11.39 The TRS P consists of the following rules: 27.89/11.39 27.89/11.39 new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(app(ty_Either, bf), bg), bd, be) -> new_compare21(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bf, bg), bf, bg) 27.89/11.39 new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(app(app(ty_@3, h), ba), bb), bd, be) -> new_compare2(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, h, ba, bb), h, ba, bb) 27.89/11.39 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(ty_[], bbf)), baf)) -> new_lt3(xwv28000, xwv29000, bbf) 27.89/11.39 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, bbg), app(app(ty_Either, bcd), bce))) -> new_ltEs1(xwv28001, xwv29001, bcd, bce) 27.89/11.39 new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, app(app(ty_Either, da), db), be) -> new_lt1(xwv28001, xwv29001, da, db) 27.89/11.39 new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, bd, app(ty_Maybe, df)) -> new_ltEs0(xwv28002, xwv29002, df) 27.89/11.39 new_primCompAux(xwv28000, xwv29000, xwv141, app(app(app(ty_@3, bdc), bdd), bde)) -> new_compare3(xwv28000, xwv29000, bdc, bdd, bde) 27.89/11.39 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), bd), app(ty_Maybe, df))) -> new_ltEs0(xwv28002, xwv29002, df) 27.89/11.39 new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, app(ty_Maybe, cd), be) -> new_lt(xwv28001, xwv29001, cd) 27.89/11.39 new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(ty_[], cb), bd, be) -> new_compare(xwv28000, xwv29000, cb) 27.89/11.39 new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(app(ty_Either, bbb), bbc), baf) -> new_lt1(xwv28000, xwv29000, bbb, bbc) 27.89/11.39 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(app(ty_@2, bh), ca)), bd), be)) -> new_compare22(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, bh, ca), bh, ca) 27.89/11.39 new_ltEs3(:(xwv28000, xwv28001), :(xwv29000, xwv29001), bda) -> new_compare(xwv28001, xwv29001, bda) 27.89/11.39 new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), bbg, app(app(ty_Either, bcd), bce)) -> new_ltEs1(xwv28001, xwv29001, bcd, bce) 27.89/11.39 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(ty_Maybe, bae)), baf)) -> new_lt(xwv28000, xwv29000, bae) 27.89/11.39 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), bd), app(ty_[], ef))) -> new_ltEs3(xwv28002, xwv29002, ef) 27.89/11.39 new_compare22(xwv28000, xwv29000, False, bh, ca) -> new_ltEs2(xwv28000, xwv29000, bh, ca) 27.89/11.39 new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(ty_[], hb)), gb)) -> new_ltEs3(xwv28000, xwv29000, hb) 27.89/11.39 new_ltEs1(Right(xwv28000), Right(xwv29000), hc, app(ty_Maybe, hd)) -> new_ltEs0(xwv28000, xwv29000, hd) 27.89/11.39 new_lt3(xwv28000, xwv29000, cb) -> new_compare(xwv28000, xwv29000, cb) 27.89/11.39 new_ltEs1(Right(xwv28000), Right(xwv29000), hc, app(app(ty_Either, hh), baa)) -> new_ltEs1(xwv28000, xwv29000, hh, baa) 27.89/11.39 new_compare4(xwv28000, xwv29000, bf, bg) -> new_compare21(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bf, bg), bf, bg) 27.89/11.39 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(app(ty_@2, bbd), bbe)), baf)) -> new_lt2(xwv28000, xwv29000, bbd, bbe) 27.89/11.39 new_ltEs1(Right(xwv28000), Right(xwv29000), hc, app(ty_[], bad)) -> new_ltEs3(xwv28000, xwv29000, bad) 27.89/11.39 new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, hc), app(app(app(ty_@3, he), hf), hg))) -> new_ltEs(xwv28000, xwv29000, he, hf, hg) 27.89/11.39 new_primCompAux(xwv28000, xwv29000, xwv141, app(ty_Maybe, bdb)) -> new_compare0(xwv28000, xwv29000, bdb) 27.89/11.39 new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(ty_Maybe, bc), bd, be) -> new_compare20(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, bc), bc) 27.89/11.39 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), app(app(app(ty_@3, ce), cf), cg)), be)) -> new_lt0(xwv28001, xwv29001, ce, cf, cg) 27.89/11.39 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), app(app(ty_Either, da), db)), be)) -> new_lt1(xwv28001, xwv29001, da, db) 27.89/11.39 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), bd), app(app(ty_Either, eb), ec))) -> new_ltEs1(xwv28002, xwv29002, eb, ec) 27.89/11.39 new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, hc), app(ty_[], bad))) -> new_ltEs3(xwv28000, xwv29000, bad) 27.89/11.39 new_compare0(xwv28000, xwv29000, bc) -> new_compare20(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, bc), bc) 27.89/11.39 new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, app(app(app(ty_@3, ce), cf), cg), be) -> new_lt0(xwv28001, xwv29001, ce, cf, cg) 27.89/11.39 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), bd), app(app(app(ty_@3, dg), dh), ea))) -> new_ltEs(xwv28002, xwv29002, dg, dh, ea) 27.89/11.39 new_ltEs0(Just(xwv28000), Just(xwv29000), app(ty_Maybe, eg)) -> new_ltEs0(xwv28000, xwv29000, eg) 27.89/11.39 new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, bd, app(ty_[], ef)) -> new_ltEs3(xwv28002, xwv29002, ef) 27.89/11.39 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, bbg), app(ty_Maybe, bbh))) -> new_ltEs0(xwv28001, xwv29001, bbh) 27.89/11.39 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), app(ty_[], de)), be)) -> new_lt3(xwv28001, xwv29001, de) 27.89/11.39 new_ltEs0(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, eh), fa), fb)) -> new_ltEs(xwv28000, xwv29000, eh, fa, fb) 27.89/11.39 new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, app(ty_[], de), be) -> new_lt3(xwv28001, xwv29001, de) 27.89/11.39 new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, bd, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs(xwv28002, xwv29002, dg, dh, ea) 27.89/11.39 new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, hc), app(app(ty_Either, hh), baa))) -> new_ltEs1(xwv28000, xwv29000, hh, baa) 27.89/11.39 new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(app(ty_@2, gh), ha)), gb)) -> new_ltEs2(xwv28000, xwv29000, gh, ha) 27.89/11.39 new_ltEs1(Left(xwv28000), Left(xwv29000), app(ty_Maybe, ga), gb) -> new_ltEs0(xwv28000, xwv29000, ga) 27.89/11.39 new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, app(app(ty_@2, dc), dd), be) -> new_lt2(xwv28001, xwv29001, dc, dd) 27.89/11.39 new_lt(xwv28000, xwv29000, bc) -> new_compare20(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, bc), bc) 27.89/11.39 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), app(ty_Maybe, cd)), be)) -> new_lt(xwv28001, xwv29001, cd) 27.89/11.39 new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), bbg, app(ty_Maybe, bbh)) -> new_ltEs0(xwv28001, xwv29001, bbh) 27.89/11.39 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(app(app(ty_@3, bag), bah), bba)), baf)) -> new_lt0(xwv28000, xwv29000, bag, bah, bba) 27.89/11.39 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(ty_[], cb)), bd), be)) -> new_compare(xwv28000, xwv29000, cb) 27.89/11.39 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(ty_Maybe, bc)), bd), be)) -> new_compare20(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, bc), bc) 27.89/11.39 new_lt1(xwv28000, xwv29000, bf, bg) -> new_compare21(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bf, bg), bf, bg) 27.89/11.39 new_compare21(xwv28000, xwv29000, False, bf, bg) -> new_ltEs1(xwv28000, xwv29000, bf, bg) 27.89/11.39 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(app(app(ty_@3, h), ba), bb)), bd), be)) -> new_compare2(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, h, ba, bb), h, ba, bb) 27.89/11.39 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(app(ty_Either, bbb), bbc)), baf)) -> new_lt1(xwv28000, xwv29000, bbb, bbc) 27.89/11.39 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, bbg), app(app(ty_@2, bcf), bcg))) -> new_ltEs2(xwv28001, xwv29001, bcf, bcg) 27.89/11.39 new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(app(app(ty_@3, bag), bah), bba), baf) -> new_lt0(xwv28000, xwv29000, bag, bah, bba) 27.89/11.39 new_ltEs0(Just(xwv28000), Just(xwv29000), app(app(ty_Either, fc), fd)) -> new_ltEs1(xwv28000, xwv29000, fc, fd) 27.89/11.39 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), app(app(ty_@2, dc), dd)), be)) -> new_lt2(xwv28001, xwv29001, dc, dd) 27.89/11.39 new_lt0(xwv28000, xwv29000, h, ba, bb) -> new_compare2(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, h, ba, bb), h, ba, bb) 27.89/11.39 new_compare20(Just(:(xwv28000, xwv28001)), Just(:(xwv29000, xwv29001)), False, app(ty_[], bda)) -> new_compare(xwv28001, xwv29001, bda) 27.89/11.39 new_compare20(Just(:(xwv28000, xwv28001)), Just(:(xwv29000, xwv29001)), False, app(ty_[], bda)) -> new_primCompAux(xwv28000, xwv29000, new_compare1(xwv28001, xwv29001, bda), bda) 27.89/11.39 new_compare3(xwv28000, xwv29000, h, ba, bb) -> new_compare2(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, h, ba, bb), h, ba, bb) 27.89/11.39 new_primCompAux(xwv28000, xwv29000, xwv141, app(app(ty_Either, bdf), bdg)) -> new_compare4(xwv28000, xwv29000, bdf, bdg) 27.89/11.39 new_ltEs1(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, gc), gd), ge), gb) -> new_ltEs(xwv28000, xwv29000, gc, gd, ge) 27.89/11.39 new_ltEs1(Right(xwv28000), Right(xwv29000), hc, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs(xwv28000, xwv29000, he, hf, hg) 27.89/11.39 new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(app(ty_@2, bh), ca), bd, be) -> new_compare22(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, bh, ca), bh, ca) 27.89/11.39 new_ltEs1(Right(xwv28000), Right(xwv29000), hc, app(app(ty_@2, bab), bac)) -> new_ltEs2(xwv28000, xwv29000, bab, bac) 27.89/11.39 new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(app(ty_@2, bbd), bbe), baf) -> new_lt2(xwv28000, xwv29000, bbd, bbe) 27.89/11.39 new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(app(ty_@2, ff), fg))) -> new_ltEs2(xwv28000, xwv29000, ff, fg) 27.89/11.39 new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, hc), app(app(ty_@2, bab), bac))) -> new_ltEs2(xwv28000, xwv29000, bab, bac) 27.89/11.39 new_compare(:(xwv28000, xwv28001), :(xwv29000, xwv29001), bda) -> new_primCompAux(xwv28000, xwv29000, new_compare1(xwv28001, xwv29001, bda), bda) 27.89/11.39 new_compare2(xwv28000, xwv29000, False, h, ba, bb) -> new_ltEs(xwv28000, xwv29000, h, ba, bb) 27.89/11.39 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(app(ty_Either, bf), bg)), bd), be)) -> new_compare21(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bf, bg), bf, bg) 27.89/11.39 new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(ty_Maybe, eg))) -> new_ltEs0(xwv28000, xwv29000, eg) 27.89/11.39 new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), bbg, app(app(ty_@2, bcf), bcg)) -> new_ltEs2(xwv28001, xwv29001, bcf, bcg) 27.89/11.39 new_ltEs1(Left(xwv28000), Left(xwv29000), app(app(ty_Either, gf), gg), gb) -> new_ltEs1(xwv28000, xwv29000, gf, gg) 27.89/11.39 new_primCompAux(xwv28000, xwv29000, xwv141, app(app(ty_@2, bdh), bea)) -> new_compare5(xwv28000, xwv29000, bdh, bea) 27.89/11.39 new_compare5(xwv28000, xwv29000, bh, ca) -> new_compare22(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, bh, ca), bh, ca) 27.89/11.39 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, bbg), app(ty_[], bch))) -> new_ltEs3(xwv28001, xwv29001, bch) 27.89/11.39 new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), bbg, app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs(xwv28001, xwv29001, bca, bcb, bcc) 27.89/11.39 new_primCompAux(xwv28000, xwv29000, xwv141, app(ty_[], beb)) -> new_compare(xwv28000, xwv29000, beb) 27.89/11.39 new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, hc), app(ty_Maybe, hd))) -> new_ltEs0(xwv28000, xwv29000, hd) 27.89/11.39 new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, bd, app(app(ty_Either, eb), ec)) -> new_ltEs1(xwv28002, xwv29002, eb, ec) 27.89/11.39 new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), bbg, app(ty_[], bch)) -> new_ltEs3(xwv28001, xwv29001, bch) 27.89/11.39 new_ltEs0(Just(xwv28000), Just(xwv29000), app(ty_[], fh)) -> new_ltEs3(xwv28000, xwv29000, fh) 27.89/11.39 new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(app(app(ty_@3, gc), gd), ge)), gb)) -> new_ltEs(xwv28000, xwv29000, gc, gd, ge) 27.89/11.39 new_ltEs1(Left(xwv28000), Left(xwv29000), app(ty_[], hb), gb) -> new_ltEs3(xwv28000, xwv29000, hb) 27.89/11.39 new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(app(app(ty_@3, eh), fa), fb))) -> new_ltEs(xwv28000, xwv29000, eh, fa, fb) 27.89/11.39 new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(ty_[], bbf), baf) -> new_lt3(xwv28000, xwv29000, bbf) 27.89/11.39 new_compare(:(xwv28000, xwv28001), :(xwv29000, xwv29001), bda) -> new_compare(xwv28001, xwv29001, bda) 27.89/11.39 new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(ty_Maybe, ga)), gb)) -> new_ltEs0(xwv28000, xwv29000, ga) 27.89/11.39 new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(app(ty_Either, fc), fd))) -> new_ltEs1(xwv28000, xwv29000, fc, fd) 27.89/11.39 new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(app(ty_Either, gf), gg)), gb)) -> new_ltEs1(xwv28000, xwv29000, gf, gg) 27.89/11.39 new_ltEs3(:(xwv28000, xwv28001), :(xwv29000, xwv29001), bda) -> new_primCompAux(xwv28000, xwv29000, new_compare1(xwv28001, xwv29001, bda), bda) 27.89/11.39 new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, bbg), app(app(app(ty_@3, bca), bcb), bcc))) -> new_ltEs(xwv28001, xwv29001, bca, bcb, bcc) 27.89/11.39 new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(ty_Maybe, bae), baf) -> new_lt(xwv28000, xwv29000, bae) 27.89/11.39 new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, bd, app(app(ty_@2, ed), ee)) -> new_ltEs2(xwv28002, xwv29002, ed, ee) 27.89/11.39 new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(ty_[], fh))) -> new_ltEs3(xwv28000, xwv29000, fh) 27.89/11.39 new_ltEs0(Just(xwv28000), Just(xwv29000), app(app(ty_@2, ff), fg)) -> new_ltEs2(xwv28000, xwv29000, ff, fg) 27.89/11.39 new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), bd), app(app(ty_@2, ed), ee))) -> new_ltEs2(xwv28002, xwv29002, ed, ee) 27.89/11.39 new_ltEs1(Left(xwv28000), Left(xwv29000), app(app(ty_@2, gh), ha), gb) -> new_ltEs2(xwv28000, xwv29000, gh, ha) 27.89/11.39 new_lt2(xwv28000, xwv29000, bh, ca) -> new_compare22(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, bh, ca), bh, ca) 27.89/11.39 27.89/11.39 The TRS R consists of the following rules: 27.89/11.39 27.89/11.39 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 27.89/11.39 new_primCmpInt(Neg(Succ(xwv2800)), Pos(xwv290)) -> LT 27.89/11.39 new_ltEs19(xwv2800, xwv2900, ty_Double) -> new_ltEs4(xwv2800, xwv2900) 27.89/11.39 new_pePe(True, xwv131) -> True 27.89/11.39 new_esEs24(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.89/11.39 new_compare29(xwv28000, xwv29000, app(app(ty_@2, bdh), bea)) -> new_compare30(xwv28000, xwv29000, bdh, bea) 27.89/11.39 new_ltEs14(xwv2800, xwv2900) -> new_fsEs(new_compare14(xwv2800, xwv2900)) 27.89/11.39 new_lt8(xwv28000, xwv29000, app(app(ty_@2, bbd), bbe)) -> new_lt14(xwv28000, xwv29000, bbd, bbe) 27.89/11.39 new_compare23(xwv280, xwv290, True, cah) -> EQ 27.89/11.39 new_esEs23(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.89/11.39 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 27.89/11.39 new_ltEs20(xwv28002, xwv29002, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs5(xwv28002, xwv29002, dg, dh, ea) 27.89/11.39 new_primCmpInt(Pos(Zero), Neg(Succ(xwv2900))) -> GT 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Ordering, gb) -> new_ltEs10(xwv28000, xwv29000) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, app(app(ty_@2, bbg), baf)) -> new_ltEs12(xwv2800, xwv2900, bbg, baf) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Int, gb) -> new_ltEs14(xwv28000, xwv29000) 27.89/11.39 new_esEs18(xwv28000, xwv29000, ty_Float) -> new_esEs13(xwv28000, xwv29000) 27.89/11.39 new_esEs24(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.89/11.39 new_esEs20(xwv28000, xwv29000, ty_Double) -> new_esEs11(xwv28000, xwv29000) 27.89/11.39 new_esEs26(xwv402, xwv3002, app(app(ty_@2, dbb), dbc)) -> new_esEs7(xwv402, xwv3002, dbb, dbc) 27.89/11.39 new_compare15(xwv28000, xwv29000, h, ba, bb) -> new_compare24(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, h, ba, bb), h, ba, bb) 27.89/11.39 new_esEs18(xwv28000, xwv29000, ty_Bool) -> new_esEs12(xwv28000, xwv29000) 27.89/11.39 new_ltEs10(GT, LT) -> False 27.89/11.39 new_lt7(xwv28000, xwv29000) -> new_esEs15(new_compare8(xwv28000, xwv29000), LT) 27.89/11.39 new_ltEs4(xwv2800, xwv2900) -> new_fsEs(new_compare7(xwv2800, xwv2900)) 27.89/11.39 new_esEs25(xwv401, xwv3001, ty_Double) -> new_esEs11(xwv401, xwv3001) 27.89/11.39 new_primCompAux0(xwv153, GT) -> GT 27.89/11.39 new_esEs22(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.89/11.39 new_esEs28(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.89/11.39 new_esEs19(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, ty_Double) -> new_ltEs4(xwv28002, xwv29002) 27.89/11.39 new_compare210(xwv28000, xwv29000, False) -> new_compare110(xwv28000, xwv29000, new_ltEs10(xwv28000, xwv29000)) 27.89/11.39 new_primEqInt(Pos(Succ(xwv4000)), Pos(Zero)) -> False 27.89/11.39 new_primEqInt(Pos(Zero), Pos(Succ(xwv30000))) -> False 27.89/11.39 new_esEs27(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.89/11.39 new_ltEs10(EQ, LT) -> False 27.89/11.39 new_compare31(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.89/11.39 new_ltEs11(xwv2800, xwv2900, cbb) -> new_fsEs(new_compare28(xwv2800, xwv2900, cbb)) 27.89/11.39 new_esEs23(xwv401, xwv3001, app(ty_[], cef)) -> new_esEs9(xwv401, xwv3001, cef) 27.89/11.39 new_lt16(xwv280, xwv290) -> new_esEs15(new_compare14(xwv280, xwv290), LT) 27.89/11.39 new_primCmpNat2(Succ(xwv28000), Succ(xwv29000)) -> new_primCmpNat2(xwv28000, xwv29000) 27.89/11.39 new_esEs20(xwv28000, xwv29000, app(app(app(ty_@3, h), ba), bb)) -> new_esEs5(xwv28000, xwv29000, h, ba, bb) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), ty_Double, bec) -> new_esEs11(xwv400, xwv3000) 27.89/11.39 new_compare1(:(xwv28000, xwv28001), [], bda) -> GT 27.89/11.39 new_esEs22(xwv400, xwv3000, app(ty_Maybe, cea)) -> new_esEs4(xwv400, xwv3000, cea) 27.89/11.39 new_primEqNat0(Succ(xwv4000), Succ(xwv30000)) -> new_primEqNat0(xwv4000, xwv30000) 27.89/11.39 new_esEs23(xwv401, xwv3001, app(ty_Ratio, cfg)) -> new_esEs14(xwv401, xwv3001, cfg) 27.89/11.39 new_compare12(xwv28000, xwv29000) -> new_compare210(xwv28000, xwv29000, new_esEs15(xwv28000, xwv29000)) 27.89/11.39 new_primCompAux0(xwv153, LT) -> LT 27.89/11.39 new_esEs20(xwv28000, xwv29000, ty_Ordering) -> new_esEs15(xwv28000, xwv29000) 27.89/11.39 new_not(True) -> False 27.89/11.39 new_ltEs18(xwv28001, xwv29001, app(ty_Maybe, bbh)) -> new_ltEs7(xwv28001, xwv29001, bbh) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, app(app(app(ty_@3, cc), bd), be)) -> new_ltEs5(xwv2800, xwv2900, cc, bd, be) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, eh), fa), fb)) -> new_ltEs5(xwv28000, xwv29000, eh, fa, fb) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), hc, ty_Integer) -> new_ltEs9(xwv28000, xwv29000) 27.89/11.39 new_compare17(xwv28000, xwv29000, False, bf, bg) -> GT 27.89/11.39 new_compare29(xwv28000, xwv29000, ty_@0) -> new_compare9(xwv28000, xwv29000) 27.89/11.39 new_esEs18(xwv28000, xwv29000, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs5(xwv28000, xwv29000, bag, bah, bba) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, ty_Bool) -> new_ltEs8(xwv2800, xwv2900) 27.89/11.39 new_esEs23(xwv401, xwv3001, ty_Bool) -> new_esEs12(xwv401, xwv3001) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs5(xwv28001, xwv29001, bca, bcb, bcc) 27.89/11.39 new_esEs15(LT, EQ) -> False 27.89/11.39 new_esEs15(EQ, LT) -> False 27.89/11.39 new_ltEs18(xwv28001, xwv29001, app(app(ty_Either, bcd), bce)) -> new_ltEs6(xwv28001, xwv29001, bcd, bce) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(ty_Either, gf), gg), gb) -> new_ltEs6(xwv28000, xwv29000, gf, gg) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Bool, gb) -> new_ltEs8(xwv28000, xwv29000) 27.89/11.39 new_compare29(xwv28000, xwv29000, app(ty_Maybe, bdb)) -> new_compare6(xwv28000, xwv29000, bdb) 27.89/11.39 new_esEs8(@0, @0) -> True 27.89/11.39 new_primEqNat0(Succ(xwv4000), Zero) -> False 27.89/11.39 new_primEqNat0(Zero, Succ(xwv30000)) -> False 27.89/11.39 new_esEs24(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_Ratio, bfe), bec) -> new_esEs14(xwv400, xwv3000, bfe) 27.89/11.39 new_ltEs7(Nothing, Just(xwv29000), cba) -> True 27.89/11.39 new_esEs19(xwv400, xwv3000, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs5(xwv400, xwv3000, cad, cae, caf) 27.89/11.39 new_primCmpNat0(xwv2800, Succ(xwv2900)) -> new_primCmpNat2(xwv2800, xwv2900) 27.89/11.39 new_esEs22(xwv400, xwv3000, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xwv400, xwv3000, cdg, cdh) 27.89/11.39 new_esEs22(xwv400, xwv3000, app(ty_[], cdd)) -> new_esEs9(xwv400, xwv3000, cdd) 27.89/11.39 new_esEs25(xwv401, xwv3001, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs5(xwv401, xwv3001, dac, dad, dae) 27.89/11.39 new_compare110(xwv28000, xwv29000, True) -> LT 27.89/11.39 new_esEs18(xwv28000, xwv29000, ty_Double) -> new_esEs11(xwv28000, xwv29000) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), hc, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs5(xwv28000, xwv29000, he, hf, hg) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Double) -> new_ltEs4(xwv28000, xwv29000) 27.89/11.39 new_esEs18(xwv28000, xwv29000, app(ty_Ratio, bhc)) -> new_esEs14(xwv28000, xwv29000, bhc) 27.89/11.39 new_esEs23(xwv401, xwv3001, ty_@0) -> new_esEs8(xwv401, xwv3001) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_Maybe, ga), gb) -> new_ltEs7(xwv28000, xwv29000, ga) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), bff, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.89/11.39 new_primCmpInt(Pos(Succ(xwv2800)), Neg(xwv290)) -> GT 27.89/11.39 new_esEs24(xwv400, xwv3000, app(ty_Ratio, chd)) -> new_esEs14(xwv400, xwv3000, chd) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Bool) -> new_ltEs8(xwv28000, xwv29000) 27.89/11.39 new_esEs24(xwv400, xwv3000, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs5(xwv400, xwv3000, cha, chb, chc) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Char, gb) -> new_ltEs13(xwv28000, xwv29000) 27.89/11.39 new_ltEs10(GT, EQ) -> False 27.89/11.39 new_esEs18(xwv28000, xwv29000, ty_Ordering) -> new_esEs15(xwv28000, xwv29000) 27.89/11.39 new_ltEs17(xwv2800, xwv2900) -> new_fsEs(new_compare31(xwv2800, xwv2900)) 27.89/11.39 new_ltEs9(xwv2800, xwv2900) -> new_fsEs(new_compare8(xwv2800, xwv2900)) 27.89/11.39 new_compare1(:(xwv28000, xwv28001), :(xwv29000, xwv29001), bda) -> new_primCompAux1(xwv28000, xwv29000, new_compare1(xwv28001, xwv29001, bda), bda) 27.89/11.39 new_esEs26(xwv402, xwv3002, ty_Char) -> new_esEs16(xwv402, xwv3002) 27.89/11.39 new_primPlusNat1(Succ(xwv33200), Succ(xwv9100)) -> Succ(Succ(new_primPlusNat1(xwv33200, xwv9100))) 27.89/11.39 new_lt8(xwv28000, xwv29000, ty_Int) -> new_lt16(xwv28000, xwv29000) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), app(app(app(ty_@3, bfb), bfc), bfd), bec) -> new_esEs5(xwv400, xwv3000, bfb, bfc, bfd) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), bff, app(ty_Ratio, bgh)) -> new_esEs14(xwv400, xwv3000, bgh) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, ty_Bool) -> new_ltEs8(xwv28002, xwv29002) 27.89/11.39 new_esEs28(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), hc, app(ty_Maybe, hd)) -> new_ltEs7(xwv28000, xwv29000, hd) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, app(ty_Maybe, df)) -> new_ltEs7(xwv28002, xwv29002, df) 27.89/11.39 new_compare211(xwv28000, xwv29000, False, bh, ca) -> new_compare18(xwv28000, xwv29000, new_ltEs12(xwv28000, xwv29000, bh, ca), bh, ca) 27.89/11.39 new_compare210(xwv28000, xwv29000, True) -> EQ 27.89/11.39 new_lt8(xwv28000, xwv29000, ty_@0) -> new_lt4(xwv28000, xwv29000) 27.89/11.39 new_esEs21(xwv28001, xwv29001, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs5(xwv28001, xwv29001, ce, cf, cg) 27.89/11.39 new_esEs14(:%(xwv400, xwv401), :%(xwv3000, xwv3001), dca) -> new_asAs(new_esEs27(xwv400, xwv3000, dca), new_esEs28(xwv401, xwv3001, dca)) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), ty_Ordering, bec) -> new_esEs15(xwv400, xwv3000) 27.89/11.39 new_pePe(False, xwv131) -> xwv131 27.89/11.39 new_lt19(xwv28000, xwv29000, ty_Int) -> new_lt16(xwv28000, xwv29000) 27.89/11.39 new_lt8(xwv28000, xwv29000, app(app(ty_Either, bbb), bbc)) -> new_lt12(xwv28000, xwv29000, bbb, bbc) 27.89/11.39 new_esEs22(xwv400, xwv3000, app(ty_Ratio, cee)) -> new_esEs14(xwv400, xwv3000, cee) 27.89/11.39 new_esEs12(False, False) -> True 27.89/11.39 new_esEs15(GT, GT) -> True 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Double, gb) -> new_ltEs4(xwv28000, xwv29000) 27.89/11.39 new_esEs22(xwv400, xwv3000, app(app(ty_Either, cde), cdf)) -> new_esEs6(xwv400, xwv3000, cde, cdf) 27.89/11.39 new_esEs15(EQ, GT) -> False 27.89/11.39 new_esEs15(GT, EQ) -> False 27.89/11.39 new_ltEs20(xwv28002, xwv29002, ty_Char) -> new_ltEs13(xwv28002, xwv29002) 27.89/11.39 new_lt8(xwv28000, xwv29000, ty_Ordering) -> new_lt6(xwv28000, xwv29000) 27.89/11.39 new_lt19(xwv28000, xwv29000, ty_Bool) -> new_lt10(xwv28000, xwv29000) 27.89/11.39 new_esEs25(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, ty_Double) -> new_ltEs4(xwv28001, xwv29001) 27.89/11.39 new_lt19(xwv28000, xwv29000, app(app(ty_Either, bf), bg)) -> new_lt12(xwv28000, xwv29000, bf, bg) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, app(ty_[], bch)) -> new_ltEs16(xwv28001, xwv29001, bch) 27.89/11.39 new_lt20(xwv28001, xwv29001, app(ty_Maybe, cd)) -> new_lt9(xwv28001, xwv29001, cd) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, app(app(ty_@2, bcf), bcg)) -> new_ltEs12(xwv28001, xwv29001, bcf, bcg) 27.89/11.39 new_esEs9(:(xwv400, xwv401), [], bhe) -> False 27.89/11.39 new_esEs9([], :(xwv3000, xwv3001), bhe) -> False 27.89/11.39 new_esEs25(xwv401, xwv3001, ty_Ordering) -> new_esEs15(xwv401, xwv3001) 27.89/11.39 new_lt19(xwv28000, xwv29000, app(ty_Maybe, bc)) -> new_lt9(xwv28000, xwv29000, bc) 27.89/11.39 new_primEqInt(Pos(Zero), Neg(Succ(xwv30000))) -> False 27.89/11.39 new_primEqInt(Neg(Zero), Pos(Succ(xwv30000))) -> False 27.89/11.39 new_esEs23(xwv401, xwv3001, app(ty_Maybe, cfc)) -> new_esEs4(xwv401, xwv3001, cfc) 27.89/11.39 new_compare11(xwv28000, xwv29000, True, h, ba, bb) -> LT 27.89/11.39 new_esEs26(xwv402, xwv3002, app(ty_[], dag)) -> new_esEs9(xwv402, xwv3002, dag) 27.89/11.39 new_compare19(xwv117, xwv118, True, dcb) -> LT 27.89/11.39 new_ltEs18(xwv28001, xwv29001, ty_Integer) -> new_ltEs9(xwv28001, xwv29001) 27.89/11.39 new_compare30(xwv28000, xwv29000, bh, ca) -> new_compare211(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, bh, ca), bh, ca) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), bff, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), ty_Integer, bec) -> new_esEs10(xwv400, xwv3000) 27.89/11.39 new_compare7(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.89/11.39 new_esEs20(xwv28000, xwv29000, app(ty_Ratio, ccg)) -> new_esEs14(xwv28000, xwv29000, ccg) 27.89/11.39 new_esEs21(xwv28001, xwv29001, ty_Float) -> new_esEs13(xwv28001, xwv29001) 27.89/11.39 new_lt6(xwv28000, xwv29000) -> new_esEs15(new_compare12(xwv28000, xwv29000), LT) 27.89/11.39 new_esEs18(xwv28000, xwv29000, ty_Char) -> new_esEs16(xwv28000, xwv29000) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, ty_Char) -> new_ltEs13(xwv2800, xwv2900) 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs5(xwv400, xwv3000, ccb, ccc, ccd) 27.89/11.39 new_esEs19(xwv400, xwv3000, app(ty_Maybe, cac)) -> new_esEs4(xwv400, xwv3000, cac) 27.89/11.39 new_primEqInt(Neg(Succ(xwv4000)), Neg(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 27.89/11.39 new_primCmpInt(Neg(Zero), Pos(Succ(xwv2900))) -> LT 27.89/11.39 new_lt8(xwv28000, xwv29000, app(ty_[], bbf)) -> new_lt5(xwv28000, xwv29000, bbf) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_[], hb), gb) -> new_ltEs16(xwv28000, xwv29000, hb) 27.89/11.39 new_primMulInt(Pos(xwv4010), Pos(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 27.89/11.39 new_ltEs8(True, False) -> False 27.89/11.39 new_lt18(xwv28000, xwv29000) -> new_esEs15(new_compare31(xwv28000, xwv29000), LT) 27.89/11.39 new_esEs24(xwv400, xwv3000, app(app(ty_Either, cgd), cge)) -> new_esEs6(xwv400, xwv3000, cgd, cge) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Float, gb) -> new_ltEs17(xwv28000, xwv29000) 27.89/11.39 new_compare18(xwv28000, xwv29000, False, bh, ca) -> GT 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), app(app(ty_Either, bee), bef), bec) -> new_esEs6(xwv400, xwv3000, bee, bef) 27.89/11.39 new_compare29(xwv28000, xwv29000, app(ty_[], beb)) -> new_compare1(xwv28000, xwv29000, beb) 27.89/11.39 new_ltEs16(xwv2800, xwv2900, bda) -> new_fsEs(new_compare1(xwv2800, xwv2900, bda)) 27.89/11.39 new_lt11(xwv28000, xwv29000, h, ba, bb) -> new_esEs15(new_compare15(xwv28000, xwv29000, h, ba, bb), LT) 27.89/11.39 new_esEs23(xwv401, xwv3001, ty_Integer) -> new_esEs10(xwv401, xwv3001) 27.89/11.39 new_primMulNat0(Succ(xwv40100), Zero) -> Zero 27.89/11.39 new_primMulNat0(Zero, Succ(xwv300000)) -> Zero 27.89/11.39 new_ltEs8(False, False) -> True 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), ty_Float) -> new_esEs13(xwv400, xwv3000) 27.89/11.39 new_compare29(xwv28000, xwv29000, ty_Char) -> new_compare13(xwv28000, xwv29000) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), hc, app(app(ty_Either, hh), baa)) -> new_ltEs6(xwv28000, xwv29000, hh, baa) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), bff, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs5(xwv400, xwv3000, bge, bgf, bgg) 27.89/11.39 new_esEs23(xwv401, xwv3001, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs5(xwv401, xwv3001, cfd, cfe, cff) 27.89/11.39 new_esEs24(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.89/11.39 new_primCmpNat2(Succ(xwv28000), Zero) -> GT 27.89/11.39 new_compare11(xwv28000, xwv29000, False, h, ba, bb) -> GT 27.89/11.39 new_lt8(xwv28000, xwv29000, ty_Char) -> new_lt15(xwv28000, xwv29000) 27.89/11.39 new_compare29(xwv28000, xwv29000, ty_Float) -> new_compare31(xwv28000, xwv29000) 27.89/11.39 new_esEs15(LT, GT) -> False 27.89/11.39 new_esEs15(GT, LT) -> False 27.89/11.39 new_lt20(xwv28001, xwv29001, app(app(app(ty_@3, ce), cf), cg)) -> new_lt11(xwv28001, xwv29001, ce, cf, cg) 27.89/11.39 new_esEs25(xwv401, xwv3001, ty_@0) -> new_esEs8(xwv401, xwv3001) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), app(app(ty_@2, beg), beh), bec) -> new_esEs7(xwv400, xwv3000, beg, beh) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, ty_Bool) -> new_ltEs8(xwv28001, xwv29001) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, app(app(ty_@2, ed), ee)) -> new_ltEs12(xwv28002, xwv29002, ed, ee) 27.89/11.39 new_compare17(xwv28000, xwv29000, True, bf, bg) -> LT 27.89/11.39 new_compare18(xwv28000, xwv29000, True, bh, ca) -> LT 27.89/11.39 new_compare1([], [], bda) -> EQ 27.89/11.39 new_lt20(xwv28001, xwv29001, ty_Bool) -> new_lt10(xwv28001, xwv29001) 27.89/11.39 new_esEs9(:(xwv400, xwv401), :(xwv3000, xwv3001), bhe) -> new_asAs(new_esEs19(xwv400, xwv3000, bhe), new_esEs9(xwv401, xwv3001, bhe)) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Int) -> new_ltEs14(xwv28000, xwv29000) 27.89/11.39 new_esEs20(xwv28000, xwv29000, ty_Float) -> new_esEs13(xwv28000, xwv29000) 27.89/11.39 new_esEs20(xwv28000, xwv29000, app(ty_Maybe, bc)) -> new_esEs4(xwv28000, xwv29000, bc) 27.89/11.39 new_compare29(xwv28000, xwv29000, ty_Ordering) -> new_compare12(xwv28000, xwv29000) 27.89/11.39 new_esEs24(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.89/11.39 new_primPlusNat1(Succ(xwv33200), Zero) -> Succ(xwv33200) 27.89/11.39 new_primPlusNat1(Zero, Succ(xwv9100)) -> Succ(xwv9100) 27.89/11.39 new_esEs26(xwv402, xwv3002, ty_@0) -> new_esEs8(xwv402, xwv3002) 27.89/11.39 new_lt20(xwv28001, xwv29001, ty_Int) -> new_lt16(xwv28001, xwv29001) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, app(ty_[], ef)) -> new_ltEs16(xwv28002, xwv29002, ef) 27.89/11.39 new_compare23(Just(xwv2800), Nothing, False, cah) -> GT 27.89/11.39 new_compare13(Char(xwv28000), Char(xwv29000)) -> new_primCmpNat2(xwv28000, xwv29000) 27.89/11.39 new_esEs17(xwv40, xwv300) -> new_primEqInt(xwv40, xwv300) 27.89/11.39 new_lt20(xwv28001, xwv29001, ty_Float) -> new_lt18(xwv28001, xwv29001) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), ty_@0, bec) -> new_esEs8(xwv400, xwv3000) 27.89/11.39 new_compare6(xwv28000, xwv29000, bc) -> new_compare23(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, bc), bc) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, ty_Integer) -> new_ltEs9(xwv28002, xwv29002) 27.89/11.39 new_primCompAux1(xwv28000, xwv29000, xwv141, bda) -> new_primCompAux0(xwv141, new_compare29(xwv28000, xwv29000, bda)) 27.89/11.39 new_esEs25(xwv401, xwv3001, ty_Bool) -> new_esEs12(xwv401, xwv3001) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, ty_Integer) -> new_ltEs9(xwv2800, xwv2900) 27.89/11.39 new_esEs24(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.89/11.39 new_esEs26(xwv402, xwv3002, ty_Int) -> new_esEs17(xwv402, xwv3002) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, app(ty_[], bda)) -> new_ltEs16(xwv2800, xwv2900, bda) 27.89/11.39 new_esEs19(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), bff, app(ty_[], bfg)) -> new_esEs9(xwv400, xwv3000, bfg) 27.89/11.39 new_compare28(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Int) -> new_compare14(new_sr(xwv28000, xwv29001), new_sr(xwv29000, xwv28001)) 27.89/11.39 new_esEs21(xwv28001, xwv29001, app(ty_Maybe, cd)) -> new_esEs4(xwv28001, xwv29001, cd) 27.89/11.39 new_primMulInt(Neg(xwv4010), Neg(xwv30000)) -> Pos(new_primMulNat0(xwv4010, xwv30000)) 27.89/11.39 new_lt14(xwv28000, xwv29000, bh, ca) -> new_esEs15(new_compare30(xwv28000, xwv29000, bh, ca), LT) 27.89/11.39 new_esEs25(xwv401, xwv3001, app(app(ty_@2, chh), daa)) -> new_esEs7(xwv401, xwv3001, chh, daa) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), hc, ty_@0) -> new_ltEs15(xwv28000, xwv29000) 27.89/11.39 new_lt19(xwv28000, xwv29000, ty_Float) -> new_lt18(xwv28000, xwv29000) 27.89/11.39 new_esEs7(@2(xwv400, xwv401), @2(xwv3000, xwv3001), cdb, cdc) -> new_asAs(new_esEs22(xwv400, xwv3000, cdb), new_esEs23(xwv401, xwv3001, cdc)) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), bff, app(app(ty_@2, bgb), bgc)) -> new_esEs7(xwv400, xwv3000, bgb, bgc) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), ty_Bool, bec) -> new_esEs12(xwv400, xwv3000) 27.89/11.39 new_ltEs12(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), bbg, baf) -> new_pePe(new_lt8(xwv28000, xwv29000, bbg), new_asAs(new_esEs18(xwv28000, xwv29000, bbg), new_ltEs18(xwv28001, xwv29001, baf))) 27.89/11.39 new_esEs26(xwv402, xwv3002, ty_Double) -> new_esEs11(xwv402, xwv3002) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Ordering) -> new_ltEs10(xwv28000, xwv29000) 27.89/11.39 new_ltEs8(False, True) -> True 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_Maybe, cca)) -> new_esEs4(xwv400, xwv3000, cca) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Float) -> new_ltEs17(xwv28000, xwv29000) 27.89/11.39 new_esEs23(xwv401, xwv3001, app(app(ty_Either, ceg), ceh)) -> new_esEs6(xwv401, xwv3001, ceg, ceh) 27.89/11.39 new_esEs24(xwv400, xwv3000, app(ty_[], cgc)) -> new_esEs9(xwv400, xwv3000, cgc) 27.89/11.39 new_compare31(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), hc, ty_Char) -> new_ltEs13(xwv28000, xwv29000) 27.89/11.39 new_esEs21(xwv28001, xwv29001, app(app(ty_Either, da), db)) -> new_esEs6(xwv28001, xwv29001, da, db) 27.89/11.39 new_esEs13(Float(xwv400, xwv401), Float(xwv3000, xwv3001)) -> new_esEs17(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 27.89/11.39 new_esEs26(xwv402, xwv3002, ty_Integer) -> new_esEs10(xwv402, xwv3002) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, ty_Ordering) -> new_ltEs10(xwv28001, xwv29001) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(ty_@2, gh), ha), gb) -> new_ltEs12(xwv28000, xwv29000, gh, ha) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), ty_Int, bec) -> new_esEs17(xwv400, xwv3000) 27.89/11.39 new_compare8(Integer(xwv28000), Integer(xwv29000)) -> new_primCmpInt(xwv28000, xwv29000) 27.89/11.39 new_primMulInt(Pos(xwv4010), Neg(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 27.89/11.39 new_primMulInt(Neg(xwv4010), Pos(xwv30000)) -> Neg(new_primMulNat0(xwv4010, xwv30000)) 27.89/11.39 new_lt8(xwv28000, xwv29000, app(app(app(ty_@3, bag), bah), bba)) -> new_lt11(xwv28000, xwv29000, bag, bah, bba) 27.89/11.39 new_esEs20(xwv28000, xwv29000, ty_@0) -> new_esEs8(xwv28000, xwv29000) 27.89/11.39 new_compare29(xwv28000, xwv29000, app(app(app(ty_@3, bdc), bdd), bde)) -> new_compare15(xwv28000, xwv29000, bdc, bdd, bde) 27.89/11.39 new_compare29(xwv28000, xwv29000, ty_Bool) -> new_compare16(xwv28000, xwv29000) 27.89/11.39 new_primCmpInt(Pos(Succ(xwv2800)), Pos(xwv290)) -> new_primCmpNat0(xwv2800, xwv290) 27.89/11.39 new_esEs15(LT, LT) -> True 27.89/11.39 new_esEs24(xwv400, xwv3000, app(ty_Maybe, cgh)) -> new_esEs4(xwv400, xwv3000, cgh) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), bff, app(app(ty_Either, bfh), bga)) -> new_esEs6(xwv400, xwv3000, bfh, bga) 27.89/11.39 new_lt9(xwv28000, xwv29000, bc) -> new_esEs15(new_compare6(xwv28000, xwv29000, bc), LT) 27.89/11.39 new_esEs19(xwv400, xwv3000, app(ty_[], bhf)) -> new_esEs9(xwv400, xwv3000, bhf) 27.89/11.39 new_esEs25(xwv401, xwv3001, ty_Int) -> new_esEs17(xwv401, xwv3001) 27.89/11.39 new_esEs22(xwv400, xwv3000, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs5(xwv400, xwv3000, ceb, cec, ced) 27.89/11.39 new_esEs19(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.89/11.39 new_lt8(xwv28000, xwv29000, ty_Double) -> new_lt17(xwv28000, xwv29000) 27.89/11.39 new_sr0(Integer(xwv280000), Integer(xwv290010)) -> Integer(new_primMulInt(xwv280000, xwv290010)) 27.89/11.39 new_esEs18(xwv28000, xwv29000, app(ty_Maybe, bae)) -> new_esEs4(xwv28000, xwv29000, bae) 27.89/11.39 new_esEs21(xwv28001, xwv29001, app(ty_Ratio, cch)) -> new_esEs14(xwv28001, xwv29001, cch) 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), ty_Int) -> new_esEs17(xwv400, xwv3000) 27.89/11.39 new_compare24(xwv28000, xwv29000, True, h, ba, bb) -> EQ 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), app(app(ty_Either, cbe), cbf)) -> new_esEs6(xwv400, xwv3000, cbe, cbf) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), bff, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.89/11.39 new_lt19(xwv28000, xwv29000, app(app(app(ty_@3, h), ba), bb)) -> new_lt11(xwv28000, xwv29000, h, ba, bb) 27.89/11.39 new_primCmpNat0(xwv2800, Zero) -> GT 27.89/11.39 new_lt10(xwv28000, xwv29000) -> new_esEs15(new_compare16(xwv28000, xwv29000), LT) 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_Ratio, cce)) -> new_esEs14(xwv400, xwv3000, cce) 27.89/11.39 new_primCmpNat2(Zero, Succ(xwv29000)) -> LT 27.89/11.39 new_esEs25(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 27.89/11.39 new_asAs(True, xwv57) -> xwv57 27.89/11.39 new_esEs25(xwv401, xwv3001, app(ty_Ratio, daf)) -> new_esEs14(xwv401, xwv3001, daf) 27.89/11.39 new_esEs26(xwv402, xwv3002, ty_Float) -> new_esEs13(xwv402, xwv3002) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), hc, ty_Bool) -> new_ltEs8(xwv28000, xwv29000) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), hc, ty_Ordering) -> new_ltEs10(xwv28000, xwv29000) 27.89/11.39 new_esEs10(Integer(xwv400), Integer(xwv3000)) -> new_primEqInt(xwv400, xwv3000) 27.89/11.39 new_lt19(xwv28000, xwv29000, ty_Double) -> new_lt17(xwv28000, xwv29000) 27.89/11.39 new_esEs26(xwv402, xwv3002, ty_Ordering) -> new_esEs15(xwv402, xwv3002) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, ty_Char) -> new_ltEs13(xwv28001, xwv29001) 27.89/11.39 new_ltEs10(LT, LT) -> True 27.89/11.39 new_compare7(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, ty_@0) -> new_ltEs15(xwv28002, xwv29002) 27.89/11.39 new_esEs25(xwv401, xwv3001, app(ty_[], che)) -> new_esEs9(xwv401, xwv3001, che) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), app(ty_Ratio, bha), gb) -> new_ltEs11(xwv28000, xwv29000, bha) 27.89/11.39 new_esEs6(Left(xwv400), Right(xwv3000), bff, bec) -> False 27.89/11.39 new_esEs6(Right(xwv400), Left(xwv3000), bff, bec) -> False 27.89/11.39 new_esEs21(xwv28001, xwv29001, ty_Bool) -> new_esEs12(xwv28001, xwv29001) 27.89/11.39 new_esEs21(xwv28001, xwv29001, ty_Int) -> new_esEs17(xwv28001, xwv29001) 27.89/11.39 new_esEs16(Char(xwv400), Char(xwv3000)) -> new_primEqNat0(xwv400, xwv3000) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), hc, app(ty_Ratio, bhb)) -> new_ltEs11(xwv28000, xwv29000, bhb) 27.89/11.39 new_esEs22(xwv400, xwv3000, ty_Double) -> new_esEs11(xwv400, xwv3000) 27.89/11.39 new_esEs26(xwv402, xwv3002, ty_Bool) -> new_esEs12(xwv402, xwv3002) 27.89/11.39 new_esEs24(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.89/11.39 new_ltEs20(xwv28002, xwv29002, app(ty_Ratio, cda)) -> new_ltEs11(xwv28002, xwv29002, cda) 27.89/11.39 new_esEs18(xwv28000, xwv29000, app(app(ty_@2, bbd), bbe)) -> new_esEs7(xwv28000, xwv29000, bbd, bbe) 27.89/11.39 new_esEs20(xwv28000, xwv29000, app(ty_[], cb)) -> new_esEs9(xwv28000, xwv29000, cb) 27.89/11.39 new_ltEs8(True, True) -> True 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_@0) -> new_ltEs15(xwv28000, xwv29000) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, ty_@0) -> new_ltEs15(xwv2800, xwv2900) 27.89/11.39 new_esEs24(xwv400, xwv3000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xwv400, xwv3000, cgf, cgg) 27.89/11.39 new_compare110(xwv28000, xwv29000, False) -> GT 27.89/11.39 new_lt8(xwv28000, xwv29000, ty_Integer) -> new_lt7(xwv28000, xwv29000) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), hc, ty_Int) -> new_ltEs14(xwv28000, xwv29000) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, ty_Int) -> new_ltEs14(xwv28001, xwv29001) 27.89/11.39 new_sr(xwv401, xwv3000) -> new_primMulInt(xwv401, xwv3000) 27.89/11.39 new_esEs12(False, True) -> False 27.89/11.39 new_esEs12(True, False) -> False 27.89/11.39 new_lt20(xwv28001, xwv29001, app(app(ty_Either, da), db)) -> new_lt12(xwv28001, xwv29001, da, db) 27.89/11.39 new_esEs23(xwv401, xwv3001, ty_Double) -> new_esEs11(xwv401, xwv3001) 27.89/11.39 new_ltEs7(Nothing, Nothing, cba) -> True 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), ty_Char) -> new_esEs16(xwv400, xwv3000) 27.89/11.39 new_primMulNat0(Zero, Zero) -> Zero 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.89/11.39 new_esEs22(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.89/11.39 new_esEs12(True, True) -> True 27.89/11.39 new_compare10(xwv28000, xwv29000, False) -> GT 27.89/11.39 new_esEs21(xwv28001, xwv29001, ty_Integer) -> new_esEs10(xwv28001, xwv29001) 27.89/11.39 new_esEs18(xwv28000, xwv29000, ty_@0) -> new_esEs8(xwv28000, xwv29000) 27.89/11.39 new_primCmpInt(Neg(Zero), Neg(Succ(xwv2900))) -> new_primCmpNat0(xwv2900, Zero) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_Maybe, bfa), bec) -> new_esEs4(xwv400, xwv3000, bfa) 27.89/11.39 new_esEs26(xwv402, xwv3002, app(app(ty_Either, dah), dba)) -> new_esEs6(xwv402, xwv3002, dah, dba) 27.89/11.39 new_ltEs7(Just(xwv28000), Nothing, cba) -> False 27.89/11.39 new_esEs23(xwv401, xwv3001, app(app(ty_@2, cfa), cfb)) -> new_esEs7(xwv401, xwv3001, cfa, cfb) 27.89/11.39 new_compare9(@0, @0) -> EQ 27.89/11.39 new_esEs21(xwv28001, xwv29001, app(ty_[], de)) -> new_esEs9(xwv28001, xwv29001, de) 27.89/11.39 new_primCmpNat1(Zero, xwv2800) -> LT 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), app(ty_[], cbd)) -> new_esEs9(xwv400, xwv3000, cbd) 27.89/11.39 new_esEs4(Nothing, Nothing, cbc) -> True 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), ty_Char, bec) -> new_esEs16(xwv400, xwv3000) 27.89/11.39 new_compare29(xwv28000, xwv29000, app(ty_Ratio, ccf)) -> new_compare28(xwv28000, xwv29000, ccf) 27.89/11.39 new_esEs4(Nothing, Just(xwv3000), cbc) -> False 27.89/11.39 new_esEs4(Just(xwv400), Nothing, cbc) -> False 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_Ratio, dcc)) -> new_ltEs11(xwv28000, xwv29000, dcc) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, app(ty_Ratio, cbb)) -> new_ltEs11(xwv2800, xwv2900, cbb) 27.89/11.39 new_esEs19(xwv400, xwv3000, app(ty_Ratio, cag)) -> new_esEs14(xwv400, xwv3000, cag) 27.89/11.39 new_compare29(xwv28000, xwv29000, ty_Int) -> new_compare14(xwv28000, xwv29000) 27.89/11.39 new_primCmpNat2(Zero, Zero) -> EQ 27.89/11.39 new_lt5(xwv28000, xwv29000, cb) -> new_esEs15(new_compare1(xwv28000, xwv29000, cb), LT) 27.89/11.39 new_lt20(xwv28001, xwv29001, app(ty_Ratio, cch)) -> new_lt13(xwv28001, xwv29001, cch) 27.89/11.39 new_esEs21(xwv28001, xwv29001, ty_Char) -> new_esEs16(xwv28001, xwv29001) 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.89/11.39 new_lt20(xwv28001, xwv29001, ty_Integer) -> new_lt7(xwv28001, xwv29001) 27.89/11.39 new_compare28(:%(xwv28000, xwv28001), :%(xwv29000, xwv29001), ty_Integer) -> new_compare8(new_sr0(xwv28000, xwv29001), new_sr0(xwv29000, xwv28001)) 27.89/11.39 new_esEs19(xwv400, xwv3000, app(app(ty_Either, bhg), bhh)) -> new_esEs6(xwv400, xwv3000, bhg, bhh) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), bff, app(ty_Maybe, bgd)) -> new_esEs4(xwv400, xwv3000, bgd) 27.89/11.39 new_esEs25(xwv401, xwv3001, app(app(ty_Either, chf), chg)) -> new_esEs6(xwv401, xwv3001, chf, chg) 27.89/11.39 new_primCompAux0(xwv153, EQ) -> xwv153 27.89/11.39 new_ltEs18(xwv28001, xwv29001, app(ty_Ratio, bhd)) -> new_ltEs11(xwv28001, xwv29001, bhd) 27.89/11.39 new_lt19(xwv28000, xwv29000, app(ty_Ratio, ccg)) -> new_lt13(xwv28000, xwv29000, ccg) 27.89/11.39 new_ltEs19(xwv2800, xwv2900, app(ty_Maybe, cba)) -> new_ltEs7(xwv2800, xwv2900, cba) 27.89/11.39 new_primEqInt(Neg(Succ(xwv4000)), Neg(Zero)) -> False 27.89/11.39 new_primEqInt(Neg(Zero), Neg(Succ(xwv30000))) -> False 27.89/11.39 new_lt19(xwv28000, xwv29000, ty_Integer) -> new_lt7(xwv28000, xwv29000) 27.89/11.39 new_ltEs18(xwv28001, xwv29001, ty_@0) -> new_ltEs15(xwv28001, xwv29001) 27.89/11.39 new_esEs20(xwv28000, xwv29000, ty_Char) -> new_esEs16(xwv28000, xwv29000) 27.89/11.39 new_primEqInt(Pos(Succ(xwv4000)), Pos(Succ(xwv30000))) -> new_primEqNat0(xwv4000, xwv30000) 27.89/11.39 new_ltEs10(GT, GT) -> True 27.89/11.39 new_ltEs20(xwv28002, xwv29002, app(app(ty_Either, eb), ec)) -> new_ltEs6(xwv28002, xwv29002, eb, ec) 27.89/11.39 new_compare19(xwv117, xwv118, False, dcb) -> GT 27.89/11.39 new_esEs20(xwv28000, xwv29000, app(app(ty_Either, bf), bg)) -> new_esEs6(xwv28000, xwv29000, bf, bg) 27.89/11.39 new_compare23(Just(xwv2800), Just(xwv2900), False, cah) -> new_compare19(xwv2800, xwv2900, new_ltEs19(xwv2800, xwv2900, cah), cah) 27.89/11.39 new_primEqInt(Pos(Succ(xwv4000)), Neg(xwv3000)) -> False 27.89/11.39 new_primEqInt(Neg(Succ(xwv4000)), Pos(xwv3000)) -> False 27.89/11.39 new_compare29(xwv28000, xwv29000, app(app(ty_Either, bdf), bdg)) -> new_compare26(xwv28000, xwv29000, bdf, bdg) 27.89/11.39 new_compare14(xwv28, xwv29) -> new_primCmpInt(xwv28, xwv29) 27.89/11.39 new_compare23(Nothing, Just(xwv2900), False, cah) -> LT 27.89/11.39 new_esEs22(xwv400, xwv3000, ty_Float) -> new_esEs13(xwv400, xwv3000) 27.89/11.39 new_esEs27(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.89/11.39 new_compare211(xwv28000, xwv29000, True, bh, ca) -> EQ 27.89/11.39 new_ltEs19(xwv2800, xwv2900, app(app(ty_Either, hc), gb)) -> new_ltEs6(xwv2800, xwv2900, hc, gb) 27.89/11.39 new_esEs22(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.89/11.39 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 27.89/11.39 new_ltEs10(LT, EQ) -> True 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(ty_Either, fc), fd)) -> new_ltEs6(xwv28000, xwv29000, fc, fd) 27.89/11.39 new_lt8(xwv28000, xwv29000, ty_Bool) -> new_lt10(xwv28000, xwv29000) 27.89/11.39 new_compare26(xwv28000, xwv29000, bf, bg) -> new_compare27(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bf, bg), bf, bg) 27.89/11.39 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_@0, gb) -> new_ltEs15(xwv28000, xwv29000) 27.89/11.39 new_primCmpNat1(Succ(xwv2900), xwv2800) -> new_primCmpNat2(xwv2900, xwv2800) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), ty_Float, bec) -> new_esEs13(xwv400, xwv3000) 27.89/11.39 new_esEs19(xwv400, xwv3000, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.89/11.39 new_lt20(xwv28001, xwv29001, ty_Char) -> new_lt15(xwv28001, xwv29001) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_Maybe, eg)) -> new_ltEs7(xwv28000, xwv29000, eg) 27.89/11.39 new_esEs15(EQ, EQ) -> True 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), hc, ty_Float) -> new_ltEs17(xwv28000, xwv29000) 27.89/11.39 new_esEs23(xwv401, xwv3001, ty_Float) -> new_esEs13(xwv401, xwv3001) 27.89/11.39 new_fsEs(xwv123) -> new_not(new_esEs15(xwv123, GT)) 27.89/11.39 new_esEs19(xwv400, xwv3000, app(app(ty_@2, caa), cab)) -> new_esEs7(xwv400, xwv3000, caa, cab) 27.89/11.39 new_compare23(Nothing, Nothing, False, cah) -> LT 27.89/11.39 new_compare24(xwv28000, xwv29000, False, h, ba, bb) -> new_compare11(xwv28000, xwv29000, new_ltEs5(xwv28000, xwv29000, h, ba, bb), h, ba, bb) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), hc, app(app(ty_@2, bab), bac)) -> new_ltEs12(xwv28000, xwv29000, bab, bac) 27.89/11.39 new_primPlusNat0(xwv101, xwv300000) -> new_primPlusNat1(xwv101, Succ(xwv300000)) 27.89/11.39 new_esEs4(Just(xwv400), Just(xwv3000), ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.89/11.39 new_compare29(xwv28000, xwv29000, ty_Double) -> new_compare7(xwv28000, xwv29000) 27.89/11.39 new_ltEs6(Right(xwv28000), Left(xwv29000), hc, gb) -> False 27.89/11.39 new_not(False) -> True 27.89/11.39 new_lt20(xwv28001, xwv29001, ty_@0) -> new_lt4(xwv28001, xwv29001) 27.89/11.39 new_compare1([], :(xwv29000, xwv29001), bda) -> LT 27.89/11.39 new_esEs21(xwv28001, xwv29001, ty_@0) -> new_esEs8(xwv28001, xwv29001) 27.89/11.39 new_esEs11(Double(xwv400, xwv401), Double(xwv3000, xwv3001)) -> new_esEs17(new_sr(xwv400, xwv3001), new_sr(xwv401, xwv3000)) 27.89/11.39 new_lt19(xwv28000, xwv29000, app(ty_[], cb)) -> new_lt5(xwv28000, xwv29000, cb) 27.89/11.39 new_primCmpInt(Neg(Succ(xwv2800)), Neg(xwv290)) -> new_primCmpNat1(xwv290, xwv2800) 27.89/11.39 new_esEs6(Right(xwv400), Right(xwv3000), bff, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.89/11.39 new_lt13(xwv28000, xwv29000, ccg) -> new_esEs15(new_compare28(xwv28000, xwv29000, ccg), LT) 27.89/11.39 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Char) -> new_ltEs13(xwv28000, xwv29000) 27.89/11.39 new_lt12(xwv28000, xwv29000, bf, bg) -> new_esEs15(new_compare26(xwv28000, xwv29000, bf, bg), LT) 27.89/11.39 new_ltEs6(Right(xwv28000), Right(xwv29000), hc, app(ty_[], bad)) -> new_ltEs16(xwv28000, xwv29000, bad) 27.89/11.39 new_esEs6(Left(xwv400), Left(xwv3000), app(ty_[], bed), bec) -> new_esEs9(xwv400, xwv3000, bed) 27.89/11.39 new_esEs20(xwv28000, xwv29000, ty_Bool) -> new_esEs12(xwv28000, xwv29000) 27.89/11.39 new_esEs22(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.89/11.39 new_ltEs10(EQ, GT) -> True 27.89/11.39 new_lt17(xwv28000, xwv29000) -> new_esEs15(new_compare7(xwv28000, xwv29000), LT) 27.89/11.39 new_compare25(xwv28000, xwv29000, True) -> EQ 27.89/11.39 new_compare27(xwv28000, xwv29000, True, bf, bg) -> EQ 27.89/11.39 new_compare27(xwv28000, xwv29000, False, bf, bg) -> new_compare17(xwv28000, xwv29000, new_ltEs6(xwv28000, xwv29000, bf, bg), bf, bg) 27.89/11.39 new_ltEs10(EQ, EQ) -> True 27.89/11.39 new_esEs19(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.89/11.39 new_esEs5(@3(xwv400, xwv401, xwv402), @3(xwv3000, xwv3001, xwv3002), cfh, cga, cgb) -> new_asAs(new_esEs24(xwv400, xwv3000, cfh), new_asAs(new_esEs25(xwv401, xwv3001, cga), new_esEs26(xwv402, xwv3002, cgb))) 27.89/11.40 new_ltEs6(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, gc), gd), ge), gb) -> new_ltEs5(xwv28000, xwv29000, gc, gd, ge) 27.89/11.40 new_ltEs18(xwv28001, xwv29001, ty_Float) -> new_ltEs17(xwv28001, xwv29001) 27.89/11.40 new_lt20(xwv28001, xwv29001, app(ty_[], de)) -> new_lt5(xwv28001, xwv29001, de) 27.89/11.40 new_esEs23(xwv401, xwv3001, ty_Ordering) -> new_esEs15(xwv401, xwv3001) 27.89/11.40 new_compare10(xwv28000, xwv29000, True) -> LT 27.89/11.40 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 27.89/11.40 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 27.89/11.40 new_lt20(xwv28001, xwv29001, ty_Double) -> new_lt17(xwv28001, xwv29001) 27.89/11.40 new_primPlusNat1(Zero, Zero) -> Zero 27.89/11.40 new_lt19(xwv28000, xwv29000, ty_Char) -> new_lt15(xwv28000, xwv29000) 27.89/11.40 new_esEs20(xwv28000, xwv29000, ty_Integer) -> new_esEs10(xwv28000, xwv29000) 27.89/11.40 new_ltEs6(Left(xwv28000), Left(xwv29000), ty_Integer, gb) -> new_ltEs9(xwv28000, xwv29000) 27.89/11.40 new_esEs6(Right(xwv400), Right(xwv3000), bff, ty_Integer) -> new_esEs10(xwv400, xwv3000) 27.89/11.40 new_lt8(xwv28000, xwv29000, ty_Float) -> new_lt18(xwv28000, xwv29000) 27.89/11.40 new_esEs6(Right(xwv400), Right(xwv3000), bff, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.89/11.40 new_esEs25(xwv401, xwv3001, app(ty_Maybe, dab)) -> new_esEs4(xwv401, xwv3001, dab) 27.89/11.40 new_lt8(xwv28000, xwv29000, app(ty_Ratio, bhc)) -> new_lt13(xwv28000, xwv29000, bhc) 27.89/11.40 new_esEs18(xwv28000, xwv29000, ty_Int) -> new_esEs17(xwv28000, xwv29000) 27.89/11.40 new_ltEs7(Just(xwv28000), Just(xwv29000), app(ty_[], fh)) -> new_ltEs16(xwv28000, xwv29000, fh) 27.89/11.40 new_lt4(xwv28000, xwv29000) -> new_esEs15(new_compare9(xwv28000, xwv29000), LT) 27.89/11.40 new_esEs4(Just(xwv400), Just(xwv3000), ty_Double) -> new_esEs11(xwv400, xwv3000) 27.89/11.40 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 27.89/11.40 new_esEs23(xwv401, xwv3001, ty_Char) -> new_esEs16(xwv401, xwv3001) 27.89/11.40 new_lt19(xwv28000, xwv29000, ty_@0) -> new_lt4(xwv28000, xwv29000) 27.89/11.40 new_esEs18(xwv28000, xwv29000, app(app(ty_Either, bbb), bbc)) -> new_esEs6(xwv28000, xwv29000, bbb, bbc) 27.89/11.40 new_primMulNat0(Succ(xwv40100), Succ(xwv300000)) -> new_primPlusNat0(new_primMulNat0(xwv40100, Succ(xwv300000)), xwv300000) 27.89/11.40 new_compare7(Double(xwv28000, Pos(xwv280010)), Double(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.89/11.40 new_compare7(Double(xwv28000, Neg(xwv280010)), Double(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.89/11.40 new_esEs22(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.89/11.40 new_ltEs15(xwv2800, xwv2900) -> new_fsEs(new_compare9(xwv2800, xwv2900)) 27.89/11.40 new_ltEs7(Just(xwv28000), Just(xwv29000), ty_Integer) -> new_ltEs9(xwv28000, xwv29000) 27.89/11.40 new_primCmpInt(Pos(Zero), Pos(Succ(xwv2900))) -> new_primCmpNat1(Zero, xwv2900) 27.89/11.40 new_esEs26(xwv402, xwv3002, app(app(app(ty_@3, dbe), dbf), dbg)) -> new_esEs5(xwv402, xwv3002, dbe, dbf, dbg) 27.89/11.40 new_esEs21(xwv28001, xwv29001, app(app(ty_@2, dc), dd)) -> new_esEs7(xwv28001, xwv29001, dc, dd) 27.89/11.40 new_esEs19(xwv400, xwv3000, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.89/11.40 new_esEs24(xwv400, xwv3000, ty_Char) -> new_esEs16(xwv400, xwv3000) 27.89/11.40 new_esEs26(xwv402, xwv3002, app(ty_Ratio, dbh)) -> new_esEs14(xwv402, xwv3002, dbh) 27.89/11.40 new_lt20(xwv28001, xwv29001, app(app(ty_@2, dc), dd)) -> new_lt14(xwv28001, xwv29001, dc, dd) 27.89/11.40 new_esEs21(xwv28001, xwv29001, ty_Ordering) -> new_esEs15(xwv28001, xwv29001) 27.89/11.40 new_esEs4(Just(xwv400), Just(xwv3000), app(app(ty_@2, cbg), cbh)) -> new_esEs7(xwv400, xwv3000, cbg, cbh) 27.89/11.40 new_ltEs7(Just(xwv28000), Just(xwv29000), app(app(ty_@2, ff), fg)) -> new_ltEs12(xwv28000, xwv29000, ff, fg) 27.89/11.40 new_compare16(xwv28000, xwv29000) -> new_compare25(xwv28000, xwv29000, new_esEs12(xwv28000, xwv29000)) 27.89/11.40 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 27.89/11.40 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 27.89/11.40 new_esEs9([], [], bhe) -> True 27.89/11.40 new_esEs4(Just(xwv400), Just(xwv3000), ty_@0) -> new_esEs8(xwv400, xwv3000) 27.89/11.40 new_esEs22(xwv400, xwv3000, ty_Ordering) -> new_esEs15(xwv400, xwv3000) 27.89/11.40 new_compare25(xwv28000, xwv29000, False) -> new_compare10(xwv28000, xwv29000, new_ltEs8(xwv28000, xwv29000)) 27.89/11.40 new_esEs26(xwv402, xwv3002, app(ty_Maybe, dbd)) -> new_esEs4(xwv402, xwv3002, dbd) 27.89/11.40 new_primEqNat0(Zero, Zero) -> True 27.89/11.40 new_lt19(xwv28000, xwv29000, ty_Ordering) -> new_lt6(xwv28000, xwv29000) 27.89/11.40 new_esEs21(xwv28001, xwv29001, ty_Double) -> new_esEs11(xwv28001, xwv29001) 27.89/11.40 new_ltEs6(Right(xwv28000), Right(xwv29000), hc, ty_Double) -> new_ltEs4(xwv28000, xwv29000) 27.89/11.40 new_compare31(Float(xwv28000, Pos(xwv280010)), Float(xwv29000, Neg(xwv290010))) -> new_compare14(new_sr(xwv28000, Pos(xwv290010)), new_sr(Neg(xwv280010), xwv29000)) 27.89/11.40 new_compare31(Float(xwv28000, Neg(xwv280010)), Float(xwv29000, Pos(xwv290010))) -> new_compare14(new_sr(xwv28000, Neg(xwv290010)), new_sr(Pos(xwv280010), xwv29000)) 27.89/11.40 new_lt15(xwv28000, xwv29000) -> new_esEs15(new_compare13(xwv28000, xwv29000), LT) 27.89/11.40 new_ltEs10(LT, GT) -> True 27.89/11.40 new_asAs(False, xwv57) -> False 27.89/11.40 new_esEs19(xwv400, xwv3000, ty_Bool) -> new_esEs12(xwv400, xwv3000) 27.89/11.40 new_ltEs13(xwv2800, xwv2900) -> new_fsEs(new_compare13(xwv2800, xwv2900)) 27.89/11.40 new_esEs19(xwv400, xwv3000, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.89/11.40 new_ltEs19(xwv2800, xwv2900, ty_Int) -> new_ltEs14(xwv2800, xwv2900) 27.89/11.40 new_ltEs20(xwv28002, xwv29002, ty_Float) -> new_ltEs17(xwv28002, xwv29002) 27.89/11.40 new_lt20(xwv28001, xwv29001, ty_Ordering) -> new_lt6(xwv28001, xwv29001) 27.89/11.40 new_esEs25(xwv401, xwv3001, ty_Float) -> new_esEs13(xwv401, xwv3001) 27.89/11.40 new_ltEs6(Left(xwv28000), Right(xwv29000), hc, gb) -> True 27.89/11.40 new_ltEs19(xwv2800, xwv2900, ty_Ordering) -> new_ltEs10(xwv2800, xwv2900) 27.89/11.40 new_ltEs20(xwv28002, xwv29002, ty_Ordering) -> new_ltEs10(xwv28002, xwv29002) 27.89/11.40 new_esEs18(xwv28000, xwv29000, ty_Integer) -> new_esEs10(xwv28000, xwv29000) 27.89/11.40 new_ltEs5(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, bd, be) -> new_pePe(new_lt19(xwv28000, xwv29000, cc), new_asAs(new_esEs20(xwv28000, xwv29000, cc), new_pePe(new_lt20(xwv28001, xwv29001, bd), new_asAs(new_esEs21(xwv28001, xwv29001, bd), new_ltEs20(xwv28002, xwv29002, be))))) 27.89/11.40 new_lt19(xwv28000, xwv29000, app(app(ty_@2, bh), ca)) -> new_lt14(xwv28000, xwv29000, bh, ca) 27.89/11.40 new_esEs6(Right(xwv400), Right(xwv3000), bff, ty_Int) -> new_esEs17(xwv400, xwv3000) 27.89/11.40 new_lt8(xwv28000, xwv29000, app(ty_Maybe, bae)) -> new_lt9(xwv28000, xwv29000, bae) 27.89/11.40 new_esEs6(Right(xwv400), Right(xwv3000), bff, ty_@0) -> new_esEs8(xwv400, xwv3000) 27.89/11.40 new_compare29(xwv28000, xwv29000, ty_Integer) -> new_compare8(xwv28000, xwv29000) 27.89/11.40 new_esEs20(xwv28000, xwv29000, ty_Int) -> new_esEs17(xwv28000, xwv29000) 27.89/11.40 new_ltEs19(xwv2800, xwv2900, ty_Float) -> new_ltEs17(xwv2800, xwv2900) 27.89/11.40 new_ltEs20(xwv28002, xwv29002, ty_Int) -> new_ltEs14(xwv28002, xwv29002) 27.89/11.40 new_esEs18(xwv28000, xwv29000, app(ty_[], bbf)) -> new_esEs9(xwv28000, xwv29000, bbf) 27.89/11.40 new_esEs20(xwv28000, xwv29000, app(app(ty_@2, bh), ca)) -> new_esEs7(xwv28000, xwv29000, bh, ca) 27.89/11.40 27.89/11.40 The set Q consists of the following terms: 27.89/11.40 27.89/11.40 new_compare29(x0, x1, ty_Int) 27.89/11.40 new_esEs22(x0, x1, ty_Float) 27.89/11.40 new_esEs21(x0, x1, ty_Double) 27.89/11.40 new_esEs4(Just(x0), Just(x1), ty_Ordering) 27.89/11.40 new_pePe(False, x0) 27.89/11.40 new_primCompAux0(x0, EQ) 27.89/11.40 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.40 new_compare23(Just(x0), Nothing, False, x1) 27.89/11.40 new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 27.89/11.40 new_esEs26(x0, x1, app(ty_[], x2)) 27.89/11.40 new_esEs4(Just(x0), Just(x1), ty_Double) 27.89/11.40 new_esEs20(x0, x1, app(ty_Ratio, x2)) 27.89/11.40 new_primPlusNat1(Zero, Zero) 27.89/11.40 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 27.89/11.40 new_primPlusNat1(Succ(x0), Zero) 27.89/11.40 new_ltEs10(LT, LT) 27.89/11.40 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.40 new_compare29(x0, x1, ty_Char) 27.89/11.40 new_esEs23(x0, x1, app(ty_[], x2)) 27.89/11.40 new_esEs21(x0, x1, ty_Int) 27.89/11.40 new_esEs6(Right(x0), Right(x1), x2, ty_Float) 27.89/11.40 new_sr(x0, x1) 27.89/11.40 new_esEs20(x0, x1, ty_Double) 27.89/11.40 new_esEs22(x0, x1, app(ty_[], x2)) 27.89/11.40 new_primEqInt(Pos(Zero), Pos(Zero)) 27.89/11.40 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 27.89/11.40 new_compare30(x0, x1, x2, x3) 27.89/11.40 new_esEs16(Char(x0), Char(x1)) 27.89/11.40 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 27.89/11.40 new_primCmpNat2(Zero, Succ(x0)) 27.89/11.40 new_esEs17(x0, x1) 27.89/11.40 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.40 new_compare13(Char(x0), Char(x1)) 27.89/11.40 new_esEs28(x0, x1, ty_Int) 27.89/11.40 new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 27.89/11.40 new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 27.89/11.40 new_ltEs15(x0, x1) 27.89/11.40 new_esEs24(x0, x1, ty_Float) 27.89/11.40 new_lt8(x0, x1, ty_Char) 27.89/11.40 new_esEs20(x0, x1, app(ty_[], x2)) 27.89/11.40 new_esEs20(x0, x1, ty_Ordering) 27.89/11.40 new_esEs21(x0, x1, ty_Ordering) 27.89/11.40 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 27.89/11.40 new_compare29(x0, x1, ty_Ordering) 27.89/11.40 new_primEqInt(Neg(Zero), Neg(Zero)) 27.89/11.40 new_esEs25(x0, x1, ty_Float) 27.89/11.40 new_compare26(x0, x1, x2, x3) 27.89/11.40 new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 27.89/11.40 new_esEs15(EQ, GT) 27.89/11.40 new_esEs15(GT, EQ) 27.89/11.40 new_lt20(x0, x1, ty_Ordering) 27.89/11.40 new_esEs15(LT, LT) 27.89/11.40 new_esEs12(False, True) 27.89/11.40 new_esEs12(True, False) 27.89/11.40 new_compare210(x0, x1, True) 27.89/11.40 new_compare28(:%(x0, x1), :%(x2, x3), ty_Int) 27.89/11.40 new_ltEs13(x0, x1) 27.89/11.40 new_asAs(True, x0) 27.89/11.40 new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 27.89/11.40 new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 27.89/11.40 new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 27.89/11.40 new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 27.89/11.40 new_compare14(x0, x1) 27.89/11.40 new_esEs6(Right(x0), Right(x1), x2, ty_Integer) 27.89/11.40 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.40 new_ltEs8(False, False) 27.89/11.40 new_esEs6(Left(x0), Left(x1), ty_Double, x2) 27.89/11.40 new_lt20(x0, x1, ty_Double) 27.89/11.40 new_compare1(:(x0, x1), [], x2) 27.89/11.40 new_ltEs10(GT, EQ) 27.89/11.40 new_ltEs10(EQ, GT) 27.89/11.40 new_lt8(x0, x1, ty_Int) 27.89/11.40 new_ltEs7(Just(x0), Just(x1), ty_Float) 27.89/11.40 new_lt8(x0, x1, app(ty_Ratio, x2)) 27.89/11.40 new_lt8(x0, x1, ty_@0) 27.89/11.40 new_compare29(x0, x1, ty_Double) 27.89/11.40 new_ltEs18(x0, x1, ty_Double) 27.89/11.40 new_compare24(x0, x1, True, x2, x3, x4) 27.89/11.40 new_compare18(x0, x1, True, x2, x3) 27.89/11.40 new_compare29(x0, x1, ty_Bool) 27.89/11.40 new_primEqInt(Pos(Zero), Neg(Zero)) 27.89/11.40 new_primEqInt(Neg(Zero), Pos(Zero)) 27.89/11.40 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 27.89/11.40 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 27.89/11.40 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 27.89/11.40 new_esEs18(x0, x1, app(ty_Maybe, x2)) 27.89/11.40 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.40 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 27.89/11.40 new_lt9(x0, x1, x2) 27.89/11.40 new_esEs14(:%(x0, x1), :%(x2, x3), x4) 27.89/11.40 new_compare11(x0, x1, False, x2, x3, x4) 27.89/11.40 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.40 new_compare10(x0, x1, False) 27.89/11.40 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_compare6(x0, x1, x2) 27.89/11.40 new_primCmpNat0(x0, Succ(x1)) 27.89/11.40 new_lt15(x0, x1) 27.89/11.40 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_compare110(x0, x1, True) 27.89/11.40 new_primMulInt(Pos(x0), Pos(x1)) 27.89/11.40 new_lt5(x0, x1, x2) 27.89/11.40 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 27.89/11.40 new_esEs19(x0, x1, ty_Ordering) 27.89/11.40 new_ltEs7(Nothing, Nothing, x0) 27.89/11.40 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 27.89/11.40 new_compare29(x0, x1, ty_Integer) 27.89/11.40 new_esEs22(x0, x1, ty_Bool) 27.89/11.40 new_primMulInt(Pos(x0), Neg(x1)) 27.89/11.40 new_primMulInt(Neg(x0), Pos(x1)) 27.89/11.40 new_esEs24(x0, x1, ty_@0) 27.89/11.40 new_lt8(x0, x1, app(ty_Maybe, x2)) 27.89/11.40 new_ltEs10(EQ, LT) 27.89/11.40 new_ltEs10(GT, GT) 27.89/11.40 new_ltEs10(LT, EQ) 27.89/11.40 new_esEs21(x0, x1, ty_Bool) 27.89/11.40 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 27.89/11.40 new_esEs23(x0, x1, ty_Integer) 27.89/11.40 new_esEs6(Left(x0), Left(x1), ty_Char, x2) 27.89/11.40 new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 27.89/11.40 new_esEs15(LT, GT) 27.89/11.40 new_esEs15(GT, LT) 27.89/11.40 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_esEs23(x0, x1, app(ty_Maybe, x2)) 27.89/11.40 new_esEs6(Right(x0), Right(x1), x2, ty_@0) 27.89/11.40 new_ltEs19(x0, x1, ty_Float) 27.89/11.40 new_ltEs7(Nothing, Just(x0), x1) 27.89/11.40 new_esEs21(x0, x1, app(ty_[], x2)) 27.89/11.40 new_ltEs6(Right(x0), Right(x1), x2, ty_Double) 27.89/11.40 new_esEs6(Left(x0), Left(x1), ty_Int, x2) 27.89/11.40 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.40 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.40 new_esEs19(x0, x1, ty_Int) 27.89/11.40 new_esEs24(x0, x1, app(ty_[], x2)) 27.89/11.40 new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) 27.89/11.40 new_esEs23(x0, x1, ty_Bool) 27.89/11.40 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 27.89/11.40 new_esEs22(x0, x1, app(ty_Ratio, x2)) 27.89/11.40 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_compare29(x0, x1, app(ty_Ratio, x2)) 27.89/11.40 new_compare24(x0, x1, False, x2, x3, x4) 27.89/11.40 new_primCompAux0(x0, LT) 27.89/11.40 new_sr0(Integer(x0), Integer(x1)) 27.89/11.40 new_esEs20(x0, x1, ty_@0) 27.89/11.40 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 27.89/11.40 new_ltEs19(x0, x1, ty_Char) 27.89/11.40 new_compare27(x0, x1, True, x2, x3) 27.89/11.40 new_esEs18(x0, x1, ty_Double) 27.89/11.40 new_esEs18(x0, x1, ty_Ordering) 27.89/11.40 new_compare29(x0, x1, app(ty_[], x2)) 27.89/11.40 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.40 new_esEs25(x0, x1, ty_@0) 27.89/11.40 new_lt17(x0, x1) 27.89/11.40 new_compare8(Integer(x0), Integer(x1)) 27.89/11.40 new_lt8(x0, x1, ty_Double) 27.89/11.40 new_compare19(x0, x1, False, x2) 27.89/11.40 new_lt20(x0, x1, ty_Char) 27.89/11.40 new_esEs26(x0, x1, ty_Integer) 27.89/11.40 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 27.89/11.40 new_esEs4(Just(x0), Just(x1), ty_Bool) 27.89/11.40 new_compare23(Nothing, Nothing, False, x0) 27.89/11.40 new_ltEs19(x0, x1, ty_Int) 27.89/11.40 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.40 new_compare28(:%(x0, x1), :%(x2, x3), ty_Integer) 27.89/11.40 new_esEs19(x0, x1, app(ty_[], x2)) 27.89/11.40 new_esEs22(x0, x1, app(ty_Maybe, x2)) 27.89/11.40 new_lt20(x0, x1, ty_Int) 27.89/11.40 new_compare29(x0, x1, ty_@0) 27.89/11.40 new_esEs19(x0, x1, ty_Float) 27.89/11.40 new_esEs6(Left(x0), Right(x1), x2, x3) 27.89/11.40 new_esEs6(Right(x0), Left(x1), x2, x3) 27.89/11.40 new_esEs25(x0, x1, ty_Integer) 27.89/11.40 new_esEs25(x0, x1, app(ty_Maybe, x2)) 27.89/11.40 new_compare23(Nothing, Just(x0), False, x1) 27.89/11.40 new_esEs6(Left(x0), Left(x1), ty_Float, x2) 27.89/11.40 new_primCmpInt(Neg(Zero), Neg(Zero)) 27.89/11.40 new_ltEs20(x0, x1, ty_Float) 27.89/11.40 new_esEs27(x0, x1, ty_Int) 27.89/11.40 new_esEs26(x0, x1, ty_Float) 27.89/11.40 new_ltEs7(Just(x0), Just(x1), ty_Double) 27.89/11.40 new_compare210(x0, x1, False) 27.89/11.40 new_ltEs14(x0, x1) 27.89/11.40 new_esEs26(x0, x1, ty_Bool) 27.89/11.40 new_ltEs20(x0, x1, app(ty_[], x2)) 27.89/11.40 new_primCmpInt(Pos(Zero), Neg(Zero)) 27.89/11.40 new_primCmpInt(Neg(Zero), Pos(Zero)) 27.89/11.40 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 27.89/11.40 new_esEs4(Nothing, Just(x0), x1) 27.89/11.40 new_compare29(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.40 new_esEs27(x0, x1, ty_Integer) 27.89/11.40 new_esEs18(x0, x1, app(ty_Ratio, x2)) 27.89/11.40 new_esEs22(x0, x1, ty_Integer) 27.89/11.40 new_esEs21(x0, x1, ty_Char) 27.89/11.40 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.40 new_esEs21(x0, x1, ty_Integer) 27.89/11.40 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.40 new_ltEs8(True, False) 27.89/11.40 new_ltEs8(False, True) 27.89/11.40 new_lt14(x0, x1, x2, x3) 27.89/11.40 new_esEs4(Just(x0), Just(x1), ty_Char) 27.89/11.40 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.40 new_esEs18(x0, x1, app(ty_[], x2)) 27.89/11.40 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.40 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_lt20(x0, x1, ty_Float) 27.89/11.40 new_esEs6(Right(x0), Right(x1), x2, ty_Double) 27.89/11.40 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 27.89/11.40 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.40 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 27.89/11.40 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 27.89/11.40 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 27.89/11.40 new_lt19(x0, x1, ty_Double) 27.89/11.40 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.40 new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 27.89/11.40 new_ltEs6(Left(x0), Left(x1), ty_Double, x2) 27.89/11.40 new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 27.89/11.40 new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 27.89/11.40 new_esEs19(x0, x1, ty_Char) 27.89/11.40 new_esEs23(x0, x1, ty_Float) 27.89/11.40 new_ltEs18(x0, x1, ty_Ordering) 27.89/11.40 new_esEs4(Just(x0), Just(x1), ty_Int) 27.89/11.40 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_esEs4(Just(x0), Just(x1), ty_Float) 27.89/11.40 new_ltEs18(x0, x1, app(ty_[], x2)) 27.89/11.40 new_lt19(x0, x1, ty_@0) 27.89/11.40 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_esEs22(x0, x1, ty_Ordering) 27.89/11.40 new_esEs25(x0, x1, app(ty_[], x2)) 27.89/11.40 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.40 new_primCmpNat2(Succ(x0), Zero) 27.89/11.40 new_esEs23(x0, x1, ty_Int) 27.89/11.40 new_esEs9(:(x0, x1), [], x2) 27.89/11.40 new_lt19(x0, x1, ty_Int) 27.89/11.40 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 27.89/11.40 new_esEs22(x0, x1, ty_Double) 27.89/11.40 new_ltEs7(Just(x0), Just(x1), ty_Char) 27.89/11.40 new_primCmpNat2(Succ(x0), Succ(x1)) 27.89/11.40 new_esEs21(x0, x1, ty_Float) 27.89/11.40 new_esEs19(x0, x1, ty_Bool) 27.89/11.40 new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 27.89/11.40 new_compare25(x0, x1, False) 27.89/11.40 new_ltEs20(x0, x1, ty_Char) 27.89/11.40 new_esEs26(x0, x1, ty_Char) 27.89/11.40 new_esEs25(x0, x1, ty_Ordering) 27.89/11.40 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.40 new_ltEs18(x0, x1, ty_Integer) 27.89/11.40 new_esEs9(:(x0, x1), :(x2, x3), x4) 27.89/11.40 new_primMulNat0(Zero, Zero) 27.89/11.40 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_ltEs19(x0, x1, ty_Integer) 27.89/11.40 new_esEs24(x0, x1, ty_Double) 27.89/11.40 new_esEs24(x0, x1, app(ty_Ratio, x2)) 27.89/11.40 new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 27.89/11.40 new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 27.89/11.40 new_esEs4(Just(x0), Nothing, x1) 27.89/11.40 new_compare19(x0, x1, True, x2) 27.89/11.40 new_primEqNat0(Succ(x0), Zero) 27.89/11.40 new_esEs15(EQ, EQ) 27.89/11.40 new_primEqNat0(Succ(x0), Succ(x1)) 27.89/11.40 new_esEs25(x0, x1, ty_Int) 27.89/11.40 new_ltEs18(x0, x1, ty_Bool) 27.89/11.40 new_esEs23(x0, x1, ty_Char) 27.89/11.40 new_ltEs19(x0, x1, ty_Bool) 27.89/11.40 new_esEs26(x0, x1, ty_Int) 27.89/11.40 new_lt20(x0, x1, ty_Integer) 27.89/11.40 new_lt12(x0, x1, x2, x3) 27.89/11.40 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.40 new_ltEs6(Left(x0), Left(x1), ty_@0, x2) 27.89/11.40 new_ltEs10(EQ, EQ) 27.89/11.40 new_esEs19(x0, x1, ty_Integer) 27.89/11.40 new_compare9(@0, @0) 27.89/11.40 new_ltEs19(x0, x1, ty_@0) 27.89/11.40 new_compare110(x0, x1, False) 27.89/11.40 new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 27.89/11.40 new_ltEs20(x0, x1, ty_Int) 27.89/11.40 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.40 new_lt4(x0, x1) 27.89/11.40 new_esEs24(x0, x1, ty_Ordering) 27.89/11.40 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.40 new_compare1(:(x0, x1), :(x2, x3), x4) 27.89/11.40 new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 27.89/11.40 new_esEs19(x0, x1, ty_@0) 27.89/11.40 new_compare29(x0, x1, ty_Float) 27.89/11.40 new_esEs18(x0, x1, ty_Char) 27.89/11.40 new_primCmpNat2(Zero, Zero) 27.89/11.40 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 27.89/11.40 new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) 27.89/11.40 new_esEs18(x0, x1, ty_@0) 27.89/11.40 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_esEs21(x0, x1, app(ty_Ratio, x2)) 27.89/11.40 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 27.89/11.40 new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) 27.89/11.40 new_compare23(Just(x0), Just(x1), False, x2) 27.89/11.40 new_lt10(x0, x1) 27.89/11.40 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_ltEs7(Just(x0), Just(x1), ty_Int) 27.89/11.40 new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) 27.89/11.40 new_esEs6(Left(x0), Left(x1), ty_Integer, x2) 27.89/11.40 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_compare11(x0, x1, True, x2, x3, x4) 27.89/11.40 new_asAs(False, x0) 27.89/11.40 new_esEs6(Left(x0), Left(x1), ty_@0, x2) 27.89/11.40 new_primEqNat0(Zero, Succ(x0)) 27.89/11.40 new_not(True) 27.89/11.40 new_lt20(x0, x1, ty_Bool) 27.89/11.40 new_esEs22(x0, x1, ty_Char) 27.89/11.40 new_ltEs10(GT, LT) 27.89/11.40 new_compare211(x0, x1, False, x2, x3) 27.89/11.40 new_ltEs7(Just(x0), Just(x1), ty_@0) 27.89/11.40 new_ltEs10(LT, GT) 27.89/11.40 new_ltEs6(Right(x0), Left(x1), x2, x3) 27.89/11.40 new_ltEs6(Left(x0), Right(x1), x2, x3) 27.89/11.40 new_lt20(x0, x1, app(ty_Ratio, x2)) 27.89/11.40 new_lt19(x0, x1, app(ty_Ratio, x2)) 27.89/11.40 new_lt8(x0, x1, ty_Float) 27.89/11.40 new_esEs12(False, False) 27.89/11.40 new_compare23(x0, x1, True, x2) 27.89/11.40 new_ltEs20(x0, x1, ty_Double) 27.89/11.40 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 27.89/11.40 new_ltEs20(x0, x1, ty_@0) 27.89/11.40 new_compare29(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.40 new_esEs20(x0, x1, ty_Integer) 27.89/11.40 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_esEs26(x0, x1, ty_Ordering) 27.89/11.40 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_ltEs4(x0, x1) 27.89/11.40 new_ltEs7(Just(x0), Nothing, x1) 27.89/11.40 new_lt20(x0, x1, app(ty_Maybe, x2)) 27.89/11.40 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.40 new_compare17(x0, x1, False, x2, x3) 27.89/11.40 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 27.89/11.40 new_esEs18(x0, x1, ty_Integer) 27.89/11.40 new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) 27.89/11.40 new_ltEs6(Right(x0), Right(x1), x2, ty_Char) 27.89/11.40 new_compare27(x0, x1, False, x2, x3) 27.89/11.40 new_esEs25(x0, x1, ty_Char) 27.89/11.40 new_primMulNat0(Zero, Succ(x0)) 27.89/11.40 new_primCmpNat0(x0, Zero) 27.89/11.40 new_ltEs19(x0, x1, app(ty_[], x2)) 27.89/11.40 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.40 new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 27.89/11.40 new_compare1([], [], x0) 27.89/11.40 new_esEs18(x0, x1, ty_Bool) 27.89/11.40 new_esEs22(x0, x1, ty_Int) 27.89/11.40 new_primPlusNat1(Zero, Succ(x0)) 27.89/11.40 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.40 new_esEs20(x0, x1, ty_Bool) 27.89/11.40 new_lt6(x0, x1) 27.89/11.40 new_esEs4(Just(x0), Just(x1), ty_Integer) 27.89/11.40 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.40 new_ltEs18(x0, x1, ty_Char) 27.89/11.40 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.40 new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 27.89/11.40 new_ltEs6(Right(x0), Right(x1), x2, ty_Int) 27.89/11.40 new_esEs25(x0, x1, ty_Double) 27.89/11.40 new_ltEs18(x0, x1, ty_@0) 27.89/11.40 new_ltEs6(Right(x0), Right(x1), x2, ty_Float) 27.89/11.40 new_esEs25(x0, x1, ty_Bool) 27.89/11.40 new_esEs6(Left(x0), Left(x1), ty_Bool, x2) 27.89/11.40 new_lt18(x0, x1) 27.89/11.40 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 27.89/11.40 new_lt19(x0, x1, ty_Ordering) 27.89/11.40 new_esEs22(x0, x1, ty_@0) 27.89/11.40 new_ltEs18(x0, x1, ty_Int) 27.89/11.40 new_esEs23(x0, x1, ty_Ordering) 27.89/11.40 new_ltEs20(x0, x1, ty_Bool) 27.89/11.40 new_ltEs6(Right(x0), Right(x1), x2, ty_@0) 27.89/11.40 new_primCmpInt(Pos(Zero), Pos(Zero)) 27.89/11.40 new_esEs19(x0, x1, app(ty_Maybe, x2)) 27.89/11.40 new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) 27.89/11.40 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.40 new_esEs9([], :(x0, x1), x2) 27.89/11.40 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 27.89/11.40 new_primCompAux1(x0, x1, x2, x3) 27.89/11.40 new_ltEs16(x0, x1, x2) 27.89/11.40 new_lt11(x0, x1, x2, x3, x4) 27.89/11.40 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 27.89/11.40 new_pePe(True, x0) 27.89/11.40 new_esEs25(x0, x1, app(ty_Ratio, x2)) 27.89/11.40 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.40 new_esEs20(x0, x1, app(ty_Maybe, x2)) 27.89/11.40 new_esEs23(x0, x1, app(ty_Ratio, x2)) 27.89/11.40 new_ltEs7(Just(x0), Just(x1), ty_Integer) 27.89/11.40 new_ltEs19(x0, x1, ty_Ordering) 27.89/11.40 new_compare25(x0, x1, True) 27.89/11.40 new_primMulInt(Neg(x0), Neg(x1)) 27.89/11.40 new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) 27.89/11.40 new_lt19(x0, x1, ty_Integer) 27.89/11.40 new_esEs9([], [], x0) 27.89/11.40 new_esEs21(x0, x1, app(ty_Maybe, x2)) 27.89/11.40 new_compare12(x0, x1) 27.89/11.40 new_esEs26(x0, x1, app(ty_Maybe, x2)) 27.89/11.40 new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 27.89/11.40 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 27.89/11.40 new_esEs18(x0, x1, ty_Float) 27.89/11.40 new_ltEs18(x0, x1, ty_Float) 27.89/11.40 new_ltEs6(Left(x0), Left(x1), ty_Int, x2) 27.89/11.40 new_primMulNat0(Succ(x0), Succ(x1)) 27.89/11.40 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 27.89/11.40 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 27.89/11.40 new_compare18(x0, x1, False, x2, x3) 27.89/11.40 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_ltEs19(x0, x1, ty_Double) 27.89/11.40 new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 27.89/11.40 new_lt20(x0, x1, app(ty_[], x2)) 27.89/11.40 new_esEs15(GT, GT) 27.89/11.40 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 27.89/11.40 new_primCmpNat1(Zero, x0) 27.89/11.40 new_esEs28(x0, x1, ty_Integer) 27.89/11.40 new_esEs15(LT, EQ) 27.89/11.40 new_esEs15(EQ, LT) 27.89/11.40 new_lt19(x0, x1, ty_Bool) 27.89/11.40 new_primPlusNat0(x0, x1) 27.89/11.40 new_esEs20(x0, x1, ty_Char) 27.89/11.40 new_lt20(x0, x1, ty_@0) 27.89/11.40 new_lt16(x0, x1) 27.89/11.40 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 27.89/11.40 new_lt8(x0, x1, app(ty_[], x2)) 27.89/11.40 new_esEs21(x0, x1, ty_@0) 27.89/11.40 new_compare16(x0, x1) 27.89/11.40 new_fsEs(x0) 27.89/11.40 new_esEs24(x0, x1, ty_Integer) 27.89/11.40 new_primPlusNat1(Succ(x0), Succ(x1)) 27.89/11.40 new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 27.89/11.40 new_ltEs6(Left(x0), Left(x1), ty_Float, x2) 27.89/11.40 new_lt13(x0, x1, x2) 27.89/11.40 new_ltEs20(x0, x1, ty_Integer) 27.89/11.40 new_esEs8(@0, @0) 27.89/11.40 new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 27.89/11.40 new_esEs18(x0, x1, ty_Int) 27.89/11.40 new_esEs20(x0, x1, ty_Int) 27.89/11.40 new_compare211(x0, x1, True, x2, x3) 27.89/11.40 new_primEqNat0(Zero, Zero) 27.89/11.40 new_compare1([], :(x0, x1), x2) 27.89/11.40 new_esEs26(x0, x1, ty_Double) 27.89/11.40 new_esEs6(Right(x0), Right(x1), x2, ty_Int) 27.89/11.40 new_primCmpNat1(Succ(x0), x1) 27.89/11.40 new_esEs12(True, True) 27.89/11.40 new_esEs10(Integer(x0), Integer(x1)) 27.89/11.40 new_not(False) 27.89/11.40 new_esEs24(x0, x1, ty_Char) 27.89/11.40 new_lt8(x0, x1, ty_Bool) 27.89/11.40 new_esEs26(x0, x1, ty_@0) 27.89/11.40 new_compare10(x0, x1, True) 27.89/11.40 new_ltEs7(Just(x0), Just(x1), ty_Bool) 27.89/11.40 new_ltEs9(x0, x1) 27.89/11.40 new_lt19(x0, x1, app(ty_Maybe, x2)) 27.89/11.40 new_ltEs20(x0, x1, ty_Ordering) 27.89/11.40 new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 27.89/11.40 new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 27.89/11.40 new_esEs24(x0, x1, ty_Int) 27.89/11.40 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_esEs13(Float(x0, x1), Float(x2, x3)) 27.89/11.40 new_primCompAux0(x0, GT) 27.89/11.40 new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) 27.89/11.40 new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 27.89/11.40 new_primMulNat0(Succ(x0), Zero) 27.89/11.40 new_esEs24(x0, x1, app(ty_Maybe, x2)) 27.89/11.40 new_esEs23(x0, x1, ty_Double) 27.89/11.40 new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 27.89/11.40 new_ltEs8(True, True) 27.89/11.40 new_esEs20(x0, x1, ty_Float) 27.89/11.40 new_lt7(x0, x1) 27.89/11.40 new_lt8(x0, x1, ty_Ordering) 27.89/11.40 new_lt19(x0, x1, ty_Float) 27.89/11.40 new_lt8(x0, x1, ty_Integer) 27.89/11.40 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 27.89/11.40 new_lt19(x0, x1, ty_Char) 27.89/11.40 new_esEs6(Right(x0), Right(x1), x2, ty_Bool) 27.89/11.40 new_ltEs6(Left(x0), Left(x1), ty_Char, x2) 27.89/11.40 new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 27.89/11.40 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 27.89/11.40 new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) 27.89/11.40 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 27.89/11.40 new_compare17(x0, x1, True, x2, x3) 27.89/11.40 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 27.89/11.40 new_esEs26(x0, x1, app(ty_Ratio, x2)) 27.89/11.40 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 27.89/11.40 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 27.89/11.40 new_esEs4(Nothing, Nothing, x0) 27.89/11.40 new_esEs19(x0, x1, ty_Double) 27.89/11.40 new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) 27.89/11.40 new_compare29(x0, x1, app(ty_Maybe, x2)) 27.89/11.40 new_esEs23(x0, x1, ty_@0) 27.89/11.40 new_esEs19(x0, x1, app(ty_Ratio, x2)) 27.89/11.40 new_lt19(x0, x1, app(ty_[], x2)) 27.89/11.40 new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 27.89/11.40 new_esEs11(Double(x0, x1), Double(x2, x3)) 27.89/11.40 new_ltEs11(x0, x1, x2) 27.89/11.40 new_esEs4(Just(x0), Just(x1), ty_@0) 27.89/11.40 new_esEs6(Right(x0), Right(x1), x2, ty_Char) 27.89/11.40 new_ltEs17(x0, x1) 27.89/11.40 new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) 27.89/11.40 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 27.89/11.40 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 27.89/11.40 new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 27.89/11.40 new_esEs24(x0, x1, ty_Bool) 27.89/11.40 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 27.89/11.40 new_compare15(x0, x1, x2, x3, x4) 27.89/11.40 27.89/11.40 We have to consider all minimal (P,Q,R)-chains. 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (51) QDPSizeChangeProof (EQUIVALENT) 27.89/11.40 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. 27.89/11.40 27.89/11.40 From the DPs we obtained the following set of size-change graphs: 27.89/11.40 *new_compare21(xwv28000, xwv29000, False, bf, bg) -> new_ltEs1(xwv28000, xwv29000, bf, bg) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare2(xwv28000, xwv29000, False, h, ba, bb) -> new_ltEs(xwv28000, xwv29000, h, ba, bb) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_lt3(xwv28000, xwv29000, cb) -> new_compare(xwv28000, xwv29000, cb) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_lt1(xwv28000, xwv29000, bf, bg) -> new_compare21(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bf, bg), bf, bg) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs0(Just(xwv28000), Just(xwv29000), app(app(app(ty_@3, eh), fa), fb)) -> new_ltEs(xwv28000, xwv29000, eh, fa, fb) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare3(xwv28000, xwv29000, h, ba, bb) -> new_compare2(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, h, ba, bb), h, ba, bb) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 27.89/11.40 27.89/11.40 27.89/11.40 *new_lt(xwv28000, xwv29000, bc) -> new_compare20(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, bc), bc) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare(:(xwv28000, xwv28001), :(xwv29000, xwv29001), bda) -> new_primCompAux(xwv28000, xwv29000, new_compare1(xwv28001, xwv29001, bda), bda) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare(:(xwv28000, xwv28001), :(xwv29000, xwv29001), bda) -> new_compare(xwv28001, xwv29001, bda) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs0(Just(xwv28000), Just(xwv29000), app(app(ty_@2, ff), fg)) -> new_ltEs2(xwv28000, xwv29000, ff, fg) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare22(xwv28000, xwv29000, False, bh, ca) -> new_ltEs2(xwv28000, xwv29000, bh, ca) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs0(Just(xwv28000), Just(xwv29000), app(ty_[], fh)) -> new_ltEs3(xwv28000, xwv29000, fh) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs3(:(xwv28000, xwv28001), :(xwv29000, xwv29001), bda) -> new_primCompAux(xwv28000, xwv29000, new_compare1(xwv28001, xwv29001, bda), bda) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(:(xwv28000, xwv28001)), Just(:(xwv29000, xwv29001)), False, app(ty_[], bda)) -> new_primCompAux(xwv28000, xwv29000, new_compare1(xwv28001, xwv29001, bda), bda) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs3(:(xwv28000, xwv28001), :(xwv29000, xwv29001), bda) -> new_compare(xwv28001, xwv29001, bda) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), bbg, app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs(xwv28001, xwv29001, bca, bcb, bcc) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), bbg, app(app(ty_@2, bcf), bcg)) -> new_ltEs2(xwv28001, xwv29001, bcf, bcg) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), bbg, app(ty_[], bch)) -> new_ltEs3(xwv28001, xwv29001, bch) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs0(Just(xwv28000), Just(xwv29000), app(app(ty_Either, fc), fd)) -> new_ltEs1(xwv28000, xwv29000, fc, fd) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs0(Just(xwv28000), Just(xwv29000), app(ty_Maybe, eg)) -> new_ltEs0(xwv28000, xwv29000, eg) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), bbg, app(app(ty_Either, bcd), bce)) -> new_ltEs1(xwv28001, xwv29001, bcd, bce) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(ty_[], bbf), baf) -> new_lt3(xwv28000, xwv29000, bbf) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_primCompAux(xwv28000, xwv29000, xwv141, app(app(ty_Either, bdf), bdg)) -> new_compare4(xwv28000, xwv29000, bdf, bdg) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_lt2(xwv28000, xwv29000, bh, ca) -> new_compare22(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, bh, ca), bh, ca) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, bd, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs(xwv28002, xwv29002, dg, dh, ea) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(ty_Maybe, bc), bd, be) -> new_compare20(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, bc), bc) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, bd, app(app(ty_@2, ed), ee)) -> new_ltEs2(xwv28002, xwv29002, ed, ee) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, bd, app(ty_[], ef)) -> new_ltEs3(xwv28002, xwv29002, ef) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(app(ty_@2, bh), ca), bd, be) -> new_compare22(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, bh, ca), bh, ca) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, bd, app(app(ty_Either, eb), ec)) -> new_ltEs1(xwv28002, xwv29002, eb, ec) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, app(ty_[], de), be) -> new_lt3(xwv28001, xwv29001, de) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare0(xwv28000, xwv29000, bc) -> new_compare20(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, bc), bc) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(ty_Maybe, bc)), bd), be)) -> new_compare20(xwv28000, xwv29000, new_esEs4(xwv28000, xwv29000, bc), bc) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(app(ty_@2, bh), ca)), bd), be)) -> new_compare22(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, bh, ca), bh, ca) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare5(xwv28000, xwv29000, bh, ca) -> new_compare22(xwv28000, xwv29000, new_esEs7(xwv28000, xwv29000, bh, ca), bh, ca) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_lt0(xwv28000, xwv29000, h, ba, bb) -> new_compare2(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, h, ba, bb), h, ba, bb) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 27.89/11.40 27.89/11.40 27.89/11.40 *new_primCompAux(xwv28000, xwv29000, xwv141, app(ty_Maybe, bdb)) -> new_compare0(xwv28000, xwv29000, bdb) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), bbg, app(ty_Maybe, bbh)) -> new_ltEs0(xwv28001, xwv29001, bbh) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, bd, app(ty_Maybe, df)) -> new_ltEs0(xwv28002, xwv29002, df) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(ty_Maybe, bae), baf) -> new_lt(xwv28000, xwv29000, bae) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, app(ty_Maybe, cd), be) -> new_lt(xwv28001, xwv29001, cd) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(app(ty_Either, bbb), bbc), baf) -> new_lt1(xwv28000, xwv29000, bbb, bbc) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, app(app(ty_Either, da), db), be) -> new_lt1(xwv28001, xwv29001, da, db) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(app(ty_Either, bf), bg), bd, be) -> new_compare21(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bf, bg), bf, bg) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(app(ty_Either, bf), bg)), bd), be)) -> new_compare21(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bf, bg), bf, bg) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare4(xwv28000, xwv29000, bf, bg) -> new_compare21(xwv28000, xwv29000, new_esEs6(xwv28000, xwv29000, bf, bg), bf, bg) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(app(app(ty_@3, bag), bah), bba), baf) -> new_lt0(xwv28000, xwv29000, bag, bah, bba) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs2(@2(xwv28000, xwv28001), @2(xwv29000, xwv29001), app(app(ty_@2, bbd), bbe), baf) -> new_lt2(xwv28000, xwv29000, bbd, bbe) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, app(app(app(ty_@3, ce), cf), cg), be) -> new_lt0(xwv28001, xwv29001, ce, cf, cg) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_primCompAux(xwv28000, xwv29000, xwv141, app(app(app(ty_@3, bdc), bdd), bde)) -> new_compare3(xwv28000, xwv29000, bdc, bdd, bde) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(ty_[], cb), bd, be) -> new_compare(xwv28000, xwv29000, cb) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_primCompAux(xwv28000, xwv29000, xwv141, app(ty_[], beb)) -> new_compare(xwv28000, xwv29000, beb) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_primCompAux(xwv28000, xwv29000, xwv141, app(app(ty_@2, bdh), bea)) -> new_compare5(xwv28000, xwv29000, bdh, bea) 27.89/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), app(app(app(ty_@3, h), ba), bb), bd, be) -> new_compare2(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, h, ba, bb), h, ba, bb) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs(@3(xwv28000, xwv28001, xwv28002), @3(xwv29000, xwv29001, xwv29002), cc, app(app(ty_@2, dc), dd), be) -> new_lt2(xwv28001, xwv29001, dc, dd) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(app(app(ty_@3, h), ba), bb)), bd), be)) -> new_compare2(xwv28000, xwv29000, new_esEs5(xwv28000, xwv29000, h, ba, bb), h, ba, bb) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs1(Left(xwv28000), Left(xwv29000), app(app(app(ty_@3, gc), gd), ge), gb) -> new_ltEs(xwv28000, xwv29000, gc, gd, ge) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs1(Right(xwv28000), Right(xwv29000), hc, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs(xwv28000, xwv29000, he, hf, hg) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, hc), app(app(app(ty_@3, he), hf), hg))) -> new_ltEs(xwv28000, xwv29000, he, hf, hg) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), bd), app(app(app(ty_@3, dg), dh), ea))) -> new_ltEs(xwv28002, xwv29002, dg, dh, ea) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(app(app(ty_@3, gc), gd), ge)), gb)) -> new_ltEs(xwv28000, xwv29000, gc, gd, ge) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(app(app(ty_@3, eh), fa), fb))) -> new_ltEs(xwv28000, xwv29000, eh, fa, fb) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, bbg), app(app(app(ty_@3, bca), bcb), bcc))) -> new_ltEs(xwv28001, xwv29001, bca, bcb, bcc) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs1(Right(xwv28000), Right(xwv29000), hc, app(app(ty_@2, bab), bac)) -> new_ltEs2(xwv28000, xwv29000, bab, bac) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs1(Left(xwv28000), Left(xwv29000), app(app(ty_@2, gh), ha), gb) -> new_ltEs2(xwv28000, xwv29000, gh, ha) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs1(Right(xwv28000), Right(xwv29000), hc, app(ty_[], bad)) -> new_ltEs3(xwv28000, xwv29000, bad) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs1(Left(xwv28000), Left(xwv29000), app(ty_[], hb), gb) -> new_ltEs3(xwv28000, xwv29000, hb) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs1(Right(xwv28000), Right(xwv29000), hc, app(app(ty_Either, hh), baa)) -> new_ltEs1(xwv28000, xwv29000, hh, baa) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs1(Left(xwv28000), Left(xwv29000), app(app(ty_Either, gf), gg), gb) -> new_ltEs1(xwv28000, xwv29000, gf, gg) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs1(Right(xwv28000), Right(xwv29000), hc, app(ty_Maybe, hd)) -> new_ltEs0(xwv28000, xwv29000, hd) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_ltEs1(Left(xwv28000), Left(xwv29000), app(ty_Maybe, ga), gb) -> new_ltEs0(xwv28000, xwv29000, ga) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(app(ty_@2, gh), ha)), gb)) -> new_ltEs2(xwv28000, xwv29000, gh, ha) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, bbg), app(app(ty_@2, bcf), bcg))) -> new_ltEs2(xwv28001, xwv29001, bcf, bcg) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(app(ty_@2, ff), fg))) -> new_ltEs2(xwv28000, xwv29000, ff, fg) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, hc), app(app(ty_@2, bab), bac))) -> new_ltEs2(xwv28000, xwv29000, bab, bac) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), bd), app(app(ty_@2, ed), ee))) -> new_ltEs2(xwv28002, xwv29002, ed, ee) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), bd), app(ty_[], ef))) -> new_ltEs3(xwv28002, xwv29002, ef) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(ty_[], hb)), gb)) -> new_ltEs3(xwv28000, xwv29000, hb) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, hc), app(ty_[], bad))) -> new_ltEs3(xwv28000, xwv29000, bad) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, bbg), app(ty_[], bch))) -> new_ltEs3(xwv28001, xwv29001, bch) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(ty_[], fh))) -> new_ltEs3(xwv28000, xwv29000, fh) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, bbg), app(app(ty_Either, bcd), bce))) -> new_ltEs1(xwv28001, xwv29001, bcd, bce) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), bd), app(app(ty_Either, eb), ec))) -> new_ltEs1(xwv28002, xwv29002, eb, ec) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, hc), app(app(ty_Either, hh), baa))) -> new_ltEs1(xwv28000, xwv29000, hh, baa) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(app(ty_Either, fc), fd))) -> new_ltEs1(xwv28000, xwv29000, fc, fd) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(app(ty_Either, gf), gg)), gb)) -> new_ltEs1(xwv28000, xwv29000, gf, gg) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(ty_[], bbf)), baf)) -> new_lt3(xwv28000, xwv29000, bbf) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), app(ty_[], de)), be)) -> new_lt3(xwv28001, xwv29001, de) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), bd), app(ty_Maybe, df))) -> new_ltEs0(xwv28002, xwv29002, df) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, bbg), app(ty_Maybe, bbh))) -> new_ltEs0(xwv28001, xwv29001, bbh) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(Just(xwv28000)), Just(Just(xwv29000)), False, app(ty_Maybe, app(ty_Maybe, eg))) -> new_ltEs0(xwv28000, xwv29000, eg) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(Right(xwv28000)), Just(Right(xwv29000)), False, app(app(ty_Either, hc), app(ty_Maybe, hd))) -> new_ltEs0(xwv28000, xwv29000, hd) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(Left(xwv28000)), Just(Left(xwv29000)), False, app(app(ty_Either, app(ty_Maybe, ga)), gb)) -> new_ltEs0(xwv28000, xwv29000, ga) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(ty_Maybe, bae)), baf)) -> new_lt(xwv28000, xwv29000, bae) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), app(ty_Maybe, cd)), be)) -> new_lt(xwv28001, xwv29001, cd) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), app(app(ty_Either, da), db)), be)) -> new_lt1(xwv28001, xwv29001, da, db) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(app(ty_Either, bbb), bbc)), baf)) -> new_lt1(xwv28000, xwv29000, bbb, bbc) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), app(app(app(ty_@3, ce), cf), cg)), be)) -> new_lt0(xwv28001, xwv29001, ce, cf, cg) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(app(app(ty_@3, bag), bah), bba)), baf)) -> new_lt0(xwv28000, xwv29000, bag, bah, bba) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, app(ty_[], cb)), bd), be)) -> new_compare(xwv28000, xwv29000, cb) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(:(xwv28000, xwv28001)), Just(:(xwv29000, xwv29001)), False, app(ty_[], bda)) -> new_compare(xwv28001, xwv29001, bda) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@2(xwv28000, xwv28001)), Just(@2(xwv29000, xwv29001)), False, app(app(ty_@2, app(app(ty_@2, bbd), bbe)), baf)) -> new_lt2(xwv28000, xwv29000, bbd, bbe) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 *new_compare20(Just(@3(xwv28000, xwv28001, xwv28002)), Just(@3(xwv29000, xwv29001, xwv29002)), False, app(app(app(ty_@3, cc), app(app(ty_@2, dc), dd)), be)) -> new_lt2(xwv28001, xwv29001, dc, dd) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 27.89/11.40 27.89/11.40 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (52) 27.89/11.40 YES 27.89/11.40 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (53) 27.89/11.40 Obligation: 27.89/11.40 Q DP problem: 27.89/11.40 The TRS P consists of the following rules: 27.89/11.40 27.89/11.40 new_deleteMin(xwv340, xwv341, xwv342, Branch(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434), xwv344, h, ba) -> new_deleteMin(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434, h, ba) 27.89/11.40 27.89/11.40 R is empty. 27.89/11.40 Q is empty. 27.89/11.40 We have to consider all minimal (P,Q,R)-chains. 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (54) QDPSizeChangeProof (EQUIVALENT) 27.89/11.40 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. 27.89/11.40 27.89/11.40 From the DPs we obtained the following set of size-change graphs: 27.89/11.40 *new_deleteMin(xwv340, xwv341, xwv342, Branch(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434), xwv344, h, ba) -> new_deleteMin(xwv3430, xwv3431, xwv3432, xwv3433, xwv3434, h, ba) 27.89/11.40 The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 6 >= 6, 7 >= 7 27.89/11.40 27.89/11.40 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (55) 27.89/11.40 YES 27.89/11.40 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (56) 27.89/11.40 Obligation: 27.89/11.40 Q DP problem: 27.89/11.40 The TRS P consists of the following rules: 27.89/11.40 27.89/11.40 new_glueBal2Mid_elt20(xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv274, xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, Branch(xwv2810, xwv2811, xwv2812, xwv2813, xwv2814), xwv282, h, ba) -> new_glueBal2Mid_elt20(xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv274, xwv275, xwv276, xwv277, xwv2810, xwv2811, xwv2812, xwv2813, xwv2814, h, ba) 27.89/11.40 27.89/11.40 R is empty. 27.89/11.40 Q is empty. 27.89/11.40 We have to consider all minimal (P,Q,R)-chains. 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (57) QDPSizeChangeProof (EQUIVALENT) 27.89/11.40 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. 27.89/11.40 27.89/11.40 From the DPs we obtained the following set of size-change graphs: 27.89/11.40 *new_glueBal2Mid_elt20(xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv274, xwv275, xwv276, xwv277, xwv278, xwv279, xwv280, Branch(xwv2810, xwv2811, xwv2812, xwv2813, xwv2814), xwv282, h, ba) -> new_glueBal2Mid_elt20(xwv268, xwv269, xwv270, xwv271, xwv272, xwv273, xwv274, xwv275, xwv276, xwv277, xwv2810, xwv2811, xwv2812, xwv2813, xwv2814, h, ba) 27.89/11.40 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 27.89/11.40 27.89/11.40 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (58) 27.89/11.40 YES 27.89/11.40 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (59) 27.89/11.40 Obligation: 27.89/11.40 Q DP problem: 27.89/11.40 The TRS P consists of the following rules: 27.89/11.40 27.89/11.40 new_glueBal2Mid_key20(xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv290, xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, Branch(xwv2970, xwv2971, xwv2972, xwv2973, xwv2974), xwv298, h, ba) -> new_glueBal2Mid_key20(xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv290, xwv291, xwv292, xwv293, xwv2970, xwv2971, xwv2972, xwv2973, xwv2974, h, ba) 27.89/11.40 27.89/11.40 R is empty. 27.89/11.40 Q is empty. 27.89/11.40 We have to consider all minimal (P,Q,R)-chains. 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (60) QDPSizeChangeProof (EQUIVALENT) 27.89/11.40 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. 27.89/11.40 27.89/11.40 From the DPs we obtained the following set of size-change graphs: 27.89/11.40 *new_glueBal2Mid_key20(xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv290, xwv291, xwv292, xwv293, xwv294, xwv295, xwv296, Branch(xwv2970, xwv2971, xwv2972, xwv2973, xwv2974), xwv298, h, ba) -> new_glueBal2Mid_key20(xwv284, xwv285, xwv286, xwv287, xwv288, xwv289, xwv290, xwv291, xwv292, xwv293, xwv2970, xwv2971, xwv2972, xwv2973, xwv2974, h, ba) 27.89/11.40 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 27.89/11.40 27.89/11.40 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (61) 27.89/11.40 YES 27.89/11.40 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (62) 27.89/11.40 Obligation: 27.89/11.40 Q DP problem: 27.89/11.40 The TRS P consists of the following rules: 27.89/11.40 27.89/11.40 new_deleteMax(xwv330, xwv331, xwv332, xwv333, Branch(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344), h, ba) -> new_deleteMax(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344, h, ba) 27.89/11.40 27.89/11.40 R is empty. 27.89/11.40 Q is empty. 27.89/11.40 We have to consider all minimal (P,Q,R)-chains. 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (63) QDPSizeChangeProof (EQUIVALENT) 27.89/11.40 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. 27.89/11.40 27.89/11.40 From the DPs we obtained the following set of size-change graphs: 27.89/11.40 *new_deleteMax(xwv330, xwv331, xwv332, xwv333, Branch(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344), h, ba) -> new_deleteMax(xwv3340, xwv3341, xwv3342, xwv3343, xwv3344, h, ba) 27.89/11.40 The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 6 >= 6, 7 >= 7 27.89/11.40 27.89/11.40 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (64) 27.89/11.40 YES 27.89/11.40 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (65) 27.89/11.40 Obligation: 27.89/11.40 Q DP problem: 27.89/11.40 The TRS P consists of the following rules: 27.89/11.40 27.89/11.40 new_glueBal2Mid_elt10(xwv331, xwv332, xwv333, xwv334, xwv335, xwv336, xwv337, xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, Branch(xwv3450, xwv3451, xwv3452, xwv3453, xwv3454), h, ba) -> new_glueBal2Mid_elt10(xwv331, xwv332, xwv333, xwv334, xwv335, xwv336, xwv337, xwv338, xwv339, xwv340, xwv3450, xwv3451, xwv3452, xwv3453, xwv3454, h, ba) 27.89/11.40 27.89/11.40 R is empty. 27.89/11.40 Q is empty. 27.89/11.40 We have to consider all minimal (P,Q,R)-chains. 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (66) QDPSizeChangeProof (EQUIVALENT) 27.89/11.40 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. 27.89/11.40 27.89/11.40 From the DPs we obtained the following set of size-change graphs: 27.89/11.40 *new_glueBal2Mid_elt10(xwv331, xwv332, xwv333, xwv334, xwv335, xwv336, xwv337, xwv338, xwv339, xwv340, xwv341, xwv342, xwv343, xwv344, Branch(xwv3450, xwv3451, xwv3452, xwv3453, xwv3454), h, ba) -> new_glueBal2Mid_elt10(xwv331, xwv332, xwv333, xwv334, xwv335, xwv336, xwv337, xwv338, xwv339, xwv340, xwv3450, xwv3451, xwv3452, xwv3453, xwv3454, h, ba) 27.89/11.40 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 27.89/11.40 27.89/11.40 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (67) 27.89/11.40 YES 27.89/11.40 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (68) 27.89/11.40 Obligation: 27.89/11.40 Q DP problem: 27.89/11.40 The TRS P consists of the following rules: 27.89/11.40 27.89/11.40 new_primEqNat(Succ(xwv4000), Succ(xwv30000)) -> new_primEqNat(xwv4000, xwv30000) 27.89/11.40 27.89/11.40 R is empty. 27.89/11.40 Q is empty. 27.89/11.40 We have to consider all minimal (P,Q,R)-chains. 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (69) QDPSizeChangeProof (EQUIVALENT) 27.89/11.40 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. 27.89/11.40 27.89/11.40 From the DPs we obtained the following set of size-change graphs: 27.89/11.40 *new_primEqNat(Succ(xwv4000), Succ(xwv30000)) -> new_primEqNat(xwv4000, xwv30000) 27.89/11.40 The graph contains the following edges 1 > 1, 2 > 2 27.89/11.40 27.89/11.40 27.89/11.40 ---------------------------------------- 27.89/11.40 27.89/11.40 (70) 27.89/11.40 YES 27.99/11.47 EOF